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/RecursiveASTVisitor.h"
28 #include "clang/AST/TypeLoc.h"
29 #include "clang/Basic/PartialDiagnostic.h"
30 #include "clang/Basic/SourceManager.h"
31 #include "clang/Basic/TargetInfo.h"
32 #include "clang/Lex/LiteralSupport.h"
33 #include "clang/Lex/Preprocessor.h"
34 #include "clang/Sema/AnalysisBasedWarnings.h"
35 #include "clang/Sema/DeclSpec.h"
36 #include "clang/Sema/DelayedDiagnostic.h"
37 #include "clang/Sema/Designator.h"
38 #include "clang/Sema/Initialization.h"
39 #include "clang/Sema/Lookup.h"
40 #include "clang/Sema/ParsedTemplate.h"
41 #include "clang/Sema/Scope.h"
42 #include "clang/Sema/ScopeInfo.h"
43 #include "clang/Sema/SemaFixItUtils.h"
44 #include "clang/Sema/Template.h"
45 #include "llvm/Support/ConvertUTF.h"
46 using namespace clang;
47 using namespace sema;
48 
49 /// \brief Determine whether the use of this declaration is valid, without
50 /// emitting diagnostics.
51 bool Sema::CanUseDecl(NamedDecl *D) {
52   // See if this is an auto-typed variable whose initializer we are parsing.
53   if (ParsingInitForAutoVars.count(D))
54     return false;
55 
56   // See if this is a deleted function.
57   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
58     if (FD->isDeleted())
59       return false;
60 
61     // If the function has a deduced return type, and we can't deduce it,
62     // then we can't use it either.
63     if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
64         DeduceReturnType(FD, SourceLocation(), /*Diagnose*/ false))
65       return false;
66   }
67 
68   // See if this function is unavailable.
69   if (D->getAvailability() == AR_Unavailable &&
70       cast<Decl>(CurContext)->getAvailability() != AR_Unavailable)
71     return false;
72 
73   return true;
74 }
75 
76 static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) {
77   // Warn if this is used but marked unused.
78   if (D->hasAttr<UnusedAttr>()) {
79     const Decl *DC = cast_or_null<Decl>(S.getCurObjCLexicalContext());
80     if (DC && !DC->hasAttr<UnusedAttr>())
81       S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName();
82   }
83 }
84 
85 static bool HasRedeclarationWithoutAvailabilityInCategory(const Decl *D) {
86   const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
87   if (!OMD)
88     return false;
89   const ObjCInterfaceDecl *OID = OMD->getClassInterface();
90   if (!OID)
91     return false;
92 
93   for (const ObjCCategoryDecl *Cat : OID->visible_categories())
94     if (ObjCMethodDecl *CatMeth =
95             Cat->getMethod(OMD->getSelector(), OMD->isInstanceMethod()))
96       if (!CatMeth->hasAttr<AvailabilityAttr>())
97         return true;
98   return false;
99 }
100 
101 static AvailabilityResult
102 DiagnoseAvailabilityOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc,
103                            const ObjCInterfaceDecl *UnknownObjCClass,
104                            bool ObjCPropertyAccess) {
105   // See if this declaration is unavailable or deprecated.
106   std::string Message;
107   AvailabilityResult Result = D->getAvailability(&Message);
108 
109   // For typedefs, if the typedef declaration appears available look
110   // to the underlying type to see if it is more restrictive.
111   while (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
112     if (Result == AR_Available) {
113       if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
114         D = TT->getDecl();
115         Result = D->getAvailability(&Message);
116         continue;
117       }
118     }
119     break;
120   }
121 
122   // Forward class declarations get their attributes from their definition.
123   if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) {
124     if (IDecl->getDefinition()) {
125       D = IDecl->getDefinition();
126       Result = D->getAvailability(&Message);
127     }
128   }
129 
130   if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
131     if (Result == AR_Available) {
132       const DeclContext *DC = ECD->getDeclContext();
133       if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC))
134         Result = TheEnumDecl->getAvailability(&Message);
135     }
136 
137   const ObjCPropertyDecl *ObjCPDecl = nullptr;
138   if (Result == AR_Deprecated || Result == AR_Unavailable ||
139       AR_NotYetIntroduced) {
140     if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
141       if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) {
142         AvailabilityResult PDeclResult = PD->getAvailability(nullptr);
143         if (PDeclResult == Result)
144           ObjCPDecl = PD;
145       }
146     }
147   }
148 
149   switch (Result) {
150     case AR_Available:
151       break;
152 
153     case AR_Deprecated:
154       if (S.getCurContextAvailability() != AR_Deprecated)
155         S.EmitAvailabilityWarning(Sema::AD_Deprecation,
156                                   D, Message, Loc, UnknownObjCClass, ObjCPDecl,
157                                   ObjCPropertyAccess);
158       break;
159 
160     case AR_NotYetIntroduced: {
161       // Don't do this for enums, they can't be redeclared.
162       if (isa<EnumConstantDecl>(D) || isa<EnumDecl>(D))
163         break;
164 
165       bool Warn = !D->getAttr<AvailabilityAttr>()->isInherited();
166       // Objective-C method declarations in categories are not modelled as
167       // redeclarations, so manually look for a redeclaration in a category
168       // if necessary.
169       if (Warn && HasRedeclarationWithoutAvailabilityInCategory(D))
170         Warn = false;
171       // In general, D will point to the most recent redeclaration. However,
172       // for `@class A;` decls, this isn't true -- manually go through the
173       // redecl chain in that case.
174       if (Warn && isa<ObjCInterfaceDecl>(D))
175         for (Decl *Redecl = D->getMostRecentDecl(); Redecl && Warn;
176              Redecl = Redecl->getPreviousDecl())
177           if (!Redecl->hasAttr<AvailabilityAttr>() ||
178               Redecl->getAttr<AvailabilityAttr>()->isInherited())
179             Warn = false;
180 
181       if (Warn)
182         S.EmitAvailabilityWarning(Sema::AD_Partial, D, Message, Loc,
183                                   UnknownObjCClass, ObjCPDecl,
184                                   ObjCPropertyAccess);
185       break;
186     }
187 
188     case AR_Unavailable:
189       if (S.getCurContextAvailability() != AR_Unavailable)
190         S.EmitAvailabilityWarning(Sema::AD_Unavailable,
191                                   D, Message, Loc, UnknownObjCClass, ObjCPDecl,
192                                   ObjCPropertyAccess);
193       break;
194 
195     }
196     return Result;
197 }
198 
199 /// \brief Emit a note explaining that this function is deleted.
200 void Sema::NoteDeletedFunction(FunctionDecl *Decl) {
201   assert(Decl->isDeleted());
202 
203   CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl);
204 
205   if (Method && Method->isDeleted() && Method->isDefaulted()) {
206     // If the method was explicitly defaulted, point at that declaration.
207     if (!Method->isImplicit())
208       Diag(Decl->getLocation(), diag::note_implicitly_deleted);
209 
210     // Try to diagnose why this special member function was implicitly
211     // deleted. This might fail, if that reason no longer applies.
212     CXXSpecialMember CSM = getSpecialMember(Method);
213     if (CSM != CXXInvalid)
214       ShouldDeleteSpecialMember(Method, CSM, /*Diagnose=*/true);
215 
216     return;
217   }
218 
219   if (CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Decl)) {
220     if (CXXConstructorDecl *BaseCD =
221             const_cast<CXXConstructorDecl*>(CD->getInheritedConstructor())) {
222       Diag(Decl->getLocation(), diag::note_inherited_deleted_here);
223       if (BaseCD->isDeleted()) {
224         NoteDeletedFunction(BaseCD);
225       } else {
226         // FIXME: An explanation of why exactly it can't be inherited
227         // would be nice.
228         Diag(BaseCD->getLocation(), diag::note_cannot_inherit);
229       }
230       return;
231     }
232   }
233 
234   Diag(Decl->getLocation(), diag::note_availability_specified_here)
235     << Decl << true;
236 }
237 
238 /// \brief Determine whether a FunctionDecl was ever declared with an
239 /// explicit storage class.
240 static bool hasAnyExplicitStorageClass(const FunctionDecl *D) {
241   for (auto I : D->redecls()) {
242     if (I->getStorageClass() != SC_None)
243       return true;
244   }
245   return false;
246 }
247 
248 /// \brief Check whether we're in an extern inline function and referring to a
249 /// variable or function with internal linkage (C11 6.7.4p3).
250 ///
251 /// This is only a warning because we used to silently accept this code, but
252 /// in many cases it will not behave correctly. This is not enabled in C++ mode
253 /// because the restriction language is a bit weaker (C++11 [basic.def.odr]p6)
254 /// and so while there may still be user mistakes, most of the time we can't
255 /// prove that there are errors.
256 static void diagnoseUseOfInternalDeclInInlineFunction(Sema &S,
257                                                       const NamedDecl *D,
258                                                       SourceLocation Loc) {
259   // This is disabled under C++; there are too many ways for this to fire in
260   // contexts where the warning is a false positive, or where it is technically
261   // correct but benign.
262   if (S.getLangOpts().CPlusPlus)
263     return;
264 
265   // Check if this is an inlined function or method.
266   FunctionDecl *Current = S.getCurFunctionDecl();
267   if (!Current)
268     return;
269   if (!Current->isInlined())
270     return;
271   if (!Current->isExternallyVisible())
272     return;
273 
274   // Check if the decl has internal linkage.
275   if (D->getFormalLinkage() != InternalLinkage)
276     return;
277 
278   // Downgrade from ExtWarn to Extension if
279   //  (1) the supposedly external inline function is in the main file,
280   //      and probably won't be included anywhere else.
281   //  (2) the thing we're referencing is a pure function.
282   //  (3) the thing we're referencing is another inline function.
283   // This last can give us false negatives, but it's better than warning on
284   // wrappers for simple C library functions.
285   const FunctionDecl *UsedFn = dyn_cast<FunctionDecl>(D);
286   bool DowngradeWarning = S.getSourceManager().isInMainFile(Loc);
287   if (!DowngradeWarning && UsedFn)
288     DowngradeWarning = UsedFn->isInlined() || UsedFn->hasAttr<ConstAttr>();
289 
290   S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inline_quiet
291                                : diag::ext_internal_in_extern_inline)
292     << /*IsVar=*/!UsedFn << D;
293 
294   S.MaybeSuggestAddingStaticToDecl(Current);
295 
296   S.Diag(D->getCanonicalDecl()->getLocation(), diag::note_entity_declared_at)
297       << D;
298 }
299 
300 void Sema::MaybeSuggestAddingStaticToDecl(const FunctionDecl *Cur) {
301   const FunctionDecl *First = Cur->getFirstDecl();
302 
303   // Suggest "static" on the function, if possible.
304   if (!hasAnyExplicitStorageClass(First)) {
305     SourceLocation DeclBegin = First->getSourceRange().getBegin();
306     Diag(DeclBegin, diag::note_convert_inline_to_static)
307       << Cur << FixItHint::CreateInsertion(DeclBegin, "static ");
308   }
309 }
310 
311 /// \brief Determine whether the use of this declaration is valid, and
312 /// emit any corresponding diagnostics.
313 ///
314 /// This routine diagnoses various problems with referencing
315 /// declarations that can occur when using a declaration. For example,
316 /// it might warn if a deprecated or unavailable declaration is being
317 /// used, or produce an error (and return true) if a C++0x deleted
318 /// function is being used.
319 ///
320 /// \returns true if there was an error (this declaration cannot be
321 /// referenced), false otherwise.
322 ///
323 bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc,
324                              const ObjCInterfaceDecl *UnknownObjCClass,
325                              bool ObjCPropertyAccess) {
326   if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) {
327     // If there were any diagnostics suppressed by template argument deduction,
328     // emit them now.
329     SuppressedDiagnosticsMap::iterator
330       Pos = SuppressedDiagnostics.find(D->getCanonicalDecl());
331     if (Pos != SuppressedDiagnostics.end()) {
332       SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second;
333       for (unsigned I = 0, N = Suppressed.size(); I != N; ++I)
334         Diag(Suppressed[I].first, Suppressed[I].second);
335 
336       // Clear out the list of suppressed diagnostics, so that we don't emit
337       // them again for this specialization. However, we don't obsolete this
338       // entry from the table, because we want to avoid ever emitting these
339       // diagnostics again.
340       Suppressed.clear();
341     }
342 
343     // C++ [basic.start.main]p3:
344     //   The function 'main' shall not be used within a program.
345     if (cast<FunctionDecl>(D)->isMain())
346       Diag(Loc, diag::ext_main_used);
347   }
348 
349   // See if this is an auto-typed variable whose initializer we are parsing.
350   if (ParsingInitForAutoVars.count(D)) {
351     Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer)
352       << D->getDeclName();
353     return true;
354   }
355 
356   // See if this is a deleted function.
357   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
358     if (FD->isDeleted()) {
359       Diag(Loc, diag::err_deleted_function_use);
360       NoteDeletedFunction(FD);
361       return true;
362     }
363 
364     // If the function has a deduced return type, and we can't deduce it,
365     // then we can't use it either.
366     if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
367         DeduceReturnType(FD, Loc))
368       return true;
369   }
370   DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass,
371                              ObjCPropertyAccess);
372 
373   DiagnoseUnusedOfDecl(*this, D, Loc);
374 
375   diagnoseUseOfInternalDeclInInlineFunction(*this, D, Loc);
376 
377   return false;
378 }
379 
380 /// \brief Retrieve the message suffix that should be added to a
381 /// diagnostic complaining about the given function being deleted or
382 /// unavailable.
383 std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) {
384   std::string Message;
385   if (FD->getAvailability(&Message))
386     return ": " + Message;
387 
388   return std::string();
389 }
390 
391 /// DiagnoseSentinelCalls - This routine checks whether a call or
392 /// message-send is to a declaration with the sentinel attribute, and
393 /// if so, it checks that the requirements of the sentinel are
394 /// satisfied.
395 void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
396                                  ArrayRef<Expr *> Args) {
397   const SentinelAttr *attr = D->getAttr<SentinelAttr>();
398   if (!attr)
399     return;
400 
401   // The number of formal parameters of the declaration.
402   unsigned numFormalParams;
403 
404   // The kind of declaration.  This is also an index into a %select in
405   // the diagnostic.
406   enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType;
407 
408   if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
409     numFormalParams = MD->param_size();
410     calleeType = CT_Method;
411   } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
412     numFormalParams = FD->param_size();
413     calleeType = CT_Function;
414   } else if (isa<VarDecl>(D)) {
415     QualType type = cast<ValueDecl>(D)->getType();
416     const FunctionType *fn = nullptr;
417     if (const PointerType *ptr = type->getAs<PointerType>()) {
418       fn = ptr->getPointeeType()->getAs<FunctionType>();
419       if (!fn) return;
420       calleeType = CT_Function;
421     } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) {
422       fn = ptr->getPointeeType()->castAs<FunctionType>();
423       calleeType = CT_Block;
424     } else {
425       return;
426     }
427 
428     if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) {
429       numFormalParams = proto->getNumParams();
430     } else {
431       numFormalParams = 0;
432     }
433   } else {
434     return;
435   }
436 
437   // "nullPos" is the number of formal parameters at the end which
438   // effectively count as part of the variadic arguments.  This is
439   // useful if you would prefer to not have *any* formal parameters,
440   // but the language forces you to have at least one.
441   unsigned nullPos = attr->getNullPos();
442   assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel");
443   numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos);
444 
445   // The number of arguments which should follow the sentinel.
446   unsigned numArgsAfterSentinel = attr->getSentinel();
447 
448   // If there aren't enough arguments for all the formal parameters,
449   // the sentinel, and the args after the sentinel, complain.
450   if (Args.size() < numFormalParams + numArgsAfterSentinel + 1) {
451     Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
452     Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
453     return;
454   }
455 
456   // Otherwise, find the sentinel expression.
457   Expr *sentinelExpr = Args[Args.size() - numArgsAfterSentinel - 1];
458   if (!sentinelExpr) return;
459   if (sentinelExpr->isValueDependent()) return;
460   if (Context.isSentinelNullExpr(sentinelExpr)) return;
461 
462   // Pick a reasonable string to insert.  Optimistically use 'nil', 'nullptr',
463   // or 'NULL' if those are actually defined in the context.  Only use
464   // 'nil' for ObjC methods, where it's much more likely that the
465   // variadic arguments form a list of object pointers.
466   SourceLocation MissingNilLoc
467     = PP.getLocForEndOfToken(sentinelExpr->getLocEnd());
468   std::string NullValue;
469   if (calleeType == CT_Method && PP.isMacroDefined("nil"))
470     NullValue = "nil";
471   else if (getLangOpts().CPlusPlus11)
472     NullValue = "nullptr";
473   else if (PP.isMacroDefined("NULL"))
474     NullValue = "NULL";
475   else
476     NullValue = "(void*) 0";
477 
478   if (MissingNilLoc.isInvalid())
479     Diag(Loc, diag::warn_missing_sentinel) << int(calleeType);
480   else
481     Diag(MissingNilLoc, diag::warn_missing_sentinel)
482       << int(calleeType)
483       << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue);
484   Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
485 }
486 
487 SourceRange Sema::getExprRange(Expr *E) const {
488   return E ? E->getSourceRange() : SourceRange();
489 }
490 
491 //===----------------------------------------------------------------------===//
492 //  Standard Promotions and Conversions
493 //===----------------------------------------------------------------------===//
494 
495 /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
496 ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) {
497   // Handle any placeholder expressions which made it here.
498   if (E->getType()->isPlaceholderType()) {
499     ExprResult result = CheckPlaceholderExpr(E);
500     if (result.isInvalid()) return ExprError();
501     E = result.get();
502   }
503 
504   QualType Ty = E->getType();
505   assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
506 
507   if (Ty->isFunctionType()) {
508     // If we are here, we are not calling a function but taking
509     // its address (which is not allowed in OpenCL v1.0 s6.8.a.3).
510     if (getLangOpts().OpenCL) {
511       Diag(E->getExprLoc(), diag::err_opencl_taking_function_address);
512       return ExprError();
513     }
514     E = ImpCastExprToType(E, Context.getPointerType(Ty),
515                           CK_FunctionToPointerDecay).get();
516   } else if (Ty->isArrayType()) {
517     // In C90 mode, arrays only promote to pointers if the array expression is
518     // an lvalue.  The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
519     // type 'array of type' is converted to an expression that has type 'pointer
520     // to type'...".  In C99 this was changed to: C99 6.3.2.1p3: "an expression
521     // that has type 'array of type' ...".  The relevant change is "an lvalue"
522     // (C90) to "an expression" (C99).
523     //
524     // C++ 4.2p1:
525     // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
526     // T" can be converted to an rvalue of type "pointer to T".
527     //
528     if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue())
529       E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
530                             CK_ArrayToPointerDecay).get();
531   }
532   return E;
533 }
534 
535 static void CheckForNullPointerDereference(Sema &S, Expr *E) {
536   // Check to see if we are dereferencing a null pointer.  If so,
537   // and if not volatile-qualified, this is undefined behavior that the
538   // optimizer will delete, so warn about it.  People sometimes try to use this
539   // to get a deterministic trap and are surprised by clang's behavior.  This
540   // only handles the pattern "*null", which is a very syntactic check.
541   if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts()))
542     if (UO->getOpcode() == UO_Deref &&
543         UO->getSubExpr()->IgnoreParenCasts()->
544           isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) &&
545         !UO->getType().isVolatileQualified()) {
546     S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
547                           S.PDiag(diag::warn_indirection_through_null)
548                             << UO->getSubExpr()->getSourceRange());
549     S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
550                         S.PDiag(diag::note_indirection_through_null));
551   }
552 }
553 
554 static void DiagnoseDirectIsaAccess(Sema &S, const ObjCIvarRefExpr *OIRE,
555                                     SourceLocation AssignLoc,
556                                     const Expr* RHS) {
557   const ObjCIvarDecl *IV = OIRE->getDecl();
558   if (!IV)
559     return;
560 
561   DeclarationName MemberName = IV->getDeclName();
562   IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
563   if (!Member || !Member->isStr("isa"))
564     return;
565 
566   const Expr *Base = OIRE->getBase();
567   QualType BaseType = Base->getType();
568   if (OIRE->isArrow())
569     BaseType = BaseType->getPointeeType();
570   if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>())
571     if (ObjCInterfaceDecl *IDecl = OTy->getInterface()) {
572       ObjCInterfaceDecl *ClassDeclared = nullptr;
573       ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
574       if (!ClassDeclared->getSuperClass()
575           && (*ClassDeclared->ivar_begin()) == IV) {
576         if (RHS) {
577           NamedDecl *ObjectSetClass =
578             S.LookupSingleName(S.TUScope,
579                                &S.Context.Idents.get("object_setClass"),
580                                SourceLocation(), S.LookupOrdinaryName);
581           if (ObjectSetClass) {
582             SourceLocation RHSLocEnd = S.PP.getLocForEndOfToken(RHS->getLocEnd());
583             S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_assign) <<
584             FixItHint::CreateInsertion(OIRE->getLocStart(), "object_setClass(") <<
585             FixItHint::CreateReplacement(SourceRange(OIRE->getOpLoc(),
586                                                      AssignLoc), ",") <<
587             FixItHint::CreateInsertion(RHSLocEnd, ")");
588           }
589           else
590             S.Diag(OIRE->getLocation(), diag::warn_objc_isa_assign);
591         } else {
592           NamedDecl *ObjectGetClass =
593             S.LookupSingleName(S.TUScope,
594                                &S.Context.Idents.get("object_getClass"),
595                                SourceLocation(), S.LookupOrdinaryName);
596           if (ObjectGetClass)
597             S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_use) <<
598             FixItHint::CreateInsertion(OIRE->getLocStart(), "object_getClass(") <<
599             FixItHint::CreateReplacement(
600                                          SourceRange(OIRE->getOpLoc(),
601                                                      OIRE->getLocEnd()), ")");
602           else
603             S.Diag(OIRE->getLocation(), diag::warn_objc_isa_use);
604         }
605         S.Diag(IV->getLocation(), diag::note_ivar_decl);
606       }
607     }
608 }
609 
610 ExprResult Sema::DefaultLvalueConversion(Expr *E) {
611   // Handle any placeholder expressions which made it here.
612   if (E->getType()->isPlaceholderType()) {
613     ExprResult result = CheckPlaceholderExpr(E);
614     if (result.isInvalid()) return ExprError();
615     E = result.get();
616   }
617 
618   // C++ [conv.lval]p1:
619   //   A glvalue of a non-function, non-array type T can be
620   //   converted to a prvalue.
621   if (!E->isGLValue()) return E;
622 
623   QualType T = E->getType();
624   assert(!T.isNull() && "r-value conversion on typeless expression?");
625 
626   // We don't want to throw lvalue-to-rvalue casts on top of
627   // expressions of certain types in C++.
628   if (getLangOpts().CPlusPlus &&
629       (E->getType() == Context.OverloadTy ||
630        T->isDependentType() ||
631        T->isRecordType()))
632     return E;
633 
634   // The C standard is actually really unclear on this point, and
635   // DR106 tells us what the result should be but not why.  It's
636   // generally best to say that void types just doesn't undergo
637   // lvalue-to-rvalue at all.  Note that expressions of unqualified
638   // 'void' type are never l-values, but qualified void can be.
639   if (T->isVoidType())
640     return E;
641 
642   // OpenCL usually rejects direct accesses to values of 'half' type.
643   if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp16 &&
644       T->isHalfType()) {
645     Diag(E->getExprLoc(), diag::err_opencl_half_load_store)
646       << 0 << T;
647     return ExprError();
648   }
649 
650   CheckForNullPointerDereference(*this, E);
651   if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(E->IgnoreParenCasts())) {
652     NamedDecl *ObjectGetClass = LookupSingleName(TUScope,
653                                      &Context.Idents.get("object_getClass"),
654                                      SourceLocation(), LookupOrdinaryName);
655     if (ObjectGetClass)
656       Diag(E->getExprLoc(), diag::warn_objc_isa_use) <<
657         FixItHint::CreateInsertion(OISA->getLocStart(), "object_getClass(") <<
658         FixItHint::CreateReplacement(
659                     SourceRange(OISA->getOpLoc(), OISA->getIsaMemberLoc()), ")");
660     else
661       Diag(E->getExprLoc(), diag::warn_objc_isa_use);
662   }
663   else if (const ObjCIvarRefExpr *OIRE =
664             dyn_cast<ObjCIvarRefExpr>(E->IgnoreParenCasts()))
665     DiagnoseDirectIsaAccess(*this, OIRE, SourceLocation(), /* Expr*/nullptr);
666 
667   // C++ [conv.lval]p1:
668   //   [...] If T is a non-class type, the type of the prvalue is the
669   //   cv-unqualified version of T. Otherwise, the type of the
670   //   rvalue is T.
671   //
672   // C99 6.3.2.1p2:
673   //   If the lvalue has qualified type, the value has the unqualified
674   //   version of the type of the lvalue; otherwise, the value has the
675   //   type of the lvalue.
676   if (T.hasQualifiers())
677     T = T.getUnqualifiedType();
678 
679   UpdateMarkingForLValueToRValue(E);
680 
681   // Loading a __weak object implicitly retains the value, so we need a cleanup to
682   // balance that.
683   if (getLangOpts().ObjCAutoRefCount &&
684       E->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
685     ExprNeedsCleanups = true;
686 
687   ExprResult Res = ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, E,
688                                             nullptr, VK_RValue);
689 
690   // C11 6.3.2.1p2:
691   //   ... if the lvalue has atomic type, the value has the non-atomic version
692   //   of the type of the lvalue ...
693   if (const AtomicType *Atomic = T->getAs<AtomicType>()) {
694     T = Atomic->getValueType().getUnqualifiedType();
695     Res = ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, Res.get(),
696                                    nullptr, VK_RValue);
697   }
698 
699   return Res;
700 }
701 
702 ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) {
703   ExprResult Res = DefaultFunctionArrayConversion(E);
704   if (Res.isInvalid())
705     return ExprError();
706   Res = DefaultLvalueConversion(Res.get());
707   if (Res.isInvalid())
708     return ExprError();
709   return Res;
710 }
711 
712 /// CallExprUnaryConversions - a special case of an unary conversion
713 /// performed on a function designator of a call expression.
714 ExprResult Sema::CallExprUnaryConversions(Expr *E) {
715   QualType Ty = E->getType();
716   ExprResult Res = E;
717   // Only do implicit cast for a function type, but not for a pointer
718   // to function type.
719   if (Ty->isFunctionType()) {
720     Res = ImpCastExprToType(E, Context.getPointerType(Ty),
721                             CK_FunctionToPointerDecay).get();
722     if (Res.isInvalid())
723       return ExprError();
724   }
725   Res = DefaultLvalueConversion(Res.get());
726   if (Res.isInvalid())
727     return ExprError();
728   return Res.get();
729 }
730 
731 /// UsualUnaryConversions - Performs various conversions that are common to most
732 /// operators (C99 6.3). The conversions of array and function types are
733 /// sometimes suppressed. For example, the array->pointer conversion doesn't
734 /// apply if the array is an argument to the sizeof or address (&) operators.
735 /// In these instances, this routine should *not* be called.
736 ExprResult Sema::UsualUnaryConversions(Expr *E) {
737   // First, convert to an r-value.
738   ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
739   if (Res.isInvalid())
740     return ExprError();
741   E = Res.get();
742 
743   QualType Ty = E->getType();
744   assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
745 
746   // Half FP have to be promoted to float unless it is natively supported
747   if (Ty->isHalfType() && !getLangOpts().NativeHalfType)
748     return ImpCastExprToType(Res.get(), Context.FloatTy, CK_FloatingCast);
749 
750   // Try to perform integral promotions if the object has a theoretically
751   // promotable type.
752   if (Ty->isIntegralOrUnscopedEnumerationType()) {
753     // C99 6.3.1.1p2:
754     //
755     //   The following may be used in an expression wherever an int or
756     //   unsigned int may be used:
757     //     - an object or expression with an integer type whose integer
758     //       conversion rank is less than or equal to the rank of int
759     //       and unsigned int.
760     //     - A bit-field of type _Bool, int, signed int, or unsigned int.
761     //
762     //   If an int can represent all values of the original type, the
763     //   value is converted to an int; otherwise, it is converted to an
764     //   unsigned int. These are called the integer promotions. All
765     //   other types are unchanged by the integer promotions.
766 
767     QualType PTy = Context.isPromotableBitField(E);
768     if (!PTy.isNull()) {
769       E = ImpCastExprToType(E, PTy, CK_IntegralCast).get();
770       return E;
771     }
772     if (Ty->isPromotableIntegerType()) {
773       QualType PT = Context.getPromotedIntegerType(Ty);
774       E = ImpCastExprToType(E, PT, CK_IntegralCast).get();
775       return E;
776     }
777   }
778   return E;
779 }
780 
781 /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
782 /// do not have a prototype. Arguments that have type float or __fp16
783 /// are promoted to double. All other argument types are converted by
784 /// UsualUnaryConversions().
785 ExprResult Sema::DefaultArgumentPromotion(Expr *E) {
786   QualType Ty = E->getType();
787   assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
788 
789   ExprResult Res = UsualUnaryConversions(E);
790   if (Res.isInvalid())
791     return ExprError();
792   E = Res.get();
793 
794   // If this is a 'float' or '__fp16' (CVR qualified or typedef) promote to
795   // double.
796   const BuiltinType *BTy = Ty->getAs<BuiltinType>();
797   if (BTy && (BTy->getKind() == BuiltinType::Half ||
798               BTy->getKind() == BuiltinType::Float))
799     E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).get();
800 
801   // C++ performs lvalue-to-rvalue conversion as a default argument
802   // promotion, even on class types, but note:
803   //   C++11 [conv.lval]p2:
804   //     When an lvalue-to-rvalue conversion occurs in an unevaluated
805   //     operand or a subexpression thereof the value contained in the
806   //     referenced object is not accessed. Otherwise, if the glvalue
807   //     has a class type, the conversion copy-initializes a temporary
808   //     of type T from the glvalue and the result of the conversion
809   //     is a prvalue for the temporary.
810   // FIXME: add some way to gate this entire thing for correctness in
811   // potentially potentially evaluated contexts.
812   if (getLangOpts().CPlusPlus && E->isGLValue() && !isUnevaluatedContext()) {
813     ExprResult Temp = PerformCopyInitialization(
814                        InitializedEntity::InitializeTemporary(E->getType()),
815                                                 E->getExprLoc(), E);
816     if (Temp.isInvalid())
817       return ExprError();
818     E = Temp.get();
819   }
820 
821   return E;
822 }
823 
824 /// Determine the degree of POD-ness for an expression.
825 /// Incomplete types are considered POD, since this check can be performed
826 /// when we're in an unevaluated context.
827 Sema::VarArgKind Sema::isValidVarArgType(const QualType &Ty) {
828   if (Ty->isIncompleteType()) {
829     // C++11 [expr.call]p7:
830     //   After these conversions, if the argument does not have arithmetic,
831     //   enumeration, pointer, pointer to member, or class type, the program
832     //   is ill-formed.
833     //
834     // Since we've already performed array-to-pointer and function-to-pointer
835     // decay, the only such type in C++ is cv void. This also handles
836     // initializer lists as variadic arguments.
837     if (Ty->isVoidType())
838       return VAK_Invalid;
839 
840     if (Ty->isObjCObjectType())
841       return VAK_Invalid;
842     return VAK_Valid;
843   }
844 
845   if (Ty.isCXX98PODType(Context))
846     return VAK_Valid;
847 
848   // C++11 [expr.call]p7:
849   //   Passing a potentially-evaluated argument of class type (Clause 9)
850   //   having a non-trivial copy constructor, a non-trivial move constructor,
851   //   or a non-trivial destructor, with no corresponding parameter,
852   //   is conditionally-supported with implementation-defined semantics.
853   if (getLangOpts().CPlusPlus11 && !Ty->isDependentType())
854     if (CXXRecordDecl *Record = Ty->getAsCXXRecordDecl())
855       if (!Record->hasNonTrivialCopyConstructor() &&
856           !Record->hasNonTrivialMoveConstructor() &&
857           !Record->hasNonTrivialDestructor())
858         return VAK_ValidInCXX11;
859 
860   if (getLangOpts().ObjCAutoRefCount && Ty->isObjCLifetimeType())
861     return VAK_Valid;
862 
863   if (Ty->isObjCObjectType())
864     return VAK_Invalid;
865 
866   if (getLangOpts().MSVCCompat)
867     return VAK_MSVCUndefined;
868 
869   // FIXME: In C++11, these cases are conditionally-supported, meaning we're
870   // permitted to reject them. We should consider doing so.
871   return VAK_Undefined;
872 }
873 
874 void Sema::checkVariadicArgument(const Expr *E, VariadicCallType CT) {
875   // Don't allow one to pass an Objective-C interface to a vararg.
876   const QualType &Ty = E->getType();
877   VarArgKind VAK = isValidVarArgType(Ty);
878 
879   // Complain about passing non-POD types through varargs.
880   switch (VAK) {
881   case VAK_ValidInCXX11:
882     DiagRuntimeBehavior(
883         E->getLocStart(), nullptr,
884         PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg)
885           << Ty << CT);
886     // Fall through.
887   case VAK_Valid:
888     if (Ty->isRecordType()) {
889       // This is unlikely to be what the user intended. If the class has a
890       // 'c_str' member function, the user probably meant to call that.
891       DiagRuntimeBehavior(E->getLocStart(), nullptr,
892                           PDiag(diag::warn_pass_class_arg_to_vararg)
893                             << Ty << CT << hasCStrMethod(E) << ".c_str()");
894     }
895     break;
896 
897   case VAK_Undefined:
898   case VAK_MSVCUndefined:
899     DiagRuntimeBehavior(
900         E->getLocStart(), nullptr,
901         PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg)
902           << getLangOpts().CPlusPlus11 << Ty << CT);
903     break;
904 
905   case VAK_Invalid:
906     if (Ty->isObjCObjectType())
907       DiagRuntimeBehavior(
908           E->getLocStart(), nullptr,
909           PDiag(diag::err_cannot_pass_objc_interface_to_vararg)
910             << Ty << CT);
911     else
912       Diag(E->getLocStart(), diag::err_cannot_pass_to_vararg)
913         << isa<InitListExpr>(E) << Ty << CT;
914     break;
915   }
916 }
917 
918 /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
919 /// will create a trap if the resulting type is not a POD type.
920 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
921                                                   FunctionDecl *FDecl) {
922   if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) {
923     // Strip the unbridged-cast placeholder expression off, if applicable.
924     if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast &&
925         (CT == VariadicMethod ||
926          (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) {
927       E = stripARCUnbridgedCast(E);
928 
929     // Otherwise, do normal placeholder checking.
930     } else {
931       ExprResult ExprRes = CheckPlaceholderExpr(E);
932       if (ExprRes.isInvalid())
933         return ExprError();
934       E = ExprRes.get();
935     }
936   }
937 
938   ExprResult ExprRes = DefaultArgumentPromotion(E);
939   if (ExprRes.isInvalid())
940     return ExprError();
941   E = ExprRes.get();
942 
943   // Diagnostics regarding non-POD argument types are
944   // emitted along with format string checking in Sema::CheckFunctionCall().
945   if (isValidVarArgType(E->getType()) == VAK_Undefined) {
946     // Turn this into a trap.
947     CXXScopeSpec SS;
948     SourceLocation TemplateKWLoc;
949     UnqualifiedId Name;
950     Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"),
951                        E->getLocStart());
952     ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc,
953                                           Name, true, false);
954     if (TrapFn.isInvalid())
955       return ExprError();
956 
957     ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(),
958                                     E->getLocStart(), None,
959                                     E->getLocEnd());
960     if (Call.isInvalid())
961       return ExprError();
962 
963     ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma,
964                                   Call.get(), E);
965     if (Comma.isInvalid())
966       return ExprError();
967     return Comma.get();
968   }
969 
970   if (!getLangOpts().CPlusPlus &&
971       RequireCompleteType(E->getExprLoc(), E->getType(),
972                           diag::err_call_incomplete_argument))
973     return ExprError();
974 
975   return E;
976 }
977 
978 /// \brief Converts an integer to complex float type.  Helper function of
979 /// UsualArithmeticConversions()
980 ///
981 /// \return false if the integer expression is an integer type and is
982 /// successfully converted to the complex type.
983 static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr,
984                                                   ExprResult &ComplexExpr,
985                                                   QualType IntTy,
986                                                   QualType ComplexTy,
987                                                   bool SkipCast) {
988   if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true;
989   if (SkipCast) return false;
990   if (IntTy->isIntegerType()) {
991     QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
992     IntExpr = S.ImpCastExprToType(IntExpr.get(), fpTy, CK_IntegralToFloating);
993     IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy,
994                                   CK_FloatingRealToComplex);
995   } else {
996     assert(IntTy->isComplexIntegerType());
997     IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy,
998                                   CK_IntegralComplexToFloatingComplex);
999   }
1000   return false;
1001 }
1002 
1003 /// \brief Handle arithmetic conversion with complex types.  Helper function of
1004 /// UsualArithmeticConversions()
1005 static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS,
1006                                              ExprResult &RHS, QualType LHSType,
1007                                              QualType RHSType,
1008                                              bool IsCompAssign) {
1009   // if we have an integer operand, the result is the complex type.
1010   if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
1011                                              /*skipCast*/false))
1012     return LHSType;
1013   if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
1014                                              /*skipCast*/IsCompAssign))
1015     return RHSType;
1016 
1017   // This handles complex/complex, complex/float, or float/complex.
1018   // When both operands are complex, the shorter operand is converted to the
1019   // type of the longer, and that is the type of the result. This corresponds
1020   // to what is done when combining two real floating-point operands.
1021   // The fun begins when size promotion occur across type domains.
1022   // From H&S 6.3.4: When one operand is complex and the other is a real
1023   // floating-point type, the less precise type is converted, within it's
1024   // real or complex domain, to the precision of the other type. For example,
1025   // when combining a "long double" with a "double _Complex", the
1026   // "double _Complex" is promoted to "long double _Complex".
1027 
1028   // Compute the rank of the two types, regardless of whether they are complex.
1029   int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1030 
1031   auto *LHSComplexType = dyn_cast<ComplexType>(LHSType);
1032   auto *RHSComplexType = dyn_cast<ComplexType>(RHSType);
1033   QualType LHSElementType =
1034       LHSComplexType ? LHSComplexType->getElementType() : LHSType;
1035   QualType RHSElementType =
1036       RHSComplexType ? RHSComplexType->getElementType() : RHSType;
1037 
1038   QualType ResultType = S.Context.getComplexType(LHSElementType);
1039   if (Order < 0) {
1040     // Promote the precision of the LHS if not an assignment.
1041     ResultType = S.Context.getComplexType(RHSElementType);
1042     if (!IsCompAssign) {
1043       if (LHSComplexType)
1044         LHS =
1045             S.ImpCastExprToType(LHS.get(), ResultType, CK_FloatingComplexCast);
1046       else
1047         LHS = S.ImpCastExprToType(LHS.get(), RHSElementType, CK_FloatingCast);
1048     }
1049   } else if (Order > 0) {
1050     // Promote the precision of the RHS.
1051     if (RHSComplexType)
1052       RHS = S.ImpCastExprToType(RHS.get(), ResultType, CK_FloatingComplexCast);
1053     else
1054       RHS = S.ImpCastExprToType(RHS.get(), LHSElementType, CK_FloatingCast);
1055   }
1056   return ResultType;
1057 }
1058 
1059 /// \brief Hande arithmetic conversion from integer to float.  Helper function
1060 /// of UsualArithmeticConversions()
1061 static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr,
1062                                            ExprResult &IntExpr,
1063                                            QualType FloatTy, QualType IntTy,
1064                                            bool ConvertFloat, bool ConvertInt) {
1065   if (IntTy->isIntegerType()) {
1066     if (ConvertInt)
1067       // Convert intExpr to the lhs floating point type.
1068       IntExpr = S.ImpCastExprToType(IntExpr.get(), FloatTy,
1069                                     CK_IntegralToFloating);
1070     return FloatTy;
1071   }
1072 
1073   // Convert both sides to the appropriate complex float.
1074   assert(IntTy->isComplexIntegerType());
1075   QualType result = S.Context.getComplexType(FloatTy);
1076 
1077   // _Complex int -> _Complex float
1078   if (ConvertInt)
1079     IntExpr = S.ImpCastExprToType(IntExpr.get(), result,
1080                                   CK_IntegralComplexToFloatingComplex);
1081 
1082   // float -> _Complex float
1083   if (ConvertFloat)
1084     FloatExpr = S.ImpCastExprToType(FloatExpr.get(), result,
1085                                     CK_FloatingRealToComplex);
1086 
1087   return result;
1088 }
1089 
1090 /// \brief Handle arithmethic conversion with floating point types.  Helper
1091 /// function of UsualArithmeticConversions()
1092 static QualType handleFloatConversion(Sema &S, ExprResult &LHS,
1093                                       ExprResult &RHS, QualType LHSType,
1094                                       QualType RHSType, bool IsCompAssign) {
1095   bool LHSFloat = LHSType->isRealFloatingType();
1096   bool RHSFloat = RHSType->isRealFloatingType();
1097 
1098   // If we have two real floating types, convert the smaller operand
1099   // to the bigger result.
1100   if (LHSFloat && RHSFloat) {
1101     int order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1102     if (order > 0) {
1103       RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FloatingCast);
1104       return LHSType;
1105     }
1106 
1107     assert(order < 0 && "illegal float comparison");
1108     if (!IsCompAssign)
1109       LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FloatingCast);
1110     return RHSType;
1111   }
1112 
1113   if (LHSFloat) {
1114     // Half FP has to be promoted to float unless it is natively supported
1115     if (LHSType->isHalfType() && !S.getLangOpts().NativeHalfType)
1116       LHSType = S.Context.FloatTy;
1117 
1118     return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType,
1119                                       /*convertFloat=*/!IsCompAssign,
1120                                       /*convertInt=*/ true);
1121   }
1122   assert(RHSFloat);
1123   return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType,
1124                                     /*convertInt=*/ true,
1125                                     /*convertFloat=*/!IsCompAssign);
1126 }
1127 
1128 typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType);
1129 
1130 namespace {
1131 /// These helper callbacks are placed in an anonymous namespace to
1132 /// permit their use as function template parameters.
1133 ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) {
1134   return S.ImpCastExprToType(op, toType, CK_IntegralCast);
1135 }
1136 
1137 ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) {
1138   return S.ImpCastExprToType(op, S.Context.getComplexType(toType),
1139                              CK_IntegralComplexCast);
1140 }
1141 }
1142 
1143 /// \brief Handle integer arithmetic conversions.  Helper function of
1144 /// UsualArithmeticConversions()
1145 template <PerformCastFn doLHSCast, PerformCastFn doRHSCast>
1146 static QualType handleIntegerConversion(Sema &S, ExprResult &LHS,
1147                                         ExprResult &RHS, QualType LHSType,
1148                                         QualType RHSType, bool IsCompAssign) {
1149   // The rules for this case are in C99 6.3.1.8
1150   int order = S.Context.getIntegerTypeOrder(LHSType, RHSType);
1151   bool LHSSigned = LHSType->hasSignedIntegerRepresentation();
1152   bool RHSSigned = RHSType->hasSignedIntegerRepresentation();
1153   if (LHSSigned == RHSSigned) {
1154     // Same signedness; use the higher-ranked type
1155     if (order >= 0) {
1156       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1157       return LHSType;
1158     } else if (!IsCompAssign)
1159       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1160     return RHSType;
1161   } else if (order != (LHSSigned ? 1 : -1)) {
1162     // The unsigned type has greater than or equal rank to the
1163     // signed type, so use the unsigned type
1164     if (RHSSigned) {
1165       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1166       return LHSType;
1167     } else if (!IsCompAssign)
1168       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1169     return RHSType;
1170   } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) {
1171     // The two types are different widths; if we are here, that
1172     // means the signed type is larger than the unsigned type, so
1173     // use the signed type.
1174     if (LHSSigned) {
1175       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1176       return LHSType;
1177     } else if (!IsCompAssign)
1178       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1179     return RHSType;
1180   } else {
1181     // The signed type is higher-ranked than the unsigned type,
1182     // but isn't actually any bigger (like unsigned int and long
1183     // on most 32-bit systems).  Use the unsigned type corresponding
1184     // to the signed type.
1185     QualType result =
1186       S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType);
1187     RHS = (*doRHSCast)(S, RHS.get(), result);
1188     if (!IsCompAssign)
1189       LHS = (*doLHSCast)(S, LHS.get(), result);
1190     return result;
1191   }
1192 }
1193 
1194 /// \brief Handle conversions with GCC complex int extension.  Helper function
1195 /// of UsualArithmeticConversions()
1196 static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS,
1197                                            ExprResult &RHS, QualType LHSType,
1198                                            QualType RHSType,
1199                                            bool IsCompAssign) {
1200   const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
1201   const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
1202 
1203   if (LHSComplexInt && RHSComplexInt) {
1204     QualType LHSEltType = LHSComplexInt->getElementType();
1205     QualType RHSEltType = RHSComplexInt->getElementType();
1206     QualType ScalarType =
1207       handleIntegerConversion<doComplexIntegralCast, doComplexIntegralCast>
1208         (S, LHS, RHS, LHSEltType, RHSEltType, IsCompAssign);
1209 
1210     return S.Context.getComplexType(ScalarType);
1211   }
1212 
1213   if (LHSComplexInt) {
1214     QualType LHSEltType = LHSComplexInt->getElementType();
1215     QualType ScalarType =
1216       handleIntegerConversion<doComplexIntegralCast, doIntegralCast>
1217         (S, LHS, RHS, LHSEltType, RHSType, IsCompAssign);
1218     QualType ComplexType = S.Context.getComplexType(ScalarType);
1219     RHS = S.ImpCastExprToType(RHS.get(), ComplexType,
1220                               CK_IntegralRealToComplex);
1221 
1222     return ComplexType;
1223   }
1224 
1225   assert(RHSComplexInt);
1226 
1227   QualType RHSEltType = RHSComplexInt->getElementType();
1228   QualType ScalarType =
1229     handleIntegerConversion<doIntegralCast, doComplexIntegralCast>
1230       (S, LHS, RHS, LHSType, RHSEltType, IsCompAssign);
1231   QualType ComplexType = S.Context.getComplexType(ScalarType);
1232 
1233   if (!IsCompAssign)
1234     LHS = S.ImpCastExprToType(LHS.get(), ComplexType,
1235                               CK_IntegralRealToComplex);
1236   return ComplexType;
1237 }
1238 
1239 /// UsualArithmeticConversions - Performs various conversions that are common to
1240 /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
1241 /// routine returns the first non-arithmetic type found. The client is
1242 /// responsible for emitting appropriate error diagnostics.
1243 QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS,
1244                                           bool IsCompAssign) {
1245   if (!IsCompAssign) {
1246     LHS = UsualUnaryConversions(LHS.get());
1247     if (LHS.isInvalid())
1248       return QualType();
1249   }
1250 
1251   RHS = UsualUnaryConversions(RHS.get());
1252   if (RHS.isInvalid())
1253     return QualType();
1254 
1255   // For conversion purposes, we ignore any qualifiers.
1256   // For example, "const float" and "float" are equivalent.
1257   QualType LHSType =
1258     Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
1259   QualType RHSType =
1260     Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
1261 
1262   // For conversion purposes, we ignore any atomic qualifier on the LHS.
1263   if (const AtomicType *AtomicLHS = LHSType->getAs<AtomicType>())
1264     LHSType = AtomicLHS->getValueType();
1265 
1266   // If both types are identical, no conversion is needed.
1267   if (LHSType == RHSType)
1268     return LHSType;
1269 
1270   // If either side is a non-arithmetic type (e.g. a pointer), we are done.
1271   // The caller can deal with this (e.g. pointer + int).
1272   if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType())
1273     return QualType();
1274 
1275   // Apply unary and bitfield promotions to the LHS's type.
1276   QualType LHSUnpromotedType = LHSType;
1277   if (LHSType->isPromotableIntegerType())
1278     LHSType = Context.getPromotedIntegerType(LHSType);
1279   QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get());
1280   if (!LHSBitfieldPromoteTy.isNull())
1281     LHSType = LHSBitfieldPromoteTy;
1282   if (LHSType != LHSUnpromotedType && !IsCompAssign)
1283     LHS = ImpCastExprToType(LHS.get(), LHSType, CK_IntegralCast);
1284 
1285   // If both types are identical, no conversion is needed.
1286   if (LHSType == RHSType)
1287     return LHSType;
1288 
1289   // At this point, we have two different arithmetic types.
1290 
1291   // Handle complex types first (C99 6.3.1.8p1).
1292   if (LHSType->isComplexType() || RHSType->isComplexType())
1293     return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType,
1294                                         IsCompAssign);
1295 
1296   // Now handle "real" floating types (i.e. float, double, long double).
1297   if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
1298     return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType,
1299                                  IsCompAssign);
1300 
1301   // Handle GCC complex int extension.
1302   if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType())
1303     return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType,
1304                                       IsCompAssign);
1305 
1306   // Finally, we have two differing integer types.
1307   return handleIntegerConversion<doIntegralCast, doIntegralCast>
1308            (*this, LHS, RHS, LHSType, RHSType, IsCompAssign);
1309 }
1310 
1311 
1312 //===----------------------------------------------------------------------===//
1313 //  Semantic Analysis for various Expression Types
1314 //===----------------------------------------------------------------------===//
1315 
1316 
1317 ExprResult
1318 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc,
1319                                 SourceLocation DefaultLoc,
1320                                 SourceLocation RParenLoc,
1321                                 Expr *ControllingExpr,
1322                                 ArrayRef<ParsedType> ArgTypes,
1323                                 ArrayRef<Expr *> ArgExprs) {
1324   unsigned NumAssocs = ArgTypes.size();
1325   assert(NumAssocs == ArgExprs.size());
1326 
1327   TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs];
1328   for (unsigned i = 0; i < NumAssocs; ++i) {
1329     if (ArgTypes[i])
1330       (void) GetTypeFromParser(ArgTypes[i], &Types[i]);
1331     else
1332       Types[i] = nullptr;
1333   }
1334 
1335   ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
1336                                              ControllingExpr,
1337                                              llvm::makeArrayRef(Types, NumAssocs),
1338                                              ArgExprs);
1339   delete [] Types;
1340   return ER;
1341 }
1342 
1343 ExprResult
1344 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc,
1345                                  SourceLocation DefaultLoc,
1346                                  SourceLocation RParenLoc,
1347                                  Expr *ControllingExpr,
1348                                  ArrayRef<TypeSourceInfo *> Types,
1349                                  ArrayRef<Expr *> Exprs) {
1350   unsigned NumAssocs = Types.size();
1351   assert(NumAssocs == Exprs.size());
1352   if (ControllingExpr->getType()->isPlaceholderType()) {
1353     ExprResult result = CheckPlaceholderExpr(ControllingExpr);
1354     if (result.isInvalid()) return ExprError();
1355     ControllingExpr = result.get();
1356   }
1357 
1358   // The controlling expression is an unevaluated operand, so side effects are
1359   // likely unintended.
1360   if (ActiveTemplateInstantiations.empty() &&
1361       ControllingExpr->HasSideEffects(Context, false))
1362     Diag(ControllingExpr->getExprLoc(),
1363          diag::warn_side_effects_unevaluated_context);
1364 
1365   bool TypeErrorFound = false,
1366        IsResultDependent = ControllingExpr->isTypeDependent(),
1367        ContainsUnexpandedParameterPack
1368          = ControllingExpr->containsUnexpandedParameterPack();
1369 
1370   for (unsigned i = 0; i < NumAssocs; ++i) {
1371     if (Exprs[i]->containsUnexpandedParameterPack())
1372       ContainsUnexpandedParameterPack = true;
1373 
1374     if (Types[i]) {
1375       if (Types[i]->getType()->containsUnexpandedParameterPack())
1376         ContainsUnexpandedParameterPack = true;
1377 
1378       if (Types[i]->getType()->isDependentType()) {
1379         IsResultDependent = true;
1380       } else {
1381         // C11 6.5.1.1p2 "The type name in a generic association shall specify a
1382         // complete object type other than a variably modified type."
1383         unsigned D = 0;
1384         if (Types[i]->getType()->isIncompleteType())
1385           D = diag::err_assoc_type_incomplete;
1386         else if (!Types[i]->getType()->isObjectType())
1387           D = diag::err_assoc_type_nonobject;
1388         else if (Types[i]->getType()->isVariablyModifiedType())
1389           D = diag::err_assoc_type_variably_modified;
1390 
1391         if (D != 0) {
1392           Diag(Types[i]->getTypeLoc().getBeginLoc(), D)
1393             << Types[i]->getTypeLoc().getSourceRange()
1394             << Types[i]->getType();
1395           TypeErrorFound = true;
1396         }
1397 
1398         // C11 6.5.1.1p2 "No two generic associations in the same generic
1399         // selection shall specify compatible types."
1400         for (unsigned j = i+1; j < NumAssocs; ++j)
1401           if (Types[j] && !Types[j]->getType()->isDependentType() &&
1402               Context.typesAreCompatible(Types[i]->getType(),
1403                                          Types[j]->getType())) {
1404             Diag(Types[j]->getTypeLoc().getBeginLoc(),
1405                  diag::err_assoc_compatible_types)
1406               << Types[j]->getTypeLoc().getSourceRange()
1407               << Types[j]->getType()
1408               << Types[i]->getType();
1409             Diag(Types[i]->getTypeLoc().getBeginLoc(),
1410                  diag::note_compat_assoc)
1411               << Types[i]->getTypeLoc().getSourceRange()
1412               << Types[i]->getType();
1413             TypeErrorFound = true;
1414           }
1415       }
1416     }
1417   }
1418   if (TypeErrorFound)
1419     return ExprError();
1420 
1421   // If we determined that the generic selection is result-dependent, don't
1422   // try to compute the result expression.
1423   if (IsResultDependent)
1424     return new (Context) GenericSelectionExpr(
1425         Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1426         ContainsUnexpandedParameterPack);
1427 
1428   SmallVector<unsigned, 1> CompatIndices;
1429   unsigned DefaultIndex = -1U;
1430   for (unsigned i = 0; i < NumAssocs; ++i) {
1431     if (!Types[i])
1432       DefaultIndex = i;
1433     else if (Context.typesAreCompatible(ControllingExpr->getType(),
1434                                         Types[i]->getType()))
1435       CompatIndices.push_back(i);
1436   }
1437 
1438   // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have
1439   // type compatible with at most one of the types named in its generic
1440   // association list."
1441   if (CompatIndices.size() > 1) {
1442     // We strip parens here because the controlling expression is typically
1443     // parenthesized in macro definitions.
1444     ControllingExpr = ControllingExpr->IgnoreParens();
1445     Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match)
1446       << ControllingExpr->getSourceRange() << ControllingExpr->getType()
1447       << (unsigned) CompatIndices.size();
1448     for (SmallVectorImpl<unsigned>::iterator I = CompatIndices.begin(),
1449          E = CompatIndices.end(); I != E; ++I) {
1450       Diag(Types[*I]->getTypeLoc().getBeginLoc(),
1451            diag::note_compat_assoc)
1452         << Types[*I]->getTypeLoc().getSourceRange()
1453         << Types[*I]->getType();
1454     }
1455     return ExprError();
1456   }
1457 
1458   // C11 6.5.1.1p2 "If a generic selection has no default generic association,
1459   // its controlling expression shall have type compatible with exactly one of
1460   // the types named in its generic association list."
1461   if (DefaultIndex == -1U && CompatIndices.size() == 0) {
1462     // We strip parens here because the controlling expression is typically
1463     // parenthesized in macro definitions.
1464     ControllingExpr = ControllingExpr->IgnoreParens();
1465     Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match)
1466       << ControllingExpr->getSourceRange() << ControllingExpr->getType();
1467     return ExprError();
1468   }
1469 
1470   // C11 6.5.1.1p3 "If a generic selection has a generic association with a
1471   // type name that is compatible with the type of the controlling expression,
1472   // then the result expression of the generic selection is the expression
1473   // in that generic association. Otherwise, the result expression of the
1474   // generic selection is the expression in the default generic association."
1475   unsigned ResultIndex =
1476     CompatIndices.size() ? CompatIndices[0] : DefaultIndex;
1477 
1478   return new (Context) GenericSelectionExpr(
1479       Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1480       ContainsUnexpandedParameterPack, ResultIndex);
1481 }
1482 
1483 /// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the
1484 /// location of the token and the offset of the ud-suffix within it.
1485 static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc,
1486                                      unsigned Offset) {
1487   return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(),
1488                                         S.getLangOpts());
1489 }
1490 
1491 /// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up
1492 /// the corresponding cooked (non-raw) literal operator, and build a call to it.
1493 static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope,
1494                                                  IdentifierInfo *UDSuffix,
1495                                                  SourceLocation UDSuffixLoc,
1496                                                  ArrayRef<Expr*> Args,
1497                                                  SourceLocation LitEndLoc) {
1498   assert(Args.size() <= 2 && "too many arguments for literal operator");
1499 
1500   QualType ArgTy[2];
1501   for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) {
1502     ArgTy[ArgIdx] = Args[ArgIdx]->getType();
1503     if (ArgTy[ArgIdx]->isArrayType())
1504       ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]);
1505   }
1506 
1507   DeclarationName OpName =
1508     S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1509   DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1510   OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1511 
1512   LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName);
1513   if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()),
1514                               /*AllowRaw*/false, /*AllowTemplate*/false,
1515                               /*AllowStringTemplate*/false) == Sema::LOLR_Error)
1516     return ExprError();
1517 
1518   return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc);
1519 }
1520 
1521 /// ActOnStringLiteral - The specified tokens were lexed as pasted string
1522 /// fragments (e.g. "foo" "bar" L"baz").  The result string has to handle string
1523 /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
1524 /// multiple tokens.  However, the common case is that StringToks points to one
1525 /// string.
1526 ///
1527 ExprResult
1528 Sema::ActOnStringLiteral(ArrayRef<Token> StringToks, Scope *UDLScope) {
1529   assert(!StringToks.empty() && "Must have at least one string!");
1530 
1531   StringLiteralParser Literal(StringToks, PP);
1532   if (Literal.hadError)
1533     return ExprError();
1534 
1535   SmallVector<SourceLocation, 4> StringTokLocs;
1536   for (unsigned i = 0; i != StringToks.size(); ++i)
1537     StringTokLocs.push_back(StringToks[i].getLocation());
1538 
1539   QualType CharTy = Context.CharTy;
1540   StringLiteral::StringKind Kind = StringLiteral::Ascii;
1541   if (Literal.isWide()) {
1542     CharTy = Context.getWideCharType();
1543     Kind = StringLiteral::Wide;
1544   } else if (Literal.isUTF8()) {
1545     Kind = StringLiteral::UTF8;
1546   } else if (Literal.isUTF16()) {
1547     CharTy = Context.Char16Ty;
1548     Kind = StringLiteral::UTF16;
1549   } else if (Literal.isUTF32()) {
1550     CharTy = Context.Char32Ty;
1551     Kind = StringLiteral::UTF32;
1552   } else if (Literal.isPascal()) {
1553     CharTy = Context.UnsignedCharTy;
1554   }
1555 
1556   QualType CharTyConst = CharTy;
1557   // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
1558   if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings)
1559     CharTyConst.addConst();
1560 
1561   // Get an array type for the string, according to C99 6.4.5.  This includes
1562   // the nul terminator character as well as the string length for pascal
1563   // strings.
1564   QualType StrTy = Context.getConstantArrayType(CharTyConst,
1565                                  llvm::APInt(32, Literal.GetNumStringChars()+1),
1566                                  ArrayType::Normal, 0);
1567 
1568   // OpenCL v1.1 s6.5.3: a string literal is in the constant address space.
1569   if (getLangOpts().OpenCL) {
1570     StrTy = Context.getAddrSpaceQualType(StrTy, LangAS::opencl_constant);
1571   }
1572 
1573   // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
1574   StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(),
1575                                              Kind, Literal.Pascal, StrTy,
1576                                              &StringTokLocs[0],
1577                                              StringTokLocs.size());
1578   if (Literal.getUDSuffix().empty())
1579     return Lit;
1580 
1581   // We're building a user-defined literal.
1582   IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
1583   SourceLocation UDSuffixLoc =
1584     getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()],
1585                    Literal.getUDSuffixOffset());
1586 
1587   // Make sure we're allowed user-defined literals here.
1588   if (!UDLScope)
1589     return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl));
1590 
1591   // C++11 [lex.ext]p5: The literal L is treated as a call of the form
1592   //   operator "" X (str, len)
1593   QualType SizeType = Context.getSizeType();
1594 
1595   DeclarationName OpName =
1596     Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1597   DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1598   OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1599 
1600   QualType ArgTy[] = {
1601     Context.getArrayDecayedType(StrTy), SizeType
1602   };
1603 
1604   LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
1605   switch (LookupLiteralOperator(UDLScope, R, ArgTy,
1606                                 /*AllowRaw*/false, /*AllowTemplate*/false,
1607                                 /*AllowStringTemplate*/true)) {
1608 
1609   case LOLR_Cooked: {
1610     llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars());
1611     IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType,
1612                                                     StringTokLocs[0]);
1613     Expr *Args[] = { Lit, LenArg };
1614 
1615     return BuildLiteralOperatorCall(R, OpNameInfo, Args, StringTokLocs.back());
1616   }
1617 
1618   case LOLR_StringTemplate: {
1619     TemplateArgumentListInfo ExplicitArgs;
1620 
1621     unsigned CharBits = Context.getIntWidth(CharTy);
1622     bool CharIsUnsigned = CharTy->isUnsignedIntegerType();
1623     llvm::APSInt Value(CharBits, CharIsUnsigned);
1624 
1625     TemplateArgument TypeArg(CharTy);
1626     TemplateArgumentLocInfo TypeArgInfo(Context.getTrivialTypeSourceInfo(CharTy));
1627     ExplicitArgs.addArgument(TemplateArgumentLoc(TypeArg, TypeArgInfo));
1628 
1629     for (unsigned I = 0, N = Lit->getLength(); I != N; ++I) {
1630       Value = Lit->getCodeUnit(I);
1631       TemplateArgument Arg(Context, Value, CharTy);
1632       TemplateArgumentLocInfo ArgInfo;
1633       ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
1634     }
1635     return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(),
1636                                     &ExplicitArgs);
1637   }
1638   case LOLR_Raw:
1639   case LOLR_Template:
1640     llvm_unreachable("unexpected literal operator lookup result");
1641   case LOLR_Error:
1642     return ExprError();
1643   }
1644   llvm_unreachable("unexpected literal operator lookup result");
1645 }
1646 
1647 ExprResult
1648 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
1649                        SourceLocation Loc,
1650                        const CXXScopeSpec *SS) {
1651   DeclarationNameInfo NameInfo(D->getDeclName(), Loc);
1652   return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS);
1653 }
1654 
1655 /// BuildDeclRefExpr - Build an expression that references a
1656 /// declaration that does not require a closure capture.
1657 ExprResult
1658 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
1659                        const DeclarationNameInfo &NameInfo,
1660                        const CXXScopeSpec *SS, NamedDecl *FoundD,
1661                        const TemplateArgumentListInfo *TemplateArgs) {
1662   if (getLangOpts().CUDA)
1663     if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext))
1664       if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) {
1665         if (CheckCUDATarget(Caller, Callee)) {
1666           Diag(NameInfo.getLoc(), diag::err_ref_bad_target)
1667             << IdentifyCUDATarget(Callee) << D->getIdentifier()
1668             << IdentifyCUDATarget(Caller);
1669           Diag(D->getLocation(), diag::note_previous_decl)
1670             << D->getIdentifier();
1671           return ExprError();
1672         }
1673       }
1674 
1675   bool RefersToCapturedVariable =
1676       isa<VarDecl>(D) &&
1677       NeedToCaptureVariable(cast<VarDecl>(D), NameInfo.getLoc());
1678 
1679   DeclRefExpr *E;
1680   if (isa<VarTemplateSpecializationDecl>(D)) {
1681     VarTemplateSpecializationDecl *VarSpec =
1682         cast<VarTemplateSpecializationDecl>(D);
1683 
1684     E = DeclRefExpr::Create(Context, SS ? SS->getWithLocInContext(Context)
1685                                         : NestedNameSpecifierLoc(),
1686                             VarSpec->getTemplateKeywordLoc(), D,
1687                             RefersToCapturedVariable, NameInfo.getLoc(), Ty, VK,
1688                             FoundD, TemplateArgs);
1689   } else {
1690     assert(!TemplateArgs && "No template arguments for non-variable"
1691                             " template specialization references");
1692     E = DeclRefExpr::Create(Context, SS ? SS->getWithLocInContext(Context)
1693                                         : NestedNameSpecifierLoc(),
1694                             SourceLocation(), D, RefersToCapturedVariable,
1695                             NameInfo, Ty, VK, FoundD);
1696   }
1697 
1698   MarkDeclRefReferenced(E);
1699 
1700   if (getLangOpts().ObjCARCWeak && isa<VarDecl>(D) &&
1701       Ty.getObjCLifetime() == Qualifiers::OCL_Weak &&
1702       !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, E->getLocStart()))
1703       recordUseOfEvaluatedWeak(E);
1704 
1705   // Just in case we're building an illegal pointer-to-member.
1706   FieldDecl *FD = dyn_cast<FieldDecl>(D);
1707   if (FD && FD->isBitField())
1708     E->setObjectKind(OK_BitField);
1709 
1710   return E;
1711 }
1712 
1713 /// Decomposes the given name into a DeclarationNameInfo, its location, and
1714 /// possibly a list of template arguments.
1715 ///
1716 /// If this produces template arguments, it is permitted to call
1717 /// DecomposeTemplateName.
1718 ///
1719 /// This actually loses a lot of source location information for
1720 /// non-standard name kinds; we should consider preserving that in
1721 /// some way.
1722 void
1723 Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id,
1724                              TemplateArgumentListInfo &Buffer,
1725                              DeclarationNameInfo &NameInfo,
1726                              const TemplateArgumentListInfo *&TemplateArgs) {
1727   if (Id.getKind() == UnqualifiedId::IK_TemplateId) {
1728     Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc);
1729     Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc);
1730 
1731     ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(),
1732                                        Id.TemplateId->NumArgs);
1733     translateTemplateArguments(TemplateArgsPtr, Buffer);
1734 
1735     TemplateName TName = Id.TemplateId->Template.get();
1736     SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc;
1737     NameInfo = Context.getNameForTemplate(TName, TNameLoc);
1738     TemplateArgs = &Buffer;
1739   } else {
1740     NameInfo = GetNameFromUnqualifiedId(Id);
1741     TemplateArgs = nullptr;
1742   }
1743 }
1744 
1745 static void emitEmptyLookupTypoDiagnostic(
1746     const TypoCorrection &TC, Sema &SemaRef, const CXXScopeSpec &SS,
1747     DeclarationName Typo, SourceLocation TypoLoc, ArrayRef<Expr *> Args,
1748     unsigned DiagnosticID, unsigned DiagnosticSuggestID) {
1749   DeclContext *Ctx =
1750       SS.isEmpty() ? nullptr : SemaRef.computeDeclContext(SS, false);
1751   if (!TC) {
1752     // Emit a special diagnostic for failed member lookups.
1753     // FIXME: computing the declaration context might fail here (?)
1754     if (Ctx)
1755       SemaRef.Diag(TypoLoc, diag::err_no_member) << Typo << Ctx
1756                                                  << SS.getRange();
1757     else
1758       SemaRef.Diag(TypoLoc, DiagnosticID) << Typo;
1759     return;
1760   }
1761 
1762   std::string CorrectedStr = TC.getAsString(SemaRef.getLangOpts());
1763   bool DroppedSpecifier =
1764       TC.WillReplaceSpecifier() && Typo.getAsString() == CorrectedStr;
1765   unsigned NoteID =
1766       (TC.getCorrectionDecl() && isa<ImplicitParamDecl>(TC.getCorrectionDecl()))
1767           ? diag::note_implicit_param_decl
1768           : diag::note_previous_decl;
1769   if (!Ctx)
1770     SemaRef.diagnoseTypo(TC, SemaRef.PDiag(DiagnosticSuggestID) << Typo,
1771                          SemaRef.PDiag(NoteID));
1772   else
1773     SemaRef.diagnoseTypo(TC, SemaRef.PDiag(diag::err_no_member_suggest)
1774                                  << Typo << Ctx << DroppedSpecifier
1775                                  << SS.getRange(),
1776                          SemaRef.PDiag(NoteID));
1777 }
1778 
1779 /// Diagnose an empty lookup.
1780 ///
1781 /// \return false if new lookup candidates were found
1782 bool
1783 Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R,
1784                           std::unique_ptr<CorrectionCandidateCallback> CCC,
1785                           TemplateArgumentListInfo *ExplicitTemplateArgs,
1786                           ArrayRef<Expr *> Args, TypoExpr **Out) {
1787   DeclarationName Name = R.getLookupName();
1788 
1789   unsigned diagnostic = diag::err_undeclared_var_use;
1790   unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest;
1791   if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
1792       Name.getNameKind() == DeclarationName::CXXLiteralOperatorName ||
1793       Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
1794     diagnostic = diag::err_undeclared_use;
1795     diagnostic_suggest = diag::err_undeclared_use_suggest;
1796   }
1797 
1798   // If the original lookup was an unqualified lookup, fake an
1799   // unqualified lookup.  This is useful when (for example) the
1800   // original lookup would not have found something because it was a
1801   // dependent name.
1802   DeclContext *DC = (SS.isEmpty() && !CallsUndergoingInstantiation.empty())
1803     ? CurContext : nullptr;
1804   while (DC) {
1805     if (isa<CXXRecordDecl>(DC)) {
1806       LookupQualifiedName(R, DC);
1807 
1808       if (!R.empty()) {
1809         // Don't give errors about ambiguities in this lookup.
1810         R.suppressDiagnostics();
1811 
1812         // During a default argument instantiation the CurContext points
1813         // to a CXXMethodDecl; but we can't apply a this-> fixit inside a
1814         // function parameter list, hence add an explicit check.
1815         bool isDefaultArgument = !ActiveTemplateInstantiations.empty() &&
1816                               ActiveTemplateInstantiations.back().Kind ==
1817             ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation;
1818         CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext);
1819         bool isInstance = CurMethod &&
1820                           CurMethod->isInstance() &&
1821                           DC == CurMethod->getParent() && !isDefaultArgument;
1822 
1823 
1824         // Give a code modification hint to insert 'this->'.
1825         // TODO: fixit for inserting 'Base<T>::' in the other cases.
1826         // Actually quite difficult!
1827         if (getLangOpts().MSVCCompat)
1828           diagnostic = diag::ext_found_via_dependent_bases_lookup;
1829         if (isInstance) {
1830           Diag(R.getNameLoc(), diagnostic) << Name
1831             << FixItHint::CreateInsertion(R.getNameLoc(), "this->");
1832           UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(
1833               CallsUndergoingInstantiation.back()->getCallee());
1834 
1835           CXXMethodDecl *DepMethod;
1836           if (CurMethod->isDependentContext())
1837             DepMethod = CurMethod;
1838           else if (CurMethod->getTemplatedKind() ==
1839               FunctionDecl::TK_FunctionTemplateSpecialization)
1840             DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()->
1841                 getInstantiatedFromMemberTemplate()->getTemplatedDecl());
1842           else
1843             DepMethod = cast<CXXMethodDecl>(
1844                 CurMethod->getInstantiatedFromMemberFunction());
1845           assert(DepMethod && "No template pattern found");
1846 
1847           QualType DepThisType = DepMethod->getThisType(Context);
1848           CheckCXXThisCapture(R.getNameLoc());
1849           CXXThisExpr *DepThis = new (Context) CXXThisExpr(
1850                                      R.getNameLoc(), DepThisType, false);
1851           TemplateArgumentListInfo TList;
1852           if (ULE->hasExplicitTemplateArgs())
1853             ULE->copyTemplateArgumentsInto(TList);
1854 
1855           CXXScopeSpec SS;
1856           SS.Adopt(ULE->getQualifierLoc());
1857           CXXDependentScopeMemberExpr *DepExpr =
1858               CXXDependentScopeMemberExpr::Create(
1859                   Context, DepThis, DepThisType, true, SourceLocation(),
1860                   SS.getWithLocInContext(Context),
1861                   ULE->getTemplateKeywordLoc(), nullptr,
1862                   R.getLookupNameInfo(),
1863                   ULE->hasExplicitTemplateArgs() ? &TList : nullptr);
1864           CallsUndergoingInstantiation.back()->setCallee(DepExpr);
1865         } else {
1866           Diag(R.getNameLoc(), diagnostic) << Name;
1867         }
1868 
1869         // Do we really want to note all of these?
1870         for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
1871           Diag((*I)->getLocation(), diag::note_dependent_var_use);
1872 
1873         // Return true if we are inside a default argument instantiation
1874         // and the found name refers to an instance member function, otherwise
1875         // the function calling DiagnoseEmptyLookup will try to create an
1876         // implicit member call and this is wrong for default argument.
1877         if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) {
1878           Diag(R.getNameLoc(), diag::err_member_call_without_object);
1879           return true;
1880         }
1881 
1882         // Tell the callee to try to recover.
1883         return false;
1884       }
1885 
1886       R.clear();
1887     }
1888 
1889     // In Microsoft mode, if we are performing lookup from within a friend
1890     // function definition declared at class scope then we must set
1891     // DC to the lexical parent to be able to search into the parent
1892     // class.
1893     if (getLangOpts().MSVCCompat && isa<FunctionDecl>(DC) &&
1894         cast<FunctionDecl>(DC)->getFriendObjectKind() &&
1895         DC->getLexicalParent()->isRecord())
1896       DC = DC->getLexicalParent();
1897     else
1898       DC = DC->getParent();
1899   }
1900 
1901   // We didn't find anything, so try to correct for a typo.
1902   TypoCorrection Corrected;
1903   if (S && Out) {
1904     SourceLocation TypoLoc = R.getNameLoc();
1905     assert(!ExplicitTemplateArgs &&
1906            "Diagnosing an empty lookup with explicit template args!");
1907     *Out = CorrectTypoDelayed(
1908         R.getLookupNameInfo(), R.getLookupKind(), S, &SS, std::move(CCC),
1909         [=](const TypoCorrection &TC) {
1910           emitEmptyLookupTypoDiagnostic(TC, *this, SS, Name, TypoLoc, Args,
1911                                         diagnostic, diagnostic_suggest);
1912         },
1913         nullptr, CTK_ErrorRecovery);
1914     if (*Out)
1915       return true;
1916   } else if (S && (Corrected =
1917                        CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S,
1918                                    &SS, std::move(CCC), CTK_ErrorRecovery))) {
1919     std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
1920     bool DroppedSpecifier =
1921         Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr;
1922     R.setLookupName(Corrected.getCorrection());
1923 
1924     bool AcceptableWithRecovery = false;
1925     bool AcceptableWithoutRecovery = false;
1926     NamedDecl *ND = Corrected.getCorrectionDecl();
1927     if (ND) {
1928       if (Corrected.isOverloaded()) {
1929         OverloadCandidateSet OCS(R.getNameLoc(),
1930                                  OverloadCandidateSet::CSK_Normal);
1931         OverloadCandidateSet::iterator Best;
1932         for (TypoCorrection::decl_iterator CD = Corrected.begin(),
1933                                         CDEnd = Corrected.end();
1934              CD != CDEnd; ++CD) {
1935           if (FunctionTemplateDecl *FTD =
1936                    dyn_cast<FunctionTemplateDecl>(*CD))
1937             AddTemplateOverloadCandidate(
1938                 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs,
1939                 Args, OCS);
1940           else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD))
1941             if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0)
1942               AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none),
1943                                    Args, OCS);
1944         }
1945         switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) {
1946         case OR_Success:
1947           ND = Best->Function;
1948           Corrected.setCorrectionDecl(ND);
1949           break;
1950         default:
1951           // FIXME: Arbitrarily pick the first declaration for the note.
1952           Corrected.setCorrectionDecl(ND);
1953           break;
1954         }
1955       }
1956       R.addDecl(ND);
1957       if (getLangOpts().CPlusPlus && ND->isCXXClassMember()) {
1958         CXXRecordDecl *Record = nullptr;
1959         if (Corrected.getCorrectionSpecifier()) {
1960           const Type *Ty = Corrected.getCorrectionSpecifier()->getAsType();
1961           Record = Ty->getAsCXXRecordDecl();
1962         }
1963         if (!Record)
1964           Record = cast<CXXRecordDecl>(
1965               ND->getDeclContext()->getRedeclContext());
1966         R.setNamingClass(Record);
1967       }
1968 
1969       AcceptableWithRecovery =
1970           isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND);
1971       // FIXME: If we ended up with a typo for a type name or
1972       // Objective-C class name, we're in trouble because the parser
1973       // is in the wrong place to recover. Suggest the typo
1974       // correction, but don't make it a fix-it since we're not going
1975       // to recover well anyway.
1976       AcceptableWithoutRecovery =
1977           isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
1978     } else {
1979       // FIXME: We found a keyword. Suggest it, but don't provide a fix-it
1980       // because we aren't able to recover.
1981       AcceptableWithoutRecovery = true;
1982     }
1983 
1984     if (AcceptableWithRecovery || AcceptableWithoutRecovery) {
1985       unsigned NoteID = (Corrected.getCorrectionDecl() &&
1986                          isa<ImplicitParamDecl>(Corrected.getCorrectionDecl()))
1987                             ? diag::note_implicit_param_decl
1988                             : diag::note_previous_decl;
1989       if (SS.isEmpty())
1990         diagnoseTypo(Corrected, PDiag(diagnostic_suggest) << Name,
1991                      PDiag(NoteID), AcceptableWithRecovery);
1992       else
1993         diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
1994                                   << Name << computeDeclContext(SS, false)
1995                                   << DroppedSpecifier << SS.getRange(),
1996                      PDiag(NoteID), AcceptableWithRecovery);
1997 
1998       // Tell the callee whether to try to recover.
1999       return !AcceptableWithRecovery;
2000     }
2001   }
2002   R.clear();
2003 
2004   // Emit a special diagnostic for failed member lookups.
2005   // FIXME: computing the declaration context might fail here (?)
2006   if (!SS.isEmpty()) {
2007     Diag(R.getNameLoc(), diag::err_no_member)
2008       << Name << computeDeclContext(SS, false)
2009       << SS.getRange();
2010     return true;
2011   }
2012 
2013   // Give up, we can't recover.
2014   Diag(R.getNameLoc(), diagnostic) << Name;
2015   return true;
2016 }
2017 
2018 /// In Microsoft mode, if we are inside a template class whose parent class has
2019 /// dependent base classes, and we can't resolve an unqualified identifier, then
2020 /// assume the identifier is a member of a dependent base class.  We can only
2021 /// recover successfully in static methods, instance methods, and other contexts
2022 /// where 'this' is available.  This doesn't precisely match MSVC's
2023 /// instantiation model, but it's close enough.
2024 static Expr *
2025 recoverFromMSUnqualifiedLookup(Sema &S, ASTContext &Context,
2026                                DeclarationNameInfo &NameInfo,
2027                                SourceLocation TemplateKWLoc,
2028                                const TemplateArgumentListInfo *TemplateArgs) {
2029   // Only try to recover from lookup into dependent bases in static methods or
2030   // contexts where 'this' is available.
2031   QualType ThisType = S.getCurrentThisType();
2032   const CXXRecordDecl *RD = nullptr;
2033   if (!ThisType.isNull())
2034     RD = ThisType->getPointeeType()->getAsCXXRecordDecl();
2035   else if (auto *MD = dyn_cast<CXXMethodDecl>(S.CurContext))
2036     RD = MD->getParent();
2037   if (!RD || !RD->hasAnyDependentBases())
2038     return nullptr;
2039 
2040   // Diagnose this as unqualified lookup into a dependent base class.  If 'this'
2041   // is available, suggest inserting 'this->' as a fixit.
2042   SourceLocation Loc = NameInfo.getLoc();
2043   auto DB = S.Diag(Loc, diag::ext_undeclared_unqual_id_with_dependent_base);
2044   DB << NameInfo.getName() << RD;
2045 
2046   if (!ThisType.isNull()) {
2047     DB << FixItHint::CreateInsertion(Loc, "this->");
2048     return CXXDependentScopeMemberExpr::Create(
2049         Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true,
2050         /*Op=*/SourceLocation(), NestedNameSpecifierLoc(), TemplateKWLoc,
2051         /*FirstQualifierInScope=*/nullptr, NameInfo, TemplateArgs);
2052   }
2053 
2054   // Synthesize a fake NNS that points to the derived class.  This will
2055   // perform name lookup during template instantiation.
2056   CXXScopeSpec SS;
2057   auto *NNS =
2058       NestedNameSpecifier::Create(Context, nullptr, true, RD->getTypeForDecl());
2059   SS.MakeTrivial(Context, NNS, SourceRange(Loc, Loc));
2060   return DependentScopeDeclRefExpr::Create(
2061       Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
2062       TemplateArgs);
2063 }
2064 
2065 ExprResult
2066 Sema::ActOnIdExpression(Scope *S, CXXScopeSpec &SS,
2067                         SourceLocation TemplateKWLoc, UnqualifiedId &Id,
2068                         bool HasTrailingLParen, bool IsAddressOfOperand,
2069                         std::unique_ptr<CorrectionCandidateCallback> CCC,
2070                         bool IsInlineAsmIdentifier, Token *KeywordReplacement) {
2071   assert(!(IsAddressOfOperand && HasTrailingLParen) &&
2072          "cannot be direct & operand and have a trailing lparen");
2073   if (SS.isInvalid())
2074     return ExprError();
2075 
2076   TemplateArgumentListInfo TemplateArgsBuffer;
2077 
2078   // Decompose the UnqualifiedId into the following data.
2079   DeclarationNameInfo NameInfo;
2080   const TemplateArgumentListInfo *TemplateArgs;
2081   DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs);
2082 
2083   DeclarationName Name = NameInfo.getName();
2084   IdentifierInfo *II = Name.getAsIdentifierInfo();
2085   SourceLocation NameLoc = NameInfo.getLoc();
2086 
2087   // C++ [temp.dep.expr]p3:
2088   //   An id-expression is type-dependent if it contains:
2089   //     -- an identifier that was declared with a dependent type,
2090   //        (note: handled after lookup)
2091   //     -- a template-id that is dependent,
2092   //        (note: handled in BuildTemplateIdExpr)
2093   //     -- a conversion-function-id that specifies a dependent type,
2094   //     -- a nested-name-specifier that contains a class-name that
2095   //        names a dependent type.
2096   // Determine whether this is a member of an unknown specialization;
2097   // we need to handle these differently.
2098   bool DependentID = false;
2099   if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
2100       Name.getCXXNameType()->isDependentType()) {
2101     DependentID = true;
2102   } else if (SS.isSet()) {
2103     if (DeclContext *DC = computeDeclContext(SS, false)) {
2104       if (RequireCompleteDeclContext(SS, DC))
2105         return ExprError();
2106     } else {
2107       DependentID = true;
2108     }
2109   }
2110 
2111   if (DependentID)
2112     return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2113                                       IsAddressOfOperand, TemplateArgs);
2114 
2115   // Perform the required lookup.
2116   LookupResult R(*this, NameInfo,
2117                  (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam)
2118                   ? LookupObjCImplicitSelfParam : LookupOrdinaryName);
2119   if (TemplateArgs) {
2120     // Lookup the template name again to correctly establish the context in
2121     // which it was found. This is really unfortunate as we already did the
2122     // lookup to determine that it was a template name in the first place. If
2123     // this becomes a performance hit, we can work harder to preserve those
2124     // results until we get here but it's likely not worth it.
2125     bool MemberOfUnknownSpecialization;
2126     LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false,
2127                        MemberOfUnknownSpecialization);
2128 
2129     if (MemberOfUnknownSpecialization ||
2130         (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation))
2131       return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2132                                         IsAddressOfOperand, TemplateArgs);
2133   } else {
2134     bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl();
2135     LookupParsedName(R, S, &SS, !IvarLookupFollowUp);
2136 
2137     // If the result might be in a dependent base class, this is a dependent
2138     // id-expression.
2139     if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
2140       return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2141                                         IsAddressOfOperand, TemplateArgs);
2142 
2143     // If this reference is in an Objective-C method, then we need to do
2144     // some special Objective-C lookup, too.
2145     if (IvarLookupFollowUp) {
2146       ExprResult E(LookupInObjCMethod(R, S, II, true));
2147       if (E.isInvalid())
2148         return ExprError();
2149 
2150       if (Expr *Ex = E.getAs<Expr>())
2151         return Ex;
2152     }
2153   }
2154 
2155   if (R.isAmbiguous())
2156     return ExprError();
2157 
2158   // This could be an implicitly declared function reference (legal in C90,
2159   // extension in C99, forbidden in C++).
2160   if (R.empty() && HasTrailingLParen && II && !getLangOpts().CPlusPlus) {
2161     NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S);
2162     if (D) R.addDecl(D);
2163   }
2164 
2165   // Determine whether this name might be a candidate for
2166   // argument-dependent lookup.
2167   bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen);
2168 
2169   if (R.empty() && !ADL) {
2170     if (SS.isEmpty() && getLangOpts().MSVCCompat) {
2171       if (Expr *E = recoverFromMSUnqualifiedLookup(*this, Context, NameInfo,
2172                                                    TemplateKWLoc, TemplateArgs))
2173         return E;
2174     }
2175 
2176     // Don't diagnose an empty lookup for inline assembly.
2177     if (IsInlineAsmIdentifier)
2178       return ExprError();
2179 
2180     // If this name wasn't predeclared and if this is not a function
2181     // call, diagnose the problem.
2182     TypoExpr *TE = nullptr;
2183     auto DefaultValidator = llvm::make_unique<CorrectionCandidateCallback>(
2184         II, SS.isValid() ? SS.getScopeRep() : nullptr);
2185     DefaultValidator->IsAddressOfOperand = IsAddressOfOperand;
2186     assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) &&
2187            "Typo correction callback misconfigured");
2188     if (CCC) {
2189       // Make sure the callback knows what the typo being diagnosed is.
2190       CCC->setTypoName(II);
2191       if (SS.isValid())
2192         CCC->setTypoNNS(SS.getScopeRep());
2193     }
2194     if (DiagnoseEmptyLookup(S, SS, R,
2195                             CCC ? std::move(CCC) : std::move(DefaultValidator),
2196                             nullptr, None, &TE)) {
2197       if (TE && KeywordReplacement) {
2198         auto &State = getTypoExprState(TE);
2199         auto BestTC = State.Consumer->getNextCorrection();
2200         if (BestTC.isKeyword()) {
2201           auto *II = BestTC.getCorrectionAsIdentifierInfo();
2202           if (State.DiagHandler)
2203             State.DiagHandler(BestTC);
2204           KeywordReplacement->startToken();
2205           KeywordReplacement->setKind(II->getTokenID());
2206           KeywordReplacement->setIdentifierInfo(II);
2207           KeywordReplacement->setLocation(BestTC.getCorrectionRange().getBegin());
2208           // Clean up the state associated with the TypoExpr, since it has
2209           // now been diagnosed (without a call to CorrectDelayedTyposInExpr).
2210           clearDelayedTypo(TE);
2211           // Signal that a correction to a keyword was performed by returning a
2212           // valid-but-null ExprResult.
2213           return (Expr*)nullptr;
2214         }
2215         State.Consumer->resetCorrectionStream();
2216       }
2217       return TE ? TE : ExprError();
2218     }
2219 
2220     assert(!R.empty() &&
2221            "DiagnoseEmptyLookup returned false but added no results");
2222 
2223     // If we found an Objective-C instance variable, let
2224     // LookupInObjCMethod build the appropriate expression to
2225     // reference the ivar.
2226     if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) {
2227       R.clear();
2228       ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier()));
2229       // In a hopelessly buggy code, Objective-C instance variable
2230       // lookup fails and no expression will be built to reference it.
2231       if (!E.isInvalid() && !E.get())
2232         return ExprError();
2233       return E;
2234     }
2235   }
2236 
2237   // This is guaranteed from this point on.
2238   assert(!R.empty() || ADL);
2239 
2240   // Check whether this might be a C++ implicit instance member access.
2241   // C++ [class.mfct.non-static]p3:
2242   //   When an id-expression that is not part of a class member access
2243   //   syntax and not used to form a pointer to member is used in the
2244   //   body of a non-static member function of class X, if name lookup
2245   //   resolves the name in the id-expression to a non-static non-type
2246   //   member of some class C, the id-expression is transformed into a
2247   //   class member access expression using (*this) as the
2248   //   postfix-expression to the left of the . operator.
2249   //
2250   // But we don't actually need to do this for '&' operands if R
2251   // resolved to a function or overloaded function set, because the
2252   // expression is ill-formed if it actually works out to be a
2253   // non-static member function:
2254   //
2255   // C++ [expr.ref]p4:
2256   //   Otherwise, if E1.E2 refers to a non-static member function. . .
2257   //   [t]he expression can be used only as the left-hand operand of a
2258   //   member function call.
2259   //
2260   // There are other safeguards against such uses, but it's important
2261   // to get this right here so that we don't end up making a
2262   // spuriously dependent expression if we're inside a dependent
2263   // instance method.
2264   if (!R.empty() && (*R.begin())->isCXXClassMember()) {
2265     bool MightBeImplicitMember;
2266     if (!IsAddressOfOperand)
2267       MightBeImplicitMember = true;
2268     else if (!SS.isEmpty())
2269       MightBeImplicitMember = false;
2270     else if (R.isOverloadedResult())
2271       MightBeImplicitMember = false;
2272     else if (R.isUnresolvableResult())
2273       MightBeImplicitMember = true;
2274     else
2275       MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) ||
2276                               isa<IndirectFieldDecl>(R.getFoundDecl()) ||
2277                               isa<MSPropertyDecl>(R.getFoundDecl());
2278 
2279     if (MightBeImplicitMember)
2280       return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc,
2281                                              R, TemplateArgs);
2282   }
2283 
2284   if (TemplateArgs || TemplateKWLoc.isValid()) {
2285 
2286     // In C++1y, if this is a variable template id, then check it
2287     // in BuildTemplateIdExpr().
2288     // The single lookup result must be a variable template declaration.
2289     if (Id.getKind() == UnqualifiedId::IK_TemplateId && Id.TemplateId &&
2290         Id.TemplateId->Kind == TNK_Var_template) {
2291       assert(R.getAsSingle<VarTemplateDecl>() &&
2292              "There should only be one declaration found.");
2293     }
2294 
2295     return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs);
2296   }
2297 
2298   return BuildDeclarationNameExpr(SS, R, ADL);
2299 }
2300 
2301 /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified
2302 /// declaration name, generally during template instantiation.
2303 /// There's a large number of things which don't need to be done along
2304 /// this path.
2305 ExprResult
2306 Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS,
2307                                         const DeclarationNameInfo &NameInfo,
2308                                         bool IsAddressOfOperand,
2309                                         TypeSourceInfo **RecoveryTSI) {
2310   DeclContext *DC = computeDeclContext(SS, false);
2311   if (!DC)
2312     return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
2313                                      NameInfo, /*TemplateArgs=*/nullptr);
2314 
2315   if (RequireCompleteDeclContext(SS, DC))
2316     return ExprError();
2317 
2318   LookupResult R(*this, NameInfo, LookupOrdinaryName);
2319   LookupQualifiedName(R, DC);
2320 
2321   if (R.isAmbiguous())
2322     return ExprError();
2323 
2324   if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
2325     return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
2326                                      NameInfo, /*TemplateArgs=*/nullptr);
2327 
2328   if (R.empty()) {
2329     Diag(NameInfo.getLoc(), diag::err_no_member)
2330       << NameInfo.getName() << DC << SS.getRange();
2331     return ExprError();
2332   }
2333 
2334   if (const TypeDecl *TD = R.getAsSingle<TypeDecl>()) {
2335     // Diagnose a missing typename if this resolved unambiguously to a type in
2336     // a dependent context.  If we can recover with a type, downgrade this to
2337     // a warning in Microsoft compatibility mode.
2338     unsigned DiagID = diag::err_typename_missing;
2339     if (RecoveryTSI && getLangOpts().MSVCCompat)
2340       DiagID = diag::ext_typename_missing;
2341     SourceLocation Loc = SS.getBeginLoc();
2342     auto D = Diag(Loc, DiagID);
2343     D << SS.getScopeRep() << NameInfo.getName().getAsString()
2344       << SourceRange(Loc, NameInfo.getEndLoc());
2345 
2346     // Don't recover if the caller isn't expecting us to or if we're in a SFINAE
2347     // context.
2348     if (!RecoveryTSI)
2349       return ExprError();
2350 
2351     // Only issue the fixit if we're prepared to recover.
2352     D << FixItHint::CreateInsertion(Loc, "typename ");
2353 
2354     // Recover by pretending this was an elaborated type.
2355     QualType Ty = Context.getTypeDeclType(TD);
2356     TypeLocBuilder TLB;
2357     TLB.pushTypeSpec(Ty).setNameLoc(NameInfo.getLoc());
2358 
2359     QualType ET = getElaboratedType(ETK_None, SS, Ty);
2360     ElaboratedTypeLoc QTL = TLB.push<ElaboratedTypeLoc>(ET);
2361     QTL.setElaboratedKeywordLoc(SourceLocation());
2362     QTL.setQualifierLoc(SS.getWithLocInContext(Context));
2363 
2364     *RecoveryTSI = TLB.getTypeSourceInfo(Context, ET);
2365 
2366     return ExprEmpty();
2367   }
2368 
2369   // Defend against this resolving to an implicit member access. We usually
2370   // won't get here if this might be a legitimate a class member (we end up in
2371   // BuildMemberReferenceExpr instead), but this can be valid if we're forming
2372   // a pointer-to-member or in an unevaluated context in C++11.
2373   if (!R.empty() && (*R.begin())->isCXXClassMember() && !IsAddressOfOperand)
2374     return BuildPossibleImplicitMemberExpr(SS,
2375                                            /*TemplateKWLoc=*/SourceLocation(),
2376                                            R, /*TemplateArgs=*/nullptr);
2377 
2378   return BuildDeclarationNameExpr(SS, R, /* ADL */ false);
2379 }
2380 
2381 /// LookupInObjCMethod - The parser has read a name in, and Sema has
2382 /// detected that we're currently inside an ObjC method.  Perform some
2383 /// additional lookup.
2384 ///
2385 /// Ideally, most of this would be done by lookup, but there's
2386 /// actually quite a lot of extra work involved.
2387 ///
2388 /// Returns a null sentinel to indicate trivial success.
2389 ExprResult
2390 Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
2391                          IdentifierInfo *II, bool AllowBuiltinCreation) {
2392   SourceLocation Loc = Lookup.getNameLoc();
2393   ObjCMethodDecl *CurMethod = getCurMethodDecl();
2394 
2395   // Check for error condition which is already reported.
2396   if (!CurMethod)
2397     return ExprError();
2398 
2399   // There are two cases to handle here.  1) scoped lookup could have failed,
2400   // in which case we should look for an ivar.  2) scoped lookup could have
2401   // found a decl, but that decl is outside the current instance method (i.e.
2402   // a global variable).  In these two cases, we do a lookup for an ivar with
2403   // this name, if the lookup sucedes, we replace it our current decl.
2404 
2405   // If we're in a class method, we don't normally want to look for
2406   // ivars.  But if we don't find anything else, and there's an
2407   // ivar, that's an error.
2408   bool IsClassMethod = CurMethod->isClassMethod();
2409 
2410   bool LookForIvars;
2411   if (Lookup.empty())
2412     LookForIvars = true;
2413   else if (IsClassMethod)
2414     LookForIvars = false;
2415   else
2416     LookForIvars = (Lookup.isSingleResult() &&
2417                     Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod());
2418   ObjCInterfaceDecl *IFace = nullptr;
2419   if (LookForIvars) {
2420     IFace = CurMethod->getClassInterface();
2421     ObjCInterfaceDecl *ClassDeclared;
2422     ObjCIvarDecl *IV = nullptr;
2423     if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) {
2424       // Diagnose using an ivar in a class method.
2425       if (IsClassMethod)
2426         return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
2427                          << IV->getDeclName());
2428 
2429       // If we're referencing an invalid decl, just return this as a silent
2430       // error node.  The error diagnostic was already emitted on the decl.
2431       if (IV->isInvalidDecl())
2432         return ExprError();
2433 
2434       // Check if referencing a field with __attribute__((deprecated)).
2435       if (DiagnoseUseOfDecl(IV, Loc))
2436         return ExprError();
2437 
2438       // Diagnose the use of an ivar outside of the declaring class.
2439       if (IV->getAccessControl() == ObjCIvarDecl::Private &&
2440           !declaresSameEntity(ClassDeclared, IFace) &&
2441           !getLangOpts().DebuggerSupport)
2442         Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
2443 
2444       // FIXME: This should use a new expr for a direct reference, don't
2445       // turn this into Self->ivar, just return a BareIVarExpr or something.
2446       IdentifierInfo &II = Context.Idents.get("self");
2447       UnqualifiedId SelfName;
2448       SelfName.setIdentifier(&II, SourceLocation());
2449       SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam);
2450       CXXScopeSpec SelfScopeSpec;
2451       SourceLocation TemplateKWLoc;
2452       ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc,
2453                                               SelfName, false, false);
2454       if (SelfExpr.isInvalid())
2455         return ExprError();
2456 
2457       SelfExpr = DefaultLvalueConversion(SelfExpr.get());
2458       if (SelfExpr.isInvalid())
2459         return ExprError();
2460 
2461       MarkAnyDeclReferenced(Loc, IV, true);
2462 
2463       ObjCMethodFamily MF = CurMethod->getMethodFamily();
2464       if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize &&
2465           !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV))
2466         Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName();
2467 
2468       ObjCIvarRefExpr *Result = new (Context)
2469           ObjCIvarRefExpr(IV, IV->getUsageType(SelfExpr.get()->getType()), Loc,
2470                           IV->getLocation(), SelfExpr.get(), true, true);
2471 
2472       if (getLangOpts().ObjCAutoRefCount) {
2473         if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) {
2474           if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc))
2475             recordUseOfEvaluatedWeak(Result);
2476         }
2477         if (CurContext->isClosure())
2478           Diag(Loc, diag::warn_implicitly_retains_self)
2479             << FixItHint::CreateInsertion(Loc, "self->");
2480       }
2481 
2482       return Result;
2483     }
2484   } else if (CurMethod->isInstanceMethod()) {
2485     // We should warn if a local variable hides an ivar.
2486     if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) {
2487       ObjCInterfaceDecl *ClassDeclared;
2488       if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
2489         if (IV->getAccessControl() != ObjCIvarDecl::Private ||
2490             declaresSameEntity(IFace, ClassDeclared))
2491           Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
2492       }
2493     }
2494   } else if (Lookup.isSingleResult() &&
2495              Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) {
2496     // If accessing a stand-alone ivar in a class method, this is an error.
2497     if (const ObjCIvarDecl *IV = dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl()))
2498       return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
2499                        << IV->getDeclName());
2500   }
2501 
2502   if (Lookup.empty() && II && AllowBuiltinCreation) {
2503     // FIXME. Consolidate this with similar code in LookupName.
2504     if (unsigned BuiltinID = II->getBuiltinID()) {
2505       if (!(getLangOpts().CPlusPlus &&
2506             Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) {
2507         NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID,
2508                                            S, Lookup.isForRedeclaration(),
2509                                            Lookup.getNameLoc());
2510         if (D) Lookup.addDecl(D);
2511       }
2512     }
2513   }
2514   // Sentinel value saying that we didn't do anything special.
2515   return ExprResult((Expr *)nullptr);
2516 }
2517 
2518 /// \brief Cast a base object to a member's actual type.
2519 ///
2520 /// Logically this happens in three phases:
2521 ///
2522 /// * First we cast from the base type to the naming class.
2523 ///   The naming class is the class into which we were looking
2524 ///   when we found the member;  it's the qualifier type if a
2525 ///   qualifier was provided, and otherwise it's the base type.
2526 ///
2527 /// * Next we cast from the naming class to the declaring class.
2528 ///   If the member we found was brought into a class's scope by
2529 ///   a using declaration, this is that class;  otherwise it's
2530 ///   the class declaring the member.
2531 ///
2532 /// * Finally we cast from the declaring class to the "true"
2533 ///   declaring class of the member.  This conversion does not
2534 ///   obey access control.
2535 ExprResult
2536 Sema::PerformObjectMemberConversion(Expr *From,
2537                                     NestedNameSpecifier *Qualifier,
2538                                     NamedDecl *FoundDecl,
2539                                     NamedDecl *Member) {
2540   CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext());
2541   if (!RD)
2542     return From;
2543 
2544   QualType DestRecordType;
2545   QualType DestType;
2546   QualType FromRecordType;
2547   QualType FromType = From->getType();
2548   bool PointerConversions = false;
2549   if (isa<FieldDecl>(Member)) {
2550     DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD));
2551 
2552     if (FromType->getAs<PointerType>()) {
2553       DestType = Context.getPointerType(DestRecordType);
2554       FromRecordType = FromType->getPointeeType();
2555       PointerConversions = true;
2556     } else {
2557       DestType = DestRecordType;
2558       FromRecordType = FromType;
2559     }
2560   } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) {
2561     if (Method->isStatic())
2562       return From;
2563 
2564     DestType = Method->getThisType(Context);
2565     DestRecordType = DestType->getPointeeType();
2566 
2567     if (FromType->getAs<PointerType>()) {
2568       FromRecordType = FromType->getPointeeType();
2569       PointerConversions = true;
2570     } else {
2571       FromRecordType = FromType;
2572       DestType = DestRecordType;
2573     }
2574   } else {
2575     // No conversion necessary.
2576     return From;
2577   }
2578 
2579   if (DestType->isDependentType() || FromType->isDependentType())
2580     return From;
2581 
2582   // If the unqualified types are the same, no conversion is necessary.
2583   if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
2584     return From;
2585 
2586   SourceRange FromRange = From->getSourceRange();
2587   SourceLocation FromLoc = FromRange.getBegin();
2588 
2589   ExprValueKind VK = From->getValueKind();
2590 
2591   // C++ [class.member.lookup]p8:
2592   //   [...] Ambiguities can often be resolved by qualifying a name with its
2593   //   class name.
2594   //
2595   // If the member was a qualified name and the qualified referred to a
2596   // specific base subobject type, we'll cast to that intermediate type
2597   // first and then to the object in which the member is declared. That allows
2598   // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as:
2599   //
2600   //   class Base { public: int x; };
2601   //   class Derived1 : public Base { };
2602   //   class Derived2 : public Base { };
2603   //   class VeryDerived : public Derived1, public Derived2 { void f(); };
2604   //
2605   //   void VeryDerived::f() {
2606   //     x = 17; // error: ambiguous base subobjects
2607   //     Derived1::x = 17; // okay, pick the Base subobject of Derived1
2608   //   }
2609   if (Qualifier && Qualifier->getAsType()) {
2610     QualType QType = QualType(Qualifier->getAsType(), 0);
2611     assert(QType->isRecordType() && "lookup done with non-record type");
2612 
2613     QualType QRecordType = QualType(QType->getAs<RecordType>(), 0);
2614 
2615     // In C++98, the qualifier type doesn't actually have to be a base
2616     // type of the object type, in which case we just ignore it.
2617     // Otherwise build the appropriate casts.
2618     if (IsDerivedFrom(FromRecordType, QRecordType)) {
2619       CXXCastPath BasePath;
2620       if (CheckDerivedToBaseConversion(FromRecordType, QRecordType,
2621                                        FromLoc, FromRange, &BasePath))
2622         return ExprError();
2623 
2624       if (PointerConversions)
2625         QType = Context.getPointerType(QType);
2626       From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase,
2627                                VK, &BasePath).get();
2628 
2629       FromType = QType;
2630       FromRecordType = QRecordType;
2631 
2632       // If the qualifier type was the same as the destination type,
2633       // we're done.
2634       if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
2635         return From;
2636     }
2637   }
2638 
2639   bool IgnoreAccess = false;
2640 
2641   // If we actually found the member through a using declaration, cast
2642   // down to the using declaration's type.
2643   //
2644   // Pointer equality is fine here because only one declaration of a
2645   // class ever has member declarations.
2646   if (FoundDecl->getDeclContext() != Member->getDeclContext()) {
2647     assert(isa<UsingShadowDecl>(FoundDecl));
2648     QualType URecordType = Context.getTypeDeclType(
2649                            cast<CXXRecordDecl>(FoundDecl->getDeclContext()));
2650 
2651     // We only need to do this if the naming-class to declaring-class
2652     // conversion is non-trivial.
2653     if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) {
2654       assert(IsDerivedFrom(FromRecordType, URecordType));
2655       CXXCastPath BasePath;
2656       if (CheckDerivedToBaseConversion(FromRecordType, URecordType,
2657                                        FromLoc, FromRange, &BasePath))
2658         return ExprError();
2659 
2660       QualType UType = URecordType;
2661       if (PointerConversions)
2662         UType = Context.getPointerType(UType);
2663       From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase,
2664                                VK, &BasePath).get();
2665       FromType = UType;
2666       FromRecordType = URecordType;
2667     }
2668 
2669     // We don't do access control for the conversion from the
2670     // declaring class to the true declaring class.
2671     IgnoreAccess = true;
2672   }
2673 
2674   CXXCastPath BasePath;
2675   if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType,
2676                                    FromLoc, FromRange, &BasePath,
2677                                    IgnoreAccess))
2678     return ExprError();
2679 
2680   return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase,
2681                            VK, &BasePath);
2682 }
2683 
2684 bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS,
2685                                       const LookupResult &R,
2686                                       bool HasTrailingLParen) {
2687   // Only when used directly as the postfix-expression of a call.
2688   if (!HasTrailingLParen)
2689     return false;
2690 
2691   // Never if a scope specifier was provided.
2692   if (SS.isSet())
2693     return false;
2694 
2695   // Only in C++ or ObjC++.
2696   if (!getLangOpts().CPlusPlus)
2697     return false;
2698 
2699   // Turn off ADL when we find certain kinds of declarations during
2700   // normal lookup:
2701   for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
2702     NamedDecl *D = *I;
2703 
2704     // C++0x [basic.lookup.argdep]p3:
2705     //     -- a declaration of a class member
2706     // Since using decls preserve this property, we check this on the
2707     // original decl.
2708     if (D->isCXXClassMember())
2709       return false;
2710 
2711     // C++0x [basic.lookup.argdep]p3:
2712     //     -- a block-scope function declaration that is not a
2713     //        using-declaration
2714     // NOTE: we also trigger this for function templates (in fact, we
2715     // don't check the decl type at all, since all other decl types
2716     // turn off ADL anyway).
2717     if (isa<UsingShadowDecl>(D))
2718       D = cast<UsingShadowDecl>(D)->getTargetDecl();
2719     else if (D->getLexicalDeclContext()->isFunctionOrMethod())
2720       return false;
2721 
2722     // C++0x [basic.lookup.argdep]p3:
2723     //     -- a declaration that is neither a function or a function
2724     //        template
2725     // And also for builtin functions.
2726     if (isa<FunctionDecl>(D)) {
2727       FunctionDecl *FDecl = cast<FunctionDecl>(D);
2728 
2729       // But also builtin functions.
2730       if (FDecl->getBuiltinID() && FDecl->isImplicit())
2731         return false;
2732     } else if (!isa<FunctionTemplateDecl>(D))
2733       return false;
2734   }
2735 
2736   return true;
2737 }
2738 
2739 
2740 /// Diagnoses obvious problems with the use of the given declaration
2741 /// as an expression.  This is only actually called for lookups that
2742 /// were not overloaded, and it doesn't promise that the declaration
2743 /// will in fact be used.
2744 static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) {
2745   if (isa<TypedefNameDecl>(D)) {
2746     S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName();
2747     return true;
2748   }
2749 
2750   if (isa<ObjCInterfaceDecl>(D)) {
2751     S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName();
2752     return true;
2753   }
2754 
2755   if (isa<NamespaceDecl>(D)) {
2756     S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName();
2757     return true;
2758   }
2759 
2760   return false;
2761 }
2762 
2763 ExprResult Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
2764                                           LookupResult &R, bool NeedsADL,
2765                                           bool AcceptInvalidDecl) {
2766   // If this is a single, fully-resolved result and we don't need ADL,
2767   // just build an ordinary singleton decl ref.
2768   if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>())
2769     return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), R.getFoundDecl(),
2770                                     R.getRepresentativeDecl(), nullptr,
2771                                     AcceptInvalidDecl);
2772 
2773   // We only need to check the declaration if there's exactly one
2774   // result, because in the overloaded case the results can only be
2775   // functions and function templates.
2776   if (R.isSingleResult() &&
2777       CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl()))
2778     return ExprError();
2779 
2780   // Otherwise, just build an unresolved lookup expression.  Suppress
2781   // any lookup-related diagnostics; we'll hash these out later, when
2782   // we've picked a target.
2783   R.suppressDiagnostics();
2784 
2785   UnresolvedLookupExpr *ULE
2786     = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
2787                                    SS.getWithLocInContext(Context),
2788                                    R.getLookupNameInfo(),
2789                                    NeedsADL, R.isOverloadedResult(),
2790                                    R.begin(), R.end());
2791 
2792   return ULE;
2793 }
2794 
2795 /// \brief Complete semantic analysis for a reference to the given declaration.
2796 ExprResult Sema::BuildDeclarationNameExpr(
2797     const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, NamedDecl *D,
2798     NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs,
2799     bool AcceptInvalidDecl) {
2800   assert(D && "Cannot refer to a NULL declaration");
2801   assert(!isa<FunctionTemplateDecl>(D) &&
2802          "Cannot refer unambiguously to a function template");
2803 
2804   SourceLocation Loc = NameInfo.getLoc();
2805   if (CheckDeclInExpr(*this, Loc, D))
2806     return ExprError();
2807 
2808   if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) {
2809     // Specifically diagnose references to class templates that are missing
2810     // a template argument list.
2811     Diag(Loc, diag::err_template_decl_ref) << (isa<VarTemplateDecl>(D) ? 1 : 0)
2812                                            << Template << SS.getRange();
2813     Diag(Template->getLocation(), diag::note_template_decl_here);
2814     return ExprError();
2815   }
2816 
2817   // Make sure that we're referring to a value.
2818   ValueDecl *VD = dyn_cast<ValueDecl>(D);
2819   if (!VD) {
2820     Diag(Loc, diag::err_ref_non_value)
2821       << D << SS.getRange();
2822     Diag(D->getLocation(), diag::note_declared_at);
2823     return ExprError();
2824   }
2825 
2826   // Check whether this declaration can be used. Note that we suppress
2827   // this check when we're going to perform argument-dependent lookup
2828   // on this function name, because this might not be the function
2829   // that overload resolution actually selects.
2830   if (DiagnoseUseOfDecl(VD, Loc))
2831     return ExprError();
2832 
2833   // Only create DeclRefExpr's for valid Decl's.
2834   if (VD->isInvalidDecl() && !AcceptInvalidDecl)
2835     return ExprError();
2836 
2837   // Handle members of anonymous structs and unions.  If we got here,
2838   // and the reference is to a class member indirect field, then this
2839   // must be the subject of a pointer-to-member expression.
2840   if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD))
2841     if (!indirectField->isCXXClassMember())
2842       return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(),
2843                                                       indirectField);
2844 
2845   {
2846     QualType type = VD->getType();
2847     ExprValueKind valueKind = VK_RValue;
2848 
2849     switch (D->getKind()) {
2850     // Ignore all the non-ValueDecl kinds.
2851 #define ABSTRACT_DECL(kind)
2852 #define VALUE(type, base)
2853 #define DECL(type, base) \
2854     case Decl::type:
2855 #include "clang/AST/DeclNodes.inc"
2856       llvm_unreachable("invalid value decl kind");
2857 
2858     // These shouldn't make it here.
2859     case Decl::ObjCAtDefsField:
2860     case Decl::ObjCIvar:
2861       llvm_unreachable("forming non-member reference to ivar?");
2862 
2863     // Enum constants are always r-values and never references.
2864     // Unresolved using declarations are dependent.
2865     case Decl::EnumConstant:
2866     case Decl::UnresolvedUsingValue:
2867       valueKind = VK_RValue;
2868       break;
2869 
2870     // Fields and indirect fields that got here must be for
2871     // pointer-to-member expressions; we just call them l-values for
2872     // internal consistency, because this subexpression doesn't really
2873     // exist in the high-level semantics.
2874     case Decl::Field:
2875     case Decl::IndirectField:
2876       assert(getLangOpts().CPlusPlus &&
2877              "building reference to field in C?");
2878 
2879       // These can't have reference type in well-formed programs, but
2880       // for internal consistency we do this anyway.
2881       type = type.getNonReferenceType();
2882       valueKind = VK_LValue;
2883       break;
2884 
2885     // Non-type template parameters are either l-values or r-values
2886     // depending on the type.
2887     case Decl::NonTypeTemplateParm: {
2888       if (const ReferenceType *reftype = type->getAs<ReferenceType>()) {
2889         type = reftype->getPointeeType();
2890         valueKind = VK_LValue; // even if the parameter is an r-value reference
2891         break;
2892       }
2893 
2894       // For non-references, we need to strip qualifiers just in case
2895       // the template parameter was declared as 'const int' or whatever.
2896       valueKind = VK_RValue;
2897       type = type.getUnqualifiedType();
2898       break;
2899     }
2900 
2901     case Decl::Var:
2902     case Decl::VarTemplateSpecialization:
2903     case Decl::VarTemplatePartialSpecialization:
2904       // In C, "extern void blah;" is valid and is an r-value.
2905       if (!getLangOpts().CPlusPlus &&
2906           !type.hasQualifiers() &&
2907           type->isVoidType()) {
2908         valueKind = VK_RValue;
2909         break;
2910       }
2911       // fallthrough
2912 
2913     case Decl::ImplicitParam:
2914     case Decl::ParmVar: {
2915       // These are always l-values.
2916       valueKind = VK_LValue;
2917       type = type.getNonReferenceType();
2918 
2919       // FIXME: Does the addition of const really only apply in
2920       // potentially-evaluated contexts? Since the variable isn't actually
2921       // captured in an unevaluated context, it seems that the answer is no.
2922       if (!isUnevaluatedContext()) {
2923         QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc);
2924         if (!CapturedType.isNull())
2925           type = CapturedType;
2926       }
2927 
2928       break;
2929     }
2930 
2931     case Decl::Function: {
2932       if (unsigned BID = cast<FunctionDecl>(VD)->getBuiltinID()) {
2933         if (!Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
2934           type = Context.BuiltinFnTy;
2935           valueKind = VK_RValue;
2936           break;
2937         }
2938       }
2939 
2940       const FunctionType *fty = type->castAs<FunctionType>();
2941 
2942       // If we're referring to a function with an __unknown_anytype
2943       // result type, make the entire expression __unknown_anytype.
2944       if (fty->getReturnType() == Context.UnknownAnyTy) {
2945         type = Context.UnknownAnyTy;
2946         valueKind = VK_RValue;
2947         break;
2948       }
2949 
2950       // Functions are l-values in C++.
2951       if (getLangOpts().CPlusPlus) {
2952         valueKind = VK_LValue;
2953         break;
2954       }
2955 
2956       // C99 DR 316 says that, if a function type comes from a
2957       // function definition (without a prototype), that type is only
2958       // used for checking compatibility. Therefore, when referencing
2959       // the function, we pretend that we don't have the full function
2960       // type.
2961       if (!cast<FunctionDecl>(VD)->hasPrototype() &&
2962           isa<FunctionProtoType>(fty))
2963         type = Context.getFunctionNoProtoType(fty->getReturnType(),
2964                                               fty->getExtInfo());
2965 
2966       // Functions are r-values in C.
2967       valueKind = VK_RValue;
2968       break;
2969     }
2970 
2971     case Decl::MSProperty:
2972       valueKind = VK_LValue;
2973       break;
2974 
2975     case Decl::CXXMethod:
2976       // If we're referring to a method with an __unknown_anytype
2977       // result type, make the entire expression __unknown_anytype.
2978       // This should only be possible with a type written directly.
2979       if (const FunctionProtoType *proto
2980             = dyn_cast<FunctionProtoType>(VD->getType()))
2981         if (proto->getReturnType() == Context.UnknownAnyTy) {
2982           type = Context.UnknownAnyTy;
2983           valueKind = VK_RValue;
2984           break;
2985         }
2986 
2987       // C++ methods are l-values if static, r-values if non-static.
2988       if (cast<CXXMethodDecl>(VD)->isStatic()) {
2989         valueKind = VK_LValue;
2990         break;
2991       }
2992       // fallthrough
2993 
2994     case Decl::CXXConversion:
2995     case Decl::CXXDestructor:
2996     case Decl::CXXConstructor:
2997       valueKind = VK_RValue;
2998       break;
2999     }
3000 
3001     return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD,
3002                             TemplateArgs);
3003   }
3004 }
3005 
3006 static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source,
3007                                     SmallString<32> &Target) {
3008   Target.resize(CharByteWidth * (Source.size() + 1));
3009   char *ResultPtr = &Target[0];
3010   const UTF8 *ErrorPtr;
3011   bool success = ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr);
3012   (void)success;
3013   assert(success);
3014   Target.resize(ResultPtr - &Target[0]);
3015 }
3016 
3017 ExprResult Sema::BuildPredefinedExpr(SourceLocation Loc,
3018                                      PredefinedExpr::IdentType IT) {
3019   // Pick the current block, lambda, captured statement or function.
3020   Decl *currentDecl = nullptr;
3021   if (const BlockScopeInfo *BSI = getCurBlock())
3022     currentDecl = BSI->TheDecl;
3023   else if (const LambdaScopeInfo *LSI = getCurLambda())
3024     currentDecl = LSI->CallOperator;
3025   else if (const CapturedRegionScopeInfo *CSI = getCurCapturedRegion())
3026     currentDecl = CSI->TheCapturedDecl;
3027   else
3028     currentDecl = getCurFunctionOrMethodDecl();
3029 
3030   if (!currentDecl) {
3031     Diag(Loc, diag::ext_predef_outside_function);
3032     currentDecl = Context.getTranslationUnitDecl();
3033   }
3034 
3035   QualType ResTy;
3036   StringLiteral *SL = nullptr;
3037   if (cast<DeclContext>(currentDecl)->isDependentContext())
3038     ResTy = Context.DependentTy;
3039   else {
3040     // Pre-defined identifiers are of type char[x], where x is the length of
3041     // the string.
3042     auto Str = PredefinedExpr::ComputeName(IT, currentDecl);
3043     unsigned Length = Str.length();
3044 
3045     llvm::APInt LengthI(32, Length + 1);
3046     if (IT == PredefinedExpr::LFunction) {
3047       ResTy = Context.WideCharTy.withConst();
3048       SmallString<32> RawChars;
3049       ConvertUTF8ToWideString(Context.getTypeSizeInChars(ResTy).getQuantity(),
3050                               Str, RawChars);
3051       ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal,
3052                                            /*IndexTypeQuals*/ 0);
3053       SL = StringLiteral::Create(Context, RawChars, StringLiteral::Wide,
3054                                  /*Pascal*/ false, ResTy, Loc);
3055     } else {
3056       ResTy = Context.CharTy.withConst();
3057       ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal,
3058                                            /*IndexTypeQuals*/ 0);
3059       SL = StringLiteral::Create(Context, Str, StringLiteral::Ascii,
3060                                  /*Pascal*/ false, ResTy, Loc);
3061     }
3062   }
3063 
3064   return new (Context) PredefinedExpr(Loc, ResTy, IT, SL);
3065 }
3066 
3067 ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) {
3068   PredefinedExpr::IdentType IT;
3069 
3070   switch (Kind) {
3071   default: llvm_unreachable("Unknown simple primary expr!");
3072   case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
3073   case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
3074   case tok::kw___FUNCDNAME__: IT = PredefinedExpr::FuncDName; break; // [MS]
3075   case tok::kw___FUNCSIG__: IT = PredefinedExpr::FuncSig; break; // [MS]
3076   case tok::kw_L__FUNCTION__: IT = PredefinedExpr::LFunction; break;
3077   case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
3078   }
3079 
3080   return BuildPredefinedExpr(Loc, IT);
3081 }
3082 
3083 ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) {
3084   SmallString<16> CharBuffer;
3085   bool Invalid = false;
3086   StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid);
3087   if (Invalid)
3088     return ExprError();
3089 
3090   CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(),
3091                             PP, Tok.getKind());
3092   if (Literal.hadError())
3093     return ExprError();
3094 
3095   QualType Ty;
3096   if (Literal.isWide())
3097     Ty = Context.WideCharTy; // L'x' -> wchar_t in C and C++.
3098   else if (Literal.isUTF16())
3099     Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11.
3100   else if (Literal.isUTF32())
3101     Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11.
3102   else if (!getLangOpts().CPlusPlus || Literal.isMultiChar())
3103     Ty = Context.IntTy;   // 'x' -> int in C, 'wxyz' -> int in C++.
3104   else
3105     Ty = Context.CharTy;  // 'x' -> char in C++
3106 
3107   CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii;
3108   if (Literal.isWide())
3109     Kind = CharacterLiteral::Wide;
3110   else if (Literal.isUTF16())
3111     Kind = CharacterLiteral::UTF16;
3112   else if (Literal.isUTF32())
3113     Kind = CharacterLiteral::UTF32;
3114 
3115   Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty,
3116                                              Tok.getLocation());
3117 
3118   if (Literal.getUDSuffix().empty())
3119     return Lit;
3120 
3121   // We're building a user-defined literal.
3122   IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
3123   SourceLocation UDSuffixLoc =
3124     getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
3125 
3126   // Make sure we're allowed user-defined literals here.
3127   if (!UDLScope)
3128     return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl));
3129 
3130   // C++11 [lex.ext]p6: The literal L is treated as a call of the form
3131   //   operator "" X (ch)
3132   return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc,
3133                                         Lit, Tok.getLocation());
3134 }
3135 
3136 ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) {
3137   unsigned IntSize = Context.getTargetInfo().getIntWidth();
3138   return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val),
3139                                 Context.IntTy, Loc);
3140 }
3141 
3142 static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal,
3143                                   QualType Ty, SourceLocation Loc) {
3144   const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty);
3145 
3146   using llvm::APFloat;
3147   APFloat Val(Format);
3148 
3149   APFloat::opStatus result = Literal.GetFloatValue(Val);
3150 
3151   // Overflow is always an error, but underflow is only an error if
3152   // we underflowed to zero (APFloat reports denormals as underflow).
3153   if ((result & APFloat::opOverflow) ||
3154       ((result & APFloat::opUnderflow) && Val.isZero())) {
3155     unsigned diagnostic;
3156     SmallString<20> buffer;
3157     if (result & APFloat::opOverflow) {
3158       diagnostic = diag::warn_float_overflow;
3159       APFloat::getLargest(Format).toString(buffer);
3160     } else {
3161       diagnostic = diag::warn_float_underflow;
3162       APFloat::getSmallest(Format).toString(buffer);
3163     }
3164 
3165     S.Diag(Loc, diagnostic)
3166       << Ty
3167       << StringRef(buffer.data(), buffer.size());
3168   }
3169 
3170   bool isExact = (result == APFloat::opOK);
3171   return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc);
3172 }
3173 
3174 bool Sema::CheckLoopHintExpr(Expr *E, SourceLocation Loc) {
3175   assert(E && "Invalid expression");
3176 
3177   if (E->isValueDependent())
3178     return false;
3179 
3180   QualType QT = E->getType();
3181   if (!QT->isIntegerType() || QT->isBooleanType() || QT->isCharType()) {
3182     Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_type) << QT;
3183     return true;
3184   }
3185 
3186   llvm::APSInt ValueAPS;
3187   ExprResult R = VerifyIntegerConstantExpression(E, &ValueAPS);
3188 
3189   if (R.isInvalid())
3190     return true;
3191 
3192   bool ValueIsPositive = ValueAPS.isStrictlyPositive();
3193   if (!ValueIsPositive || ValueAPS.getActiveBits() > 31) {
3194     Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_value)
3195         << ValueAPS.toString(10) << ValueIsPositive;
3196     return true;
3197   }
3198 
3199   return false;
3200 }
3201 
3202 ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) {
3203   // Fast path for a single digit (which is quite common).  A single digit
3204   // cannot have a trigraph, escaped newline, radix prefix, or suffix.
3205   if (Tok.getLength() == 1) {
3206     const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
3207     return ActOnIntegerConstant(Tok.getLocation(), Val-'0');
3208   }
3209 
3210   SmallString<128> SpellingBuffer;
3211   // NumericLiteralParser wants to overread by one character.  Add padding to
3212   // the buffer in case the token is copied to the buffer.  If getSpelling()
3213   // returns a StringRef to the memory buffer, it should have a null char at
3214   // the EOF, so it is also safe.
3215   SpellingBuffer.resize(Tok.getLength() + 1);
3216 
3217   // Get the spelling of the token, which eliminates trigraphs, etc.
3218   bool Invalid = false;
3219   StringRef TokSpelling = PP.getSpelling(Tok, SpellingBuffer, &Invalid);
3220   if (Invalid)
3221     return ExprError();
3222 
3223   NumericLiteralParser Literal(TokSpelling, Tok.getLocation(), PP);
3224   if (Literal.hadError)
3225     return ExprError();
3226 
3227   if (Literal.hasUDSuffix()) {
3228     // We're building a user-defined literal.
3229     IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
3230     SourceLocation UDSuffixLoc =
3231       getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
3232 
3233     // Make sure we're allowed user-defined literals here.
3234     if (!UDLScope)
3235       return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl));
3236 
3237     QualType CookedTy;
3238     if (Literal.isFloatingLiteral()) {
3239       // C++11 [lex.ext]p4: If S contains a literal operator with parameter type
3240       // long double, the literal is treated as a call of the form
3241       //   operator "" X (f L)
3242       CookedTy = Context.LongDoubleTy;
3243     } else {
3244       // C++11 [lex.ext]p3: If S contains a literal operator with parameter type
3245       // unsigned long long, the literal is treated as a call of the form
3246       //   operator "" X (n ULL)
3247       CookedTy = Context.UnsignedLongLongTy;
3248     }
3249 
3250     DeclarationName OpName =
3251       Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
3252     DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
3253     OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
3254 
3255     SourceLocation TokLoc = Tok.getLocation();
3256 
3257     // Perform literal operator lookup to determine if we're building a raw
3258     // literal or a cooked one.
3259     LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
3260     switch (LookupLiteralOperator(UDLScope, R, CookedTy,
3261                                   /*AllowRaw*/true, /*AllowTemplate*/true,
3262                                   /*AllowStringTemplate*/false)) {
3263     case LOLR_Error:
3264       return ExprError();
3265 
3266     case LOLR_Cooked: {
3267       Expr *Lit;
3268       if (Literal.isFloatingLiteral()) {
3269         Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation());
3270       } else {
3271         llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0);
3272         if (Literal.GetIntegerValue(ResultVal))
3273           Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
3274               << /* Unsigned */ 1;
3275         Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy,
3276                                      Tok.getLocation());
3277       }
3278       return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc);
3279     }
3280 
3281     case LOLR_Raw: {
3282       // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the
3283       // literal is treated as a call of the form
3284       //   operator "" X ("n")
3285       unsigned Length = Literal.getUDSuffixOffset();
3286       QualType StrTy = Context.getConstantArrayType(
3287           Context.CharTy.withConst(), llvm::APInt(32, Length + 1),
3288           ArrayType::Normal, 0);
3289       Expr *Lit = StringLiteral::Create(
3290           Context, StringRef(TokSpelling.data(), Length), StringLiteral::Ascii,
3291           /*Pascal*/false, StrTy, &TokLoc, 1);
3292       return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc);
3293     }
3294 
3295     case LOLR_Template: {
3296       // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator
3297       // template), L is treated as a call fo the form
3298       //   operator "" X <'c1', 'c2', ... 'ck'>()
3299       // where n is the source character sequence c1 c2 ... ck.
3300       TemplateArgumentListInfo ExplicitArgs;
3301       unsigned CharBits = Context.getIntWidth(Context.CharTy);
3302       bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType();
3303       llvm::APSInt Value(CharBits, CharIsUnsigned);
3304       for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) {
3305         Value = TokSpelling[I];
3306         TemplateArgument Arg(Context, Value, Context.CharTy);
3307         TemplateArgumentLocInfo ArgInfo;
3308         ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
3309       }
3310       return BuildLiteralOperatorCall(R, OpNameInfo, None, TokLoc,
3311                                       &ExplicitArgs);
3312     }
3313     case LOLR_StringTemplate:
3314       llvm_unreachable("unexpected literal operator lookup result");
3315     }
3316   }
3317 
3318   Expr *Res;
3319 
3320   if (Literal.isFloatingLiteral()) {
3321     QualType Ty;
3322     if (Literal.isFloat)
3323       Ty = Context.FloatTy;
3324     else if (!Literal.isLong)
3325       Ty = Context.DoubleTy;
3326     else
3327       Ty = Context.LongDoubleTy;
3328 
3329     Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation());
3330 
3331     if (Ty == Context.DoubleTy) {
3332       if (getLangOpts().SinglePrecisionConstants) {
3333         Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get();
3334       } else if (getLangOpts().OpenCL &&
3335                  !((getLangOpts().OpenCLVersion >= 120) ||
3336                    getOpenCLOptions().cl_khr_fp64)) {
3337         Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64);
3338         Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get();
3339       }
3340     }
3341   } else if (!Literal.isIntegerLiteral()) {
3342     return ExprError();
3343   } else {
3344     QualType Ty;
3345 
3346     // 'long long' is a C99 or C++11 feature.
3347     if (!getLangOpts().C99 && Literal.isLongLong) {
3348       if (getLangOpts().CPlusPlus)
3349         Diag(Tok.getLocation(),
3350              getLangOpts().CPlusPlus11 ?
3351              diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong);
3352       else
3353         Diag(Tok.getLocation(), diag::ext_c99_longlong);
3354     }
3355 
3356     // Get the value in the widest-possible width.
3357     unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth();
3358     llvm::APInt ResultVal(MaxWidth, 0);
3359 
3360     if (Literal.GetIntegerValue(ResultVal)) {
3361       // If this value didn't fit into uintmax_t, error and force to ull.
3362       Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
3363           << /* Unsigned */ 1;
3364       Ty = Context.UnsignedLongLongTy;
3365       assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
3366              "long long is not intmax_t?");
3367     } else {
3368       // If this value fits into a ULL, try to figure out what else it fits into
3369       // according to the rules of C99 6.4.4.1p5.
3370 
3371       // Octal, Hexadecimal, and integers with a U suffix are allowed to
3372       // be an unsigned int.
3373       bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
3374 
3375       // Check from smallest to largest, picking the smallest type we can.
3376       unsigned Width = 0;
3377 
3378       // Microsoft specific integer suffixes are explicitly sized.
3379       if (Literal.MicrosoftInteger) {
3380         if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) {
3381           Width = 8;
3382           Ty = Context.CharTy;
3383         } else {
3384           Width = Literal.MicrosoftInteger;
3385           Ty = Context.getIntTypeForBitwidth(Width,
3386                                              /*Signed=*/!Literal.isUnsigned);
3387         }
3388       }
3389 
3390       if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong) {
3391         // Are int/unsigned possibilities?
3392         unsigned IntSize = Context.getTargetInfo().getIntWidth();
3393 
3394         // Does it fit in a unsigned int?
3395         if (ResultVal.isIntN(IntSize)) {
3396           // Does it fit in a signed int?
3397           if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
3398             Ty = Context.IntTy;
3399           else if (AllowUnsigned)
3400             Ty = Context.UnsignedIntTy;
3401           Width = IntSize;
3402         }
3403       }
3404 
3405       // Are long/unsigned long possibilities?
3406       if (Ty.isNull() && !Literal.isLongLong) {
3407         unsigned LongSize = Context.getTargetInfo().getLongWidth();
3408 
3409         // Does it fit in a unsigned long?
3410         if (ResultVal.isIntN(LongSize)) {
3411           // Does it fit in a signed long?
3412           if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
3413             Ty = Context.LongTy;
3414           else if (AllowUnsigned)
3415             Ty = Context.UnsignedLongTy;
3416           // Check according to the rules of C90 6.1.3.2p5. C++03 [lex.icon]p2
3417           // is compatible.
3418           else if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11) {
3419             const unsigned LongLongSize =
3420                 Context.getTargetInfo().getLongLongWidth();
3421             Diag(Tok.getLocation(),
3422                  getLangOpts().CPlusPlus
3423                      ? Literal.isLong
3424                            ? diag::warn_old_implicitly_unsigned_long_cxx
3425                            : /*C++98 UB*/ diag::
3426                                  ext_old_implicitly_unsigned_long_cxx
3427                      : diag::warn_old_implicitly_unsigned_long)
3428                 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0
3429                                             : /*will be ill-formed*/ 1);
3430             Ty = Context.UnsignedLongTy;
3431           }
3432           Width = LongSize;
3433         }
3434       }
3435 
3436       // Check long long if needed.
3437       if (Ty.isNull()) {
3438         unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth();
3439 
3440         // Does it fit in a unsigned long long?
3441         if (ResultVal.isIntN(LongLongSize)) {
3442           // Does it fit in a signed long long?
3443           // To be compatible with MSVC, hex integer literals ending with the
3444           // LL or i64 suffix are always signed in Microsoft mode.
3445           if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 ||
3446               (getLangOpts().MicrosoftExt && Literal.isLongLong)))
3447             Ty = Context.LongLongTy;
3448           else if (AllowUnsigned)
3449             Ty = Context.UnsignedLongLongTy;
3450           Width = LongLongSize;
3451         }
3452       }
3453 
3454       // If we still couldn't decide a type, we probably have something that
3455       // does not fit in a signed long long, but has no U suffix.
3456       if (Ty.isNull()) {
3457         Diag(Tok.getLocation(), diag::ext_integer_literal_too_large_for_signed);
3458         Ty = Context.UnsignedLongLongTy;
3459         Width = Context.getTargetInfo().getLongLongWidth();
3460       }
3461 
3462       if (ResultVal.getBitWidth() != Width)
3463         ResultVal = ResultVal.trunc(Width);
3464     }
3465     Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation());
3466   }
3467 
3468   // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
3469   if (Literal.isImaginary)
3470     Res = new (Context) ImaginaryLiteral(Res,
3471                                         Context.getComplexType(Res->getType()));
3472 
3473   return Res;
3474 }
3475 
3476 ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) {
3477   assert(E && "ActOnParenExpr() missing expr");
3478   return new (Context) ParenExpr(L, R, E);
3479 }
3480 
3481 static bool CheckVecStepTraitOperandType(Sema &S, QualType T,
3482                                          SourceLocation Loc,
3483                                          SourceRange ArgRange) {
3484   // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in
3485   // scalar or vector data type argument..."
3486   // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic
3487   // type (C99 6.2.5p18) or void.
3488   if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) {
3489     S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type)
3490       << T << ArgRange;
3491     return true;
3492   }
3493 
3494   assert((T->isVoidType() || !T->isIncompleteType()) &&
3495          "Scalar types should always be complete");
3496   return false;
3497 }
3498 
3499 static bool CheckExtensionTraitOperandType(Sema &S, QualType T,
3500                                            SourceLocation Loc,
3501                                            SourceRange ArgRange,
3502                                            UnaryExprOrTypeTrait TraitKind) {
3503   // Invalid types must be hard errors for SFINAE in C++.
3504   if (S.LangOpts.CPlusPlus)
3505     return true;
3506 
3507   // C99 6.5.3.4p1:
3508   if (T->isFunctionType() &&
3509       (TraitKind == UETT_SizeOf || TraitKind == UETT_AlignOf)) {
3510     // sizeof(function)/alignof(function) is allowed as an extension.
3511     S.Diag(Loc, diag::ext_sizeof_alignof_function_type)
3512       << TraitKind << ArgRange;
3513     return false;
3514   }
3515 
3516   // Allow sizeof(void)/alignof(void) as an extension, unless in OpenCL where
3517   // this is an error (OpenCL v1.1 s6.3.k)
3518   if (T->isVoidType()) {
3519     unsigned DiagID = S.LangOpts.OpenCL ? diag::err_opencl_sizeof_alignof_type
3520                                         : diag::ext_sizeof_alignof_void_type;
3521     S.Diag(Loc, DiagID) << TraitKind << ArgRange;
3522     return false;
3523   }
3524 
3525   return true;
3526 }
3527 
3528 static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T,
3529                                              SourceLocation Loc,
3530                                              SourceRange ArgRange,
3531                                              UnaryExprOrTypeTrait TraitKind) {
3532   // Reject sizeof(interface) and sizeof(interface<proto>) if the
3533   // runtime doesn't allow it.
3534   if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) {
3535     S.Diag(Loc, diag::err_sizeof_nonfragile_interface)
3536       << T << (TraitKind == UETT_SizeOf)
3537       << ArgRange;
3538     return true;
3539   }
3540 
3541   return false;
3542 }
3543 
3544 /// \brief Check whether E is a pointer from a decayed array type (the decayed
3545 /// pointer type is equal to T) and emit a warning if it is.
3546 static void warnOnSizeofOnArrayDecay(Sema &S, SourceLocation Loc, QualType T,
3547                                      Expr *E) {
3548   // Don't warn if the operation changed the type.
3549   if (T != E->getType())
3550     return;
3551 
3552   // Now look for array decays.
3553   ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E);
3554   if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay)
3555     return;
3556 
3557   S.Diag(Loc, diag::warn_sizeof_array_decay) << ICE->getSourceRange()
3558                                              << ICE->getType()
3559                                              << ICE->getSubExpr()->getType();
3560 }
3561 
3562 /// \brief Check the constraints on expression operands to unary type expression
3563 /// and type traits.
3564 ///
3565 /// Completes any types necessary and validates the constraints on the operand
3566 /// expression. The logic mostly mirrors the type-based overload, but may modify
3567 /// the expression as it completes the type for that expression through template
3568 /// instantiation, etc.
3569 bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E,
3570                                             UnaryExprOrTypeTrait ExprKind) {
3571   QualType ExprTy = E->getType();
3572   assert(!ExprTy->isReferenceType());
3573 
3574   if (ExprKind == UETT_VecStep)
3575     return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
3576                                         E->getSourceRange());
3577 
3578   // Whitelist some types as extensions
3579   if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
3580                                       E->getSourceRange(), ExprKind))
3581     return false;
3582 
3583   // 'alignof' applied to an expression only requires the base element type of
3584   // the expression to be complete. 'sizeof' requires the expression's type to
3585   // be complete (and will attempt to complete it if it's an array of unknown
3586   // bound).
3587   if (ExprKind == UETT_AlignOf) {
3588     if (RequireCompleteType(E->getExprLoc(),
3589                             Context.getBaseElementType(E->getType()),
3590                             diag::err_sizeof_alignof_incomplete_type, ExprKind,
3591                             E->getSourceRange()))
3592       return true;
3593   } else {
3594     if (RequireCompleteExprType(E, diag::err_sizeof_alignof_incomplete_type,
3595                                 ExprKind, E->getSourceRange()))
3596       return true;
3597   }
3598 
3599   // Completing the expression's type may have changed it.
3600   ExprTy = E->getType();
3601   assert(!ExprTy->isReferenceType());
3602 
3603   if (ExprTy->isFunctionType()) {
3604     Diag(E->getExprLoc(), diag::err_sizeof_alignof_function_type)
3605       << ExprKind << E->getSourceRange();
3606     return true;
3607   }
3608 
3609   // The operand for sizeof and alignof is in an unevaluated expression context,
3610   // so side effects could result in unintended consequences.
3611   if ((ExprKind == UETT_SizeOf || ExprKind == UETT_AlignOf) &&
3612       ActiveTemplateInstantiations.empty() && E->HasSideEffects(Context, false))
3613     Diag(E->getExprLoc(), diag::warn_side_effects_unevaluated_context);
3614 
3615   if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),
3616                                        E->getSourceRange(), ExprKind))
3617     return true;
3618 
3619   if (ExprKind == UETT_SizeOf) {
3620     if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
3621       if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
3622         QualType OType = PVD->getOriginalType();
3623         QualType Type = PVD->getType();
3624         if (Type->isPointerType() && OType->isArrayType()) {
3625           Diag(E->getExprLoc(), diag::warn_sizeof_array_param)
3626             << Type << OType;
3627           Diag(PVD->getLocation(), diag::note_declared_at);
3628         }
3629       }
3630     }
3631 
3632     // Warn on "sizeof(array op x)" and "sizeof(x op array)", where the array
3633     // decays into a pointer and returns an unintended result. This is most
3634     // likely a typo for "sizeof(array) op x".
3635     if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) {
3636       warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
3637                                BO->getLHS());
3638       warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
3639                                BO->getRHS());
3640     }
3641   }
3642 
3643   return false;
3644 }
3645 
3646 /// \brief Check the constraints on operands to unary expression and type
3647 /// traits.
3648 ///
3649 /// This will complete any types necessary, and validate the various constraints
3650 /// on those operands.
3651 ///
3652 /// The UsualUnaryConversions() function is *not* called by this routine.
3653 /// C99 6.3.2.1p[2-4] all state:
3654 ///   Except when it is the operand of the sizeof operator ...
3655 ///
3656 /// C++ [expr.sizeof]p4
3657 ///   The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
3658 ///   standard conversions are not applied to the operand of sizeof.
3659 ///
3660 /// This policy is followed for all of the unary trait expressions.
3661 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType,
3662                                             SourceLocation OpLoc,
3663                                             SourceRange ExprRange,
3664                                             UnaryExprOrTypeTrait ExprKind) {
3665   if (ExprType->isDependentType())
3666     return false;
3667 
3668   // C++ [expr.sizeof]p2:
3669   //     When applied to a reference or a reference type, the result
3670   //     is the size of the referenced type.
3671   // C++11 [expr.alignof]p3:
3672   //     When alignof is applied to a reference type, the result
3673   //     shall be the alignment of the referenced type.
3674   if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
3675     ExprType = Ref->getPointeeType();
3676 
3677   // C11 6.5.3.4/3, C++11 [expr.alignof]p3:
3678   //   When alignof or _Alignof is applied to an array type, the result
3679   //   is the alignment of the element type.
3680   if (ExprKind == UETT_AlignOf || ExprKind == UETT_OpenMPRequiredSimdAlign)
3681     ExprType = Context.getBaseElementType(ExprType);
3682 
3683   if (ExprKind == UETT_VecStep)
3684     return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
3685 
3686   // Whitelist some types as extensions
3687   if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
3688                                       ExprKind))
3689     return false;
3690 
3691   if (RequireCompleteType(OpLoc, ExprType,
3692                           diag::err_sizeof_alignof_incomplete_type,
3693                           ExprKind, ExprRange))
3694     return true;
3695 
3696   if (ExprType->isFunctionType()) {
3697     Diag(OpLoc, diag::err_sizeof_alignof_function_type)
3698       << ExprKind << ExprRange;
3699     return true;
3700   }
3701 
3702   if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange,
3703                                        ExprKind))
3704     return true;
3705 
3706   return false;
3707 }
3708 
3709 static bool CheckAlignOfExpr(Sema &S, Expr *E) {
3710   E = E->IgnoreParens();
3711 
3712   // Cannot know anything else if the expression is dependent.
3713   if (E->isTypeDependent())
3714     return false;
3715 
3716   if (E->getObjectKind() == OK_BitField) {
3717     S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield)
3718        << 1 << E->getSourceRange();
3719     return true;
3720   }
3721 
3722   ValueDecl *D = nullptr;
3723   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
3724     D = DRE->getDecl();
3725   } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
3726     D = ME->getMemberDecl();
3727   }
3728 
3729   // If it's a field, require the containing struct to have a
3730   // complete definition so that we can compute the layout.
3731   //
3732   // This can happen in C++11 onwards, either by naming the member
3733   // in a way that is not transformed into a member access expression
3734   // (in an unevaluated operand, for instance), or by naming the member
3735   // in a trailing-return-type.
3736   //
3737   // For the record, since __alignof__ on expressions is a GCC
3738   // extension, GCC seems to permit this but always gives the
3739   // nonsensical answer 0.
3740   //
3741   // We don't really need the layout here --- we could instead just
3742   // directly check for all the appropriate alignment-lowing
3743   // attributes --- but that would require duplicating a lot of
3744   // logic that just isn't worth duplicating for such a marginal
3745   // use-case.
3746   if (FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) {
3747     // Fast path this check, since we at least know the record has a
3748     // definition if we can find a member of it.
3749     if (!FD->getParent()->isCompleteDefinition()) {
3750       S.Diag(E->getExprLoc(), diag::err_alignof_member_of_incomplete_type)
3751         << E->getSourceRange();
3752       return true;
3753     }
3754 
3755     // Otherwise, if it's a field, and the field doesn't have
3756     // reference type, then it must have a complete type (or be a
3757     // flexible array member, which we explicitly want to
3758     // white-list anyway), which makes the following checks trivial.
3759     if (!FD->getType()->isReferenceType())
3760       return false;
3761   }
3762 
3763   return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf);
3764 }
3765 
3766 bool Sema::CheckVecStepExpr(Expr *E) {
3767   E = E->IgnoreParens();
3768 
3769   // Cannot know anything else if the expression is dependent.
3770   if (E->isTypeDependent())
3771     return false;
3772 
3773   return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep);
3774 }
3775 
3776 /// \brief Build a sizeof or alignof expression given a type operand.
3777 ExprResult
3778 Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo,
3779                                      SourceLocation OpLoc,
3780                                      UnaryExprOrTypeTrait ExprKind,
3781                                      SourceRange R) {
3782   if (!TInfo)
3783     return ExprError();
3784 
3785   QualType T = TInfo->getType();
3786 
3787   if (!T->isDependentType() &&
3788       CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind))
3789     return ExprError();
3790 
3791   // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
3792   return new (Context) UnaryExprOrTypeTraitExpr(
3793       ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd());
3794 }
3795 
3796 /// \brief Build a sizeof or alignof expression given an expression
3797 /// operand.
3798 ExprResult
3799 Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc,
3800                                      UnaryExprOrTypeTrait ExprKind) {
3801   ExprResult PE = CheckPlaceholderExpr(E);
3802   if (PE.isInvalid())
3803     return ExprError();
3804 
3805   E = PE.get();
3806 
3807   // Verify that the operand is valid.
3808   bool isInvalid = false;
3809   if (E->isTypeDependent()) {
3810     // Delay type-checking for type-dependent expressions.
3811   } else if (ExprKind == UETT_AlignOf) {
3812     isInvalid = CheckAlignOfExpr(*this, E);
3813   } else if (ExprKind == UETT_VecStep) {
3814     isInvalid = CheckVecStepExpr(E);
3815   } else if (ExprKind == UETT_OpenMPRequiredSimdAlign) {
3816       Diag(E->getExprLoc(), diag::err_openmp_default_simd_align_expr);
3817       isInvalid = true;
3818   } else if (E->refersToBitField()) {  // C99 6.5.3.4p1.
3819     Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0;
3820     isInvalid = true;
3821   } else {
3822     isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf);
3823   }
3824 
3825   if (isInvalid)
3826     return ExprError();
3827 
3828   if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) {
3829     PE = TransformToPotentiallyEvaluated(E);
3830     if (PE.isInvalid()) return ExprError();
3831     E = PE.get();
3832   }
3833 
3834   // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
3835   return new (Context) UnaryExprOrTypeTraitExpr(
3836       ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd());
3837 }
3838 
3839 /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c
3840 /// expr and the same for @c alignof and @c __alignof
3841 /// Note that the ArgRange is invalid if isType is false.
3842 ExprResult
3843 Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc,
3844                                     UnaryExprOrTypeTrait ExprKind, bool IsType,
3845                                     void *TyOrEx, const SourceRange &ArgRange) {
3846   // If error parsing type, ignore.
3847   if (!TyOrEx) return ExprError();
3848 
3849   if (IsType) {
3850     TypeSourceInfo *TInfo;
3851     (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo);
3852     return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange);
3853   }
3854 
3855   Expr *ArgEx = (Expr *)TyOrEx;
3856   ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind);
3857   return Result;
3858 }
3859 
3860 static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc,
3861                                      bool IsReal) {
3862   if (V.get()->isTypeDependent())
3863     return S.Context.DependentTy;
3864 
3865   // _Real and _Imag are only l-values for normal l-values.
3866   if (V.get()->getObjectKind() != OK_Ordinary) {
3867     V = S.DefaultLvalueConversion(V.get());
3868     if (V.isInvalid())
3869       return QualType();
3870   }
3871 
3872   // These operators return the element type of a complex type.
3873   if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>())
3874     return CT->getElementType();
3875 
3876   // Otherwise they pass through real integer and floating point types here.
3877   if (V.get()->getType()->isArithmeticType())
3878     return V.get()->getType();
3879 
3880   // Test for placeholders.
3881   ExprResult PR = S.CheckPlaceholderExpr(V.get());
3882   if (PR.isInvalid()) return QualType();
3883   if (PR.get() != V.get()) {
3884     V = PR;
3885     return CheckRealImagOperand(S, V, Loc, IsReal);
3886   }
3887 
3888   // Reject anything else.
3889   S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType()
3890     << (IsReal ? "__real" : "__imag");
3891   return QualType();
3892 }
3893 
3894 
3895 
3896 ExprResult
3897 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
3898                           tok::TokenKind Kind, Expr *Input) {
3899   UnaryOperatorKind Opc;
3900   switch (Kind) {
3901   default: llvm_unreachable("Unknown unary op!");
3902   case tok::plusplus:   Opc = UO_PostInc; break;
3903   case tok::minusminus: Opc = UO_PostDec; break;
3904   }
3905 
3906   // Since this might is a postfix expression, get rid of ParenListExprs.
3907   ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input);
3908   if (Result.isInvalid()) return ExprError();
3909   Input = Result.get();
3910 
3911   return BuildUnaryOp(S, OpLoc, Opc, Input);
3912 }
3913 
3914 /// \brief Diagnose if arithmetic on the given ObjC pointer is illegal.
3915 ///
3916 /// \return true on error
3917 static bool checkArithmeticOnObjCPointer(Sema &S,
3918                                          SourceLocation opLoc,
3919                                          Expr *op) {
3920   assert(op->getType()->isObjCObjectPointerType());
3921   if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic() &&
3922       !S.LangOpts.ObjCSubscriptingLegacyRuntime)
3923     return false;
3924 
3925   S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface)
3926     << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType()
3927     << op->getSourceRange();
3928   return true;
3929 }
3930 
3931 ExprResult
3932 Sema::ActOnArraySubscriptExpr(Scope *S, Expr *base, SourceLocation lbLoc,
3933                               Expr *idx, SourceLocation rbLoc) {
3934   // Since this might be a postfix expression, get rid of ParenListExprs.
3935   if (isa<ParenListExpr>(base)) {
3936     ExprResult result = MaybeConvertParenListExprToParenExpr(S, base);
3937     if (result.isInvalid()) return ExprError();
3938     base = result.get();
3939   }
3940 
3941   // Handle any non-overload placeholder types in the base and index
3942   // expressions.  We can't handle overloads here because the other
3943   // operand might be an overloadable type, in which case the overload
3944   // resolution for the operator overload should get the first crack
3945   // at the overload.
3946   if (base->getType()->isNonOverloadPlaceholderType()) {
3947     ExprResult result = CheckPlaceholderExpr(base);
3948     if (result.isInvalid()) return ExprError();
3949     base = result.get();
3950   }
3951   if (idx->getType()->isNonOverloadPlaceholderType()) {
3952     ExprResult result = CheckPlaceholderExpr(idx);
3953     if (result.isInvalid()) return ExprError();
3954     idx = result.get();
3955   }
3956 
3957   // Build an unanalyzed expression if either operand is type-dependent.
3958   if (getLangOpts().CPlusPlus &&
3959       (base->isTypeDependent() || idx->isTypeDependent())) {
3960     return new (Context) ArraySubscriptExpr(base, idx, Context.DependentTy,
3961                                             VK_LValue, OK_Ordinary, rbLoc);
3962   }
3963 
3964   // Use C++ overloaded-operator rules if either operand has record
3965   // type.  The spec says to do this if either type is *overloadable*,
3966   // but enum types can't declare subscript operators or conversion
3967   // operators, so there's nothing interesting for overload resolution
3968   // to do if there aren't any record types involved.
3969   //
3970   // ObjC pointers have their own subscripting logic that is not tied
3971   // to overload resolution and so should not take this path.
3972   if (getLangOpts().CPlusPlus &&
3973       (base->getType()->isRecordType() ||
3974        (!base->getType()->isObjCObjectPointerType() &&
3975         idx->getType()->isRecordType()))) {
3976     return CreateOverloadedArraySubscriptExpr(lbLoc, rbLoc, base, idx);
3977   }
3978 
3979   return CreateBuiltinArraySubscriptExpr(base, lbLoc, idx, rbLoc);
3980 }
3981 
3982 ExprResult
3983 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc,
3984                                       Expr *Idx, SourceLocation RLoc) {
3985   Expr *LHSExp = Base;
3986   Expr *RHSExp = Idx;
3987 
3988   // Perform default conversions.
3989   if (!LHSExp->getType()->getAs<VectorType>()) {
3990     ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp);
3991     if (Result.isInvalid())
3992       return ExprError();
3993     LHSExp = Result.get();
3994   }
3995   ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp);
3996   if (Result.isInvalid())
3997     return ExprError();
3998   RHSExp = Result.get();
3999 
4000   QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
4001   ExprValueKind VK = VK_LValue;
4002   ExprObjectKind OK = OK_Ordinary;
4003 
4004   // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
4005   // to the expression *((e1)+(e2)). This means the array "Base" may actually be
4006   // in the subscript position. As a result, we need to derive the array base
4007   // and index from the expression types.
4008   Expr *BaseExpr, *IndexExpr;
4009   QualType ResultType;
4010   if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
4011     BaseExpr = LHSExp;
4012     IndexExpr = RHSExp;
4013     ResultType = Context.DependentTy;
4014   } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
4015     BaseExpr = LHSExp;
4016     IndexExpr = RHSExp;
4017     ResultType = PTy->getPointeeType();
4018   } else if (const ObjCObjectPointerType *PTy =
4019                LHSTy->getAs<ObjCObjectPointerType>()) {
4020     BaseExpr = LHSExp;
4021     IndexExpr = RHSExp;
4022 
4023     // Use custom logic if this should be the pseudo-object subscript
4024     // expression.
4025     if (!LangOpts.isSubscriptPointerArithmetic())
4026       return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr,
4027                                           nullptr);
4028 
4029     ResultType = PTy->getPointeeType();
4030   } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
4031      // Handle the uncommon case of "123[Ptr]".
4032     BaseExpr = RHSExp;
4033     IndexExpr = LHSExp;
4034     ResultType = PTy->getPointeeType();
4035   } else if (const ObjCObjectPointerType *PTy =
4036                RHSTy->getAs<ObjCObjectPointerType>()) {
4037      // Handle the uncommon case of "123[Ptr]".
4038     BaseExpr = RHSExp;
4039     IndexExpr = LHSExp;
4040     ResultType = PTy->getPointeeType();
4041     if (!LangOpts.isSubscriptPointerArithmetic()) {
4042       Diag(LLoc, diag::err_subscript_nonfragile_interface)
4043         << ResultType << BaseExpr->getSourceRange();
4044       return ExprError();
4045     }
4046   } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
4047     BaseExpr = LHSExp;    // vectors: V[123]
4048     IndexExpr = RHSExp;
4049     VK = LHSExp->getValueKind();
4050     if (VK != VK_RValue)
4051       OK = OK_VectorComponent;
4052 
4053     // FIXME: need to deal with const...
4054     ResultType = VTy->getElementType();
4055   } else if (LHSTy->isArrayType()) {
4056     // If we see an array that wasn't promoted by
4057     // DefaultFunctionArrayLvalueConversion, it must be an array that
4058     // wasn't promoted because of the C90 rule that doesn't
4059     // allow promoting non-lvalue arrays.  Warn, then
4060     // force the promotion here.
4061     Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
4062         LHSExp->getSourceRange();
4063     LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
4064                                CK_ArrayToPointerDecay).get();
4065     LHSTy = LHSExp->getType();
4066 
4067     BaseExpr = LHSExp;
4068     IndexExpr = RHSExp;
4069     ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
4070   } else if (RHSTy->isArrayType()) {
4071     // Same as previous, except for 123[f().a] case
4072     Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
4073         RHSExp->getSourceRange();
4074     RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
4075                                CK_ArrayToPointerDecay).get();
4076     RHSTy = RHSExp->getType();
4077 
4078     BaseExpr = RHSExp;
4079     IndexExpr = LHSExp;
4080     ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
4081   } else {
4082     return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
4083        << LHSExp->getSourceRange() << RHSExp->getSourceRange());
4084   }
4085   // C99 6.5.2.1p1
4086   if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
4087     return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
4088                      << IndexExpr->getSourceRange());
4089 
4090   if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
4091        IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
4092          && !IndexExpr->isTypeDependent())
4093     Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
4094 
4095   // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
4096   // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
4097   // type. Note that Functions are not objects, and that (in C99 parlance)
4098   // incomplete types are not object types.
4099   if (ResultType->isFunctionType()) {
4100     Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
4101       << ResultType << BaseExpr->getSourceRange();
4102     return ExprError();
4103   }
4104 
4105   if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) {
4106     // GNU extension: subscripting on pointer to void
4107     Diag(LLoc, diag::ext_gnu_subscript_void_type)
4108       << BaseExpr->getSourceRange();
4109 
4110     // C forbids expressions of unqualified void type from being l-values.
4111     // See IsCForbiddenLValueType.
4112     if (!ResultType.hasQualifiers()) VK = VK_RValue;
4113   } else if (!ResultType->isDependentType() &&
4114       RequireCompleteType(LLoc, ResultType,
4115                           diag::err_subscript_incomplete_type, BaseExpr))
4116     return ExprError();
4117 
4118   assert(VK == VK_RValue || LangOpts.CPlusPlus ||
4119          !ResultType.isCForbiddenLValueType());
4120 
4121   return new (Context)
4122       ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc);
4123 }
4124 
4125 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
4126                                         FunctionDecl *FD,
4127                                         ParmVarDecl *Param) {
4128   if (Param->hasUnparsedDefaultArg()) {
4129     Diag(CallLoc,
4130          diag::err_use_of_default_argument_to_function_declared_later) <<
4131       FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
4132     Diag(UnparsedDefaultArgLocs[Param],
4133          diag::note_default_argument_declared_here);
4134     return ExprError();
4135   }
4136 
4137   if (Param->hasUninstantiatedDefaultArg()) {
4138     Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
4139 
4140     EnterExpressionEvaluationContext EvalContext(*this, PotentiallyEvaluated,
4141                                                  Param);
4142 
4143     // Instantiate the expression.
4144     MultiLevelTemplateArgumentList MutiLevelArgList
4145       = getTemplateInstantiationArgs(FD, nullptr, /*RelativeToPrimary=*/true);
4146 
4147     InstantiatingTemplate Inst(*this, CallLoc, Param,
4148                                MutiLevelArgList.getInnermost());
4149     if (Inst.isInvalid())
4150       return ExprError();
4151 
4152     ExprResult Result;
4153     {
4154       // C++ [dcl.fct.default]p5:
4155       //   The names in the [default argument] expression are bound, and
4156       //   the semantic constraints are checked, at the point where the
4157       //   default argument expression appears.
4158       ContextRAII SavedContext(*this, FD);
4159       LocalInstantiationScope Local(*this);
4160       Result = SubstExpr(UninstExpr, MutiLevelArgList);
4161     }
4162     if (Result.isInvalid())
4163       return ExprError();
4164 
4165     // Check the expression as an initializer for the parameter.
4166     InitializedEntity Entity
4167       = InitializedEntity::InitializeParameter(Context, Param);
4168     InitializationKind Kind
4169       = InitializationKind::CreateCopy(Param->getLocation(),
4170              /*FIXME:EqualLoc*/UninstExpr->getLocStart());
4171     Expr *ResultE = Result.getAs<Expr>();
4172 
4173     InitializationSequence InitSeq(*this, Entity, Kind, ResultE);
4174     Result = InitSeq.Perform(*this, Entity, Kind, ResultE);
4175     if (Result.isInvalid())
4176       return ExprError();
4177 
4178     Expr *Arg = Result.getAs<Expr>();
4179     CheckCompletedExpr(Arg, Param->getOuterLocStart());
4180     // Build the default argument expression.
4181     return CXXDefaultArgExpr::Create(Context, CallLoc, Param, Arg);
4182   }
4183 
4184   // If the default expression creates temporaries, we need to
4185   // push them to the current stack of expression temporaries so they'll
4186   // be properly destroyed.
4187   // FIXME: We should really be rebuilding the default argument with new
4188   // bound temporaries; see the comment in PR5810.
4189   // We don't need to do that with block decls, though, because
4190   // blocks in default argument expression can never capture anything.
4191   if (isa<ExprWithCleanups>(Param->getInit())) {
4192     // Set the "needs cleanups" bit regardless of whether there are
4193     // any explicit objects.
4194     ExprNeedsCleanups = true;
4195 
4196     // Append all the objects to the cleanup list.  Right now, this
4197     // should always be a no-op, because blocks in default argument
4198     // expressions should never be able to capture anything.
4199     assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() &&
4200            "default argument expression has capturing blocks?");
4201   }
4202 
4203   // We already type-checked the argument, so we know it works.
4204   // Just mark all of the declarations in this potentially-evaluated expression
4205   // as being "referenced".
4206   MarkDeclarationsReferencedInExpr(Param->getDefaultArg(),
4207                                    /*SkipLocalVariables=*/true);
4208   return CXXDefaultArgExpr::Create(Context, CallLoc, Param);
4209 }
4210 
4211 
4212 Sema::VariadicCallType
4213 Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto,
4214                           Expr *Fn) {
4215   if (Proto && Proto->isVariadic()) {
4216     if (dyn_cast_or_null<CXXConstructorDecl>(FDecl))
4217       return VariadicConstructor;
4218     else if (Fn && Fn->getType()->isBlockPointerType())
4219       return VariadicBlock;
4220     else if (FDecl) {
4221       if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
4222         if (Method->isInstance())
4223           return VariadicMethod;
4224     } else if (Fn && Fn->getType() == Context.BoundMemberTy)
4225       return VariadicMethod;
4226     return VariadicFunction;
4227   }
4228   return VariadicDoesNotApply;
4229 }
4230 
4231 namespace {
4232 class FunctionCallCCC : public FunctionCallFilterCCC {
4233 public:
4234   FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName,
4235                   unsigned NumArgs, MemberExpr *ME)
4236       : FunctionCallFilterCCC(SemaRef, NumArgs, false, ME),
4237         FunctionName(FuncName) {}
4238 
4239   bool ValidateCandidate(const TypoCorrection &candidate) override {
4240     if (!candidate.getCorrectionSpecifier() ||
4241         candidate.getCorrectionAsIdentifierInfo() != FunctionName) {
4242       return false;
4243     }
4244 
4245     return FunctionCallFilterCCC::ValidateCandidate(candidate);
4246   }
4247 
4248 private:
4249   const IdentifierInfo *const FunctionName;
4250 };
4251 }
4252 
4253 static TypoCorrection TryTypoCorrectionForCall(Sema &S, Expr *Fn,
4254                                                FunctionDecl *FDecl,
4255                                                ArrayRef<Expr *> Args) {
4256   MemberExpr *ME = dyn_cast<MemberExpr>(Fn);
4257   DeclarationName FuncName = FDecl->getDeclName();
4258   SourceLocation NameLoc = ME ? ME->getMemberLoc() : Fn->getLocStart();
4259 
4260   if (TypoCorrection Corrected = S.CorrectTypo(
4261           DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName,
4262           S.getScopeForContext(S.CurContext), nullptr,
4263           llvm::make_unique<FunctionCallCCC>(S, FuncName.getAsIdentifierInfo(),
4264                                              Args.size(), ME),
4265           Sema::CTK_ErrorRecovery)) {
4266     if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
4267       if (Corrected.isOverloaded()) {
4268         OverloadCandidateSet OCS(NameLoc, OverloadCandidateSet::CSK_Normal);
4269         OverloadCandidateSet::iterator Best;
4270         for (TypoCorrection::decl_iterator CD = Corrected.begin(),
4271                                            CDEnd = Corrected.end();
4272              CD != CDEnd; ++CD) {
4273           if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD))
4274             S.AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), Args,
4275                                    OCS);
4276         }
4277         switch (OCS.BestViableFunction(S, NameLoc, Best)) {
4278         case OR_Success:
4279           ND = Best->Function;
4280           Corrected.setCorrectionDecl(ND);
4281           break;
4282         default:
4283           break;
4284         }
4285       }
4286       if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
4287         return Corrected;
4288       }
4289     }
4290   }
4291   return TypoCorrection();
4292 }
4293 
4294 /// ConvertArgumentsForCall - Converts the arguments specified in
4295 /// Args/NumArgs to the parameter types of the function FDecl with
4296 /// function prototype Proto. Call is the call expression itself, and
4297 /// Fn is the function expression. For a C++ member function, this
4298 /// routine does not attempt to convert the object argument. Returns
4299 /// true if the call is ill-formed.
4300 bool
4301 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
4302                               FunctionDecl *FDecl,
4303                               const FunctionProtoType *Proto,
4304                               ArrayRef<Expr *> Args,
4305                               SourceLocation RParenLoc,
4306                               bool IsExecConfig) {
4307   // Bail out early if calling a builtin with custom typechecking.
4308   if (FDecl)
4309     if (unsigned ID = FDecl->getBuiltinID())
4310       if (Context.BuiltinInfo.hasCustomTypechecking(ID))
4311         return false;
4312 
4313   // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
4314   // assignment, to the types of the corresponding parameter, ...
4315   unsigned NumParams = Proto->getNumParams();
4316   bool Invalid = false;
4317   unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumParams;
4318   unsigned FnKind = Fn->getType()->isBlockPointerType()
4319                        ? 1 /* block */
4320                        : (IsExecConfig ? 3 /* kernel function (exec config) */
4321                                        : 0 /* function */);
4322 
4323   // If too few arguments are available (and we don't have default
4324   // arguments for the remaining parameters), don't make the call.
4325   if (Args.size() < NumParams) {
4326     if (Args.size() < MinArgs) {
4327       TypoCorrection TC;
4328       if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) {
4329         unsigned diag_id =
4330             MinArgs == NumParams && !Proto->isVariadic()
4331                 ? diag::err_typecheck_call_too_few_args_suggest
4332                 : diag::err_typecheck_call_too_few_args_at_least_suggest;
4333         diagnoseTypo(TC, PDiag(diag_id) << FnKind << MinArgs
4334                                         << static_cast<unsigned>(Args.size())
4335                                         << TC.getCorrectionRange());
4336       } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName())
4337         Diag(RParenLoc,
4338              MinArgs == NumParams && !Proto->isVariadic()
4339                  ? diag::err_typecheck_call_too_few_args_one
4340                  : diag::err_typecheck_call_too_few_args_at_least_one)
4341             << FnKind << FDecl->getParamDecl(0) << Fn->getSourceRange();
4342       else
4343         Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic()
4344                             ? diag::err_typecheck_call_too_few_args
4345                             : diag::err_typecheck_call_too_few_args_at_least)
4346             << FnKind << MinArgs << static_cast<unsigned>(Args.size())
4347             << Fn->getSourceRange();
4348 
4349       // Emit the location of the prototype.
4350       if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
4351         Diag(FDecl->getLocStart(), diag::note_callee_decl)
4352           << FDecl;
4353 
4354       return true;
4355     }
4356     Call->setNumArgs(Context, NumParams);
4357   }
4358 
4359   // If too many are passed and not variadic, error on the extras and drop
4360   // them.
4361   if (Args.size() > NumParams) {
4362     if (!Proto->isVariadic()) {
4363       TypoCorrection TC;
4364       if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) {
4365         unsigned diag_id =
4366             MinArgs == NumParams && !Proto->isVariadic()
4367                 ? diag::err_typecheck_call_too_many_args_suggest
4368                 : diag::err_typecheck_call_too_many_args_at_most_suggest;
4369         diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumParams
4370                                         << static_cast<unsigned>(Args.size())
4371                                         << TC.getCorrectionRange());
4372       } else if (NumParams == 1 && FDecl &&
4373                  FDecl->getParamDecl(0)->getDeclName())
4374         Diag(Args[NumParams]->getLocStart(),
4375              MinArgs == NumParams
4376                  ? diag::err_typecheck_call_too_many_args_one
4377                  : diag::err_typecheck_call_too_many_args_at_most_one)
4378             << FnKind << FDecl->getParamDecl(0)
4379             << static_cast<unsigned>(Args.size()) << Fn->getSourceRange()
4380             << SourceRange(Args[NumParams]->getLocStart(),
4381                            Args.back()->getLocEnd());
4382       else
4383         Diag(Args[NumParams]->getLocStart(),
4384              MinArgs == NumParams
4385                  ? diag::err_typecheck_call_too_many_args
4386                  : diag::err_typecheck_call_too_many_args_at_most)
4387             << FnKind << NumParams << static_cast<unsigned>(Args.size())
4388             << Fn->getSourceRange()
4389             << SourceRange(Args[NumParams]->getLocStart(),
4390                            Args.back()->getLocEnd());
4391 
4392       // Emit the location of the prototype.
4393       if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
4394         Diag(FDecl->getLocStart(), diag::note_callee_decl)
4395           << FDecl;
4396 
4397       // This deletes the extra arguments.
4398       Call->setNumArgs(Context, NumParams);
4399       return true;
4400     }
4401   }
4402   SmallVector<Expr *, 8> AllArgs;
4403   VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn);
4404 
4405   Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl,
4406                                    Proto, 0, Args, AllArgs, CallType);
4407   if (Invalid)
4408     return true;
4409   unsigned TotalNumArgs = AllArgs.size();
4410   for (unsigned i = 0; i < TotalNumArgs; ++i)
4411     Call->setArg(i, AllArgs[i]);
4412 
4413   return false;
4414 }
4415 
4416 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl,
4417                                   const FunctionProtoType *Proto,
4418                                   unsigned FirstParam, ArrayRef<Expr *> Args,
4419                                   SmallVectorImpl<Expr *> &AllArgs,
4420                                   VariadicCallType CallType, bool AllowExplicit,
4421                                   bool IsListInitialization) {
4422   unsigned NumParams = Proto->getNumParams();
4423   bool Invalid = false;
4424   unsigned ArgIx = 0;
4425   // Continue to check argument types (even if we have too few/many args).
4426   for (unsigned i = FirstParam; i < NumParams; i++) {
4427     QualType ProtoArgType = Proto->getParamType(i);
4428 
4429     Expr *Arg;
4430     ParmVarDecl *Param = FDecl ? FDecl->getParamDecl(i) : nullptr;
4431     if (ArgIx < Args.size()) {
4432       Arg = Args[ArgIx++];
4433 
4434       if (RequireCompleteType(Arg->getLocStart(),
4435                               ProtoArgType,
4436                               diag::err_call_incomplete_argument, Arg))
4437         return true;
4438 
4439       // Strip the unbridged-cast placeholder expression off, if applicable.
4440       bool CFAudited = false;
4441       if (Arg->getType() == Context.ARCUnbridgedCastTy &&
4442           FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
4443           (!Param || !Param->hasAttr<CFConsumedAttr>()))
4444         Arg = stripARCUnbridgedCast(Arg);
4445       else if (getLangOpts().ObjCAutoRefCount &&
4446                FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
4447                (!Param || !Param->hasAttr<CFConsumedAttr>()))
4448         CFAudited = true;
4449 
4450       InitializedEntity Entity =
4451           Param ? InitializedEntity::InitializeParameter(Context, Param,
4452                                                          ProtoArgType)
4453                 : InitializedEntity::InitializeParameter(
4454                       Context, ProtoArgType, Proto->isParamConsumed(i));
4455 
4456       // Remember that parameter belongs to a CF audited API.
4457       if (CFAudited)
4458         Entity.setParameterCFAudited();
4459 
4460       ExprResult ArgE = PerformCopyInitialization(
4461           Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit);
4462       if (ArgE.isInvalid())
4463         return true;
4464 
4465       Arg = ArgE.getAs<Expr>();
4466     } else {
4467       assert(Param && "can't use default arguments without a known callee");
4468 
4469       ExprResult ArgExpr =
4470         BuildCXXDefaultArgExpr(CallLoc, FDecl, Param);
4471       if (ArgExpr.isInvalid())
4472         return true;
4473 
4474       Arg = ArgExpr.getAs<Expr>();
4475     }
4476 
4477     // Check for array bounds violations for each argument to the call. This
4478     // check only triggers warnings when the argument isn't a more complex Expr
4479     // with its own checking, such as a BinaryOperator.
4480     CheckArrayAccess(Arg);
4481 
4482     // Check for violations of C99 static array rules (C99 6.7.5.3p7).
4483     CheckStaticArrayArgument(CallLoc, Param, Arg);
4484 
4485     AllArgs.push_back(Arg);
4486   }
4487 
4488   // If this is a variadic call, handle args passed through "...".
4489   if (CallType != VariadicDoesNotApply) {
4490     // Assume that extern "C" functions with variadic arguments that
4491     // return __unknown_anytype aren't *really* variadic.
4492     if (Proto->getReturnType() == Context.UnknownAnyTy && FDecl &&
4493         FDecl->isExternC()) {
4494       for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) {
4495         QualType paramType; // ignored
4496         ExprResult arg = checkUnknownAnyArg(CallLoc, Args[i], paramType);
4497         Invalid |= arg.isInvalid();
4498         AllArgs.push_back(arg.get());
4499       }
4500 
4501     // Otherwise do argument promotion, (C99 6.5.2.2p7).
4502     } else {
4503       for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) {
4504         ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType,
4505                                                           FDecl);
4506         Invalid |= Arg.isInvalid();
4507         AllArgs.push_back(Arg.get());
4508       }
4509     }
4510 
4511     // Check for array bounds violations.
4512     for (unsigned i = ArgIx, e = Args.size(); i != e; ++i)
4513       CheckArrayAccess(Args[i]);
4514   }
4515   return Invalid;
4516 }
4517 
4518 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) {
4519   TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
4520   if (DecayedTypeLoc DTL = TL.getAs<DecayedTypeLoc>())
4521     TL = DTL.getOriginalLoc();
4522   if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>())
4523     S.Diag(PVD->getLocation(), diag::note_callee_static_array)
4524       << ATL.getLocalSourceRange();
4525 }
4526 
4527 /// CheckStaticArrayArgument - If the given argument corresponds to a static
4528 /// array parameter, check that it is non-null, and that if it is formed by
4529 /// array-to-pointer decay, the underlying array is sufficiently large.
4530 ///
4531 /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the
4532 /// array type derivation, then for each call to the function, the value of the
4533 /// corresponding actual argument shall provide access to the first element of
4534 /// an array with at least as many elements as specified by the size expression.
4535 void
4536 Sema::CheckStaticArrayArgument(SourceLocation CallLoc,
4537                                ParmVarDecl *Param,
4538                                const Expr *ArgExpr) {
4539   // Static array parameters are not supported in C++.
4540   if (!Param || getLangOpts().CPlusPlus)
4541     return;
4542 
4543   QualType OrigTy = Param->getOriginalType();
4544 
4545   const ArrayType *AT = Context.getAsArrayType(OrigTy);
4546   if (!AT || AT->getSizeModifier() != ArrayType::Static)
4547     return;
4548 
4549   if (ArgExpr->isNullPointerConstant(Context,
4550                                      Expr::NPC_NeverValueDependent)) {
4551     Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
4552     DiagnoseCalleeStaticArrayParam(*this, Param);
4553     return;
4554   }
4555 
4556   const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT);
4557   if (!CAT)
4558     return;
4559 
4560   const ConstantArrayType *ArgCAT =
4561     Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType());
4562   if (!ArgCAT)
4563     return;
4564 
4565   if (ArgCAT->getSize().ult(CAT->getSize())) {
4566     Diag(CallLoc, diag::warn_static_array_too_small)
4567       << ArgExpr->getSourceRange()
4568       << (unsigned) ArgCAT->getSize().getZExtValue()
4569       << (unsigned) CAT->getSize().getZExtValue();
4570     DiagnoseCalleeStaticArrayParam(*this, Param);
4571   }
4572 }
4573 
4574 /// Given a function expression of unknown-any type, try to rebuild it
4575 /// to have a function type.
4576 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn);
4577 
4578 /// Is the given type a placeholder that we need to lower out
4579 /// immediately during argument processing?
4580 static bool isPlaceholderToRemoveAsArg(QualType type) {
4581   // Placeholders are never sugared.
4582   const BuiltinType *placeholder = dyn_cast<BuiltinType>(type);
4583   if (!placeholder) return false;
4584 
4585   switch (placeholder->getKind()) {
4586   // Ignore all the non-placeholder types.
4587 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID)
4588 #define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID:
4589 #include "clang/AST/BuiltinTypes.def"
4590     return false;
4591 
4592   // We cannot lower out overload sets; they might validly be resolved
4593   // by the call machinery.
4594   case BuiltinType::Overload:
4595     return false;
4596 
4597   // Unbridged casts in ARC can be handled in some call positions and
4598   // should be left in place.
4599   case BuiltinType::ARCUnbridgedCast:
4600     return false;
4601 
4602   // Pseudo-objects should be converted as soon as possible.
4603   case BuiltinType::PseudoObject:
4604     return true;
4605 
4606   // The debugger mode could theoretically but currently does not try
4607   // to resolve unknown-typed arguments based on known parameter types.
4608   case BuiltinType::UnknownAny:
4609     return true;
4610 
4611   // These are always invalid as call arguments and should be reported.
4612   case BuiltinType::BoundMember:
4613   case BuiltinType::BuiltinFn:
4614     return true;
4615   }
4616   llvm_unreachable("bad builtin type kind");
4617 }
4618 
4619 /// Check an argument list for placeholders that we won't try to
4620 /// handle later.
4621 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) {
4622   // Apply this processing to all the arguments at once instead of
4623   // dying at the first failure.
4624   bool hasInvalid = false;
4625   for (size_t i = 0, e = args.size(); i != e; i++) {
4626     if (isPlaceholderToRemoveAsArg(args[i]->getType())) {
4627       ExprResult result = S.CheckPlaceholderExpr(args[i]);
4628       if (result.isInvalid()) hasInvalid = true;
4629       else args[i] = result.get();
4630     } else if (hasInvalid) {
4631       (void)S.CorrectDelayedTyposInExpr(args[i]);
4632     }
4633   }
4634   return hasInvalid;
4635 }
4636 
4637 /// If a builtin function has a pointer argument with no explicit address
4638 /// space, than it should be able to accept a pointer to any address
4639 /// space as input.  In order to do this, we need to replace the
4640 /// standard builtin declaration with one that uses the same address space
4641 /// as the call.
4642 ///
4643 /// \returns nullptr If this builtin is not a candidate for a rewrite i.e.
4644 ///                  it does not contain any pointer arguments without
4645 ///                  an address space qualifer.  Otherwise the rewritten
4646 ///                  FunctionDecl is returned.
4647 /// TODO: Handle pointer return types.
4648 static FunctionDecl *rewriteBuiltinFunctionDecl(Sema *Sema, ASTContext &Context,
4649                                                 const FunctionDecl *FDecl,
4650                                                 MultiExprArg ArgExprs) {
4651 
4652   QualType DeclType = FDecl->getType();
4653   const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(DeclType);
4654 
4655   if (!Context.BuiltinInfo.hasPtrArgsOrResult(FDecl->getBuiltinID()) ||
4656       !FT || FT->isVariadic() || ArgExprs.size() != FT->getNumParams())
4657     return nullptr;
4658 
4659   bool NeedsNewDecl = false;
4660   unsigned i = 0;
4661   SmallVector<QualType, 8> OverloadParams;
4662 
4663   for (QualType ParamType : FT->param_types()) {
4664 
4665     // Convert array arguments to pointer to simplify type lookup.
4666     Expr *Arg = Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]).get();
4667     QualType ArgType = Arg->getType();
4668     if (!ParamType->isPointerType() ||
4669         ParamType.getQualifiers().hasAddressSpace() ||
4670         !ArgType->isPointerType() ||
4671         !ArgType->getPointeeType().getQualifiers().hasAddressSpace()) {
4672       OverloadParams.push_back(ParamType);
4673       continue;
4674     }
4675 
4676     NeedsNewDecl = true;
4677     unsigned AS = ArgType->getPointeeType().getQualifiers().getAddressSpace();
4678 
4679     QualType PointeeType = ParamType->getPointeeType();
4680     PointeeType = Context.getAddrSpaceQualType(PointeeType, AS);
4681     OverloadParams.push_back(Context.getPointerType(PointeeType));
4682   }
4683 
4684   if (!NeedsNewDecl)
4685     return nullptr;
4686 
4687   FunctionProtoType::ExtProtoInfo EPI;
4688   QualType OverloadTy = Context.getFunctionType(FT->getReturnType(),
4689                                                 OverloadParams, EPI);
4690   DeclContext *Parent = Context.getTranslationUnitDecl();
4691   FunctionDecl *OverloadDecl = FunctionDecl::Create(Context, Parent,
4692                                                     FDecl->getLocation(),
4693                                                     FDecl->getLocation(),
4694                                                     FDecl->getIdentifier(),
4695                                                     OverloadTy,
4696                                                     /*TInfo=*/nullptr,
4697                                                     SC_Extern, false,
4698                                                     /*hasPrototype=*/true);
4699   SmallVector<ParmVarDecl*, 16> Params;
4700   FT = cast<FunctionProtoType>(OverloadTy);
4701   for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
4702     QualType ParamType = FT->getParamType(i);
4703     ParmVarDecl *Parm =
4704         ParmVarDecl::Create(Context, OverloadDecl, SourceLocation(),
4705                                 SourceLocation(), nullptr, ParamType,
4706                                 /*TInfo=*/nullptr, SC_None, nullptr);
4707     Parm->setScopeInfo(0, i);
4708     Params.push_back(Parm);
4709   }
4710   OverloadDecl->setParams(Params);
4711   return OverloadDecl;
4712 }
4713 
4714 /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
4715 /// This provides the location of the left/right parens and a list of comma
4716 /// locations.
4717 ExprResult
4718 Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
4719                     MultiExprArg ArgExprs, SourceLocation RParenLoc,
4720                     Expr *ExecConfig, bool IsExecConfig) {
4721   // Since this might be a postfix expression, get rid of ParenListExprs.
4722   ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn);
4723   if (Result.isInvalid()) return ExprError();
4724   Fn = Result.get();
4725 
4726   if (checkArgsForPlaceholders(*this, ArgExprs))
4727     return ExprError();
4728 
4729   if (getLangOpts().CPlusPlus) {
4730     // If this is a pseudo-destructor expression, build the call immediately.
4731     if (isa<CXXPseudoDestructorExpr>(Fn)) {
4732       if (!ArgExprs.empty()) {
4733         // Pseudo-destructor calls should not have any arguments.
4734         Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
4735           << FixItHint::CreateRemoval(
4736                                     SourceRange(ArgExprs[0]->getLocStart(),
4737                                                 ArgExprs.back()->getLocEnd()));
4738       }
4739 
4740       return new (Context)
4741           CallExpr(Context, Fn, None, Context.VoidTy, VK_RValue, RParenLoc);
4742     }
4743     if (Fn->getType() == Context.PseudoObjectTy) {
4744       ExprResult result = CheckPlaceholderExpr(Fn);
4745       if (result.isInvalid()) return ExprError();
4746       Fn = result.get();
4747     }
4748 
4749     // Determine whether this is a dependent call inside a C++ template,
4750     // in which case we won't do any semantic analysis now.
4751     // FIXME: Will need to cache the results of name lookup (including ADL) in
4752     // Fn.
4753     bool Dependent = false;
4754     if (Fn->isTypeDependent())
4755       Dependent = true;
4756     else if (Expr::hasAnyTypeDependentArguments(ArgExprs))
4757       Dependent = true;
4758 
4759     if (Dependent) {
4760       if (ExecConfig) {
4761         return new (Context) CUDAKernelCallExpr(
4762             Context, Fn, cast<CallExpr>(ExecConfig), ArgExprs,
4763             Context.DependentTy, VK_RValue, RParenLoc);
4764       } else {
4765         return new (Context) CallExpr(
4766             Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc);
4767       }
4768     }
4769 
4770     // Determine whether this is a call to an object (C++ [over.call.object]).
4771     if (Fn->getType()->isRecordType())
4772       return BuildCallToObjectOfClassType(S, Fn, LParenLoc, ArgExprs,
4773                                           RParenLoc);
4774 
4775     if (Fn->getType() == Context.UnknownAnyTy) {
4776       ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
4777       if (result.isInvalid()) return ExprError();
4778       Fn = result.get();
4779     }
4780 
4781     if (Fn->getType() == Context.BoundMemberTy) {
4782       return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc);
4783     }
4784   }
4785 
4786   // Check for overloaded calls.  This can happen even in C due to extensions.
4787   if (Fn->getType() == Context.OverloadTy) {
4788     OverloadExpr::FindResult find = OverloadExpr::find(Fn);
4789 
4790     // We aren't supposed to apply this logic for if there's an '&' involved.
4791     if (!find.HasFormOfMemberPointer) {
4792       OverloadExpr *ovl = find.Expression;
4793       if (isa<UnresolvedLookupExpr>(ovl)) {
4794         UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl);
4795         return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs,
4796                                        RParenLoc, ExecConfig);
4797       } else {
4798         return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs,
4799                                          RParenLoc);
4800       }
4801     }
4802   }
4803 
4804   // If we're directly calling a function, get the appropriate declaration.
4805   if (Fn->getType() == Context.UnknownAnyTy) {
4806     ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
4807     if (result.isInvalid()) return ExprError();
4808     Fn = result.get();
4809   }
4810 
4811   Expr *NakedFn = Fn->IgnoreParens();
4812 
4813   NamedDecl *NDecl = nullptr;
4814   if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn))
4815     if (UnOp->getOpcode() == UO_AddrOf)
4816       NakedFn = UnOp->getSubExpr()->IgnoreParens();
4817 
4818   if (isa<DeclRefExpr>(NakedFn)) {
4819     NDecl = cast<DeclRefExpr>(NakedFn)->getDecl();
4820 
4821     FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl);
4822     if (FDecl && FDecl->getBuiltinID()) {
4823       // Rewrite the function decl for this builtin by replacing paramaters
4824       // with no explicit address space with the address space of the arguments
4825       // in ArgExprs.
4826       if ((FDecl = rewriteBuiltinFunctionDecl(this, Context, FDecl, ArgExprs))) {
4827         NDecl = FDecl;
4828         Fn = DeclRefExpr::Create(Context, FDecl->getQualifierLoc(),
4829                            SourceLocation(), FDecl, false,
4830                            SourceLocation(), FDecl->getType(),
4831                            Fn->getValueKind(), FDecl);
4832       }
4833     }
4834   } else if (isa<MemberExpr>(NakedFn))
4835     NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl();
4836 
4837   if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) {
4838     if (FD->hasAttr<EnableIfAttr>()) {
4839       if (const EnableIfAttr *Attr = CheckEnableIf(FD, ArgExprs, true)) {
4840         Diag(Fn->getLocStart(),
4841              isa<CXXMethodDecl>(FD) ?
4842                  diag::err_ovl_no_viable_member_function_in_call :
4843                  diag::err_ovl_no_viable_function_in_call)
4844           << FD << FD->getSourceRange();
4845         Diag(FD->getLocation(),
4846              diag::note_ovl_candidate_disabled_by_enable_if_attr)
4847             << Attr->getCond()->getSourceRange() << Attr->getMessage();
4848       }
4849     }
4850   }
4851 
4852   return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc,
4853                                ExecConfig, IsExecConfig);
4854 }
4855 
4856 /// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments.
4857 ///
4858 /// __builtin_astype( value, dst type )
4859 ///
4860 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy,
4861                                  SourceLocation BuiltinLoc,
4862                                  SourceLocation RParenLoc) {
4863   ExprValueKind VK = VK_RValue;
4864   ExprObjectKind OK = OK_Ordinary;
4865   QualType DstTy = GetTypeFromParser(ParsedDestTy);
4866   QualType SrcTy = E->getType();
4867   if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy))
4868     return ExprError(Diag(BuiltinLoc,
4869                           diag::err_invalid_astype_of_different_size)
4870                      << DstTy
4871                      << SrcTy
4872                      << E->getSourceRange());
4873   return new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, RParenLoc);
4874 }
4875 
4876 /// ActOnConvertVectorExpr - create a new convert-vector expression from the
4877 /// provided arguments.
4878 ///
4879 /// __builtin_convertvector( value, dst type )
4880 ///
4881 ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy,
4882                                         SourceLocation BuiltinLoc,
4883                                         SourceLocation RParenLoc) {
4884   TypeSourceInfo *TInfo;
4885   GetTypeFromParser(ParsedDestTy, &TInfo);
4886   return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc);
4887 }
4888 
4889 /// BuildResolvedCallExpr - Build a call to a resolved expression,
4890 /// i.e. an expression not of \p OverloadTy.  The expression should
4891 /// unary-convert to an expression of function-pointer or
4892 /// block-pointer type.
4893 ///
4894 /// \param NDecl the declaration being called, if available
4895 ExprResult
4896 Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
4897                             SourceLocation LParenLoc,
4898                             ArrayRef<Expr *> Args,
4899                             SourceLocation RParenLoc,
4900                             Expr *Config, bool IsExecConfig) {
4901   FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
4902   unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0);
4903 
4904   // Promote the function operand.
4905   // We special-case function promotion here because we only allow promoting
4906   // builtin functions to function pointers in the callee of a call.
4907   ExprResult Result;
4908   if (BuiltinID &&
4909       Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) {
4910     Result = ImpCastExprToType(Fn, Context.getPointerType(FDecl->getType()),
4911                                CK_BuiltinFnToFnPtr).get();
4912   } else {
4913     Result = CallExprUnaryConversions(Fn);
4914   }
4915   if (Result.isInvalid())
4916     return ExprError();
4917   Fn = Result.get();
4918 
4919   // Make the call expr early, before semantic checks.  This guarantees cleanup
4920   // of arguments and function on error.
4921   CallExpr *TheCall;
4922   if (Config)
4923     TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
4924                                                cast<CallExpr>(Config), Args,
4925                                                Context.BoolTy, VK_RValue,
4926                                                RParenLoc);
4927   else
4928     TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy,
4929                                      VK_RValue, RParenLoc);
4930 
4931   if (!getLangOpts().CPlusPlus) {
4932     // C cannot always handle TypoExpr nodes in builtin calls and direct
4933     // function calls as their argument checking don't necessarily handle
4934     // dependent types properly, so make sure any TypoExprs have been
4935     // dealt with.
4936     ExprResult Result = CorrectDelayedTyposInExpr(TheCall);
4937     if (!Result.isUsable()) return ExprError();
4938     TheCall = dyn_cast<CallExpr>(Result.get());
4939     if (!TheCall) return Result;
4940   }
4941 
4942   // Bail out early if calling a builtin with custom typechecking.
4943   if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID))
4944     return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
4945 
4946  retry:
4947   const FunctionType *FuncT;
4948   if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) {
4949     // C99 6.5.2.2p1 - "The expression that denotes the called function shall
4950     // have type pointer to function".
4951     FuncT = PT->getPointeeType()->getAs<FunctionType>();
4952     if (!FuncT)
4953       return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
4954                          << Fn->getType() << Fn->getSourceRange());
4955   } else if (const BlockPointerType *BPT =
4956                Fn->getType()->getAs<BlockPointerType>()) {
4957     FuncT = BPT->getPointeeType()->castAs<FunctionType>();
4958   } else {
4959     // Handle calls to expressions of unknown-any type.
4960     if (Fn->getType() == Context.UnknownAnyTy) {
4961       ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn);
4962       if (rewrite.isInvalid()) return ExprError();
4963       Fn = rewrite.get();
4964       TheCall->setCallee(Fn);
4965       goto retry;
4966     }
4967 
4968     return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
4969       << Fn->getType() << Fn->getSourceRange());
4970   }
4971 
4972   if (getLangOpts().CUDA) {
4973     if (Config) {
4974       // CUDA: Kernel calls must be to global functions
4975       if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>())
4976         return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
4977             << FDecl->getName() << Fn->getSourceRange());
4978 
4979       // CUDA: Kernel function must have 'void' return type
4980       if (!FuncT->getReturnType()->isVoidType())
4981         return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
4982             << Fn->getType() << Fn->getSourceRange());
4983     } else {
4984       // CUDA: Calls to global functions must be configured
4985       if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>())
4986         return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
4987             << FDecl->getName() << Fn->getSourceRange());
4988     }
4989   }
4990 
4991   // Check for a valid return type
4992   if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall,
4993                           FDecl))
4994     return ExprError();
4995 
4996   // We know the result type of the call, set it.
4997   TheCall->setType(FuncT->getCallResultType(Context));
4998   TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType()));
4999 
5000   const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT);
5001   if (Proto) {
5002     if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc,
5003                                 IsExecConfig))
5004       return ExprError();
5005   } else {
5006     assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
5007 
5008     if (FDecl) {
5009       // Check if we have too few/too many template arguments, based
5010       // on our knowledge of the function definition.
5011       const FunctionDecl *Def = nullptr;
5012       if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) {
5013         Proto = Def->getType()->getAs<FunctionProtoType>();
5014        if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size()))
5015           Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
5016           << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange();
5017       }
5018 
5019       // If the function we're calling isn't a function prototype, but we have
5020       // a function prototype from a prior declaratiom, use that prototype.
5021       if (!FDecl->hasPrototype())
5022         Proto = FDecl->getType()->getAs<FunctionProtoType>();
5023     }
5024 
5025     // Promote the arguments (C99 6.5.2.2p6).
5026     for (unsigned i = 0, e = Args.size(); i != e; i++) {
5027       Expr *Arg = Args[i];
5028 
5029       if (Proto && i < Proto->getNumParams()) {
5030         InitializedEntity Entity = InitializedEntity::InitializeParameter(
5031             Context, Proto->getParamType(i), Proto->isParamConsumed(i));
5032         ExprResult ArgE =
5033             PerformCopyInitialization(Entity, SourceLocation(), Arg);
5034         if (ArgE.isInvalid())
5035           return true;
5036 
5037         Arg = ArgE.getAs<Expr>();
5038 
5039       } else {
5040         ExprResult ArgE = DefaultArgumentPromotion(Arg);
5041 
5042         if (ArgE.isInvalid())
5043           return true;
5044 
5045         Arg = ArgE.getAs<Expr>();
5046       }
5047 
5048       if (RequireCompleteType(Arg->getLocStart(),
5049                               Arg->getType(),
5050                               diag::err_call_incomplete_argument, Arg))
5051         return ExprError();
5052 
5053       TheCall->setArg(i, Arg);
5054     }
5055   }
5056 
5057   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
5058     if (!Method->isStatic())
5059       return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
5060         << Fn->getSourceRange());
5061 
5062   // Check for sentinels
5063   if (NDecl)
5064     DiagnoseSentinelCalls(NDecl, LParenLoc, Args);
5065 
5066   // Do special checking on direct calls to functions.
5067   if (FDecl) {
5068     if (CheckFunctionCall(FDecl, TheCall, Proto))
5069       return ExprError();
5070 
5071     if (BuiltinID)
5072       return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
5073   } else if (NDecl) {
5074     if (CheckPointerCall(NDecl, TheCall, Proto))
5075       return ExprError();
5076   } else {
5077     if (CheckOtherCall(TheCall, Proto))
5078       return ExprError();
5079   }
5080 
5081   return MaybeBindToTemporary(TheCall);
5082 }
5083 
5084 ExprResult
5085 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
5086                            SourceLocation RParenLoc, Expr *InitExpr) {
5087   assert(Ty && "ActOnCompoundLiteral(): missing type");
5088   // FIXME: put back this assert when initializers are worked out.
5089   //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
5090 
5091   TypeSourceInfo *TInfo;
5092   QualType literalType = GetTypeFromParser(Ty, &TInfo);
5093   if (!TInfo)
5094     TInfo = Context.getTrivialTypeSourceInfo(literalType);
5095 
5096   return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
5097 }
5098 
5099 ExprResult
5100 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
5101                                SourceLocation RParenLoc, Expr *LiteralExpr) {
5102   QualType literalType = TInfo->getType();
5103 
5104   if (literalType->isArrayType()) {
5105     if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
5106           diag::err_illegal_decl_array_incomplete_type,
5107           SourceRange(LParenLoc,
5108                       LiteralExpr->getSourceRange().getEnd())))
5109       return ExprError();
5110     if (literalType->isVariableArrayType())
5111       return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
5112         << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()));
5113   } else if (!literalType->isDependentType() &&
5114              RequireCompleteType(LParenLoc, literalType,
5115                diag::err_typecheck_decl_incomplete_type,
5116                SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
5117     return ExprError();
5118 
5119   InitializedEntity Entity
5120     = InitializedEntity::InitializeCompoundLiteralInit(TInfo);
5121   InitializationKind Kind
5122     = InitializationKind::CreateCStyleCast(LParenLoc,
5123                                            SourceRange(LParenLoc, RParenLoc),
5124                                            /*InitList=*/true);
5125   InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr);
5126   ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr,
5127                                       &literalType);
5128   if (Result.isInvalid())
5129     return ExprError();
5130   LiteralExpr = Result.get();
5131 
5132   bool isFileScope = getCurFunctionOrMethodDecl() == nullptr;
5133   if (isFileScope &&
5134       !LiteralExpr->isTypeDependent() &&
5135       !LiteralExpr->isValueDependent() &&
5136       !literalType->isDependentType()) { // 6.5.2.5p3
5137     if (CheckForConstantInitializer(LiteralExpr, literalType))
5138       return ExprError();
5139   }
5140 
5141   // In C, compound literals are l-values for some reason.
5142   ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue;
5143 
5144   return MaybeBindToTemporary(
5145            new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
5146                                              VK, LiteralExpr, isFileScope));
5147 }
5148 
5149 ExprResult
5150 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList,
5151                     SourceLocation RBraceLoc) {
5152   // Immediately handle non-overload placeholders.  Overloads can be
5153   // resolved contextually, but everything else here can't.
5154   for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) {
5155     if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) {
5156       ExprResult result = CheckPlaceholderExpr(InitArgList[I]);
5157 
5158       // Ignore failures; dropping the entire initializer list because
5159       // of one failure would be terrible for indexing/etc.
5160       if (result.isInvalid()) continue;
5161 
5162       InitArgList[I] = result.get();
5163     }
5164   }
5165 
5166   // Semantic analysis for initializers is done by ActOnDeclarator() and
5167   // CheckInitializer() - it requires knowledge of the object being intialized.
5168 
5169   InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList,
5170                                                RBraceLoc);
5171   E->setType(Context.VoidTy); // FIXME: just a place holder for now.
5172   return E;
5173 }
5174 
5175 /// Do an explicit extend of the given block pointer if we're in ARC.
5176 void Sema::maybeExtendBlockObject(ExprResult &E) {
5177   assert(E.get()->getType()->isBlockPointerType());
5178   assert(E.get()->isRValue());
5179 
5180   // Only do this in an r-value context.
5181   if (!getLangOpts().ObjCAutoRefCount) return;
5182 
5183   E = ImplicitCastExpr::Create(Context, E.get()->getType(),
5184                                CK_ARCExtendBlockObject, E.get(),
5185                                /*base path*/ nullptr, VK_RValue);
5186   ExprNeedsCleanups = true;
5187 }
5188 
5189 /// Prepare a conversion of the given expression to an ObjC object
5190 /// pointer type.
5191 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) {
5192   QualType type = E.get()->getType();
5193   if (type->isObjCObjectPointerType()) {
5194     return CK_BitCast;
5195   } else if (type->isBlockPointerType()) {
5196     maybeExtendBlockObject(E);
5197     return CK_BlockPointerToObjCPointerCast;
5198   } else {
5199     assert(type->isPointerType());
5200     return CK_CPointerToObjCPointerCast;
5201   }
5202 }
5203 
5204 /// Prepares for a scalar cast, performing all the necessary stages
5205 /// except the final cast and returning the kind required.
5206 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) {
5207   // Both Src and Dest are scalar types, i.e. arithmetic or pointer.
5208   // Also, callers should have filtered out the invalid cases with
5209   // pointers.  Everything else should be possible.
5210 
5211   QualType SrcTy = Src.get()->getType();
5212   if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
5213     return CK_NoOp;
5214 
5215   switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) {
5216   case Type::STK_MemberPointer:
5217     llvm_unreachable("member pointer type in C");
5218 
5219   case Type::STK_CPointer:
5220   case Type::STK_BlockPointer:
5221   case Type::STK_ObjCObjectPointer:
5222     switch (DestTy->getScalarTypeKind()) {
5223     case Type::STK_CPointer: {
5224       unsigned SrcAS = SrcTy->getPointeeType().getAddressSpace();
5225       unsigned DestAS = DestTy->getPointeeType().getAddressSpace();
5226       if (SrcAS != DestAS)
5227         return CK_AddressSpaceConversion;
5228       return CK_BitCast;
5229     }
5230     case Type::STK_BlockPointer:
5231       return (SrcKind == Type::STK_BlockPointer
5232                 ? CK_BitCast : CK_AnyPointerToBlockPointerCast);
5233     case Type::STK_ObjCObjectPointer:
5234       if (SrcKind == Type::STK_ObjCObjectPointer)
5235         return CK_BitCast;
5236       if (SrcKind == Type::STK_CPointer)
5237         return CK_CPointerToObjCPointerCast;
5238       maybeExtendBlockObject(Src);
5239       return CK_BlockPointerToObjCPointerCast;
5240     case Type::STK_Bool:
5241       return CK_PointerToBoolean;
5242     case Type::STK_Integral:
5243       return CK_PointerToIntegral;
5244     case Type::STK_Floating:
5245     case Type::STK_FloatingComplex:
5246     case Type::STK_IntegralComplex:
5247     case Type::STK_MemberPointer:
5248       llvm_unreachable("illegal cast from pointer");
5249     }
5250     llvm_unreachable("Should have returned before this");
5251 
5252   case Type::STK_Bool: // casting from bool is like casting from an integer
5253   case Type::STK_Integral:
5254     switch (DestTy->getScalarTypeKind()) {
5255     case Type::STK_CPointer:
5256     case Type::STK_ObjCObjectPointer:
5257     case Type::STK_BlockPointer:
5258       if (Src.get()->isNullPointerConstant(Context,
5259                                            Expr::NPC_ValueDependentIsNull))
5260         return CK_NullToPointer;
5261       return CK_IntegralToPointer;
5262     case Type::STK_Bool:
5263       return CK_IntegralToBoolean;
5264     case Type::STK_Integral:
5265       return CK_IntegralCast;
5266     case Type::STK_Floating:
5267       return CK_IntegralToFloating;
5268     case Type::STK_IntegralComplex:
5269       Src = ImpCastExprToType(Src.get(),
5270                               DestTy->castAs<ComplexType>()->getElementType(),
5271                               CK_IntegralCast);
5272       return CK_IntegralRealToComplex;
5273     case Type::STK_FloatingComplex:
5274       Src = ImpCastExprToType(Src.get(),
5275                               DestTy->castAs<ComplexType>()->getElementType(),
5276                               CK_IntegralToFloating);
5277       return CK_FloatingRealToComplex;
5278     case Type::STK_MemberPointer:
5279       llvm_unreachable("member pointer type in C");
5280     }
5281     llvm_unreachable("Should have returned before this");
5282 
5283   case Type::STK_Floating:
5284     switch (DestTy->getScalarTypeKind()) {
5285     case Type::STK_Floating:
5286       return CK_FloatingCast;
5287     case Type::STK_Bool:
5288       return CK_FloatingToBoolean;
5289     case Type::STK_Integral:
5290       return CK_FloatingToIntegral;
5291     case Type::STK_FloatingComplex:
5292       Src = ImpCastExprToType(Src.get(),
5293                               DestTy->castAs<ComplexType>()->getElementType(),
5294                               CK_FloatingCast);
5295       return CK_FloatingRealToComplex;
5296     case Type::STK_IntegralComplex:
5297       Src = ImpCastExprToType(Src.get(),
5298                               DestTy->castAs<ComplexType>()->getElementType(),
5299                               CK_FloatingToIntegral);
5300       return CK_IntegralRealToComplex;
5301     case Type::STK_CPointer:
5302     case Type::STK_ObjCObjectPointer:
5303     case Type::STK_BlockPointer:
5304       llvm_unreachable("valid float->pointer cast?");
5305     case Type::STK_MemberPointer:
5306       llvm_unreachable("member pointer type in C");
5307     }
5308     llvm_unreachable("Should have returned before this");
5309 
5310   case Type::STK_FloatingComplex:
5311     switch (DestTy->getScalarTypeKind()) {
5312     case Type::STK_FloatingComplex:
5313       return CK_FloatingComplexCast;
5314     case Type::STK_IntegralComplex:
5315       return CK_FloatingComplexToIntegralComplex;
5316     case Type::STK_Floating: {
5317       QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
5318       if (Context.hasSameType(ET, DestTy))
5319         return CK_FloatingComplexToReal;
5320       Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal);
5321       return CK_FloatingCast;
5322     }
5323     case Type::STK_Bool:
5324       return CK_FloatingComplexToBoolean;
5325     case Type::STK_Integral:
5326       Src = ImpCastExprToType(Src.get(),
5327                               SrcTy->castAs<ComplexType>()->getElementType(),
5328                               CK_FloatingComplexToReal);
5329       return CK_FloatingToIntegral;
5330     case Type::STK_CPointer:
5331     case Type::STK_ObjCObjectPointer:
5332     case Type::STK_BlockPointer:
5333       llvm_unreachable("valid complex float->pointer cast?");
5334     case Type::STK_MemberPointer:
5335       llvm_unreachable("member pointer type in C");
5336     }
5337     llvm_unreachable("Should have returned before this");
5338 
5339   case Type::STK_IntegralComplex:
5340     switch (DestTy->getScalarTypeKind()) {
5341     case Type::STK_FloatingComplex:
5342       return CK_IntegralComplexToFloatingComplex;
5343     case Type::STK_IntegralComplex:
5344       return CK_IntegralComplexCast;
5345     case Type::STK_Integral: {
5346       QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
5347       if (Context.hasSameType(ET, DestTy))
5348         return CK_IntegralComplexToReal;
5349       Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal);
5350       return CK_IntegralCast;
5351     }
5352     case Type::STK_Bool:
5353       return CK_IntegralComplexToBoolean;
5354     case Type::STK_Floating:
5355       Src = ImpCastExprToType(Src.get(),
5356                               SrcTy->castAs<ComplexType>()->getElementType(),
5357                               CK_IntegralComplexToReal);
5358       return CK_IntegralToFloating;
5359     case Type::STK_CPointer:
5360     case Type::STK_ObjCObjectPointer:
5361     case Type::STK_BlockPointer:
5362       llvm_unreachable("valid complex int->pointer cast?");
5363     case Type::STK_MemberPointer:
5364       llvm_unreachable("member pointer type in C");
5365     }
5366     llvm_unreachable("Should have returned before this");
5367   }
5368 
5369   llvm_unreachable("Unhandled scalar cast");
5370 }
5371 
5372 static bool breakDownVectorType(QualType type, uint64_t &len,
5373                                 QualType &eltType) {
5374   // Vectors are simple.
5375   if (const VectorType *vecType = type->getAs<VectorType>()) {
5376     len = vecType->getNumElements();
5377     eltType = vecType->getElementType();
5378     assert(eltType->isScalarType());
5379     return true;
5380   }
5381 
5382   // We allow lax conversion to and from non-vector types, but only if
5383   // they're real types (i.e. non-complex, non-pointer scalar types).
5384   if (!type->isRealType()) return false;
5385 
5386   len = 1;
5387   eltType = type;
5388   return true;
5389 }
5390 
5391 /// Are the two types lax-compatible vector types?  That is, given
5392 /// that one of them is a vector, do they have equal storage sizes,
5393 /// where the storage size is the number of elements times the element
5394 /// size?
5395 ///
5396 /// This will also return false if either of the types is neither a
5397 /// vector nor a real type.
5398 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) {
5399   assert(destTy->isVectorType() || srcTy->isVectorType());
5400 
5401   uint64_t srcLen, destLen;
5402   QualType srcElt, destElt;
5403   if (!breakDownVectorType(srcTy, srcLen, srcElt)) return false;
5404   if (!breakDownVectorType(destTy, destLen, destElt)) return false;
5405 
5406   // ASTContext::getTypeSize will return the size rounded up to a
5407   // power of 2, so instead of using that, we need to use the raw
5408   // element size multiplied by the element count.
5409   uint64_t srcEltSize = Context.getTypeSize(srcElt);
5410   uint64_t destEltSize = Context.getTypeSize(destElt);
5411 
5412   return (srcLen * srcEltSize == destLen * destEltSize);
5413 }
5414 
5415 /// Is this a legal conversion between two types, one of which is
5416 /// known to be a vector type?
5417 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) {
5418   assert(destTy->isVectorType() || srcTy->isVectorType());
5419 
5420   if (!Context.getLangOpts().LaxVectorConversions)
5421     return false;
5422   return areLaxCompatibleVectorTypes(srcTy, destTy);
5423 }
5424 
5425 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
5426                            CastKind &Kind) {
5427   assert(VectorTy->isVectorType() && "Not a vector type!");
5428 
5429   if (Ty->isVectorType() || Ty->isIntegralType(Context)) {
5430     if (!areLaxCompatibleVectorTypes(Ty, VectorTy))
5431       return Diag(R.getBegin(),
5432                   Ty->isVectorType() ?
5433                   diag::err_invalid_conversion_between_vectors :
5434                   diag::err_invalid_conversion_between_vector_and_integer)
5435         << VectorTy << Ty << R;
5436   } else
5437     return Diag(R.getBegin(),
5438                 diag::err_invalid_conversion_between_vector_and_scalar)
5439       << VectorTy << Ty << R;
5440 
5441   Kind = CK_BitCast;
5442   return false;
5443 }
5444 
5445 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy,
5446                                     Expr *CastExpr, CastKind &Kind) {
5447   assert(DestTy->isExtVectorType() && "Not an extended vector type!");
5448 
5449   QualType SrcTy = CastExpr->getType();
5450 
5451   // If SrcTy is a VectorType, the total size must match to explicitly cast to
5452   // an ExtVectorType.
5453   // In OpenCL, casts between vectors of different types are not allowed.
5454   // (See OpenCL 6.2).
5455   if (SrcTy->isVectorType()) {
5456     if (!areLaxCompatibleVectorTypes(SrcTy, DestTy)
5457         || (getLangOpts().OpenCL &&
5458             (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) {
5459       Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
5460         << DestTy << SrcTy << R;
5461       return ExprError();
5462     }
5463     Kind = CK_BitCast;
5464     return CastExpr;
5465   }
5466 
5467   // All non-pointer scalars can be cast to ExtVector type.  The appropriate
5468   // conversion will take place first from scalar to elt type, and then
5469   // splat from elt type to vector.
5470   if (SrcTy->isPointerType())
5471     return Diag(R.getBegin(),
5472                 diag::err_invalid_conversion_between_vector_and_scalar)
5473       << DestTy << SrcTy << R;
5474 
5475   QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType();
5476   ExprResult CastExprRes = CastExpr;
5477   CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy);
5478   if (CastExprRes.isInvalid())
5479     return ExprError();
5480   CastExpr = ImpCastExprToType(CastExprRes.get(), DestElemTy, CK).get();
5481 
5482   Kind = CK_VectorSplat;
5483   return CastExpr;
5484 }
5485 
5486 ExprResult
5487 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
5488                     Declarator &D, ParsedType &Ty,
5489                     SourceLocation RParenLoc, Expr *CastExpr) {
5490   assert(!D.isInvalidType() && (CastExpr != nullptr) &&
5491          "ActOnCastExpr(): missing type or expr");
5492 
5493   TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType());
5494   if (D.isInvalidType())
5495     return ExprError();
5496 
5497   if (getLangOpts().CPlusPlus) {
5498     // Check that there are no default arguments (C++ only).
5499     CheckExtraCXXDefaultArguments(D);
5500   } else {
5501     // Make sure any TypoExprs have been dealt with.
5502     ExprResult Res = CorrectDelayedTyposInExpr(CastExpr);
5503     if (!Res.isUsable())
5504       return ExprError();
5505     CastExpr = Res.get();
5506   }
5507 
5508   checkUnusedDeclAttributes(D);
5509 
5510   QualType castType = castTInfo->getType();
5511   Ty = CreateParsedType(castType, castTInfo);
5512 
5513   bool isVectorLiteral = false;
5514 
5515   // Check for an altivec or OpenCL literal,
5516   // i.e. all the elements are integer constants.
5517   ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr);
5518   ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr);
5519   if ((getLangOpts().AltiVec || getLangOpts().ZVector || getLangOpts().OpenCL)
5520        && castType->isVectorType() && (PE || PLE)) {
5521     if (PLE && PLE->getNumExprs() == 0) {
5522       Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer);
5523       return ExprError();
5524     }
5525     if (PE || PLE->getNumExprs() == 1) {
5526       Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0));
5527       if (!E->getType()->isVectorType())
5528         isVectorLiteral = true;
5529     }
5530     else
5531       isVectorLiteral = true;
5532   }
5533 
5534   // If this is a vector initializer, '(' type ')' '(' init, ..., init ')'
5535   // then handle it as such.
5536   if (isVectorLiteral)
5537     return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
5538 
5539   // If the Expr being casted is a ParenListExpr, handle it specially.
5540   // This is not an AltiVec-style cast, so turn the ParenListExpr into a
5541   // sequence of BinOp comma operators.
5542   if (isa<ParenListExpr>(CastExpr)) {
5543     ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr);
5544     if (Result.isInvalid()) return ExprError();
5545     CastExpr = Result.get();
5546   }
5547 
5548   if (getLangOpts().CPlusPlus && !castType->isVoidType() &&
5549       !getSourceManager().isInSystemMacro(LParenLoc))
5550     Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange();
5551 
5552   CheckTollFreeBridgeCast(castType, CastExpr);
5553 
5554   CheckObjCBridgeRelatedCast(castType, CastExpr);
5555 
5556   return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
5557 }
5558 
5559 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
5560                                     SourceLocation RParenLoc, Expr *E,
5561                                     TypeSourceInfo *TInfo) {
5562   assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) &&
5563          "Expected paren or paren list expression");
5564 
5565   Expr **exprs;
5566   unsigned numExprs;
5567   Expr *subExpr;
5568   SourceLocation LiteralLParenLoc, LiteralRParenLoc;
5569   if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) {
5570     LiteralLParenLoc = PE->getLParenLoc();
5571     LiteralRParenLoc = PE->getRParenLoc();
5572     exprs = PE->getExprs();
5573     numExprs = PE->getNumExprs();
5574   } else { // isa<ParenExpr> by assertion at function entrance
5575     LiteralLParenLoc = cast<ParenExpr>(E)->getLParen();
5576     LiteralRParenLoc = cast<ParenExpr>(E)->getRParen();
5577     subExpr = cast<ParenExpr>(E)->getSubExpr();
5578     exprs = &subExpr;
5579     numExprs = 1;
5580   }
5581 
5582   QualType Ty = TInfo->getType();
5583   assert(Ty->isVectorType() && "Expected vector type");
5584 
5585   SmallVector<Expr *, 8> initExprs;
5586   const VectorType *VTy = Ty->getAs<VectorType>();
5587   unsigned numElems = Ty->getAs<VectorType>()->getNumElements();
5588 
5589   // '(...)' form of vector initialization in AltiVec: the number of
5590   // initializers must be one or must match the size of the vector.
5591   // If a single value is specified in the initializer then it will be
5592   // replicated to all the components of the vector
5593   if (VTy->getVectorKind() == VectorType::AltiVecVector) {
5594     // The number of initializers must be one or must match the size of the
5595     // vector. If a single value is specified in the initializer then it will
5596     // be replicated to all the components of the vector
5597     if (numExprs == 1) {
5598       QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
5599       ExprResult Literal = DefaultLvalueConversion(exprs[0]);
5600       if (Literal.isInvalid())
5601         return ExprError();
5602       Literal = ImpCastExprToType(Literal.get(), ElemTy,
5603                                   PrepareScalarCast(Literal, ElemTy));
5604       return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
5605     }
5606     else if (numExprs < numElems) {
5607       Diag(E->getExprLoc(),
5608            diag::err_incorrect_number_of_vector_initializers);
5609       return ExprError();
5610     }
5611     else
5612       initExprs.append(exprs, exprs + numExprs);
5613   }
5614   else {
5615     // For OpenCL, when the number of initializers is a single value,
5616     // it will be replicated to all components of the vector.
5617     if (getLangOpts().OpenCL &&
5618         VTy->getVectorKind() == VectorType::GenericVector &&
5619         numExprs == 1) {
5620         QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
5621         ExprResult Literal = DefaultLvalueConversion(exprs[0]);
5622         if (Literal.isInvalid())
5623           return ExprError();
5624         Literal = ImpCastExprToType(Literal.get(), ElemTy,
5625                                     PrepareScalarCast(Literal, ElemTy));
5626         return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
5627     }
5628 
5629     initExprs.append(exprs, exprs + numExprs);
5630   }
5631   // FIXME: This means that pretty-printing the final AST will produce curly
5632   // braces instead of the original commas.
5633   InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc,
5634                                                    initExprs, LiteralRParenLoc);
5635   initE->setType(Ty);
5636   return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);
5637 }
5638 
5639 /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn
5640 /// the ParenListExpr into a sequence of comma binary operators.
5641 ExprResult
5642 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) {
5643   ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr);
5644   if (!E)
5645     return OrigExpr;
5646 
5647   ExprResult Result(E->getExpr(0));
5648 
5649   for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
5650     Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(),
5651                         E->getExpr(i));
5652 
5653   if (Result.isInvalid()) return ExprError();
5654 
5655   return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get());
5656 }
5657 
5658 ExprResult Sema::ActOnParenListExpr(SourceLocation L,
5659                                     SourceLocation R,
5660                                     MultiExprArg Val) {
5661   Expr *expr = new (Context) ParenListExpr(Context, L, Val, R);
5662   return expr;
5663 }
5664 
5665 /// \brief Emit a specialized diagnostic when one expression is a null pointer
5666 /// constant and the other is not a pointer.  Returns true if a diagnostic is
5667 /// emitted.
5668 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
5669                                       SourceLocation QuestionLoc) {
5670   Expr *NullExpr = LHSExpr;
5671   Expr *NonPointerExpr = RHSExpr;
5672   Expr::NullPointerConstantKind NullKind =
5673       NullExpr->isNullPointerConstant(Context,
5674                                       Expr::NPC_ValueDependentIsNotNull);
5675 
5676   if (NullKind == Expr::NPCK_NotNull) {
5677     NullExpr = RHSExpr;
5678     NonPointerExpr = LHSExpr;
5679     NullKind =
5680         NullExpr->isNullPointerConstant(Context,
5681                                         Expr::NPC_ValueDependentIsNotNull);
5682   }
5683 
5684   if (NullKind == Expr::NPCK_NotNull)
5685     return false;
5686 
5687   if (NullKind == Expr::NPCK_ZeroExpression)
5688     return false;
5689 
5690   if (NullKind == Expr::NPCK_ZeroLiteral) {
5691     // In this case, check to make sure that we got here from a "NULL"
5692     // string in the source code.
5693     NullExpr = NullExpr->IgnoreParenImpCasts();
5694     SourceLocation loc = NullExpr->getExprLoc();
5695     if (!findMacroSpelling(loc, "NULL"))
5696       return false;
5697   }
5698 
5699   int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr);
5700   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null)
5701       << NonPointerExpr->getType() << DiagType
5702       << NonPointerExpr->getSourceRange();
5703   return true;
5704 }
5705 
5706 /// \brief Return false if the condition expression is valid, true otherwise.
5707 static bool checkCondition(Sema &S, Expr *Cond, SourceLocation QuestionLoc) {
5708   QualType CondTy = Cond->getType();
5709 
5710   // OpenCL v1.1 s6.3.i says the condition cannot be a floating point type.
5711   if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) {
5712     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
5713       << CondTy << Cond->getSourceRange();
5714     return true;
5715   }
5716 
5717   // C99 6.5.15p2
5718   if (CondTy->isScalarType()) return false;
5719 
5720   S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_scalar)
5721     << CondTy << Cond->getSourceRange();
5722   return true;
5723 }
5724 
5725 /// \brief Handle when one or both operands are void type.
5726 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS,
5727                                          ExprResult &RHS) {
5728     Expr *LHSExpr = LHS.get();
5729     Expr *RHSExpr = RHS.get();
5730 
5731     if (!LHSExpr->getType()->isVoidType())
5732       S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
5733         << RHSExpr->getSourceRange();
5734     if (!RHSExpr->getType()->isVoidType())
5735       S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
5736         << LHSExpr->getSourceRange();
5737     LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid);
5738     RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid);
5739     return S.Context.VoidTy;
5740 }
5741 
5742 /// \brief Return false if the NullExpr can be promoted to PointerTy,
5743 /// true otherwise.
5744 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr,
5745                                         QualType PointerTy) {
5746   if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
5747       !NullExpr.get()->isNullPointerConstant(S.Context,
5748                                             Expr::NPC_ValueDependentIsNull))
5749     return true;
5750 
5751   NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer);
5752   return false;
5753 }
5754 
5755 /// \brief Checks compatibility between two pointers and return the resulting
5756 /// type.
5757 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS,
5758                                                      ExprResult &RHS,
5759                                                      SourceLocation Loc) {
5760   QualType LHSTy = LHS.get()->getType();
5761   QualType RHSTy = RHS.get()->getType();
5762 
5763   if (S.Context.hasSameType(LHSTy, RHSTy)) {
5764     // Two identical pointers types are always compatible.
5765     return LHSTy;
5766   }
5767 
5768   QualType lhptee, rhptee;
5769 
5770   // Get the pointee types.
5771   bool IsBlockPointer = false;
5772   if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) {
5773     lhptee = LHSBTy->getPointeeType();
5774     rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType();
5775     IsBlockPointer = true;
5776   } else {
5777     lhptee = LHSTy->castAs<PointerType>()->getPointeeType();
5778     rhptee = RHSTy->castAs<PointerType>()->getPointeeType();
5779   }
5780 
5781   // C99 6.5.15p6: If both operands are pointers to compatible types or to
5782   // differently qualified versions of compatible types, the result type is
5783   // a pointer to an appropriately qualified version of the composite
5784   // type.
5785 
5786   // Only CVR-qualifiers exist in the standard, and the differently-qualified
5787   // clause doesn't make sense for our extensions. E.g. address space 2 should
5788   // be incompatible with address space 3: they may live on different devices or
5789   // anything.
5790   Qualifiers lhQual = lhptee.getQualifiers();
5791   Qualifiers rhQual = rhptee.getQualifiers();
5792 
5793   unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers();
5794   lhQual.removeCVRQualifiers();
5795   rhQual.removeCVRQualifiers();
5796 
5797   lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual);
5798   rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual);
5799 
5800   QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee);
5801 
5802   if (CompositeTy.isNull()) {
5803     S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers)
5804       << LHSTy << RHSTy << LHS.get()->getSourceRange()
5805       << RHS.get()->getSourceRange();
5806     // In this situation, we assume void* type. No especially good
5807     // reason, but this is what gcc does, and we do have to pick
5808     // to get a consistent AST.
5809     QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy);
5810     LHS = S.ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
5811     RHS = S.ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
5812     return incompatTy;
5813   }
5814 
5815   // The pointer types are compatible.
5816   QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual);
5817   if (IsBlockPointer)
5818     ResultTy = S.Context.getBlockPointerType(ResultTy);
5819   else
5820     ResultTy = S.Context.getPointerType(ResultTy);
5821 
5822   LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast);
5823   RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast);
5824   return ResultTy;
5825 }
5826 
5827 /// \brief Return the resulting type when the operands are both block pointers.
5828 static QualType checkConditionalBlockPointerCompatibility(Sema &S,
5829                                                           ExprResult &LHS,
5830                                                           ExprResult &RHS,
5831                                                           SourceLocation Loc) {
5832   QualType LHSTy = LHS.get()->getType();
5833   QualType RHSTy = RHS.get()->getType();
5834 
5835   if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
5836     if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
5837       QualType destType = S.Context.getPointerType(S.Context.VoidTy);
5838       LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
5839       RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
5840       return destType;
5841     }
5842     S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
5843       << LHSTy << RHSTy << LHS.get()->getSourceRange()
5844       << RHS.get()->getSourceRange();
5845     return QualType();
5846   }
5847 
5848   // We have 2 block pointer types.
5849   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
5850 }
5851 
5852 /// \brief Return the resulting type when the operands are both pointers.
5853 static QualType
5854 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS,
5855                                             ExprResult &RHS,
5856                                             SourceLocation Loc) {
5857   // get the pointer types
5858   QualType LHSTy = LHS.get()->getType();
5859   QualType RHSTy = RHS.get()->getType();
5860 
5861   // get the "pointed to" types
5862   QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
5863   QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
5864 
5865   // ignore qualifiers on void (C99 6.5.15p3, clause 6)
5866   if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
5867     // Figure out necessary qualifiers (C99 6.5.15p6)
5868     QualType destPointee
5869       = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers());
5870     QualType destType = S.Context.getPointerType(destPointee);
5871     // Add qualifiers if necessary.
5872     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp);
5873     // Promote to void*.
5874     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
5875     return destType;
5876   }
5877   if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
5878     QualType destPointee
5879       = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers());
5880     QualType destType = S.Context.getPointerType(destPointee);
5881     // Add qualifiers if necessary.
5882     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp);
5883     // Promote to void*.
5884     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
5885     return destType;
5886   }
5887 
5888   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
5889 }
5890 
5891 /// \brief Return false if the first expression is not an integer and the second
5892 /// expression is not a pointer, true otherwise.
5893 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int,
5894                                         Expr* PointerExpr, SourceLocation Loc,
5895                                         bool IsIntFirstExpr) {
5896   if (!PointerExpr->getType()->isPointerType() ||
5897       !Int.get()->getType()->isIntegerType())
5898     return false;
5899 
5900   Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr;
5901   Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get();
5902 
5903   S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch)
5904     << Expr1->getType() << Expr2->getType()
5905     << Expr1->getSourceRange() << Expr2->getSourceRange();
5906   Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(),
5907                             CK_IntegralToPointer);
5908   return true;
5909 }
5910 
5911 /// \brief Simple conversion between integer and floating point types.
5912 ///
5913 /// Used when handling the OpenCL conditional operator where the
5914 /// condition is a vector while the other operands are scalar.
5915 ///
5916 /// OpenCL v1.1 s6.3.i and s6.11.6 together require that the scalar
5917 /// types are either integer or floating type. Between the two
5918 /// operands, the type with the higher rank is defined as the "result
5919 /// type". The other operand needs to be promoted to the same type. No
5920 /// other type promotion is allowed. We cannot use
5921 /// UsualArithmeticConversions() for this purpose, since it always
5922 /// promotes promotable types.
5923 static QualType OpenCLArithmeticConversions(Sema &S, ExprResult &LHS,
5924                                             ExprResult &RHS,
5925                                             SourceLocation QuestionLoc) {
5926   LHS = S.DefaultFunctionArrayLvalueConversion(LHS.get());
5927   if (LHS.isInvalid())
5928     return QualType();
5929   RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
5930   if (RHS.isInvalid())
5931     return QualType();
5932 
5933   // For conversion purposes, we ignore any qualifiers.
5934   // For example, "const float" and "float" are equivalent.
5935   QualType LHSType =
5936     S.Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
5937   QualType RHSType =
5938     S.Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
5939 
5940   if (!LHSType->isIntegerType() && !LHSType->isRealFloatingType()) {
5941     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
5942       << LHSType << LHS.get()->getSourceRange();
5943     return QualType();
5944   }
5945 
5946   if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) {
5947     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
5948       << RHSType << RHS.get()->getSourceRange();
5949     return QualType();
5950   }
5951 
5952   // If both types are identical, no conversion is needed.
5953   if (LHSType == RHSType)
5954     return LHSType;
5955 
5956   // Now handle "real" floating types (i.e. float, double, long double).
5957   if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
5958     return handleFloatConversion(S, LHS, RHS, LHSType, RHSType,
5959                                  /*IsCompAssign = */ false);
5960 
5961   // Finally, we have two differing integer types.
5962   return handleIntegerConversion<doIntegralCast, doIntegralCast>
5963   (S, LHS, RHS, LHSType, RHSType, /*IsCompAssign = */ false);
5964 }
5965 
5966 /// \brief Convert scalar operands to a vector that matches the
5967 ///        condition in length.
5968 ///
5969 /// Used when handling the OpenCL conditional operator where the
5970 /// condition is a vector while the other operands are scalar.
5971 ///
5972 /// We first compute the "result type" for the scalar operands
5973 /// according to OpenCL v1.1 s6.3.i. Both operands are then converted
5974 /// into a vector of that type where the length matches the condition
5975 /// vector type. s6.11.6 requires that the element types of the result
5976 /// and the condition must have the same number of bits.
5977 static QualType
5978 OpenCLConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS,
5979                               QualType CondTy, SourceLocation QuestionLoc) {
5980   QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc);
5981   if (ResTy.isNull()) return QualType();
5982 
5983   const VectorType *CV = CondTy->getAs<VectorType>();
5984   assert(CV);
5985 
5986   // Determine the vector result type
5987   unsigned NumElements = CV->getNumElements();
5988   QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements);
5989 
5990   // Ensure that all types have the same number of bits
5991   if (S.Context.getTypeSize(CV->getElementType())
5992       != S.Context.getTypeSize(ResTy)) {
5993     // Since VectorTy is created internally, it does not pretty print
5994     // with an OpenCL name. Instead, we just print a description.
5995     std::string EleTyName = ResTy.getUnqualifiedType().getAsString();
5996     SmallString<64> Str;
5997     llvm::raw_svector_ostream OS(Str);
5998     OS << "(vector of " << NumElements << " '" << EleTyName << "' values)";
5999     S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6000       << CondTy << OS.str();
6001     return QualType();
6002   }
6003 
6004   // Convert operands to the vector result type
6005   LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat);
6006   RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat);
6007 
6008   return VectorTy;
6009 }
6010 
6011 /// \brief Return false if this is a valid OpenCL condition vector
6012 static bool checkOpenCLConditionVector(Sema &S, Expr *Cond,
6013                                        SourceLocation QuestionLoc) {
6014   // OpenCL v1.1 s6.11.6 says the elements of the vector must be of
6015   // integral type.
6016   const VectorType *CondTy = Cond->getType()->getAs<VectorType>();
6017   assert(CondTy);
6018   QualType EleTy = CondTy->getElementType();
6019   if (EleTy->isIntegerType()) return false;
6020 
6021   S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
6022     << Cond->getType() << Cond->getSourceRange();
6023   return true;
6024 }
6025 
6026 /// \brief Return false if the vector condition type and the vector
6027 ///        result type are compatible.
6028 ///
6029 /// OpenCL v1.1 s6.11.6 requires that both vector types have the same
6030 /// number of elements, and their element types have the same number
6031 /// of bits.
6032 static bool checkVectorResult(Sema &S, QualType CondTy, QualType VecResTy,
6033                               SourceLocation QuestionLoc) {
6034   const VectorType *CV = CondTy->getAs<VectorType>();
6035   const VectorType *RV = VecResTy->getAs<VectorType>();
6036   assert(CV && RV);
6037 
6038   if (CV->getNumElements() != RV->getNumElements()) {
6039     S.Diag(QuestionLoc, diag::err_conditional_vector_size)
6040       << CondTy << VecResTy;
6041     return true;
6042   }
6043 
6044   QualType CVE = CV->getElementType();
6045   QualType RVE = RV->getElementType();
6046 
6047   if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE)) {
6048     S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6049       << CondTy << VecResTy;
6050     return true;
6051   }
6052 
6053   return false;
6054 }
6055 
6056 /// \brief Return the resulting type for the conditional operator in
6057 ///        OpenCL (aka "ternary selection operator", OpenCL v1.1
6058 ///        s6.3.i) when the condition is a vector type.
6059 static QualType
6060 OpenCLCheckVectorConditional(Sema &S, ExprResult &Cond,
6061                              ExprResult &LHS, ExprResult &RHS,
6062                              SourceLocation QuestionLoc) {
6063   Cond = S.DefaultFunctionArrayLvalueConversion(Cond.get());
6064   if (Cond.isInvalid())
6065     return QualType();
6066   QualType CondTy = Cond.get()->getType();
6067 
6068   if (checkOpenCLConditionVector(S, Cond.get(), QuestionLoc))
6069     return QualType();
6070 
6071   // If either operand is a vector then find the vector type of the
6072   // result as specified in OpenCL v1.1 s6.3.i.
6073   if (LHS.get()->getType()->isVectorType() ||
6074       RHS.get()->getType()->isVectorType()) {
6075     QualType VecResTy = S.CheckVectorOperands(LHS, RHS, QuestionLoc,
6076                                               /*isCompAssign*/false,
6077                                               /*AllowBothBool*/true,
6078                                               /*AllowBoolConversions*/false);
6079     if (VecResTy.isNull()) return QualType();
6080     // The result type must match the condition type as specified in
6081     // OpenCL v1.1 s6.11.6.
6082     if (checkVectorResult(S, CondTy, VecResTy, QuestionLoc))
6083       return QualType();
6084     return VecResTy;
6085   }
6086 
6087   // Both operands are scalar.
6088   return OpenCLConvertScalarsToVectors(S, LHS, RHS, CondTy, QuestionLoc);
6089 }
6090 
6091 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension.
6092 /// In that case, LHS = cond.
6093 /// C99 6.5.15
6094 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
6095                                         ExprResult &RHS, ExprValueKind &VK,
6096                                         ExprObjectKind &OK,
6097                                         SourceLocation QuestionLoc) {
6098 
6099   ExprResult LHSResult = CheckPlaceholderExpr(LHS.get());
6100   if (!LHSResult.isUsable()) return QualType();
6101   LHS = LHSResult;
6102 
6103   ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
6104   if (!RHSResult.isUsable()) return QualType();
6105   RHS = RHSResult;
6106 
6107   // C++ is sufficiently different to merit its own checker.
6108   if (getLangOpts().CPlusPlus)
6109     return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc);
6110 
6111   VK = VK_RValue;
6112   OK = OK_Ordinary;
6113 
6114   // The OpenCL operator with a vector condition is sufficiently
6115   // different to merit its own checker.
6116   if (getLangOpts().OpenCL && Cond.get()->getType()->isVectorType())
6117     return OpenCLCheckVectorConditional(*this, Cond, LHS, RHS, QuestionLoc);
6118 
6119   // First, check the condition.
6120   Cond = UsualUnaryConversions(Cond.get());
6121   if (Cond.isInvalid())
6122     return QualType();
6123   if (checkCondition(*this, Cond.get(), QuestionLoc))
6124     return QualType();
6125 
6126   // Now check the two expressions.
6127   if (LHS.get()->getType()->isVectorType() ||
6128       RHS.get()->getType()->isVectorType())
6129     return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false,
6130                                /*AllowBothBool*/true,
6131                                /*AllowBoolConversions*/false);
6132 
6133   QualType ResTy = UsualArithmeticConversions(LHS, RHS);
6134   if (LHS.isInvalid() || RHS.isInvalid())
6135     return QualType();
6136 
6137   QualType LHSTy = LHS.get()->getType();
6138   QualType RHSTy = RHS.get()->getType();
6139 
6140   // If both operands have arithmetic type, do the usual arithmetic conversions
6141   // to find a common type: C99 6.5.15p3,5.
6142   if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
6143     LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
6144     RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
6145 
6146     return ResTy;
6147   }
6148 
6149   // If both operands are the same structure or union type, the result is that
6150   // type.
6151   if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) {    // C99 6.5.15p3
6152     if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
6153       if (LHSRT->getDecl() == RHSRT->getDecl())
6154         // "If both the operands have structure or union type, the result has
6155         // that type."  This implies that CV qualifiers are dropped.
6156         return LHSTy.getUnqualifiedType();
6157     // FIXME: Type of conditional expression must be complete in C mode.
6158   }
6159 
6160   // C99 6.5.15p5: "If both operands have void type, the result has void type."
6161   // The following || allows only one side to be void (a GCC-ism).
6162   if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
6163     return checkConditionalVoidType(*this, LHS, RHS);
6164   }
6165 
6166   // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
6167   // the type of the other operand."
6168   if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy;
6169   if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy;
6170 
6171   // All objective-c pointer type analysis is done here.
6172   QualType compositeType = FindCompositeObjCPointerType(LHS, RHS,
6173                                                         QuestionLoc);
6174   if (LHS.isInvalid() || RHS.isInvalid())
6175     return QualType();
6176   if (!compositeType.isNull())
6177     return compositeType;
6178 
6179 
6180   // Handle block pointer types.
6181   if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType())
6182     return checkConditionalBlockPointerCompatibility(*this, LHS, RHS,
6183                                                      QuestionLoc);
6184 
6185   // Check constraints for C object pointers types (C99 6.5.15p3,6).
6186   if (LHSTy->isPointerType() && RHSTy->isPointerType())
6187     return checkConditionalObjectPointersCompatibility(*this, LHS, RHS,
6188                                                        QuestionLoc);
6189 
6190   // GCC compatibility: soften pointer/integer mismatch.  Note that
6191   // null pointers have been filtered out by this point.
6192   if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc,
6193       /*isIntFirstExpr=*/true))
6194     return RHSTy;
6195   if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc,
6196       /*isIntFirstExpr=*/false))
6197     return LHSTy;
6198 
6199   // Emit a better diagnostic if one of the expressions is a null pointer
6200   // constant and the other is not a pointer type. In this case, the user most
6201   // likely forgot to take the address of the other expression.
6202   if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
6203     return QualType();
6204 
6205   // Otherwise, the operands are not compatible.
6206   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
6207     << LHSTy << RHSTy << LHS.get()->getSourceRange()
6208     << RHS.get()->getSourceRange();
6209   return QualType();
6210 }
6211 
6212 /// FindCompositeObjCPointerType - Helper method to find composite type of
6213 /// two objective-c pointer types of the two input expressions.
6214 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
6215                                             SourceLocation QuestionLoc) {
6216   QualType LHSTy = LHS.get()->getType();
6217   QualType RHSTy = RHS.get()->getType();
6218 
6219   // Handle things like Class and struct objc_class*.  Here we case the result
6220   // to the pseudo-builtin, because that will be implicitly cast back to the
6221   // redefinition type if an attempt is made to access its fields.
6222   if (LHSTy->isObjCClassType() &&
6223       (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) {
6224     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
6225     return LHSTy;
6226   }
6227   if (RHSTy->isObjCClassType() &&
6228       (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) {
6229     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
6230     return RHSTy;
6231   }
6232   // And the same for struct objc_object* / id
6233   if (LHSTy->isObjCIdType() &&
6234       (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) {
6235     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
6236     return LHSTy;
6237   }
6238   if (RHSTy->isObjCIdType() &&
6239       (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) {
6240     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
6241     return RHSTy;
6242   }
6243   // And the same for struct objc_selector* / SEL
6244   if (Context.isObjCSelType(LHSTy) &&
6245       (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) {
6246     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast);
6247     return LHSTy;
6248   }
6249   if (Context.isObjCSelType(RHSTy) &&
6250       (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) {
6251     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast);
6252     return RHSTy;
6253   }
6254   // Check constraints for Objective-C object pointers types.
6255   if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
6256 
6257     if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
6258       // Two identical object pointer types are always compatible.
6259       return LHSTy;
6260     }
6261     const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>();
6262     const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>();
6263     QualType compositeType = LHSTy;
6264 
6265     // If both operands are interfaces and either operand can be
6266     // assigned to the other, use that type as the composite
6267     // type. This allows
6268     //   xxx ? (A*) a : (B*) b
6269     // where B is a subclass of A.
6270     //
6271     // Additionally, as for assignment, if either type is 'id'
6272     // allow silent coercion. Finally, if the types are
6273     // incompatible then make sure to use 'id' as the composite
6274     // type so the result is acceptable for sending messages to.
6275 
6276     // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
6277     // It could return the composite type.
6278     if (!(compositeType =
6279           Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) {
6280       // Nothing more to do.
6281     } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
6282       compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
6283     } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
6284       compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
6285     } else if ((LHSTy->isObjCQualifiedIdType() ||
6286                 RHSTy->isObjCQualifiedIdType()) &&
6287                Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
6288       // Need to handle "id<xx>" explicitly.
6289       // GCC allows qualified id and any Objective-C type to devolve to
6290       // id. Currently localizing to here until clear this should be
6291       // part of ObjCQualifiedIdTypesAreCompatible.
6292       compositeType = Context.getObjCIdType();
6293     } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
6294       compositeType = Context.getObjCIdType();
6295     } else {
6296       Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
6297       << LHSTy << RHSTy
6298       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6299       QualType incompatTy = Context.getObjCIdType();
6300       LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
6301       RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
6302       return incompatTy;
6303     }
6304     // The object pointer types are compatible.
6305     LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast);
6306     RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast);
6307     return compositeType;
6308   }
6309   // Check Objective-C object pointer types and 'void *'
6310   if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
6311     if (getLangOpts().ObjCAutoRefCount) {
6312       // ARC forbids the implicit conversion of object pointers to 'void *',
6313       // so these types are not compatible.
6314       Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
6315           << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6316       LHS = RHS = true;
6317       return QualType();
6318     }
6319     QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
6320     QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
6321     QualType destPointee
6322     = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
6323     QualType destType = Context.getPointerType(destPointee);
6324     // Add qualifiers if necessary.
6325     LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp);
6326     // Promote to void*.
6327     RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast);
6328     return destType;
6329   }
6330   if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
6331     if (getLangOpts().ObjCAutoRefCount) {
6332       // ARC forbids the implicit conversion of object pointers to 'void *',
6333       // so these types are not compatible.
6334       Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
6335           << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6336       LHS = RHS = true;
6337       return QualType();
6338     }
6339     QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
6340     QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
6341     QualType destPointee
6342     = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
6343     QualType destType = Context.getPointerType(destPointee);
6344     // Add qualifiers if necessary.
6345     RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp);
6346     // Promote to void*.
6347     LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast);
6348     return destType;
6349   }
6350   return QualType();
6351 }
6352 
6353 /// SuggestParentheses - Emit a note with a fixit hint that wraps
6354 /// ParenRange in parentheses.
6355 static void SuggestParentheses(Sema &Self, SourceLocation Loc,
6356                                const PartialDiagnostic &Note,
6357                                SourceRange ParenRange) {
6358   SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd());
6359   if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() &&
6360       EndLoc.isValid()) {
6361     Self.Diag(Loc, Note)
6362       << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
6363       << FixItHint::CreateInsertion(EndLoc, ")");
6364   } else {
6365     // We can't display the parentheses, so just show the bare note.
6366     Self.Diag(Loc, Note) << ParenRange;
6367   }
6368 }
6369 
6370 static bool IsArithmeticOp(BinaryOperatorKind Opc) {
6371   return Opc >= BO_Mul && Opc <= BO_Shr;
6372 }
6373 
6374 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary
6375 /// expression, either using a built-in or overloaded operator,
6376 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side
6377 /// expression.
6378 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode,
6379                                    Expr **RHSExprs) {
6380   // Don't strip parenthesis: we should not warn if E is in parenthesis.
6381   E = E->IgnoreImpCasts();
6382   E = E->IgnoreConversionOperator();
6383   E = E->IgnoreImpCasts();
6384 
6385   // Built-in binary operator.
6386   if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) {
6387     if (IsArithmeticOp(OP->getOpcode())) {
6388       *Opcode = OP->getOpcode();
6389       *RHSExprs = OP->getRHS();
6390       return true;
6391     }
6392   }
6393 
6394   // Overloaded operator.
6395   if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) {
6396     if (Call->getNumArgs() != 2)
6397       return false;
6398 
6399     // Make sure this is really a binary operator that is safe to pass into
6400     // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op.
6401     OverloadedOperatorKind OO = Call->getOperator();
6402     if (OO < OO_Plus || OO > OO_Arrow ||
6403         OO == OO_PlusPlus || OO == OO_MinusMinus)
6404       return false;
6405 
6406     BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO);
6407     if (IsArithmeticOp(OpKind)) {
6408       *Opcode = OpKind;
6409       *RHSExprs = Call->getArg(1);
6410       return true;
6411     }
6412   }
6413 
6414   return false;
6415 }
6416 
6417 static bool IsLogicOp(BinaryOperatorKind Opc) {
6418   return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr);
6419 }
6420 
6421 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type
6422 /// or is a logical expression such as (x==y) which has int type, but is
6423 /// commonly interpreted as boolean.
6424 static bool ExprLooksBoolean(Expr *E) {
6425   E = E->IgnoreParenImpCasts();
6426 
6427   if (E->getType()->isBooleanType())
6428     return true;
6429   if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E))
6430     return IsLogicOp(OP->getOpcode());
6431   if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E))
6432     return OP->getOpcode() == UO_LNot;
6433   if (E->getType()->isPointerType())
6434     return true;
6435 
6436   return false;
6437 }
6438 
6439 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator
6440 /// and binary operator are mixed in a way that suggests the programmer assumed
6441 /// the conditional operator has higher precedence, for example:
6442 /// "int x = a + someBinaryCondition ? 1 : 2".
6443 static void DiagnoseConditionalPrecedence(Sema &Self,
6444                                           SourceLocation OpLoc,
6445                                           Expr *Condition,
6446                                           Expr *LHSExpr,
6447                                           Expr *RHSExpr) {
6448   BinaryOperatorKind CondOpcode;
6449   Expr *CondRHS;
6450 
6451   if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS))
6452     return;
6453   if (!ExprLooksBoolean(CondRHS))
6454     return;
6455 
6456   // The condition is an arithmetic binary expression, with a right-
6457   // hand side that looks boolean, so warn.
6458 
6459   Self.Diag(OpLoc, diag::warn_precedence_conditional)
6460       << Condition->getSourceRange()
6461       << BinaryOperator::getOpcodeStr(CondOpcode);
6462 
6463   SuggestParentheses(Self, OpLoc,
6464     Self.PDiag(diag::note_precedence_silence)
6465       << BinaryOperator::getOpcodeStr(CondOpcode),
6466     SourceRange(Condition->getLocStart(), Condition->getLocEnd()));
6467 
6468   SuggestParentheses(Self, OpLoc,
6469     Self.PDiag(diag::note_precedence_conditional_first),
6470     SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd()));
6471 }
6472 
6473 /// ActOnConditionalOp - Parse a ?: operation.  Note that 'LHS' may be null
6474 /// in the case of a the GNU conditional expr extension.
6475 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
6476                                     SourceLocation ColonLoc,
6477                                     Expr *CondExpr, Expr *LHSExpr,
6478                                     Expr *RHSExpr) {
6479   if (!getLangOpts().CPlusPlus) {
6480     // C cannot handle TypoExpr nodes in the condition because it
6481     // doesn't handle dependent types properly, so make sure any TypoExprs have
6482     // been dealt with before checking the operands.
6483     ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr);
6484     if (!CondResult.isUsable()) return ExprError();
6485     CondExpr = CondResult.get();
6486   }
6487 
6488   // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
6489   // was the condition.
6490   OpaqueValueExpr *opaqueValue = nullptr;
6491   Expr *commonExpr = nullptr;
6492   if (!LHSExpr) {
6493     commonExpr = CondExpr;
6494     // Lower out placeholder types first.  This is important so that we don't
6495     // try to capture a placeholder. This happens in few cases in C++; such
6496     // as Objective-C++'s dictionary subscripting syntax.
6497     if (commonExpr->hasPlaceholderType()) {
6498       ExprResult result = CheckPlaceholderExpr(commonExpr);
6499       if (!result.isUsable()) return ExprError();
6500       commonExpr = result.get();
6501     }
6502     // We usually want to apply unary conversions *before* saving, except
6503     // in the special case of a C++ l-value conditional.
6504     if (!(getLangOpts().CPlusPlus
6505           && !commonExpr->isTypeDependent()
6506           && commonExpr->getValueKind() == RHSExpr->getValueKind()
6507           && commonExpr->isGLValue()
6508           && commonExpr->isOrdinaryOrBitFieldObject()
6509           && RHSExpr->isOrdinaryOrBitFieldObject()
6510           && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) {
6511       ExprResult commonRes = UsualUnaryConversions(commonExpr);
6512       if (commonRes.isInvalid())
6513         return ExprError();
6514       commonExpr = commonRes.get();
6515     }
6516 
6517     opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(),
6518                                                 commonExpr->getType(),
6519                                                 commonExpr->getValueKind(),
6520                                                 commonExpr->getObjectKind(),
6521                                                 commonExpr);
6522     LHSExpr = CondExpr = opaqueValue;
6523   }
6524 
6525   ExprValueKind VK = VK_RValue;
6526   ExprObjectKind OK = OK_Ordinary;
6527   ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr;
6528   QualType result = CheckConditionalOperands(Cond, LHS, RHS,
6529                                              VK, OK, QuestionLoc);
6530   if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() ||
6531       RHS.isInvalid())
6532     return ExprError();
6533 
6534   DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(),
6535                                 RHS.get());
6536 
6537   CheckBoolLikeConversion(Cond.get(), QuestionLoc);
6538 
6539   if (!commonExpr)
6540     return new (Context)
6541         ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc,
6542                             RHS.get(), result, VK, OK);
6543 
6544   return new (Context) BinaryConditionalOperator(
6545       commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc,
6546       ColonLoc, result, VK, OK);
6547 }
6548 
6549 // checkPointerTypesForAssignment - This is a very tricky routine (despite
6550 // being closely modeled after the C99 spec:-). The odd characteristic of this
6551 // routine is it effectively iqnores the qualifiers on the top level pointee.
6552 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
6553 // FIXME: add a couple examples in this comment.
6554 static Sema::AssignConvertType
6555 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) {
6556   assert(LHSType.isCanonical() && "LHS not canonicalized!");
6557   assert(RHSType.isCanonical() && "RHS not canonicalized!");
6558 
6559   // get the "pointed to" type (ignoring qualifiers at the top level)
6560   const Type *lhptee, *rhptee;
6561   Qualifiers lhq, rhq;
6562   std::tie(lhptee, lhq) =
6563       cast<PointerType>(LHSType)->getPointeeType().split().asPair();
6564   std::tie(rhptee, rhq) =
6565       cast<PointerType>(RHSType)->getPointeeType().split().asPair();
6566 
6567   Sema::AssignConvertType ConvTy = Sema::Compatible;
6568 
6569   // C99 6.5.16.1p1: This following citation is common to constraints
6570   // 3 & 4 (below). ...and the type *pointed to* by the left has all the
6571   // qualifiers of the type *pointed to* by the right;
6572 
6573   // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay.
6574   if (lhq.getObjCLifetime() != rhq.getObjCLifetime() &&
6575       lhq.compatiblyIncludesObjCLifetime(rhq)) {
6576     // Ignore lifetime for further calculation.
6577     lhq.removeObjCLifetime();
6578     rhq.removeObjCLifetime();
6579   }
6580 
6581   if (!lhq.compatiblyIncludes(rhq)) {
6582     // Treat address-space mismatches as fatal.  TODO: address subspaces
6583     if (!lhq.isAddressSpaceSupersetOf(rhq))
6584       ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
6585 
6586     // It's okay to add or remove GC or lifetime qualifiers when converting to
6587     // and from void*.
6588     else if (lhq.withoutObjCGCAttr().withoutObjCLifetime()
6589                         .compatiblyIncludes(
6590                                 rhq.withoutObjCGCAttr().withoutObjCLifetime())
6591              && (lhptee->isVoidType() || rhptee->isVoidType()))
6592       ; // keep old
6593 
6594     // Treat lifetime mismatches as fatal.
6595     else if (lhq.getObjCLifetime() != rhq.getObjCLifetime())
6596       ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
6597 
6598     // For GCC compatibility, other qualifier mismatches are treated
6599     // as still compatible in C.
6600     else ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
6601   }
6602 
6603   // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
6604   // incomplete type and the other is a pointer to a qualified or unqualified
6605   // version of void...
6606   if (lhptee->isVoidType()) {
6607     if (rhptee->isIncompleteOrObjectType())
6608       return ConvTy;
6609 
6610     // As an extension, we allow cast to/from void* to function pointer.
6611     assert(rhptee->isFunctionType());
6612     return Sema::FunctionVoidPointer;
6613   }
6614 
6615   if (rhptee->isVoidType()) {
6616     if (lhptee->isIncompleteOrObjectType())
6617       return ConvTy;
6618 
6619     // As an extension, we allow cast to/from void* to function pointer.
6620     assert(lhptee->isFunctionType());
6621     return Sema::FunctionVoidPointer;
6622   }
6623 
6624   // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
6625   // unqualified versions of compatible types, ...
6626   QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0);
6627   if (!S.Context.typesAreCompatible(ltrans, rtrans)) {
6628     // Check if the pointee types are compatible ignoring the sign.
6629     // We explicitly check for char so that we catch "char" vs
6630     // "unsigned char" on systems where "char" is unsigned.
6631     if (lhptee->isCharType())
6632       ltrans = S.Context.UnsignedCharTy;
6633     else if (lhptee->hasSignedIntegerRepresentation())
6634       ltrans = S.Context.getCorrespondingUnsignedType(ltrans);
6635 
6636     if (rhptee->isCharType())
6637       rtrans = S.Context.UnsignedCharTy;
6638     else if (rhptee->hasSignedIntegerRepresentation())
6639       rtrans = S.Context.getCorrespondingUnsignedType(rtrans);
6640 
6641     if (ltrans == rtrans) {
6642       // Types are compatible ignoring the sign. Qualifier incompatibility
6643       // takes priority over sign incompatibility because the sign
6644       // warning can be disabled.
6645       if (ConvTy != Sema::Compatible)
6646         return ConvTy;
6647 
6648       return Sema::IncompatiblePointerSign;
6649     }
6650 
6651     // If we are a multi-level pointer, it's possible that our issue is simply
6652     // one of qualification - e.g. char ** -> const char ** is not allowed. If
6653     // the eventual target type is the same and the pointers have the same
6654     // level of indirection, this must be the issue.
6655     if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) {
6656       do {
6657         lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr();
6658         rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr();
6659       } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee));
6660 
6661       if (lhptee == rhptee)
6662         return Sema::IncompatibleNestedPointerQualifiers;
6663     }
6664 
6665     // General pointer incompatibility takes priority over qualifiers.
6666     return Sema::IncompatiblePointer;
6667   }
6668   if (!S.getLangOpts().CPlusPlus &&
6669       S.IsNoReturnConversion(ltrans, rtrans, ltrans))
6670     return Sema::IncompatiblePointer;
6671   return ConvTy;
6672 }
6673 
6674 /// checkBlockPointerTypesForAssignment - This routine determines whether two
6675 /// block pointer types are compatible or whether a block and normal pointer
6676 /// are compatible. It is more restrict than comparing two function pointer
6677 // types.
6678 static Sema::AssignConvertType
6679 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType,
6680                                     QualType RHSType) {
6681   assert(LHSType.isCanonical() && "LHS not canonicalized!");
6682   assert(RHSType.isCanonical() && "RHS not canonicalized!");
6683 
6684   QualType lhptee, rhptee;
6685 
6686   // get the "pointed to" type (ignoring qualifiers at the top level)
6687   lhptee = cast<BlockPointerType>(LHSType)->getPointeeType();
6688   rhptee = cast<BlockPointerType>(RHSType)->getPointeeType();
6689 
6690   // In C++, the types have to match exactly.
6691   if (S.getLangOpts().CPlusPlus)
6692     return Sema::IncompatibleBlockPointer;
6693 
6694   Sema::AssignConvertType ConvTy = Sema::Compatible;
6695 
6696   // For blocks we enforce that qualifiers are identical.
6697   if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers())
6698     ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
6699 
6700   if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType))
6701     return Sema::IncompatibleBlockPointer;
6702 
6703   return ConvTy;
6704 }
6705 
6706 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types
6707 /// for assignment compatibility.
6708 static Sema::AssignConvertType
6709 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType,
6710                                    QualType RHSType) {
6711   assert(LHSType.isCanonical() && "LHS was not canonicalized!");
6712   assert(RHSType.isCanonical() && "RHS was not canonicalized!");
6713 
6714   if (LHSType->isObjCBuiltinType()) {
6715     // Class is not compatible with ObjC object pointers.
6716     if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() &&
6717         !RHSType->isObjCQualifiedClassType())
6718       return Sema::IncompatiblePointer;
6719     return Sema::Compatible;
6720   }
6721   if (RHSType->isObjCBuiltinType()) {
6722     if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() &&
6723         !LHSType->isObjCQualifiedClassType())
6724       return Sema::IncompatiblePointer;
6725     return Sema::Compatible;
6726   }
6727   QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
6728   QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
6729 
6730   if (!lhptee.isAtLeastAsQualifiedAs(rhptee) &&
6731       // make an exception for id<P>
6732       !LHSType->isObjCQualifiedIdType())
6733     return Sema::CompatiblePointerDiscardsQualifiers;
6734 
6735   if (S.Context.typesAreCompatible(LHSType, RHSType))
6736     return Sema::Compatible;
6737   if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType())
6738     return Sema::IncompatibleObjCQualifiedId;
6739   return Sema::IncompatiblePointer;
6740 }
6741 
6742 Sema::AssignConvertType
6743 Sema::CheckAssignmentConstraints(SourceLocation Loc,
6744                                  QualType LHSType, QualType RHSType) {
6745   // Fake up an opaque expression.  We don't actually care about what
6746   // cast operations are required, so if CheckAssignmentConstraints
6747   // adds casts to this they'll be wasted, but fortunately that doesn't
6748   // usually happen on valid code.
6749   OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue);
6750   ExprResult RHSPtr = &RHSExpr;
6751   CastKind K = CK_Invalid;
6752 
6753   return CheckAssignmentConstraints(LHSType, RHSPtr, K);
6754 }
6755 
6756 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
6757 /// has code to accommodate several GCC extensions when type checking
6758 /// pointers. Here are some objectionable examples that GCC considers warnings:
6759 ///
6760 ///  int a, *pint;
6761 ///  short *pshort;
6762 ///  struct foo *pfoo;
6763 ///
6764 ///  pint = pshort; // warning: assignment from incompatible pointer type
6765 ///  a = pint; // warning: assignment makes integer from pointer without a cast
6766 ///  pint = a; // warning: assignment makes pointer from integer without a cast
6767 ///  pint = pfoo; // warning: assignment from incompatible pointer type
6768 ///
6769 /// As a result, the code for dealing with pointers is more complex than the
6770 /// C99 spec dictates.
6771 ///
6772 /// Sets 'Kind' for any result kind except Incompatible.
6773 Sema::AssignConvertType
6774 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS,
6775                                  CastKind &Kind) {
6776   QualType RHSType = RHS.get()->getType();
6777   QualType OrigLHSType = LHSType;
6778 
6779   // Get canonical types.  We're not formatting these types, just comparing
6780   // them.
6781   LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType();
6782   RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType();
6783 
6784   // Common case: no conversion required.
6785   if (LHSType == RHSType) {
6786     Kind = CK_NoOp;
6787     return Compatible;
6788   }
6789 
6790   // If we have an atomic type, try a non-atomic assignment, then just add an
6791   // atomic qualification step.
6792   if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) {
6793     Sema::AssignConvertType result =
6794       CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind);
6795     if (result != Compatible)
6796       return result;
6797     if (Kind != CK_NoOp)
6798       RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind);
6799     Kind = CK_NonAtomicToAtomic;
6800     return Compatible;
6801   }
6802 
6803   // If the left-hand side is a reference type, then we are in a
6804   // (rare!) case where we've allowed the use of references in C,
6805   // e.g., as a parameter type in a built-in function. In this case,
6806   // just make sure that the type referenced is compatible with the
6807   // right-hand side type. The caller is responsible for adjusting
6808   // LHSType so that the resulting expression does not have reference
6809   // type.
6810   if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) {
6811     if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) {
6812       Kind = CK_LValueBitCast;
6813       return Compatible;
6814     }
6815     return Incompatible;
6816   }
6817 
6818   // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
6819   // to the same ExtVector type.
6820   if (LHSType->isExtVectorType()) {
6821     if (RHSType->isExtVectorType())
6822       return Incompatible;
6823     if (RHSType->isArithmeticType()) {
6824       // CK_VectorSplat does T -> vector T, so first cast to the
6825       // element type.
6826       QualType elType = cast<ExtVectorType>(LHSType)->getElementType();
6827       if (elType != RHSType) {
6828         Kind = PrepareScalarCast(RHS, elType);
6829         RHS = ImpCastExprToType(RHS.get(), elType, Kind);
6830       }
6831       Kind = CK_VectorSplat;
6832       return Compatible;
6833     }
6834   }
6835 
6836   // Conversions to or from vector type.
6837   if (LHSType->isVectorType() || RHSType->isVectorType()) {
6838     if (LHSType->isVectorType() && RHSType->isVectorType()) {
6839       // Allow assignments of an AltiVec vector type to an equivalent GCC
6840       // vector type and vice versa
6841       if (Context.areCompatibleVectorTypes(LHSType, RHSType)) {
6842         Kind = CK_BitCast;
6843         return Compatible;
6844       }
6845 
6846       // If we are allowing lax vector conversions, and LHS and RHS are both
6847       // vectors, the total size only needs to be the same. This is a bitcast;
6848       // no bits are changed but the result type is different.
6849       if (isLaxVectorConversion(RHSType, LHSType)) {
6850         Kind = CK_BitCast;
6851         return IncompatibleVectors;
6852       }
6853     }
6854     return Incompatible;
6855   }
6856 
6857   // Arithmetic conversions.
6858   if (LHSType->isArithmeticType() && RHSType->isArithmeticType() &&
6859       !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) {
6860     Kind = PrepareScalarCast(RHS, LHSType);
6861     return Compatible;
6862   }
6863 
6864   // Conversions to normal pointers.
6865   if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) {
6866     // U* -> T*
6867     if (isa<PointerType>(RHSType)) {
6868       unsigned AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace();
6869       unsigned AddrSpaceR = RHSType->getPointeeType().getAddressSpace();
6870       Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
6871       return checkPointerTypesForAssignment(*this, LHSType, RHSType);
6872     }
6873 
6874     // int -> T*
6875     if (RHSType->isIntegerType()) {
6876       Kind = CK_IntegralToPointer; // FIXME: null?
6877       return IntToPointer;
6878     }
6879 
6880     // C pointers are not compatible with ObjC object pointers,
6881     // with two exceptions:
6882     if (isa<ObjCObjectPointerType>(RHSType)) {
6883       //  - conversions to void*
6884       if (LHSPointer->getPointeeType()->isVoidType()) {
6885         Kind = CK_BitCast;
6886         return Compatible;
6887       }
6888 
6889       //  - conversions from 'Class' to the redefinition type
6890       if (RHSType->isObjCClassType() &&
6891           Context.hasSameType(LHSType,
6892                               Context.getObjCClassRedefinitionType())) {
6893         Kind = CK_BitCast;
6894         return Compatible;
6895       }
6896 
6897       Kind = CK_BitCast;
6898       return IncompatiblePointer;
6899     }
6900 
6901     // U^ -> void*
6902     if (RHSType->getAs<BlockPointerType>()) {
6903       if (LHSPointer->getPointeeType()->isVoidType()) {
6904         Kind = CK_BitCast;
6905         return Compatible;
6906       }
6907     }
6908 
6909     return Incompatible;
6910   }
6911 
6912   // Conversions to block pointers.
6913   if (isa<BlockPointerType>(LHSType)) {
6914     // U^ -> T^
6915     if (RHSType->isBlockPointerType()) {
6916       Kind = CK_BitCast;
6917       return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType);
6918     }
6919 
6920     // int or null -> T^
6921     if (RHSType->isIntegerType()) {
6922       Kind = CK_IntegralToPointer; // FIXME: null
6923       return IntToBlockPointer;
6924     }
6925 
6926     // id -> T^
6927     if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) {
6928       Kind = CK_AnyPointerToBlockPointerCast;
6929       return Compatible;
6930     }
6931 
6932     // void* -> T^
6933     if (const PointerType *RHSPT = RHSType->getAs<PointerType>())
6934       if (RHSPT->getPointeeType()->isVoidType()) {
6935         Kind = CK_AnyPointerToBlockPointerCast;
6936         return Compatible;
6937       }
6938 
6939     return Incompatible;
6940   }
6941 
6942   // Conversions to Objective-C pointers.
6943   if (isa<ObjCObjectPointerType>(LHSType)) {
6944     // A* -> B*
6945     if (RHSType->isObjCObjectPointerType()) {
6946       Kind = CK_BitCast;
6947       Sema::AssignConvertType result =
6948         checkObjCPointerTypesForAssignment(*this, LHSType, RHSType);
6949       if (getLangOpts().ObjCAutoRefCount &&
6950           result == Compatible &&
6951           !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType))
6952         result = IncompatibleObjCWeakRef;
6953       return result;
6954     }
6955 
6956     // int or null -> A*
6957     if (RHSType->isIntegerType()) {
6958       Kind = CK_IntegralToPointer; // FIXME: null
6959       return IntToPointer;
6960     }
6961 
6962     // In general, C pointers are not compatible with ObjC object pointers,
6963     // with two exceptions:
6964     if (isa<PointerType>(RHSType)) {
6965       Kind = CK_CPointerToObjCPointerCast;
6966 
6967       //  - conversions from 'void*'
6968       if (RHSType->isVoidPointerType()) {
6969         return Compatible;
6970       }
6971 
6972       //  - conversions to 'Class' from its redefinition type
6973       if (LHSType->isObjCClassType() &&
6974           Context.hasSameType(RHSType,
6975                               Context.getObjCClassRedefinitionType())) {
6976         return Compatible;
6977       }
6978 
6979       return IncompatiblePointer;
6980     }
6981 
6982     // Only under strict condition T^ is compatible with an Objective-C pointer.
6983     if (RHSType->isBlockPointerType() &&
6984         LHSType->isBlockCompatibleObjCPointerType(Context)) {
6985       maybeExtendBlockObject(RHS);
6986       Kind = CK_BlockPointerToObjCPointerCast;
6987       return Compatible;
6988     }
6989 
6990     return Incompatible;
6991   }
6992 
6993   // Conversions from pointers that are not covered by the above.
6994   if (isa<PointerType>(RHSType)) {
6995     // T* -> _Bool
6996     if (LHSType == Context.BoolTy) {
6997       Kind = CK_PointerToBoolean;
6998       return Compatible;
6999     }
7000 
7001     // T* -> int
7002     if (LHSType->isIntegerType()) {
7003       Kind = CK_PointerToIntegral;
7004       return PointerToInt;
7005     }
7006 
7007     return Incompatible;
7008   }
7009 
7010   // Conversions from Objective-C pointers that are not covered by the above.
7011   if (isa<ObjCObjectPointerType>(RHSType)) {
7012     // T* -> _Bool
7013     if (LHSType == Context.BoolTy) {
7014       Kind = CK_PointerToBoolean;
7015       return Compatible;
7016     }
7017 
7018     // T* -> int
7019     if (LHSType->isIntegerType()) {
7020       Kind = CK_PointerToIntegral;
7021       return PointerToInt;
7022     }
7023 
7024     return Incompatible;
7025   }
7026 
7027   // struct A -> struct B
7028   if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) {
7029     if (Context.typesAreCompatible(LHSType, RHSType)) {
7030       Kind = CK_NoOp;
7031       return Compatible;
7032     }
7033   }
7034 
7035   return Incompatible;
7036 }
7037 
7038 /// \brief Constructs a transparent union from an expression that is
7039 /// used to initialize the transparent union.
7040 static void ConstructTransparentUnion(Sema &S, ASTContext &C,
7041                                       ExprResult &EResult, QualType UnionType,
7042                                       FieldDecl *Field) {
7043   // Build an initializer list that designates the appropriate member
7044   // of the transparent union.
7045   Expr *E = EResult.get();
7046   InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(),
7047                                                    E, SourceLocation());
7048   Initializer->setType(UnionType);
7049   Initializer->setInitializedFieldInUnion(Field);
7050 
7051   // Build a compound literal constructing a value of the transparent
7052   // union type from this initializer list.
7053   TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType);
7054   EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType,
7055                                         VK_RValue, Initializer, false);
7056 }
7057 
7058 Sema::AssignConvertType
7059 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType,
7060                                                ExprResult &RHS) {
7061   QualType RHSType = RHS.get()->getType();
7062 
7063   // If the ArgType is a Union type, we want to handle a potential
7064   // transparent_union GCC extension.
7065   const RecordType *UT = ArgType->getAsUnionType();
7066   if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
7067     return Incompatible;
7068 
7069   // The field to initialize within the transparent union.
7070   RecordDecl *UD = UT->getDecl();
7071   FieldDecl *InitField = nullptr;
7072   // It's compatible if the expression matches any of the fields.
7073   for (auto *it : UD->fields()) {
7074     if (it->getType()->isPointerType()) {
7075       // If the transparent union contains a pointer type, we allow:
7076       // 1) void pointer
7077       // 2) null pointer constant
7078       if (RHSType->isPointerType())
7079         if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) {
7080           RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast);
7081           InitField = it;
7082           break;
7083         }
7084 
7085       if (RHS.get()->isNullPointerConstant(Context,
7086                                            Expr::NPC_ValueDependentIsNull)) {
7087         RHS = ImpCastExprToType(RHS.get(), it->getType(),
7088                                 CK_NullToPointer);
7089         InitField = it;
7090         break;
7091       }
7092     }
7093 
7094     CastKind Kind = CK_Invalid;
7095     if (CheckAssignmentConstraints(it->getType(), RHS, Kind)
7096           == Compatible) {
7097       RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind);
7098       InitField = it;
7099       break;
7100     }
7101   }
7102 
7103   if (!InitField)
7104     return Incompatible;
7105 
7106   ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField);
7107   return Compatible;
7108 }
7109 
7110 Sema::AssignConvertType
7111 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS,
7112                                        bool Diagnose,
7113                                        bool DiagnoseCFAudited) {
7114   if (getLangOpts().CPlusPlus) {
7115     if (!LHSType->isRecordType() && !LHSType->isAtomicType()) {
7116       // C++ 5.17p3: If the left operand is not of class type, the
7117       // expression is implicitly converted (C++ 4) to the
7118       // cv-unqualified type of the left operand.
7119       ExprResult Res;
7120       if (Diagnose) {
7121         Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7122                                         AA_Assigning);
7123       } else {
7124         ImplicitConversionSequence ICS =
7125             TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7126                                   /*SuppressUserConversions=*/false,
7127                                   /*AllowExplicit=*/false,
7128                                   /*InOverloadResolution=*/false,
7129                                   /*CStyle=*/false,
7130                                   /*AllowObjCWritebackConversion=*/false);
7131         if (ICS.isFailure())
7132           return Incompatible;
7133         Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7134                                         ICS, AA_Assigning);
7135       }
7136       if (Res.isInvalid())
7137         return Incompatible;
7138       Sema::AssignConvertType result = Compatible;
7139       if (getLangOpts().ObjCAutoRefCount &&
7140           !CheckObjCARCUnavailableWeakConversion(LHSType,
7141                                                  RHS.get()->getType()))
7142         result = IncompatibleObjCWeakRef;
7143       RHS = Res;
7144       return result;
7145     }
7146 
7147     // FIXME: Currently, we fall through and treat C++ classes like C
7148     // structures.
7149     // FIXME: We also fall through for atomics; not sure what should
7150     // happen there, though.
7151   }
7152 
7153   // C99 6.5.16.1p1: the left operand is a pointer and the right is
7154   // a null pointer constant.
7155   if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() ||
7156        LHSType->isBlockPointerType()) &&
7157       RHS.get()->isNullPointerConstant(Context,
7158                                        Expr::NPC_ValueDependentIsNull)) {
7159     CastKind Kind;
7160     CXXCastPath Path;
7161     CheckPointerConversion(RHS.get(), LHSType, Kind, Path, false);
7162     RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_RValue, &Path);
7163     return Compatible;
7164   }
7165 
7166   // This check seems unnatural, however it is necessary to ensure the proper
7167   // conversion of functions/arrays. If the conversion were done for all
7168   // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
7169   // expressions that suppress this implicit conversion (&, sizeof).
7170   //
7171   // Suppress this for references: C++ 8.5.3p5.
7172   if (!LHSType->isReferenceType()) {
7173     RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
7174     if (RHS.isInvalid())
7175       return Incompatible;
7176   }
7177 
7178   Expr *PRE = RHS.get()->IgnoreParenCasts();
7179   if (ObjCProtocolExpr *OPE = dyn_cast<ObjCProtocolExpr>(PRE)) {
7180     ObjCProtocolDecl *PDecl = OPE->getProtocol();
7181     if (PDecl && !PDecl->hasDefinition()) {
7182       Diag(PRE->getExprLoc(), diag::warn_atprotocol_protocol) << PDecl->getName();
7183       Diag(PDecl->getLocation(), diag::note_entity_declared_at) << PDecl;
7184     }
7185   }
7186 
7187   CastKind Kind = CK_Invalid;
7188   Sema::AssignConvertType result =
7189     CheckAssignmentConstraints(LHSType, RHS, Kind);
7190 
7191   // C99 6.5.16.1p2: The value of the right operand is converted to the
7192   // type of the assignment expression.
7193   // CheckAssignmentConstraints allows the left-hand side to be a reference,
7194   // so that we can use references in built-in functions even in C.
7195   // The getNonReferenceType() call makes sure that the resulting expression
7196   // does not have reference type.
7197   if (result != Incompatible && RHS.get()->getType() != LHSType) {
7198     QualType Ty = LHSType.getNonLValueExprType(Context);
7199     Expr *E = RHS.get();
7200     if (getLangOpts().ObjCAutoRefCount)
7201       CheckObjCARCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion,
7202                              DiagnoseCFAudited);
7203     if (getLangOpts().ObjC1 &&
7204         (CheckObjCBridgeRelatedConversions(E->getLocStart(),
7205                                           LHSType, E->getType(), E) ||
7206          ConversionToObjCStringLiteralCheck(LHSType, E))) {
7207       RHS = E;
7208       return Compatible;
7209     }
7210 
7211     RHS = ImpCastExprToType(E, Ty, Kind);
7212   }
7213   return result;
7214 }
7215 
7216 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS,
7217                                ExprResult &RHS) {
7218   Diag(Loc, diag::err_typecheck_invalid_operands)
7219     << LHS.get()->getType() << RHS.get()->getType()
7220     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7221   return QualType();
7222 }
7223 
7224 /// Try to convert a value of non-vector type to a vector type by converting
7225 /// the type to the element type of the vector and then performing a splat.
7226 /// If the language is OpenCL, we only use conversions that promote scalar
7227 /// rank; for C, Obj-C, and C++ we allow any real scalar conversion except
7228 /// for float->int.
7229 ///
7230 /// \param scalar - if non-null, actually perform the conversions
7231 /// \return true if the operation fails (but without diagnosing the failure)
7232 static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar,
7233                                      QualType scalarTy,
7234                                      QualType vectorEltTy,
7235                                      QualType vectorTy) {
7236   // The conversion to apply to the scalar before splatting it,
7237   // if necessary.
7238   CastKind scalarCast = CK_Invalid;
7239 
7240   if (vectorEltTy->isIntegralType(S.Context)) {
7241     if (!scalarTy->isIntegralType(S.Context))
7242       return true;
7243     if (S.getLangOpts().OpenCL &&
7244         S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0)
7245       return true;
7246     scalarCast = CK_IntegralCast;
7247   } else if (vectorEltTy->isRealFloatingType()) {
7248     if (scalarTy->isRealFloatingType()) {
7249       if (S.getLangOpts().OpenCL &&
7250           S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0)
7251         return true;
7252       scalarCast = CK_FloatingCast;
7253     }
7254     else if (scalarTy->isIntegralType(S.Context))
7255       scalarCast = CK_IntegralToFloating;
7256     else
7257       return true;
7258   } else {
7259     return true;
7260   }
7261 
7262   // Adjust scalar if desired.
7263   if (scalar) {
7264     if (scalarCast != CK_Invalid)
7265       *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast);
7266     *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat);
7267   }
7268   return false;
7269 }
7270 
7271 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS,
7272                                    SourceLocation Loc, bool IsCompAssign,
7273                                    bool AllowBothBool,
7274                                    bool AllowBoolConversions) {
7275   if (!IsCompAssign) {
7276     LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
7277     if (LHS.isInvalid())
7278       return QualType();
7279   }
7280   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
7281   if (RHS.isInvalid())
7282     return QualType();
7283 
7284   // For conversion purposes, we ignore any qualifiers.
7285   // For example, "const float" and "float" are equivalent.
7286   QualType LHSType = LHS.get()->getType().getUnqualifiedType();
7287   QualType RHSType = RHS.get()->getType().getUnqualifiedType();
7288 
7289   const VectorType *LHSVecType = LHSType->getAs<VectorType>();
7290   const VectorType *RHSVecType = RHSType->getAs<VectorType>();
7291   assert(LHSVecType || RHSVecType);
7292 
7293   // AltiVec-style "vector bool op vector bool" combinations are allowed
7294   // for some operators but not others.
7295   if (!AllowBothBool &&
7296       LHSVecType && LHSVecType->getVectorKind() == VectorType::AltiVecBool &&
7297       RHSVecType && RHSVecType->getVectorKind() == VectorType::AltiVecBool)
7298     return InvalidOperands(Loc, LHS, RHS);
7299 
7300   // If the vector types are identical, return.
7301   if (Context.hasSameType(LHSType, RHSType))
7302     return LHSType;
7303 
7304   // If we have compatible AltiVec and GCC vector types, use the AltiVec type.
7305   if (LHSVecType && RHSVecType &&
7306       Context.areCompatibleVectorTypes(LHSType, RHSType)) {
7307     if (isa<ExtVectorType>(LHSVecType)) {
7308       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
7309       return LHSType;
7310     }
7311 
7312     if (!IsCompAssign)
7313       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
7314     return RHSType;
7315   }
7316 
7317   // AllowBoolConversions says that bool and non-bool AltiVec vectors
7318   // can be mixed, with the result being the non-bool type.  The non-bool
7319   // operand must have integer element type.
7320   if (AllowBoolConversions && LHSVecType && RHSVecType &&
7321       LHSVecType->getNumElements() == RHSVecType->getNumElements() &&
7322       (Context.getTypeSize(LHSVecType->getElementType()) ==
7323        Context.getTypeSize(RHSVecType->getElementType()))) {
7324     if (LHSVecType->getVectorKind() == VectorType::AltiVecVector &&
7325         LHSVecType->getElementType()->isIntegerType() &&
7326         RHSVecType->getVectorKind() == VectorType::AltiVecBool) {
7327       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
7328       return LHSType;
7329     }
7330     if (!IsCompAssign &&
7331         LHSVecType->getVectorKind() == VectorType::AltiVecBool &&
7332         RHSVecType->getVectorKind() == VectorType::AltiVecVector &&
7333         RHSVecType->getElementType()->isIntegerType()) {
7334       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
7335       return RHSType;
7336     }
7337   }
7338 
7339   // If there's an ext-vector type and a scalar, try to convert the scalar to
7340   // the vector element type and splat.
7341   if (!RHSVecType && isa<ExtVectorType>(LHSVecType)) {
7342     if (!tryVectorConvertAndSplat(*this, &RHS, RHSType,
7343                                   LHSVecType->getElementType(), LHSType))
7344       return LHSType;
7345   }
7346   if (!LHSVecType && isa<ExtVectorType>(RHSVecType)) {
7347     if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS),
7348                                   LHSType, RHSVecType->getElementType(),
7349                                   RHSType))
7350       return RHSType;
7351   }
7352 
7353   // If we're allowing lax vector conversions, only the total (data) size
7354   // needs to be the same.
7355   // FIXME: Should we really be allowing this?
7356   // FIXME: We really just pick the LHS type arbitrarily?
7357   if (isLaxVectorConversion(RHSType, LHSType)) {
7358     QualType resultType = LHSType;
7359     RHS = ImpCastExprToType(RHS.get(), resultType, CK_BitCast);
7360     return resultType;
7361   }
7362 
7363   // Okay, the expression is invalid.
7364 
7365   // If there's a non-vector, non-real operand, diagnose that.
7366   if ((!RHSVecType && !RHSType->isRealType()) ||
7367       (!LHSVecType && !LHSType->isRealType())) {
7368     Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar)
7369       << LHSType << RHSType
7370       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7371     return QualType();
7372   }
7373 
7374   // Otherwise, use the generic diagnostic.
7375   Diag(Loc, diag::err_typecheck_vector_not_convertable)
7376     << LHSType << RHSType
7377     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7378   return QualType();
7379 }
7380 
7381 // checkArithmeticNull - Detect when a NULL constant is used improperly in an
7382 // expression.  These are mainly cases where the null pointer is used as an
7383 // integer instead of a pointer.
7384 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS,
7385                                 SourceLocation Loc, bool IsCompare) {
7386   // The canonical way to check for a GNU null is with isNullPointerConstant,
7387   // but we use a bit of a hack here for speed; this is a relatively
7388   // hot path, and isNullPointerConstant is slow.
7389   bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts());
7390   bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts());
7391 
7392   QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType();
7393 
7394   // Avoid analyzing cases where the result will either be invalid (and
7395   // diagnosed as such) or entirely valid and not something to warn about.
7396   if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() ||
7397       NonNullType->isMemberPointerType() || NonNullType->isFunctionType())
7398     return;
7399 
7400   // Comparison operations would not make sense with a null pointer no matter
7401   // what the other expression is.
7402   if (!IsCompare) {
7403     S.Diag(Loc, diag::warn_null_in_arithmetic_operation)
7404         << (LHSNull ? LHS.get()->getSourceRange() : SourceRange())
7405         << (RHSNull ? RHS.get()->getSourceRange() : SourceRange());
7406     return;
7407   }
7408 
7409   // The rest of the operations only make sense with a null pointer
7410   // if the other expression is a pointer.
7411   if (LHSNull == RHSNull || NonNullType->isAnyPointerType() ||
7412       NonNullType->canDecayToPointerType())
7413     return;
7414 
7415   S.Diag(Loc, diag::warn_null_in_comparison_operation)
7416       << LHSNull /* LHS is NULL */ << NonNullType
7417       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7418 }
7419 
7420 static void DiagnoseBadDivideOrRemainderValues(Sema& S, ExprResult &LHS,
7421                                                ExprResult &RHS,
7422                                                SourceLocation Loc, bool IsDiv) {
7423   // Check for division/remainder by zero.
7424   unsigned Diag = (IsDiv) ? diag::warn_division_by_zero :
7425                             diag::warn_remainder_by_zero;
7426   llvm::APSInt RHSValue;
7427   if (!RHS.get()->isValueDependent() &&
7428       RHS.get()->EvaluateAsInt(RHSValue, S.Context) && RHSValue == 0)
7429     S.DiagRuntimeBehavior(Loc, RHS.get(),
7430                           S.PDiag(Diag) << RHS.get()->getSourceRange());
7431 }
7432 
7433 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS,
7434                                            SourceLocation Loc,
7435                                            bool IsCompAssign, bool IsDiv) {
7436   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7437 
7438   if (LHS.get()->getType()->isVectorType() ||
7439       RHS.get()->getType()->isVectorType())
7440     return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
7441                                /*AllowBothBool*/getLangOpts().AltiVec,
7442                                /*AllowBoolConversions*/false);
7443 
7444   QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
7445   if (LHS.isInvalid() || RHS.isInvalid())
7446     return QualType();
7447 
7448 
7449   if (compType.isNull() || !compType->isArithmeticType())
7450     return InvalidOperands(Loc, LHS, RHS);
7451   if (IsDiv)
7452     DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, IsDiv);
7453   return compType;
7454 }
7455 
7456 QualType Sema::CheckRemainderOperands(
7457   ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
7458   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7459 
7460   if (LHS.get()->getType()->isVectorType() ||
7461       RHS.get()->getType()->isVectorType()) {
7462     if (LHS.get()->getType()->hasIntegerRepresentation() &&
7463         RHS.get()->getType()->hasIntegerRepresentation())
7464       return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
7465                                  /*AllowBothBool*/getLangOpts().AltiVec,
7466                                  /*AllowBoolConversions*/false);
7467     return InvalidOperands(Loc, LHS, RHS);
7468   }
7469 
7470   QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
7471   if (LHS.isInvalid() || RHS.isInvalid())
7472     return QualType();
7473 
7474   if (compType.isNull() || !compType->isIntegerType())
7475     return InvalidOperands(Loc, LHS, RHS);
7476   DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, false /* IsDiv */);
7477   return compType;
7478 }
7479 
7480 /// \brief Diagnose invalid arithmetic on two void pointers.
7481 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc,
7482                                                 Expr *LHSExpr, Expr *RHSExpr) {
7483   S.Diag(Loc, S.getLangOpts().CPlusPlus
7484                 ? diag::err_typecheck_pointer_arith_void_type
7485                 : diag::ext_gnu_void_ptr)
7486     << 1 /* two pointers */ << LHSExpr->getSourceRange()
7487                             << RHSExpr->getSourceRange();
7488 }
7489 
7490 /// \brief Diagnose invalid arithmetic on a void pointer.
7491 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc,
7492                                             Expr *Pointer) {
7493   S.Diag(Loc, S.getLangOpts().CPlusPlus
7494                 ? diag::err_typecheck_pointer_arith_void_type
7495                 : diag::ext_gnu_void_ptr)
7496     << 0 /* one pointer */ << Pointer->getSourceRange();
7497 }
7498 
7499 /// \brief Diagnose invalid arithmetic on two function pointers.
7500 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc,
7501                                                     Expr *LHS, Expr *RHS) {
7502   assert(LHS->getType()->isAnyPointerType());
7503   assert(RHS->getType()->isAnyPointerType());
7504   S.Diag(Loc, S.getLangOpts().CPlusPlus
7505                 ? diag::err_typecheck_pointer_arith_function_type
7506                 : diag::ext_gnu_ptr_func_arith)
7507     << 1 /* two pointers */ << LHS->getType()->getPointeeType()
7508     // We only show the second type if it differs from the first.
7509     << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(),
7510                                                    RHS->getType())
7511     << RHS->getType()->getPointeeType()
7512     << LHS->getSourceRange() << RHS->getSourceRange();
7513 }
7514 
7515 /// \brief Diagnose invalid arithmetic on a function pointer.
7516 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc,
7517                                                 Expr *Pointer) {
7518   assert(Pointer->getType()->isAnyPointerType());
7519   S.Diag(Loc, S.getLangOpts().CPlusPlus
7520                 ? diag::err_typecheck_pointer_arith_function_type
7521                 : diag::ext_gnu_ptr_func_arith)
7522     << 0 /* one pointer */ << Pointer->getType()->getPointeeType()
7523     << 0 /* one pointer, so only one type */
7524     << Pointer->getSourceRange();
7525 }
7526 
7527 /// \brief Emit error if Operand is incomplete pointer type
7528 ///
7529 /// \returns True if pointer has incomplete type
7530 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc,
7531                                                  Expr *Operand) {
7532   QualType ResType = Operand->getType();
7533   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
7534     ResType = ResAtomicType->getValueType();
7535 
7536   assert(ResType->isAnyPointerType() && !ResType->isDependentType());
7537   QualType PointeeTy = ResType->getPointeeType();
7538   return S.RequireCompleteType(Loc, PointeeTy,
7539                                diag::err_typecheck_arithmetic_incomplete_type,
7540                                PointeeTy, Operand->getSourceRange());
7541 }
7542 
7543 /// \brief Check the validity of an arithmetic pointer operand.
7544 ///
7545 /// If the operand has pointer type, this code will check for pointer types
7546 /// which are invalid in arithmetic operations. These will be diagnosed
7547 /// appropriately, including whether or not the use is supported as an
7548 /// extension.
7549 ///
7550 /// \returns True when the operand is valid to use (even if as an extension).
7551 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc,
7552                                             Expr *Operand) {
7553   QualType ResType = Operand->getType();
7554   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
7555     ResType = ResAtomicType->getValueType();
7556 
7557   if (!ResType->isAnyPointerType()) return true;
7558 
7559   QualType PointeeTy = ResType->getPointeeType();
7560   if (PointeeTy->isVoidType()) {
7561     diagnoseArithmeticOnVoidPointer(S, Loc, Operand);
7562     return !S.getLangOpts().CPlusPlus;
7563   }
7564   if (PointeeTy->isFunctionType()) {
7565     diagnoseArithmeticOnFunctionPointer(S, Loc, Operand);
7566     return !S.getLangOpts().CPlusPlus;
7567   }
7568 
7569   if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false;
7570 
7571   return true;
7572 }
7573 
7574 /// \brief Check the validity of a binary arithmetic operation w.r.t. pointer
7575 /// operands.
7576 ///
7577 /// This routine will diagnose any invalid arithmetic on pointer operands much
7578 /// like \see checkArithmeticOpPointerOperand. However, it has special logic
7579 /// for emitting a single diagnostic even for operations where both LHS and RHS
7580 /// are (potentially problematic) pointers.
7581 ///
7582 /// \returns True when the operand is valid to use (even if as an extension).
7583 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc,
7584                                                 Expr *LHSExpr, Expr *RHSExpr) {
7585   bool isLHSPointer = LHSExpr->getType()->isAnyPointerType();
7586   bool isRHSPointer = RHSExpr->getType()->isAnyPointerType();
7587   if (!isLHSPointer && !isRHSPointer) return true;
7588 
7589   QualType LHSPointeeTy, RHSPointeeTy;
7590   if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType();
7591   if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType();
7592 
7593   // if both are pointers check if operation is valid wrt address spaces
7594   if (isLHSPointer && isRHSPointer) {
7595     const PointerType *lhsPtr = LHSExpr->getType()->getAs<PointerType>();
7596     const PointerType *rhsPtr = RHSExpr->getType()->getAs<PointerType>();
7597     if (!lhsPtr->isAddressSpaceOverlapping(*rhsPtr)) {
7598       S.Diag(Loc,
7599              diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
7600           << LHSExpr->getType() << RHSExpr->getType() << 1 /*arithmetic op*/
7601           << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
7602       return false;
7603     }
7604   }
7605 
7606   // Check for arithmetic on pointers to incomplete types.
7607   bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType();
7608   bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType();
7609   if (isLHSVoidPtr || isRHSVoidPtr) {
7610     if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr);
7611     else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr);
7612     else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr);
7613 
7614     return !S.getLangOpts().CPlusPlus;
7615   }
7616 
7617   bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType();
7618   bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType();
7619   if (isLHSFuncPtr || isRHSFuncPtr) {
7620     if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr);
7621     else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc,
7622                                                                 RHSExpr);
7623     else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr);
7624 
7625     return !S.getLangOpts().CPlusPlus;
7626   }
7627 
7628   if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr))
7629     return false;
7630   if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr))
7631     return false;
7632 
7633   return true;
7634 }
7635 
7636 /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string
7637 /// literal.
7638 static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc,
7639                                   Expr *LHSExpr, Expr *RHSExpr) {
7640   StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts());
7641   Expr* IndexExpr = RHSExpr;
7642   if (!StrExpr) {
7643     StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts());
7644     IndexExpr = LHSExpr;
7645   }
7646 
7647   bool IsStringPlusInt = StrExpr &&
7648       IndexExpr->getType()->isIntegralOrUnscopedEnumerationType();
7649   if (!IsStringPlusInt || IndexExpr->isValueDependent())
7650     return;
7651 
7652   llvm::APSInt index;
7653   if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) {
7654     unsigned StrLenWithNull = StrExpr->getLength() + 1;
7655     if (index.isNonNegative() &&
7656         index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull),
7657                               index.isUnsigned()))
7658       return;
7659   }
7660 
7661   SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
7662   Self.Diag(OpLoc, diag::warn_string_plus_int)
7663       << DiagRange << IndexExpr->IgnoreImpCasts()->getType();
7664 
7665   // Only print a fixit for "str" + int, not for int + "str".
7666   if (IndexExpr == RHSExpr) {
7667     SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd());
7668     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
7669         << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
7670         << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
7671         << FixItHint::CreateInsertion(EndLoc, "]");
7672   } else
7673     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
7674 }
7675 
7676 /// \brief Emit a warning when adding a char literal to a string.
7677 static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc,
7678                                    Expr *LHSExpr, Expr *RHSExpr) {
7679   const Expr *StringRefExpr = LHSExpr;
7680   const CharacterLiteral *CharExpr =
7681       dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts());
7682 
7683   if (!CharExpr) {
7684     CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts());
7685     StringRefExpr = RHSExpr;
7686   }
7687 
7688   if (!CharExpr || !StringRefExpr)
7689     return;
7690 
7691   const QualType StringType = StringRefExpr->getType();
7692 
7693   // Return if not a PointerType.
7694   if (!StringType->isAnyPointerType())
7695     return;
7696 
7697   // Return if not a CharacterType.
7698   if (!StringType->getPointeeType()->isAnyCharacterType())
7699     return;
7700 
7701   ASTContext &Ctx = Self.getASTContext();
7702   SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
7703 
7704   const QualType CharType = CharExpr->getType();
7705   if (!CharType->isAnyCharacterType() &&
7706       CharType->isIntegerType() &&
7707       llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) {
7708     Self.Diag(OpLoc, diag::warn_string_plus_char)
7709         << DiagRange << Ctx.CharTy;
7710   } else {
7711     Self.Diag(OpLoc, diag::warn_string_plus_char)
7712         << DiagRange << CharExpr->getType();
7713   }
7714 
7715   // Only print a fixit for str + char, not for char + str.
7716   if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) {
7717     SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd());
7718     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
7719         << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
7720         << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
7721         << FixItHint::CreateInsertion(EndLoc, "]");
7722   } else {
7723     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
7724   }
7725 }
7726 
7727 /// \brief Emit error when two pointers are incompatible.
7728 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc,
7729                                            Expr *LHSExpr, Expr *RHSExpr) {
7730   assert(LHSExpr->getType()->isAnyPointerType());
7731   assert(RHSExpr->getType()->isAnyPointerType());
7732   S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
7733     << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange()
7734     << RHSExpr->getSourceRange();
7735 }
7736 
7737 QualType Sema::CheckAdditionOperands( // C99 6.5.6
7738     ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc,
7739     QualType* CompLHSTy) {
7740   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7741 
7742   if (LHS.get()->getType()->isVectorType() ||
7743       RHS.get()->getType()->isVectorType()) {
7744     QualType compType = CheckVectorOperands(
7745         LHS, RHS, Loc, CompLHSTy,
7746         /*AllowBothBool*/getLangOpts().AltiVec,
7747         /*AllowBoolConversions*/getLangOpts().ZVector);
7748     if (CompLHSTy) *CompLHSTy = compType;
7749     return compType;
7750   }
7751 
7752   QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
7753   if (LHS.isInvalid() || RHS.isInvalid())
7754     return QualType();
7755 
7756   // Diagnose "string literal" '+' int and string '+' "char literal".
7757   if (Opc == BO_Add) {
7758     diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get());
7759     diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get());
7760   }
7761 
7762   // handle the common case first (both operands are arithmetic).
7763   if (!compType.isNull() && compType->isArithmeticType()) {
7764     if (CompLHSTy) *CompLHSTy = compType;
7765     return compType;
7766   }
7767 
7768   // Type-checking.  Ultimately the pointer's going to be in PExp;
7769   // note that we bias towards the LHS being the pointer.
7770   Expr *PExp = LHS.get(), *IExp = RHS.get();
7771 
7772   bool isObjCPointer;
7773   if (PExp->getType()->isPointerType()) {
7774     isObjCPointer = false;
7775   } else if (PExp->getType()->isObjCObjectPointerType()) {
7776     isObjCPointer = true;
7777   } else {
7778     std::swap(PExp, IExp);
7779     if (PExp->getType()->isPointerType()) {
7780       isObjCPointer = false;
7781     } else if (PExp->getType()->isObjCObjectPointerType()) {
7782       isObjCPointer = true;
7783     } else {
7784       return InvalidOperands(Loc, LHS, RHS);
7785     }
7786   }
7787   assert(PExp->getType()->isAnyPointerType());
7788 
7789   if (!IExp->getType()->isIntegerType())
7790     return InvalidOperands(Loc, LHS, RHS);
7791 
7792   if (!checkArithmeticOpPointerOperand(*this, Loc, PExp))
7793     return QualType();
7794 
7795   if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp))
7796     return QualType();
7797 
7798   // Check array bounds for pointer arithemtic
7799   CheckArrayAccess(PExp, IExp);
7800 
7801   if (CompLHSTy) {
7802     QualType LHSTy = Context.isPromotableBitField(LHS.get());
7803     if (LHSTy.isNull()) {
7804       LHSTy = LHS.get()->getType();
7805       if (LHSTy->isPromotableIntegerType())
7806         LHSTy = Context.getPromotedIntegerType(LHSTy);
7807     }
7808     *CompLHSTy = LHSTy;
7809   }
7810 
7811   return PExp->getType();
7812 }
7813 
7814 // C99 6.5.6
7815 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS,
7816                                         SourceLocation Loc,
7817                                         QualType* CompLHSTy) {
7818   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7819 
7820   if (LHS.get()->getType()->isVectorType() ||
7821       RHS.get()->getType()->isVectorType()) {
7822     QualType compType = CheckVectorOperands(
7823         LHS, RHS, Loc, CompLHSTy,
7824         /*AllowBothBool*/getLangOpts().AltiVec,
7825         /*AllowBoolConversions*/getLangOpts().ZVector);
7826     if (CompLHSTy) *CompLHSTy = compType;
7827     return compType;
7828   }
7829 
7830   QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
7831   if (LHS.isInvalid() || RHS.isInvalid())
7832     return QualType();
7833 
7834   // Enforce type constraints: C99 6.5.6p3.
7835 
7836   // Handle the common case first (both operands are arithmetic).
7837   if (!compType.isNull() && compType->isArithmeticType()) {
7838     if (CompLHSTy) *CompLHSTy = compType;
7839     return compType;
7840   }
7841 
7842   // Either ptr - int   or   ptr - ptr.
7843   if (LHS.get()->getType()->isAnyPointerType()) {
7844     QualType lpointee = LHS.get()->getType()->getPointeeType();
7845 
7846     // Diagnose bad cases where we step over interface counts.
7847     if (LHS.get()->getType()->isObjCObjectPointerType() &&
7848         checkArithmeticOnObjCPointer(*this, Loc, LHS.get()))
7849       return QualType();
7850 
7851     // The result type of a pointer-int computation is the pointer type.
7852     if (RHS.get()->getType()->isIntegerType()) {
7853       if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get()))
7854         return QualType();
7855 
7856       // Check array bounds for pointer arithemtic
7857       CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr,
7858                        /*AllowOnePastEnd*/true, /*IndexNegated*/true);
7859 
7860       if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
7861       return LHS.get()->getType();
7862     }
7863 
7864     // Handle pointer-pointer subtractions.
7865     if (const PointerType *RHSPTy
7866           = RHS.get()->getType()->getAs<PointerType>()) {
7867       QualType rpointee = RHSPTy->getPointeeType();
7868 
7869       if (getLangOpts().CPlusPlus) {
7870         // Pointee types must be the same: C++ [expr.add]
7871         if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
7872           diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
7873         }
7874       } else {
7875         // Pointee types must be compatible C99 6.5.6p3
7876         if (!Context.typesAreCompatible(
7877                 Context.getCanonicalType(lpointee).getUnqualifiedType(),
7878                 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
7879           diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
7880           return QualType();
7881         }
7882       }
7883 
7884       if (!checkArithmeticBinOpPointerOperands(*this, Loc,
7885                                                LHS.get(), RHS.get()))
7886         return QualType();
7887 
7888       // The pointee type may have zero size.  As an extension, a structure or
7889       // union may have zero size or an array may have zero length.  In this
7890       // case subtraction does not make sense.
7891       if (!rpointee->isVoidType() && !rpointee->isFunctionType()) {
7892         CharUnits ElementSize = Context.getTypeSizeInChars(rpointee);
7893         if (ElementSize.isZero()) {
7894           Diag(Loc,diag::warn_sub_ptr_zero_size_types)
7895             << rpointee.getUnqualifiedType()
7896             << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7897         }
7898       }
7899 
7900       if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
7901       return Context.getPointerDiffType();
7902     }
7903   }
7904 
7905   return InvalidOperands(Loc, LHS, RHS);
7906 }
7907 
7908 static bool isScopedEnumerationType(QualType T) {
7909   if (const EnumType *ET = T->getAs<EnumType>())
7910     return ET->getDecl()->isScoped();
7911   return false;
7912 }
7913 
7914 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS,
7915                                    SourceLocation Loc, unsigned Opc,
7916                                    QualType LHSType) {
7917   // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined),
7918   // so skip remaining warnings as we don't want to modify values within Sema.
7919   if (S.getLangOpts().OpenCL)
7920     return;
7921 
7922   llvm::APSInt Right;
7923   // Check right/shifter operand
7924   if (RHS.get()->isValueDependent() ||
7925       !RHS.get()->EvaluateAsInt(Right, S.Context))
7926     return;
7927 
7928   if (Right.isNegative()) {
7929     S.DiagRuntimeBehavior(Loc, RHS.get(),
7930                           S.PDiag(diag::warn_shift_negative)
7931                             << RHS.get()->getSourceRange());
7932     return;
7933   }
7934   llvm::APInt LeftBits(Right.getBitWidth(),
7935                        S.Context.getTypeSize(LHS.get()->getType()));
7936   if (Right.uge(LeftBits)) {
7937     S.DiagRuntimeBehavior(Loc, RHS.get(),
7938                           S.PDiag(diag::warn_shift_gt_typewidth)
7939                             << RHS.get()->getSourceRange());
7940     return;
7941   }
7942   if (Opc != BO_Shl)
7943     return;
7944 
7945   // When left shifting an ICE which is signed, we can check for overflow which
7946   // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned
7947   // integers have defined behavior modulo one more than the maximum value
7948   // representable in the result type, so never warn for those.
7949   llvm::APSInt Left;
7950   if (LHS.get()->isValueDependent() ||
7951       LHSType->hasUnsignedIntegerRepresentation() ||
7952       !LHS.get()->EvaluateAsInt(Left, S.Context))
7953     return;
7954 
7955   // If LHS does not have a signed type and non-negative value
7956   // then, the behavior is undefined. Warn about it.
7957   if (Left.isNegative()) {
7958     S.DiagRuntimeBehavior(Loc, LHS.get(),
7959                           S.PDiag(diag::warn_shift_lhs_negative)
7960                             << LHS.get()->getSourceRange());
7961     return;
7962   }
7963 
7964   llvm::APInt ResultBits =
7965       static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits();
7966   if (LeftBits.uge(ResultBits))
7967     return;
7968   llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue());
7969   Result = Result.shl(Right);
7970 
7971   // Print the bit representation of the signed integer as an unsigned
7972   // hexadecimal number.
7973   SmallString<40> HexResult;
7974   Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true);
7975 
7976   // If we are only missing a sign bit, this is less likely to result in actual
7977   // bugs -- if the result is cast back to an unsigned type, it will have the
7978   // expected value. Thus we place this behind a different warning that can be
7979   // turned off separately if needed.
7980   if (LeftBits == ResultBits - 1) {
7981     S.Diag(Loc, diag::warn_shift_result_sets_sign_bit)
7982         << HexResult << LHSType
7983         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7984     return;
7985   }
7986 
7987   S.Diag(Loc, diag::warn_shift_result_gt_typewidth)
7988     << HexResult.str() << Result.getMinSignedBits() << LHSType
7989     << Left.getBitWidth() << LHS.get()->getSourceRange()
7990     << RHS.get()->getSourceRange();
7991 }
7992 
7993 /// \brief Return the resulting type when an OpenCL vector is shifted
7994 ///        by a scalar or vector shift amount.
7995 static QualType checkOpenCLVectorShift(Sema &S,
7996                                        ExprResult &LHS, ExprResult &RHS,
7997                                        SourceLocation Loc, bool IsCompAssign) {
7998   // OpenCL v1.1 s6.3.j says RHS can be a vector only if LHS is a vector.
7999   if (!LHS.get()->getType()->isVectorType()) {
8000     S.Diag(Loc, diag::err_shift_rhs_only_vector)
8001       << RHS.get()->getType() << LHS.get()->getType()
8002       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8003     return QualType();
8004   }
8005 
8006   if (!IsCompAssign) {
8007     LHS = S.UsualUnaryConversions(LHS.get());
8008     if (LHS.isInvalid()) return QualType();
8009   }
8010 
8011   RHS = S.UsualUnaryConversions(RHS.get());
8012   if (RHS.isInvalid()) return QualType();
8013 
8014   QualType LHSType = LHS.get()->getType();
8015   const VectorType *LHSVecTy = LHSType->getAs<VectorType>();
8016   QualType LHSEleType = LHSVecTy->getElementType();
8017 
8018   // Note that RHS might not be a vector.
8019   QualType RHSType = RHS.get()->getType();
8020   const VectorType *RHSVecTy = RHSType->getAs<VectorType>();
8021   QualType RHSEleType = RHSVecTy ? RHSVecTy->getElementType() : RHSType;
8022 
8023   // OpenCL v1.1 s6.3.j says that the operands need to be integers.
8024   if (!LHSEleType->isIntegerType()) {
8025     S.Diag(Loc, diag::err_typecheck_expect_int)
8026       << LHS.get()->getType() << LHS.get()->getSourceRange();
8027     return QualType();
8028   }
8029 
8030   if (!RHSEleType->isIntegerType()) {
8031     S.Diag(Loc, diag::err_typecheck_expect_int)
8032       << RHS.get()->getType() << RHS.get()->getSourceRange();
8033     return QualType();
8034   }
8035 
8036   if (RHSVecTy) {
8037     // OpenCL v1.1 s6.3.j says that for vector types, the operators
8038     // are applied component-wise. So if RHS is a vector, then ensure
8039     // that the number of elements is the same as LHS...
8040     if (RHSVecTy->getNumElements() != LHSVecTy->getNumElements()) {
8041       S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal)
8042         << LHS.get()->getType() << RHS.get()->getType()
8043         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8044       return QualType();
8045     }
8046   } else {
8047     // ...else expand RHS to match the number of elements in LHS.
8048     QualType VecTy =
8049       S.Context.getExtVectorType(RHSEleType, LHSVecTy->getNumElements());
8050     RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat);
8051   }
8052 
8053   return LHSType;
8054 }
8055 
8056 // C99 6.5.7
8057 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS,
8058                                   SourceLocation Loc, unsigned Opc,
8059                                   bool IsCompAssign) {
8060   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8061 
8062   // Vector shifts promote their scalar inputs to vector type.
8063   if (LHS.get()->getType()->isVectorType() ||
8064       RHS.get()->getType()->isVectorType()) {
8065     if (LangOpts.OpenCL)
8066       return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
8067     if (LangOpts.ZVector) {
8068       // The shift operators for the z vector extensions work basically
8069       // like OpenCL shifts, except that neither the LHS nor the RHS is
8070       // allowed to be a "vector bool".
8071       if (auto LHSVecType = LHS.get()->getType()->getAs<VectorType>())
8072         if (LHSVecType->getVectorKind() == VectorType::AltiVecBool)
8073           return InvalidOperands(Loc, LHS, RHS);
8074       if (auto RHSVecType = RHS.get()->getType()->getAs<VectorType>())
8075         if (RHSVecType->getVectorKind() == VectorType::AltiVecBool)
8076           return InvalidOperands(Loc, LHS, RHS);
8077       return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
8078     }
8079     return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
8080                                /*AllowBothBool*/true,
8081                                /*AllowBoolConversions*/false);
8082   }
8083 
8084   // Shifts don't perform usual arithmetic conversions, they just do integer
8085   // promotions on each operand. C99 6.5.7p3
8086 
8087   // For the LHS, do usual unary conversions, but then reset them away
8088   // if this is a compound assignment.
8089   ExprResult OldLHS = LHS;
8090   LHS = UsualUnaryConversions(LHS.get());
8091   if (LHS.isInvalid())
8092     return QualType();
8093   QualType LHSType = LHS.get()->getType();
8094   if (IsCompAssign) LHS = OldLHS;
8095 
8096   // The RHS is simpler.
8097   RHS = UsualUnaryConversions(RHS.get());
8098   if (RHS.isInvalid())
8099     return QualType();
8100   QualType RHSType = RHS.get()->getType();
8101 
8102   // C99 6.5.7p2: Each of the operands shall have integer type.
8103   if (!LHSType->hasIntegerRepresentation() ||
8104       !RHSType->hasIntegerRepresentation())
8105     return InvalidOperands(Loc, LHS, RHS);
8106 
8107   // C++0x: Don't allow scoped enums. FIXME: Use something better than
8108   // hasIntegerRepresentation() above instead of this.
8109   if (isScopedEnumerationType(LHSType) ||
8110       isScopedEnumerationType(RHSType)) {
8111     return InvalidOperands(Loc, LHS, RHS);
8112   }
8113   // Sanity-check shift operands
8114   DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType);
8115 
8116   // "The type of the result is that of the promoted left operand."
8117   return LHSType;
8118 }
8119 
8120 static bool IsWithinTemplateSpecialization(Decl *D) {
8121   if (DeclContext *DC = D->getDeclContext()) {
8122     if (isa<ClassTemplateSpecializationDecl>(DC))
8123       return true;
8124     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC))
8125       return FD->isFunctionTemplateSpecialization();
8126   }
8127   return false;
8128 }
8129 
8130 /// If two different enums are compared, raise a warning.
8131 static void checkEnumComparison(Sema &S, SourceLocation Loc, Expr *LHS,
8132                                 Expr *RHS) {
8133   QualType LHSStrippedType = LHS->IgnoreParenImpCasts()->getType();
8134   QualType RHSStrippedType = RHS->IgnoreParenImpCasts()->getType();
8135 
8136   const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>();
8137   if (!LHSEnumType)
8138     return;
8139   const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>();
8140   if (!RHSEnumType)
8141     return;
8142 
8143   // Ignore anonymous enums.
8144   if (!LHSEnumType->getDecl()->getIdentifier())
8145     return;
8146   if (!RHSEnumType->getDecl()->getIdentifier())
8147     return;
8148 
8149   if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType))
8150     return;
8151 
8152   S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types)
8153       << LHSStrippedType << RHSStrippedType
8154       << LHS->getSourceRange() << RHS->getSourceRange();
8155 }
8156 
8157 /// \brief Diagnose bad pointer comparisons.
8158 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc,
8159                                               ExprResult &LHS, ExprResult &RHS,
8160                                               bool IsError) {
8161   S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers
8162                       : diag::ext_typecheck_comparison_of_distinct_pointers)
8163     << LHS.get()->getType() << RHS.get()->getType()
8164     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8165 }
8166 
8167 /// \brief Returns false if the pointers are converted to a composite type,
8168 /// true otherwise.
8169 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc,
8170                                            ExprResult &LHS, ExprResult &RHS) {
8171   // C++ [expr.rel]p2:
8172   //   [...] Pointer conversions (4.10) and qualification
8173   //   conversions (4.4) are performed on pointer operands (or on
8174   //   a pointer operand and a null pointer constant) to bring
8175   //   them to their composite pointer type. [...]
8176   //
8177   // C++ [expr.eq]p1 uses the same notion for (in)equality
8178   // comparisons of pointers.
8179 
8180   // C++ [expr.eq]p2:
8181   //   In addition, pointers to members can be compared, or a pointer to
8182   //   member and a null pointer constant. Pointer to member conversions
8183   //   (4.11) and qualification conversions (4.4) are performed to bring
8184   //   them to a common type. If one operand is a null pointer constant,
8185   //   the common type is the type of the other operand. Otherwise, the
8186   //   common type is a pointer to member type similar (4.4) to the type
8187   //   of one of the operands, with a cv-qualification signature (4.4)
8188   //   that is the union of the cv-qualification signatures of the operand
8189   //   types.
8190 
8191   QualType LHSType = LHS.get()->getType();
8192   QualType RHSType = RHS.get()->getType();
8193   assert((LHSType->isPointerType() && RHSType->isPointerType()) ||
8194          (LHSType->isMemberPointerType() && RHSType->isMemberPointerType()));
8195 
8196   bool NonStandardCompositeType = false;
8197   bool *BoolPtr = S.isSFINAEContext() ? nullptr : &NonStandardCompositeType;
8198   QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr);
8199   if (T.isNull()) {
8200     diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true);
8201     return true;
8202   }
8203 
8204   if (NonStandardCompositeType)
8205     S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard)
8206       << LHSType << RHSType << T << LHS.get()->getSourceRange()
8207       << RHS.get()->getSourceRange();
8208 
8209   LHS = S.ImpCastExprToType(LHS.get(), T, CK_BitCast);
8210   RHS = S.ImpCastExprToType(RHS.get(), T, CK_BitCast);
8211   return false;
8212 }
8213 
8214 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc,
8215                                                     ExprResult &LHS,
8216                                                     ExprResult &RHS,
8217                                                     bool IsError) {
8218   S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void
8219                       : diag::ext_typecheck_comparison_of_fptr_to_void)
8220     << LHS.get()->getType() << RHS.get()->getType()
8221     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8222 }
8223 
8224 static bool isObjCObjectLiteral(ExprResult &E) {
8225   switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) {
8226   case Stmt::ObjCArrayLiteralClass:
8227   case Stmt::ObjCDictionaryLiteralClass:
8228   case Stmt::ObjCStringLiteralClass:
8229   case Stmt::ObjCBoxedExprClass:
8230     return true;
8231   default:
8232     // Note that ObjCBoolLiteral is NOT an object literal!
8233     return false;
8234   }
8235 }
8236 
8237 static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) {
8238   const ObjCObjectPointerType *Type =
8239     LHS->getType()->getAs<ObjCObjectPointerType>();
8240 
8241   // If this is not actually an Objective-C object, bail out.
8242   if (!Type)
8243     return false;
8244 
8245   // Get the LHS object's interface type.
8246   QualType InterfaceType = Type->getPointeeType();
8247 
8248   // If the RHS isn't an Objective-C object, bail out.
8249   if (!RHS->getType()->isObjCObjectPointerType())
8250     return false;
8251 
8252   // Try to find the -isEqual: method.
8253   Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector();
8254   ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel,
8255                                                       InterfaceType,
8256                                                       /*instance=*/true);
8257   if (!Method) {
8258     if (Type->isObjCIdType()) {
8259       // For 'id', just check the global pool.
8260       Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(),
8261                                                   /*receiverId=*/true);
8262     } else {
8263       // Check protocols.
8264       Method = S.LookupMethodInQualifiedType(IsEqualSel, Type,
8265                                              /*instance=*/true);
8266     }
8267   }
8268 
8269   if (!Method)
8270     return false;
8271 
8272   QualType T = Method->parameters()[0]->getType();
8273   if (!T->isObjCObjectPointerType())
8274     return false;
8275 
8276   QualType R = Method->getReturnType();
8277   if (!R->isScalarType())
8278     return false;
8279 
8280   return true;
8281 }
8282 
8283 Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) {
8284   FromE = FromE->IgnoreParenImpCasts();
8285   switch (FromE->getStmtClass()) {
8286     default:
8287       break;
8288     case Stmt::ObjCStringLiteralClass:
8289       // "string literal"
8290       return LK_String;
8291     case Stmt::ObjCArrayLiteralClass:
8292       // "array literal"
8293       return LK_Array;
8294     case Stmt::ObjCDictionaryLiteralClass:
8295       // "dictionary literal"
8296       return LK_Dictionary;
8297     case Stmt::BlockExprClass:
8298       return LK_Block;
8299     case Stmt::ObjCBoxedExprClass: {
8300       Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens();
8301       switch (Inner->getStmtClass()) {
8302         case Stmt::IntegerLiteralClass:
8303         case Stmt::FloatingLiteralClass:
8304         case Stmt::CharacterLiteralClass:
8305         case Stmt::ObjCBoolLiteralExprClass:
8306         case Stmt::CXXBoolLiteralExprClass:
8307           // "numeric literal"
8308           return LK_Numeric;
8309         case Stmt::ImplicitCastExprClass: {
8310           CastKind CK = cast<CastExpr>(Inner)->getCastKind();
8311           // Boolean literals can be represented by implicit casts.
8312           if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast)
8313             return LK_Numeric;
8314           break;
8315         }
8316         default:
8317           break;
8318       }
8319       return LK_Boxed;
8320     }
8321   }
8322   return LK_None;
8323 }
8324 
8325 static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc,
8326                                           ExprResult &LHS, ExprResult &RHS,
8327                                           BinaryOperator::Opcode Opc){
8328   Expr *Literal;
8329   Expr *Other;
8330   if (isObjCObjectLiteral(LHS)) {
8331     Literal = LHS.get();
8332     Other = RHS.get();
8333   } else {
8334     Literal = RHS.get();
8335     Other = LHS.get();
8336   }
8337 
8338   // Don't warn on comparisons against nil.
8339   Other = Other->IgnoreParenCasts();
8340   if (Other->isNullPointerConstant(S.getASTContext(),
8341                                    Expr::NPC_ValueDependentIsNotNull))
8342     return;
8343 
8344   // This should be kept in sync with warn_objc_literal_comparison.
8345   // LK_String should always be after the other literals, since it has its own
8346   // warning flag.
8347   Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal);
8348   assert(LiteralKind != Sema::LK_Block);
8349   if (LiteralKind == Sema::LK_None) {
8350     llvm_unreachable("Unknown Objective-C object literal kind");
8351   }
8352 
8353   if (LiteralKind == Sema::LK_String)
8354     S.Diag(Loc, diag::warn_objc_string_literal_comparison)
8355       << Literal->getSourceRange();
8356   else
8357     S.Diag(Loc, diag::warn_objc_literal_comparison)
8358       << LiteralKind << Literal->getSourceRange();
8359 
8360   if (BinaryOperator::isEqualityOp(Opc) &&
8361       hasIsEqualMethod(S, LHS.get(), RHS.get())) {
8362     SourceLocation Start = LHS.get()->getLocStart();
8363     SourceLocation End = S.PP.getLocForEndOfToken(RHS.get()->getLocEnd());
8364     CharSourceRange OpRange =
8365       CharSourceRange::getCharRange(Loc, S.PP.getLocForEndOfToken(Loc));
8366 
8367     S.Diag(Loc, diag::note_objc_literal_comparison_isequal)
8368       << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![")
8369       << FixItHint::CreateReplacement(OpRange, " isEqual:")
8370       << FixItHint::CreateInsertion(End, "]");
8371   }
8372 }
8373 
8374 static void diagnoseLogicalNotOnLHSofComparison(Sema &S, ExprResult &LHS,
8375                                                 ExprResult &RHS,
8376                                                 SourceLocation Loc,
8377                                                 unsigned OpaqueOpc) {
8378   // This checking requires bools.
8379   if (!S.getLangOpts().Bool) return;
8380 
8381   // Check that left hand side is !something.
8382   UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts());
8383   if (!UO || UO->getOpcode() != UO_LNot) return;
8384 
8385   // Only check if the right hand side is non-bool arithmetic type.
8386   if (RHS.get()->getType()->isBooleanType()) return;
8387 
8388   // Make sure that the something in !something is not bool.
8389   Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts();
8390   if (SubExpr->getType()->isBooleanType()) return;
8391 
8392   // Emit warning.
8393   S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_comparison)
8394       << Loc;
8395 
8396   // First note suggest !(x < y)
8397   SourceLocation FirstOpen = SubExpr->getLocStart();
8398   SourceLocation FirstClose = RHS.get()->getLocEnd();
8399   FirstClose = S.getPreprocessor().getLocForEndOfToken(FirstClose);
8400   if (FirstClose.isInvalid())
8401     FirstOpen = SourceLocation();
8402   S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix)
8403       << FixItHint::CreateInsertion(FirstOpen, "(")
8404       << FixItHint::CreateInsertion(FirstClose, ")");
8405 
8406   // Second note suggests (!x) < y
8407   SourceLocation SecondOpen = LHS.get()->getLocStart();
8408   SourceLocation SecondClose = LHS.get()->getLocEnd();
8409   SecondClose = S.getPreprocessor().getLocForEndOfToken(SecondClose);
8410   if (SecondClose.isInvalid())
8411     SecondOpen = SourceLocation();
8412   S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens)
8413       << FixItHint::CreateInsertion(SecondOpen, "(")
8414       << FixItHint::CreateInsertion(SecondClose, ")");
8415 }
8416 
8417 // Get the decl for a simple expression: a reference to a variable,
8418 // an implicit C++ field reference, or an implicit ObjC ivar reference.
8419 static ValueDecl *getCompareDecl(Expr *E) {
8420   if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E))
8421     return DR->getDecl();
8422   if (ObjCIvarRefExpr* Ivar = dyn_cast<ObjCIvarRefExpr>(E)) {
8423     if (Ivar->isFreeIvar())
8424       return Ivar->getDecl();
8425   }
8426   if (MemberExpr* Mem = dyn_cast<MemberExpr>(E)) {
8427     if (Mem->isImplicitAccess())
8428       return Mem->getMemberDecl();
8429   }
8430   return nullptr;
8431 }
8432 
8433 // C99 6.5.8, C++ [expr.rel]
8434 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS,
8435                                     SourceLocation Loc, unsigned OpaqueOpc,
8436                                     bool IsRelational) {
8437   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true);
8438 
8439   BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc;
8440 
8441   // Handle vector comparisons separately.
8442   if (LHS.get()->getType()->isVectorType() ||
8443       RHS.get()->getType()->isVectorType())
8444     return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational);
8445 
8446   QualType LHSType = LHS.get()->getType();
8447   QualType RHSType = RHS.get()->getType();
8448 
8449   Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts();
8450   Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts();
8451 
8452   checkEnumComparison(*this, Loc, LHS.get(), RHS.get());
8453   diagnoseLogicalNotOnLHSofComparison(*this, LHS, RHS, Loc, OpaqueOpc);
8454 
8455   if (!LHSType->hasFloatingRepresentation() &&
8456       !(LHSType->isBlockPointerType() && IsRelational) &&
8457       !LHS.get()->getLocStart().isMacroID() &&
8458       !RHS.get()->getLocStart().isMacroID() &&
8459       ActiveTemplateInstantiations.empty()) {
8460     // For non-floating point types, check for self-comparisons of the form
8461     // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
8462     // often indicate logic errors in the program.
8463     //
8464     // NOTE: Don't warn about comparison expressions resulting from macro
8465     // expansion. Also don't warn about comparisons which are only self
8466     // comparisons within a template specialization. The warnings should catch
8467     // obvious cases in the definition of the template anyways. The idea is to
8468     // warn when the typed comparison operator will always evaluate to the same
8469     // result.
8470     ValueDecl *DL = getCompareDecl(LHSStripped);
8471     ValueDecl *DR = getCompareDecl(RHSStripped);
8472     if (DL && DR && DL == DR && !IsWithinTemplateSpecialization(DL)) {
8473       DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always)
8474                           << 0 // self-
8475                           << (Opc == BO_EQ
8476                               || Opc == BO_LE
8477                               || Opc == BO_GE));
8478     } else if (DL && DR && LHSType->isArrayType() && RHSType->isArrayType() &&
8479                !DL->getType()->isReferenceType() &&
8480                !DR->getType()->isReferenceType()) {
8481         // what is it always going to eval to?
8482         char always_evals_to;
8483         switch(Opc) {
8484         case BO_EQ: // e.g. array1 == array2
8485           always_evals_to = 0; // false
8486           break;
8487         case BO_NE: // e.g. array1 != array2
8488           always_evals_to = 1; // true
8489           break;
8490         default:
8491           // best we can say is 'a constant'
8492           always_evals_to = 2; // e.g. array1 <= array2
8493           break;
8494         }
8495         DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always)
8496                             << 1 // array
8497                             << always_evals_to);
8498     }
8499 
8500     if (isa<CastExpr>(LHSStripped))
8501       LHSStripped = LHSStripped->IgnoreParenCasts();
8502     if (isa<CastExpr>(RHSStripped))
8503       RHSStripped = RHSStripped->IgnoreParenCasts();
8504 
8505     // Warn about comparisons against a string constant (unless the other
8506     // operand is null), the user probably wants strcmp.
8507     Expr *literalString = nullptr;
8508     Expr *literalStringStripped = nullptr;
8509     if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
8510         !RHSStripped->isNullPointerConstant(Context,
8511                                             Expr::NPC_ValueDependentIsNull)) {
8512       literalString = LHS.get();
8513       literalStringStripped = LHSStripped;
8514     } else if ((isa<StringLiteral>(RHSStripped) ||
8515                 isa<ObjCEncodeExpr>(RHSStripped)) &&
8516                !LHSStripped->isNullPointerConstant(Context,
8517                                             Expr::NPC_ValueDependentIsNull)) {
8518       literalString = RHS.get();
8519       literalStringStripped = RHSStripped;
8520     }
8521 
8522     if (literalString) {
8523       DiagRuntimeBehavior(Loc, nullptr,
8524         PDiag(diag::warn_stringcompare)
8525           << isa<ObjCEncodeExpr>(literalStringStripped)
8526           << literalString->getSourceRange());
8527     }
8528   }
8529 
8530   // C99 6.5.8p3 / C99 6.5.9p4
8531   UsualArithmeticConversions(LHS, RHS);
8532   if (LHS.isInvalid() || RHS.isInvalid())
8533     return QualType();
8534 
8535   LHSType = LHS.get()->getType();
8536   RHSType = RHS.get()->getType();
8537 
8538   // The result of comparisons is 'bool' in C++, 'int' in C.
8539   QualType ResultTy = Context.getLogicalOperationType();
8540 
8541   if (IsRelational) {
8542     if (LHSType->isRealType() && RHSType->isRealType())
8543       return ResultTy;
8544   } else {
8545     // Check for comparisons of floating point operands using != and ==.
8546     if (LHSType->hasFloatingRepresentation())
8547       CheckFloatComparison(Loc, LHS.get(), RHS.get());
8548 
8549     if (LHSType->isArithmeticType() && RHSType->isArithmeticType())
8550       return ResultTy;
8551   }
8552 
8553   const Expr::NullPointerConstantKind LHSNullKind =
8554       LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
8555   const Expr::NullPointerConstantKind RHSNullKind =
8556       RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
8557   bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull;
8558   bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull;
8559 
8560   if (!IsRelational && LHSIsNull != RHSIsNull) {
8561     bool IsEquality = Opc == BO_EQ;
8562     if (RHSIsNull)
8563       DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality,
8564                                    RHS.get()->getSourceRange());
8565     else
8566       DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality,
8567                                    LHS.get()->getSourceRange());
8568   }
8569 
8570   // All of the following pointer-related warnings are GCC extensions, except
8571   // when handling null pointer constants.
8572   if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2
8573     QualType LCanPointeeTy =
8574       LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
8575     QualType RCanPointeeTy =
8576       RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
8577 
8578     if (getLangOpts().CPlusPlus) {
8579       if (LCanPointeeTy == RCanPointeeTy)
8580         return ResultTy;
8581       if (!IsRelational &&
8582           (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
8583         // Valid unless comparison between non-null pointer and function pointer
8584         // This is a gcc extension compatibility comparison.
8585         // In a SFINAE context, we treat this as a hard error to maintain
8586         // conformance with the C++ standard.
8587         if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
8588             && !LHSIsNull && !RHSIsNull) {
8589           diagnoseFunctionPointerToVoidComparison(
8590               *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext());
8591 
8592           if (isSFINAEContext())
8593             return QualType();
8594 
8595           RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
8596           return ResultTy;
8597         }
8598       }
8599 
8600       if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
8601         return QualType();
8602       else
8603         return ResultTy;
8604     }
8605     // C99 6.5.9p2 and C99 6.5.8p2
8606     if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
8607                                    RCanPointeeTy.getUnqualifiedType())) {
8608       // Valid unless a relational comparison of function pointers
8609       if (IsRelational && LCanPointeeTy->isFunctionType()) {
8610         Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
8611           << LHSType << RHSType << LHS.get()->getSourceRange()
8612           << RHS.get()->getSourceRange();
8613       }
8614     } else if (!IsRelational &&
8615                (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
8616       // Valid unless comparison between non-null pointer and function pointer
8617       if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
8618           && !LHSIsNull && !RHSIsNull)
8619         diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS,
8620                                                 /*isError*/false);
8621     } else {
8622       // Invalid
8623       diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false);
8624     }
8625     if (LCanPointeeTy != RCanPointeeTy) {
8626       const PointerType *lhsPtr = LHSType->getAs<PointerType>();
8627       if (!lhsPtr->isAddressSpaceOverlapping(*RHSType->getAs<PointerType>())) {
8628         Diag(Loc,
8629              diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
8630             << LHSType << RHSType << 0 /* comparison */
8631             << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8632       }
8633       unsigned AddrSpaceL = LCanPointeeTy.getAddressSpace();
8634       unsigned AddrSpaceR = RCanPointeeTy.getAddressSpace();
8635       CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion
8636                                                : CK_BitCast;
8637       if (LHSIsNull && !RHSIsNull)
8638         LHS = ImpCastExprToType(LHS.get(), RHSType, Kind);
8639       else
8640         RHS = ImpCastExprToType(RHS.get(), LHSType, Kind);
8641     }
8642     return ResultTy;
8643   }
8644 
8645   if (getLangOpts().CPlusPlus) {
8646     // Comparison of nullptr_t with itself.
8647     if (LHSType->isNullPtrType() && RHSType->isNullPtrType())
8648       return ResultTy;
8649 
8650     // Comparison of pointers with null pointer constants and equality
8651     // comparisons of member pointers to null pointer constants.
8652     if (RHSIsNull &&
8653         ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) ||
8654          (!IsRelational &&
8655           (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) {
8656       RHS = ImpCastExprToType(RHS.get(), LHSType,
8657                         LHSType->isMemberPointerType()
8658                           ? CK_NullToMemberPointer
8659                           : CK_NullToPointer);
8660       return ResultTy;
8661     }
8662     if (LHSIsNull &&
8663         ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) ||
8664          (!IsRelational &&
8665           (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) {
8666       LHS = ImpCastExprToType(LHS.get(), RHSType,
8667                         RHSType->isMemberPointerType()
8668                           ? CK_NullToMemberPointer
8669                           : CK_NullToPointer);
8670       return ResultTy;
8671     }
8672 
8673     // Comparison of member pointers.
8674     if (!IsRelational &&
8675         LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) {
8676       if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
8677         return QualType();
8678       else
8679         return ResultTy;
8680     }
8681 
8682     // Handle scoped enumeration types specifically, since they don't promote
8683     // to integers.
8684     if (LHS.get()->getType()->isEnumeralType() &&
8685         Context.hasSameUnqualifiedType(LHS.get()->getType(),
8686                                        RHS.get()->getType()))
8687       return ResultTy;
8688   }
8689 
8690   // Handle block pointer types.
8691   if (!IsRelational && LHSType->isBlockPointerType() &&
8692       RHSType->isBlockPointerType()) {
8693     QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType();
8694     QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType();
8695 
8696     if (!LHSIsNull && !RHSIsNull &&
8697         !Context.typesAreCompatible(lpointee, rpointee)) {
8698       Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
8699         << LHSType << RHSType << LHS.get()->getSourceRange()
8700         << RHS.get()->getSourceRange();
8701     }
8702     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
8703     return ResultTy;
8704   }
8705 
8706   // Allow block pointers to be compared with null pointer constants.
8707   if (!IsRelational
8708       && ((LHSType->isBlockPointerType() && RHSType->isPointerType())
8709           || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) {
8710     if (!LHSIsNull && !RHSIsNull) {
8711       if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>()
8712              ->getPointeeType()->isVoidType())
8713             || (LHSType->isPointerType() && LHSType->castAs<PointerType>()
8714                 ->getPointeeType()->isVoidType())))
8715         Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
8716           << LHSType << RHSType << LHS.get()->getSourceRange()
8717           << RHS.get()->getSourceRange();
8718     }
8719     if (LHSIsNull && !RHSIsNull)
8720       LHS = ImpCastExprToType(LHS.get(), RHSType,
8721                               RHSType->isPointerType() ? CK_BitCast
8722                                 : CK_AnyPointerToBlockPointerCast);
8723     else
8724       RHS = ImpCastExprToType(RHS.get(), LHSType,
8725                               LHSType->isPointerType() ? CK_BitCast
8726                                 : CK_AnyPointerToBlockPointerCast);
8727     return ResultTy;
8728   }
8729 
8730   if (LHSType->isObjCObjectPointerType() ||
8731       RHSType->isObjCObjectPointerType()) {
8732     const PointerType *LPT = LHSType->getAs<PointerType>();
8733     const PointerType *RPT = RHSType->getAs<PointerType>();
8734     if (LPT || RPT) {
8735       bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false;
8736       bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false;
8737 
8738       if (!LPtrToVoid && !RPtrToVoid &&
8739           !Context.typesAreCompatible(LHSType, RHSType)) {
8740         diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
8741                                           /*isError*/false);
8742       }
8743       if (LHSIsNull && !RHSIsNull) {
8744         Expr *E = LHS.get();
8745         if (getLangOpts().ObjCAutoRefCount)
8746           CheckObjCARCConversion(SourceRange(), RHSType, E, CCK_ImplicitConversion);
8747         LHS = ImpCastExprToType(E, RHSType,
8748                                 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
8749       }
8750       else {
8751         Expr *E = RHS.get();
8752         if (getLangOpts().ObjCAutoRefCount)
8753           CheckObjCARCConversion(SourceRange(), LHSType, E, CCK_ImplicitConversion, false,
8754                                  Opc);
8755         RHS = ImpCastExprToType(E, LHSType,
8756                                 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
8757       }
8758       return ResultTy;
8759     }
8760     if (LHSType->isObjCObjectPointerType() &&
8761         RHSType->isObjCObjectPointerType()) {
8762       if (!Context.areComparableObjCPointerTypes(LHSType, RHSType))
8763         diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
8764                                           /*isError*/false);
8765       if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS))
8766         diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc);
8767 
8768       if (LHSIsNull && !RHSIsNull)
8769         LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
8770       else
8771         RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
8772       return ResultTy;
8773     }
8774   }
8775   if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) ||
8776       (LHSType->isIntegerType() && RHSType->isAnyPointerType())) {
8777     unsigned DiagID = 0;
8778     bool isError = false;
8779     if (LangOpts.DebuggerSupport) {
8780       // Under a debugger, allow the comparison of pointers to integers,
8781       // since users tend to want to compare addresses.
8782     } else if ((LHSIsNull && LHSType->isIntegerType()) ||
8783         (RHSIsNull && RHSType->isIntegerType())) {
8784       if (IsRelational && !getLangOpts().CPlusPlus)
8785         DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
8786     } else if (IsRelational && !getLangOpts().CPlusPlus)
8787       DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
8788     else if (getLangOpts().CPlusPlus) {
8789       DiagID = diag::err_typecheck_comparison_of_pointer_integer;
8790       isError = true;
8791     } else
8792       DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
8793 
8794     if (DiagID) {
8795       Diag(Loc, DiagID)
8796         << LHSType << RHSType << LHS.get()->getSourceRange()
8797         << RHS.get()->getSourceRange();
8798       if (isError)
8799         return QualType();
8800     }
8801 
8802     if (LHSType->isIntegerType())
8803       LHS = ImpCastExprToType(LHS.get(), RHSType,
8804                         LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
8805     else
8806       RHS = ImpCastExprToType(RHS.get(), LHSType,
8807                         RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
8808     return ResultTy;
8809   }
8810 
8811   // Handle block pointers.
8812   if (!IsRelational && RHSIsNull
8813       && LHSType->isBlockPointerType() && RHSType->isIntegerType()) {
8814     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
8815     return ResultTy;
8816   }
8817   if (!IsRelational && LHSIsNull
8818       && LHSType->isIntegerType() && RHSType->isBlockPointerType()) {
8819     LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
8820     return ResultTy;
8821   }
8822 
8823   return InvalidOperands(Loc, LHS, RHS);
8824 }
8825 
8826 
8827 // Return a signed type that is of identical size and number of elements.
8828 // For floating point vectors, return an integer type of identical size
8829 // and number of elements.
8830 QualType Sema::GetSignedVectorType(QualType V) {
8831   const VectorType *VTy = V->getAs<VectorType>();
8832   unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
8833   if (TypeSize == Context.getTypeSize(Context.CharTy))
8834     return Context.getExtVectorType(Context.CharTy, VTy->getNumElements());
8835   else if (TypeSize == Context.getTypeSize(Context.ShortTy))
8836     return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements());
8837   else if (TypeSize == Context.getTypeSize(Context.IntTy))
8838     return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
8839   else if (TypeSize == Context.getTypeSize(Context.LongTy))
8840     return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
8841   assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
8842          "Unhandled vector element size in vector compare");
8843   return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
8844 }
8845 
8846 /// CheckVectorCompareOperands - vector comparisons are a clang extension that
8847 /// operates on extended vector types.  Instead of producing an IntTy result,
8848 /// like a scalar comparison, a vector comparison produces a vector of integer
8849 /// types.
8850 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS,
8851                                           SourceLocation Loc,
8852                                           bool IsRelational) {
8853   // Check to make sure we're operating on vectors of the same type and width,
8854   // Allowing one side to be a scalar of element type.
8855   QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false,
8856                               /*AllowBothBool*/true,
8857                               /*AllowBoolConversions*/getLangOpts().ZVector);
8858   if (vType.isNull())
8859     return vType;
8860 
8861   QualType LHSType = LHS.get()->getType();
8862 
8863   // If AltiVec, the comparison results in a numeric type, i.e.
8864   // bool for C++, int for C
8865   if (getLangOpts().AltiVec &&
8866       vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector)
8867     return Context.getLogicalOperationType();
8868 
8869   // For non-floating point types, check for self-comparisons of the form
8870   // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
8871   // often indicate logic errors in the program.
8872   if (!LHSType->hasFloatingRepresentation() &&
8873       ActiveTemplateInstantiations.empty()) {
8874     if (DeclRefExpr* DRL
8875           = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts()))
8876       if (DeclRefExpr* DRR
8877             = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts()))
8878         if (DRL->getDecl() == DRR->getDecl())
8879           DiagRuntimeBehavior(Loc, nullptr,
8880                               PDiag(diag::warn_comparison_always)
8881                                 << 0 // self-
8882                                 << 2 // "a constant"
8883                               );
8884   }
8885 
8886   // Check for comparisons of floating point operands using != and ==.
8887   if (!IsRelational && LHSType->hasFloatingRepresentation()) {
8888     assert (RHS.get()->getType()->hasFloatingRepresentation());
8889     CheckFloatComparison(Loc, LHS.get(), RHS.get());
8890   }
8891 
8892   // Return a signed type for the vector.
8893   return GetSignedVectorType(LHSType);
8894 }
8895 
8896 QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS,
8897                                           SourceLocation Loc) {
8898   // Ensure that either both operands are of the same vector type, or
8899   // one operand is of a vector type and the other is of its element type.
8900   QualType vType = CheckVectorOperands(LHS, RHS, Loc, false,
8901                                        /*AllowBothBool*/true,
8902                                        /*AllowBoolConversions*/false);
8903   if (vType.isNull())
8904     return InvalidOperands(Loc, LHS, RHS);
8905   if (getLangOpts().OpenCL && getLangOpts().OpenCLVersion < 120 &&
8906       vType->hasFloatingRepresentation())
8907     return InvalidOperands(Loc, LHS, RHS);
8908 
8909   return GetSignedVectorType(LHS.get()->getType());
8910 }
8911 
8912 inline QualType Sema::CheckBitwiseOperands(
8913   ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
8914   checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8915 
8916   if (LHS.get()->getType()->isVectorType() ||
8917       RHS.get()->getType()->isVectorType()) {
8918     if (LHS.get()->getType()->hasIntegerRepresentation() &&
8919         RHS.get()->getType()->hasIntegerRepresentation())
8920       return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
8921                         /*AllowBothBool*/true,
8922                         /*AllowBoolConversions*/getLangOpts().ZVector);
8923     return InvalidOperands(Loc, LHS, RHS);
8924   }
8925 
8926   ExprResult LHSResult = LHS, RHSResult = RHS;
8927   QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
8928                                                  IsCompAssign);
8929   if (LHSResult.isInvalid() || RHSResult.isInvalid())
8930     return QualType();
8931   LHS = LHSResult.get();
8932   RHS = RHSResult.get();
8933 
8934   if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType())
8935     return compType;
8936   return InvalidOperands(Loc, LHS, RHS);
8937 }
8938 
8939 inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
8940   ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) {
8941 
8942   // Check vector operands differently.
8943   if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType())
8944     return CheckVectorLogicalOperands(LHS, RHS, Loc);
8945 
8946   // Diagnose cases where the user write a logical and/or but probably meant a
8947   // bitwise one.  We do this when the LHS is a non-bool integer and the RHS
8948   // is a constant.
8949   if (LHS.get()->getType()->isIntegerType() &&
8950       !LHS.get()->getType()->isBooleanType() &&
8951       RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() &&
8952       // Don't warn in macros or template instantiations.
8953       !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) {
8954     // If the RHS can be constant folded, and if it constant folds to something
8955     // that isn't 0 or 1 (which indicate a potential logical operation that
8956     // happened to fold to true/false) then warn.
8957     // Parens on the RHS are ignored.
8958     llvm::APSInt Result;
8959     if (RHS.get()->EvaluateAsInt(Result, Context))
8960       if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() &&
8961            !RHS.get()->getExprLoc().isMacroID()) ||
8962           (Result != 0 && Result != 1)) {
8963         Diag(Loc, diag::warn_logical_instead_of_bitwise)
8964           << RHS.get()->getSourceRange()
8965           << (Opc == BO_LAnd ? "&&" : "||");
8966         // Suggest replacing the logical operator with the bitwise version
8967         Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator)
8968             << (Opc == BO_LAnd ? "&" : "|")
8969             << FixItHint::CreateReplacement(SourceRange(
8970                 Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(),
8971                                                 getLangOpts())),
8972                                             Opc == BO_LAnd ? "&" : "|");
8973         if (Opc == BO_LAnd)
8974           // Suggest replacing "Foo() && kNonZero" with "Foo()"
8975           Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant)
8976               << FixItHint::CreateRemoval(
8977                   SourceRange(
8978                       Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(),
8979                                                  0, getSourceManager(),
8980                                                  getLangOpts()),
8981                       RHS.get()->getLocEnd()));
8982       }
8983   }
8984 
8985   if (!Context.getLangOpts().CPlusPlus) {
8986     // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do
8987     // not operate on the built-in scalar and vector float types.
8988     if (Context.getLangOpts().OpenCL &&
8989         Context.getLangOpts().OpenCLVersion < 120) {
8990       if (LHS.get()->getType()->isFloatingType() ||
8991           RHS.get()->getType()->isFloatingType())
8992         return InvalidOperands(Loc, LHS, RHS);
8993     }
8994 
8995     LHS = UsualUnaryConversions(LHS.get());
8996     if (LHS.isInvalid())
8997       return QualType();
8998 
8999     RHS = UsualUnaryConversions(RHS.get());
9000     if (RHS.isInvalid())
9001       return QualType();
9002 
9003     if (!LHS.get()->getType()->isScalarType() ||
9004         !RHS.get()->getType()->isScalarType())
9005       return InvalidOperands(Loc, LHS, RHS);
9006 
9007     return Context.IntTy;
9008   }
9009 
9010   // The following is safe because we only use this method for
9011   // non-overloadable operands.
9012 
9013   // C++ [expr.log.and]p1
9014   // C++ [expr.log.or]p1
9015   // The operands are both contextually converted to type bool.
9016   ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get());
9017   if (LHSRes.isInvalid())
9018     return InvalidOperands(Loc, LHS, RHS);
9019   LHS = LHSRes;
9020 
9021   ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get());
9022   if (RHSRes.isInvalid())
9023     return InvalidOperands(Loc, LHS, RHS);
9024   RHS = RHSRes;
9025 
9026   // C++ [expr.log.and]p2
9027   // C++ [expr.log.or]p2
9028   // The result is a bool.
9029   return Context.BoolTy;
9030 }
9031 
9032 static bool IsReadonlyMessage(Expr *E, Sema &S) {
9033   const MemberExpr *ME = dyn_cast<MemberExpr>(E);
9034   if (!ME) return false;
9035   if (!isa<FieldDecl>(ME->getMemberDecl())) return false;
9036   ObjCMessageExpr *Base =
9037     dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts());
9038   if (!Base) return false;
9039   return Base->getMethodDecl() != nullptr;
9040 }
9041 
9042 /// Is the given expression (which must be 'const') a reference to a
9043 /// variable which was originally non-const, but which has become
9044 /// 'const' due to being captured within a block?
9045 enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda };
9046 static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) {
9047   assert(E->isLValue() && E->getType().isConstQualified());
9048   E = E->IgnoreParens();
9049 
9050   // Must be a reference to a declaration from an enclosing scope.
9051   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
9052   if (!DRE) return NCCK_None;
9053   if (!DRE->refersToEnclosingVariableOrCapture()) return NCCK_None;
9054 
9055   // The declaration must be a variable which is not declared 'const'.
9056   VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
9057   if (!var) return NCCK_None;
9058   if (var->getType().isConstQualified()) return NCCK_None;
9059   assert(var->hasLocalStorage() && "capture added 'const' to non-local?");
9060 
9061   // Decide whether the first capture was for a block or a lambda.
9062   DeclContext *DC = S.CurContext, *Prev = nullptr;
9063   while (DC != var->getDeclContext()) {
9064     Prev = DC;
9065     DC = DC->getParent();
9066   }
9067   // Unless we have an init-capture, we've gone one step too far.
9068   if (!var->isInitCapture())
9069     DC = Prev;
9070   return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda);
9071 }
9072 
9073 static bool IsTypeModifiable(QualType Ty, bool IsDereference) {
9074   Ty = Ty.getNonReferenceType();
9075   if (IsDereference && Ty->isPointerType())
9076     Ty = Ty->getPointeeType();
9077   return !Ty.isConstQualified();
9078 }
9079 
9080 /// Emit the "read-only variable not assignable" error and print notes to give
9081 /// more information about why the variable is not assignable, such as pointing
9082 /// to the declaration of a const variable, showing that a method is const, or
9083 /// that the function is returning a const reference.
9084 static void DiagnoseConstAssignment(Sema &S, const Expr *E,
9085                                     SourceLocation Loc) {
9086   // Update err_typecheck_assign_const and note_typecheck_assign_const
9087   // when this enum is changed.
9088   enum {
9089     ConstFunction,
9090     ConstVariable,
9091     ConstMember,
9092     ConstMethod,
9093     ConstUnknown,  // Keep as last element
9094   };
9095 
9096   SourceRange ExprRange = E->getSourceRange();
9097 
9098   // Only emit one error on the first const found.  All other consts will emit
9099   // a note to the error.
9100   bool DiagnosticEmitted = false;
9101 
9102   // Track if the current expression is the result of a derefence, and if the
9103   // next checked expression is the result of a derefence.
9104   bool IsDereference = false;
9105   bool NextIsDereference = false;
9106 
9107   // Loop to process MemberExpr chains.
9108   while (true) {
9109     IsDereference = NextIsDereference;
9110     NextIsDereference = false;
9111 
9112     E = E->IgnoreParenImpCasts();
9113     if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
9114       NextIsDereference = ME->isArrow();
9115       const ValueDecl *VD = ME->getMemberDecl();
9116       if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) {
9117         // Mutable fields can be modified even if the class is const.
9118         if (Field->isMutable()) {
9119           assert(DiagnosticEmitted && "Expected diagnostic not emitted.");
9120           break;
9121         }
9122 
9123         if (!IsTypeModifiable(Field->getType(), IsDereference)) {
9124           if (!DiagnosticEmitted) {
9125             S.Diag(Loc, diag::err_typecheck_assign_const)
9126                 << ExprRange << ConstMember << false /*static*/ << Field
9127                 << Field->getType();
9128             DiagnosticEmitted = true;
9129           }
9130           S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9131               << ConstMember << false /*static*/ << Field << Field->getType()
9132               << Field->getSourceRange();
9133         }
9134         E = ME->getBase();
9135         continue;
9136       } else if (const VarDecl *VDecl = dyn_cast<VarDecl>(VD)) {
9137         if (VDecl->getType().isConstQualified()) {
9138           if (!DiagnosticEmitted) {
9139             S.Diag(Loc, diag::err_typecheck_assign_const)
9140                 << ExprRange << ConstMember << true /*static*/ << VDecl
9141                 << VDecl->getType();
9142             DiagnosticEmitted = true;
9143           }
9144           S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9145               << ConstMember << true /*static*/ << VDecl << VDecl->getType()
9146               << VDecl->getSourceRange();
9147         }
9148         // Static fields do not inherit constness from parents.
9149         break;
9150       }
9151       break;
9152     } // End MemberExpr
9153     break;
9154   }
9155 
9156   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
9157     // Function calls
9158     const FunctionDecl *FD = CE->getDirectCallee();
9159     if (!IsTypeModifiable(FD->getReturnType(), IsDereference)) {
9160       if (!DiagnosticEmitted) {
9161         S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
9162                                                       << ConstFunction << FD;
9163         DiagnosticEmitted = true;
9164       }
9165       S.Diag(FD->getReturnTypeSourceRange().getBegin(),
9166              diag::note_typecheck_assign_const)
9167           << ConstFunction << FD << FD->getReturnType()
9168           << FD->getReturnTypeSourceRange();
9169     }
9170   } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
9171     // Point to variable declaration.
9172     if (const ValueDecl *VD = DRE->getDecl()) {
9173       if (!IsTypeModifiable(VD->getType(), IsDereference)) {
9174         if (!DiagnosticEmitted) {
9175           S.Diag(Loc, diag::err_typecheck_assign_const)
9176               << ExprRange << ConstVariable << VD << VD->getType();
9177           DiagnosticEmitted = true;
9178         }
9179         S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9180             << ConstVariable << VD << VD->getType() << VD->getSourceRange();
9181       }
9182     }
9183   } else if (isa<CXXThisExpr>(E)) {
9184     if (const DeclContext *DC = S.getFunctionLevelDeclContext()) {
9185       if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
9186         if (MD->isConst()) {
9187           if (!DiagnosticEmitted) {
9188             S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
9189                                                           << ConstMethod << MD;
9190             DiagnosticEmitted = true;
9191           }
9192           S.Diag(MD->getLocation(), diag::note_typecheck_assign_const)
9193               << ConstMethod << MD << MD->getSourceRange();
9194         }
9195       }
9196     }
9197   }
9198 
9199   if (DiagnosticEmitted)
9200     return;
9201 
9202   // Can't determine a more specific message, so display the generic error.
9203   S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange << ConstUnknown;
9204 }
9205 
9206 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue.  If not,
9207 /// emit an error and return true.  If so, return false.
9208 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
9209   assert(!E->hasPlaceholderType(BuiltinType::PseudoObject));
9210   SourceLocation OrigLoc = Loc;
9211   Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
9212                                                               &Loc);
9213   if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S))
9214     IsLV = Expr::MLV_InvalidMessageExpression;
9215   if (IsLV == Expr::MLV_Valid)
9216     return false;
9217 
9218   unsigned DiagID = 0;
9219   bool NeedType = false;
9220   switch (IsLV) { // C99 6.5.16p2
9221   case Expr::MLV_ConstQualified:
9222     // Use a specialized diagnostic when we're assigning to an object
9223     // from an enclosing function or block.
9224     if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) {
9225       if (NCCK == NCCK_Block)
9226         DiagID = diag::err_block_decl_ref_not_modifiable_lvalue;
9227       else
9228         DiagID = diag::err_lambda_decl_ref_not_modifiable_lvalue;
9229       break;
9230     }
9231 
9232     // In ARC, use some specialized diagnostics for occasions where we
9233     // infer 'const'.  These are always pseudo-strong variables.
9234     if (S.getLangOpts().ObjCAutoRefCount) {
9235       DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
9236       if (declRef && isa<VarDecl>(declRef->getDecl())) {
9237         VarDecl *var = cast<VarDecl>(declRef->getDecl());
9238 
9239         // Use the normal diagnostic if it's pseudo-__strong but the
9240         // user actually wrote 'const'.
9241         if (var->isARCPseudoStrong() &&
9242             (!var->getTypeSourceInfo() ||
9243              !var->getTypeSourceInfo()->getType().isConstQualified())) {
9244           // There are two pseudo-strong cases:
9245           //  - self
9246           ObjCMethodDecl *method = S.getCurMethodDecl();
9247           if (method && var == method->getSelfDecl())
9248             DiagID = method->isClassMethod()
9249               ? diag::err_typecheck_arc_assign_self_class_method
9250               : diag::err_typecheck_arc_assign_self;
9251 
9252           //  - fast enumeration variables
9253           else
9254             DiagID = diag::err_typecheck_arr_assign_enumeration;
9255 
9256           SourceRange Assign;
9257           if (Loc != OrigLoc)
9258             Assign = SourceRange(OrigLoc, OrigLoc);
9259           S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
9260           // We need to preserve the AST regardless, so migration tool
9261           // can do its job.
9262           return false;
9263         }
9264       }
9265     }
9266 
9267     // If none of the special cases above are triggered, then this is a
9268     // simple const assignment.
9269     if (DiagID == 0) {
9270       DiagnoseConstAssignment(S, E, Loc);
9271       return true;
9272     }
9273 
9274     break;
9275   case Expr::MLV_ConstAddrSpace:
9276     DiagnoseConstAssignment(S, E, Loc);
9277     return true;
9278   case Expr::MLV_ArrayType:
9279   case Expr::MLV_ArrayTemporary:
9280     DiagID = diag::err_typecheck_array_not_modifiable_lvalue;
9281     NeedType = true;
9282     break;
9283   case Expr::MLV_NotObjectType:
9284     DiagID = diag::err_typecheck_non_object_not_modifiable_lvalue;
9285     NeedType = true;
9286     break;
9287   case Expr::MLV_LValueCast:
9288     DiagID = diag::err_typecheck_lvalue_casts_not_supported;
9289     break;
9290   case Expr::MLV_Valid:
9291     llvm_unreachable("did not take early return for MLV_Valid");
9292   case Expr::MLV_InvalidExpression:
9293   case Expr::MLV_MemberFunction:
9294   case Expr::MLV_ClassTemporary:
9295     DiagID = diag::err_typecheck_expression_not_modifiable_lvalue;
9296     break;
9297   case Expr::MLV_IncompleteType:
9298   case Expr::MLV_IncompleteVoidType:
9299     return S.RequireCompleteType(Loc, E->getType(),
9300              diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E);
9301   case Expr::MLV_DuplicateVectorComponents:
9302     DiagID = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
9303     break;
9304   case Expr::MLV_NoSetterProperty:
9305     llvm_unreachable("readonly properties should be processed differently");
9306   case Expr::MLV_InvalidMessageExpression:
9307     DiagID = diag::error_readonly_message_assignment;
9308     break;
9309   case Expr::MLV_SubObjCPropertySetting:
9310     DiagID = diag::error_no_subobject_property_setting;
9311     break;
9312   }
9313 
9314   SourceRange Assign;
9315   if (Loc != OrigLoc)
9316     Assign = SourceRange(OrigLoc, OrigLoc);
9317   if (NeedType)
9318     S.Diag(Loc, DiagID) << E->getType() << E->getSourceRange() << Assign;
9319   else
9320     S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
9321   return true;
9322 }
9323 
9324 static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr,
9325                                          SourceLocation Loc,
9326                                          Sema &Sema) {
9327   // C / C++ fields
9328   MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr);
9329   MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr);
9330   if (ML && MR && ML->getMemberDecl() == MR->getMemberDecl()) {
9331     if (isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase()))
9332       Sema.Diag(Loc, diag::warn_identity_field_assign) << 0;
9333   }
9334 
9335   // Objective-C instance variables
9336   ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr);
9337   ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr);
9338   if (OL && OR && OL->getDecl() == OR->getDecl()) {
9339     DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts());
9340     DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts());
9341     if (RL && RR && RL->getDecl() == RR->getDecl())
9342       Sema.Diag(Loc, diag::warn_identity_field_assign) << 1;
9343   }
9344 }
9345 
9346 // C99 6.5.16.1
9347 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS,
9348                                        SourceLocation Loc,
9349                                        QualType CompoundType) {
9350   assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject));
9351 
9352   // Verify that LHS is a modifiable lvalue, and emit error if not.
9353   if (CheckForModifiableLvalue(LHSExpr, Loc, *this))
9354     return QualType();
9355 
9356   QualType LHSType = LHSExpr->getType();
9357   QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() :
9358                                              CompoundType;
9359   AssignConvertType ConvTy;
9360   if (CompoundType.isNull()) {
9361     Expr *RHSCheck = RHS.get();
9362 
9363     CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this);
9364 
9365     QualType LHSTy(LHSType);
9366     ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
9367     if (RHS.isInvalid())
9368       return QualType();
9369     // Special case of NSObject attributes on c-style pointer types.
9370     if (ConvTy == IncompatiblePointer &&
9371         ((Context.isObjCNSObjectType(LHSType) &&
9372           RHSType->isObjCObjectPointerType()) ||
9373          (Context.isObjCNSObjectType(RHSType) &&
9374           LHSType->isObjCObjectPointerType())))
9375       ConvTy = Compatible;
9376 
9377     if (ConvTy == Compatible &&
9378         LHSType->isObjCObjectType())
9379         Diag(Loc, diag::err_objc_object_assignment)
9380           << LHSType;
9381 
9382     // If the RHS is a unary plus or minus, check to see if they = and + are
9383     // right next to each other.  If so, the user may have typo'd "x =+ 4"
9384     // instead of "x += 4".
9385     if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
9386       RHSCheck = ICE->getSubExpr();
9387     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
9388       if ((UO->getOpcode() == UO_Plus ||
9389            UO->getOpcode() == UO_Minus) &&
9390           Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
9391           // Only if the two operators are exactly adjacent.
9392           Loc.getLocWithOffset(1) == UO->getOperatorLoc() &&
9393           // And there is a space or other character before the subexpr of the
9394           // unary +/-.  We don't want to warn on "x=-1".
9395           Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
9396           UO->getSubExpr()->getLocStart().isFileID()) {
9397         Diag(Loc, diag::warn_not_compound_assign)
9398           << (UO->getOpcode() == UO_Plus ? "+" : "-")
9399           << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
9400       }
9401     }
9402 
9403     if (ConvTy == Compatible) {
9404       if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) {
9405         // Warn about retain cycles where a block captures the LHS, but
9406         // not if the LHS is a simple variable into which the block is
9407         // being stored...unless that variable can be captured by reference!
9408         const Expr *InnerLHS = LHSExpr->IgnoreParenCasts();
9409         const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS);
9410         if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>())
9411           checkRetainCycles(LHSExpr, RHS.get());
9412 
9413         // It is safe to assign a weak reference into a strong variable.
9414         // Although this code can still have problems:
9415         //   id x = self.weakProp;
9416         //   id y = self.weakProp;
9417         // we do not warn to warn spuriously when 'x' and 'y' are on separate
9418         // paths through the function. This should be revisited if
9419         // -Wrepeated-use-of-weak is made flow-sensitive.
9420         if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
9421                              RHS.get()->getLocStart()))
9422           getCurFunction()->markSafeWeakUse(RHS.get());
9423 
9424       } else if (getLangOpts().ObjCAutoRefCount) {
9425         checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get());
9426       }
9427     }
9428   } else {
9429     // Compound assignment "x += y"
9430     ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType);
9431   }
9432 
9433   if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
9434                                RHS.get(), AA_Assigning))
9435     return QualType();
9436 
9437   CheckForNullPointerDereference(*this, LHSExpr);
9438 
9439   // C99 6.5.16p3: The type of an assignment expression is the type of the
9440   // left operand unless the left operand has qualified type, in which case
9441   // it is the unqualified version of the type of the left operand.
9442   // C99 6.5.16.1p2: In simple assignment, the value of the right operand
9443   // is converted to the type of the assignment expression (above).
9444   // C++ 5.17p1: the type of the assignment expression is that of its left
9445   // operand.
9446   return (getLangOpts().CPlusPlus
9447           ? LHSType : LHSType.getUnqualifiedType());
9448 }
9449 
9450 // C99 6.5.17
9451 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS,
9452                                    SourceLocation Loc) {
9453   LHS = S.CheckPlaceholderExpr(LHS.get());
9454   RHS = S.CheckPlaceholderExpr(RHS.get());
9455   if (LHS.isInvalid() || RHS.isInvalid())
9456     return QualType();
9457 
9458   // C's comma performs lvalue conversion (C99 6.3.2.1) on both its
9459   // operands, but not unary promotions.
9460   // C++'s comma does not do any conversions at all (C++ [expr.comma]p1).
9461 
9462   // So we treat the LHS as a ignored value, and in C++ we allow the
9463   // containing site to determine what should be done with the RHS.
9464   LHS = S.IgnoredValueConversions(LHS.get());
9465   if (LHS.isInvalid())
9466     return QualType();
9467 
9468   S.DiagnoseUnusedExprResult(LHS.get());
9469 
9470   if (!S.getLangOpts().CPlusPlus) {
9471     RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
9472     if (RHS.isInvalid())
9473       return QualType();
9474     if (!RHS.get()->getType()->isVoidType())
9475       S.RequireCompleteType(Loc, RHS.get()->getType(),
9476                             diag::err_incomplete_type);
9477   }
9478 
9479   return RHS.get()->getType();
9480 }
9481 
9482 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
9483 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
9484 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op,
9485                                                ExprValueKind &VK,
9486                                                ExprObjectKind &OK,
9487                                                SourceLocation OpLoc,
9488                                                bool IsInc, bool IsPrefix) {
9489   if (Op->isTypeDependent())
9490     return S.Context.DependentTy;
9491 
9492   QualType ResType = Op->getType();
9493   // Atomic types can be used for increment / decrement where the non-atomic
9494   // versions can, so ignore the _Atomic() specifier for the purpose of
9495   // checking.
9496   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
9497     ResType = ResAtomicType->getValueType();
9498 
9499   assert(!ResType.isNull() && "no type for increment/decrement expression");
9500 
9501   if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) {
9502     // Decrement of bool is not allowed.
9503     if (!IsInc) {
9504       S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
9505       return QualType();
9506     }
9507     // Increment of bool sets it to true, but is deprecated.
9508     S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
9509   } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) {
9510     // Error on enum increments and decrements in C++ mode
9511     S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType;
9512     return QualType();
9513   } else if (ResType->isRealType()) {
9514     // OK!
9515   } else if (ResType->isPointerType()) {
9516     // C99 6.5.2.4p2, 6.5.6p2
9517     if (!checkArithmeticOpPointerOperand(S, OpLoc, Op))
9518       return QualType();
9519   } else if (ResType->isObjCObjectPointerType()) {
9520     // On modern runtimes, ObjC pointer arithmetic is forbidden.
9521     // Otherwise, we just need a complete type.
9522     if (checkArithmeticIncompletePointerType(S, OpLoc, Op) ||
9523         checkArithmeticOnObjCPointer(S, OpLoc, Op))
9524       return QualType();
9525   } else if (ResType->isAnyComplexType()) {
9526     // C99 does not support ++/-- on complex types, we allow as an extension.
9527     S.Diag(OpLoc, diag::ext_integer_increment_complex)
9528       << ResType << Op->getSourceRange();
9529   } else if (ResType->isPlaceholderType()) {
9530     ExprResult PR = S.CheckPlaceholderExpr(Op);
9531     if (PR.isInvalid()) return QualType();
9532     return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc,
9533                                           IsInc, IsPrefix);
9534   } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) {
9535     // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 )
9536   } else if (S.getLangOpts().ZVector && ResType->isVectorType() &&
9537              (ResType->getAs<VectorType>()->getVectorKind() !=
9538               VectorType::AltiVecBool)) {
9539     // The z vector extensions allow ++ and -- for non-bool vectors.
9540   } else if(S.getLangOpts().OpenCL && ResType->isVectorType() &&
9541             ResType->getAs<VectorType>()->getElementType()->isIntegerType()) {
9542     // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types.
9543   } else {
9544     S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
9545       << ResType << int(IsInc) << Op->getSourceRange();
9546     return QualType();
9547   }
9548   // At this point, we know we have a real, complex or pointer type.
9549   // Now make sure the operand is a modifiable lvalue.
9550   if (CheckForModifiableLvalue(Op, OpLoc, S))
9551     return QualType();
9552   // In C++, a prefix increment is the same type as the operand. Otherwise
9553   // (in C or with postfix), the increment is the unqualified type of the
9554   // operand.
9555   if (IsPrefix && S.getLangOpts().CPlusPlus) {
9556     VK = VK_LValue;
9557     OK = Op->getObjectKind();
9558     return ResType;
9559   } else {
9560     VK = VK_RValue;
9561     return ResType.getUnqualifiedType();
9562   }
9563 }
9564 
9565 
9566 /// getPrimaryDecl - Helper function for CheckAddressOfOperand().
9567 /// This routine allows us to typecheck complex/recursive expressions
9568 /// where the declaration is needed for type checking. We only need to
9569 /// handle cases when the expression references a function designator
9570 /// or is an lvalue. Here are some examples:
9571 ///  - &(x) => x
9572 ///  - &*****f => f for f a function designator.
9573 ///  - &s.xx => s
9574 ///  - &s.zz[1].yy -> s, if zz is an array
9575 ///  - *(x + 1) -> x, if x is an array
9576 ///  - &"123"[2] -> 0
9577 ///  - & __real__ x -> x
9578 static ValueDecl *getPrimaryDecl(Expr *E) {
9579   switch (E->getStmtClass()) {
9580   case Stmt::DeclRefExprClass:
9581     return cast<DeclRefExpr>(E)->getDecl();
9582   case Stmt::MemberExprClass:
9583     // If this is an arrow operator, the address is an offset from
9584     // the base's value, so the object the base refers to is
9585     // irrelevant.
9586     if (cast<MemberExpr>(E)->isArrow())
9587       return nullptr;
9588     // Otherwise, the expression refers to a part of the base
9589     return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
9590   case Stmt::ArraySubscriptExprClass: {
9591     // FIXME: This code shouldn't be necessary!  We should catch the implicit
9592     // promotion of register arrays earlier.
9593     Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
9594     if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
9595       if (ICE->getSubExpr()->getType()->isArrayType())
9596         return getPrimaryDecl(ICE->getSubExpr());
9597     }
9598     return nullptr;
9599   }
9600   case Stmt::UnaryOperatorClass: {
9601     UnaryOperator *UO = cast<UnaryOperator>(E);
9602 
9603     switch(UO->getOpcode()) {
9604     case UO_Real:
9605     case UO_Imag:
9606     case UO_Extension:
9607       return getPrimaryDecl(UO->getSubExpr());
9608     default:
9609       return nullptr;
9610     }
9611   }
9612   case Stmt::ParenExprClass:
9613     return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
9614   case Stmt::ImplicitCastExprClass:
9615     // If the result of an implicit cast is an l-value, we care about
9616     // the sub-expression; otherwise, the result here doesn't matter.
9617     return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
9618   default:
9619     return nullptr;
9620   }
9621 }
9622 
9623 namespace {
9624   enum {
9625     AO_Bit_Field = 0,
9626     AO_Vector_Element = 1,
9627     AO_Property_Expansion = 2,
9628     AO_Register_Variable = 3,
9629     AO_No_Error = 4
9630   };
9631 }
9632 /// \brief Diagnose invalid operand for address of operations.
9633 ///
9634 /// \param Type The type of operand which cannot have its address taken.
9635 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc,
9636                                          Expr *E, unsigned Type) {
9637   S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange();
9638 }
9639 
9640 /// CheckAddressOfOperand - The operand of & must be either a function
9641 /// designator or an lvalue designating an object. If it is an lvalue, the
9642 /// object cannot be declared with storage class register or be a bit field.
9643 /// Note: The usual conversions are *not* applied to the operand of the &
9644 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
9645 /// In C++, the operand might be an overloaded function name, in which case
9646 /// we allow the '&' but retain the overloaded-function type.
9647 QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) {
9648   if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){
9649     if (PTy->getKind() == BuiltinType::Overload) {
9650       Expr *E = OrigOp.get()->IgnoreParens();
9651       if (!isa<OverloadExpr>(E)) {
9652         assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf);
9653         Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function)
9654           << OrigOp.get()->getSourceRange();
9655         return QualType();
9656       }
9657 
9658       OverloadExpr *Ovl = cast<OverloadExpr>(E);
9659       if (isa<UnresolvedMemberExpr>(Ovl))
9660         if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) {
9661           Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
9662             << OrigOp.get()->getSourceRange();
9663           return QualType();
9664         }
9665 
9666       return Context.OverloadTy;
9667     }
9668 
9669     if (PTy->getKind() == BuiltinType::UnknownAny)
9670       return Context.UnknownAnyTy;
9671 
9672     if (PTy->getKind() == BuiltinType::BoundMember) {
9673       Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
9674         << OrigOp.get()->getSourceRange();
9675       return QualType();
9676     }
9677 
9678     OrigOp = CheckPlaceholderExpr(OrigOp.get());
9679     if (OrigOp.isInvalid()) return QualType();
9680   }
9681 
9682   if (OrigOp.get()->isTypeDependent())
9683     return Context.DependentTy;
9684 
9685   assert(!OrigOp.get()->getType()->isPlaceholderType());
9686 
9687   // Make sure to ignore parentheses in subsequent checks
9688   Expr *op = OrigOp.get()->IgnoreParens();
9689 
9690   // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
9691   if (LangOpts.OpenCL && op->getType()->isFunctionType()) {
9692     Diag(op->getExprLoc(), diag::err_opencl_taking_function_address);
9693     return QualType();
9694   }
9695 
9696   if (getLangOpts().C99) {
9697     // Implement C99-only parts of addressof rules.
9698     if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
9699       if (uOp->getOpcode() == UO_Deref)
9700         // Per C99 6.5.3.2, the address of a deref always returns a valid result
9701         // (assuming the deref expression is valid).
9702         return uOp->getSubExpr()->getType();
9703     }
9704     // Technically, there should be a check for array subscript
9705     // expressions here, but the result of one is always an lvalue anyway.
9706   }
9707   ValueDecl *dcl = getPrimaryDecl(op);
9708   Expr::LValueClassification lval = op->ClassifyLValue(Context);
9709   unsigned AddressOfError = AO_No_Error;
9710 
9711   if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) {
9712     bool sfinae = (bool)isSFINAEContext();
9713     Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary
9714                                   : diag::ext_typecheck_addrof_temporary)
9715       << op->getType() << op->getSourceRange();
9716     if (sfinae)
9717       return QualType();
9718     // Materialize the temporary as an lvalue so that we can take its address.
9719     OrigOp = op = new (Context)
9720         MaterializeTemporaryExpr(op->getType(), OrigOp.get(), true);
9721   } else if (isa<ObjCSelectorExpr>(op)) {
9722     return Context.getPointerType(op->getType());
9723   } else if (lval == Expr::LV_MemberFunction) {
9724     // If it's an instance method, make a member pointer.
9725     // The expression must have exactly the form &A::foo.
9726 
9727     // If the underlying expression isn't a decl ref, give up.
9728     if (!isa<DeclRefExpr>(op)) {
9729       Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
9730         << OrigOp.get()->getSourceRange();
9731       return QualType();
9732     }
9733     DeclRefExpr *DRE = cast<DeclRefExpr>(op);
9734     CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl());
9735 
9736     // The id-expression was parenthesized.
9737     if (OrigOp.get() != DRE) {
9738       Diag(OpLoc, diag::err_parens_pointer_member_function)
9739         << OrigOp.get()->getSourceRange();
9740 
9741     // The method was named without a qualifier.
9742     } else if (!DRE->getQualifier()) {
9743       if (MD->getParent()->getName().empty())
9744         Diag(OpLoc, diag::err_unqualified_pointer_member_function)
9745           << op->getSourceRange();
9746       else {
9747         SmallString<32> Str;
9748         StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str);
9749         Diag(OpLoc, diag::err_unqualified_pointer_member_function)
9750           << op->getSourceRange()
9751           << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual);
9752       }
9753     }
9754 
9755     // Taking the address of a dtor is illegal per C++ [class.dtor]p2.
9756     if (isa<CXXDestructorDecl>(MD))
9757       Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange();
9758 
9759     QualType MPTy = Context.getMemberPointerType(
9760         op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr());
9761     if (Context.getTargetInfo().getCXXABI().isMicrosoft())
9762       RequireCompleteType(OpLoc, MPTy, 0);
9763     return MPTy;
9764   } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
9765     // C99 6.5.3.2p1
9766     // The operand must be either an l-value or a function designator
9767     if (!op->getType()->isFunctionType()) {
9768       // Use a special diagnostic for loads from property references.
9769       if (isa<PseudoObjectExpr>(op)) {
9770         AddressOfError = AO_Property_Expansion;
9771       } else {
9772         Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
9773           << op->getType() << op->getSourceRange();
9774         return QualType();
9775       }
9776     }
9777   } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1
9778     // The operand cannot be a bit-field
9779     AddressOfError = AO_Bit_Field;
9780   } else if (op->getObjectKind() == OK_VectorComponent) {
9781     // The operand cannot be an element of a vector
9782     AddressOfError = AO_Vector_Element;
9783   } else if (dcl) { // C99 6.5.3.2p1
9784     // We have an lvalue with a decl. Make sure the decl is not declared
9785     // with the register storage-class specifier.
9786     if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
9787       // in C++ it is not error to take address of a register
9788       // variable (c++03 7.1.1P3)
9789       if (vd->getStorageClass() == SC_Register &&
9790           !getLangOpts().CPlusPlus) {
9791         AddressOfError = AO_Register_Variable;
9792       }
9793     } else if (isa<MSPropertyDecl>(dcl)) {
9794       AddressOfError = AO_Property_Expansion;
9795     } else if (isa<FunctionTemplateDecl>(dcl)) {
9796       return Context.OverloadTy;
9797     } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) {
9798       // Okay: we can take the address of a field.
9799       // Could be a pointer to member, though, if there is an explicit
9800       // scope qualifier for the class.
9801       if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
9802         DeclContext *Ctx = dcl->getDeclContext();
9803         if (Ctx && Ctx->isRecord()) {
9804           if (dcl->getType()->isReferenceType()) {
9805             Diag(OpLoc,
9806                  diag::err_cannot_form_pointer_to_member_of_reference_type)
9807               << dcl->getDeclName() << dcl->getType();
9808             return QualType();
9809           }
9810 
9811           while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion())
9812             Ctx = Ctx->getParent();
9813 
9814           QualType MPTy = Context.getMemberPointerType(
9815               op->getType(),
9816               Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
9817           if (Context.getTargetInfo().getCXXABI().isMicrosoft())
9818             RequireCompleteType(OpLoc, MPTy, 0);
9819           return MPTy;
9820         }
9821       }
9822     } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl))
9823       llvm_unreachable("Unknown/unexpected decl type");
9824   }
9825 
9826   if (AddressOfError != AO_No_Error) {
9827     diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError);
9828     return QualType();
9829   }
9830 
9831   if (lval == Expr::LV_IncompleteVoidType) {
9832     // Taking the address of a void variable is technically illegal, but we
9833     // allow it in cases which are otherwise valid.
9834     // Example: "extern void x; void* y = &x;".
9835     Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
9836   }
9837 
9838   // If the operand has type "type", the result has type "pointer to type".
9839   if (op->getType()->isObjCObjectType())
9840     return Context.getObjCObjectPointerType(op->getType());
9841   return Context.getPointerType(op->getType());
9842 }
9843 
9844 static void RecordModifiableNonNullParam(Sema &S, const Expr *Exp) {
9845   const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp);
9846   if (!DRE)
9847     return;
9848   const Decl *D = DRE->getDecl();
9849   if (!D)
9850     return;
9851   const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D);
9852   if (!Param)
9853     return;
9854   if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(Param->getDeclContext()))
9855     if (!FD->hasAttr<NonNullAttr>() && !Param->hasAttr<NonNullAttr>())
9856       return;
9857   if (FunctionScopeInfo *FD = S.getCurFunction())
9858     if (!FD->ModifiedNonNullParams.count(Param))
9859       FD->ModifiedNonNullParams.insert(Param);
9860 }
9861 
9862 /// CheckIndirectionOperand - Type check unary indirection (prefix '*').
9863 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK,
9864                                         SourceLocation OpLoc) {
9865   if (Op->isTypeDependent())
9866     return S.Context.DependentTy;
9867 
9868   ExprResult ConvResult = S.UsualUnaryConversions(Op);
9869   if (ConvResult.isInvalid())
9870     return QualType();
9871   Op = ConvResult.get();
9872   QualType OpTy = Op->getType();
9873   QualType Result;
9874 
9875   if (isa<CXXReinterpretCastExpr>(Op)) {
9876     QualType OpOrigType = Op->IgnoreParenCasts()->getType();
9877     S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
9878                                      Op->getSourceRange());
9879   }
9880 
9881   if (const PointerType *PT = OpTy->getAs<PointerType>())
9882     Result = PT->getPointeeType();
9883   else if (const ObjCObjectPointerType *OPT =
9884              OpTy->getAs<ObjCObjectPointerType>())
9885     Result = OPT->getPointeeType();
9886   else {
9887     ExprResult PR = S.CheckPlaceholderExpr(Op);
9888     if (PR.isInvalid()) return QualType();
9889     if (PR.get() != Op)
9890       return CheckIndirectionOperand(S, PR.get(), VK, OpLoc);
9891   }
9892 
9893   if (Result.isNull()) {
9894     S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
9895       << OpTy << Op->getSourceRange();
9896     return QualType();
9897   }
9898 
9899   // Note that per both C89 and C99, indirection is always legal, even if Result
9900   // is an incomplete type or void.  It would be possible to warn about
9901   // dereferencing a void pointer, but it's completely well-defined, and such a
9902   // warning is unlikely to catch any mistakes. In C++, indirection is not valid
9903   // for pointers to 'void' but is fine for any other pointer type:
9904   //
9905   // C++ [expr.unary.op]p1:
9906   //   [...] the expression to which [the unary * operator] is applied shall
9907   //   be a pointer to an object type, or a pointer to a function type
9908   if (S.getLangOpts().CPlusPlus && Result->isVoidType())
9909     S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer)
9910       << OpTy << Op->getSourceRange();
9911 
9912   // Dereferences are usually l-values...
9913   VK = VK_LValue;
9914 
9915   // ...except that certain expressions are never l-values in C.
9916   if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType())
9917     VK = VK_RValue;
9918 
9919   return Result;
9920 }
9921 
9922 BinaryOperatorKind Sema::ConvertTokenKindToBinaryOpcode(tok::TokenKind Kind) {
9923   BinaryOperatorKind Opc;
9924   switch (Kind) {
9925   default: llvm_unreachable("Unknown binop!");
9926   case tok::periodstar:           Opc = BO_PtrMemD; break;
9927   case tok::arrowstar:            Opc = BO_PtrMemI; break;
9928   case tok::star:                 Opc = BO_Mul; break;
9929   case tok::slash:                Opc = BO_Div; break;
9930   case tok::percent:              Opc = BO_Rem; break;
9931   case tok::plus:                 Opc = BO_Add; break;
9932   case tok::minus:                Opc = BO_Sub; break;
9933   case tok::lessless:             Opc = BO_Shl; break;
9934   case tok::greatergreater:       Opc = BO_Shr; break;
9935   case tok::lessequal:            Opc = BO_LE; break;
9936   case tok::less:                 Opc = BO_LT; break;
9937   case tok::greaterequal:         Opc = BO_GE; break;
9938   case tok::greater:              Opc = BO_GT; break;
9939   case tok::exclaimequal:         Opc = BO_NE; break;
9940   case tok::equalequal:           Opc = BO_EQ; break;
9941   case tok::amp:                  Opc = BO_And; break;
9942   case tok::caret:                Opc = BO_Xor; break;
9943   case tok::pipe:                 Opc = BO_Or; break;
9944   case tok::ampamp:               Opc = BO_LAnd; break;
9945   case tok::pipepipe:             Opc = BO_LOr; break;
9946   case tok::equal:                Opc = BO_Assign; break;
9947   case tok::starequal:            Opc = BO_MulAssign; break;
9948   case tok::slashequal:           Opc = BO_DivAssign; break;
9949   case tok::percentequal:         Opc = BO_RemAssign; break;
9950   case tok::plusequal:            Opc = BO_AddAssign; break;
9951   case tok::minusequal:           Opc = BO_SubAssign; break;
9952   case tok::lesslessequal:        Opc = BO_ShlAssign; break;
9953   case tok::greatergreaterequal:  Opc = BO_ShrAssign; break;
9954   case tok::ampequal:             Opc = BO_AndAssign; break;
9955   case tok::caretequal:           Opc = BO_XorAssign; break;
9956   case tok::pipeequal:            Opc = BO_OrAssign; break;
9957   case tok::comma:                Opc = BO_Comma; break;
9958   }
9959   return Opc;
9960 }
9961 
9962 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode(
9963   tok::TokenKind Kind) {
9964   UnaryOperatorKind Opc;
9965   switch (Kind) {
9966   default: llvm_unreachable("Unknown unary op!");
9967   case tok::plusplus:     Opc = UO_PreInc; break;
9968   case tok::minusminus:   Opc = UO_PreDec; break;
9969   case tok::amp:          Opc = UO_AddrOf; break;
9970   case tok::star:         Opc = UO_Deref; break;
9971   case tok::plus:         Opc = UO_Plus; break;
9972   case tok::minus:        Opc = UO_Minus; break;
9973   case tok::tilde:        Opc = UO_Not; break;
9974   case tok::exclaim:      Opc = UO_LNot; break;
9975   case tok::kw___real:    Opc = UO_Real; break;
9976   case tok::kw___imag:    Opc = UO_Imag; break;
9977   case tok::kw___extension__: Opc = UO_Extension; break;
9978   }
9979   return Opc;
9980 }
9981 
9982 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself.
9983 /// This warning is only emitted for builtin assignment operations. It is also
9984 /// suppressed in the event of macro expansions.
9985 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr,
9986                                    SourceLocation OpLoc) {
9987   if (!S.ActiveTemplateInstantiations.empty())
9988     return;
9989   if (OpLoc.isInvalid() || OpLoc.isMacroID())
9990     return;
9991   LHSExpr = LHSExpr->IgnoreParenImpCasts();
9992   RHSExpr = RHSExpr->IgnoreParenImpCasts();
9993   const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
9994   const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
9995   if (!LHSDeclRef || !RHSDeclRef ||
9996       LHSDeclRef->getLocation().isMacroID() ||
9997       RHSDeclRef->getLocation().isMacroID())
9998     return;
9999   const ValueDecl *LHSDecl =
10000     cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl());
10001   const ValueDecl *RHSDecl =
10002     cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl());
10003   if (LHSDecl != RHSDecl)
10004     return;
10005   if (LHSDecl->getType().isVolatileQualified())
10006     return;
10007   if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
10008     if (RefTy->getPointeeType().isVolatileQualified())
10009       return;
10010 
10011   S.Diag(OpLoc, diag::warn_self_assignment)
10012       << LHSDeclRef->getType()
10013       << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
10014 }
10015 
10016 /// Check if a bitwise-& is performed on an Objective-C pointer.  This
10017 /// is usually indicative of introspection within the Objective-C pointer.
10018 static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R,
10019                                           SourceLocation OpLoc) {
10020   if (!S.getLangOpts().ObjC1)
10021     return;
10022 
10023   const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr;
10024   const Expr *LHS = L.get();
10025   const Expr *RHS = R.get();
10026 
10027   if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
10028     ObjCPointerExpr = LHS;
10029     OtherExpr = RHS;
10030   }
10031   else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
10032     ObjCPointerExpr = RHS;
10033     OtherExpr = LHS;
10034   }
10035 
10036   // This warning is deliberately made very specific to reduce false
10037   // positives with logic that uses '&' for hashing.  This logic mainly
10038   // looks for code trying to introspect into tagged pointers, which
10039   // code should generally never do.
10040   if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) {
10041     unsigned Diag = diag::warn_objc_pointer_masking;
10042     // Determine if we are introspecting the result of performSelectorXXX.
10043     const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts();
10044     // Special case messages to -performSelector and friends, which
10045     // can return non-pointer values boxed in a pointer value.
10046     // Some clients may wish to silence warnings in this subcase.
10047     if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) {
10048       Selector S = ME->getSelector();
10049       StringRef SelArg0 = S.getNameForSlot(0);
10050       if (SelArg0.startswith("performSelector"))
10051         Diag = diag::warn_objc_pointer_masking_performSelector;
10052     }
10053 
10054     S.Diag(OpLoc, Diag)
10055       << ObjCPointerExpr->getSourceRange();
10056   }
10057 }
10058 
10059 static NamedDecl *getDeclFromExpr(Expr *E) {
10060   if (!E)
10061     return nullptr;
10062   if (auto *DRE = dyn_cast<DeclRefExpr>(E))
10063     return DRE->getDecl();
10064   if (auto *ME = dyn_cast<MemberExpr>(E))
10065     return ME->getMemberDecl();
10066   if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E))
10067     return IRE->getDecl();
10068   return nullptr;
10069 }
10070 
10071 /// CreateBuiltinBinOp - Creates a new built-in binary operation with
10072 /// operator @p Opc at location @c TokLoc. This routine only supports
10073 /// built-in operations; ActOnBinOp handles overloaded operators.
10074 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
10075                                     BinaryOperatorKind Opc,
10076                                     Expr *LHSExpr, Expr *RHSExpr) {
10077   if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) {
10078     // The syntax only allows initializer lists on the RHS of assignment,
10079     // so we don't need to worry about accepting invalid code for
10080     // non-assignment operators.
10081     // C++11 5.17p9:
10082     //   The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning
10083     //   of x = {} is x = T().
10084     InitializationKind Kind =
10085         InitializationKind::CreateDirectList(RHSExpr->getLocStart());
10086     InitializedEntity Entity =
10087         InitializedEntity::InitializeTemporary(LHSExpr->getType());
10088     InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr);
10089     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr);
10090     if (Init.isInvalid())
10091       return Init;
10092     RHSExpr = Init.get();
10093   }
10094 
10095   ExprResult LHS = LHSExpr, RHS = RHSExpr;
10096   QualType ResultTy;     // Result type of the binary operator.
10097   // The following two variables are used for compound assignment operators
10098   QualType CompLHSTy;    // Type of LHS after promotions for computation
10099   QualType CompResultTy; // Type of computation result
10100   ExprValueKind VK = VK_RValue;
10101   ExprObjectKind OK = OK_Ordinary;
10102 
10103   if (!getLangOpts().CPlusPlus) {
10104     // C cannot handle TypoExpr nodes on either side of a binop because it
10105     // doesn't handle dependent types properly, so make sure any TypoExprs have
10106     // been dealt with before checking the operands.
10107     LHS = CorrectDelayedTyposInExpr(LHSExpr);
10108     RHS = CorrectDelayedTyposInExpr(RHSExpr, [Opc, LHS](Expr *E) {
10109       if (Opc != BO_Assign)
10110         return ExprResult(E);
10111       // Avoid correcting the RHS to the same Expr as the LHS.
10112       Decl *D = getDeclFromExpr(E);
10113       return (D && D == getDeclFromExpr(LHS.get())) ? ExprError() : E;
10114     });
10115     if (!LHS.isUsable() || !RHS.isUsable())
10116       return ExprError();
10117   }
10118 
10119   switch (Opc) {
10120   case BO_Assign:
10121     ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
10122     if (getLangOpts().CPlusPlus &&
10123         LHS.get()->getObjectKind() != OK_ObjCProperty) {
10124       VK = LHS.get()->getValueKind();
10125       OK = LHS.get()->getObjectKind();
10126     }
10127     if (!ResultTy.isNull()) {
10128       DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
10129       DiagnoseSelfMove(LHS.get(), RHS.get(), OpLoc);
10130     }
10131     RecordModifiableNonNullParam(*this, LHS.get());
10132     break;
10133   case BO_PtrMemD:
10134   case BO_PtrMemI:
10135     ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
10136                                             Opc == BO_PtrMemI);
10137     break;
10138   case BO_Mul:
10139   case BO_Div:
10140     ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
10141                                            Opc == BO_Div);
10142     break;
10143   case BO_Rem:
10144     ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
10145     break;
10146   case BO_Add:
10147     ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
10148     break;
10149   case BO_Sub:
10150     ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
10151     break;
10152   case BO_Shl:
10153   case BO_Shr:
10154     ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
10155     break;
10156   case BO_LE:
10157   case BO_LT:
10158   case BO_GE:
10159   case BO_GT:
10160     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true);
10161     break;
10162   case BO_EQ:
10163   case BO_NE:
10164     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false);
10165     break;
10166   case BO_And:
10167     checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc);
10168   case BO_Xor:
10169   case BO_Or:
10170     ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc);
10171     break;
10172   case BO_LAnd:
10173   case BO_LOr:
10174     ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
10175     break;
10176   case BO_MulAssign:
10177   case BO_DivAssign:
10178     CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true,
10179                                                Opc == BO_DivAssign);
10180     CompLHSTy = CompResultTy;
10181     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10182       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10183     break;
10184   case BO_RemAssign:
10185     CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true);
10186     CompLHSTy = CompResultTy;
10187     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10188       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10189     break;
10190   case BO_AddAssign:
10191     CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy);
10192     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10193       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10194     break;
10195   case BO_SubAssign:
10196     CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy);
10197     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10198       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10199     break;
10200   case BO_ShlAssign:
10201   case BO_ShrAssign:
10202     CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true);
10203     CompLHSTy = CompResultTy;
10204     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10205       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10206     break;
10207   case BO_AndAssign:
10208   case BO_OrAssign: // fallthrough
10209 	  DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
10210   case BO_XorAssign:
10211     CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true);
10212     CompLHSTy = CompResultTy;
10213     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10214       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
10215     break;
10216   case BO_Comma:
10217     ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
10218     if (getLangOpts().CPlusPlus && !RHS.isInvalid()) {
10219       VK = RHS.get()->getValueKind();
10220       OK = RHS.get()->getObjectKind();
10221     }
10222     break;
10223   }
10224   if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
10225     return ExprError();
10226 
10227   // Check for array bounds violations for both sides of the BinaryOperator
10228   CheckArrayAccess(LHS.get());
10229   CheckArrayAccess(RHS.get());
10230 
10231   if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) {
10232     NamedDecl *ObjectSetClass = LookupSingleName(TUScope,
10233                                                  &Context.Idents.get("object_setClass"),
10234                                                  SourceLocation(), LookupOrdinaryName);
10235     if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) {
10236       SourceLocation RHSLocEnd = PP.getLocForEndOfToken(RHS.get()->getLocEnd());
10237       Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign) <<
10238       FixItHint::CreateInsertion(LHS.get()->getLocStart(), "object_setClass(") <<
10239       FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc), ",") <<
10240       FixItHint::CreateInsertion(RHSLocEnd, ")");
10241     }
10242     else
10243       Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign);
10244   }
10245   else if (const ObjCIvarRefExpr *OIRE =
10246            dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts()))
10247     DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get());
10248 
10249   if (CompResultTy.isNull())
10250     return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK,
10251                                         OK, OpLoc, FPFeatures.fp_contract);
10252   if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() !=
10253       OK_ObjCProperty) {
10254     VK = VK_LValue;
10255     OK = LHS.get()->getObjectKind();
10256   }
10257   return new (Context) CompoundAssignOperator(
10258       LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy,
10259       OpLoc, FPFeatures.fp_contract);
10260 }
10261 
10262 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
10263 /// operators are mixed in a way that suggests that the programmer forgot that
10264 /// comparison operators have higher precedence. The most typical example of
10265 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
10266 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc,
10267                                       SourceLocation OpLoc, Expr *LHSExpr,
10268                                       Expr *RHSExpr) {
10269   BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr);
10270   BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr);
10271 
10272   // Check that one of the sides is a comparison operator.
10273   bool isLeftComp = LHSBO && LHSBO->isComparisonOp();
10274   bool isRightComp = RHSBO && RHSBO->isComparisonOp();
10275   if (!isLeftComp && !isRightComp)
10276     return;
10277 
10278   // Bitwise operations are sometimes used as eager logical ops.
10279   // Don't diagnose this.
10280   bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp();
10281   bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp();
10282   if ((isLeftComp || isLeftBitwise) && (isRightComp || isRightBitwise))
10283     return;
10284 
10285   SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(),
10286                                                    OpLoc)
10287                                      : SourceRange(OpLoc, RHSExpr->getLocEnd());
10288   StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr();
10289   SourceRange ParensRange = isLeftComp ?
10290       SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd())
10291     : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocEnd());
10292 
10293   Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel)
10294     << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr;
10295   SuggestParentheses(Self, OpLoc,
10296     Self.PDiag(diag::note_precedence_silence) << OpStr,
10297     (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange());
10298   SuggestParentheses(Self, OpLoc,
10299     Self.PDiag(diag::note_precedence_bitwise_first)
10300       << BinaryOperator::getOpcodeStr(Opc),
10301     ParensRange);
10302 }
10303 
10304 /// \brief It accepts a '&' expr that is inside a '|' one.
10305 /// Emit a diagnostic together with a fixit hint that wraps the '&' expression
10306 /// in parentheses.
10307 static void
10308 EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc,
10309                                        BinaryOperator *Bop) {
10310   assert(Bop->getOpcode() == BO_And);
10311   Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or)
10312       << Bop->getSourceRange() << OpLoc;
10313   SuggestParentheses(Self, Bop->getOperatorLoc(),
10314     Self.PDiag(diag::note_precedence_silence)
10315       << Bop->getOpcodeStr(),
10316     Bop->getSourceRange());
10317 }
10318 
10319 /// \brief It accepts a '&&' expr that is inside a '||' one.
10320 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression
10321 /// in parentheses.
10322 static void
10323 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc,
10324                                        BinaryOperator *Bop) {
10325   assert(Bop->getOpcode() == BO_LAnd);
10326   Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or)
10327       << Bop->getSourceRange() << OpLoc;
10328   SuggestParentheses(Self, Bop->getOperatorLoc(),
10329     Self.PDiag(diag::note_precedence_silence)
10330       << Bop->getOpcodeStr(),
10331     Bop->getSourceRange());
10332 }
10333 
10334 /// \brief Returns true if the given expression can be evaluated as a constant
10335 /// 'true'.
10336 static bool EvaluatesAsTrue(Sema &S, Expr *E) {
10337   bool Res;
10338   return !E->isValueDependent() &&
10339          E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res;
10340 }
10341 
10342 /// \brief Returns true if the given expression can be evaluated as a constant
10343 /// 'false'.
10344 static bool EvaluatesAsFalse(Sema &S, Expr *E) {
10345   bool Res;
10346   return !E->isValueDependent() &&
10347          E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res;
10348 }
10349 
10350 /// \brief Look for '&&' in the left hand of a '||' expr.
10351 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc,
10352                                              Expr *LHSExpr, Expr *RHSExpr) {
10353   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) {
10354     if (Bop->getOpcode() == BO_LAnd) {
10355       // If it's "a && b || 0" don't warn since the precedence doesn't matter.
10356       if (EvaluatesAsFalse(S, RHSExpr))
10357         return;
10358       // If it's "1 && a || b" don't warn since the precedence doesn't matter.
10359       if (!EvaluatesAsTrue(S, Bop->getLHS()))
10360         return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
10361     } else if (Bop->getOpcode() == BO_LOr) {
10362       if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) {
10363         // If it's "a || b && 1 || c" we didn't warn earlier for
10364         // "a || b && 1", but warn now.
10365         if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS()))
10366           return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop);
10367       }
10368     }
10369   }
10370 }
10371 
10372 /// \brief Look for '&&' in the right hand of a '||' expr.
10373 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc,
10374                                              Expr *LHSExpr, Expr *RHSExpr) {
10375   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) {
10376     if (Bop->getOpcode() == BO_LAnd) {
10377       // If it's "0 || a && b" don't warn since the precedence doesn't matter.
10378       if (EvaluatesAsFalse(S, LHSExpr))
10379         return;
10380       // If it's "a || b && 1" don't warn since the precedence doesn't matter.
10381       if (!EvaluatesAsTrue(S, Bop->getRHS()))
10382         return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
10383     }
10384   }
10385 }
10386 
10387 /// \brief Look for '&' in the left or right hand of a '|' expr.
10388 static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc,
10389                                              Expr *OrArg) {
10390   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) {
10391     if (Bop->getOpcode() == BO_And)
10392       return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop);
10393   }
10394 }
10395 
10396 static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc,
10397                                     Expr *SubExpr, StringRef Shift) {
10398   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) {
10399     if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) {
10400       StringRef Op = Bop->getOpcodeStr();
10401       S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift)
10402           << Bop->getSourceRange() << OpLoc << Shift << Op;
10403       SuggestParentheses(S, Bop->getOperatorLoc(),
10404           S.PDiag(diag::note_precedence_silence) << Op,
10405           Bop->getSourceRange());
10406     }
10407   }
10408 }
10409 
10410 static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc,
10411                                  Expr *LHSExpr, Expr *RHSExpr) {
10412   CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr);
10413   if (!OCE)
10414     return;
10415 
10416   FunctionDecl *FD = OCE->getDirectCallee();
10417   if (!FD || !FD->isOverloadedOperator())
10418     return;
10419 
10420   OverloadedOperatorKind Kind = FD->getOverloadedOperator();
10421   if (Kind != OO_LessLess && Kind != OO_GreaterGreater)
10422     return;
10423 
10424   S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison)
10425       << LHSExpr->getSourceRange() << RHSExpr->getSourceRange()
10426       << (Kind == OO_LessLess);
10427   SuggestParentheses(S, OCE->getOperatorLoc(),
10428                      S.PDiag(diag::note_precedence_silence)
10429                          << (Kind == OO_LessLess ? "<<" : ">>"),
10430                      OCE->getSourceRange());
10431   SuggestParentheses(S, OpLoc,
10432                      S.PDiag(diag::note_evaluate_comparison_first),
10433                      SourceRange(OCE->getArg(1)->getLocStart(),
10434                                  RHSExpr->getLocEnd()));
10435 }
10436 
10437 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
10438 /// precedence.
10439 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc,
10440                                     SourceLocation OpLoc, Expr *LHSExpr,
10441                                     Expr *RHSExpr){
10442   // Diagnose "arg1 'bitwise' arg2 'eq' arg3".
10443   if (BinaryOperator::isBitwiseOp(Opc))
10444     DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr);
10445 
10446   // Diagnose "arg1 & arg2 | arg3"
10447   if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) {
10448     DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr);
10449     DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr);
10450   }
10451 
10452   // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does.
10453   // We don't warn for 'assert(a || b && "bad")' since this is safe.
10454   if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) {
10455     DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr);
10456     DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr);
10457   }
10458 
10459   if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext()))
10460       || Opc == BO_Shr) {
10461     StringRef Shift = BinaryOperator::getOpcodeStr(Opc);
10462     DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift);
10463     DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift);
10464   }
10465 
10466   // Warn on overloaded shift operators and comparisons, such as:
10467   // cout << 5 == 4;
10468   if (BinaryOperator::isComparisonOp(Opc))
10469     DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr);
10470 }
10471 
10472 // Binary Operators.  'Tok' is the token for the operator.
10473 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
10474                             tok::TokenKind Kind,
10475                             Expr *LHSExpr, Expr *RHSExpr) {
10476   BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind);
10477   assert(LHSExpr && "ActOnBinOp(): missing left expression");
10478   assert(RHSExpr && "ActOnBinOp(): missing right expression");
10479 
10480   // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
10481   DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr);
10482 
10483   return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr);
10484 }
10485 
10486 /// Build an overloaded binary operator expression in the given scope.
10487 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc,
10488                                        BinaryOperatorKind Opc,
10489                                        Expr *LHS, Expr *RHS) {
10490   // Find all of the overloaded operators visible from this
10491   // point. We perform both an operator-name lookup from the local
10492   // scope and an argument-dependent lookup based on the types of
10493   // the arguments.
10494   UnresolvedSet<16> Functions;
10495   OverloadedOperatorKind OverOp
10496     = BinaryOperator::getOverloadedOperator(Opc);
10497   if (Sc && OverOp != OO_None && OverOp != OO_Equal)
10498     S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(),
10499                                    RHS->getType(), Functions);
10500 
10501   // Build the (potentially-overloaded, potentially-dependent)
10502   // binary operation.
10503   return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS);
10504 }
10505 
10506 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
10507                             BinaryOperatorKind Opc,
10508                             Expr *LHSExpr, Expr *RHSExpr) {
10509   // We want to end up calling one of checkPseudoObjectAssignment
10510   // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if
10511   // both expressions are overloadable or either is type-dependent),
10512   // or CreateBuiltinBinOp (in any other case).  We also want to get
10513   // any placeholder types out of the way.
10514 
10515   // Handle pseudo-objects in the LHS.
10516   if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) {
10517     // Assignments with a pseudo-object l-value need special analysis.
10518     if (pty->getKind() == BuiltinType::PseudoObject &&
10519         BinaryOperator::isAssignmentOp(Opc))
10520       return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr);
10521 
10522     // Don't resolve overloads if the other type is overloadable.
10523     if (pty->getKind() == BuiltinType::Overload) {
10524       // We can't actually test that if we still have a placeholder,
10525       // though.  Fortunately, none of the exceptions we see in that
10526       // code below are valid when the LHS is an overload set.  Note
10527       // that an overload set can be dependently-typed, but it never
10528       // instantiates to having an overloadable type.
10529       ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
10530       if (resolvedRHS.isInvalid()) return ExprError();
10531       RHSExpr = resolvedRHS.get();
10532 
10533       if (RHSExpr->isTypeDependent() ||
10534           RHSExpr->getType()->isOverloadableType())
10535         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10536     }
10537 
10538     ExprResult LHS = CheckPlaceholderExpr(LHSExpr);
10539     if (LHS.isInvalid()) return ExprError();
10540     LHSExpr = LHS.get();
10541   }
10542 
10543   // Handle pseudo-objects in the RHS.
10544   if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) {
10545     // An overload in the RHS can potentially be resolved by the type
10546     // being assigned to.
10547     if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) {
10548       if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
10549         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10550 
10551       if (LHSExpr->getType()->isOverloadableType())
10552         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10553 
10554       return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
10555     }
10556 
10557     // Don't resolve overloads if the other type is overloadable.
10558     if (pty->getKind() == BuiltinType::Overload &&
10559         LHSExpr->getType()->isOverloadableType())
10560       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10561 
10562     ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
10563     if (!resolvedRHS.isUsable()) return ExprError();
10564     RHSExpr = resolvedRHS.get();
10565   }
10566 
10567   if (getLangOpts().CPlusPlus) {
10568     // If either expression is type-dependent, always build an
10569     // overloaded op.
10570     if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
10571       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10572 
10573     // Otherwise, build an overloaded op if either expression has an
10574     // overloadable type.
10575     if (LHSExpr->getType()->isOverloadableType() ||
10576         RHSExpr->getType()->isOverloadableType())
10577       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10578   }
10579 
10580   // Build a built-in binary operation.
10581   return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
10582 }
10583 
10584 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
10585                                       UnaryOperatorKind Opc,
10586                                       Expr *InputExpr) {
10587   ExprResult Input = InputExpr;
10588   ExprValueKind VK = VK_RValue;
10589   ExprObjectKind OK = OK_Ordinary;
10590   QualType resultType;
10591   switch (Opc) {
10592   case UO_PreInc:
10593   case UO_PreDec:
10594   case UO_PostInc:
10595   case UO_PostDec:
10596     resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK,
10597                                                 OpLoc,
10598                                                 Opc == UO_PreInc ||
10599                                                 Opc == UO_PostInc,
10600                                                 Opc == UO_PreInc ||
10601                                                 Opc == UO_PreDec);
10602     break;
10603   case UO_AddrOf:
10604     resultType = CheckAddressOfOperand(Input, OpLoc);
10605     RecordModifiableNonNullParam(*this, InputExpr);
10606     break;
10607   case UO_Deref: {
10608     Input = DefaultFunctionArrayLvalueConversion(Input.get());
10609     if (Input.isInvalid()) return ExprError();
10610     resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc);
10611     break;
10612   }
10613   case UO_Plus:
10614   case UO_Minus:
10615     Input = UsualUnaryConversions(Input.get());
10616     if (Input.isInvalid()) return ExprError();
10617     resultType = Input.get()->getType();
10618     if (resultType->isDependentType())
10619       break;
10620     if (resultType->isArithmeticType()) // C99 6.5.3.3p1
10621       break;
10622     else if (resultType->isVectorType() &&
10623              // The z vector extensions don't allow + or - with bool vectors.
10624              (!Context.getLangOpts().ZVector ||
10625               resultType->getAs<VectorType>()->getVectorKind() !=
10626               VectorType::AltiVecBool))
10627       break;
10628     else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6
10629              Opc == UO_Plus &&
10630              resultType->isPointerType())
10631       break;
10632 
10633     return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10634       << resultType << Input.get()->getSourceRange());
10635 
10636   case UO_Not: // bitwise complement
10637     Input = UsualUnaryConversions(Input.get());
10638     if (Input.isInvalid())
10639       return ExprError();
10640     resultType = Input.get()->getType();
10641     if (resultType->isDependentType())
10642       break;
10643     // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
10644     if (resultType->isComplexType() || resultType->isComplexIntegerType())
10645       // C99 does not support '~' for complex conjugation.
10646       Diag(OpLoc, diag::ext_integer_complement_complex)
10647           << resultType << Input.get()->getSourceRange();
10648     else if (resultType->hasIntegerRepresentation())
10649       break;
10650     else if (resultType->isExtVectorType()) {
10651       if (Context.getLangOpts().OpenCL) {
10652         // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate
10653         // on vector float types.
10654         QualType T = resultType->getAs<ExtVectorType>()->getElementType();
10655         if (!T->isIntegerType())
10656           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10657                            << resultType << Input.get()->getSourceRange());
10658       }
10659       break;
10660     } else {
10661       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10662                        << resultType << Input.get()->getSourceRange());
10663     }
10664     break;
10665 
10666   case UO_LNot: // logical negation
10667     // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
10668     Input = DefaultFunctionArrayLvalueConversion(Input.get());
10669     if (Input.isInvalid()) return ExprError();
10670     resultType = Input.get()->getType();
10671 
10672     // Though we still have to promote half FP to float...
10673     if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) {
10674       Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get();
10675       resultType = Context.FloatTy;
10676     }
10677 
10678     if (resultType->isDependentType())
10679       break;
10680     if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) {
10681       // C99 6.5.3.3p1: ok, fallthrough;
10682       if (Context.getLangOpts().CPlusPlus) {
10683         // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9:
10684         // operand contextually converted to bool.
10685         Input = ImpCastExprToType(Input.get(), Context.BoolTy,
10686                                   ScalarTypeToBooleanCastKind(resultType));
10687       } else if (Context.getLangOpts().OpenCL &&
10688                  Context.getLangOpts().OpenCLVersion < 120) {
10689         // OpenCL v1.1 6.3.h: The logical operator not (!) does not
10690         // operate on scalar float types.
10691         if (!resultType->isIntegerType())
10692           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10693                            << resultType << Input.get()->getSourceRange());
10694       }
10695     } else if (resultType->isExtVectorType()) {
10696       if (Context.getLangOpts().OpenCL &&
10697           Context.getLangOpts().OpenCLVersion < 120) {
10698         // OpenCL v1.1 6.3.h: The logical operator not (!) does not
10699         // operate on vector float types.
10700         QualType T = resultType->getAs<ExtVectorType>()->getElementType();
10701         if (!T->isIntegerType())
10702           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10703                            << resultType << Input.get()->getSourceRange());
10704       }
10705       // Vector logical not returns the signed variant of the operand type.
10706       resultType = GetSignedVectorType(resultType);
10707       break;
10708     } else {
10709       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10710         << resultType << Input.get()->getSourceRange());
10711     }
10712 
10713     // LNot always has type int. C99 6.5.3.3p5.
10714     // In C++, it's bool. C++ 5.3.1p8
10715     resultType = Context.getLogicalOperationType();
10716     break;
10717   case UO_Real:
10718   case UO_Imag:
10719     resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real);
10720     // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary
10721     // complex l-values to ordinary l-values and all other values to r-values.
10722     if (Input.isInvalid()) return ExprError();
10723     if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) {
10724       if (Input.get()->getValueKind() != VK_RValue &&
10725           Input.get()->getObjectKind() == OK_Ordinary)
10726         VK = Input.get()->getValueKind();
10727     } else if (!getLangOpts().CPlusPlus) {
10728       // In C, a volatile scalar is read by __imag. In C++, it is not.
10729       Input = DefaultLvalueConversion(Input.get());
10730     }
10731     break;
10732   case UO_Extension:
10733     resultType = Input.get()->getType();
10734     VK = Input.get()->getValueKind();
10735     OK = Input.get()->getObjectKind();
10736     break;
10737   }
10738   if (resultType.isNull() || Input.isInvalid())
10739     return ExprError();
10740 
10741   // Check for array bounds violations in the operand of the UnaryOperator,
10742   // except for the '*' and '&' operators that have to be handled specially
10743   // by CheckArrayAccess (as there are special cases like &array[arraysize]
10744   // that are explicitly defined as valid by the standard).
10745   if (Opc != UO_AddrOf && Opc != UO_Deref)
10746     CheckArrayAccess(Input.get());
10747 
10748   return new (Context)
10749       UnaryOperator(Input.get(), Opc, resultType, VK, OK, OpLoc);
10750 }
10751 
10752 /// \brief Determine whether the given expression is a qualified member
10753 /// access expression, of a form that could be turned into a pointer to member
10754 /// with the address-of operator.
10755 static bool isQualifiedMemberAccess(Expr *E) {
10756   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
10757     if (!DRE->getQualifier())
10758       return false;
10759 
10760     ValueDecl *VD = DRE->getDecl();
10761     if (!VD->isCXXClassMember())
10762       return false;
10763 
10764     if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD))
10765       return true;
10766     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD))
10767       return Method->isInstance();
10768 
10769     return false;
10770   }
10771 
10772   if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
10773     if (!ULE->getQualifier())
10774       return false;
10775 
10776     for (UnresolvedLookupExpr::decls_iterator D = ULE->decls_begin(),
10777                                            DEnd = ULE->decls_end();
10778          D != DEnd; ++D) {
10779       if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) {
10780         if (Method->isInstance())
10781           return true;
10782       } else {
10783         // Overload set does not contain methods.
10784         break;
10785       }
10786     }
10787 
10788     return false;
10789   }
10790 
10791   return false;
10792 }
10793 
10794 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
10795                               UnaryOperatorKind Opc, Expr *Input) {
10796   // First things first: handle placeholders so that the
10797   // overloaded-operator check considers the right type.
10798   if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) {
10799     // Increment and decrement of pseudo-object references.
10800     if (pty->getKind() == BuiltinType::PseudoObject &&
10801         UnaryOperator::isIncrementDecrementOp(Opc))
10802       return checkPseudoObjectIncDec(S, OpLoc, Opc, Input);
10803 
10804     // extension is always a builtin operator.
10805     if (Opc == UO_Extension)
10806       return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
10807 
10808     // & gets special logic for several kinds of placeholder.
10809     // The builtin code knows what to do.
10810     if (Opc == UO_AddrOf &&
10811         (pty->getKind() == BuiltinType::Overload ||
10812          pty->getKind() == BuiltinType::UnknownAny ||
10813          pty->getKind() == BuiltinType::BoundMember))
10814       return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
10815 
10816     // Anything else needs to be handled now.
10817     ExprResult Result = CheckPlaceholderExpr(Input);
10818     if (Result.isInvalid()) return ExprError();
10819     Input = Result.get();
10820   }
10821 
10822   if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() &&
10823       UnaryOperator::getOverloadedOperator(Opc) != OO_None &&
10824       !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) {
10825     // Find all of the overloaded operators visible from this
10826     // point. We perform both an operator-name lookup from the local
10827     // scope and an argument-dependent lookup based on the types of
10828     // the arguments.
10829     UnresolvedSet<16> Functions;
10830     OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
10831     if (S && OverOp != OO_None)
10832       LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
10833                                    Functions);
10834 
10835     return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input);
10836   }
10837 
10838   return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
10839 }
10840 
10841 // Unary Operators.  'Tok' is the token for the operator.
10842 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
10843                               tok::TokenKind Op, Expr *Input) {
10844   return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input);
10845 }
10846 
10847 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
10848 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc,
10849                                 LabelDecl *TheDecl) {
10850   TheDecl->markUsed(Context);
10851   // Create the AST node.  The address of a label always has type 'void*'.
10852   return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl,
10853                                      Context.getPointerType(Context.VoidTy));
10854 }
10855 
10856 /// Given the last statement in a statement-expression, check whether
10857 /// the result is a producing expression (like a call to an
10858 /// ns_returns_retained function) and, if so, rebuild it to hoist the
10859 /// release out of the full-expression.  Otherwise, return null.
10860 /// Cannot fail.
10861 static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) {
10862   // Should always be wrapped with one of these.
10863   ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement);
10864   if (!cleanups) return nullptr;
10865 
10866   ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr());
10867   if (!cast || cast->getCastKind() != CK_ARCConsumeObject)
10868     return nullptr;
10869 
10870   // Splice out the cast.  This shouldn't modify any interesting
10871   // features of the statement.
10872   Expr *producer = cast->getSubExpr();
10873   assert(producer->getType() == cast->getType());
10874   assert(producer->getValueKind() == cast->getValueKind());
10875   cleanups->setSubExpr(producer);
10876   return cleanups;
10877 }
10878 
10879 void Sema::ActOnStartStmtExpr() {
10880   PushExpressionEvaluationContext(ExprEvalContexts.back().Context);
10881 }
10882 
10883 void Sema::ActOnStmtExprError() {
10884   // Note that function is also called by TreeTransform when leaving a
10885   // StmtExpr scope without rebuilding anything.
10886 
10887   DiscardCleanupsInEvaluationContext();
10888   PopExpressionEvaluationContext();
10889 }
10890 
10891 ExprResult
10892 Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt,
10893                     SourceLocation RPLoc) { // "({..})"
10894   assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
10895   CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
10896 
10897   if (hasAnyUnrecoverableErrorsInThisFunction())
10898     DiscardCleanupsInEvaluationContext();
10899   assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!");
10900   PopExpressionEvaluationContext();
10901 
10902   // FIXME: there are a variety of strange constraints to enforce here, for
10903   // example, it is not possible to goto into a stmt expression apparently.
10904   // More semantic analysis is needed.
10905 
10906   // If there are sub-stmts in the compound stmt, take the type of the last one
10907   // as the type of the stmtexpr.
10908   QualType Ty = Context.VoidTy;
10909   bool StmtExprMayBindToTemp = false;
10910   if (!Compound->body_empty()) {
10911     Stmt *LastStmt = Compound->body_back();
10912     LabelStmt *LastLabelStmt = nullptr;
10913     // If LastStmt is a label, skip down through into the body.
10914     while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) {
10915       LastLabelStmt = Label;
10916       LastStmt = Label->getSubStmt();
10917     }
10918 
10919     if (Expr *LastE = dyn_cast<Expr>(LastStmt)) {
10920       // Do function/array conversion on the last expression, but not
10921       // lvalue-to-rvalue.  However, initialize an unqualified type.
10922       ExprResult LastExpr = DefaultFunctionArrayConversion(LastE);
10923       if (LastExpr.isInvalid())
10924         return ExprError();
10925       Ty = LastExpr.get()->getType().getUnqualifiedType();
10926 
10927       if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) {
10928         // In ARC, if the final expression ends in a consume, splice
10929         // the consume out and bind it later.  In the alternate case
10930         // (when dealing with a retainable type), the result
10931         // initialization will create a produce.  In both cases the
10932         // result will be +1, and we'll need to balance that out with
10933         // a bind.
10934         if (Expr *rebuiltLastStmt
10935               = maybeRebuildARCConsumingStmt(LastExpr.get())) {
10936           LastExpr = rebuiltLastStmt;
10937         } else {
10938           LastExpr = PerformCopyInitialization(
10939                             InitializedEntity::InitializeResult(LPLoc,
10940                                                                 Ty,
10941                                                                 false),
10942                                                    SourceLocation(),
10943                                                LastExpr);
10944         }
10945 
10946         if (LastExpr.isInvalid())
10947           return ExprError();
10948         if (LastExpr.get() != nullptr) {
10949           if (!LastLabelStmt)
10950             Compound->setLastStmt(LastExpr.get());
10951           else
10952             LastLabelStmt->setSubStmt(LastExpr.get());
10953           StmtExprMayBindToTemp = true;
10954         }
10955       }
10956     }
10957   }
10958 
10959   // FIXME: Check that expression type is complete/non-abstract; statement
10960   // expressions are not lvalues.
10961   Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc);
10962   if (StmtExprMayBindToTemp)
10963     return MaybeBindToTemporary(ResStmtExpr);
10964   return ResStmtExpr;
10965 }
10966 
10967 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc,
10968                                       TypeSourceInfo *TInfo,
10969                                       OffsetOfComponent *CompPtr,
10970                                       unsigned NumComponents,
10971                                       SourceLocation RParenLoc) {
10972   QualType ArgTy = TInfo->getType();
10973   bool Dependent = ArgTy->isDependentType();
10974   SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange();
10975 
10976   // We must have at least one component that refers to the type, and the first
10977   // one is known to be a field designator.  Verify that the ArgTy represents
10978   // a struct/union/class.
10979   if (!Dependent && !ArgTy->isRecordType())
10980     return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type)
10981                        << ArgTy << TypeRange);
10982 
10983   // Type must be complete per C99 7.17p3 because a declaring a variable
10984   // with an incomplete type would be ill-formed.
10985   if (!Dependent
10986       && RequireCompleteType(BuiltinLoc, ArgTy,
10987                              diag::err_offsetof_incomplete_type, TypeRange))
10988     return ExprError();
10989 
10990   // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
10991   // GCC extension, diagnose them.
10992   // FIXME: This diagnostic isn't actually visible because the location is in
10993   // a system header!
10994   if (NumComponents != 1)
10995     Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
10996       << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
10997 
10998   bool DidWarnAboutNonPOD = false;
10999   QualType CurrentType = ArgTy;
11000   typedef OffsetOfExpr::OffsetOfNode OffsetOfNode;
11001   SmallVector<OffsetOfNode, 4> Comps;
11002   SmallVector<Expr*, 4> Exprs;
11003   for (unsigned i = 0; i != NumComponents; ++i) {
11004     const OffsetOfComponent &OC = CompPtr[i];
11005     if (OC.isBrackets) {
11006       // Offset of an array sub-field.  TODO: Should we allow vector elements?
11007       if (!CurrentType->isDependentType()) {
11008         const ArrayType *AT = Context.getAsArrayType(CurrentType);
11009         if(!AT)
11010           return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
11011                            << CurrentType);
11012         CurrentType = AT->getElementType();
11013       } else
11014         CurrentType = Context.DependentTy;
11015 
11016       ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E));
11017       if (IdxRval.isInvalid())
11018         return ExprError();
11019       Expr *Idx = IdxRval.get();
11020 
11021       // The expression must be an integral expression.
11022       // FIXME: An integral constant expression?
11023       if (!Idx->isTypeDependent() && !Idx->isValueDependent() &&
11024           !Idx->getType()->isIntegerType())
11025         return ExprError(Diag(Idx->getLocStart(),
11026                               diag::err_typecheck_subscript_not_integer)
11027                          << Idx->getSourceRange());
11028 
11029       // Record this array index.
11030       Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
11031       Exprs.push_back(Idx);
11032       continue;
11033     }
11034 
11035     // Offset of a field.
11036     if (CurrentType->isDependentType()) {
11037       // We have the offset of a field, but we can't look into the dependent
11038       // type. Just record the identifier of the field.
11039       Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
11040       CurrentType = Context.DependentTy;
11041       continue;
11042     }
11043 
11044     // We need to have a complete type to look into.
11045     if (RequireCompleteType(OC.LocStart, CurrentType,
11046                             diag::err_offsetof_incomplete_type))
11047       return ExprError();
11048 
11049     // Look for the designated field.
11050     const RecordType *RC = CurrentType->getAs<RecordType>();
11051     if (!RC)
11052       return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
11053                        << CurrentType);
11054     RecordDecl *RD = RC->getDecl();
11055 
11056     // C++ [lib.support.types]p5:
11057     //   The macro offsetof accepts a restricted set of type arguments in this
11058     //   International Standard. type shall be a POD structure or a POD union
11059     //   (clause 9).
11060     // C++11 [support.types]p4:
11061     //   If type is not a standard-layout class (Clause 9), the results are
11062     //   undefined.
11063     if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
11064       bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD();
11065       unsigned DiagID =
11066         LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type
11067                             : diag::ext_offsetof_non_pod_type;
11068 
11069       if (!IsSafe && !DidWarnAboutNonPOD &&
11070           DiagRuntimeBehavior(BuiltinLoc, nullptr,
11071                               PDiag(DiagID)
11072                               << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
11073                               << CurrentType))
11074         DidWarnAboutNonPOD = true;
11075     }
11076 
11077     // Look for the field.
11078     LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
11079     LookupQualifiedName(R, RD);
11080     FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>();
11081     IndirectFieldDecl *IndirectMemberDecl = nullptr;
11082     if (!MemberDecl) {
11083       if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>()))
11084         MemberDecl = IndirectMemberDecl->getAnonField();
11085     }
11086 
11087     if (!MemberDecl)
11088       return ExprError(Diag(BuiltinLoc, diag::err_no_member)
11089                        << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
11090                                                               OC.LocEnd));
11091 
11092     // C99 7.17p3:
11093     //   (If the specified member is a bit-field, the behavior is undefined.)
11094     //
11095     // We diagnose this as an error.
11096     if (MemberDecl->isBitField()) {
11097       Diag(OC.LocEnd, diag::err_offsetof_bitfield)
11098         << MemberDecl->getDeclName()
11099         << SourceRange(BuiltinLoc, RParenLoc);
11100       Diag(MemberDecl->getLocation(), diag::note_bitfield_decl);
11101       return ExprError();
11102     }
11103 
11104     RecordDecl *Parent = MemberDecl->getParent();
11105     if (IndirectMemberDecl)
11106       Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext());
11107 
11108     // If the member was found in a base class, introduce OffsetOfNodes for
11109     // the base class indirections.
11110     CXXBasePaths Paths;
11111     if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) {
11112       if (Paths.getDetectedVirtual()) {
11113         Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base)
11114           << MemberDecl->getDeclName()
11115           << SourceRange(BuiltinLoc, RParenLoc);
11116         return ExprError();
11117       }
11118 
11119       CXXBasePath &Path = Paths.front();
11120       for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end();
11121            B != BEnd; ++B)
11122         Comps.push_back(OffsetOfNode(B->Base));
11123     }
11124 
11125     if (IndirectMemberDecl) {
11126       for (auto *FI : IndirectMemberDecl->chain()) {
11127         assert(isa<FieldDecl>(FI));
11128         Comps.push_back(OffsetOfNode(OC.LocStart,
11129                                      cast<FieldDecl>(FI), OC.LocEnd));
11130       }
11131     } else
11132       Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
11133 
11134     CurrentType = MemberDecl->getType().getNonReferenceType();
11135   }
11136 
11137   return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo,
11138                               Comps, Exprs, RParenLoc);
11139 }
11140 
11141 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
11142                                       SourceLocation BuiltinLoc,
11143                                       SourceLocation TypeLoc,
11144                                       ParsedType ParsedArgTy,
11145                                       OffsetOfComponent *CompPtr,
11146                                       unsigned NumComponents,
11147                                       SourceLocation RParenLoc) {
11148 
11149   TypeSourceInfo *ArgTInfo;
11150   QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo);
11151   if (ArgTy.isNull())
11152     return ExprError();
11153 
11154   if (!ArgTInfo)
11155     ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
11156 
11157   return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents,
11158                               RParenLoc);
11159 }
11160 
11161 
11162 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
11163                                  Expr *CondExpr,
11164                                  Expr *LHSExpr, Expr *RHSExpr,
11165                                  SourceLocation RPLoc) {
11166   assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
11167 
11168   ExprValueKind VK = VK_RValue;
11169   ExprObjectKind OK = OK_Ordinary;
11170   QualType resType;
11171   bool ValueDependent = false;
11172   bool CondIsTrue = false;
11173   if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
11174     resType = Context.DependentTy;
11175     ValueDependent = true;
11176   } else {
11177     // The conditional expression is required to be a constant expression.
11178     llvm::APSInt condEval(32);
11179     ExprResult CondICE
11180       = VerifyIntegerConstantExpression(CondExpr, &condEval,
11181           diag::err_typecheck_choose_expr_requires_constant, false);
11182     if (CondICE.isInvalid())
11183       return ExprError();
11184     CondExpr = CondICE.get();
11185     CondIsTrue = condEval.getZExtValue();
11186 
11187     // If the condition is > zero, then the AST type is the same as the LSHExpr.
11188     Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr;
11189 
11190     resType = ActiveExpr->getType();
11191     ValueDependent = ActiveExpr->isValueDependent();
11192     VK = ActiveExpr->getValueKind();
11193     OK = ActiveExpr->getObjectKind();
11194   }
11195 
11196   return new (Context)
11197       ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc,
11198                  CondIsTrue, resType->isDependentType(), ValueDependent);
11199 }
11200 
11201 //===----------------------------------------------------------------------===//
11202 // Clang Extensions.
11203 //===----------------------------------------------------------------------===//
11204 
11205 /// ActOnBlockStart - This callback is invoked when a block literal is started.
11206 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) {
11207   BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc);
11208 
11209   if (LangOpts.CPlusPlus) {
11210     Decl *ManglingContextDecl;
11211     if (MangleNumberingContext *MCtx =
11212             getCurrentMangleNumberContext(Block->getDeclContext(),
11213                                           ManglingContextDecl)) {
11214       unsigned ManglingNumber = MCtx->getManglingNumber(Block);
11215       Block->setBlockMangling(ManglingNumber, ManglingContextDecl);
11216     }
11217   }
11218 
11219   PushBlockScope(CurScope, Block);
11220   CurContext->addDecl(Block);
11221   if (CurScope)
11222     PushDeclContext(CurScope, Block);
11223   else
11224     CurContext = Block;
11225 
11226   getCurBlock()->HasImplicitReturnType = true;
11227 
11228   // Enter a new evaluation context to insulate the block from any
11229   // cleanups from the enclosing full-expression.
11230   PushExpressionEvaluationContext(PotentiallyEvaluated);
11231 }
11232 
11233 void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo,
11234                                Scope *CurScope) {
11235   assert(ParamInfo.getIdentifier() == nullptr &&
11236          "block-id should have no identifier!");
11237   assert(ParamInfo.getContext() == Declarator::BlockLiteralContext);
11238   BlockScopeInfo *CurBlock = getCurBlock();
11239 
11240   TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope);
11241   QualType T = Sig->getType();
11242 
11243   // FIXME: We should allow unexpanded parameter packs here, but that would,
11244   // in turn, make the block expression contain unexpanded parameter packs.
11245   if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) {
11246     // Drop the parameters.
11247     FunctionProtoType::ExtProtoInfo EPI;
11248     EPI.HasTrailingReturn = false;
11249     EPI.TypeQuals |= DeclSpec::TQ_const;
11250     T = Context.getFunctionType(Context.DependentTy, None, EPI);
11251     Sig = Context.getTrivialTypeSourceInfo(T);
11252   }
11253 
11254   // GetTypeForDeclarator always produces a function type for a block
11255   // literal signature.  Furthermore, it is always a FunctionProtoType
11256   // unless the function was written with a typedef.
11257   assert(T->isFunctionType() &&
11258          "GetTypeForDeclarator made a non-function block signature");
11259 
11260   // Look for an explicit signature in that function type.
11261   FunctionProtoTypeLoc ExplicitSignature;
11262 
11263   TypeLoc tmp = Sig->getTypeLoc().IgnoreParens();
11264   if ((ExplicitSignature = tmp.getAs<FunctionProtoTypeLoc>())) {
11265 
11266     // Check whether that explicit signature was synthesized by
11267     // GetTypeForDeclarator.  If so, don't save that as part of the
11268     // written signature.
11269     if (ExplicitSignature.getLocalRangeBegin() ==
11270         ExplicitSignature.getLocalRangeEnd()) {
11271       // This would be much cheaper if we stored TypeLocs instead of
11272       // TypeSourceInfos.
11273       TypeLoc Result = ExplicitSignature.getReturnLoc();
11274       unsigned Size = Result.getFullDataSize();
11275       Sig = Context.CreateTypeSourceInfo(Result.getType(), Size);
11276       Sig->getTypeLoc().initializeFullCopy(Result, Size);
11277 
11278       ExplicitSignature = FunctionProtoTypeLoc();
11279     }
11280   }
11281 
11282   CurBlock->TheDecl->setSignatureAsWritten(Sig);
11283   CurBlock->FunctionType = T;
11284 
11285   const FunctionType *Fn = T->getAs<FunctionType>();
11286   QualType RetTy = Fn->getReturnType();
11287   bool isVariadic =
11288     (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic());
11289 
11290   CurBlock->TheDecl->setIsVariadic(isVariadic);
11291 
11292   // Context.DependentTy is used as a placeholder for a missing block
11293   // return type.  TODO:  what should we do with declarators like:
11294   //   ^ * { ... }
11295   // If the answer is "apply template argument deduction"....
11296   if (RetTy != Context.DependentTy) {
11297     CurBlock->ReturnType = RetTy;
11298     CurBlock->TheDecl->setBlockMissingReturnType(false);
11299     CurBlock->HasImplicitReturnType = false;
11300   }
11301 
11302   // Push block parameters from the declarator if we had them.
11303   SmallVector<ParmVarDecl*, 8> Params;
11304   if (ExplicitSignature) {
11305     for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) {
11306       ParmVarDecl *Param = ExplicitSignature.getParam(I);
11307       if (Param->getIdentifier() == nullptr &&
11308           !Param->isImplicit() &&
11309           !Param->isInvalidDecl() &&
11310           !getLangOpts().CPlusPlus)
11311         Diag(Param->getLocation(), diag::err_parameter_name_omitted);
11312       Params.push_back(Param);
11313     }
11314 
11315   // Fake up parameter variables if we have a typedef, like
11316   //   ^ fntype { ... }
11317   } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) {
11318     for (const auto &I : Fn->param_types()) {
11319       ParmVarDecl *Param = BuildParmVarDeclForTypedef(
11320           CurBlock->TheDecl, ParamInfo.getLocStart(), I);
11321       Params.push_back(Param);
11322     }
11323   }
11324 
11325   // Set the parameters on the block decl.
11326   if (!Params.empty()) {
11327     CurBlock->TheDecl->setParams(Params);
11328     CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(),
11329                              CurBlock->TheDecl->param_end(),
11330                              /*CheckParameterNames=*/false);
11331   }
11332 
11333   // Finally we can process decl attributes.
11334   ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
11335 
11336   // Put the parameter variables in scope.
11337   for (auto AI : CurBlock->TheDecl->params()) {
11338     AI->setOwningFunction(CurBlock->TheDecl);
11339 
11340     // If this has an identifier, add it to the scope stack.
11341     if (AI->getIdentifier()) {
11342       CheckShadow(CurBlock->TheScope, AI);
11343 
11344       PushOnScopeChains(AI, CurBlock->TheScope);
11345     }
11346   }
11347 }
11348 
11349 /// ActOnBlockError - If there is an error parsing a block, this callback
11350 /// is invoked to pop the information about the block from the action impl.
11351 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
11352   // Leave the expression-evaluation context.
11353   DiscardCleanupsInEvaluationContext();
11354   PopExpressionEvaluationContext();
11355 
11356   // Pop off CurBlock, handle nested blocks.
11357   PopDeclContext();
11358   PopFunctionScopeInfo();
11359 }
11360 
11361 /// ActOnBlockStmtExpr - This is called when the body of a block statement
11362 /// literal was successfully completed.  ^(int x){...}
11363 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
11364                                     Stmt *Body, Scope *CurScope) {
11365   // If blocks are disabled, emit an error.
11366   if (!LangOpts.Blocks)
11367     Diag(CaretLoc, diag::err_blocks_disable);
11368 
11369   // Leave the expression-evaluation context.
11370   if (hasAnyUnrecoverableErrorsInThisFunction())
11371     DiscardCleanupsInEvaluationContext();
11372   assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!");
11373   PopExpressionEvaluationContext();
11374 
11375   BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back());
11376 
11377   if (BSI->HasImplicitReturnType)
11378     deduceClosureReturnType(*BSI);
11379 
11380   PopDeclContext();
11381 
11382   QualType RetTy = Context.VoidTy;
11383   if (!BSI->ReturnType.isNull())
11384     RetTy = BSI->ReturnType;
11385 
11386   bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>();
11387   QualType BlockTy;
11388 
11389   // Set the captured variables on the block.
11390   // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo!
11391   SmallVector<BlockDecl::Capture, 4> Captures;
11392   for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) {
11393     CapturingScopeInfo::Capture &Cap = BSI->Captures[i];
11394     if (Cap.isThisCapture())
11395       continue;
11396     BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(),
11397                               Cap.isNested(), Cap.getInitExpr());
11398     Captures.push_back(NewCap);
11399   }
11400   BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(),
11401                             BSI->CXXThisCaptureIndex != 0);
11402 
11403   // If the user wrote a function type in some form, try to use that.
11404   if (!BSI->FunctionType.isNull()) {
11405     const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>();
11406 
11407     FunctionType::ExtInfo Ext = FTy->getExtInfo();
11408     if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
11409 
11410     // Turn protoless block types into nullary block types.
11411     if (isa<FunctionNoProtoType>(FTy)) {
11412       FunctionProtoType::ExtProtoInfo EPI;
11413       EPI.ExtInfo = Ext;
11414       BlockTy = Context.getFunctionType(RetTy, None, EPI);
11415 
11416     // Otherwise, if we don't need to change anything about the function type,
11417     // preserve its sugar structure.
11418     } else if (FTy->getReturnType() == RetTy &&
11419                (!NoReturn || FTy->getNoReturnAttr())) {
11420       BlockTy = BSI->FunctionType;
11421 
11422     // Otherwise, make the minimal modifications to the function type.
11423     } else {
11424       const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy);
11425       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
11426       EPI.TypeQuals = 0; // FIXME: silently?
11427       EPI.ExtInfo = Ext;
11428       BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI);
11429     }
11430 
11431   // If we don't have a function type, just build one from nothing.
11432   } else {
11433     FunctionProtoType::ExtProtoInfo EPI;
11434     EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);
11435     BlockTy = Context.getFunctionType(RetTy, None, EPI);
11436   }
11437 
11438   DiagnoseUnusedParameters(BSI->TheDecl->param_begin(),
11439                            BSI->TheDecl->param_end());
11440   BlockTy = Context.getBlockPointerType(BlockTy);
11441 
11442   // If needed, diagnose invalid gotos and switches in the block.
11443   if (getCurFunction()->NeedsScopeChecking() &&
11444       !PP.isCodeCompletionEnabled())
11445     DiagnoseInvalidJumps(cast<CompoundStmt>(Body));
11446 
11447   BSI->TheDecl->setBody(cast<CompoundStmt>(Body));
11448 
11449   // Try to apply the named return value optimization. We have to check again
11450   // if we can do this, though, because blocks keep return statements around
11451   // to deduce an implicit return type.
11452   if (getLangOpts().CPlusPlus && RetTy->isRecordType() &&
11453       !BSI->TheDecl->isDependentContext())
11454     computeNRVO(Body, BSI);
11455 
11456   BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy);
11457   AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
11458   PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result);
11459 
11460   // If the block isn't obviously global, i.e. it captures anything at
11461   // all, then we need to do a few things in the surrounding context:
11462   if (Result->getBlockDecl()->hasCaptures()) {
11463     // First, this expression has a new cleanup object.
11464     ExprCleanupObjects.push_back(Result->getBlockDecl());
11465     ExprNeedsCleanups = true;
11466 
11467     // It also gets a branch-protected scope if any of the captured
11468     // variables needs destruction.
11469     for (const auto &CI : Result->getBlockDecl()->captures()) {
11470       const VarDecl *var = CI.getVariable();
11471       if (var->getType().isDestructedType() != QualType::DK_none) {
11472         getCurFunction()->setHasBranchProtectedScope();
11473         break;
11474       }
11475     }
11476   }
11477 
11478   return Result;
11479 }
11480 
11481 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
11482                                         Expr *E, ParsedType Ty,
11483                                         SourceLocation RPLoc) {
11484   TypeSourceInfo *TInfo;
11485   GetTypeFromParser(Ty, &TInfo);
11486   return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc);
11487 }
11488 
11489 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc,
11490                                 Expr *E, TypeSourceInfo *TInfo,
11491                                 SourceLocation RPLoc) {
11492   Expr *OrigExpr = E;
11493 
11494   // Get the va_list type
11495   QualType VaListType = Context.getBuiltinVaListType();
11496   if (VaListType->isArrayType()) {
11497     // Deal with implicit array decay; for example, on x86-64,
11498     // va_list is an array, but it's supposed to decay to
11499     // a pointer for va_arg.
11500     VaListType = Context.getArrayDecayedType(VaListType);
11501     // Make sure the input expression also decays appropriately.
11502     ExprResult Result = UsualUnaryConversions(E);
11503     if (Result.isInvalid())
11504       return ExprError();
11505     E = Result.get();
11506   } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) {
11507     // If va_list is a record type and we are compiling in C++ mode,
11508     // check the argument using reference binding.
11509     InitializedEntity Entity
11510       = InitializedEntity::InitializeParameter(Context,
11511           Context.getLValueReferenceType(VaListType), false);
11512     ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E);
11513     if (Init.isInvalid())
11514       return ExprError();
11515     E = Init.getAs<Expr>();
11516   } else {
11517     // Otherwise, the va_list argument must be an l-value because
11518     // it is modified by va_arg.
11519     if (!E->isTypeDependent() &&
11520         CheckForModifiableLvalue(E, BuiltinLoc, *this))
11521       return ExprError();
11522   }
11523 
11524   if (!E->isTypeDependent() &&
11525       !Context.hasSameType(VaListType, E->getType())) {
11526     return ExprError(Diag(E->getLocStart(),
11527                          diag::err_first_argument_to_va_arg_not_of_type_va_list)
11528       << OrigExpr->getType() << E->getSourceRange());
11529   }
11530 
11531   if (!TInfo->getType()->isDependentType()) {
11532     if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(),
11533                             diag::err_second_parameter_to_va_arg_incomplete,
11534                             TInfo->getTypeLoc()))
11535       return ExprError();
11536 
11537     if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(),
11538                                TInfo->getType(),
11539                                diag::err_second_parameter_to_va_arg_abstract,
11540                                TInfo->getTypeLoc()))
11541       return ExprError();
11542 
11543     if (!TInfo->getType().isPODType(Context)) {
11544       Diag(TInfo->getTypeLoc().getBeginLoc(),
11545            TInfo->getType()->isObjCLifetimeType()
11546              ? diag::warn_second_parameter_to_va_arg_ownership_qualified
11547              : diag::warn_second_parameter_to_va_arg_not_pod)
11548         << TInfo->getType()
11549         << TInfo->getTypeLoc().getSourceRange();
11550     }
11551 
11552     // Check for va_arg where arguments of the given type will be promoted
11553     // (i.e. this va_arg is guaranteed to have undefined behavior).
11554     QualType PromoteType;
11555     if (TInfo->getType()->isPromotableIntegerType()) {
11556       PromoteType = Context.getPromotedIntegerType(TInfo->getType());
11557       if (Context.typesAreCompatible(PromoteType, TInfo->getType()))
11558         PromoteType = QualType();
11559     }
11560     if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float))
11561       PromoteType = Context.DoubleTy;
11562     if (!PromoteType.isNull())
11563       DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E,
11564                   PDiag(diag::warn_second_parameter_to_va_arg_never_compatible)
11565                           << TInfo->getType()
11566                           << PromoteType
11567                           << TInfo->getTypeLoc().getSourceRange());
11568   }
11569 
11570   QualType T = TInfo->getType().getNonLValueExprType(Context);
11571   return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T);
11572 }
11573 
11574 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
11575   // The type of __null will be int or long, depending on the size of
11576   // pointers on the target.
11577   QualType Ty;
11578   unsigned pw = Context.getTargetInfo().getPointerWidth(0);
11579   if (pw == Context.getTargetInfo().getIntWidth())
11580     Ty = Context.IntTy;
11581   else if (pw == Context.getTargetInfo().getLongWidth())
11582     Ty = Context.LongTy;
11583   else if (pw == Context.getTargetInfo().getLongLongWidth())
11584     Ty = Context.LongLongTy;
11585   else {
11586     llvm_unreachable("I don't know size of pointer!");
11587   }
11588 
11589   return new (Context) GNUNullExpr(Ty, TokenLoc);
11590 }
11591 
11592 bool
11593 Sema::ConversionToObjCStringLiteralCheck(QualType DstType, Expr *&Exp) {
11594   if (!getLangOpts().ObjC1)
11595     return false;
11596 
11597   const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>();
11598   if (!PT)
11599     return false;
11600 
11601   if (!PT->isObjCIdType()) {
11602     // Check if the destination is the 'NSString' interface.
11603     const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
11604     if (!ID || !ID->getIdentifier()->isStr("NSString"))
11605       return false;
11606   }
11607 
11608   // Ignore any parens, implicit casts (should only be
11609   // array-to-pointer decays), and not-so-opaque values.  The last is
11610   // important for making this trigger for property assignments.
11611   Expr *SrcExpr = Exp->IgnoreParenImpCasts();
11612   if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr))
11613     if (OV->getSourceExpr())
11614       SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts();
11615 
11616   StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr);
11617   if (!SL || !SL->isAscii())
11618     return false;
11619   Diag(SL->getLocStart(), diag::err_missing_atsign_prefix)
11620     << FixItHint::CreateInsertion(SL->getLocStart(), "@");
11621   Exp = BuildObjCStringLiteral(SL->getLocStart(), SL).get();
11622   return true;
11623 }
11624 
11625 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
11626                                     SourceLocation Loc,
11627                                     QualType DstType, QualType SrcType,
11628                                     Expr *SrcExpr, AssignmentAction Action,
11629                                     bool *Complained) {
11630   if (Complained)
11631     *Complained = false;
11632 
11633   // Decode the result (notice that AST's are still created for extensions).
11634   bool CheckInferredResultType = false;
11635   bool isInvalid = false;
11636   unsigned DiagKind = 0;
11637   FixItHint Hint;
11638   ConversionFixItGenerator ConvHints;
11639   bool MayHaveConvFixit = false;
11640   bool MayHaveFunctionDiff = false;
11641   const ObjCInterfaceDecl *IFace = nullptr;
11642   const ObjCProtocolDecl *PDecl = nullptr;
11643 
11644   switch (ConvTy) {
11645   case Compatible:
11646       DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr);
11647       return false;
11648 
11649   case PointerToInt:
11650     DiagKind = diag::ext_typecheck_convert_pointer_int;
11651     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11652     MayHaveConvFixit = true;
11653     break;
11654   case IntToPointer:
11655     DiagKind = diag::ext_typecheck_convert_int_pointer;
11656     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11657     MayHaveConvFixit = true;
11658     break;
11659   case IncompatiblePointer:
11660       DiagKind =
11661         (Action == AA_Passing_CFAudited ?
11662           diag::err_arc_typecheck_convert_incompatible_pointer :
11663           diag::ext_typecheck_convert_incompatible_pointer);
11664     CheckInferredResultType = DstType->isObjCObjectPointerType() &&
11665       SrcType->isObjCObjectPointerType();
11666     if (Hint.isNull() && !CheckInferredResultType) {
11667       ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11668     }
11669     else if (CheckInferredResultType) {
11670       SrcType = SrcType.getUnqualifiedType();
11671       DstType = DstType.getUnqualifiedType();
11672     }
11673     MayHaveConvFixit = true;
11674     break;
11675   case IncompatiblePointerSign:
11676     DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
11677     break;
11678   case FunctionVoidPointer:
11679     DiagKind = diag::ext_typecheck_convert_pointer_void_func;
11680     break;
11681   case IncompatiblePointerDiscardsQualifiers: {
11682     // Perform array-to-pointer decay if necessary.
11683     if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType);
11684 
11685     Qualifiers lhq = SrcType->getPointeeType().getQualifiers();
11686     Qualifiers rhq = DstType->getPointeeType().getQualifiers();
11687     if (lhq.getAddressSpace() != rhq.getAddressSpace()) {
11688       DiagKind = diag::err_typecheck_incompatible_address_space;
11689       break;
11690 
11691 
11692     } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) {
11693       DiagKind = diag::err_typecheck_incompatible_ownership;
11694       break;
11695     }
11696 
11697     llvm_unreachable("unknown error case for discarding qualifiers!");
11698     // fallthrough
11699   }
11700   case CompatiblePointerDiscardsQualifiers:
11701     // If the qualifiers lost were because we were applying the
11702     // (deprecated) C++ conversion from a string literal to a char*
11703     // (or wchar_t*), then there was no error (C++ 4.2p2).  FIXME:
11704     // Ideally, this check would be performed in
11705     // checkPointerTypesForAssignment. However, that would require a
11706     // bit of refactoring (so that the second argument is an
11707     // expression, rather than a type), which should be done as part
11708     // of a larger effort to fix checkPointerTypesForAssignment for
11709     // C++ semantics.
11710     if (getLangOpts().CPlusPlus &&
11711         IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
11712       return false;
11713     DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
11714     break;
11715   case IncompatibleNestedPointerQualifiers:
11716     DiagKind = diag::ext_nested_pointer_qualifier_mismatch;
11717     break;
11718   case IntToBlockPointer:
11719     DiagKind = diag::err_int_to_block_pointer;
11720     break;
11721   case IncompatibleBlockPointer:
11722     DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
11723     break;
11724   case IncompatibleObjCQualifiedId: {
11725     if (SrcType->isObjCQualifiedIdType()) {
11726       const ObjCObjectPointerType *srcOPT =
11727                 SrcType->getAs<ObjCObjectPointerType>();
11728       for (auto *srcProto : srcOPT->quals()) {
11729         PDecl = srcProto;
11730         break;
11731       }
11732       if (const ObjCInterfaceType *IFaceT =
11733             DstType->getAs<ObjCObjectPointerType>()->getInterfaceType())
11734         IFace = IFaceT->getDecl();
11735     }
11736     else if (DstType->isObjCQualifiedIdType()) {
11737       const ObjCObjectPointerType *dstOPT =
11738         DstType->getAs<ObjCObjectPointerType>();
11739       for (auto *dstProto : dstOPT->quals()) {
11740         PDecl = dstProto;
11741         break;
11742       }
11743       if (const ObjCInterfaceType *IFaceT =
11744             SrcType->getAs<ObjCObjectPointerType>()->getInterfaceType())
11745         IFace = IFaceT->getDecl();
11746     }
11747     DiagKind = diag::warn_incompatible_qualified_id;
11748     break;
11749   }
11750   case IncompatibleVectors:
11751     DiagKind = diag::warn_incompatible_vectors;
11752     break;
11753   case IncompatibleObjCWeakRef:
11754     DiagKind = diag::err_arc_weak_unavailable_assign;
11755     break;
11756   case Incompatible:
11757     DiagKind = diag::err_typecheck_convert_incompatible;
11758     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11759     MayHaveConvFixit = true;
11760     isInvalid = true;
11761     MayHaveFunctionDiff = true;
11762     break;
11763   }
11764 
11765   QualType FirstType, SecondType;
11766   switch (Action) {
11767   case AA_Assigning:
11768   case AA_Initializing:
11769     // The destination type comes first.
11770     FirstType = DstType;
11771     SecondType = SrcType;
11772     break;
11773 
11774   case AA_Returning:
11775   case AA_Passing:
11776   case AA_Passing_CFAudited:
11777   case AA_Converting:
11778   case AA_Sending:
11779   case AA_Casting:
11780     // The source type comes first.
11781     FirstType = SrcType;
11782     SecondType = DstType;
11783     break;
11784   }
11785 
11786   PartialDiagnostic FDiag = PDiag(DiagKind);
11787   if (Action == AA_Passing_CFAudited)
11788     FDiag << FirstType << SecondType << AA_Passing << SrcExpr->getSourceRange();
11789   else
11790     FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange();
11791 
11792   // If we can fix the conversion, suggest the FixIts.
11793   assert(ConvHints.isNull() || Hint.isNull());
11794   if (!ConvHints.isNull()) {
11795     for (std::vector<FixItHint>::iterator HI = ConvHints.Hints.begin(),
11796          HE = ConvHints.Hints.end(); HI != HE; ++HI)
11797       FDiag << *HI;
11798   } else {
11799     FDiag << Hint;
11800   }
11801   if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); }
11802 
11803   if (MayHaveFunctionDiff)
11804     HandleFunctionTypeMismatch(FDiag, SecondType, FirstType);
11805 
11806   Diag(Loc, FDiag);
11807   if (DiagKind == diag::warn_incompatible_qualified_id &&
11808       PDecl && IFace && !IFace->hasDefinition())
11809       Diag(IFace->getLocation(), diag::not_incomplete_class_and_qualified_id)
11810         << IFace->getName() << PDecl->getName();
11811 
11812   if (SecondType == Context.OverloadTy)
11813     NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression,
11814                               FirstType);
11815 
11816   if (CheckInferredResultType)
11817     EmitRelatedResultTypeNote(SrcExpr);
11818 
11819   if (Action == AA_Returning && ConvTy == IncompatiblePointer)
11820     EmitRelatedResultTypeNoteForReturn(DstType);
11821 
11822   if (Complained)
11823     *Complained = true;
11824   return isInvalid;
11825 }
11826 
11827 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
11828                                                  llvm::APSInt *Result) {
11829   class SimpleICEDiagnoser : public VerifyICEDiagnoser {
11830   public:
11831     void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
11832       S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR;
11833     }
11834   } Diagnoser;
11835 
11836   return VerifyIntegerConstantExpression(E, Result, Diagnoser);
11837 }
11838 
11839 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
11840                                                  llvm::APSInt *Result,
11841                                                  unsigned DiagID,
11842                                                  bool AllowFold) {
11843   class IDDiagnoser : public VerifyICEDiagnoser {
11844     unsigned DiagID;
11845 
11846   public:
11847     IDDiagnoser(unsigned DiagID)
11848       : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { }
11849 
11850     void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
11851       S.Diag(Loc, DiagID) << SR;
11852     }
11853   } Diagnoser(DiagID);
11854 
11855   return VerifyIntegerConstantExpression(E, Result, Diagnoser, AllowFold);
11856 }
11857 
11858 void Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc,
11859                                             SourceRange SR) {
11860   S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus;
11861 }
11862 
11863 ExprResult
11864 Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
11865                                       VerifyICEDiagnoser &Diagnoser,
11866                                       bool AllowFold) {
11867   SourceLocation DiagLoc = E->getLocStart();
11868 
11869   if (getLangOpts().CPlusPlus11) {
11870     // C++11 [expr.const]p5:
11871     //   If an expression of literal class type is used in a context where an
11872     //   integral constant expression is required, then that class type shall
11873     //   have a single non-explicit conversion function to an integral or
11874     //   unscoped enumeration type
11875     ExprResult Converted;
11876     class CXX11ConvertDiagnoser : public ICEConvertDiagnoser {
11877     public:
11878       CXX11ConvertDiagnoser(bool Silent)
11879           : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false,
11880                                 Silent, true) {}
11881 
11882       SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
11883                                            QualType T) override {
11884         return S.Diag(Loc, diag::err_ice_not_integral) << T;
11885       }
11886 
11887       SemaDiagnosticBuilder diagnoseIncomplete(
11888           Sema &S, SourceLocation Loc, QualType T) override {
11889         return S.Diag(Loc, diag::err_ice_incomplete_type) << T;
11890       }
11891 
11892       SemaDiagnosticBuilder diagnoseExplicitConv(
11893           Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
11894         return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy;
11895       }
11896 
11897       SemaDiagnosticBuilder noteExplicitConv(
11898           Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
11899         return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
11900                  << ConvTy->isEnumeralType() << ConvTy;
11901       }
11902 
11903       SemaDiagnosticBuilder diagnoseAmbiguous(
11904           Sema &S, SourceLocation Loc, QualType T) override {
11905         return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T;
11906       }
11907 
11908       SemaDiagnosticBuilder noteAmbiguous(
11909           Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
11910         return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
11911                  << ConvTy->isEnumeralType() << ConvTy;
11912       }
11913 
11914       SemaDiagnosticBuilder diagnoseConversion(
11915           Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
11916         llvm_unreachable("conversion functions are permitted");
11917       }
11918     } ConvertDiagnoser(Diagnoser.Suppress);
11919 
11920     Converted = PerformContextualImplicitConversion(DiagLoc, E,
11921                                                     ConvertDiagnoser);
11922     if (Converted.isInvalid())
11923       return Converted;
11924     E = Converted.get();
11925     if (!E->getType()->isIntegralOrUnscopedEnumerationType())
11926       return ExprError();
11927   } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
11928     // An ICE must be of integral or unscoped enumeration type.
11929     if (!Diagnoser.Suppress)
11930       Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange());
11931     return ExprError();
11932   }
11933 
11934   // Circumvent ICE checking in C++11 to avoid evaluating the expression twice
11935   // in the non-ICE case.
11936   if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) {
11937     if (Result)
11938       *Result = E->EvaluateKnownConstInt(Context);
11939     return E;
11940   }
11941 
11942   Expr::EvalResult EvalResult;
11943   SmallVector<PartialDiagnosticAt, 8> Notes;
11944   EvalResult.Diag = &Notes;
11945 
11946   // Try to evaluate the expression, and produce diagnostics explaining why it's
11947   // not a constant expression as a side-effect.
11948   bool Folded = E->EvaluateAsRValue(EvalResult, Context) &&
11949                 EvalResult.Val.isInt() && !EvalResult.HasSideEffects;
11950 
11951   // In C++11, we can rely on diagnostics being produced for any expression
11952   // which is not a constant expression. If no diagnostics were produced, then
11953   // this is a constant expression.
11954   if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) {
11955     if (Result)
11956       *Result = EvalResult.Val.getInt();
11957     return E;
11958   }
11959 
11960   // If our only note is the usual "invalid subexpression" note, just point
11961   // the caret at its location rather than producing an essentially
11962   // redundant note.
11963   if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
11964         diag::note_invalid_subexpr_in_const_expr) {
11965     DiagLoc = Notes[0].first;
11966     Notes.clear();
11967   }
11968 
11969   if (!Folded || !AllowFold) {
11970     if (!Diagnoser.Suppress) {
11971       Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange());
11972       for (unsigned I = 0, N = Notes.size(); I != N; ++I)
11973         Diag(Notes[I].first, Notes[I].second);
11974     }
11975 
11976     return ExprError();
11977   }
11978 
11979   Diagnoser.diagnoseFold(*this, DiagLoc, E->getSourceRange());
11980   for (unsigned I = 0, N = Notes.size(); I != N; ++I)
11981     Diag(Notes[I].first, Notes[I].second);
11982 
11983   if (Result)
11984     *Result = EvalResult.Val.getInt();
11985   return E;
11986 }
11987 
11988 namespace {
11989   // Handle the case where we conclude a expression which we speculatively
11990   // considered to be unevaluated is actually evaluated.
11991   class TransformToPE : public TreeTransform<TransformToPE> {
11992     typedef TreeTransform<TransformToPE> BaseTransform;
11993 
11994   public:
11995     TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { }
11996 
11997     // Make sure we redo semantic analysis
11998     bool AlwaysRebuild() { return true; }
11999 
12000     // Make sure we handle LabelStmts correctly.
12001     // FIXME: This does the right thing, but maybe we need a more general
12002     // fix to TreeTransform?
12003     StmtResult TransformLabelStmt(LabelStmt *S) {
12004       S->getDecl()->setStmt(nullptr);
12005       return BaseTransform::TransformLabelStmt(S);
12006     }
12007 
12008     // We need to special-case DeclRefExprs referring to FieldDecls which
12009     // are not part of a member pointer formation; normal TreeTransforming
12010     // doesn't catch this case because of the way we represent them in the AST.
12011     // FIXME: This is a bit ugly; is it really the best way to handle this
12012     // case?
12013     //
12014     // Error on DeclRefExprs referring to FieldDecls.
12015     ExprResult TransformDeclRefExpr(DeclRefExpr *E) {
12016       if (isa<FieldDecl>(E->getDecl()) &&
12017           !SemaRef.isUnevaluatedContext())
12018         return SemaRef.Diag(E->getLocation(),
12019                             diag::err_invalid_non_static_member_use)
12020             << E->getDecl() << E->getSourceRange();
12021 
12022       return BaseTransform::TransformDeclRefExpr(E);
12023     }
12024 
12025     // Exception: filter out member pointer formation
12026     ExprResult TransformUnaryOperator(UnaryOperator *E) {
12027       if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType())
12028         return E;
12029 
12030       return BaseTransform::TransformUnaryOperator(E);
12031     }
12032 
12033     ExprResult TransformLambdaExpr(LambdaExpr *E) {
12034       // Lambdas never need to be transformed.
12035       return E;
12036     }
12037   };
12038 }
12039 
12040 ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) {
12041   assert(isUnevaluatedContext() &&
12042          "Should only transform unevaluated expressions");
12043   ExprEvalContexts.back().Context =
12044       ExprEvalContexts[ExprEvalContexts.size()-2].Context;
12045   if (isUnevaluatedContext())
12046     return E;
12047   return TransformToPE(*this).TransformExpr(E);
12048 }
12049 
12050 void
12051 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
12052                                       Decl *LambdaContextDecl,
12053                                       bool IsDecltype) {
12054   ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(),
12055                                 ExprNeedsCleanups, LambdaContextDecl,
12056                                 IsDecltype);
12057   ExprNeedsCleanups = false;
12058   if (!MaybeODRUseExprs.empty())
12059     std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs);
12060 }
12061 
12062 void
12063 Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
12064                                       ReuseLambdaContextDecl_t,
12065                                       bool IsDecltype) {
12066   Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl;
12067   PushExpressionEvaluationContext(NewContext, ClosureContextDecl, IsDecltype);
12068 }
12069 
12070 void Sema::PopExpressionEvaluationContext() {
12071   ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back();
12072   unsigned NumTypos = Rec.NumTypos;
12073 
12074   if (!Rec.Lambdas.empty()) {
12075     if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) {
12076       unsigned D;
12077       if (Rec.isUnevaluated()) {
12078         // C++11 [expr.prim.lambda]p2:
12079         //   A lambda-expression shall not appear in an unevaluated operand
12080         //   (Clause 5).
12081         D = diag::err_lambda_unevaluated_operand;
12082       } else {
12083         // C++1y [expr.const]p2:
12084         //   A conditional-expression e is a core constant expression unless the
12085         //   evaluation of e, following the rules of the abstract machine, would
12086         //   evaluate [...] a lambda-expression.
12087         D = diag::err_lambda_in_constant_expression;
12088       }
12089       for (const auto *L : Rec.Lambdas)
12090         Diag(L->getLocStart(), D);
12091     } else {
12092       // Mark the capture expressions odr-used. This was deferred
12093       // during lambda expression creation.
12094       for (auto *Lambda : Rec.Lambdas) {
12095         for (auto *C : Lambda->capture_inits())
12096           MarkDeclarationsReferencedInExpr(C);
12097       }
12098     }
12099   }
12100 
12101   // When are coming out of an unevaluated context, clear out any
12102   // temporaries that we may have created as part of the evaluation of
12103   // the expression in that context: they aren't relevant because they
12104   // will never be constructed.
12105   if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) {
12106     ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects,
12107                              ExprCleanupObjects.end());
12108     ExprNeedsCleanups = Rec.ParentNeedsCleanups;
12109     CleanupVarDeclMarking();
12110     std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs);
12111   // Otherwise, merge the contexts together.
12112   } else {
12113     ExprNeedsCleanups |= Rec.ParentNeedsCleanups;
12114     MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(),
12115                             Rec.SavedMaybeODRUseExprs.end());
12116   }
12117 
12118   // Pop the current expression evaluation context off the stack.
12119   ExprEvalContexts.pop_back();
12120 
12121   if (!ExprEvalContexts.empty())
12122     ExprEvalContexts.back().NumTypos += NumTypos;
12123   else
12124     assert(NumTypos == 0 && "There are outstanding typos after popping the "
12125                             "last ExpressionEvaluationContextRecord");
12126 }
12127 
12128 void Sema::DiscardCleanupsInEvaluationContext() {
12129   ExprCleanupObjects.erase(
12130          ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects,
12131          ExprCleanupObjects.end());
12132   ExprNeedsCleanups = false;
12133   MaybeODRUseExprs.clear();
12134 }
12135 
12136 ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) {
12137   if (!E->getType()->isVariablyModifiedType())
12138     return E;
12139   return TransformToPotentiallyEvaluated(E);
12140 }
12141 
12142 static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) {
12143   // Do not mark anything as "used" within a dependent context; wait for
12144   // an instantiation.
12145   if (SemaRef.CurContext->isDependentContext())
12146     return false;
12147 
12148   switch (SemaRef.ExprEvalContexts.back().Context) {
12149     case Sema::Unevaluated:
12150     case Sema::UnevaluatedAbstract:
12151       // We are in an expression that is not potentially evaluated; do nothing.
12152       // (Depending on how you read the standard, we actually do need to do
12153       // something here for null pointer constants, but the standard's
12154       // definition of a null pointer constant is completely crazy.)
12155       return false;
12156 
12157     case Sema::ConstantEvaluated:
12158     case Sema::PotentiallyEvaluated:
12159       // We are in a potentially evaluated expression (or a constant-expression
12160       // in C++03); we need to do implicit template instantiation, implicitly
12161       // define class members, and mark most declarations as used.
12162       return true;
12163 
12164     case Sema::PotentiallyEvaluatedIfUsed:
12165       // Referenced declarations will only be used if the construct in the
12166       // containing expression is used.
12167       return false;
12168   }
12169   llvm_unreachable("Invalid context");
12170 }
12171 
12172 /// \brief Mark a function referenced, and check whether it is odr-used
12173 /// (C++ [basic.def.odr]p2, C99 6.9p3)
12174 void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func,
12175                                   bool OdrUse) {
12176   assert(Func && "No function?");
12177 
12178   Func->setReferenced();
12179 
12180   // C++11 [basic.def.odr]p3:
12181   //   A function whose name appears as a potentially-evaluated expression is
12182   //   odr-used if it is the unique lookup result or the selected member of a
12183   //   set of overloaded functions [...].
12184   //
12185   // We (incorrectly) mark overload resolution as an unevaluated context, so we
12186   // can just check that here. Skip the rest of this function if we've already
12187   // marked the function as used.
12188   if (Func->isUsed(/*CheckUsedAttr=*/false) ||
12189       !IsPotentiallyEvaluatedContext(*this)) {
12190     // C++11 [temp.inst]p3:
12191     //   Unless a function template specialization has been explicitly
12192     //   instantiated or explicitly specialized, the function template
12193     //   specialization is implicitly instantiated when the specialization is
12194     //   referenced in a context that requires a function definition to exist.
12195     //
12196     // We consider constexpr function templates to be referenced in a context
12197     // that requires a definition to exist whenever they are referenced.
12198     //
12199     // FIXME: This instantiates constexpr functions too frequently. If this is
12200     // really an unevaluated context (and we're not just in the definition of a
12201     // function template or overload resolution or other cases which we
12202     // incorrectly consider to be unevaluated contexts), and we're not in a
12203     // subexpression which we actually need to evaluate (for instance, a
12204     // template argument, array bound or an expression in a braced-init-list),
12205     // we are not permitted to instantiate this constexpr function definition.
12206     //
12207     // FIXME: This also implicitly defines special members too frequently. They
12208     // are only supposed to be implicitly defined if they are odr-used, but they
12209     // are not odr-used from constant expressions in unevaluated contexts.
12210     // However, they cannot be referenced if they are deleted, and they are
12211     // deleted whenever the implicit definition of the special member would
12212     // fail.
12213     if (!Func->isConstexpr() || Func->getBody())
12214       return;
12215     CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func);
12216     if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided()))
12217       return;
12218   }
12219 
12220   // Note that this declaration has been used.
12221   if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) {
12222     Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl());
12223     if (Constructor->isDefaulted() && !Constructor->isDeleted()) {
12224       if (Constructor->isDefaultConstructor()) {
12225         if (Constructor->isTrivial() && !Constructor->hasAttr<DLLExportAttr>())
12226           return;
12227         DefineImplicitDefaultConstructor(Loc, Constructor);
12228       } else if (Constructor->isCopyConstructor()) {
12229         DefineImplicitCopyConstructor(Loc, Constructor);
12230       } else if (Constructor->isMoveConstructor()) {
12231         DefineImplicitMoveConstructor(Loc, Constructor);
12232       }
12233     } else if (Constructor->getInheritedConstructor()) {
12234       DefineInheritingConstructor(Loc, Constructor);
12235     }
12236   } else if (CXXDestructorDecl *Destructor =
12237                  dyn_cast<CXXDestructorDecl>(Func)) {
12238     Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl());
12239     if (Destructor->isDefaulted() && !Destructor->isDeleted()) {
12240       if (Destructor->isTrivial() && !Destructor->hasAttr<DLLExportAttr>())
12241         return;
12242       DefineImplicitDestructor(Loc, Destructor);
12243     }
12244     if (Destructor->isVirtual() && getLangOpts().AppleKext)
12245       MarkVTableUsed(Loc, Destructor->getParent());
12246   } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
12247     if (MethodDecl->isOverloadedOperator() &&
12248         MethodDecl->getOverloadedOperator() == OO_Equal) {
12249       MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl());
12250       if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) {
12251         if (MethodDecl->isCopyAssignmentOperator())
12252           DefineImplicitCopyAssignment(Loc, MethodDecl);
12253         else
12254           DefineImplicitMoveAssignment(Loc, MethodDecl);
12255       }
12256     } else if (isa<CXXConversionDecl>(MethodDecl) &&
12257                MethodDecl->getParent()->isLambda()) {
12258       CXXConversionDecl *Conversion =
12259           cast<CXXConversionDecl>(MethodDecl->getFirstDecl());
12260       if (Conversion->isLambdaToBlockPointerConversion())
12261         DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion);
12262       else
12263         DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion);
12264     } else if (MethodDecl->isVirtual() && getLangOpts().AppleKext)
12265       MarkVTableUsed(Loc, MethodDecl->getParent());
12266   }
12267 
12268   // Recursive functions should be marked when used from another function.
12269   // FIXME: Is this really right?
12270   if (CurContext == Func) return;
12271 
12272   // Resolve the exception specification for any function which is
12273   // used: CodeGen will need it.
12274   const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>();
12275   if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
12276     ResolveExceptionSpec(Loc, FPT);
12277 
12278   if (!OdrUse) return;
12279 
12280   // Implicit instantiation of function templates and member functions of
12281   // class templates.
12282   if (Func->isImplicitlyInstantiable()) {
12283     bool AlreadyInstantiated = false;
12284     SourceLocation PointOfInstantiation = Loc;
12285     if (FunctionTemplateSpecializationInfo *SpecInfo
12286                               = Func->getTemplateSpecializationInfo()) {
12287       if (SpecInfo->getPointOfInstantiation().isInvalid())
12288         SpecInfo->setPointOfInstantiation(Loc);
12289       else if (SpecInfo->getTemplateSpecializationKind()
12290                  == TSK_ImplicitInstantiation) {
12291         AlreadyInstantiated = true;
12292         PointOfInstantiation = SpecInfo->getPointOfInstantiation();
12293       }
12294     } else if (MemberSpecializationInfo *MSInfo
12295                                 = Func->getMemberSpecializationInfo()) {
12296       if (MSInfo->getPointOfInstantiation().isInvalid())
12297         MSInfo->setPointOfInstantiation(Loc);
12298       else if (MSInfo->getTemplateSpecializationKind()
12299                  == TSK_ImplicitInstantiation) {
12300         AlreadyInstantiated = true;
12301         PointOfInstantiation = MSInfo->getPointOfInstantiation();
12302       }
12303     }
12304 
12305     if (!AlreadyInstantiated || Func->isConstexpr()) {
12306       if (isa<CXXRecordDecl>(Func->getDeclContext()) &&
12307           cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() &&
12308           ActiveTemplateInstantiations.size())
12309         PendingLocalImplicitInstantiations.push_back(
12310             std::make_pair(Func, PointOfInstantiation));
12311       else if (Func->isConstexpr())
12312         // Do not defer instantiations of constexpr functions, to avoid the
12313         // expression evaluator needing to call back into Sema if it sees a
12314         // call to such a function.
12315         InstantiateFunctionDefinition(PointOfInstantiation, Func);
12316       else {
12317         PendingInstantiations.push_back(std::make_pair(Func,
12318                                                        PointOfInstantiation));
12319         // Notify the consumer that a function was implicitly instantiated.
12320         Consumer.HandleCXXImplicitFunctionInstantiation(Func);
12321       }
12322     }
12323   } else {
12324     // Walk redefinitions, as some of them may be instantiable.
12325     for (auto i : Func->redecls()) {
12326       if (!i->isUsed(false) && i->isImplicitlyInstantiable())
12327         MarkFunctionReferenced(Loc, i);
12328     }
12329   }
12330 
12331   // Keep track of used but undefined functions.
12332   if (!Func->isDefined()) {
12333     if (mightHaveNonExternalLinkage(Func))
12334       UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
12335     else if (Func->getMostRecentDecl()->isInlined() &&
12336              !LangOpts.GNUInline &&
12337              !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>())
12338       UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
12339   }
12340 
12341   // Normally the most current decl is marked used while processing the use and
12342   // any subsequent decls are marked used by decl merging. This fails with
12343   // template instantiation since marking can happen at the end of the file
12344   // and, because of the two phase lookup, this function is called with at
12345   // decl in the middle of a decl chain. We loop to maintain the invariant
12346   // that once a decl is used, all decls after it are also used.
12347   for (FunctionDecl *F = Func->getMostRecentDecl();; F = F->getPreviousDecl()) {
12348     F->markUsed(Context);
12349     if (F == Func)
12350       break;
12351   }
12352 }
12353 
12354 static void
12355 diagnoseUncapturableValueReference(Sema &S, SourceLocation loc,
12356                                    VarDecl *var, DeclContext *DC) {
12357   DeclContext *VarDC = var->getDeclContext();
12358 
12359   //  If the parameter still belongs to the translation unit, then
12360   //  we're actually just using one parameter in the declaration of
12361   //  the next.
12362   if (isa<ParmVarDecl>(var) &&
12363       isa<TranslationUnitDecl>(VarDC))
12364     return;
12365 
12366   // For C code, don't diagnose about capture if we're not actually in code
12367   // right now; it's impossible to write a non-constant expression outside of
12368   // function context, so we'll get other (more useful) diagnostics later.
12369   //
12370   // For C++, things get a bit more nasty... it would be nice to suppress this
12371   // diagnostic for certain cases like using a local variable in an array bound
12372   // for a member of a local class, but the correct predicate is not obvious.
12373   if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod())
12374     return;
12375 
12376   if (isa<CXXMethodDecl>(VarDC) &&
12377       cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) {
12378     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda)
12379       << var->getIdentifier();
12380   } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) {
12381     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function)
12382       << var->getIdentifier() << fn->getDeclName();
12383   } else if (isa<BlockDecl>(VarDC)) {
12384     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block)
12385       << var->getIdentifier();
12386   } else {
12387     // FIXME: Is there any other context where a local variable can be
12388     // declared?
12389     S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context)
12390       << var->getIdentifier();
12391   }
12392 
12393   S.Diag(var->getLocation(), diag::note_entity_declared_at)
12394       << var->getIdentifier();
12395 
12396   // FIXME: Add additional diagnostic info about class etc. which prevents
12397   // capture.
12398 }
12399 
12400 
12401 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var,
12402                                       bool &SubCapturesAreNested,
12403                                       QualType &CaptureType,
12404                                       QualType &DeclRefType) {
12405    // Check whether we've already captured it.
12406   if (CSI->CaptureMap.count(Var)) {
12407     // If we found a capture, any subcaptures are nested.
12408     SubCapturesAreNested = true;
12409 
12410     // Retrieve the capture type for this variable.
12411     CaptureType = CSI->getCapture(Var).getCaptureType();
12412 
12413     // Compute the type of an expression that refers to this variable.
12414     DeclRefType = CaptureType.getNonReferenceType();
12415 
12416     const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var);
12417     if (Cap.isCopyCapture() &&
12418         !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable))
12419       DeclRefType.addConst();
12420     return true;
12421   }
12422   return false;
12423 }
12424 
12425 // Only block literals, captured statements, and lambda expressions can
12426 // capture; other scopes don't work.
12427 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var,
12428                                  SourceLocation Loc,
12429                                  const bool Diagnose, Sema &S) {
12430   if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC))
12431     return getLambdaAwareParentOfDeclContext(DC);
12432   else if (Var->hasLocalStorage()) {
12433     if (Diagnose)
12434        diagnoseUncapturableValueReference(S, Loc, Var, DC);
12435   }
12436   return nullptr;
12437 }
12438 
12439 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
12440 // certain types of variables (unnamed, variably modified types etc.)
12441 // so check for eligibility.
12442 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var,
12443                                  SourceLocation Loc,
12444                                  const bool Diagnose, Sema &S) {
12445 
12446   bool IsBlock = isa<BlockScopeInfo>(CSI);
12447   bool IsLambda = isa<LambdaScopeInfo>(CSI);
12448 
12449   // Lambdas are not allowed to capture unnamed variables
12450   // (e.g. anonymous unions).
12451   // FIXME: The C++11 rule don't actually state this explicitly, but I'm
12452   // assuming that's the intent.
12453   if (IsLambda && !Var->getDeclName()) {
12454     if (Diagnose) {
12455       S.Diag(Loc, diag::err_lambda_capture_anonymous_var);
12456       S.Diag(Var->getLocation(), diag::note_declared_at);
12457     }
12458     return false;
12459   }
12460 
12461   // Prohibit variably-modified types in blocks; they're difficult to deal with.
12462   if (Var->getType()->isVariablyModifiedType() && IsBlock) {
12463     if (Diagnose) {
12464       S.Diag(Loc, diag::err_ref_vm_type);
12465       S.Diag(Var->getLocation(), diag::note_previous_decl)
12466         << Var->getDeclName();
12467     }
12468     return false;
12469   }
12470   // Prohibit structs with flexible array members too.
12471   // We cannot capture what is in the tail end of the struct.
12472   if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) {
12473     if (VTTy->getDecl()->hasFlexibleArrayMember()) {
12474       if (Diagnose) {
12475         if (IsBlock)
12476           S.Diag(Loc, diag::err_ref_flexarray_type);
12477         else
12478           S.Diag(Loc, diag::err_lambda_capture_flexarray_type)
12479             << Var->getDeclName();
12480         S.Diag(Var->getLocation(), diag::note_previous_decl)
12481           << Var->getDeclName();
12482       }
12483       return false;
12484     }
12485   }
12486   const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
12487   // Lambdas and captured statements are not allowed to capture __block
12488   // variables; they don't support the expected semantics.
12489   if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) {
12490     if (Diagnose) {
12491       S.Diag(Loc, diag::err_capture_block_variable)
12492         << Var->getDeclName() << !IsLambda;
12493       S.Diag(Var->getLocation(), diag::note_previous_decl)
12494         << Var->getDeclName();
12495     }
12496     return false;
12497   }
12498 
12499   return true;
12500 }
12501 
12502 // Returns true if the capture by block was successful.
12503 static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var,
12504                                  SourceLocation Loc,
12505                                  const bool BuildAndDiagnose,
12506                                  QualType &CaptureType,
12507                                  QualType &DeclRefType,
12508                                  const bool Nested,
12509                                  Sema &S) {
12510   Expr *CopyExpr = nullptr;
12511   bool ByRef = false;
12512 
12513   // Blocks are not allowed to capture arrays.
12514   if (CaptureType->isArrayType()) {
12515     if (BuildAndDiagnose) {
12516       S.Diag(Loc, diag::err_ref_array_type);
12517       S.Diag(Var->getLocation(), diag::note_previous_decl)
12518       << Var->getDeclName();
12519     }
12520     return false;
12521   }
12522 
12523   // Forbid the block-capture of autoreleasing variables.
12524   if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
12525     if (BuildAndDiagnose) {
12526       S.Diag(Loc, diag::err_arc_autoreleasing_capture)
12527         << /*block*/ 0;
12528       S.Diag(Var->getLocation(), diag::note_previous_decl)
12529         << Var->getDeclName();
12530     }
12531     return false;
12532   }
12533   const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
12534   if (HasBlocksAttr || CaptureType->isReferenceType()) {
12535     // Block capture by reference does not change the capture or
12536     // declaration reference types.
12537     ByRef = true;
12538   } else {
12539     // Block capture by copy introduces 'const'.
12540     CaptureType = CaptureType.getNonReferenceType().withConst();
12541     DeclRefType = CaptureType;
12542 
12543     if (S.getLangOpts().CPlusPlus && BuildAndDiagnose) {
12544       if (const RecordType *Record = DeclRefType->getAs<RecordType>()) {
12545         // The capture logic needs the destructor, so make sure we mark it.
12546         // Usually this is unnecessary because most local variables have
12547         // their destructors marked at declaration time, but parameters are
12548         // an exception because it's technically only the call site that
12549         // actually requires the destructor.
12550         if (isa<ParmVarDecl>(Var))
12551           S.FinalizeVarWithDestructor(Var, Record);
12552 
12553         // Enter a new evaluation context to insulate the copy
12554         // full-expression.
12555         EnterExpressionEvaluationContext scope(S, S.PotentiallyEvaluated);
12556 
12557         // According to the blocks spec, the capture of a variable from
12558         // the stack requires a const copy constructor.  This is not true
12559         // of the copy/move done to move a __block variable to the heap.
12560         Expr *DeclRef = new (S.Context) DeclRefExpr(Var, Nested,
12561                                                   DeclRefType.withConst(),
12562                                                   VK_LValue, Loc);
12563 
12564         ExprResult Result
12565           = S.PerformCopyInitialization(
12566               InitializedEntity::InitializeBlock(Var->getLocation(),
12567                                                   CaptureType, false),
12568               Loc, DeclRef);
12569 
12570         // Build a full-expression copy expression if initialization
12571         // succeeded and used a non-trivial constructor.  Recover from
12572         // errors by pretending that the copy isn't necessary.
12573         if (!Result.isInvalid() &&
12574             !cast<CXXConstructExpr>(Result.get())->getConstructor()
12575                 ->isTrivial()) {
12576           Result = S.MaybeCreateExprWithCleanups(Result);
12577           CopyExpr = Result.get();
12578         }
12579       }
12580     }
12581   }
12582 
12583   // Actually capture the variable.
12584   if (BuildAndDiagnose)
12585     BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc,
12586                     SourceLocation(), CaptureType, CopyExpr);
12587 
12588   return true;
12589 
12590 }
12591 
12592 
12593 /// \brief Capture the given variable in the captured region.
12594 static bool captureInCapturedRegion(CapturedRegionScopeInfo *RSI,
12595                                     VarDecl *Var,
12596                                     SourceLocation Loc,
12597                                     const bool BuildAndDiagnose,
12598                                     QualType &CaptureType,
12599                                     QualType &DeclRefType,
12600                                     const bool RefersToCapturedVariable,
12601                                     Sema &S) {
12602 
12603   // By default, capture variables by reference.
12604   bool ByRef = true;
12605   // Using an LValue reference type is consistent with Lambdas (see below).
12606   if (S.getLangOpts().OpenMP && S.IsOpenMPCapturedVar(Var))
12607     DeclRefType = DeclRefType.getUnqualifiedType();
12608   CaptureType = S.Context.getLValueReferenceType(DeclRefType);
12609   Expr *CopyExpr = nullptr;
12610   if (BuildAndDiagnose) {
12611     // The current implementation assumes that all variables are captured
12612     // by references. Since there is no capture by copy, no expression
12613     // evaluation will be needed.
12614     RecordDecl *RD = RSI->TheRecordDecl;
12615 
12616     FieldDecl *Field
12617       = FieldDecl::Create(S.Context, RD, Loc, Loc, nullptr, CaptureType,
12618                           S.Context.getTrivialTypeSourceInfo(CaptureType, Loc),
12619                           nullptr, false, ICIS_NoInit);
12620     Field->setImplicit(true);
12621     Field->setAccess(AS_private);
12622     RD->addDecl(Field);
12623 
12624     CopyExpr = new (S.Context) DeclRefExpr(Var, RefersToCapturedVariable,
12625                                             DeclRefType, VK_LValue, Loc);
12626     Var->setReferenced(true);
12627     Var->markUsed(S.Context);
12628   }
12629 
12630   // Actually capture the variable.
12631   if (BuildAndDiagnose)
12632     RSI->addCapture(Var, /*isBlock*/false, ByRef, RefersToCapturedVariable, Loc,
12633                     SourceLocation(), CaptureType, CopyExpr);
12634 
12635 
12636   return true;
12637 }
12638 
12639 /// \brief Create a field within the lambda class for the variable
12640 /// being captured.
12641 static void addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI, VarDecl *Var,
12642                                     QualType FieldType, QualType DeclRefType,
12643                                     SourceLocation Loc,
12644                                     bool RefersToCapturedVariable) {
12645   CXXRecordDecl *Lambda = LSI->Lambda;
12646 
12647   // Build the non-static data member.
12648   FieldDecl *Field
12649     = FieldDecl::Create(S.Context, Lambda, Loc, Loc, nullptr, FieldType,
12650                         S.Context.getTrivialTypeSourceInfo(FieldType, Loc),
12651                         nullptr, false, ICIS_NoInit);
12652   Field->setImplicit(true);
12653   Field->setAccess(AS_private);
12654   Lambda->addDecl(Field);
12655 }
12656 
12657 /// \brief Capture the given variable in the lambda.
12658 static bool captureInLambda(LambdaScopeInfo *LSI,
12659                             VarDecl *Var,
12660                             SourceLocation Loc,
12661                             const bool BuildAndDiagnose,
12662                             QualType &CaptureType,
12663                             QualType &DeclRefType,
12664                             const bool RefersToCapturedVariable,
12665                             const Sema::TryCaptureKind Kind,
12666                             SourceLocation EllipsisLoc,
12667                             const bool IsTopScope,
12668                             Sema &S) {
12669 
12670   // Determine whether we are capturing by reference or by value.
12671   bool ByRef = false;
12672   if (IsTopScope && Kind != Sema::TryCapture_Implicit) {
12673     ByRef = (Kind == Sema::TryCapture_ExplicitByRef);
12674   } else {
12675     ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref);
12676   }
12677 
12678   // Compute the type of the field that will capture this variable.
12679   if (ByRef) {
12680     // C++11 [expr.prim.lambda]p15:
12681     //   An entity is captured by reference if it is implicitly or
12682     //   explicitly captured but not captured by copy. It is
12683     //   unspecified whether additional unnamed non-static data
12684     //   members are declared in the closure type for entities
12685     //   captured by reference.
12686     //
12687     // FIXME: It is not clear whether we want to build an lvalue reference
12688     // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears
12689     // to do the former, while EDG does the latter. Core issue 1249 will
12690     // clarify, but for now we follow GCC because it's a more permissive and
12691     // easily defensible position.
12692     CaptureType = S.Context.getLValueReferenceType(DeclRefType);
12693   } else {
12694     // C++11 [expr.prim.lambda]p14:
12695     //   For each entity captured by copy, an unnamed non-static
12696     //   data member is declared in the closure type. The
12697     //   declaration order of these members is unspecified. The type
12698     //   of such a data member is the type of the corresponding
12699     //   captured entity if the entity is not a reference to an
12700     //   object, or the referenced type otherwise. [Note: If the
12701     //   captured entity is a reference to a function, the
12702     //   corresponding data member is also a reference to a
12703     //   function. - end note ]
12704     if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){
12705       if (!RefType->getPointeeType()->isFunctionType())
12706         CaptureType = RefType->getPointeeType();
12707     }
12708 
12709     // Forbid the lambda copy-capture of autoreleasing variables.
12710     if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
12711       if (BuildAndDiagnose) {
12712         S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1;
12713         S.Diag(Var->getLocation(), diag::note_previous_decl)
12714           << Var->getDeclName();
12715       }
12716       return false;
12717     }
12718 
12719     // Make sure that by-copy captures are of a complete and non-abstract type.
12720     if (BuildAndDiagnose) {
12721       if (!CaptureType->isDependentType() &&
12722           S.RequireCompleteType(Loc, CaptureType,
12723                                 diag::err_capture_of_incomplete_type,
12724                                 Var->getDeclName()))
12725         return false;
12726 
12727       if (S.RequireNonAbstractType(Loc, CaptureType,
12728                                    diag::err_capture_of_abstract_type))
12729         return false;
12730     }
12731   }
12732 
12733   // Capture this variable in the lambda.
12734   if (BuildAndDiagnose)
12735     addAsFieldToClosureType(S, LSI, Var, CaptureType, DeclRefType, Loc,
12736                             RefersToCapturedVariable);
12737 
12738   // Compute the type of a reference to this captured variable.
12739   if (ByRef)
12740     DeclRefType = CaptureType.getNonReferenceType();
12741   else {
12742     // C++ [expr.prim.lambda]p5:
12743     //   The closure type for a lambda-expression has a public inline
12744     //   function call operator [...]. This function call operator is
12745     //   declared const (9.3.1) if and only if the lambda-expression’s
12746     //   parameter-declaration-clause is not followed by mutable.
12747     DeclRefType = CaptureType.getNonReferenceType();
12748     if (!LSI->Mutable && !CaptureType->isReferenceType())
12749       DeclRefType.addConst();
12750   }
12751 
12752   // Add the capture.
12753   if (BuildAndDiagnose)
12754     LSI->addCapture(Var, /*IsBlock=*/false, ByRef, RefersToCapturedVariable,
12755                     Loc, EllipsisLoc, CaptureType, /*CopyExpr=*/nullptr);
12756 
12757   return true;
12758 }
12759 
12760 bool Sema::tryCaptureVariable(
12761     VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind,
12762     SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType,
12763     QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) {
12764   // An init-capture is notionally from the context surrounding its
12765   // declaration, but its parent DC is the lambda class.
12766   DeclContext *VarDC = Var->getDeclContext();
12767   if (Var->isInitCapture())
12768     VarDC = VarDC->getParent();
12769 
12770   DeclContext *DC = CurContext;
12771   const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt
12772       ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1;
12773   // We need to sync up the Declaration Context with the
12774   // FunctionScopeIndexToStopAt
12775   if (FunctionScopeIndexToStopAt) {
12776     unsigned FSIndex = FunctionScopes.size() - 1;
12777     while (FSIndex != MaxFunctionScopesIndex) {
12778       DC = getLambdaAwareParentOfDeclContext(DC);
12779       --FSIndex;
12780     }
12781   }
12782 
12783 
12784   // If the variable is declared in the current context, there is no need to
12785   // capture it.
12786   if (VarDC == DC) return true;
12787 
12788   // Capture global variables if it is required to use private copy of this
12789   // variable.
12790   bool IsGlobal = !Var->hasLocalStorage();
12791   if (IsGlobal && !(LangOpts.OpenMP && IsOpenMPCapturedVar(Var)))
12792     return true;
12793 
12794   // Walk up the stack to determine whether we can capture the variable,
12795   // performing the "simple" checks that don't depend on type. We stop when
12796   // we've either hit the declared scope of the variable or find an existing
12797   // capture of that variable.  We start from the innermost capturing-entity
12798   // (the DC) and ensure that all intervening capturing-entities
12799   // (blocks/lambdas etc.) between the innermost capturer and the variable`s
12800   // declcontext can either capture the variable or have already captured
12801   // the variable.
12802   CaptureType = Var->getType();
12803   DeclRefType = CaptureType.getNonReferenceType();
12804   bool Nested = false;
12805   bool Explicit = (Kind != TryCapture_Implicit);
12806   unsigned FunctionScopesIndex = MaxFunctionScopesIndex;
12807   unsigned OpenMPLevel = 0;
12808   do {
12809     // Only block literals, captured statements, and lambda expressions can
12810     // capture; other scopes don't work.
12811     DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var,
12812                                                               ExprLoc,
12813                                                               BuildAndDiagnose,
12814                                                               *this);
12815     // We need to check for the parent *first* because, if we *have*
12816     // private-captured a global variable, we need to recursively capture it in
12817     // intermediate blocks, lambdas, etc.
12818     if (!ParentDC) {
12819       if (IsGlobal) {
12820         FunctionScopesIndex = MaxFunctionScopesIndex - 1;
12821         break;
12822       }
12823       return true;
12824     }
12825 
12826     FunctionScopeInfo  *FSI = FunctionScopes[FunctionScopesIndex];
12827     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI);
12828 
12829 
12830     // Check whether we've already captured it.
12831     if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType,
12832                                              DeclRefType))
12833       break;
12834     if (getLangOpts().OpenMP) {
12835       if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
12836         // OpenMP private variables should not be captured in outer scope, so
12837         // just break here.
12838         if (RSI->CapRegionKind == CR_OpenMP) {
12839           if (isOpenMPPrivateVar(Var, OpenMPLevel)) {
12840             Nested = true;
12841             DeclRefType = DeclRefType.getUnqualifiedType();
12842             CaptureType = Context.getLValueReferenceType(DeclRefType);
12843             break;
12844           }
12845           ++OpenMPLevel;
12846         }
12847       }
12848     }
12849     // If we are instantiating a generic lambda call operator body,
12850     // we do not want to capture new variables.  What was captured
12851     // during either a lambdas transformation or initial parsing
12852     // should be used.
12853     if (isGenericLambdaCallOperatorSpecialization(DC)) {
12854       if (BuildAndDiagnose) {
12855         LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
12856         if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) {
12857           Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
12858           Diag(Var->getLocation(), diag::note_previous_decl)
12859              << Var->getDeclName();
12860           Diag(LSI->Lambda->getLocStart(), diag::note_lambda_decl);
12861         } else
12862           diagnoseUncapturableValueReference(*this, ExprLoc, Var, DC);
12863       }
12864       return true;
12865     }
12866     // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
12867     // certain types of variables (unnamed, variably modified types etc.)
12868     // so check for eligibility.
12869     if (!isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this))
12870        return true;
12871 
12872     // Try to capture variable-length arrays types.
12873     if (Var->getType()->isVariablyModifiedType()) {
12874       // We're going to walk down into the type and look for VLA
12875       // expressions.
12876       QualType QTy = Var->getType();
12877       if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var))
12878         QTy = PVD->getOriginalType();
12879       do {
12880         const Type *Ty = QTy.getTypePtr();
12881         switch (Ty->getTypeClass()) {
12882 #define TYPE(Class, Base)
12883 #define ABSTRACT_TYPE(Class, Base)
12884 #define NON_CANONICAL_TYPE(Class, Base)
12885 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
12886 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base)
12887 #include "clang/AST/TypeNodes.def"
12888           QTy = QualType();
12889           break;
12890         // These types are never variably-modified.
12891         case Type::Builtin:
12892         case Type::Complex:
12893         case Type::Vector:
12894         case Type::ExtVector:
12895         case Type::Record:
12896         case Type::Enum:
12897         case Type::Elaborated:
12898         case Type::TemplateSpecialization:
12899         case Type::ObjCObject:
12900         case Type::ObjCInterface:
12901         case Type::ObjCObjectPointer:
12902           llvm_unreachable("type class is never variably-modified!");
12903         case Type::Adjusted:
12904           QTy = cast<AdjustedType>(Ty)->getOriginalType();
12905           break;
12906         case Type::Decayed:
12907           QTy = cast<DecayedType>(Ty)->getPointeeType();
12908           break;
12909         case Type::Pointer:
12910           QTy = cast<PointerType>(Ty)->getPointeeType();
12911           break;
12912         case Type::BlockPointer:
12913           QTy = cast<BlockPointerType>(Ty)->getPointeeType();
12914           break;
12915         case Type::LValueReference:
12916         case Type::RValueReference:
12917           QTy = cast<ReferenceType>(Ty)->getPointeeType();
12918           break;
12919         case Type::MemberPointer:
12920           QTy = cast<MemberPointerType>(Ty)->getPointeeType();
12921           break;
12922         case Type::ConstantArray:
12923         case Type::IncompleteArray:
12924           // Losing element qualification here is fine.
12925           QTy = cast<ArrayType>(Ty)->getElementType();
12926           break;
12927         case Type::VariableArray: {
12928           // Losing element qualification here is fine.
12929           const VariableArrayType *VAT = cast<VariableArrayType>(Ty);
12930 
12931           // Unknown size indication requires no size computation.
12932           // Otherwise, evaluate and record it.
12933           if (auto Size = VAT->getSizeExpr()) {
12934             if (!CSI->isVLATypeCaptured(VAT)) {
12935               RecordDecl *CapRecord = nullptr;
12936               if (auto LSI = dyn_cast<LambdaScopeInfo>(CSI)) {
12937                 CapRecord = LSI->Lambda;
12938               } else if (auto CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
12939                 CapRecord = CRSI->TheRecordDecl;
12940               }
12941               if (CapRecord) {
12942                 auto ExprLoc = Size->getExprLoc();
12943                 auto SizeType = Context.getSizeType();
12944                 // Build the non-static data member.
12945                 auto Field = FieldDecl::Create(
12946                     Context, CapRecord, ExprLoc, ExprLoc,
12947                     /*Id*/ nullptr, SizeType, /*TInfo*/ nullptr,
12948                     /*BW*/ nullptr, /*Mutable*/ false,
12949                     /*InitStyle*/ ICIS_NoInit);
12950                 Field->setImplicit(true);
12951                 Field->setAccess(AS_private);
12952                 Field->setCapturedVLAType(VAT);
12953                 CapRecord->addDecl(Field);
12954 
12955                 CSI->addVLATypeCapture(ExprLoc, SizeType);
12956               }
12957             }
12958           }
12959           QTy = VAT->getElementType();
12960           break;
12961         }
12962         case Type::FunctionProto:
12963         case Type::FunctionNoProto:
12964           QTy = cast<FunctionType>(Ty)->getReturnType();
12965           break;
12966         case Type::Paren:
12967         case Type::TypeOf:
12968         case Type::UnaryTransform:
12969         case Type::Attributed:
12970         case Type::SubstTemplateTypeParm:
12971         case Type::PackExpansion:
12972           // Keep walking after single level desugaring.
12973           QTy = QTy.getSingleStepDesugaredType(getASTContext());
12974           break;
12975         case Type::Typedef:
12976           QTy = cast<TypedefType>(Ty)->desugar();
12977           break;
12978         case Type::Decltype:
12979           QTy = cast<DecltypeType>(Ty)->desugar();
12980           break;
12981         case Type::Auto:
12982           QTy = cast<AutoType>(Ty)->getDeducedType();
12983           break;
12984         case Type::TypeOfExpr:
12985           QTy = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType();
12986           break;
12987         case Type::Atomic:
12988           QTy = cast<AtomicType>(Ty)->getValueType();
12989           break;
12990         }
12991       } while (!QTy.isNull() && QTy->isVariablyModifiedType());
12992     }
12993 
12994     if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) {
12995       // No capture-default, and this is not an explicit capture
12996       // so cannot capture this variable.
12997       if (BuildAndDiagnose) {
12998         Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
12999         Diag(Var->getLocation(), diag::note_previous_decl)
13000           << Var->getDeclName();
13001         Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(),
13002              diag::note_lambda_decl);
13003         // FIXME: If we error out because an outer lambda can not implicitly
13004         // capture a variable that an inner lambda explicitly captures, we
13005         // should have the inner lambda do the explicit capture - because
13006         // it makes for cleaner diagnostics later.  This would purely be done
13007         // so that the diagnostic does not misleadingly claim that a variable
13008         // can not be captured by a lambda implicitly even though it is captured
13009         // explicitly.  Suggestion:
13010         //  - create const bool VariableCaptureWasInitiallyExplicit = Explicit
13011         //    at the function head
13012         //  - cache the StartingDeclContext - this must be a lambda
13013         //  - captureInLambda in the innermost lambda the variable.
13014       }
13015       return true;
13016     }
13017 
13018     FunctionScopesIndex--;
13019     DC = ParentDC;
13020     Explicit = false;
13021   } while (!VarDC->Equals(DC));
13022 
13023   // Walk back down the scope stack, (e.g. from outer lambda to inner lambda)
13024   // computing the type of the capture at each step, checking type-specific
13025   // requirements, and adding captures if requested.
13026   // If the variable had already been captured previously, we start capturing
13027   // at the lambda nested within that one.
13028   for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N;
13029        ++I) {
13030     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]);
13031 
13032     if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) {
13033       if (!captureInBlock(BSI, Var, ExprLoc,
13034                           BuildAndDiagnose, CaptureType,
13035                           DeclRefType, Nested, *this))
13036         return true;
13037       Nested = true;
13038     } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
13039       if (!captureInCapturedRegion(RSI, Var, ExprLoc,
13040                                    BuildAndDiagnose, CaptureType,
13041                                    DeclRefType, Nested, *this))
13042         return true;
13043       Nested = true;
13044     } else {
13045       LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
13046       if (!captureInLambda(LSI, Var, ExprLoc,
13047                            BuildAndDiagnose, CaptureType,
13048                            DeclRefType, Nested, Kind, EllipsisLoc,
13049                             /*IsTopScope*/I == N - 1, *this))
13050         return true;
13051       Nested = true;
13052     }
13053   }
13054   return false;
13055 }
13056 
13057 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc,
13058                               TryCaptureKind Kind, SourceLocation EllipsisLoc) {
13059   QualType CaptureType;
13060   QualType DeclRefType;
13061   return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc,
13062                             /*BuildAndDiagnose=*/true, CaptureType,
13063                             DeclRefType, nullptr);
13064 }
13065 
13066 bool Sema::NeedToCaptureVariable(VarDecl *Var, SourceLocation Loc) {
13067   QualType CaptureType;
13068   QualType DeclRefType;
13069   return !tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
13070                              /*BuildAndDiagnose=*/false, CaptureType,
13071                              DeclRefType, nullptr);
13072 }
13073 
13074 QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) {
13075   QualType CaptureType;
13076   QualType DeclRefType;
13077 
13078   // Determine whether we can capture this variable.
13079   if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
13080                          /*BuildAndDiagnose=*/false, CaptureType,
13081                          DeclRefType, nullptr))
13082     return QualType();
13083 
13084   return DeclRefType;
13085 }
13086 
13087 
13088 
13089 // If either the type of the variable or the initializer is dependent,
13090 // return false. Otherwise, determine whether the variable is a constant
13091 // expression. Use this if you need to know if a variable that might or
13092 // might not be dependent is truly a constant expression.
13093 static inline bool IsVariableNonDependentAndAConstantExpression(VarDecl *Var,
13094     ASTContext &Context) {
13095 
13096   if (Var->getType()->isDependentType())
13097     return false;
13098   const VarDecl *DefVD = nullptr;
13099   Var->getAnyInitializer(DefVD);
13100   if (!DefVD)
13101     return false;
13102   EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt();
13103   Expr *Init = cast<Expr>(Eval->Value);
13104   if (Init->isValueDependent())
13105     return false;
13106   return IsVariableAConstantExpression(Var, Context);
13107 }
13108 
13109 
13110 void Sema::UpdateMarkingForLValueToRValue(Expr *E) {
13111   // Per C++11 [basic.def.odr], a variable is odr-used "unless it is
13112   // an object that satisfies the requirements for appearing in a
13113   // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1)
13114   // is immediately applied."  This function handles the lvalue-to-rvalue
13115   // conversion part.
13116   MaybeODRUseExprs.erase(E->IgnoreParens());
13117 
13118   // If we are in a lambda, check if this DeclRefExpr or MemberExpr refers
13119   // to a variable that is a constant expression, and if so, identify it as
13120   // a reference to a variable that does not involve an odr-use of that
13121   // variable.
13122   if (LambdaScopeInfo *LSI = getCurLambda()) {
13123     Expr *SansParensExpr = E->IgnoreParens();
13124     VarDecl *Var = nullptr;
13125     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(SansParensExpr))
13126       Var = dyn_cast<VarDecl>(DRE->getFoundDecl());
13127     else if (MemberExpr *ME = dyn_cast<MemberExpr>(SansParensExpr))
13128       Var = dyn_cast<VarDecl>(ME->getMemberDecl());
13129 
13130     if (Var && IsVariableNonDependentAndAConstantExpression(Var, Context))
13131       LSI->markVariableExprAsNonODRUsed(SansParensExpr);
13132   }
13133 }
13134 
13135 ExprResult Sema::ActOnConstantExpression(ExprResult Res) {
13136   Res = CorrectDelayedTyposInExpr(Res);
13137 
13138   if (!Res.isUsable())
13139     return Res;
13140 
13141   // If a constant-expression is a reference to a variable where we delay
13142   // deciding whether it is an odr-use, just assume we will apply the
13143   // lvalue-to-rvalue conversion.  In the one case where this doesn't happen
13144   // (a non-type template argument), we have special handling anyway.
13145   UpdateMarkingForLValueToRValue(Res.get());
13146   return Res;
13147 }
13148 
13149 void Sema::CleanupVarDeclMarking() {
13150   for (llvm::SmallPtrSetIterator<Expr*> i = MaybeODRUseExprs.begin(),
13151                                         e = MaybeODRUseExprs.end();
13152        i != e; ++i) {
13153     VarDecl *Var;
13154     SourceLocation Loc;
13155     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*i)) {
13156       Var = cast<VarDecl>(DRE->getDecl());
13157       Loc = DRE->getLocation();
13158     } else if (MemberExpr *ME = dyn_cast<MemberExpr>(*i)) {
13159       Var = cast<VarDecl>(ME->getMemberDecl());
13160       Loc = ME->getMemberLoc();
13161     } else {
13162       llvm_unreachable("Unexpected expression");
13163     }
13164 
13165     MarkVarDeclODRUsed(Var, Loc, *this,
13166                        /*MaxFunctionScopeIndex Pointer*/ nullptr);
13167   }
13168 
13169   MaybeODRUseExprs.clear();
13170 }
13171 
13172 
13173 static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc,
13174                                     VarDecl *Var, Expr *E) {
13175   assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E)) &&
13176          "Invalid Expr argument to DoMarkVarDeclReferenced");
13177   Var->setReferenced();
13178 
13179   TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
13180   bool MarkODRUsed = true;
13181 
13182   // If the context is not potentially evaluated, this is not an odr-use and
13183   // does not trigger instantiation.
13184   if (!IsPotentiallyEvaluatedContext(SemaRef)) {
13185     if (SemaRef.isUnevaluatedContext())
13186       return;
13187 
13188     // If we don't yet know whether this context is going to end up being an
13189     // evaluated context, and we're referencing a variable from an enclosing
13190     // scope, add a potential capture.
13191     //
13192     // FIXME: Is this necessary? These contexts are only used for default
13193     // arguments, where local variables can't be used.
13194     const bool RefersToEnclosingScope =
13195         (SemaRef.CurContext != Var->getDeclContext() &&
13196          Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage());
13197     if (RefersToEnclosingScope) {
13198       if (LambdaScopeInfo *const LSI = SemaRef.getCurLambda()) {
13199         // If a variable could potentially be odr-used, defer marking it so
13200         // until we finish analyzing the full expression for any
13201         // lvalue-to-rvalue
13202         // or discarded value conversions that would obviate odr-use.
13203         // Add it to the list of potential captures that will be analyzed
13204         // later (ActOnFinishFullExpr) for eventual capture and odr-use marking
13205         // unless the variable is a reference that was initialized by a constant
13206         // expression (this will never need to be captured or odr-used).
13207         assert(E && "Capture variable should be used in an expression.");
13208         if (!Var->getType()->isReferenceType() ||
13209             !IsVariableNonDependentAndAConstantExpression(Var, SemaRef.Context))
13210           LSI->addPotentialCapture(E->IgnoreParens());
13211       }
13212     }
13213 
13214     if (!isTemplateInstantiation(TSK))
13215     	return;
13216 
13217     // Instantiate, but do not mark as odr-used, variable templates.
13218     MarkODRUsed = false;
13219   }
13220 
13221   VarTemplateSpecializationDecl *VarSpec =
13222       dyn_cast<VarTemplateSpecializationDecl>(Var);
13223   assert(!isa<VarTemplatePartialSpecializationDecl>(Var) &&
13224          "Can't instantiate a partial template specialization.");
13225 
13226   // Perform implicit instantiation of static data members, static data member
13227   // templates of class templates, and variable template specializations. Delay
13228   // instantiations of variable templates, except for those that could be used
13229   // in a constant expression.
13230   if (isTemplateInstantiation(TSK)) {
13231     bool TryInstantiating = TSK == TSK_ImplicitInstantiation;
13232 
13233     if (TryInstantiating && !isa<VarTemplateSpecializationDecl>(Var)) {
13234       if (Var->getPointOfInstantiation().isInvalid()) {
13235         // This is a modification of an existing AST node. Notify listeners.
13236         if (ASTMutationListener *L = SemaRef.getASTMutationListener())
13237           L->StaticDataMemberInstantiated(Var);
13238       } else if (!Var->isUsableInConstantExpressions(SemaRef.Context))
13239         // Don't bother trying to instantiate it again, unless we might need
13240         // its initializer before we get to the end of the TU.
13241         TryInstantiating = false;
13242     }
13243 
13244     if (Var->getPointOfInstantiation().isInvalid())
13245       Var->setTemplateSpecializationKind(TSK, Loc);
13246 
13247     if (TryInstantiating) {
13248       SourceLocation PointOfInstantiation = Var->getPointOfInstantiation();
13249       bool InstantiationDependent = false;
13250       bool IsNonDependent =
13251           VarSpec ? !TemplateSpecializationType::anyDependentTemplateArguments(
13252                         VarSpec->getTemplateArgsInfo(), InstantiationDependent)
13253                   : true;
13254 
13255       // Do not instantiate specializations that are still type-dependent.
13256       if (IsNonDependent) {
13257         if (Var->isUsableInConstantExpressions(SemaRef.Context)) {
13258           // Do not defer instantiations of variables which could be used in a
13259           // constant expression.
13260           SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var);
13261         } else {
13262           SemaRef.PendingInstantiations
13263               .push_back(std::make_pair(Var, PointOfInstantiation));
13264         }
13265       }
13266     }
13267   }
13268 
13269   if(!MarkODRUsed) return;
13270 
13271   // Per C++11 [basic.def.odr], a variable is odr-used "unless it satisfies
13272   // the requirements for appearing in a constant expression (5.19) and, if
13273   // it is an object, the lvalue-to-rvalue conversion (4.1)
13274   // is immediately applied."  We check the first part here, and
13275   // Sema::UpdateMarkingForLValueToRValue deals with the second part.
13276   // Note that we use the C++11 definition everywhere because nothing in
13277   // C++03 depends on whether we get the C++03 version correct. The second
13278   // part does not apply to references, since they are not objects.
13279   if (E && IsVariableAConstantExpression(Var, SemaRef.Context)) {
13280     // A reference initialized by a constant expression can never be
13281     // odr-used, so simply ignore it.
13282     if (!Var->getType()->isReferenceType())
13283       SemaRef.MaybeODRUseExprs.insert(E);
13284   } else
13285     MarkVarDeclODRUsed(Var, Loc, SemaRef,
13286                        /*MaxFunctionScopeIndex ptr*/ nullptr);
13287 }
13288 
13289 /// \brief Mark a variable referenced, and check whether it is odr-used
13290 /// (C++ [basic.def.odr]p2, C99 6.9p3).  Note that this should not be
13291 /// used directly for normal expressions referring to VarDecl.
13292 void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) {
13293   DoMarkVarDeclReferenced(*this, Loc, Var, nullptr);
13294 }
13295 
13296 static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc,
13297                                Decl *D, Expr *E, bool OdrUse) {
13298   if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
13299     DoMarkVarDeclReferenced(SemaRef, Loc, Var, E);
13300     return;
13301   }
13302 
13303   SemaRef.MarkAnyDeclReferenced(Loc, D, OdrUse);
13304 
13305   // If this is a call to a method via a cast, also mark the method in the
13306   // derived class used in case codegen can devirtualize the call.
13307   const MemberExpr *ME = dyn_cast<MemberExpr>(E);
13308   if (!ME)
13309     return;
13310   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl());
13311   if (!MD)
13312     return;
13313   // Only attempt to devirtualize if this is truly a virtual call.
13314   bool IsVirtualCall = MD->isVirtual() &&
13315                           ME->performsVirtualDispatch(SemaRef.getLangOpts());
13316   if (!IsVirtualCall)
13317     return;
13318   const Expr *Base = ME->getBase();
13319   const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType();
13320   if (!MostDerivedClassDecl)
13321     return;
13322   CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl);
13323   if (!DM || DM->isPure())
13324     return;
13325   SemaRef.MarkAnyDeclReferenced(Loc, DM, OdrUse);
13326 }
13327 
13328 /// \brief Perform reference-marking and odr-use handling for a DeclRefExpr.
13329 void Sema::MarkDeclRefReferenced(DeclRefExpr *E) {
13330   // TODO: update this with DR# once a defect report is filed.
13331   // C++11 defect. The address of a pure member should not be an ODR use, even
13332   // if it's a qualified reference.
13333   bool OdrUse = true;
13334   if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl()))
13335     if (Method->isVirtual())
13336       OdrUse = false;
13337   MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse);
13338 }
13339 
13340 /// \brief Perform reference-marking and odr-use handling for a MemberExpr.
13341 void Sema::MarkMemberReferenced(MemberExpr *E) {
13342   // C++11 [basic.def.odr]p2:
13343   //   A non-overloaded function whose name appears as a potentially-evaluated
13344   //   expression or a member of a set of candidate functions, if selected by
13345   //   overload resolution when referred to from a potentially-evaluated
13346   //   expression, is odr-used, unless it is a pure virtual function and its
13347   //   name is not explicitly qualified.
13348   bool OdrUse = true;
13349   if (E->performsVirtualDispatch(getLangOpts())) {
13350     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl()))
13351       if (Method->isPure())
13352         OdrUse = false;
13353   }
13354   SourceLocation Loc = E->getMemberLoc().isValid() ?
13355                             E->getMemberLoc() : E->getLocStart();
13356   MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, OdrUse);
13357 }
13358 
13359 /// \brief Perform marking for a reference to an arbitrary declaration.  It
13360 /// marks the declaration referenced, and performs odr-use checking for
13361 /// functions and variables. This method should not be used when building a
13362 /// normal expression which refers to a variable.
13363 void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool OdrUse) {
13364   if (OdrUse) {
13365     if (auto *VD = dyn_cast<VarDecl>(D)) {
13366       MarkVariableReferenced(Loc, VD);
13367       return;
13368     }
13369   }
13370   if (auto *FD = dyn_cast<FunctionDecl>(D)) {
13371     MarkFunctionReferenced(Loc, FD, OdrUse);
13372     return;
13373   }
13374   D->setReferenced();
13375 }
13376 
13377 namespace {
13378   // Mark all of the declarations referenced
13379   // FIXME: Not fully implemented yet! We need to have a better understanding
13380   // of when we're entering
13381   class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> {
13382     Sema &S;
13383     SourceLocation Loc;
13384 
13385   public:
13386     typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited;
13387 
13388     MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { }
13389 
13390     bool TraverseTemplateArgument(const TemplateArgument &Arg);
13391     bool TraverseRecordType(RecordType *T);
13392   };
13393 }
13394 
13395 bool MarkReferencedDecls::TraverseTemplateArgument(
13396     const TemplateArgument &Arg) {
13397   if (Arg.getKind() == TemplateArgument::Declaration) {
13398     if (Decl *D = Arg.getAsDecl())
13399       S.MarkAnyDeclReferenced(Loc, D, true);
13400   }
13401 
13402   return Inherited::TraverseTemplateArgument(Arg);
13403 }
13404 
13405 bool MarkReferencedDecls::TraverseRecordType(RecordType *T) {
13406   if (ClassTemplateSpecializationDecl *Spec
13407                   = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) {
13408     const TemplateArgumentList &Args = Spec->getTemplateArgs();
13409     return TraverseTemplateArguments(Args.data(), Args.size());
13410   }
13411 
13412   return true;
13413 }
13414 
13415 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) {
13416   MarkReferencedDecls Marker(*this, Loc);
13417   Marker.TraverseType(Context.getCanonicalType(T));
13418 }
13419 
13420 namespace {
13421   /// \brief Helper class that marks all of the declarations referenced by
13422   /// potentially-evaluated subexpressions as "referenced".
13423   class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> {
13424     Sema &S;
13425     bool SkipLocalVariables;
13426 
13427   public:
13428     typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited;
13429 
13430     EvaluatedExprMarker(Sema &S, bool SkipLocalVariables)
13431       : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { }
13432 
13433     void VisitDeclRefExpr(DeclRefExpr *E) {
13434       // If we were asked not to visit local variables, don't.
13435       if (SkipLocalVariables) {
13436         if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
13437           if (VD->hasLocalStorage())
13438             return;
13439       }
13440 
13441       S.MarkDeclRefReferenced(E);
13442     }
13443 
13444     void VisitMemberExpr(MemberExpr *E) {
13445       S.MarkMemberReferenced(E);
13446       Inherited::VisitMemberExpr(E);
13447     }
13448 
13449     void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
13450       S.MarkFunctionReferenced(E->getLocStart(),
13451             const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor()));
13452       Visit(E->getSubExpr());
13453     }
13454 
13455     void VisitCXXNewExpr(CXXNewExpr *E) {
13456       if (E->getOperatorNew())
13457         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew());
13458       if (E->getOperatorDelete())
13459         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
13460       Inherited::VisitCXXNewExpr(E);
13461     }
13462 
13463     void VisitCXXDeleteExpr(CXXDeleteExpr *E) {
13464       if (E->getOperatorDelete())
13465         S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
13466       QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType());
13467       if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) {
13468         CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl());
13469         S.MarkFunctionReferenced(E->getLocStart(),
13470                                     S.LookupDestructor(Record));
13471       }
13472 
13473       Inherited::VisitCXXDeleteExpr(E);
13474     }
13475 
13476     void VisitCXXConstructExpr(CXXConstructExpr *E) {
13477       S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor());
13478       Inherited::VisitCXXConstructExpr(E);
13479     }
13480 
13481     void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) {
13482       Visit(E->getExpr());
13483     }
13484 
13485     void VisitImplicitCastExpr(ImplicitCastExpr *E) {
13486       Inherited::VisitImplicitCastExpr(E);
13487 
13488       if (E->getCastKind() == CK_LValueToRValue)
13489         S.UpdateMarkingForLValueToRValue(E->getSubExpr());
13490     }
13491   };
13492 }
13493 
13494 /// \brief Mark any declarations that appear within this expression or any
13495 /// potentially-evaluated subexpressions as "referenced".
13496 ///
13497 /// \param SkipLocalVariables If true, don't mark local variables as
13498 /// 'referenced'.
13499 void Sema::MarkDeclarationsReferencedInExpr(Expr *E,
13500                                             bool SkipLocalVariables) {
13501   EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E);
13502 }
13503 
13504 /// \brief Emit a diagnostic that describes an effect on the run-time behavior
13505 /// of the program being compiled.
13506 ///
13507 /// This routine emits the given diagnostic when the code currently being
13508 /// type-checked is "potentially evaluated", meaning that there is a
13509 /// possibility that the code will actually be executable. Code in sizeof()
13510 /// expressions, code used only during overload resolution, etc., are not
13511 /// potentially evaluated. This routine will suppress such diagnostics or,
13512 /// in the absolutely nutty case of potentially potentially evaluated
13513 /// expressions (C++ typeid), queue the diagnostic to potentially emit it
13514 /// later.
13515 ///
13516 /// This routine should be used for all diagnostics that describe the run-time
13517 /// behavior of a program, such as passing a non-POD value through an ellipsis.
13518 /// Failure to do so will likely result in spurious diagnostics or failures
13519 /// during overload resolution or within sizeof/alignof/typeof/typeid.
13520 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement,
13521                                const PartialDiagnostic &PD) {
13522   switch (ExprEvalContexts.back().Context) {
13523   case Unevaluated:
13524   case UnevaluatedAbstract:
13525     // The argument will never be evaluated, so don't complain.
13526     break;
13527 
13528   case ConstantEvaluated:
13529     // Relevant diagnostics should be produced by constant evaluation.
13530     break;
13531 
13532   case PotentiallyEvaluated:
13533   case PotentiallyEvaluatedIfUsed:
13534     if (Statement && getCurFunctionOrMethodDecl()) {
13535       FunctionScopes.back()->PossiblyUnreachableDiags.
13536         push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement));
13537     }
13538     else
13539       Diag(Loc, PD);
13540 
13541     return true;
13542   }
13543 
13544   return false;
13545 }
13546 
13547 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
13548                                CallExpr *CE, FunctionDecl *FD) {
13549   if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
13550     return false;
13551 
13552   // If we're inside a decltype's expression, don't check for a valid return
13553   // type or construct temporaries until we know whether this is the last call.
13554   if (ExprEvalContexts.back().IsDecltype) {
13555     ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE);
13556     return false;
13557   }
13558 
13559   class CallReturnIncompleteDiagnoser : public TypeDiagnoser {
13560     FunctionDecl *FD;
13561     CallExpr *CE;
13562 
13563   public:
13564     CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE)
13565       : FD(FD), CE(CE) { }
13566 
13567     void diagnose(Sema &S, SourceLocation Loc, QualType T) override {
13568       if (!FD) {
13569         S.Diag(Loc, diag::err_call_incomplete_return)
13570           << T << CE->getSourceRange();
13571         return;
13572       }
13573 
13574       S.Diag(Loc, diag::err_call_function_incomplete_return)
13575         << CE->getSourceRange() << FD->getDeclName() << T;
13576       S.Diag(FD->getLocation(), diag::note_entity_declared_at)
13577           << FD->getDeclName();
13578     }
13579   } Diagnoser(FD, CE);
13580 
13581   if (RequireCompleteType(Loc, ReturnType, Diagnoser))
13582     return true;
13583 
13584   return false;
13585 }
13586 
13587 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses
13588 // will prevent this condition from triggering, which is what we want.
13589 void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
13590   SourceLocation Loc;
13591 
13592   unsigned diagnostic = diag::warn_condition_is_assignment;
13593   bool IsOrAssign = false;
13594 
13595   if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
13596     if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign)
13597       return;
13598 
13599     IsOrAssign = Op->getOpcode() == BO_OrAssign;
13600 
13601     // Greylist some idioms by putting them into a warning subcategory.
13602     if (ObjCMessageExpr *ME
13603           = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) {
13604       Selector Sel = ME->getSelector();
13605 
13606       // self = [<foo> init...]
13607       if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init)
13608         diagnostic = diag::warn_condition_is_idiomatic_assignment;
13609 
13610       // <foo> = [<bar> nextObject]
13611       else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject")
13612         diagnostic = diag::warn_condition_is_idiomatic_assignment;
13613     }
13614 
13615     Loc = Op->getOperatorLoc();
13616   } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
13617     if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual)
13618       return;
13619 
13620     IsOrAssign = Op->getOperator() == OO_PipeEqual;
13621     Loc = Op->getOperatorLoc();
13622   } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E))
13623     return DiagnoseAssignmentAsCondition(POE->getSyntacticForm());
13624   else {
13625     // Not an assignment.
13626     return;
13627   }
13628 
13629   Diag(Loc, diagnostic) << E->getSourceRange();
13630 
13631   SourceLocation Open = E->getLocStart();
13632   SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd());
13633   Diag(Loc, diag::note_condition_assign_silence)
13634         << FixItHint::CreateInsertion(Open, "(")
13635         << FixItHint::CreateInsertion(Close, ")");
13636 
13637   if (IsOrAssign)
13638     Diag(Loc, diag::note_condition_or_assign_to_comparison)
13639       << FixItHint::CreateReplacement(Loc, "!=");
13640   else
13641     Diag(Loc, diag::note_condition_assign_to_comparison)
13642       << FixItHint::CreateReplacement(Loc, "==");
13643 }
13644 
13645 /// \brief Redundant parentheses over an equality comparison can indicate
13646 /// that the user intended an assignment used as condition.
13647 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) {
13648   // Don't warn if the parens came from a macro.
13649   SourceLocation parenLoc = ParenE->getLocStart();
13650   if (parenLoc.isInvalid() || parenLoc.isMacroID())
13651     return;
13652   // Don't warn for dependent expressions.
13653   if (ParenE->isTypeDependent())
13654     return;
13655 
13656   Expr *E = ParenE->IgnoreParens();
13657 
13658   if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E))
13659     if (opE->getOpcode() == BO_EQ &&
13660         opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context)
13661                                                            == Expr::MLV_Valid) {
13662       SourceLocation Loc = opE->getOperatorLoc();
13663 
13664       Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange();
13665       SourceRange ParenERange = ParenE->getSourceRange();
13666       Diag(Loc, diag::note_equality_comparison_silence)
13667         << FixItHint::CreateRemoval(ParenERange.getBegin())
13668         << FixItHint::CreateRemoval(ParenERange.getEnd());
13669       Diag(Loc, diag::note_equality_comparison_to_assign)
13670         << FixItHint::CreateReplacement(Loc, "=");
13671     }
13672 }
13673 
13674 ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) {
13675   DiagnoseAssignmentAsCondition(E);
13676   if (ParenExpr *parenE = dyn_cast<ParenExpr>(E))
13677     DiagnoseEqualityWithExtraParens(parenE);
13678 
13679   ExprResult result = CheckPlaceholderExpr(E);
13680   if (result.isInvalid()) return ExprError();
13681   E = result.get();
13682 
13683   if (!E->isTypeDependent()) {
13684     if (getLangOpts().CPlusPlus)
13685       return CheckCXXBooleanCondition(E); // C++ 6.4p4
13686 
13687     ExprResult ERes = DefaultFunctionArrayLvalueConversion(E);
13688     if (ERes.isInvalid())
13689       return ExprError();
13690     E = ERes.get();
13691 
13692     QualType T = E->getType();
13693     if (!T->isScalarType()) { // C99 6.8.4.1p1
13694       Diag(Loc, diag::err_typecheck_statement_requires_scalar)
13695         << T << E->getSourceRange();
13696       return ExprError();
13697     }
13698     CheckBoolLikeConversion(E, Loc);
13699   }
13700 
13701   return E;
13702 }
13703 
13704 ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc,
13705                                        Expr *SubExpr) {
13706   if (!SubExpr)
13707     return ExprError();
13708 
13709   return CheckBooleanCondition(SubExpr, Loc);
13710 }
13711 
13712 namespace {
13713   /// A visitor for rebuilding a call to an __unknown_any expression
13714   /// to have an appropriate type.
13715   struct RebuildUnknownAnyFunction
13716     : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> {
13717 
13718     Sema &S;
13719 
13720     RebuildUnknownAnyFunction(Sema &S) : S(S) {}
13721 
13722     ExprResult VisitStmt(Stmt *S) {
13723       llvm_unreachable("unexpected statement!");
13724     }
13725 
13726     ExprResult VisitExpr(Expr *E) {
13727       S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call)
13728         << E->getSourceRange();
13729       return ExprError();
13730     }
13731 
13732     /// Rebuild an expression which simply semantically wraps another
13733     /// expression which it shares the type and value kind of.
13734     template <class T> ExprResult rebuildSugarExpr(T *E) {
13735       ExprResult SubResult = Visit(E->getSubExpr());
13736       if (SubResult.isInvalid()) return ExprError();
13737 
13738       Expr *SubExpr = SubResult.get();
13739       E->setSubExpr(SubExpr);
13740       E->setType(SubExpr->getType());
13741       E->setValueKind(SubExpr->getValueKind());
13742       assert(E->getObjectKind() == OK_Ordinary);
13743       return E;
13744     }
13745 
13746     ExprResult VisitParenExpr(ParenExpr *E) {
13747       return rebuildSugarExpr(E);
13748     }
13749 
13750     ExprResult VisitUnaryExtension(UnaryOperator *E) {
13751       return rebuildSugarExpr(E);
13752     }
13753 
13754     ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
13755       ExprResult SubResult = Visit(E->getSubExpr());
13756       if (SubResult.isInvalid()) return ExprError();
13757 
13758       Expr *SubExpr = SubResult.get();
13759       E->setSubExpr(SubExpr);
13760       E->setType(S.Context.getPointerType(SubExpr->getType()));
13761       assert(E->getValueKind() == VK_RValue);
13762       assert(E->getObjectKind() == OK_Ordinary);
13763       return E;
13764     }
13765 
13766     ExprResult resolveDecl(Expr *E, ValueDecl *VD) {
13767       if (!isa<FunctionDecl>(VD)) return VisitExpr(E);
13768 
13769       E->setType(VD->getType());
13770 
13771       assert(E->getValueKind() == VK_RValue);
13772       if (S.getLangOpts().CPlusPlus &&
13773           !(isa<CXXMethodDecl>(VD) &&
13774             cast<CXXMethodDecl>(VD)->isInstance()))
13775         E->setValueKind(VK_LValue);
13776 
13777       return E;
13778     }
13779 
13780     ExprResult VisitMemberExpr(MemberExpr *E) {
13781       return resolveDecl(E, E->getMemberDecl());
13782     }
13783 
13784     ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
13785       return resolveDecl(E, E->getDecl());
13786     }
13787   };
13788 }
13789 
13790 /// Given a function expression of unknown-any type, try to rebuild it
13791 /// to have a function type.
13792 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) {
13793   ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr);
13794   if (Result.isInvalid()) return ExprError();
13795   return S.DefaultFunctionArrayConversion(Result.get());
13796 }
13797 
13798 namespace {
13799   /// A visitor for rebuilding an expression of type __unknown_anytype
13800   /// into one which resolves the type directly on the referring
13801   /// expression.  Strict preservation of the original source
13802   /// structure is not a goal.
13803   struct RebuildUnknownAnyExpr
13804     : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> {
13805 
13806     Sema &S;
13807 
13808     /// The current destination type.
13809     QualType DestType;
13810 
13811     RebuildUnknownAnyExpr(Sema &S, QualType CastType)
13812       : S(S), DestType(CastType) {}
13813 
13814     ExprResult VisitStmt(Stmt *S) {
13815       llvm_unreachable("unexpected statement!");
13816     }
13817 
13818     ExprResult VisitExpr(Expr *E) {
13819       S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
13820         << E->getSourceRange();
13821       return ExprError();
13822     }
13823 
13824     ExprResult VisitCallExpr(CallExpr *E);
13825     ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E);
13826 
13827     /// Rebuild an expression which simply semantically wraps another
13828     /// expression which it shares the type and value kind of.
13829     template <class T> ExprResult rebuildSugarExpr(T *E) {
13830       ExprResult SubResult = Visit(E->getSubExpr());
13831       if (SubResult.isInvalid()) return ExprError();
13832       Expr *SubExpr = SubResult.get();
13833       E->setSubExpr(SubExpr);
13834       E->setType(SubExpr->getType());
13835       E->setValueKind(SubExpr->getValueKind());
13836       assert(E->getObjectKind() == OK_Ordinary);
13837       return E;
13838     }
13839 
13840     ExprResult VisitParenExpr(ParenExpr *E) {
13841       return rebuildSugarExpr(E);
13842     }
13843 
13844     ExprResult VisitUnaryExtension(UnaryOperator *E) {
13845       return rebuildSugarExpr(E);
13846     }
13847 
13848     ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
13849       const PointerType *Ptr = DestType->getAs<PointerType>();
13850       if (!Ptr) {
13851         S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof)
13852           << E->getSourceRange();
13853         return ExprError();
13854       }
13855       assert(E->getValueKind() == VK_RValue);
13856       assert(E->getObjectKind() == OK_Ordinary);
13857       E->setType(DestType);
13858 
13859       // Build the sub-expression as if it were an object of the pointee type.
13860       DestType = Ptr->getPointeeType();
13861       ExprResult SubResult = Visit(E->getSubExpr());
13862       if (SubResult.isInvalid()) return ExprError();
13863       E->setSubExpr(SubResult.get());
13864       return E;
13865     }
13866 
13867     ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E);
13868 
13869     ExprResult resolveDecl(Expr *E, ValueDecl *VD);
13870 
13871     ExprResult VisitMemberExpr(MemberExpr *E) {
13872       return resolveDecl(E, E->getMemberDecl());
13873     }
13874 
13875     ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
13876       return resolveDecl(E, E->getDecl());
13877     }
13878   };
13879 }
13880 
13881 /// Rebuilds a call expression which yielded __unknown_anytype.
13882 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) {
13883   Expr *CalleeExpr = E->getCallee();
13884 
13885   enum FnKind {
13886     FK_MemberFunction,
13887     FK_FunctionPointer,
13888     FK_BlockPointer
13889   };
13890 
13891   FnKind Kind;
13892   QualType CalleeType = CalleeExpr->getType();
13893   if (CalleeType == S.Context.BoundMemberTy) {
13894     assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E));
13895     Kind = FK_MemberFunction;
13896     CalleeType = Expr::findBoundMemberType(CalleeExpr);
13897   } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) {
13898     CalleeType = Ptr->getPointeeType();
13899     Kind = FK_FunctionPointer;
13900   } else {
13901     CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType();
13902     Kind = FK_BlockPointer;
13903   }
13904   const FunctionType *FnType = CalleeType->castAs<FunctionType>();
13905 
13906   // Verify that this is a legal result type of a function.
13907   if (DestType->isArrayType() || DestType->isFunctionType()) {
13908     unsigned diagID = diag::err_func_returning_array_function;
13909     if (Kind == FK_BlockPointer)
13910       diagID = diag::err_block_returning_array_function;
13911 
13912     S.Diag(E->getExprLoc(), diagID)
13913       << DestType->isFunctionType() << DestType;
13914     return ExprError();
13915   }
13916 
13917   // Otherwise, go ahead and set DestType as the call's result.
13918   E->setType(DestType.getNonLValueExprType(S.Context));
13919   E->setValueKind(Expr::getValueKindForType(DestType));
13920   assert(E->getObjectKind() == OK_Ordinary);
13921 
13922   // Rebuild the function type, replacing the result type with DestType.
13923   const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType);
13924   if (Proto) {
13925     // __unknown_anytype(...) is a special case used by the debugger when
13926     // it has no idea what a function's signature is.
13927     //
13928     // We want to build this call essentially under the K&R
13929     // unprototyped rules, but making a FunctionNoProtoType in C++
13930     // would foul up all sorts of assumptions.  However, we cannot
13931     // simply pass all arguments as variadic arguments, nor can we
13932     // portably just call the function under a non-variadic type; see
13933     // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic.
13934     // However, it turns out that in practice it is generally safe to
13935     // call a function declared as "A foo(B,C,D);" under the prototype
13936     // "A foo(B,C,D,...);".  The only known exception is with the
13937     // Windows ABI, where any variadic function is implicitly cdecl
13938     // regardless of its normal CC.  Therefore we change the parameter
13939     // types to match the types of the arguments.
13940     //
13941     // This is a hack, but it is far superior to moving the
13942     // corresponding target-specific code from IR-gen to Sema/AST.
13943 
13944     ArrayRef<QualType> ParamTypes = Proto->getParamTypes();
13945     SmallVector<QualType, 8> ArgTypes;
13946     if (ParamTypes.empty() && Proto->isVariadic()) { // the special case
13947       ArgTypes.reserve(E->getNumArgs());
13948       for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) {
13949         Expr *Arg = E->getArg(i);
13950         QualType ArgType = Arg->getType();
13951         if (E->isLValue()) {
13952           ArgType = S.Context.getLValueReferenceType(ArgType);
13953         } else if (E->isXValue()) {
13954           ArgType = S.Context.getRValueReferenceType(ArgType);
13955         }
13956         ArgTypes.push_back(ArgType);
13957       }
13958       ParamTypes = ArgTypes;
13959     }
13960     DestType = S.Context.getFunctionType(DestType, ParamTypes,
13961                                          Proto->getExtProtoInfo());
13962   } else {
13963     DestType = S.Context.getFunctionNoProtoType(DestType,
13964                                                 FnType->getExtInfo());
13965   }
13966 
13967   // Rebuild the appropriate pointer-to-function type.
13968   switch (Kind) {
13969   case FK_MemberFunction:
13970     // Nothing to do.
13971     break;
13972 
13973   case FK_FunctionPointer:
13974     DestType = S.Context.getPointerType(DestType);
13975     break;
13976 
13977   case FK_BlockPointer:
13978     DestType = S.Context.getBlockPointerType(DestType);
13979     break;
13980   }
13981 
13982   // Finally, we can recurse.
13983   ExprResult CalleeResult = Visit(CalleeExpr);
13984   if (!CalleeResult.isUsable()) return ExprError();
13985   E->setCallee(CalleeResult.get());
13986 
13987   // Bind a temporary if necessary.
13988   return S.MaybeBindToTemporary(E);
13989 }
13990 
13991 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) {
13992   // Verify that this is a legal result type of a call.
13993   if (DestType->isArrayType() || DestType->isFunctionType()) {
13994     S.Diag(E->getExprLoc(), diag::err_func_returning_array_function)
13995       << DestType->isFunctionType() << DestType;
13996     return ExprError();
13997   }
13998 
13999   // Rewrite the method result type if available.
14000   if (ObjCMethodDecl *Method = E->getMethodDecl()) {
14001     assert(Method->getReturnType() == S.Context.UnknownAnyTy);
14002     Method->setReturnType(DestType);
14003   }
14004 
14005   // Change the type of the message.
14006   E->setType(DestType.getNonReferenceType());
14007   E->setValueKind(Expr::getValueKindForType(DestType));
14008 
14009   return S.MaybeBindToTemporary(E);
14010 }
14011 
14012 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) {
14013   // The only case we should ever see here is a function-to-pointer decay.
14014   if (E->getCastKind() == CK_FunctionToPointerDecay) {
14015     assert(E->getValueKind() == VK_RValue);
14016     assert(E->getObjectKind() == OK_Ordinary);
14017 
14018     E->setType(DestType);
14019 
14020     // Rebuild the sub-expression as the pointee (function) type.
14021     DestType = DestType->castAs<PointerType>()->getPointeeType();
14022 
14023     ExprResult Result = Visit(E->getSubExpr());
14024     if (!Result.isUsable()) return ExprError();
14025 
14026     E->setSubExpr(Result.get());
14027     return E;
14028   } else if (E->getCastKind() == CK_LValueToRValue) {
14029     assert(E->getValueKind() == VK_RValue);
14030     assert(E->getObjectKind() == OK_Ordinary);
14031 
14032     assert(isa<BlockPointerType>(E->getType()));
14033 
14034     E->setType(DestType);
14035 
14036     // The sub-expression has to be a lvalue reference, so rebuild it as such.
14037     DestType = S.Context.getLValueReferenceType(DestType);
14038 
14039     ExprResult Result = Visit(E->getSubExpr());
14040     if (!Result.isUsable()) return ExprError();
14041 
14042     E->setSubExpr(Result.get());
14043     return E;
14044   } else {
14045     llvm_unreachable("Unhandled cast type!");
14046   }
14047 }
14048 
14049 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) {
14050   ExprValueKind ValueKind = VK_LValue;
14051   QualType Type = DestType;
14052 
14053   // We know how to make this work for certain kinds of decls:
14054 
14055   //  - functions
14056   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) {
14057     if (const PointerType *Ptr = Type->getAs<PointerType>()) {
14058       DestType = Ptr->getPointeeType();
14059       ExprResult Result = resolveDecl(E, VD);
14060       if (Result.isInvalid()) return ExprError();
14061       return S.ImpCastExprToType(Result.get(), Type,
14062                                  CK_FunctionToPointerDecay, VK_RValue);
14063     }
14064 
14065     if (!Type->isFunctionType()) {
14066       S.Diag(E->getExprLoc(), diag::err_unknown_any_function)
14067         << VD << E->getSourceRange();
14068       return ExprError();
14069     }
14070     if (const FunctionProtoType *FT = Type->getAs<FunctionProtoType>()) {
14071       // We must match the FunctionDecl's type to the hack introduced in
14072       // RebuildUnknownAnyExpr::VisitCallExpr to vararg functions of unknown
14073       // type. See the lengthy commentary in that routine.
14074       QualType FDT = FD->getType();
14075       const FunctionType *FnType = FDT->castAs<FunctionType>();
14076       const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType);
14077       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
14078       if (DRE && Proto && Proto->getParamTypes().empty() && Proto->isVariadic()) {
14079         SourceLocation Loc = FD->getLocation();
14080         FunctionDecl *NewFD = FunctionDecl::Create(FD->getASTContext(),
14081                                       FD->getDeclContext(),
14082                                       Loc, Loc, FD->getNameInfo().getName(),
14083                                       DestType, FD->getTypeSourceInfo(),
14084                                       SC_None, false/*isInlineSpecified*/,
14085                                       FD->hasPrototype(),
14086                                       false/*isConstexprSpecified*/);
14087 
14088         if (FD->getQualifier())
14089           NewFD->setQualifierInfo(FD->getQualifierLoc());
14090 
14091         SmallVector<ParmVarDecl*, 16> Params;
14092         for (const auto &AI : FT->param_types()) {
14093           ParmVarDecl *Param =
14094             S.BuildParmVarDeclForTypedef(FD, Loc, AI);
14095           Param->setScopeInfo(0, Params.size());
14096           Params.push_back(Param);
14097         }
14098         NewFD->setParams(Params);
14099         DRE->setDecl(NewFD);
14100         VD = DRE->getDecl();
14101       }
14102     }
14103 
14104     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
14105       if (MD->isInstance()) {
14106         ValueKind = VK_RValue;
14107         Type = S.Context.BoundMemberTy;
14108       }
14109 
14110     // Function references aren't l-values in C.
14111     if (!S.getLangOpts().CPlusPlus)
14112       ValueKind = VK_RValue;
14113 
14114   //  - variables
14115   } else if (isa<VarDecl>(VD)) {
14116     if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) {
14117       Type = RefTy->getPointeeType();
14118     } else if (Type->isFunctionType()) {
14119       S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type)
14120         << VD << E->getSourceRange();
14121       return ExprError();
14122     }
14123 
14124   //  - nothing else
14125   } else {
14126     S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl)
14127       << VD << E->getSourceRange();
14128     return ExprError();
14129   }
14130 
14131   // Modifying the declaration like this is friendly to IR-gen but
14132   // also really dangerous.
14133   VD->setType(DestType);
14134   E->setType(Type);
14135   E->setValueKind(ValueKind);
14136   return E;
14137 }
14138 
14139 /// Check a cast of an unknown-any type.  We intentionally only
14140 /// trigger this for C-style casts.
14141 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType,
14142                                      Expr *CastExpr, CastKind &CastKind,
14143                                      ExprValueKind &VK, CXXCastPath &Path) {
14144   // Rewrite the casted expression from scratch.
14145   ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr);
14146   if (!result.isUsable()) return ExprError();
14147 
14148   CastExpr = result.get();
14149   VK = CastExpr->getValueKind();
14150   CastKind = CK_NoOp;
14151 
14152   return CastExpr;
14153 }
14154 
14155 ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) {
14156   return RebuildUnknownAnyExpr(*this, ToType).Visit(E);
14157 }
14158 
14159 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc,
14160                                     Expr *arg, QualType &paramType) {
14161   // If the syntactic form of the argument is not an explicit cast of
14162   // any sort, just do default argument promotion.
14163   ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens());
14164   if (!castArg) {
14165     ExprResult result = DefaultArgumentPromotion(arg);
14166     if (result.isInvalid()) return ExprError();
14167     paramType = result.get()->getType();
14168     return result;
14169   }
14170 
14171   // Otherwise, use the type that was written in the explicit cast.
14172   assert(!arg->hasPlaceholderType());
14173   paramType = castArg->getTypeAsWritten();
14174 
14175   // Copy-initialize a parameter of that type.
14176   InitializedEntity entity =
14177     InitializedEntity::InitializeParameter(Context, paramType,
14178                                            /*consumed*/ false);
14179   return PerformCopyInitialization(entity, callLoc, arg);
14180 }
14181 
14182 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) {
14183   Expr *orig = E;
14184   unsigned diagID = diag::err_uncasted_use_of_unknown_any;
14185   while (true) {
14186     E = E->IgnoreParenImpCasts();
14187     if (CallExpr *call = dyn_cast<CallExpr>(E)) {
14188       E = call->getCallee();
14189       diagID = diag::err_uncasted_call_of_unknown_any;
14190     } else {
14191       break;
14192     }
14193   }
14194 
14195   SourceLocation loc;
14196   NamedDecl *d;
14197   if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) {
14198     loc = ref->getLocation();
14199     d = ref->getDecl();
14200   } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
14201     loc = mem->getMemberLoc();
14202     d = mem->getMemberDecl();
14203   } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) {
14204     diagID = diag::err_uncasted_call_of_unknown_any;
14205     loc = msg->getSelectorStartLoc();
14206     d = msg->getMethodDecl();
14207     if (!d) {
14208       S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method)
14209         << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector()
14210         << orig->getSourceRange();
14211       return ExprError();
14212     }
14213   } else {
14214     S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
14215       << E->getSourceRange();
14216     return ExprError();
14217   }
14218 
14219   S.Diag(loc, diagID) << d << orig->getSourceRange();
14220 
14221   // Never recoverable.
14222   return ExprError();
14223 }
14224 
14225 /// Check for operands with placeholder types and complain if found.
14226 /// Returns true if there was an error and no recovery was possible.
14227 ExprResult Sema::CheckPlaceholderExpr(Expr *E) {
14228   if (!getLangOpts().CPlusPlus) {
14229     // C cannot handle TypoExpr nodes on either side of a binop because it
14230     // doesn't handle dependent types properly, so make sure any TypoExprs have
14231     // been dealt with before checking the operands.
14232     ExprResult Result = CorrectDelayedTyposInExpr(E);
14233     if (!Result.isUsable()) return ExprError();
14234     E = Result.get();
14235   }
14236 
14237   const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType();
14238   if (!placeholderType) return E;
14239 
14240   switch (placeholderType->getKind()) {
14241 
14242   // Overloaded expressions.
14243   case BuiltinType::Overload: {
14244     // Try to resolve a single function template specialization.
14245     // This is obligatory.
14246     ExprResult result = E;
14247     if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) {
14248       return result;
14249 
14250     // If that failed, try to recover with a call.
14251     } else {
14252       tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable),
14253                            /*complain*/ true);
14254       return result;
14255     }
14256   }
14257 
14258   // Bound member functions.
14259   case BuiltinType::BoundMember: {
14260     ExprResult result = E;
14261     const Expr *BME = E->IgnoreParens();
14262     PartialDiagnostic PD = PDiag(diag::err_bound_member_function);
14263     // Try to give a nicer diagnostic if it is a bound member that we recognize.
14264     if (isa<CXXPseudoDestructorExpr>(BME)) {
14265       PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1;
14266     } else if (const auto *ME = dyn_cast<MemberExpr>(BME)) {
14267       if (ME->getMemberNameInfo().getName().getNameKind() ==
14268           DeclarationName::CXXDestructorName)
14269         PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0;
14270     }
14271     tryToRecoverWithCall(result, PD,
14272                          /*complain*/ true);
14273     return result;
14274   }
14275 
14276   // ARC unbridged casts.
14277   case BuiltinType::ARCUnbridgedCast: {
14278     Expr *realCast = stripARCUnbridgedCast(E);
14279     diagnoseARCUnbridgedCast(realCast);
14280     return realCast;
14281   }
14282 
14283   // Expressions of unknown type.
14284   case BuiltinType::UnknownAny:
14285     return diagnoseUnknownAnyExpr(*this, E);
14286 
14287   // Pseudo-objects.
14288   case BuiltinType::PseudoObject:
14289     return checkPseudoObjectRValue(E);
14290 
14291   case BuiltinType::BuiltinFn: {
14292     // Accept __noop without parens by implicitly converting it to a call expr.
14293     auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts());
14294     if (DRE) {
14295       auto *FD = cast<FunctionDecl>(DRE->getDecl());
14296       if (FD->getBuiltinID() == Builtin::BI__noop) {
14297         E = ImpCastExprToType(E, Context.getPointerType(FD->getType()),
14298                               CK_BuiltinFnToFnPtr).get();
14299         return new (Context) CallExpr(Context, E, None, Context.IntTy,
14300                                       VK_RValue, SourceLocation());
14301       }
14302     }
14303 
14304     Diag(E->getLocStart(), diag::err_builtin_fn_use);
14305     return ExprError();
14306   }
14307 
14308   // Everything else should be impossible.
14309 #define BUILTIN_TYPE(Id, SingletonId) \
14310   case BuiltinType::Id:
14311 #define PLACEHOLDER_TYPE(Id, SingletonId)
14312 #include "clang/AST/BuiltinTypes.def"
14313     break;
14314   }
14315 
14316   llvm_unreachable("invalid placeholder type!");
14317 }
14318 
14319 bool Sema::CheckCaseExpression(Expr *E) {
14320   if (E->isTypeDependent())
14321     return true;
14322   if (E->isValueDependent() || E->isIntegerConstantExpr(Context))
14323     return E->getType()->isIntegralOrEnumerationType();
14324   return false;
14325 }
14326 
14327 /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals.
14328 ExprResult
14329 Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
14330   assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) &&
14331          "Unknown Objective-C Boolean value!");
14332   QualType BoolT = Context.ObjCBuiltinBoolTy;
14333   if (!Context.getBOOLDecl()) {
14334     LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc,
14335                         Sema::LookupOrdinaryName);
14336     if (LookupName(Result, getCurScope()) && Result.isSingleResult()) {
14337       NamedDecl *ND = Result.getFoundDecl();
14338       if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND))
14339         Context.setBOOLDecl(TD);
14340     }
14341   }
14342   if (Context.getBOOLDecl())
14343     BoolT = Context.getBOOLType();
14344   return new (Context)
14345       ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc);
14346 }
14347