1 //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 //  This file implements semantic analysis for expressions.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "TreeTransform.h"
14 #include "UsedDeclVisitor.h"
15 #include "clang/AST/ASTConsumer.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/ASTLambda.h"
18 #include "clang/AST/ASTMutationListener.h"
19 #include "clang/AST/CXXInheritance.h"
20 #include "clang/AST/DeclObjC.h"
21 #include "clang/AST/DeclTemplate.h"
22 #include "clang/AST/EvaluatedExprVisitor.h"
23 #include "clang/AST/Expr.h"
24 #include "clang/AST/ExprCXX.h"
25 #include "clang/AST/ExprObjC.h"
26 #include "clang/AST/ExprOpenMP.h"
27 #include "clang/AST/OperationKinds.h"
28 #include "clang/AST/ParentMapContext.h"
29 #include "clang/AST/RecursiveASTVisitor.h"
30 #include "clang/AST/Type.h"
31 #include "clang/AST/TypeLoc.h"
32 #include "clang/Basic/Builtins.h"
33 #include "clang/Basic/DiagnosticSema.h"
34 #include "clang/Basic/PartialDiagnostic.h"
35 #include "clang/Basic/SourceManager.h"
36 #include "clang/Basic/Specifiers.h"
37 #include "clang/Basic/TargetInfo.h"
38 #include "clang/Lex/LiteralSupport.h"
39 #include "clang/Lex/Preprocessor.h"
40 #include "clang/Sema/AnalysisBasedWarnings.h"
41 #include "clang/Sema/DeclSpec.h"
42 #include "clang/Sema/DelayedDiagnostic.h"
43 #include "clang/Sema/Designator.h"
44 #include "clang/Sema/Initialization.h"
45 #include "clang/Sema/Lookup.h"
46 #include "clang/Sema/Overload.h"
47 #include "clang/Sema/ParsedTemplate.h"
48 #include "clang/Sema/Scope.h"
49 #include "clang/Sema/ScopeInfo.h"
50 #include "clang/Sema/SemaFixItUtils.h"
51 #include "clang/Sema/SemaInternal.h"
52 #include "clang/Sema/Template.h"
53 #include "llvm/ADT/STLExtras.h"
54 #include "llvm/ADT/StringExtras.h"
55 #include "llvm/Support/Casting.h"
56 #include "llvm/Support/ConvertUTF.h"
57 #include "llvm/Support/SaveAndRestore.h"
58 #include "llvm/Support/TypeSize.h"
59 
60 using namespace clang;
61 using namespace sema;
62 
63 /// Determine whether the use of this declaration is valid, without
64 /// emitting diagnostics.
65 bool Sema::CanUseDecl(NamedDecl *D, bool TreatUnavailableAsInvalid) {
66   // See if this is an auto-typed variable whose initializer we are parsing.
67   if (ParsingInitForAutoVars.count(D))
68     return false;
69 
70   // See if this is a deleted function.
71   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
72     if (FD->isDeleted())
73       return false;
74 
75     // If the function has a deduced return type, and we can't deduce it,
76     // then we can't use it either.
77     if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
78         DeduceReturnType(FD, SourceLocation(), /*Diagnose*/ false))
79       return false;
80 
81     // See if this is an aligned allocation/deallocation function that is
82     // unavailable.
83     if (TreatUnavailableAsInvalid &&
84         isUnavailableAlignedAllocationFunction(*FD))
85       return false;
86   }
87 
88   // See if this function is unavailable.
89   if (TreatUnavailableAsInvalid && D->getAvailability() == AR_Unavailable &&
90       cast<Decl>(CurContext)->getAvailability() != AR_Unavailable)
91     return false;
92 
93   if (isa<UnresolvedUsingIfExistsDecl>(D))
94     return false;
95 
96   return true;
97 }
98 
99 static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) {
100   // Warn if this is used but marked unused.
101   if (const auto *A = D->getAttr<UnusedAttr>()) {
102     // [[maybe_unused]] should not diagnose uses, but __attribute__((unused))
103     // should diagnose them.
104     if (A->getSemanticSpelling() != UnusedAttr::CXX11_maybe_unused &&
105         A->getSemanticSpelling() != UnusedAttr::C2x_maybe_unused) {
106       const Decl *DC = cast_or_null<Decl>(S.getCurObjCLexicalContext());
107       if (DC && !DC->hasAttr<UnusedAttr>())
108         S.Diag(Loc, diag::warn_used_but_marked_unused) << D;
109     }
110   }
111 }
112 
113 /// Emit a note explaining that this function is deleted.
114 void Sema::NoteDeletedFunction(FunctionDecl *Decl) {
115   assert(Decl && Decl->isDeleted());
116 
117   if (Decl->isDefaulted()) {
118     // If the method was explicitly defaulted, point at that declaration.
119     if (!Decl->isImplicit())
120       Diag(Decl->getLocation(), diag::note_implicitly_deleted);
121 
122     // Try to diagnose why this special member function was implicitly
123     // deleted. This might fail, if that reason no longer applies.
124     DiagnoseDeletedDefaultedFunction(Decl);
125     return;
126   }
127 
128   auto *Ctor = dyn_cast<CXXConstructorDecl>(Decl);
129   if (Ctor && Ctor->isInheritingConstructor())
130     return NoteDeletedInheritingConstructor(Ctor);
131 
132   Diag(Decl->getLocation(), diag::note_availability_specified_here)
133     << Decl << 1;
134 }
135 
136 /// Determine whether a FunctionDecl was ever declared with an
137 /// explicit storage class.
138 static bool hasAnyExplicitStorageClass(const FunctionDecl *D) {
139   for (auto I : D->redecls()) {
140     if (I->getStorageClass() != SC_None)
141       return true;
142   }
143   return false;
144 }
145 
146 /// Check whether we're in an extern inline function and referring to a
147 /// variable or function with internal linkage (C11 6.7.4p3).
148 ///
149 /// This is only a warning because we used to silently accept this code, but
150 /// in many cases it will not behave correctly. This is not enabled in C++ mode
151 /// because the restriction language is a bit weaker (C++11 [basic.def.odr]p6)
152 /// and so while there may still be user mistakes, most of the time we can't
153 /// prove that there are errors.
154 static void diagnoseUseOfInternalDeclInInlineFunction(Sema &S,
155                                                       const NamedDecl *D,
156                                                       SourceLocation Loc) {
157   // This is disabled under C++; there are too many ways for this to fire in
158   // contexts where the warning is a false positive, or where it is technically
159   // correct but benign.
160   if (S.getLangOpts().CPlusPlus)
161     return;
162 
163   // Check if this is an inlined function or method.
164   FunctionDecl *Current = S.getCurFunctionDecl();
165   if (!Current)
166     return;
167   if (!Current->isInlined())
168     return;
169   if (!Current->isExternallyVisible())
170     return;
171 
172   // Check if the decl has internal linkage.
173   if (D->getFormalLinkage() != InternalLinkage)
174     return;
175 
176   // Downgrade from ExtWarn to Extension if
177   //  (1) the supposedly external inline function is in the main file,
178   //      and probably won't be included anywhere else.
179   //  (2) the thing we're referencing is a pure function.
180   //  (3) the thing we're referencing is another inline function.
181   // This last can give us false negatives, but it's better than warning on
182   // wrappers for simple C library functions.
183   const FunctionDecl *UsedFn = dyn_cast<FunctionDecl>(D);
184   bool DowngradeWarning = S.getSourceManager().isInMainFile(Loc);
185   if (!DowngradeWarning && UsedFn)
186     DowngradeWarning = UsedFn->isInlined() || UsedFn->hasAttr<ConstAttr>();
187 
188   S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inline_quiet
189                                : diag::ext_internal_in_extern_inline)
190     << /*IsVar=*/!UsedFn << D;
191 
192   S.MaybeSuggestAddingStaticToDecl(Current);
193 
194   S.Diag(D->getCanonicalDecl()->getLocation(), diag::note_entity_declared_at)
195       << D;
196 }
197 
198 void Sema::MaybeSuggestAddingStaticToDecl(const FunctionDecl *Cur) {
199   const FunctionDecl *First = Cur->getFirstDecl();
200 
201   // Suggest "static" on the function, if possible.
202   if (!hasAnyExplicitStorageClass(First)) {
203     SourceLocation DeclBegin = First->getSourceRange().getBegin();
204     Diag(DeclBegin, diag::note_convert_inline_to_static)
205       << Cur << FixItHint::CreateInsertion(DeclBegin, "static ");
206   }
207 }
208 
209 /// Determine whether the use of this declaration is valid, and
210 /// emit any corresponding diagnostics.
211 ///
212 /// This routine diagnoses various problems with referencing
213 /// declarations that can occur when using a declaration. For example,
214 /// it might warn if a deprecated or unavailable declaration is being
215 /// used, or produce an error (and return true) if a C++0x deleted
216 /// function is being used.
217 ///
218 /// \returns true if there was an error (this declaration cannot be
219 /// referenced), false otherwise.
220 ///
221 bool Sema::DiagnoseUseOfDecl(NamedDecl *D, ArrayRef<SourceLocation> Locs,
222                              const ObjCInterfaceDecl *UnknownObjCClass,
223                              bool ObjCPropertyAccess,
224                              bool AvoidPartialAvailabilityChecks,
225                              ObjCInterfaceDecl *ClassReceiver) {
226   SourceLocation Loc = Locs.front();
227   if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) {
228     // If there were any diagnostics suppressed by template argument deduction,
229     // emit them now.
230     auto Pos = SuppressedDiagnostics.find(D->getCanonicalDecl());
231     if (Pos != SuppressedDiagnostics.end()) {
232       for (const PartialDiagnosticAt &Suppressed : Pos->second)
233         Diag(Suppressed.first, Suppressed.second);
234 
235       // Clear out the list of suppressed diagnostics, so that we don't emit
236       // them again for this specialization. However, we don't obsolete this
237       // entry from the table, because we want to avoid ever emitting these
238       // diagnostics again.
239       Pos->second.clear();
240     }
241 
242     // C++ [basic.start.main]p3:
243     //   The function 'main' shall not be used within a program.
244     if (cast<FunctionDecl>(D)->isMain())
245       Diag(Loc, diag::ext_main_used);
246 
247     diagnoseUnavailableAlignedAllocation(*cast<FunctionDecl>(D), Loc);
248   }
249 
250   // See if this is an auto-typed variable whose initializer we are parsing.
251   if (ParsingInitForAutoVars.count(D)) {
252     if (isa<BindingDecl>(D)) {
253       Diag(Loc, diag::err_binding_cannot_appear_in_own_initializer)
254         << D->getDeclName();
255     } else {
256       Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer)
257         << D->getDeclName() << cast<VarDecl>(D)->getType();
258     }
259     return true;
260   }
261 
262   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
263     // See if this is a deleted function.
264     if (FD->isDeleted()) {
265       auto *Ctor = dyn_cast<CXXConstructorDecl>(FD);
266       if (Ctor && Ctor->isInheritingConstructor())
267         Diag(Loc, diag::err_deleted_inherited_ctor_use)
268             << Ctor->getParent()
269             << Ctor->getInheritedConstructor().getConstructor()->getParent();
270       else
271         Diag(Loc, diag::err_deleted_function_use);
272       NoteDeletedFunction(FD);
273       return true;
274     }
275 
276     // [expr.prim.id]p4
277     //   A program that refers explicitly or implicitly to a function with a
278     //   trailing requires-clause whose constraint-expression is not satisfied,
279     //   other than to declare it, is ill-formed. [...]
280     //
281     // See if this is a function with constraints that need to be satisfied.
282     // Check this before deducing the return type, as it might instantiate the
283     // definition.
284     if (FD->getTrailingRequiresClause()) {
285       ConstraintSatisfaction Satisfaction;
286       if (CheckFunctionConstraints(FD, Satisfaction, Loc))
287         // A diagnostic will have already been generated (non-constant
288         // constraint expression, for example)
289         return true;
290       if (!Satisfaction.IsSatisfied) {
291         Diag(Loc,
292              diag::err_reference_to_function_with_unsatisfied_constraints)
293             << D;
294         DiagnoseUnsatisfiedConstraint(Satisfaction);
295         return true;
296       }
297     }
298 
299     // If the function has a deduced return type, and we can't deduce it,
300     // then we can't use it either.
301     if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
302         DeduceReturnType(FD, Loc))
303       return true;
304 
305     if (getLangOpts().CUDA && !CheckCUDACall(Loc, FD))
306       return true;
307 
308     if (getLangOpts().SYCLIsDevice && !checkSYCLDeviceFunction(Loc, FD))
309       return true;
310   }
311 
312   if (auto *MD = dyn_cast<CXXMethodDecl>(D)) {
313     // Lambdas are only default-constructible or assignable in C++2a onwards.
314     if (MD->getParent()->isLambda() &&
315         ((isa<CXXConstructorDecl>(MD) &&
316           cast<CXXConstructorDecl>(MD)->isDefaultConstructor()) ||
317          MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) {
318       Diag(Loc, diag::warn_cxx17_compat_lambda_def_ctor_assign)
319         << !isa<CXXConstructorDecl>(MD);
320     }
321   }
322 
323   auto getReferencedObjCProp = [](const NamedDecl *D) ->
324                                       const ObjCPropertyDecl * {
325     if (const auto *MD = dyn_cast<ObjCMethodDecl>(D))
326       return MD->findPropertyDecl();
327     return nullptr;
328   };
329   if (const ObjCPropertyDecl *ObjCPDecl = getReferencedObjCProp(D)) {
330     if (diagnoseArgIndependentDiagnoseIfAttrs(ObjCPDecl, Loc))
331       return true;
332   } else if (diagnoseArgIndependentDiagnoseIfAttrs(D, Loc)) {
333       return true;
334   }
335 
336   // [OpenMP 4.0], 2.15 declare reduction Directive, Restrictions
337   // Only the variables omp_in and omp_out are allowed in the combiner.
338   // Only the variables omp_priv and omp_orig are allowed in the
339   // initializer-clause.
340   auto *DRD = dyn_cast<OMPDeclareReductionDecl>(CurContext);
341   if (LangOpts.OpenMP && DRD && !CurContext->containsDecl(D) &&
342       isa<VarDecl>(D)) {
343     Diag(Loc, diag::err_omp_wrong_var_in_declare_reduction)
344         << getCurFunction()->HasOMPDeclareReductionCombiner;
345     Diag(D->getLocation(), diag::note_entity_declared_at) << D;
346     return true;
347   }
348 
349   // [OpenMP 5.0], 2.19.7.3. declare mapper Directive, Restrictions
350   //  List-items in map clauses on this construct may only refer to the declared
351   //  variable var and entities that could be referenced by a procedure defined
352   //  at the same location
353   if (LangOpts.OpenMP && isa<VarDecl>(D) &&
354       !isOpenMPDeclareMapperVarDeclAllowed(cast<VarDecl>(D))) {
355     Diag(Loc, diag::err_omp_declare_mapper_wrong_var)
356         << getOpenMPDeclareMapperVarName();
357     Diag(D->getLocation(), diag::note_entity_declared_at) << D;
358     return true;
359   }
360 
361   if (const auto *EmptyD = dyn_cast<UnresolvedUsingIfExistsDecl>(D)) {
362     Diag(Loc, diag::err_use_of_empty_using_if_exists);
363     Diag(EmptyD->getLocation(), diag::note_empty_using_if_exists_here);
364     return true;
365   }
366 
367   DiagnoseAvailabilityOfDecl(D, Locs, UnknownObjCClass, ObjCPropertyAccess,
368                              AvoidPartialAvailabilityChecks, ClassReceiver);
369 
370   DiagnoseUnusedOfDecl(*this, D, Loc);
371 
372   diagnoseUseOfInternalDeclInInlineFunction(*this, D, Loc);
373 
374   if (auto *VD = dyn_cast<ValueDecl>(D))
375     checkTypeSupport(VD->getType(), Loc, VD);
376 
377   if (LangOpts.SYCLIsDevice || (LangOpts.OpenMP && LangOpts.OpenMPIsDevice)) {
378     if (!Context.getTargetInfo().isTLSSupported())
379       if (const auto *VD = dyn_cast<VarDecl>(D))
380         if (VD->getTLSKind() != VarDecl::TLS_None)
381           targetDiag(*Locs.begin(), diag::err_thread_unsupported);
382   }
383 
384   if (isa<ParmVarDecl>(D) && isa<RequiresExprBodyDecl>(D->getDeclContext()) &&
385       !isUnevaluatedContext()) {
386     // C++ [expr.prim.req.nested] p3
387     //   A local parameter shall only appear as an unevaluated operand
388     //   (Clause 8) within the constraint-expression.
389     Diag(Loc, diag::err_requires_expr_parameter_referenced_in_evaluated_context)
390         << D;
391     Diag(D->getLocation(), diag::note_entity_declared_at) << D;
392     return true;
393   }
394 
395   return false;
396 }
397 
398 /// DiagnoseSentinelCalls - This routine checks whether a call or
399 /// message-send is to a declaration with the sentinel attribute, and
400 /// if so, it checks that the requirements of the sentinel are
401 /// satisfied.
402 void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
403                                  ArrayRef<Expr *> Args) {
404   const SentinelAttr *attr = D->getAttr<SentinelAttr>();
405   if (!attr)
406     return;
407 
408   // The number of formal parameters of the declaration.
409   unsigned numFormalParams;
410 
411   // The kind of declaration.  This is also an index into a %select in
412   // the diagnostic.
413   enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType;
414 
415   if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
416     numFormalParams = MD->param_size();
417     calleeType = CT_Method;
418   } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
419     numFormalParams = FD->param_size();
420     calleeType = CT_Function;
421   } else if (isa<VarDecl>(D)) {
422     QualType type = cast<ValueDecl>(D)->getType();
423     const FunctionType *fn = nullptr;
424     if (const PointerType *ptr = type->getAs<PointerType>()) {
425       fn = ptr->getPointeeType()->getAs<FunctionType>();
426       if (!fn) return;
427       calleeType = CT_Function;
428     } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) {
429       fn = ptr->getPointeeType()->castAs<FunctionType>();
430       calleeType = CT_Block;
431     } else {
432       return;
433     }
434 
435     if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) {
436       numFormalParams = proto->getNumParams();
437     } else {
438       numFormalParams = 0;
439     }
440   } else {
441     return;
442   }
443 
444   // "nullPos" is the number of formal parameters at the end which
445   // effectively count as part of the variadic arguments.  This is
446   // useful if you would prefer to not have *any* formal parameters,
447   // but the language forces you to have at least one.
448   unsigned nullPos = attr->getNullPos();
449   assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel");
450   numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos);
451 
452   // The number of arguments which should follow the sentinel.
453   unsigned numArgsAfterSentinel = attr->getSentinel();
454 
455   // If there aren't enough arguments for all the formal parameters,
456   // the sentinel, and the args after the sentinel, complain.
457   if (Args.size() < numFormalParams + numArgsAfterSentinel + 1) {
458     Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
459     Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
460     return;
461   }
462 
463   // Otherwise, find the sentinel expression.
464   Expr *sentinelExpr = Args[Args.size() - numArgsAfterSentinel - 1];
465   if (!sentinelExpr) return;
466   if (sentinelExpr->isValueDependent()) return;
467   if (Context.isSentinelNullExpr(sentinelExpr)) return;
468 
469   // Pick a reasonable string to insert.  Optimistically use 'nil', 'nullptr',
470   // or 'NULL' if those are actually defined in the context.  Only use
471   // 'nil' for ObjC methods, where it's much more likely that the
472   // variadic arguments form a list of object pointers.
473   SourceLocation MissingNilLoc = getLocForEndOfToken(sentinelExpr->getEndLoc());
474   std::string NullValue;
475   if (calleeType == CT_Method && PP.isMacroDefined("nil"))
476     NullValue = "nil";
477   else if (getLangOpts().CPlusPlus11)
478     NullValue = "nullptr";
479   else if (PP.isMacroDefined("NULL"))
480     NullValue = "NULL";
481   else
482     NullValue = "(void*) 0";
483 
484   if (MissingNilLoc.isInvalid())
485     Diag(Loc, diag::warn_missing_sentinel) << int(calleeType);
486   else
487     Diag(MissingNilLoc, diag::warn_missing_sentinel)
488       << int(calleeType)
489       << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue);
490   Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
491 }
492 
493 SourceRange Sema::getExprRange(Expr *E) const {
494   return E ? E->getSourceRange() : SourceRange();
495 }
496 
497 //===----------------------------------------------------------------------===//
498 //  Standard Promotions and Conversions
499 //===----------------------------------------------------------------------===//
500 
501 /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
502 ExprResult Sema::DefaultFunctionArrayConversion(Expr *E, bool Diagnose) {
503   // Handle any placeholder expressions which made it here.
504   if (E->hasPlaceholderType()) {
505     ExprResult result = CheckPlaceholderExpr(E);
506     if (result.isInvalid()) return ExprError();
507     E = result.get();
508   }
509 
510   QualType Ty = E->getType();
511   assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
512 
513   if (Ty->isFunctionType()) {
514     if (auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts()))
515       if (auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl()))
516         if (!checkAddressOfFunctionIsAvailable(FD, Diagnose, E->getExprLoc()))
517           return ExprError();
518 
519     E = ImpCastExprToType(E, Context.getPointerType(Ty),
520                           CK_FunctionToPointerDecay).get();
521   } else if (Ty->isArrayType()) {
522     // In C90 mode, arrays only promote to pointers if the array expression is
523     // an lvalue.  The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
524     // type 'array of type' is converted to an expression that has type 'pointer
525     // to type'...".  In C99 this was changed to: C99 6.3.2.1p3: "an expression
526     // that has type 'array of type' ...".  The relevant change is "an lvalue"
527     // (C90) to "an expression" (C99).
528     //
529     // C++ 4.2p1:
530     // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
531     // T" can be converted to an rvalue of type "pointer to T".
532     //
533     if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue()) {
534       ExprResult Res = ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
535                                          CK_ArrayToPointerDecay);
536       if (Res.isInvalid())
537         return ExprError();
538       E = Res.get();
539     }
540   }
541   return E;
542 }
543 
544 static void CheckForNullPointerDereference(Sema &S, Expr *E) {
545   // Check to see if we are dereferencing a null pointer.  If so,
546   // and if not volatile-qualified, this is undefined behavior that the
547   // optimizer will delete, so warn about it.  People sometimes try to use this
548   // to get a deterministic trap and are surprised by clang's behavior.  This
549   // only handles the pattern "*null", which is a very syntactic check.
550   const auto *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts());
551   if (UO && UO->getOpcode() == UO_Deref &&
552       UO->getSubExpr()->getType()->isPointerType()) {
553     const LangAS AS =
554         UO->getSubExpr()->getType()->getPointeeType().getAddressSpace();
555     if ((!isTargetAddressSpace(AS) ||
556          (isTargetAddressSpace(AS) && toTargetAddressSpace(AS) == 0)) &&
557         UO->getSubExpr()->IgnoreParenCasts()->isNullPointerConstant(
558             S.Context, Expr::NPC_ValueDependentIsNotNull) &&
559         !UO->getType().isVolatileQualified()) {
560       S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
561                             S.PDiag(diag::warn_indirection_through_null)
562                                 << UO->getSubExpr()->getSourceRange());
563       S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
564                             S.PDiag(diag::note_indirection_through_null));
565     }
566   }
567 }
568 
569 static void DiagnoseDirectIsaAccess(Sema &S, const ObjCIvarRefExpr *OIRE,
570                                     SourceLocation AssignLoc,
571                                     const Expr* RHS) {
572   const ObjCIvarDecl *IV = OIRE->getDecl();
573   if (!IV)
574     return;
575 
576   DeclarationName MemberName = IV->getDeclName();
577   IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
578   if (!Member || !Member->isStr("isa"))
579     return;
580 
581   const Expr *Base = OIRE->getBase();
582   QualType BaseType = Base->getType();
583   if (OIRE->isArrow())
584     BaseType = BaseType->getPointeeType();
585   if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>())
586     if (ObjCInterfaceDecl *IDecl = OTy->getInterface()) {
587       ObjCInterfaceDecl *ClassDeclared = nullptr;
588       ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
589       if (!ClassDeclared->getSuperClass()
590           && (*ClassDeclared->ivar_begin()) == IV) {
591         if (RHS) {
592           NamedDecl *ObjectSetClass =
593             S.LookupSingleName(S.TUScope,
594                                &S.Context.Idents.get("object_setClass"),
595                                SourceLocation(), S.LookupOrdinaryName);
596           if (ObjectSetClass) {
597             SourceLocation RHSLocEnd = S.getLocForEndOfToken(RHS->getEndLoc());
598             S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_assign)
599                 << FixItHint::CreateInsertion(OIRE->getBeginLoc(),
600                                               "object_setClass(")
601                 << FixItHint::CreateReplacement(
602                        SourceRange(OIRE->getOpLoc(), AssignLoc), ",")
603                 << FixItHint::CreateInsertion(RHSLocEnd, ")");
604           }
605           else
606             S.Diag(OIRE->getLocation(), diag::warn_objc_isa_assign);
607         } else {
608           NamedDecl *ObjectGetClass =
609             S.LookupSingleName(S.TUScope,
610                                &S.Context.Idents.get("object_getClass"),
611                                SourceLocation(), S.LookupOrdinaryName);
612           if (ObjectGetClass)
613             S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_use)
614                 << FixItHint::CreateInsertion(OIRE->getBeginLoc(),
615                                               "object_getClass(")
616                 << FixItHint::CreateReplacement(
617                        SourceRange(OIRE->getOpLoc(), OIRE->getEndLoc()), ")");
618           else
619             S.Diag(OIRE->getLocation(), diag::warn_objc_isa_use);
620         }
621         S.Diag(IV->getLocation(), diag::note_ivar_decl);
622       }
623     }
624 }
625 
626 ExprResult Sema::DefaultLvalueConversion(Expr *E) {
627   // Handle any placeholder expressions which made it here.
628   if (E->hasPlaceholderType()) {
629     ExprResult result = CheckPlaceholderExpr(E);
630     if (result.isInvalid()) return ExprError();
631     E = result.get();
632   }
633 
634   // C++ [conv.lval]p1:
635   //   A glvalue of a non-function, non-array type T can be
636   //   converted to a prvalue.
637   if (!E->isGLValue()) return E;
638 
639   QualType T = E->getType();
640   assert(!T.isNull() && "r-value conversion on typeless expression?");
641 
642   // lvalue-to-rvalue conversion cannot be applied to function or array types.
643   if (T->isFunctionType() || T->isArrayType())
644     return E;
645 
646   // We don't want to throw lvalue-to-rvalue casts on top of
647   // expressions of certain types in C++.
648   if (getLangOpts().CPlusPlus &&
649       (E->getType() == Context.OverloadTy ||
650        T->isDependentType() ||
651        T->isRecordType()))
652     return E;
653 
654   // The C standard is actually really unclear on this point, and
655   // DR106 tells us what the result should be but not why.  It's
656   // generally best to say that void types just doesn't undergo
657   // lvalue-to-rvalue at all.  Note that expressions of unqualified
658   // 'void' type are never l-values, but qualified void can be.
659   if (T->isVoidType())
660     return E;
661 
662   // OpenCL usually rejects direct accesses to values of 'half' type.
663   if (getLangOpts().OpenCL &&
664       !getOpenCLOptions().isAvailableOption("cl_khr_fp16", getLangOpts()) &&
665       T->isHalfType()) {
666     Diag(E->getExprLoc(), diag::err_opencl_half_load_store)
667       << 0 << T;
668     return ExprError();
669   }
670 
671   CheckForNullPointerDereference(*this, E);
672   if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(E->IgnoreParenCasts())) {
673     NamedDecl *ObjectGetClass = LookupSingleName(TUScope,
674                                      &Context.Idents.get("object_getClass"),
675                                      SourceLocation(), LookupOrdinaryName);
676     if (ObjectGetClass)
677       Diag(E->getExprLoc(), diag::warn_objc_isa_use)
678           << FixItHint::CreateInsertion(OISA->getBeginLoc(), "object_getClass(")
679           << FixItHint::CreateReplacement(
680                  SourceRange(OISA->getOpLoc(), OISA->getIsaMemberLoc()), ")");
681     else
682       Diag(E->getExprLoc(), diag::warn_objc_isa_use);
683   }
684   else if (const ObjCIvarRefExpr *OIRE =
685             dyn_cast<ObjCIvarRefExpr>(E->IgnoreParenCasts()))
686     DiagnoseDirectIsaAccess(*this, OIRE, SourceLocation(), /* Expr*/nullptr);
687 
688   // C++ [conv.lval]p1:
689   //   [...] If T is a non-class type, the type of the prvalue is the
690   //   cv-unqualified version of T. Otherwise, the type of the
691   //   rvalue is T.
692   //
693   // C99 6.3.2.1p2:
694   //   If the lvalue has qualified type, the value has the unqualified
695   //   version of the type of the lvalue; otherwise, the value has the
696   //   type of the lvalue.
697   if (T.hasQualifiers())
698     T = T.getUnqualifiedType();
699 
700   // Under the MS ABI, lock down the inheritance model now.
701   if (T->isMemberPointerType() &&
702       Context.getTargetInfo().getCXXABI().isMicrosoft())
703     (void)isCompleteType(E->getExprLoc(), T);
704 
705   ExprResult Res = CheckLValueToRValueConversionOperand(E);
706   if (Res.isInvalid())
707     return Res;
708   E = Res.get();
709 
710   // Loading a __weak object implicitly retains the value, so we need a cleanup to
711   // balance that.
712   if (E->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
713     Cleanup.setExprNeedsCleanups(true);
714 
715   if (E->getType().isDestructedType() == QualType::DK_nontrivial_c_struct)
716     Cleanup.setExprNeedsCleanups(true);
717 
718   // C++ [conv.lval]p3:
719   //   If T is cv std::nullptr_t, the result is a null pointer constant.
720   CastKind CK = T->isNullPtrType() ? CK_NullToPointer : CK_LValueToRValue;
721   Res = ImplicitCastExpr::Create(Context, T, CK, E, nullptr, VK_PRValue,
722                                  CurFPFeatureOverrides());
723 
724   // C11 6.3.2.1p2:
725   //   ... if the lvalue has atomic type, the value has the non-atomic version
726   //   of the type of the lvalue ...
727   if (const AtomicType *Atomic = T->getAs<AtomicType>()) {
728     T = Atomic->getValueType().getUnqualifiedType();
729     Res = ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, Res.get(),
730                                    nullptr, VK_PRValue, FPOptionsOverride());
731   }
732 
733   return Res;
734 }
735 
736 ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E, bool Diagnose) {
737   ExprResult Res = DefaultFunctionArrayConversion(E, Diagnose);
738   if (Res.isInvalid())
739     return ExprError();
740   Res = DefaultLvalueConversion(Res.get());
741   if (Res.isInvalid())
742     return ExprError();
743   return Res;
744 }
745 
746 /// CallExprUnaryConversions - a special case of an unary conversion
747 /// performed on a function designator of a call expression.
748 ExprResult Sema::CallExprUnaryConversions(Expr *E) {
749   QualType Ty = E->getType();
750   ExprResult Res = E;
751   // Only do implicit cast for a function type, but not for a pointer
752   // to function type.
753   if (Ty->isFunctionType()) {
754     Res = ImpCastExprToType(E, Context.getPointerType(Ty),
755                             CK_FunctionToPointerDecay);
756     if (Res.isInvalid())
757       return ExprError();
758   }
759   Res = DefaultLvalueConversion(Res.get());
760   if (Res.isInvalid())
761     return ExprError();
762   return Res.get();
763 }
764 
765 /// UsualUnaryConversions - Performs various conversions that are common to most
766 /// operators (C99 6.3). The conversions of array and function types are
767 /// sometimes suppressed. For example, the array->pointer conversion doesn't
768 /// apply if the array is an argument to the sizeof or address (&) operators.
769 /// In these instances, this routine should *not* be called.
770 ExprResult Sema::UsualUnaryConversions(Expr *E) {
771   // First, convert to an r-value.
772   ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
773   if (Res.isInvalid())
774     return ExprError();
775   E = Res.get();
776 
777   QualType Ty = E->getType();
778   assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
779 
780   LangOptions::FPEvalMethodKind EvalMethod = CurFPFeatures.getFPEvalMethod();
781   if (EvalMethod != LangOptions::FEM_Source && Ty->isFloatingType() &&
782       (getLangOpts().getFPEvalMethod() !=
783            LangOptions::FPEvalMethodKind::FEM_UnsetOnCommandLine ||
784        PP.getLastFPEvalPragmaLocation().isValid())) {
785     switch (EvalMethod) {
786     default:
787       llvm_unreachable("Unrecognized float evaluation method");
788       break;
789     case LangOptions::FEM_UnsetOnCommandLine:
790       llvm_unreachable("Float evaluation method should be set by now");
791       break;
792     case LangOptions::FEM_Double:
793       if (Context.getFloatingTypeOrder(Context.DoubleTy, Ty) > 0)
794         // Widen the expression to double.
795         return Ty->isComplexType()
796                    ? ImpCastExprToType(E,
797                                        Context.getComplexType(Context.DoubleTy),
798                                        CK_FloatingComplexCast)
799                    : ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast);
800       break;
801     case LangOptions::FEM_Extended:
802       if (Context.getFloatingTypeOrder(Context.LongDoubleTy, Ty) > 0)
803         // Widen the expression to long double.
804         return Ty->isComplexType()
805                    ? ImpCastExprToType(
806                          E, Context.getComplexType(Context.LongDoubleTy),
807                          CK_FloatingComplexCast)
808                    : ImpCastExprToType(E, Context.LongDoubleTy,
809                                        CK_FloatingCast);
810       break;
811     }
812   }
813 
814   // Half FP have to be promoted to float unless it is natively supported
815   if (Ty->isHalfType() && !getLangOpts().NativeHalfType)
816     return ImpCastExprToType(Res.get(), Context.FloatTy, CK_FloatingCast);
817 
818   // Try to perform integral promotions if the object has a theoretically
819   // promotable type.
820   if (Ty->isIntegralOrUnscopedEnumerationType()) {
821     // C99 6.3.1.1p2:
822     //
823     //   The following may be used in an expression wherever an int or
824     //   unsigned int may be used:
825     //     - an object or expression with an integer type whose integer
826     //       conversion rank is less than or equal to the rank of int
827     //       and unsigned int.
828     //     - A bit-field of type _Bool, int, signed int, or unsigned int.
829     //
830     //   If an int can represent all values of the original type, the
831     //   value is converted to an int; otherwise, it is converted to an
832     //   unsigned int. These are called the integer promotions. All
833     //   other types are unchanged by the integer promotions.
834 
835     QualType PTy = Context.isPromotableBitField(E);
836     if (!PTy.isNull()) {
837       E = ImpCastExprToType(E, PTy, CK_IntegralCast).get();
838       return E;
839     }
840     if (Ty->isPromotableIntegerType()) {
841       QualType PT = Context.getPromotedIntegerType(Ty);
842       E = ImpCastExprToType(E, PT, CK_IntegralCast).get();
843       return E;
844     }
845   }
846   return E;
847 }
848 
849 /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
850 /// do not have a prototype. Arguments that have type float or __fp16
851 /// are promoted to double. All other argument types are converted by
852 /// UsualUnaryConversions().
853 ExprResult Sema::DefaultArgumentPromotion(Expr *E) {
854   QualType Ty = E->getType();
855   assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
856 
857   ExprResult Res = UsualUnaryConversions(E);
858   if (Res.isInvalid())
859     return ExprError();
860   E = Res.get();
861 
862   // If this is a 'float'  or '__fp16' (CVR qualified or typedef)
863   // promote to double.
864   // Note that default argument promotion applies only to float (and
865   // half/fp16); it does not apply to _Float16.
866   const BuiltinType *BTy = Ty->getAs<BuiltinType>();
867   if (BTy && (BTy->getKind() == BuiltinType::Half ||
868               BTy->getKind() == BuiltinType::Float)) {
869     if (getLangOpts().OpenCL &&
870         !getOpenCLOptions().isAvailableOption("cl_khr_fp64", getLangOpts())) {
871       if (BTy->getKind() == BuiltinType::Half) {
872         E = ImpCastExprToType(E, Context.FloatTy, CK_FloatingCast).get();
873       }
874     } else {
875       E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).get();
876     }
877   }
878   if (BTy &&
879       getLangOpts().getExtendIntArgs() ==
880           LangOptions::ExtendArgsKind::ExtendTo64 &&
881       Context.getTargetInfo().supportsExtendIntArgs() && Ty->isIntegerType() &&
882       Context.getTypeSizeInChars(BTy) <
883           Context.getTypeSizeInChars(Context.LongLongTy)) {
884     E = (Ty->isUnsignedIntegerType())
885             ? ImpCastExprToType(E, Context.UnsignedLongLongTy, CK_IntegralCast)
886                   .get()
887             : ImpCastExprToType(E, Context.LongLongTy, CK_IntegralCast).get();
888     assert(8 == Context.getTypeSizeInChars(Context.LongLongTy).getQuantity() &&
889            "Unexpected typesize for LongLongTy");
890   }
891 
892   // C++ performs lvalue-to-rvalue conversion as a default argument
893   // promotion, even on class types, but note:
894   //   C++11 [conv.lval]p2:
895   //     When an lvalue-to-rvalue conversion occurs in an unevaluated
896   //     operand or a subexpression thereof the value contained in the
897   //     referenced object is not accessed. Otherwise, if the glvalue
898   //     has a class type, the conversion copy-initializes a temporary
899   //     of type T from the glvalue and the result of the conversion
900   //     is a prvalue for the temporary.
901   // FIXME: add some way to gate this entire thing for correctness in
902   // potentially potentially evaluated contexts.
903   if (getLangOpts().CPlusPlus && E->isGLValue() && !isUnevaluatedContext()) {
904     ExprResult Temp = PerformCopyInitialization(
905                        InitializedEntity::InitializeTemporary(E->getType()),
906                                                 E->getExprLoc(), E);
907     if (Temp.isInvalid())
908       return ExprError();
909     E = Temp.get();
910   }
911 
912   return E;
913 }
914 
915 /// Determine the degree of POD-ness for an expression.
916 /// Incomplete types are considered POD, since this check can be performed
917 /// when we're in an unevaluated context.
918 Sema::VarArgKind Sema::isValidVarArgType(const QualType &Ty) {
919   if (Ty->isIncompleteType()) {
920     // C++11 [expr.call]p7:
921     //   After these conversions, if the argument does not have arithmetic,
922     //   enumeration, pointer, pointer to member, or class type, the program
923     //   is ill-formed.
924     //
925     // Since we've already performed array-to-pointer and function-to-pointer
926     // decay, the only such type in C++ is cv void. This also handles
927     // initializer lists as variadic arguments.
928     if (Ty->isVoidType())
929       return VAK_Invalid;
930 
931     if (Ty->isObjCObjectType())
932       return VAK_Invalid;
933     return VAK_Valid;
934   }
935 
936   if (Ty.isDestructedType() == QualType::DK_nontrivial_c_struct)
937     return VAK_Invalid;
938 
939   if (Ty.isCXX98PODType(Context))
940     return VAK_Valid;
941 
942   // C++11 [expr.call]p7:
943   //   Passing a potentially-evaluated argument of class type (Clause 9)
944   //   having a non-trivial copy constructor, a non-trivial move constructor,
945   //   or a non-trivial destructor, with no corresponding parameter,
946   //   is conditionally-supported with implementation-defined semantics.
947   if (getLangOpts().CPlusPlus11 && !Ty->isDependentType())
948     if (CXXRecordDecl *Record = Ty->getAsCXXRecordDecl())
949       if (!Record->hasNonTrivialCopyConstructor() &&
950           !Record->hasNonTrivialMoveConstructor() &&
951           !Record->hasNonTrivialDestructor())
952         return VAK_ValidInCXX11;
953 
954   if (getLangOpts().ObjCAutoRefCount && Ty->isObjCLifetimeType())
955     return VAK_Valid;
956 
957   if (Ty->isObjCObjectType())
958     return VAK_Invalid;
959 
960   if (getLangOpts().MSVCCompat)
961     return VAK_MSVCUndefined;
962 
963   // FIXME: In C++11, these cases are conditionally-supported, meaning we're
964   // permitted to reject them. We should consider doing so.
965   return VAK_Undefined;
966 }
967 
968 void Sema::checkVariadicArgument(const Expr *E, VariadicCallType CT) {
969   // Don't allow one to pass an Objective-C interface to a vararg.
970   const QualType &Ty = E->getType();
971   VarArgKind VAK = isValidVarArgType(Ty);
972 
973   // Complain about passing non-POD types through varargs.
974   switch (VAK) {
975   case VAK_ValidInCXX11:
976     DiagRuntimeBehavior(
977         E->getBeginLoc(), nullptr,
978         PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg) << Ty << CT);
979     LLVM_FALLTHROUGH;
980   case VAK_Valid:
981     if (Ty->isRecordType()) {
982       // This is unlikely to be what the user intended. If the class has a
983       // 'c_str' member function, the user probably meant to call that.
984       DiagRuntimeBehavior(E->getBeginLoc(), nullptr,
985                           PDiag(diag::warn_pass_class_arg_to_vararg)
986                               << Ty << CT << hasCStrMethod(E) << ".c_str()");
987     }
988     break;
989 
990   case VAK_Undefined:
991   case VAK_MSVCUndefined:
992     DiagRuntimeBehavior(E->getBeginLoc(), nullptr,
993                         PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg)
994                             << getLangOpts().CPlusPlus11 << Ty << CT);
995     break;
996 
997   case VAK_Invalid:
998     if (Ty.isDestructedType() == QualType::DK_nontrivial_c_struct)
999       Diag(E->getBeginLoc(),
1000            diag::err_cannot_pass_non_trivial_c_struct_to_vararg)
1001           << Ty << CT;
1002     else if (Ty->isObjCObjectType())
1003       DiagRuntimeBehavior(E->getBeginLoc(), nullptr,
1004                           PDiag(diag::err_cannot_pass_objc_interface_to_vararg)
1005                               << Ty << CT);
1006     else
1007       Diag(E->getBeginLoc(), diag::err_cannot_pass_to_vararg)
1008           << isa<InitListExpr>(E) << Ty << CT;
1009     break;
1010   }
1011 }
1012 
1013 /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
1014 /// will create a trap if the resulting type is not a POD type.
1015 ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
1016                                                   FunctionDecl *FDecl) {
1017   if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) {
1018     // Strip the unbridged-cast placeholder expression off, if applicable.
1019     if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast &&
1020         (CT == VariadicMethod ||
1021          (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) {
1022       E = stripARCUnbridgedCast(E);
1023 
1024     // Otherwise, do normal placeholder checking.
1025     } else {
1026       ExprResult ExprRes = CheckPlaceholderExpr(E);
1027       if (ExprRes.isInvalid())
1028         return ExprError();
1029       E = ExprRes.get();
1030     }
1031   }
1032 
1033   ExprResult ExprRes = DefaultArgumentPromotion(E);
1034   if (ExprRes.isInvalid())
1035     return ExprError();
1036 
1037   // Copy blocks to the heap.
1038   if (ExprRes.get()->getType()->isBlockPointerType())
1039     maybeExtendBlockObject(ExprRes);
1040 
1041   E = ExprRes.get();
1042 
1043   // Diagnostics regarding non-POD argument types are
1044   // emitted along with format string checking in Sema::CheckFunctionCall().
1045   if (isValidVarArgType(E->getType()) == VAK_Undefined) {
1046     // Turn this into a trap.
1047     CXXScopeSpec SS;
1048     SourceLocation TemplateKWLoc;
1049     UnqualifiedId Name;
1050     Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"),
1051                        E->getBeginLoc());
1052     ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc, Name,
1053                                           /*HasTrailingLParen=*/true,
1054                                           /*IsAddressOfOperand=*/false);
1055     if (TrapFn.isInvalid())
1056       return ExprError();
1057 
1058     ExprResult Call = BuildCallExpr(TUScope, TrapFn.get(), E->getBeginLoc(),
1059                                     None, E->getEndLoc());
1060     if (Call.isInvalid())
1061       return ExprError();
1062 
1063     ExprResult Comma =
1064         ActOnBinOp(TUScope, E->getBeginLoc(), tok::comma, Call.get(), E);
1065     if (Comma.isInvalid())
1066       return ExprError();
1067     return Comma.get();
1068   }
1069 
1070   if (!getLangOpts().CPlusPlus &&
1071       RequireCompleteType(E->getExprLoc(), E->getType(),
1072                           diag::err_call_incomplete_argument))
1073     return ExprError();
1074 
1075   return E;
1076 }
1077 
1078 /// Converts an integer to complex float type.  Helper function of
1079 /// UsualArithmeticConversions()
1080 ///
1081 /// \return false if the integer expression is an integer type and is
1082 /// successfully converted to the complex type.
1083 static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr,
1084                                                   ExprResult &ComplexExpr,
1085                                                   QualType IntTy,
1086                                                   QualType ComplexTy,
1087                                                   bool SkipCast) {
1088   if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true;
1089   if (SkipCast) return false;
1090   if (IntTy->isIntegerType()) {
1091     QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
1092     IntExpr = S.ImpCastExprToType(IntExpr.get(), fpTy, CK_IntegralToFloating);
1093     IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy,
1094                                   CK_FloatingRealToComplex);
1095   } else {
1096     assert(IntTy->isComplexIntegerType());
1097     IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy,
1098                                   CK_IntegralComplexToFloatingComplex);
1099   }
1100   return false;
1101 }
1102 
1103 /// Handle arithmetic conversion with complex types.  Helper function of
1104 /// UsualArithmeticConversions()
1105 static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS,
1106                                              ExprResult &RHS, QualType LHSType,
1107                                              QualType RHSType,
1108                                              bool IsCompAssign) {
1109   // if we have an integer operand, the result is the complex type.
1110   if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
1111                                              /*skipCast*/false))
1112     return LHSType;
1113   if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
1114                                              /*skipCast*/IsCompAssign))
1115     return RHSType;
1116 
1117   // This handles complex/complex, complex/float, or float/complex.
1118   // When both operands are complex, the shorter operand is converted to the
1119   // type of the longer, and that is the type of the result. This corresponds
1120   // to what is done when combining two real floating-point operands.
1121   // The fun begins when size promotion occur across type domains.
1122   // From H&S 6.3.4: When one operand is complex and the other is a real
1123   // floating-point type, the less precise type is converted, within it's
1124   // real or complex domain, to the precision of the other type. For example,
1125   // when combining a "long double" with a "double _Complex", the
1126   // "double _Complex" is promoted to "long double _Complex".
1127 
1128   // Compute the rank of the two types, regardless of whether they are complex.
1129   int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1130 
1131   auto *LHSComplexType = dyn_cast<ComplexType>(LHSType);
1132   auto *RHSComplexType = dyn_cast<ComplexType>(RHSType);
1133   QualType LHSElementType =
1134       LHSComplexType ? LHSComplexType->getElementType() : LHSType;
1135   QualType RHSElementType =
1136       RHSComplexType ? RHSComplexType->getElementType() : RHSType;
1137 
1138   QualType ResultType = S.Context.getComplexType(LHSElementType);
1139   if (Order < 0) {
1140     // Promote the precision of the LHS if not an assignment.
1141     ResultType = S.Context.getComplexType(RHSElementType);
1142     if (!IsCompAssign) {
1143       if (LHSComplexType)
1144         LHS =
1145             S.ImpCastExprToType(LHS.get(), ResultType, CK_FloatingComplexCast);
1146       else
1147         LHS = S.ImpCastExprToType(LHS.get(), RHSElementType, CK_FloatingCast);
1148     }
1149   } else if (Order > 0) {
1150     // Promote the precision of the RHS.
1151     if (RHSComplexType)
1152       RHS = S.ImpCastExprToType(RHS.get(), ResultType, CK_FloatingComplexCast);
1153     else
1154       RHS = S.ImpCastExprToType(RHS.get(), LHSElementType, CK_FloatingCast);
1155   }
1156   return ResultType;
1157 }
1158 
1159 /// Handle arithmetic conversion from integer to float.  Helper function
1160 /// of UsualArithmeticConversions()
1161 static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr,
1162                                            ExprResult &IntExpr,
1163                                            QualType FloatTy, QualType IntTy,
1164                                            bool ConvertFloat, bool ConvertInt) {
1165   if (IntTy->isIntegerType()) {
1166     if (ConvertInt)
1167       // Convert intExpr to the lhs floating point type.
1168       IntExpr = S.ImpCastExprToType(IntExpr.get(), FloatTy,
1169                                     CK_IntegralToFloating);
1170     return FloatTy;
1171   }
1172 
1173   // Convert both sides to the appropriate complex float.
1174   assert(IntTy->isComplexIntegerType());
1175   QualType result = S.Context.getComplexType(FloatTy);
1176 
1177   // _Complex int -> _Complex float
1178   if (ConvertInt)
1179     IntExpr = S.ImpCastExprToType(IntExpr.get(), result,
1180                                   CK_IntegralComplexToFloatingComplex);
1181 
1182   // float -> _Complex float
1183   if (ConvertFloat)
1184     FloatExpr = S.ImpCastExprToType(FloatExpr.get(), result,
1185                                     CK_FloatingRealToComplex);
1186 
1187   return result;
1188 }
1189 
1190 /// Handle arithmethic conversion with floating point types.  Helper
1191 /// function of UsualArithmeticConversions()
1192 static QualType handleFloatConversion(Sema &S, ExprResult &LHS,
1193                                       ExprResult &RHS, QualType LHSType,
1194                                       QualType RHSType, bool IsCompAssign) {
1195   bool LHSFloat = LHSType->isRealFloatingType();
1196   bool RHSFloat = RHSType->isRealFloatingType();
1197 
1198   // N1169 4.1.4: If one of the operands has a floating type and the other
1199   //              operand has a fixed-point type, the fixed-point operand
1200   //              is converted to the floating type [...]
1201   if (LHSType->isFixedPointType() || RHSType->isFixedPointType()) {
1202     if (LHSFloat)
1203       RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FixedPointToFloating);
1204     else if (!IsCompAssign)
1205       LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FixedPointToFloating);
1206     return LHSFloat ? LHSType : RHSType;
1207   }
1208 
1209   // If we have two real floating types, convert the smaller operand
1210   // to the bigger result.
1211   if (LHSFloat && RHSFloat) {
1212     int order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
1213     if (order > 0) {
1214       RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FloatingCast);
1215       return LHSType;
1216     }
1217 
1218     assert(order < 0 && "illegal float comparison");
1219     if (!IsCompAssign)
1220       LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FloatingCast);
1221     return RHSType;
1222   }
1223 
1224   if (LHSFloat) {
1225     // Half FP has to be promoted to float unless it is natively supported
1226     if (LHSType->isHalfType() && !S.getLangOpts().NativeHalfType)
1227       LHSType = S.Context.FloatTy;
1228 
1229     return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType,
1230                                       /*ConvertFloat=*/!IsCompAssign,
1231                                       /*ConvertInt=*/ true);
1232   }
1233   assert(RHSFloat);
1234   return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType,
1235                                     /*ConvertFloat=*/ true,
1236                                     /*ConvertInt=*/!IsCompAssign);
1237 }
1238 
1239 /// Diagnose attempts to convert between __float128, __ibm128 and
1240 /// long double if there is no support for such conversion.
1241 /// Helper function of UsualArithmeticConversions().
1242 static bool unsupportedTypeConversion(const Sema &S, QualType LHSType,
1243                                       QualType RHSType) {
1244   // No issue if either is not a floating point type.
1245   if (!LHSType->isFloatingType() || !RHSType->isFloatingType())
1246     return false;
1247 
1248   // No issue if both have the same 128-bit float semantics.
1249   auto *LHSComplex = LHSType->getAs<ComplexType>();
1250   auto *RHSComplex = RHSType->getAs<ComplexType>();
1251 
1252   QualType LHSElem = LHSComplex ? LHSComplex->getElementType() : LHSType;
1253   QualType RHSElem = RHSComplex ? RHSComplex->getElementType() : RHSType;
1254 
1255   const llvm::fltSemantics &LHSSem = S.Context.getFloatTypeSemantics(LHSElem);
1256   const llvm::fltSemantics &RHSSem = S.Context.getFloatTypeSemantics(RHSElem);
1257 
1258   if ((&LHSSem != &llvm::APFloat::PPCDoubleDouble() ||
1259        &RHSSem != &llvm::APFloat::IEEEquad()) &&
1260       (&LHSSem != &llvm::APFloat::IEEEquad() ||
1261        &RHSSem != &llvm::APFloat::PPCDoubleDouble()))
1262     return false;
1263 
1264   return true;
1265 }
1266 
1267 typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType);
1268 
1269 namespace {
1270 /// These helper callbacks are placed in an anonymous namespace to
1271 /// permit their use as function template parameters.
1272 ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) {
1273   return S.ImpCastExprToType(op, toType, CK_IntegralCast);
1274 }
1275 
1276 ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) {
1277   return S.ImpCastExprToType(op, S.Context.getComplexType(toType),
1278                              CK_IntegralComplexCast);
1279 }
1280 }
1281 
1282 /// Handle integer arithmetic conversions.  Helper function of
1283 /// UsualArithmeticConversions()
1284 template <PerformCastFn doLHSCast, PerformCastFn doRHSCast>
1285 static QualType handleIntegerConversion(Sema &S, ExprResult &LHS,
1286                                         ExprResult &RHS, QualType LHSType,
1287                                         QualType RHSType, bool IsCompAssign) {
1288   // The rules for this case are in C99 6.3.1.8
1289   int order = S.Context.getIntegerTypeOrder(LHSType, RHSType);
1290   bool LHSSigned = LHSType->hasSignedIntegerRepresentation();
1291   bool RHSSigned = RHSType->hasSignedIntegerRepresentation();
1292   if (LHSSigned == RHSSigned) {
1293     // Same signedness; use the higher-ranked type
1294     if (order >= 0) {
1295       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1296       return LHSType;
1297     } else if (!IsCompAssign)
1298       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1299     return RHSType;
1300   } else if (order != (LHSSigned ? 1 : -1)) {
1301     // The unsigned type has greater than or equal rank to the
1302     // signed type, so use the unsigned type
1303     if (RHSSigned) {
1304       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1305       return LHSType;
1306     } else if (!IsCompAssign)
1307       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1308     return RHSType;
1309   } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) {
1310     // The two types are different widths; if we are here, that
1311     // means the signed type is larger than the unsigned type, so
1312     // use the signed type.
1313     if (LHSSigned) {
1314       RHS = (*doRHSCast)(S, RHS.get(), LHSType);
1315       return LHSType;
1316     } else if (!IsCompAssign)
1317       LHS = (*doLHSCast)(S, LHS.get(), RHSType);
1318     return RHSType;
1319   } else {
1320     // The signed type is higher-ranked than the unsigned type,
1321     // but isn't actually any bigger (like unsigned int and long
1322     // on most 32-bit systems).  Use the unsigned type corresponding
1323     // to the signed type.
1324     QualType result =
1325       S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType);
1326     RHS = (*doRHSCast)(S, RHS.get(), result);
1327     if (!IsCompAssign)
1328       LHS = (*doLHSCast)(S, LHS.get(), result);
1329     return result;
1330   }
1331 }
1332 
1333 /// Handle conversions with GCC complex int extension.  Helper function
1334 /// of UsualArithmeticConversions()
1335 static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS,
1336                                            ExprResult &RHS, QualType LHSType,
1337                                            QualType RHSType,
1338                                            bool IsCompAssign) {
1339   const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
1340   const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
1341 
1342   if (LHSComplexInt && RHSComplexInt) {
1343     QualType LHSEltType = LHSComplexInt->getElementType();
1344     QualType RHSEltType = RHSComplexInt->getElementType();
1345     QualType ScalarType =
1346       handleIntegerConversion<doComplexIntegralCast, doComplexIntegralCast>
1347         (S, LHS, RHS, LHSEltType, RHSEltType, IsCompAssign);
1348 
1349     return S.Context.getComplexType(ScalarType);
1350   }
1351 
1352   if (LHSComplexInt) {
1353     QualType LHSEltType = LHSComplexInt->getElementType();
1354     QualType ScalarType =
1355       handleIntegerConversion<doComplexIntegralCast, doIntegralCast>
1356         (S, LHS, RHS, LHSEltType, RHSType, IsCompAssign);
1357     QualType ComplexType = S.Context.getComplexType(ScalarType);
1358     RHS = S.ImpCastExprToType(RHS.get(), ComplexType,
1359                               CK_IntegralRealToComplex);
1360 
1361     return ComplexType;
1362   }
1363 
1364   assert(RHSComplexInt);
1365 
1366   QualType RHSEltType = RHSComplexInt->getElementType();
1367   QualType ScalarType =
1368     handleIntegerConversion<doIntegralCast, doComplexIntegralCast>
1369       (S, LHS, RHS, LHSType, RHSEltType, IsCompAssign);
1370   QualType ComplexType = S.Context.getComplexType(ScalarType);
1371 
1372   if (!IsCompAssign)
1373     LHS = S.ImpCastExprToType(LHS.get(), ComplexType,
1374                               CK_IntegralRealToComplex);
1375   return ComplexType;
1376 }
1377 
1378 /// Return the rank of a given fixed point or integer type. The value itself
1379 /// doesn't matter, but the values must be increasing with proper increasing
1380 /// rank as described in N1169 4.1.1.
1381 static unsigned GetFixedPointRank(QualType Ty) {
1382   const auto *BTy = Ty->getAs<BuiltinType>();
1383   assert(BTy && "Expected a builtin type.");
1384 
1385   switch (BTy->getKind()) {
1386   case BuiltinType::ShortFract:
1387   case BuiltinType::UShortFract:
1388   case BuiltinType::SatShortFract:
1389   case BuiltinType::SatUShortFract:
1390     return 1;
1391   case BuiltinType::Fract:
1392   case BuiltinType::UFract:
1393   case BuiltinType::SatFract:
1394   case BuiltinType::SatUFract:
1395     return 2;
1396   case BuiltinType::LongFract:
1397   case BuiltinType::ULongFract:
1398   case BuiltinType::SatLongFract:
1399   case BuiltinType::SatULongFract:
1400     return 3;
1401   case BuiltinType::ShortAccum:
1402   case BuiltinType::UShortAccum:
1403   case BuiltinType::SatShortAccum:
1404   case BuiltinType::SatUShortAccum:
1405     return 4;
1406   case BuiltinType::Accum:
1407   case BuiltinType::UAccum:
1408   case BuiltinType::SatAccum:
1409   case BuiltinType::SatUAccum:
1410     return 5;
1411   case BuiltinType::LongAccum:
1412   case BuiltinType::ULongAccum:
1413   case BuiltinType::SatLongAccum:
1414   case BuiltinType::SatULongAccum:
1415     return 6;
1416   default:
1417     if (BTy->isInteger())
1418       return 0;
1419     llvm_unreachable("Unexpected fixed point or integer type");
1420   }
1421 }
1422 
1423 /// handleFixedPointConversion - Fixed point operations between fixed
1424 /// point types and integers or other fixed point types do not fall under
1425 /// usual arithmetic conversion since these conversions could result in loss
1426 /// of precsision (N1169 4.1.4). These operations should be calculated with
1427 /// the full precision of their result type (N1169 4.1.6.2.1).
1428 static QualType handleFixedPointConversion(Sema &S, QualType LHSTy,
1429                                            QualType RHSTy) {
1430   assert((LHSTy->isFixedPointType() || RHSTy->isFixedPointType()) &&
1431          "Expected at least one of the operands to be a fixed point type");
1432   assert((LHSTy->isFixedPointOrIntegerType() ||
1433           RHSTy->isFixedPointOrIntegerType()) &&
1434          "Special fixed point arithmetic operation conversions are only "
1435          "applied to ints or other fixed point types");
1436 
1437   // If one operand has signed fixed-point type and the other operand has
1438   // unsigned fixed-point type, then the unsigned fixed-point operand is
1439   // converted to its corresponding signed fixed-point type and the resulting
1440   // type is the type of the converted operand.
1441   if (RHSTy->isSignedFixedPointType() && LHSTy->isUnsignedFixedPointType())
1442     LHSTy = S.Context.getCorrespondingSignedFixedPointType(LHSTy);
1443   else if (RHSTy->isUnsignedFixedPointType() && LHSTy->isSignedFixedPointType())
1444     RHSTy = S.Context.getCorrespondingSignedFixedPointType(RHSTy);
1445 
1446   // The result type is the type with the highest rank, whereby a fixed-point
1447   // conversion rank is always greater than an integer conversion rank; if the
1448   // type of either of the operands is a saturating fixedpoint type, the result
1449   // type shall be the saturating fixed-point type corresponding to the type
1450   // with the highest rank; the resulting value is converted (taking into
1451   // account rounding and overflow) to the precision of the resulting type.
1452   // Same ranks between signed and unsigned types are resolved earlier, so both
1453   // types are either signed or both unsigned at this point.
1454   unsigned LHSTyRank = GetFixedPointRank(LHSTy);
1455   unsigned RHSTyRank = GetFixedPointRank(RHSTy);
1456 
1457   QualType ResultTy = LHSTyRank > RHSTyRank ? LHSTy : RHSTy;
1458 
1459   if (LHSTy->isSaturatedFixedPointType() || RHSTy->isSaturatedFixedPointType())
1460     ResultTy = S.Context.getCorrespondingSaturatedType(ResultTy);
1461 
1462   return ResultTy;
1463 }
1464 
1465 /// Check that the usual arithmetic conversions can be performed on this pair of
1466 /// expressions that might be of enumeration type.
1467 static void checkEnumArithmeticConversions(Sema &S, Expr *LHS, Expr *RHS,
1468                                            SourceLocation Loc,
1469                                            Sema::ArithConvKind ACK) {
1470   // C++2a [expr.arith.conv]p1:
1471   //   If one operand is of enumeration type and the other operand is of a
1472   //   different enumeration type or a floating-point type, this behavior is
1473   //   deprecated ([depr.arith.conv.enum]).
1474   //
1475   // Warn on this in all language modes. Produce a deprecation warning in C++20.
1476   // Eventually we will presumably reject these cases (in C++23 onwards?).
1477   QualType L = LHS->getType(), R = RHS->getType();
1478   bool LEnum = L->isUnscopedEnumerationType(),
1479        REnum = R->isUnscopedEnumerationType();
1480   bool IsCompAssign = ACK == Sema::ACK_CompAssign;
1481   if ((!IsCompAssign && LEnum && R->isFloatingType()) ||
1482       (REnum && L->isFloatingType())) {
1483     S.Diag(Loc, S.getLangOpts().CPlusPlus20
1484                     ? diag::warn_arith_conv_enum_float_cxx20
1485                     : diag::warn_arith_conv_enum_float)
1486         << LHS->getSourceRange() << RHS->getSourceRange()
1487         << (int)ACK << LEnum << L << R;
1488   } else if (!IsCompAssign && LEnum && REnum &&
1489              !S.Context.hasSameUnqualifiedType(L, R)) {
1490     unsigned DiagID;
1491     if (!L->castAs<EnumType>()->getDecl()->hasNameForLinkage() ||
1492         !R->castAs<EnumType>()->getDecl()->hasNameForLinkage()) {
1493       // If either enumeration type is unnamed, it's less likely that the
1494       // user cares about this, but this situation is still deprecated in
1495       // C++2a. Use a different warning group.
1496       DiagID = S.getLangOpts().CPlusPlus20
1497                     ? diag::warn_arith_conv_mixed_anon_enum_types_cxx20
1498                     : diag::warn_arith_conv_mixed_anon_enum_types;
1499     } else if (ACK == Sema::ACK_Conditional) {
1500       // Conditional expressions are separated out because they have
1501       // historically had a different warning flag.
1502       DiagID = S.getLangOpts().CPlusPlus20
1503                    ? diag::warn_conditional_mixed_enum_types_cxx20
1504                    : diag::warn_conditional_mixed_enum_types;
1505     } else if (ACK == Sema::ACK_Comparison) {
1506       // Comparison expressions are separated out because they have
1507       // historically had a different warning flag.
1508       DiagID = S.getLangOpts().CPlusPlus20
1509                    ? diag::warn_comparison_mixed_enum_types_cxx20
1510                    : diag::warn_comparison_mixed_enum_types;
1511     } else {
1512       DiagID = S.getLangOpts().CPlusPlus20
1513                    ? diag::warn_arith_conv_mixed_enum_types_cxx20
1514                    : diag::warn_arith_conv_mixed_enum_types;
1515     }
1516     S.Diag(Loc, DiagID) << LHS->getSourceRange() << RHS->getSourceRange()
1517                         << (int)ACK << L << R;
1518   }
1519 }
1520 
1521 /// UsualArithmeticConversions - Performs various conversions that are common to
1522 /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
1523 /// routine returns the first non-arithmetic type found. The client is
1524 /// responsible for emitting appropriate error diagnostics.
1525 QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS,
1526                                           SourceLocation Loc,
1527                                           ArithConvKind ACK) {
1528   checkEnumArithmeticConversions(*this, LHS.get(), RHS.get(), Loc, ACK);
1529 
1530   if (ACK != ACK_CompAssign) {
1531     LHS = UsualUnaryConversions(LHS.get());
1532     if (LHS.isInvalid())
1533       return QualType();
1534   }
1535 
1536   RHS = UsualUnaryConversions(RHS.get());
1537   if (RHS.isInvalid())
1538     return QualType();
1539 
1540   // For conversion purposes, we ignore any qualifiers.
1541   // For example, "const float" and "float" are equivalent.
1542   QualType LHSType =
1543     Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
1544   QualType RHSType =
1545     Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
1546 
1547   // For conversion purposes, we ignore any atomic qualifier on the LHS.
1548   if (const AtomicType *AtomicLHS = LHSType->getAs<AtomicType>())
1549     LHSType = AtomicLHS->getValueType();
1550 
1551   // If both types are identical, no conversion is needed.
1552   if (LHSType == RHSType)
1553     return LHSType;
1554 
1555   // If either side is a non-arithmetic type (e.g. a pointer), we are done.
1556   // The caller can deal with this (e.g. pointer + int).
1557   if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType())
1558     return QualType();
1559 
1560   // Apply unary and bitfield promotions to the LHS's type.
1561   QualType LHSUnpromotedType = LHSType;
1562   if (LHSType->isPromotableIntegerType())
1563     LHSType = Context.getPromotedIntegerType(LHSType);
1564   QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get());
1565   if (!LHSBitfieldPromoteTy.isNull())
1566     LHSType = LHSBitfieldPromoteTy;
1567   if (LHSType != LHSUnpromotedType && ACK != ACK_CompAssign)
1568     LHS = ImpCastExprToType(LHS.get(), LHSType, CK_IntegralCast);
1569 
1570   // If both types are identical, no conversion is needed.
1571   if (LHSType == RHSType)
1572     return LHSType;
1573 
1574   // At this point, we have two different arithmetic types.
1575 
1576   // Diagnose attempts to convert between __ibm128, __float128 and long double
1577   // where such conversions currently can't be handled.
1578   if (unsupportedTypeConversion(*this, LHSType, RHSType))
1579     return QualType();
1580 
1581   // Handle complex types first (C99 6.3.1.8p1).
1582   if (LHSType->isComplexType() || RHSType->isComplexType())
1583     return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType,
1584                                         ACK == ACK_CompAssign);
1585 
1586   // Now handle "real" floating types (i.e. float, double, long double).
1587   if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
1588     return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType,
1589                                  ACK == ACK_CompAssign);
1590 
1591   // Handle GCC complex int extension.
1592   if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType())
1593     return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType,
1594                                       ACK == ACK_CompAssign);
1595 
1596   if (LHSType->isFixedPointType() || RHSType->isFixedPointType())
1597     return handleFixedPointConversion(*this, LHSType, RHSType);
1598 
1599   // Finally, we have two differing integer types.
1600   return handleIntegerConversion<doIntegralCast, doIntegralCast>
1601            (*this, LHS, RHS, LHSType, RHSType, ACK == ACK_CompAssign);
1602 }
1603 
1604 //===----------------------------------------------------------------------===//
1605 //  Semantic Analysis for various Expression Types
1606 //===----------------------------------------------------------------------===//
1607 
1608 
1609 ExprResult
1610 Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc,
1611                                 SourceLocation DefaultLoc,
1612                                 SourceLocation RParenLoc,
1613                                 Expr *ControllingExpr,
1614                                 ArrayRef<ParsedType> ArgTypes,
1615                                 ArrayRef<Expr *> ArgExprs) {
1616   unsigned NumAssocs = ArgTypes.size();
1617   assert(NumAssocs == ArgExprs.size());
1618 
1619   TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs];
1620   for (unsigned i = 0; i < NumAssocs; ++i) {
1621     if (ArgTypes[i])
1622       (void) GetTypeFromParser(ArgTypes[i], &Types[i]);
1623     else
1624       Types[i] = nullptr;
1625   }
1626 
1627   ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
1628                                              ControllingExpr,
1629                                              llvm::makeArrayRef(Types, NumAssocs),
1630                                              ArgExprs);
1631   delete [] Types;
1632   return ER;
1633 }
1634 
1635 ExprResult
1636 Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc,
1637                                  SourceLocation DefaultLoc,
1638                                  SourceLocation RParenLoc,
1639                                  Expr *ControllingExpr,
1640                                  ArrayRef<TypeSourceInfo *> Types,
1641                                  ArrayRef<Expr *> Exprs) {
1642   unsigned NumAssocs = Types.size();
1643   assert(NumAssocs == Exprs.size());
1644 
1645   // Decay and strip qualifiers for the controlling expression type, and handle
1646   // placeholder type replacement. See committee discussion from WG14 DR423.
1647   {
1648     EnterExpressionEvaluationContext Unevaluated(
1649         *this, Sema::ExpressionEvaluationContext::Unevaluated);
1650     ExprResult R = DefaultFunctionArrayLvalueConversion(ControllingExpr);
1651     if (R.isInvalid())
1652       return ExprError();
1653     ControllingExpr = R.get();
1654   }
1655 
1656   bool TypeErrorFound = false,
1657        IsResultDependent = ControllingExpr->isTypeDependent(),
1658        ContainsUnexpandedParameterPack
1659          = ControllingExpr->containsUnexpandedParameterPack();
1660 
1661   // The controlling expression is an unevaluated operand, so side effects are
1662   // likely unintended.
1663   if (!inTemplateInstantiation() && !IsResultDependent &&
1664       ControllingExpr->HasSideEffects(Context, false))
1665     Diag(ControllingExpr->getExprLoc(),
1666          diag::warn_side_effects_unevaluated_context);
1667 
1668   for (unsigned i = 0; i < NumAssocs; ++i) {
1669     if (Exprs[i]->containsUnexpandedParameterPack())
1670       ContainsUnexpandedParameterPack = true;
1671 
1672     if (Types[i]) {
1673       if (Types[i]->getType()->containsUnexpandedParameterPack())
1674         ContainsUnexpandedParameterPack = true;
1675 
1676       if (Types[i]->getType()->isDependentType()) {
1677         IsResultDependent = true;
1678       } else {
1679         // C11 6.5.1.1p2 "The type name in a generic association shall specify a
1680         // complete object type other than a variably modified type."
1681         unsigned D = 0;
1682         if (Types[i]->getType()->isIncompleteType())
1683           D = diag::err_assoc_type_incomplete;
1684         else if (!Types[i]->getType()->isObjectType())
1685           D = diag::err_assoc_type_nonobject;
1686         else if (Types[i]->getType()->isVariablyModifiedType())
1687           D = diag::err_assoc_type_variably_modified;
1688         else {
1689           // Because the controlling expression undergoes lvalue conversion,
1690           // array conversion, and function conversion, an association which is
1691           // of array type, function type, or is qualified can never be
1692           // reached. We will warn about this so users are less surprised by
1693           // the unreachable association. However, we don't have to handle
1694           // function types; that's not an object type, so it's handled above.
1695           //
1696           // The logic is somewhat different for C++ because C++ has different
1697           // lvalue to rvalue conversion rules than C. [conv.lvalue]p1 says,
1698           // If T is a non-class type, the type of the prvalue is the cv-
1699           // unqualified version of T. Otherwise, the type of the prvalue is T.
1700           // The result of these rules is that all qualified types in an
1701           // association in C are unreachable, and in C++, only qualified non-
1702           // class types are unreachable.
1703           unsigned Reason = 0;
1704           QualType QT = Types[i]->getType();
1705           if (QT->isArrayType())
1706             Reason = 1;
1707           else if (QT.hasQualifiers() &&
1708                    (!LangOpts.CPlusPlus || !QT->isRecordType()))
1709             Reason = 2;
1710 
1711           if (Reason)
1712             Diag(Types[i]->getTypeLoc().getBeginLoc(),
1713                  diag::warn_unreachable_association)
1714                 << QT << (Reason - 1);
1715         }
1716 
1717         if (D != 0) {
1718           Diag(Types[i]->getTypeLoc().getBeginLoc(), D)
1719             << Types[i]->getTypeLoc().getSourceRange()
1720             << Types[i]->getType();
1721           TypeErrorFound = true;
1722         }
1723 
1724         // C11 6.5.1.1p2 "No two generic associations in the same generic
1725         // selection shall specify compatible types."
1726         for (unsigned j = i+1; j < NumAssocs; ++j)
1727           if (Types[j] && !Types[j]->getType()->isDependentType() &&
1728               Context.typesAreCompatible(Types[i]->getType(),
1729                                          Types[j]->getType())) {
1730             Diag(Types[j]->getTypeLoc().getBeginLoc(),
1731                  diag::err_assoc_compatible_types)
1732               << Types[j]->getTypeLoc().getSourceRange()
1733               << Types[j]->getType()
1734               << Types[i]->getType();
1735             Diag(Types[i]->getTypeLoc().getBeginLoc(),
1736                  diag::note_compat_assoc)
1737               << Types[i]->getTypeLoc().getSourceRange()
1738               << Types[i]->getType();
1739             TypeErrorFound = true;
1740           }
1741       }
1742     }
1743   }
1744   if (TypeErrorFound)
1745     return ExprError();
1746 
1747   // If we determined that the generic selection is result-dependent, don't
1748   // try to compute the result expression.
1749   if (IsResultDependent)
1750     return GenericSelectionExpr::Create(Context, KeyLoc, ControllingExpr, Types,
1751                                         Exprs, DefaultLoc, RParenLoc,
1752                                         ContainsUnexpandedParameterPack);
1753 
1754   SmallVector<unsigned, 1> CompatIndices;
1755   unsigned DefaultIndex = -1U;
1756   // Look at the canonical type of the controlling expression in case it was a
1757   // deduced type like __auto_type. However, when issuing diagnostics, use the
1758   // type the user wrote in source rather than the canonical one.
1759   for (unsigned i = 0; i < NumAssocs; ++i) {
1760     if (!Types[i])
1761       DefaultIndex = i;
1762     else if (Context.typesAreCompatible(
1763                  ControllingExpr->getType().getCanonicalType(),
1764                                         Types[i]->getType()))
1765       CompatIndices.push_back(i);
1766   }
1767 
1768   // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have
1769   // type compatible with at most one of the types named in its generic
1770   // association list."
1771   if (CompatIndices.size() > 1) {
1772     // We strip parens here because the controlling expression is typically
1773     // parenthesized in macro definitions.
1774     ControllingExpr = ControllingExpr->IgnoreParens();
1775     Diag(ControllingExpr->getBeginLoc(), diag::err_generic_sel_multi_match)
1776         << ControllingExpr->getSourceRange() << ControllingExpr->getType()
1777         << (unsigned)CompatIndices.size();
1778     for (unsigned I : CompatIndices) {
1779       Diag(Types[I]->getTypeLoc().getBeginLoc(),
1780            diag::note_compat_assoc)
1781         << Types[I]->getTypeLoc().getSourceRange()
1782         << Types[I]->getType();
1783     }
1784     return ExprError();
1785   }
1786 
1787   // C11 6.5.1.1p2 "If a generic selection has no default generic association,
1788   // its controlling expression shall have type compatible with exactly one of
1789   // the types named in its generic association list."
1790   if (DefaultIndex == -1U && CompatIndices.size() == 0) {
1791     // We strip parens here because the controlling expression is typically
1792     // parenthesized in macro definitions.
1793     ControllingExpr = ControllingExpr->IgnoreParens();
1794     Diag(ControllingExpr->getBeginLoc(), diag::err_generic_sel_no_match)
1795         << ControllingExpr->getSourceRange() << ControllingExpr->getType();
1796     return ExprError();
1797   }
1798 
1799   // C11 6.5.1.1p3 "If a generic selection has a generic association with a
1800   // type name that is compatible with the type of the controlling expression,
1801   // then the result expression of the generic selection is the expression
1802   // in that generic association. Otherwise, the result expression of the
1803   // generic selection is the expression in the default generic association."
1804   unsigned ResultIndex =
1805     CompatIndices.size() ? CompatIndices[0] : DefaultIndex;
1806 
1807   return GenericSelectionExpr::Create(
1808       Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1809       ContainsUnexpandedParameterPack, ResultIndex);
1810 }
1811 
1812 /// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the
1813 /// location of the token and the offset of the ud-suffix within it.
1814 static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc,
1815                                      unsigned Offset) {
1816   return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(),
1817                                         S.getLangOpts());
1818 }
1819 
1820 /// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up
1821 /// the corresponding cooked (non-raw) literal operator, and build a call to it.
1822 static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope,
1823                                                  IdentifierInfo *UDSuffix,
1824                                                  SourceLocation UDSuffixLoc,
1825                                                  ArrayRef<Expr*> Args,
1826                                                  SourceLocation LitEndLoc) {
1827   assert(Args.size() <= 2 && "too many arguments for literal operator");
1828 
1829   QualType ArgTy[2];
1830   for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) {
1831     ArgTy[ArgIdx] = Args[ArgIdx]->getType();
1832     if (ArgTy[ArgIdx]->isArrayType())
1833       ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]);
1834   }
1835 
1836   DeclarationName OpName =
1837     S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1838   DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1839   OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1840 
1841   LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName);
1842   if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()),
1843                               /*AllowRaw*/ false, /*AllowTemplate*/ false,
1844                               /*AllowStringTemplatePack*/ false,
1845                               /*DiagnoseMissing*/ true) == Sema::LOLR_Error)
1846     return ExprError();
1847 
1848   return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc);
1849 }
1850 
1851 /// ActOnStringLiteral - The specified tokens were lexed as pasted string
1852 /// fragments (e.g. "foo" "bar" L"baz").  The result string has to handle string
1853 /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
1854 /// multiple tokens.  However, the common case is that StringToks points to one
1855 /// string.
1856 ///
1857 ExprResult
1858 Sema::ActOnStringLiteral(ArrayRef<Token> StringToks, Scope *UDLScope) {
1859   assert(!StringToks.empty() && "Must have at least one string!");
1860 
1861   StringLiteralParser Literal(StringToks, PP);
1862   if (Literal.hadError)
1863     return ExprError();
1864 
1865   SmallVector<SourceLocation, 4> StringTokLocs;
1866   for (const Token &Tok : StringToks)
1867     StringTokLocs.push_back(Tok.getLocation());
1868 
1869   QualType CharTy = Context.CharTy;
1870   StringLiteral::StringKind Kind = StringLiteral::Ordinary;
1871   if (Literal.isWide()) {
1872     CharTy = Context.getWideCharType();
1873     Kind = StringLiteral::Wide;
1874   } else if (Literal.isUTF8()) {
1875     if (getLangOpts().Char8)
1876       CharTy = Context.Char8Ty;
1877     Kind = StringLiteral::UTF8;
1878   } else if (Literal.isUTF16()) {
1879     CharTy = Context.Char16Ty;
1880     Kind = StringLiteral::UTF16;
1881   } else if (Literal.isUTF32()) {
1882     CharTy = Context.Char32Ty;
1883     Kind = StringLiteral::UTF32;
1884   } else if (Literal.isPascal()) {
1885     CharTy = Context.UnsignedCharTy;
1886   }
1887 
1888   // Warn on initializing an array of char from a u8 string literal; this
1889   // becomes ill-formed in C++2a.
1890   if (getLangOpts().CPlusPlus && !getLangOpts().CPlusPlus20 &&
1891       !getLangOpts().Char8 && Kind == StringLiteral::UTF8) {
1892     Diag(StringTokLocs.front(), diag::warn_cxx20_compat_utf8_string);
1893 
1894     // Create removals for all 'u8' prefixes in the string literal(s). This
1895     // ensures C++2a compatibility (but may change the program behavior when
1896     // built by non-Clang compilers for which the execution character set is
1897     // not always UTF-8).
1898     auto RemovalDiag = PDiag(diag::note_cxx20_compat_utf8_string_remove_u8);
1899     SourceLocation RemovalDiagLoc;
1900     for (const Token &Tok : StringToks) {
1901       if (Tok.getKind() == tok::utf8_string_literal) {
1902         if (RemovalDiagLoc.isInvalid())
1903           RemovalDiagLoc = Tok.getLocation();
1904         RemovalDiag << FixItHint::CreateRemoval(CharSourceRange::getCharRange(
1905             Tok.getLocation(),
1906             Lexer::AdvanceToTokenCharacter(Tok.getLocation(), 2,
1907                                            getSourceManager(), getLangOpts())));
1908       }
1909     }
1910     Diag(RemovalDiagLoc, RemovalDiag);
1911   }
1912 
1913   QualType StrTy =
1914       Context.getStringLiteralArrayType(CharTy, Literal.GetNumStringChars());
1915 
1916   // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
1917   StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(),
1918                                              Kind, Literal.Pascal, StrTy,
1919                                              &StringTokLocs[0],
1920                                              StringTokLocs.size());
1921   if (Literal.getUDSuffix().empty())
1922     return Lit;
1923 
1924   // We're building a user-defined literal.
1925   IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
1926   SourceLocation UDSuffixLoc =
1927     getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()],
1928                    Literal.getUDSuffixOffset());
1929 
1930   // Make sure we're allowed user-defined literals here.
1931   if (!UDLScope)
1932     return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl));
1933 
1934   // C++11 [lex.ext]p5: The literal L is treated as a call of the form
1935   //   operator "" X (str, len)
1936   QualType SizeType = Context.getSizeType();
1937 
1938   DeclarationName OpName =
1939     Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1940   DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1941   OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1942 
1943   QualType ArgTy[] = {
1944     Context.getArrayDecayedType(StrTy), SizeType
1945   };
1946 
1947   LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
1948   switch (LookupLiteralOperator(UDLScope, R, ArgTy,
1949                                 /*AllowRaw*/ false, /*AllowTemplate*/ true,
1950                                 /*AllowStringTemplatePack*/ true,
1951                                 /*DiagnoseMissing*/ true, Lit)) {
1952 
1953   case LOLR_Cooked: {
1954     llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars());
1955     IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType,
1956                                                     StringTokLocs[0]);
1957     Expr *Args[] = { Lit, LenArg };
1958 
1959     return BuildLiteralOperatorCall(R, OpNameInfo, Args, StringTokLocs.back());
1960   }
1961 
1962   case LOLR_Template: {
1963     TemplateArgumentListInfo ExplicitArgs;
1964     TemplateArgument Arg(Lit);
1965     TemplateArgumentLocInfo ArgInfo(Lit);
1966     ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
1967     return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(),
1968                                     &ExplicitArgs);
1969   }
1970 
1971   case LOLR_StringTemplatePack: {
1972     TemplateArgumentListInfo ExplicitArgs;
1973 
1974     unsigned CharBits = Context.getIntWidth(CharTy);
1975     bool CharIsUnsigned = CharTy->isUnsignedIntegerType();
1976     llvm::APSInt Value(CharBits, CharIsUnsigned);
1977 
1978     TemplateArgument TypeArg(CharTy);
1979     TemplateArgumentLocInfo TypeArgInfo(Context.getTrivialTypeSourceInfo(CharTy));
1980     ExplicitArgs.addArgument(TemplateArgumentLoc(TypeArg, TypeArgInfo));
1981 
1982     for (unsigned I = 0, N = Lit->getLength(); I != N; ++I) {
1983       Value = Lit->getCodeUnit(I);
1984       TemplateArgument Arg(Context, Value, CharTy);
1985       TemplateArgumentLocInfo ArgInfo;
1986       ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
1987     }
1988     return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(),
1989                                     &ExplicitArgs);
1990   }
1991   case LOLR_Raw:
1992   case LOLR_ErrorNoDiagnostic:
1993     llvm_unreachable("unexpected literal operator lookup result");
1994   case LOLR_Error:
1995     return ExprError();
1996   }
1997   llvm_unreachable("unexpected literal operator lookup result");
1998 }
1999 
2000 DeclRefExpr *
2001 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
2002                        SourceLocation Loc,
2003                        const CXXScopeSpec *SS) {
2004   DeclarationNameInfo NameInfo(D->getDeclName(), Loc);
2005   return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS);
2006 }
2007 
2008 DeclRefExpr *
2009 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
2010                        const DeclarationNameInfo &NameInfo,
2011                        const CXXScopeSpec *SS, NamedDecl *FoundD,
2012                        SourceLocation TemplateKWLoc,
2013                        const TemplateArgumentListInfo *TemplateArgs) {
2014   NestedNameSpecifierLoc NNS =
2015       SS ? SS->getWithLocInContext(Context) : NestedNameSpecifierLoc();
2016   return BuildDeclRefExpr(D, Ty, VK, NameInfo, NNS, FoundD, TemplateKWLoc,
2017                           TemplateArgs);
2018 }
2019 
2020 // CUDA/HIP: Check whether a captured reference variable is referencing a
2021 // host variable in a device or host device lambda.
2022 static bool isCapturingReferenceToHostVarInCUDADeviceLambda(const Sema &S,
2023                                                             VarDecl *VD) {
2024   if (!S.getLangOpts().CUDA || !VD->hasInit())
2025     return false;
2026   assert(VD->getType()->isReferenceType());
2027 
2028   // Check whether the reference variable is referencing a host variable.
2029   auto *DRE = dyn_cast<DeclRefExpr>(VD->getInit());
2030   if (!DRE)
2031     return false;
2032   auto *Referee = dyn_cast<VarDecl>(DRE->getDecl());
2033   if (!Referee || !Referee->hasGlobalStorage() ||
2034       Referee->hasAttr<CUDADeviceAttr>())
2035     return false;
2036 
2037   // Check whether the current function is a device or host device lambda.
2038   // Check whether the reference variable is a capture by getDeclContext()
2039   // since refersToEnclosingVariableOrCapture() is not ready at this point.
2040   auto *MD = dyn_cast_or_null<CXXMethodDecl>(S.CurContext);
2041   if (MD && MD->getParent()->isLambda() &&
2042       MD->getOverloadedOperator() == OO_Call && MD->hasAttr<CUDADeviceAttr>() &&
2043       VD->getDeclContext() != MD)
2044     return true;
2045 
2046   return false;
2047 }
2048 
2049 NonOdrUseReason Sema::getNonOdrUseReasonInCurrentContext(ValueDecl *D) {
2050   // A declaration named in an unevaluated operand never constitutes an odr-use.
2051   if (isUnevaluatedContext())
2052     return NOUR_Unevaluated;
2053 
2054   // C++2a [basic.def.odr]p4:
2055   //   A variable x whose name appears as a potentially-evaluated expression e
2056   //   is odr-used by e unless [...] x is a reference that is usable in
2057   //   constant expressions.
2058   // CUDA/HIP:
2059   //   If a reference variable referencing a host variable is captured in a
2060   //   device or host device lambda, the value of the referee must be copied
2061   //   to the capture and the reference variable must be treated as odr-use
2062   //   since the value of the referee is not known at compile time and must
2063   //   be loaded from the captured.
2064   if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
2065     if (VD->getType()->isReferenceType() &&
2066         !(getLangOpts().OpenMP && isOpenMPCapturedDecl(D)) &&
2067         !isCapturingReferenceToHostVarInCUDADeviceLambda(*this, VD) &&
2068         VD->isUsableInConstantExpressions(Context))
2069       return NOUR_Constant;
2070   }
2071 
2072   // All remaining non-variable cases constitute an odr-use. For variables, we
2073   // need to wait and see how the expression is used.
2074   return NOUR_None;
2075 }
2076 
2077 /// BuildDeclRefExpr - Build an expression that references a
2078 /// declaration that does not require a closure capture.
2079 DeclRefExpr *
2080 Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
2081                        const DeclarationNameInfo &NameInfo,
2082                        NestedNameSpecifierLoc NNS, NamedDecl *FoundD,
2083                        SourceLocation TemplateKWLoc,
2084                        const TemplateArgumentListInfo *TemplateArgs) {
2085   bool RefersToCapturedVariable =
2086       isa<VarDecl>(D) &&
2087       NeedToCaptureVariable(cast<VarDecl>(D), NameInfo.getLoc());
2088 
2089   DeclRefExpr *E = DeclRefExpr::Create(
2090       Context, NNS, TemplateKWLoc, D, RefersToCapturedVariable, NameInfo, Ty,
2091       VK, FoundD, TemplateArgs, getNonOdrUseReasonInCurrentContext(D));
2092   MarkDeclRefReferenced(E);
2093 
2094   // C++ [except.spec]p17:
2095   //   An exception-specification is considered to be needed when:
2096   //   - in an expression, the function is the unique lookup result or
2097   //     the selected member of a set of overloaded functions.
2098   //
2099   // We delay doing this until after we've built the function reference and
2100   // marked it as used so that:
2101   //  a) if the function is defaulted, we get errors from defining it before /
2102   //     instead of errors from computing its exception specification, and
2103   //  b) if the function is a defaulted comparison, we can use the body we
2104   //     build when defining it as input to the exception specification
2105   //     computation rather than computing a new body.
2106   if (auto *FPT = Ty->getAs<FunctionProtoType>()) {
2107     if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) {
2108       if (auto *NewFPT = ResolveExceptionSpec(NameInfo.getLoc(), FPT))
2109         E->setType(Context.getQualifiedType(NewFPT, Ty.getQualifiers()));
2110     }
2111   }
2112 
2113   if (getLangOpts().ObjCWeak && isa<VarDecl>(D) &&
2114       Ty.getObjCLifetime() == Qualifiers::OCL_Weak && !isUnevaluatedContext() &&
2115       !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, E->getBeginLoc()))
2116     getCurFunction()->recordUseOfWeak(E);
2117 
2118   FieldDecl *FD = dyn_cast<FieldDecl>(D);
2119   if (IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(D))
2120     FD = IFD->getAnonField();
2121   if (FD) {
2122     UnusedPrivateFields.remove(FD);
2123     // Just in case we're building an illegal pointer-to-member.
2124     if (FD->isBitField())
2125       E->setObjectKind(OK_BitField);
2126   }
2127 
2128   // C++ [expr.prim]/8: The expression [...] is a bit-field if the identifier
2129   // designates a bit-field.
2130   if (auto *BD = dyn_cast<BindingDecl>(D))
2131     if (auto *BE = BD->getBinding())
2132       E->setObjectKind(BE->getObjectKind());
2133 
2134   return E;
2135 }
2136 
2137 /// Decomposes the given name into a DeclarationNameInfo, its location, and
2138 /// possibly a list of template arguments.
2139 ///
2140 /// If this produces template arguments, it is permitted to call
2141 /// DecomposeTemplateName.
2142 ///
2143 /// This actually loses a lot of source location information for
2144 /// non-standard name kinds; we should consider preserving that in
2145 /// some way.
2146 void
2147 Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id,
2148                              TemplateArgumentListInfo &Buffer,
2149                              DeclarationNameInfo &NameInfo,
2150                              const TemplateArgumentListInfo *&TemplateArgs) {
2151   if (Id.getKind() == UnqualifiedIdKind::IK_TemplateId) {
2152     Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc);
2153     Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc);
2154 
2155     ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(),
2156                                        Id.TemplateId->NumArgs);
2157     translateTemplateArguments(TemplateArgsPtr, Buffer);
2158 
2159     TemplateName TName = Id.TemplateId->Template.get();
2160     SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc;
2161     NameInfo = Context.getNameForTemplate(TName, TNameLoc);
2162     TemplateArgs = &Buffer;
2163   } else {
2164     NameInfo = GetNameFromUnqualifiedId(Id);
2165     TemplateArgs = nullptr;
2166   }
2167 }
2168 
2169 static void emitEmptyLookupTypoDiagnostic(
2170     const TypoCorrection &TC, Sema &SemaRef, const CXXScopeSpec &SS,
2171     DeclarationName Typo, SourceLocation TypoLoc, ArrayRef<Expr *> Args,
2172     unsigned DiagnosticID, unsigned DiagnosticSuggestID) {
2173   DeclContext *Ctx =
2174       SS.isEmpty() ? nullptr : SemaRef.computeDeclContext(SS, false);
2175   if (!TC) {
2176     // Emit a special diagnostic for failed member lookups.
2177     // FIXME: computing the declaration context might fail here (?)
2178     if (Ctx)
2179       SemaRef.Diag(TypoLoc, diag::err_no_member) << Typo << Ctx
2180                                                  << SS.getRange();
2181     else
2182       SemaRef.Diag(TypoLoc, DiagnosticID) << Typo;
2183     return;
2184   }
2185 
2186   std::string CorrectedStr = TC.getAsString(SemaRef.getLangOpts());
2187   bool DroppedSpecifier =
2188       TC.WillReplaceSpecifier() && Typo.getAsString() == CorrectedStr;
2189   unsigned NoteID = TC.getCorrectionDeclAs<ImplicitParamDecl>()
2190                         ? diag::note_implicit_param_decl
2191                         : diag::note_previous_decl;
2192   if (!Ctx)
2193     SemaRef.diagnoseTypo(TC, SemaRef.PDiag(DiagnosticSuggestID) << Typo,
2194                          SemaRef.PDiag(NoteID));
2195   else
2196     SemaRef.diagnoseTypo(TC, SemaRef.PDiag(diag::err_no_member_suggest)
2197                                  << Typo << Ctx << DroppedSpecifier
2198                                  << SS.getRange(),
2199                          SemaRef.PDiag(NoteID));
2200 }
2201 
2202 /// Diagnose a lookup that found results in an enclosing class during error
2203 /// recovery. This usually indicates that the results were found in a dependent
2204 /// base class that could not be searched as part of a template definition.
2205 /// Always issues a diagnostic (though this may be only a warning in MS
2206 /// compatibility mode).
2207 ///
2208 /// Return \c true if the error is unrecoverable, or \c false if the caller
2209 /// should attempt to recover using these lookup results.
2210 bool Sema::DiagnoseDependentMemberLookup(LookupResult &R) {
2211   // During a default argument instantiation the CurContext points
2212   // to a CXXMethodDecl; but we can't apply a this-> fixit inside a
2213   // function parameter list, hence add an explicit check.
2214   bool isDefaultArgument =
2215       !CodeSynthesisContexts.empty() &&
2216       CodeSynthesisContexts.back().Kind ==
2217           CodeSynthesisContext::DefaultFunctionArgumentInstantiation;
2218   CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext);
2219   bool isInstance = CurMethod && CurMethod->isInstance() &&
2220                     R.getNamingClass() == CurMethod->getParent() &&
2221                     !isDefaultArgument;
2222 
2223   // There are two ways we can find a class-scope declaration during template
2224   // instantiation that we did not find in the template definition: if it is a
2225   // member of a dependent base class, or if it is declared after the point of
2226   // use in the same class. Distinguish these by comparing the class in which
2227   // the member was found to the naming class of the lookup.
2228   unsigned DiagID = diag::err_found_in_dependent_base;
2229   unsigned NoteID = diag::note_member_declared_at;
2230   if (R.getRepresentativeDecl()->getDeclContext()->Equals(R.getNamingClass())) {
2231     DiagID = getLangOpts().MSVCCompat ? diag::ext_found_later_in_class
2232                                       : diag::err_found_later_in_class;
2233   } else if (getLangOpts().MSVCCompat) {
2234     DiagID = diag::ext_found_in_dependent_base;
2235     NoteID = diag::note_dependent_member_use;
2236   }
2237 
2238   if (isInstance) {
2239     // Give a code modification hint to insert 'this->'.
2240     Diag(R.getNameLoc(), DiagID)
2241         << R.getLookupName()
2242         << FixItHint::CreateInsertion(R.getNameLoc(), "this->");
2243     CheckCXXThisCapture(R.getNameLoc());
2244   } else {
2245     // FIXME: Add a FixItHint to insert 'Base::' or 'Derived::' (assuming
2246     // they're not shadowed).
2247     Diag(R.getNameLoc(), DiagID) << R.getLookupName();
2248   }
2249 
2250   for (NamedDecl *D : R)
2251     Diag(D->getLocation(), NoteID);
2252 
2253   // Return true if we are inside a default argument instantiation
2254   // and the found name refers to an instance member function, otherwise
2255   // the caller will try to create an implicit member call and this is wrong
2256   // for default arguments.
2257   //
2258   // FIXME: Is this special case necessary? We could allow the caller to
2259   // diagnose this.
2260   if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) {
2261     Diag(R.getNameLoc(), diag::err_member_call_without_object);
2262     return true;
2263   }
2264 
2265   // Tell the callee to try to recover.
2266   return false;
2267 }
2268 
2269 /// Diagnose an empty lookup.
2270 ///
2271 /// \return false if new lookup candidates were found
2272 bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R,
2273                                CorrectionCandidateCallback &CCC,
2274                                TemplateArgumentListInfo *ExplicitTemplateArgs,
2275                                ArrayRef<Expr *> Args, TypoExpr **Out) {
2276   DeclarationName Name = R.getLookupName();
2277 
2278   unsigned diagnostic = diag::err_undeclared_var_use;
2279   unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest;
2280   if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
2281       Name.getNameKind() == DeclarationName::CXXLiteralOperatorName ||
2282       Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
2283     diagnostic = diag::err_undeclared_use;
2284     diagnostic_suggest = diag::err_undeclared_use_suggest;
2285   }
2286 
2287   // If the original lookup was an unqualified lookup, fake an
2288   // unqualified lookup.  This is useful when (for example) the
2289   // original lookup would not have found something because it was a
2290   // dependent name.
2291   DeclContext *DC = SS.isEmpty() ? CurContext : nullptr;
2292   while (DC) {
2293     if (isa<CXXRecordDecl>(DC)) {
2294       LookupQualifiedName(R, DC);
2295 
2296       if (!R.empty()) {
2297         // Don't give errors about ambiguities in this lookup.
2298         R.suppressDiagnostics();
2299 
2300         // If there's a best viable function among the results, only mention
2301         // that one in the notes.
2302         OverloadCandidateSet Candidates(R.getNameLoc(),
2303                                         OverloadCandidateSet::CSK_Normal);
2304         AddOverloadedCallCandidates(R, ExplicitTemplateArgs, Args, Candidates);
2305         OverloadCandidateSet::iterator Best;
2306         if (Candidates.BestViableFunction(*this, R.getNameLoc(), Best) ==
2307             OR_Success) {
2308           R.clear();
2309           R.addDecl(Best->FoundDecl.getDecl(), Best->FoundDecl.getAccess());
2310           R.resolveKind();
2311         }
2312 
2313         return DiagnoseDependentMemberLookup(R);
2314       }
2315 
2316       R.clear();
2317     }
2318 
2319     DC = DC->getLookupParent();
2320   }
2321 
2322   // We didn't find anything, so try to correct for a typo.
2323   TypoCorrection Corrected;
2324   if (S && Out) {
2325     SourceLocation TypoLoc = R.getNameLoc();
2326     assert(!ExplicitTemplateArgs &&
2327            "Diagnosing an empty lookup with explicit template args!");
2328     *Out = CorrectTypoDelayed(
2329         R.getLookupNameInfo(), R.getLookupKind(), S, &SS, CCC,
2330         [=](const TypoCorrection &TC) {
2331           emitEmptyLookupTypoDiagnostic(TC, *this, SS, Name, TypoLoc, Args,
2332                                         diagnostic, diagnostic_suggest);
2333         },
2334         nullptr, CTK_ErrorRecovery);
2335     if (*Out)
2336       return true;
2337   } else if (S &&
2338              (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(),
2339                                       S, &SS, CCC, CTK_ErrorRecovery))) {
2340     std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
2341     bool DroppedSpecifier =
2342         Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr;
2343     R.setLookupName(Corrected.getCorrection());
2344 
2345     bool AcceptableWithRecovery = false;
2346     bool AcceptableWithoutRecovery = false;
2347     NamedDecl *ND = Corrected.getFoundDecl();
2348     if (ND) {
2349       if (Corrected.isOverloaded()) {
2350         OverloadCandidateSet OCS(R.getNameLoc(),
2351                                  OverloadCandidateSet::CSK_Normal);
2352         OverloadCandidateSet::iterator Best;
2353         for (NamedDecl *CD : Corrected) {
2354           if (FunctionTemplateDecl *FTD =
2355                    dyn_cast<FunctionTemplateDecl>(CD))
2356             AddTemplateOverloadCandidate(
2357                 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs,
2358                 Args, OCS);
2359           else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(CD))
2360             if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0)
2361               AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none),
2362                                    Args, OCS);
2363         }
2364         switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) {
2365         case OR_Success:
2366           ND = Best->FoundDecl;
2367           Corrected.setCorrectionDecl(ND);
2368           break;
2369         default:
2370           // FIXME: Arbitrarily pick the first declaration for the note.
2371           Corrected.setCorrectionDecl(ND);
2372           break;
2373         }
2374       }
2375       R.addDecl(ND);
2376       if (getLangOpts().CPlusPlus && ND->isCXXClassMember()) {
2377         CXXRecordDecl *Record = nullptr;
2378         if (Corrected.getCorrectionSpecifier()) {
2379           const Type *Ty = Corrected.getCorrectionSpecifier()->getAsType();
2380           Record = Ty->getAsCXXRecordDecl();
2381         }
2382         if (!Record)
2383           Record = cast<CXXRecordDecl>(
2384               ND->getDeclContext()->getRedeclContext());
2385         R.setNamingClass(Record);
2386       }
2387 
2388       auto *UnderlyingND = ND->getUnderlyingDecl();
2389       AcceptableWithRecovery = isa<ValueDecl>(UnderlyingND) ||
2390                                isa<FunctionTemplateDecl>(UnderlyingND);
2391       // FIXME: If we ended up with a typo for a type name or
2392       // Objective-C class name, we're in trouble because the parser
2393       // is in the wrong place to recover. Suggest the typo
2394       // correction, but don't make it a fix-it since we're not going
2395       // to recover well anyway.
2396       AcceptableWithoutRecovery = isa<TypeDecl>(UnderlyingND) ||
2397                                   getAsTypeTemplateDecl(UnderlyingND) ||
2398                                   isa<ObjCInterfaceDecl>(UnderlyingND);
2399     } else {
2400       // FIXME: We found a keyword. Suggest it, but don't provide a fix-it
2401       // because we aren't able to recover.
2402       AcceptableWithoutRecovery = true;
2403     }
2404 
2405     if (AcceptableWithRecovery || AcceptableWithoutRecovery) {
2406       unsigned NoteID = Corrected.getCorrectionDeclAs<ImplicitParamDecl>()
2407                             ? diag::note_implicit_param_decl
2408                             : diag::note_previous_decl;
2409       if (SS.isEmpty())
2410         diagnoseTypo(Corrected, PDiag(diagnostic_suggest) << Name,
2411                      PDiag(NoteID), AcceptableWithRecovery);
2412       else
2413         diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
2414                                   << Name << computeDeclContext(SS, false)
2415                                   << DroppedSpecifier << SS.getRange(),
2416                      PDiag(NoteID), AcceptableWithRecovery);
2417 
2418       // Tell the callee whether to try to recover.
2419       return !AcceptableWithRecovery;
2420     }
2421   }
2422   R.clear();
2423 
2424   // Emit a special diagnostic for failed member lookups.
2425   // FIXME: computing the declaration context might fail here (?)
2426   if (!SS.isEmpty()) {
2427     Diag(R.getNameLoc(), diag::err_no_member)
2428       << Name << computeDeclContext(SS, false)
2429       << SS.getRange();
2430     return true;
2431   }
2432 
2433   // Give up, we can't recover.
2434   Diag(R.getNameLoc(), diagnostic) << Name;
2435   return true;
2436 }
2437 
2438 /// In Microsoft mode, if we are inside a template class whose parent class has
2439 /// dependent base classes, and we can't resolve an unqualified identifier, then
2440 /// assume the identifier is a member of a dependent base class.  We can only
2441 /// recover successfully in static methods, instance methods, and other contexts
2442 /// where 'this' is available.  This doesn't precisely match MSVC's
2443 /// instantiation model, but it's close enough.
2444 static Expr *
2445 recoverFromMSUnqualifiedLookup(Sema &S, ASTContext &Context,
2446                                DeclarationNameInfo &NameInfo,
2447                                SourceLocation TemplateKWLoc,
2448                                const TemplateArgumentListInfo *TemplateArgs) {
2449   // Only try to recover from lookup into dependent bases in static methods or
2450   // contexts where 'this' is available.
2451   QualType ThisType = S.getCurrentThisType();
2452   const CXXRecordDecl *RD = nullptr;
2453   if (!ThisType.isNull())
2454     RD = ThisType->getPointeeType()->getAsCXXRecordDecl();
2455   else if (auto *MD = dyn_cast<CXXMethodDecl>(S.CurContext))
2456     RD = MD->getParent();
2457   if (!RD || !RD->hasAnyDependentBases())
2458     return nullptr;
2459 
2460   // Diagnose this as unqualified lookup into a dependent base class.  If 'this'
2461   // is available, suggest inserting 'this->' as a fixit.
2462   SourceLocation Loc = NameInfo.getLoc();
2463   auto DB = S.Diag(Loc, diag::ext_undeclared_unqual_id_with_dependent_base);
2464   DB << NameInfo.getName() << RD;
2465 
2466   if (!ThisType.isNull()) {
2467     DB << FixItHint::CreateInsertion(Loc, "this->");
2468     return CXXDependentScopeMemberExpr::Create(
2469         Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true,
2470         /*Op=*/SourceLocation(), NestedNameSpecifierLoc(), TemplateKWLoc,
2471         /*FirstQualifierFoundInScope=*/nullptr, NameInfo, TemplateArgs);
2472   }
2473 
2474   // Synthesize a fake NNS that points to the derived class.  This will
2475   // perform name lookup during template instantiation.
2476   CXXScopeSpec SS;
2477   auto *NNS =
2478       NestedNameSpecifier::Create(Context, nullptr, true, RD->getTypeForDecl());
2479   SS.MakeTrivial(Context, NNS, SourceRange(Loc, Loc));
2480   return DependentScopeDeclRefExpr::Create(
2481       Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
2482       TemplateArgs);
2483 }
2484 
2485 ExprResult
2486 Sema::ActOnIdExpression(Scope *S, CXXScopeSpec &SS,
2487                         SourceLocation TemplateKWLoc, UnqualifiedId &Id,
2488                         bool HasTrailingLParen, bool IsAddressOfOperand,
2489                         CorrectionCandidateCallback *CCC,
2490                         bool IsInlineAsmIdentifier, Token *KeywordReplacement) {
2491   assert(!(IsAddressOfOperand && HasTrailingLParen) &&
2492          "cannot be direct & operand and have a trailing lparen");
2493   if (SS.isInvalid())
2494     return ExprError();
2495 
2496   TemplateArgumentListInfo TemplateArgsBuffer;
2497 
2498   // Decompose the UnqualifiedId into the following data.
2499   DeclarationNameInfo NameInfo;
2500   const TemplateArgumentListInfo *TemplateArgs;
2501   DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs);
2502 
2503   DeclarationName Name = NameInfo.getName();
2504   IdentifierInfo *II = Name.getAsIdentifierInfo();
2505   SourceLocation NameLoc = NameInfo.getLoc();
2506 
2507   if (II && II->isEditorPlaceholder()) {
2508     // FIXME: When typed placeholders are supported we can create a typed
2509     // placeholder expression node.
2510     return ExprError();
2511   }
2512 
2513   // C++ [temp.dep.expr]p3:
2514   //   An id-expression is type-dependent if it contains:
2515   //     -- an identifier that was declared with a dependent type,
2516   //        (note: handled after lookup)
2517   //     -- a template-id that is dependent,
2518   //        (note: handled in BuildTemplateIdExpr)
2519   //     -- a conversion-function-id that specifies a dependent type,
2520   //     -- a nested-name-specifier that contains a class-name that
2521   //        names a dependent type.
2522   // Determine whether this is a member of an unknown specialization;
2523   // we need to handle these differently.
2524   bool DependentID = false;
2525   if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
2526       Name.getCXXNameType()->isDependentType()) {
2527     DependentID = true;
2528   } else if (SS.isSet()) {
2529     if (DeclContext *DC = computeDeclContext(SS, false)) {
2530       if (RequireCompleteDeclContext(SS, DC))
2531         return ExprError();
2532     } else {
2533       DependentID = true;
2534     }
2535   }
2536 
2537   if (DependentID)
2538     return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2539                                       IsAddressOfOperand, TemplateArgs);
2540 
2541   // Perform the required lookup.
2542   LookupResult R(*this, NameInfo,
2543                  (Id.getKind() == UnqualifiedIdKind::IK_ImplicitSelfParam)
2544                      ? LookupObjCImplicitSelfParam
2545                      : LookupOrdinaryName);
2546   if (TemplateKWLoc.isValid() || TemplateArgs) {
2547     // Lookup the template name again to correctly establish the context in
2548     // which it was found. This is really unfortunate as we already did the
2549     // lookup to determine that it was a template name in the first place. If
2550     // this becomes a performance hit, we can work harder to preserve those
2551     // results until we get here but it's likely not worth it.
2552     bool MemberOfUnknownSpecialization;
2553     AssumedTemplateKind AssumedTemplate;
2554     if (LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false,
2555                            MemberOfUnknownSpecialization, TemplateKWLoc,
2556                            &AssumedTemplate))
2557       return ExprError();
2558 
2559     if (MemberOfUnknownSpecialization ||
2560         (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation))
2561       return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2562                                         IsAddressOfOperand, TemplateArgs);
2563   } else {
2564     bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl();
2565     LookupParsedName(R, S, &SS, !IvarLookupFollowUp);
2566 
2567     // If the result might be in a dependent base class, this is a dependent
2568     // id-expression.
2569     if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
2570       return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2571                                         IsAddressOfOperand, TemplateArgs);
2572 
2573     // If this reference is in an Objective-C method, then we need to do
2574     // some special Objective-C lookup, too.
2575     if (IvarLookupFollowUp) {
2576       ExprResult E(LookupInObjCMethod(R, S, II, true));
2577       if (E.isInvalid())
2578         return ExprError();
2579 
2580       if (Expr *Ex = E.getAs<Expr>())
2581         return Ex;
2582     }
2583   }
2584 
2585   if (R.isAmbiguous())
2586     return ExprError();
2587 
2588   // This could be an implicitly declared function reference if the language
2589   // mode allows it as a feature.
2590   if (R.empty() && HasTrailingLParen && II &&
2591       getLangOpts().implicitFunctionsAllowed()) {
2592     NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S);
2593     if (D) R.addDecl(D);
2594   }
2595 
2596   // Determine whether this name might be a candidate for
2597   // argument-dependent lookup.
2598   bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen);
2599 
2600   if (R.empty() && !ADL) {
2601     if (SS.isEmpty() && getLangOpts().MSVCCompat) {
2602       if (Expr *E = recoverFromMSUnqualifiedLookup(*this, Context, NameInfo,
2603                                                    TemplateKWLoc, TemplateArgs))
2604         return E;
2605     }
2606 
2607     // Don't diagnose an empty lookup for inline assembly.
2608     if (IsInlineAsmIdentifier)
2609       return ExprError();
2610 
2611     // If this name wasn't predeclared and if this is not a function
2612     // call, diagnose the problem.
2613     TypoExpr *TE = nullptr;
2614     DefaultFilterCCC DefaultValidator(II, SS.isValid() ? SS.getScopeRep()
2615                                                        : nullptr);
2616     DefaultValidator.IsAddressOfOperand = IsAddressOfOperand;
2617     assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) &&
2618            "Typo correction callback misconfigured");
2619     if (CCC) {
2620       // Make sure the callback knows what the typo being diagnosed is.
2621       CCC->setTypoName(II);
2622       if (SS.isValid())
2623         CCC->setTypoNNS(SS.getScopeRep());
2624     }
2625     // FIXME: DiagnoseEmptyLookup produces bad diagnostics if we're looking for
2626     // a template name, but we happen to have always already looked up the name
2627     // before we get here if it must be a template name.
2628     if (DiagnoseEmptyLookup(S, SS, R, CCC ? *CCC : DefaultValidator, nullptr,
2629                             None, &TE)) {
2630       if (TE && KeywordReplacement) {
2631         auto &State = getTypoExprState(TE);
2632         auto BestTC = State.Consumer->getNextCorrection();
2633         if (BestTC.isKeyword()) {
2634           auto *II = BestTC.getCorrectionAsIdentifierInfo();
2635           if (State.DiagHandler)
2636             State.DiagHandler(BestTC);
2637           KeywordReplacement->startToken();
2638           KeywordReplacement->setKind(II->getTokenID());
2639           KeywordReplacement->setIdentifierInfo(II);
2640           KeywordReplacement->setLocation(BestTC.getCorrectionRange().getBegin());
2641           // Clean up the state associated with the TypoExpr, since it has
2642           // now been diagnosed (without a call to CorrectDelayedTyposInExpr).
2643           clearDelayedTypo(TE);
2644           // Signal that a correction to a keyword was performed by returning a
2645           // valid-but-null ExprResult.
2646           return (Expr*)nullptr;
2647         }
2648         State.Consumer->resetCorrectionStream();
2649       }
2650       return TE ? TE : ExprError();
2651     }
2652 
2653     assert(!R.empty() &&
2654            "DiagnoseEmptyLookup returned false but added no results");
2655 
2656     // If we found an Objective-C instance variable, let
2657     // LookupInObjCMethod build the appropriate expression to
2658     // reference the ivar.
2659     if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) {
2660       R.clear();
2661       ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier()));
2662       // In a hopelessly buggy code, Objective-C instance variable
2663       // lookup fails and no expression will be built to reference it.
2664       if (!E.isInvalid() && !E.get())
2665         return ExprError();
2666       return E;
2667     }
2668   }
2669 
2670   // This is guaranteed from this point on.
2671   assert(!R.empty() || ADL);
2672 
2673   // Check whether this might be a C++ implicit instance member access.
2674   // C++ [class.mfct.non-static]p3:
2675   //   When an id-expression that is not part of a class member access
2676   //   syntax and not used to form a pointer to member is used in the
2677   //   body of a non-static member function of class X, if name lookup
2678   //   resolves the name in the id-expression to a non-static non-type
2679   //   member of some class C, the id-expression is transformed into a
2680   //   class member access expression using (*this) as the
2681   //   postfix-expression to the left of the . operator.
2682   //
2683   // But we don't actually need to do this for '&' operands if R
2684   // resolved to a function or overloaded function set, because the
2685   // expression is ill-formed if it actually works out to be a
2686   // non-static member function:
2687   //
2688   // C++ [expr.ref]p4:
2689   //   Otherwise, if E1.E2 refers to a non-static member function. . .
2690   //   [t]he expression can be used only as the left-hand operand of a
2691   //   member function call.
2692   //
2693   // There are other safeguards against such uses, but it's important
2694   // to get this right here so that we don't end up making a
2695   // spuriously dependent expression if we're inside a dependent
2696   // instance method.
2697   if (!R.empty() && (*R.begin())->isCXXClassMember()) {
2698     bool MightBeImplicitMember;
2699     if (!IsAddressOfOperand)
2700       MightBeImplicitMember = true;
2701     else if (!SS.isEmpty())
2702       MightBeImplicitMember = false;
2703     else if (R.isOverloadedResult())
2704       MightBeImplicitMember = false;
2705     else if (R.isUnresolvableResult())
2706       MightBeImplicitMember = true;
2707     else
2708       MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) ||
2709                               isa<IndirectFieldDecl>(R.getFoundDecl()) ||
2710                               isa<MSPropertyDecl>(R.getFoundDecl());
2711 
2712     if (MightBeImplicitMember)
2713       return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc,
2714                                              R, TemplateArgs, S);
2715   }
2716 
2717   if (TemplateArgs || TemplateKWLoc.isValid()) {
2718 
2719     // In C++1y, if this is a variable template id, then check it
2720     // in BuildTemplateIdExpr().
2721     // The single lookup result must be a variable template declaration.
2722     if (Id.getKind() == UnqualifiedIdKind::IK_TemplateId && Id.TemplateId &&
2723         Id.TemplateId->Kind == TNK_Var_template) {
2724       assert(R.getAsSingle<VarTemplateDecl>() &&
2725              "There should only be one declaration found.");
2726     }
2727 
2728     return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs);
2729   }
2730 
2731   return BuildDeclarationNameExpr(SS, R, ADL);
2732 }
2733 
2734 /// BuildQualifiedDeclarationNameExpr - Build a C++ qualified
2735 /// declaration name, generally during template instantiation.
2736 /// There's a large number of things which don't need to be done along
2737 /// this path.
2738 ExprResult Sema::BuildQualifiedDeclarationNameExpr(
2739     CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo,
2740     bool IsAddressOfOperand, const Scope *S, TypeSourceInfo **RecoveryTSI) {
2741   DeclContext *DC = computeDeclContext(SS, false);
2742   if (!DC)
2743     return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
2744                                      NameInfo, /*TemplateArgs=*/nullptr);
2745 
2746   if (RequireCompleteDeclContext(SS, DC))
2747     return ExprError();
2748 
2749   LookupResult R(*this, NameInfo, LookupOrdinaryName);
2750   LookupQualifiedName(R, DC);
2751 
2752   if (R.isAmbiguous())
2753     return ExprError();
2754 
2755   if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
2756     return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
2757                                      NameInfo, /*TemplateArgs=*/nullptr);
2758 
2759   if (R.empty()) {
2760     // Don't diagnose problems with invalid record decl, the secondary no_member
2761     // diagnostic during template instantiation is likely bogus, e.g. if a class
2762     // is invalid because it's derived from an invalid base class, then missing
2763     // members were likely supposed to be inherited.
2764     if (const auto *CD = dyn_cast<CXXRecordDecl>(DC))
2765       if (CD->isInvalidDecl())
2766         return ExprError();
2767     Diag(NameInfo.getLoc(), diag::err_no_member)
2768       << NameInfo.getName() << DC << SS.getRange();
2769     return ExprError();
2770   }
2771 
2772   if (const TypeDecl *TD = R.getAsSingle<TypeDecl>()) {
2773     // Diagnose a missing typename if this resolved unambiguously to a type in
2774     // a dependent context.  If we can recover with a type, downgrade this to
2775     // a warning in Microsoft compatibility mode.
2776     unsigned DiagID = diag::err_typename_missing;
2777     if (RecoveryTSI && getLangOpts().MSVCCompat)
2778       DiagID = diag::ext_typename_missing;
2779     SourceLocation Loc = SS.getBeginLoc();
2780     auto D = Diag(Loc, DiagID);
2781     D << SS.getScopeRep() << NameInfo.getName().getAsString()
2782       << SourceRange(Loc, NameInfo.getEndLoc());
2783 
2784     // Don't recover if the caller isn't expecting us to or if we're in a SFINAE
2785     // context.
2786     if (!RecoveryTSI)
2787       return ExprError();
2788 
2789     // Only issue the fixit if we're prepared to recover.
2790     D << FixItHint::CreateInsertion(Loc, "typename ");
2791 
2792     // Recover by pretending this was an elaborated type.
2793     QualType Ty = Context.getTypeDeclType(TD);
2794     TypeLocBuilder TLB;
2795     TLB.pushTypeSpec(Ty).setNameLoc(NameInfo.getLoc());
2796 
2797     QualType ET = getElaboratedType(ETK_None, SS, Ty);
2798     ElaboratedTypeLoc QTL = TLB.push<ElaboratedTypeLoc>(ET);
2799     QTL.setElaboratedKeywordLoc(SourceLocation());
2800     QTL.setQualifierLoc(SS.getWithLocInContext(Context));
2801 
2802     *RecoveryTSI = TLB.getTypeSourceInfo(Context, ET);
2803 
2804     return ExprEmpty();
2805   }
2806 
2807   // Defend against this resolving to an implicit member access. We usually
2808   // won't get here if this might be a legitimate a class member (we end up in
2809   // BuildMemberReferenceExpr instead), but this can be valid if we're forming
2810   // a pointer-to-member or in an unevaluated context in C++11.
2811   if (!R.empty() && (*R.begin())->isCXXClassMember() && !IsAddressOfOperand)
2812     return BuildPossibleImplicitMemberExpr(SS,
2813                                            /*TemplateKWLoc=*/SourceLocation(),
2814                                            R, /*TemplateArgs=*/nullptr, S);
2815 
2816   return BuildDeclarationNameExpr(SS, R, /* ADL */ false);
2817 }
2818 
2819 /// The parser has read a name in, and Sema has detected that we're currently
2820 /// inside an ObjC method. Perform some additional checks and determine if we
2821 /// should form a reference to an ivar.
2822 ///
2823 /// Ideally, most of this would be done by lookup, but there's
2824 /// actually quite a lot of extra work involved.
2825 DeclResult Sema::LookupIvarInObjCMethod(LookupResult &Lookup, Scope *S,
2826                                         IdentifierInfo *II) {
2827   SourceLocation Loc = Lookup.getNameLoc();
2828   ObjCMethodDecl *CurMethod = getCurMethodDecl();
2829 
2830   // Check for error condition which is already reported.
2831   if (!CurMethod)
2832     return DeclResult(true);
2833 
2834   // There are two cases to handle here.  1) scoped lookup could have failed,
2835   // in which case we should look for an ivar.  2) scoped lookup could have
2836   // found a decl, but that decl is outside the current instance method (i.e.
2837   // a global variable).  In these two cases, we do a lookup for an ivar with
2838   // this name, if the lookup sucedes, we replace it our current decl.
2839 
2840   // If we're in a class method, we don't normally want to look for
2841   // ivars.  But if we don't find anything else, and there's an
2842   // ivar, that's an error.
2843   bool IsClassMethod = CurMethod->isClassMethod();
2844 
2845   bool LookForIvars;
2846   if (Lookup.empty())
2847     LookForIvars = true;
2848   else if (IsClassMethod)
2849     LookForIvars = false;
2850   else
2851     LookForIvars = (Lookup.isSingleResult() &&
2852                     Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod());
2853   ObjCInterfaceDecl *IFace = nullptr;
2854   if (LookForIvars) {
2855     IFace = CurMethod->getClassInterface();
2856     ObjCInterfaceDecl *ClassDeclared;
2857     ObjCIvarDecl *IV = nullptr;
2858     if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) {
2859       // Diagnose using an ivar in a class method.
2860       if (IsClassMethod) {
2861         Diag(Loc, diag::err_ivar_use_in_class_method) << IV->getDeclName();
2862         return DeclResult(true);
2863       }
2864 
2865       // Diagnose the use of an ivar outside of the declaring class.
2866       if (IV->getAccessControl() == ObjCIvarDecl::Private &&
2867           !declaresSameEntity(ClassDeclared, IFace) &&
2868           !getLangOpts().DebuggerSupport)
2869         Diag(Loc, diag::err_private_ivar_access) << IV->getDeclName();
2870 
2871       // Success.
2872       return IV;
2873     }
2874   } else if (CurMethod->isInstanceMethod()) {
2875     // We should warn if a local variable hides an ivar.
2876     if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) {
2877       ObjCInterfaceDecl *ClassDeclared;
2878       if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
2879         if (IV->getAccessControl() != ObjCIvarDecl::Private ||
2880             declaresSameEntity(IFace, ClassDeclared))
2881           Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
2882       }
2883     }
2884   } else if (Lookup.isSingleResult() &&
2885              Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) {
2886     // If accessing a stand-alone ivar in a class method, this is an error.
2887     if (const ObjCIvarDecl *IV =
2888             dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl())) {
2889       Diag(Loc, diag::err_ivar_use_in_class_method) << IV->getDeclName();
2890       return DeclResult(true);
2891     }
2892   }
2893 
2894   // Didn't encounter an error, didn't find an ivar.
2895   return DeclResult(false);
2896 }
2897 
2898 ExprResult Sema::BuildIvarRefExpr(Scope *S, SourceLocation Loc,
2899                                   ObjCIvarDecl *IV) {
2900   ObjCMethodDecl *CurMethod = getCurMethodDecl();
2901   assert(CurMethod && CurMethod->isInstanceMethod() &&
2902          "should not reference ivar from this context");
2903 
2904   ObjCInterfaceDecl *IFace = CurMethod->getClassInterface();
2905   assert(IFace && "should not reference ivar from this context");
2906 
2907   // If we're referencing an invalid decl, just return this as a silent
2908   // error node.  The error diagnostic was already emitted on the decl.
2909   if (IV->isInvalidDecl())
2910     return ExprError();
2911 
2912   // Check if referencing a field with __attribute__((deprecated)).
2913   if (DiagnoseUseOfDecl(IV, Loc))
2914     return ExprError();
2915 
2916   // FIXME: This should use a new expr for a direct reference, don't
2917   // turn this into Self->ivar, just return a BareIVarExpr or something.
2918   IdentifierInfo &II = Context.Idents.get("self");
2919   UnqualifiedId SelfName;
2920   SelfName.setImplicitSelfParam(&II);
2921   CXXScopeSpec SelfScopeSpec;
2922   SourceLocation TemplateKWLoc;
2923   ExprResult SelfExpr =
2924       ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc, SelfName,
2925                         /*HasTrailingLParen=*/false,
2926                         /*IsAddressOfOperand=*/false);
2927   if (SelfExpr.isInvalid())
2928     return ExprError();
2929 
2930   SelfExpr = DefaultLvalueConversion(SelfExpr.get());
2931   if (SelfExpr.isInvalid())
2932     return ExprError();
2933 
2934   MarkAnyDeclReferenced(Loc, IV, true);
2935 
2936   ObjCMethodFamily MF = CurMethod->getMethodFamily();
2937   if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize &&
2938       !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV))
2939     Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName();
2940 
2941   ObjCIvarRefExpr *Result = new (Context)
2942       ObjCIvarRefExpr(IV, IV->getUsageType(SelfExpr.get()->getType()), Loc,
2943                       IV->getLocation(), SelfExpr.get(), true, true);
2944 
2945   if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) {
2946     if (!isUnevaluatedContext() &&
2947         !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc))
2948       getCurFunction()->recordUseOfWeak(Result);
2949   }
2950   if (getLangOpts().ObjCAutoRefCount)
2951     if (const BlockDecl *BD = CurContext->getInnermostBlockDecl())
2952       ImplicitlyRetainedSelfLocs.push_back({Loc, BD});
2953 
2954   return Result;
2955 }
2956 
2957 /// The parser has read a name in, and Sema has detected that we're currently
2958 /// inside an ObjC method. Perform some additional checks and determine if we
2959 /// should form a reference to an ivar. If so, build an expression referencing
2960 /// that ivar.
2961 ExprResult
2962 Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
2963                          IdentifierInfo *II, bool AllowBuiltinCreation) {
2964   // FIXME: Integrate this lookup step into LookupParsedName.
2965   DeclResult Ivar = LookupIvarInObjCMethod(Lookup, S, II);
2966   if (Ivar.isInvalid())
2967     return ExprError();
2968   if (Ivar.isUsable())
2969     return BuildIvarRefExpr(S, Lookup.getNameLoc(),
2970                             cast<ObjCIvarDecl>(Ivar.get()));
2971 
2972   if (Lookup.empty() && II && AllowBuiltinCreation)
2973     LookupBuiltin(Lookup);
2974 
2975   // Sentinel value saying that we didn't do anything special.
2976   return ExprResult(false);
2977 }
2978 
2979 /// Cast a base object to a member's actual type.
2980 ///
2981 /// There are two relevant checks:
2982 ///
2983 /// C++ [class.access.base]p7:
2984 ///
2985 ///   If a class member access operator [...] is used to access a non-static
2986 ///   data member or non-static member function, the reference is ill-formed if
2987 ///   the left operand [...] cannot be implicitly converted to a pointer to the
2988 ///   naming class of the right operand.
2989 ///
2990 /// C++ [expr.ref]p7:
2991 ///
2992 ///   If E2 is a non-static data member or a non-static member function, the
2993 ///   program is ill-formed if the class of which E2 is directly a member is an
2994 ///   ambiguous base (11.8) of the naming class (11.9.3) of E2.
2995 ///
2996 /// Note that the latter check does not consider access; the access of the
2997 /// "real" base class is checked as appropriate when checking the access of the
2998 /// member name.
2999 ExprResult
3000 Sema::PerformObjectMemberConversion(Expr *From,
3001                                     NestedNameSpecifier *Qualifier,
3002                                     NamedDecl *FoundDecl,
3003                                     NamedDecl *Member) {
3004   CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext());
3005   if (!RD)
3006     return From;
3007 
3008   QualType DestRecordType;
3009   QualType DestType;
3010   QualType FromRecordType;
3011   QualType FromType = From->getType();
3012   bool PointerConversions = false;
3013   if (isa<FieldDecl>(Member)) {
3014     DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD));
3015     auto FromPtrType = FromType->getAs<PointerType>();
3016     DestRecordType = Context.getAddrSpaceQualType(
3017         DestRecordType, FromPtrType
3018                             ? FromType->getPointeeType().getAddressSpace()
3019                             : FromType.getAddressSpace());
3020 
3021     if (FromPtrType) {
3022       DestType = Context.getPointerType(DestRecordType);
3023       FromRecordType = FromPtrType->getPointeeType();
3024       PointerConversions = true;
3025     } else {
3026       DestType = DestRecordType;
3027       FromRecordType = FromType;
3028     }
3029   } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) {
3030     if (Method->isStatic())
3031       return From;
3032 
3033     DestType = Method->getThisType();
3034     DestRecordType = DestType->getPointeeType();
3035 
3036     if (FromType->getAs<PointerType>()) {
3037       FromRecordType = FromType->getPointeeType();
3038       PointerConversions = true;
3039     } else {
3040       FromRecordType = FromType;
3041       DestType = DestRecordType;
3042     }
3043 
3044     LangAS FromAS = FromRecordType.getAddressSpace();
3045     LangAS DestAS = DestRecordType.getAddressSpace();
3046     if (FromAS != DestAS) {
3047       QualType FromRecordTypeWithoutAS =
3048           Context.removeAddrSpaceQualType(FromRecordType);
3049       QualType FromTypeWithDestAS =
3050           Context.getAddrSpaceQualType(FromRecordTypeWithoutAS, DestAS);
3051       if (PointerConversions)
3052         FromTypeWithDestAS = Context.getPointerType(FromTypeWithDestAS);
3053       From = ImpCastExprToType(From, FromTypeWithDestAS,
3054                                CK_AddressSpaceConversion, From->getValueKind())
3055                  .get();
3056     }
3057   } else {
3058     // No conversion necessary.
3059     return From;
3060   }
3061 
3062   if (DestType->isDependentType() || FromType->isDependentType())
3063     return From;
3064 
3065   // If the unqualified types are the same, no conversion is necessary.
3066   if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
3067     return From;
3068 
3069   SourceRange FromRange = From->getSourceRange();
3070   SourceLocation FromLoc = FromRange.getBegin();
3071 
3072   ExprValueKind VK = From->getValueKind();
3073 
3074   // C++ [class.member.lookup]p8:
3075   //   [...] Ambiguities can often be resolved by qualifying a name with its
3076   //   class name.
3077   //
3078   // If the member was a qualified name and the qualified referred to a
3079   // specific base subobject type, we'll cast to that intermediate type
3080   // first and then to the object in which the member is declared. That allows
3081   // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as:
3082   //
3083   //   class Base { public: int x; };
3084   //   class Derived1 : public Base { };
3085   //   class Derived2 : public Base { };
3086   //   class VeryDerived : public Derived1, public Derived2 { void f(); };
3087   //
3088   //   void VeryDerived::f() {
3089   //     x = 17; // error: ambiguous base subobjects
3090   //     Derived1::x = 17; // okay, pick the Base subobject of Derived1
3091   //   }
3092   if (Qualifier && Qualifier->getAsType()) {
3093     QualType QType = QualType(Qualifier->getAsType(), 0);
3094     assert(QType->isRecordType() && "lookup done with non-record type");
3095 
3096     QualType QRecordType = QualType(QType->castAs<RecordType>(), 0);
3097 
3098     // In C++98, the qualifier type doesn't actually have to be a base
3099     // type of the object type, in which case we just ignore it.
3100     // Otherwise build the appropriate casts.
3101     if (IsDerivedFrom(FromLoc, FromRecordType, QRecordType)) {
3102       CXXCastPath BasePath;
3103       if (CheckDerivedToBaseConversion(FromRecordType, QRecordType,
3104                                        FromLoc, FromRange, &BasePath))
3105         return ExprError();
3106 
3107       if (PointerConversions)
3108         QType = Context.getPointerType(QType);
3109       From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase,
3110                                VK, &BasePath).get();
3111 
3112       FromType = QType;
3113       FromRecordType = QRecordType;
3114 
3115       // If the qualifier type was the same as the destination type,
3116       // we're done.
3117       if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
3118         return From;
3119     }
3120   }
3121 
3122   CXXCastPath BasePath;
3123   if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType,
3124                                    FromLoc, FromRange, &BasePath,
3125                                    /*IgnoreAccess=*/true))
3126     return ExprError();
3127 
3128   return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase,
3129                            VK, &BasePath);
3130 }
3131 
3132 bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS,
3133                                       const LookupResult &R,
3134                                       bool HasTrailingLParen) {
3135   // Only when used directly as the postfix-expression of a call.
3136   if (!HasTrailingLParen)
3137     return false;
3138 
3139   // Never if a scope specifier was provided.
3140   if (SS.isSet())
3141     return false;
3142 
3143   // Only in C++ or ObjC++.
3144   if (!getLangOpts().CPlusPlus)
3145     return false;
3146 
3147   // Turn off ADL when we find certain kinds of declarations during
3148   // normal lookup:
3149   for (NamedDecl *D : R) {
3150     // C++0x [basic.lookup.argdep]p3:
3151     //     -- a declaration of a class member
3152     // Since using decls preserve this property, we check this on the
3153     // original decl.
3154     if (D->isCXXClassMember())
3155       return false;
3156 
3157     // C++0x [basic.lookup.argdep]p3:
3158     //     -- a block-scope function declaration that is not a
3159     //        using-declaration
3160     // NOTE: we also trigger this for function templates (in fact, we
3161     // don't check the decl type at all, since all other decl types
3162     // turn off ADL anyway).
3163     if (isa<UsingShadowDecl>(D))
3164       D = cast<UsingShadowDecl>(D)->getTargetDecl();
3165     else if (D->getLexicalDeclContext()->isFunctionOrMethod())
3166       return false;
3167 
3168     // C++0x [basic.lookup.argdep]p3:
3169     //     -- a declaration that is neither a function or a function
3170     //        template
3171     // And also for builtin functions.
3172     if (isa<FunctionDecl>(D)) {
3173       FunctionDecl *FDecl = cast<FunctionDecl>(D);
3174 
3175       // But also builtin functions.
3176       if (FDecl->getBuiltinID() && FDecl->isImplicit())
3177         return false;
3178     } else if (!isa<FunctionTemplateDecl>(D))
3179       return false;
3180   }
3181 
3182   return true;
3183 }
3184 
3185 
3186 /// Diagnoses obvious problems with the use of the given declaration
3187 /// as an expression.  This is only actually called for lookups that
3188 /// were not overloaded, and it doesn't promise that the declaration
3189 /// will in fact be used.
3190 static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) {
3191   if (D->isInvalidDecl())
3192     return true;
3193 
3194   if (isa<TypedefNameDecl>(D)) {
3195     S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName();
3196     return true;
3197   }
3198 
3199   if (isa<ObjCInterfaceDecl>(D)) {
3200     S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName();
3201     return true;
3202   }
3203 
3204   if (isa<NamespaceDecl>(D)) {
3205     S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName();
3206     return true;
3207   }
3208 
3209   return false;
3210 }
3211 
3212 // Certain multiversion types should be treated as overloaded even when there is
3213 // only one result.
3214 static bool ShouldLookupResultBeMultiVersionOverload(const LookupResult &R) {
3215   assert(R.isSingleResult() && "Expected only a single result");
3216   const auto *FD = dyn_cast<FunctionDecl>(R.getFoundDecl());
3217   return FD &&
3218          (FD->isCPUDispatchMultiVersion() || FD->isCPUSpecificMultiVersion());
3219 }
3220 
3221 ExprResult Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
3222                                           LookupResult &R, bool NeedsADL,
3223                                           bool AcceptInvalidDecl) {
3224   // If this is a single, fully-resolved result and we don't need ADL,
3225   // just build an ordinary singleton decl ref.
3226   if (!NeedsADL && R.isSingleResult() &&
3227       !R.getAsSingle<FunctionTemplateDecl>() &&
3228       !ShouldLookupResultBeMultiVersionOverload(R))
3229     return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), R.getFoundDecl(),
3230                                     R.getRepresentativeDecl(), nullptr,
3231                                     AcceptInvalidDecl);
3232 
3233   // We only need to check the declaration if there's exactly one
3234   // result, because in the overloaded case the results can only be
3235   // functions and function templates.
3236   if (R.isSingleResult() && !ShouldLookupResultBeMultiVersionOverload(R) &&
3237       CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl()))
3238     return ExprError();
3239 
3240   // Otherwise, just build an unresolved lookup expression.  Suppress
3241   // any lookup-related diagnostics; we'll hash these out later, when
3242   // we've picked a target.
3243   R.suppressDiagnostics();
3244 
3245   UnresolvedLookupExpr *ULE
3246     = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
3247                                    SS.getWithLocInContext(Context),
3248                                    R.getLookupNameInfo(),
3249                                    NeedsADL, R.isOverloadedResult(),
3250                                    R.begin(), R.end());
3251 
3252   return ULE;
3253 }
3254 
3255 static void diagnoseUncapturableValueReference(Sema &S, SourceLocation loc,
3256                                                ValueDecl *var);
3257 
3258 /// Complete semantic analysis for a reference to the given declaration.
3259 ExprResult Sema::BuildDeclarationNameExpr(
3260     const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, NamedDecl *D,
3261     NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs,
3262     bool AcceptInvalidDecl) {
3263   assert(D && "Cannot refer to a NULL declaration");
3264   assert(!isa<FunctionTemplateDecl>(D) &&
3265          "Cannot refer unambiguously to a function template");
3266 
3267   SourceLocation Loc = NameInfo.getLoc();
3268   if (CheckDeclInExpr(*this, Loc, D)) {
3269     // Recovery from invalid cases (e.g. D is an invalid Decl).
3270     // We use the dependent type for the RecoveryExpr to prevent bogus follow-up
3271     // diagnostics, as invalid decls use int as a fallback type.
3272     return CreateRecoveryExpr(NameInfo.getBeginLoc(), NameInfo.getEndLoc(), {});
3273   }
3274 
3275   if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) {
3276     // Specifically diagnose references to class templates that are missing
3277     // a template argument list.
3278     diagnoseMissingTemplateArguments(TemplateName(Template), Loc);
3279     return ExprError();
3280   }
3281 
3282   // Make sure that we're referring to a value.
3283   if (!isa<ValueDecl, UnresolvedUsingIfExistsDecl>(D)) {
3284     Diag(Loc, diag::err_ref_non_value) << D << SS.getRange();
3285     Diag(D->getLocation(), diag::note_declared_at);
3286     return ExprError();
3287   }
3288 
3289   // Check whether this declaration can be used. Note that we suppress
3290   // this check when we're going to perform argument-dependent lookup
3291   // on this function name, because this might not be the function
3292   // that overload resolution actually selects.
3293   if (DiagnoseUseOfDecl(D, Loc))
3294     return ExprError();
3295 
3296   auto *VD = cast<ValueDecl>(D);
3297 
3298   // Only create DeclRefExpr's for valid Decl's.
3299   if (VD->isInvalidDecl() && !AcceptInvalidDecl)
3300     return ExprError();
3301 
3302   // Handle members of anonymous structs and unions.  If we got here,
3303   // and the reference is to a class member indirect field, then this
3304   // must be the subject of a pointer-to-member expression.
3305   if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD))
3306     if (!indirectField->isCXXClassMember())
3307       return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(),
3308                                                       indirectField);
3309 
3310   QualType type = VD->getType();
3311   if (type.isNull())
3312     return ExprError();
3313   ExprValueKind valueKind = VK_PRValue;
3314 
3315   // In 'T ...V;', the type of the declaration 'V' is 'T...', but the type of
3316   // a reference to 'V' is simply (unexpanded) 'T'. The type, like the value,
3317   // is expanded by some outer '...' in the context of the use.
3318   type = type.getNonPackExpansionType();
3319 
3320   switch (D->getKind()) {
3321     // Ignore all the non-ValueDecl kinds.
3322 #define ABSTRACT_DECL(kind)
3323 #define VALUE(type, base)
3324 #define DECL(type, base) case Decl::type:
3325 #include "clang/AST/DeclNodes.inc"
3326     llvm_unreachable("invalid value decl kind");
3327 
3328   // These shouldn't make it here.
3329   case Decl::ObjCAtDefsField:
3330     llvm_unreachable("forming non-member reference to ivar?");
3331 
3332   // Enum constants are always r-values and never references.
3333   // Unresolved using declarations are dependent.
3334   case Decl::EnumConstant:
3335   case Decl::UnresolvedUsingValue:
3336   case Decl::OMPDeclareReduction:
3337   case Decl::OMPDeclareMapper:
3338     valueKind = VK_PRValue;
3339     break;
3340 
3341   // Fields and indirect fields that got here must be for
3342   // pointer-to-member expressions; we just call them l-values for
3343   // internal consistency, because this subexpression doesn't really
3344   // exist in the high-level semantics.
3345   case Decl::Field:
3346   case Decl::IndirectField:
3347   case Decl::ObjCIvar:
3348     assert(getLangOpts().CPlusPlus && "building reference to field in C?");
3349 
3350     // These can't have reference type in well-formed programs, but
3351     // for internal consistency we do this anyway.
3352     type = type.getNonReferenceType();
3353     valueKind = VK_LValue;
3354     break;
3355 
3356   // Non-type template parameters are either l-values or r-values
3357   // depending on the type.
3358   case Decl::NonTypeTemplateParm: {
3359     if (const ReferenceType *reftype = type->getAs<ReferenceType>()) {
3360       type = reftype->getPointeeType();
3361       valueKind = VK_LValue; // even if the parameter is an r-value reference
3362       break;
3363     }
3364 
3365     // [expr.prim.id.unqual]p2:
3366     //   If the entity is a template parameter object for a template
3367     //   parameter of type T, the type of the expression is const T.
3368     //   [...] The expression is an lvalue if the entity is a [...] template
3369     //   parameter object.
3370     if (type->isRecordType()) {
3371       type = type.getUnqualifiedType().withConst();
3372       valueKind = VK_LValue;
3373       break;
3374     }
3375 
3376     // For non-references, we need to strip qualifiers just in case
3377     // the template parameter was declared as 'const int' or whatever.
3378     valueKind = VK_PRValue;
3379     type = type.getUnqualifiedType();
3380     break;
3381   }
3382 
3383   case Decl::Var:
3384   case Decl::VarTemplateSpecialization:
3385   case Decl::VarTemplatePartialSpecialization:
3386   case Decl::Decomposition:
3387   case Decl::OMPCapturedExpr:
3388     // In C, "extern void blah;" is valid and is an r-value.
3389     if (!getLangOpts().CPlusPlus && !type.hasQualifiers() &&
3390         type->isVoidType()) {
3391       valueKind = VK_PRValue;
3392       break;
3393     }
3394     LLVM_FALLTHROUGH;
3395 
3396   case Decl::ImplicitParam:
3397   case Decl::ParmVar: {
3398     // These are always l-values.
3399     valueKind = VK_LValue;
3400     type = type.getNonReferenceType();
3401 
3402     // FIXME: Does the addition of const really only apply in
3403     // potentially-evaluated contexts? Since the variable isn't actually
3404     // captured in an unevaluated context, it seems that the answer is no.
3405     if (!isUnevaluatedContext()) {
3406       QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc);
3407       if (!CapturedType.isNull())
3408         type = CapturedType;
3409     }
3410 
3411     break;
3412   }
3413 
3414   case Decl::Binding: {
3415     // These are always lvalues.
3416     valueKind = VK_LValue;
3417     type = type.getNonReferenceType();
3418     // FIXME: Support lambda-capture of BindingDecls, once CWG actually
3419     // decides how that's supposed to work.
3420     auto *BD = cast<BindingDecl>(VD);
3421     if (BD->getDeclContext() != CurContext) {
3422       auto *DD = dyn_cast_or_null<VarDecl>(BD->getDecomposedDecl());
3423       if (DD && DD->hasLocalStorage())
3424         diagnoseUncapturableValueReference(*this, Loc, BD);
3425     }
3426     break;
3427   }
3428 
3429   case Decl::Function: {
3430     if (unsigned BID = cast<FunctionDecl>(VD)->getBuiltinID()) {
3431       if (!Context.BuiltinInfo.isDirectlyAddressable(BID)) {
3432         type = Context.BuiltinFnTy;
3433         valueKind = VK_PRValue;
3434         break;
3435       }
3436     }
3437 
3438     const FunctionType *fty = type->castAs<FunctionType>();
3439 
3440     // If we're referring to a function with an __unknown_anytype
3441     // result type, make the entire expression __unknown_anytype.
3442     if (fty->getReturnType() == Context.UnknownAnyTy) {
3443       type = Context.UnknownAnyTy;
3444       valueKind = VK_PRValue;
3445       break;
3446     }
3447 
3448     // Functions are l-values in C++.
3449     if (getLangOpts().CPlusPlus) {
3450       valueKind = VK_LValue;
3451       break;
3452     }
3453 
3454     // C99 DR 316 says that, if a function type comes from a
3455     // function definition (without a prototype), that type is only
3456     // used for checking compatibility. Therefore, when referencing
3457     // the function, we pretend that we don't have the full function
3458     // type.
3459     if (!cast<FunctionDecl>(VD)->hasPrototype() && isa<FunctionProtoType>(fty))
3460       type = Context.getFunctionNoProtoType(fty->getReturnType(),
3461                                             fty->getExtInfo());
3462 
3463     // Functions are r-values in C.
3464     valueKind = VK_PRValue;
3465     break;
3466   }
3467 
3468   case Decl::CXXDeductionGuide:
3469     llvm_unreachable("building reference to deduction guide");
3470 
3471   case Decl::MSProperty:
3472   case Decl::MSGuid:
3473   case Decl::TemplateParamObject:
3474     // FIXME: Should MSGuidDecl and template parameter objects be subject to
3475     // capture in OpenMP, or duplicated between host and device?
3476     valueKind = VK_LValue;
3477     break;
3478 
3479   case Decl::UnnamedGlobalConstant:
3480     valueKind = VK_LValue;
3481     break;
3482 
3483   case Decl::CXXMethod:
3484     // If we're referring to a method with an __unknown_anytype
3485     // result type, make the entire expression __unknown_anytype.
3486     // This should only be possible with a type written directly.
3487     if (const FunctionProtoType *proto =
3488             dyn_cast<FunctionProtoType>(VD->getType()))
3489       if (proto->getReturnType() == Context.UnknownAnyTy) {
3490         type = Context.UnknownAnyTy;
3491         valueKind = VK_PRValue;
3492         break;
3493       }
3494 
3495     // C++ methods are l-values if static, r-values if non-static.
3496     if (cast<CXXMethodDecl>(VD)->isStatic()) {
3497       valueKind = VK_LValue;
3498       break;
3499     }
3500     LLVM_FALLTHROUGH;
3501 
3502   case Decl::CXXConversion:
3503   case Decl::CXXDestructor:
3504   case Decl::CXXConstructor:
3505     valueKind = VK_PRValue;
3506     break;
3507   }
3508 
3509   return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD,
3510                           /*FIXME: TemplateKWLoc*/ SourceLocation(),
3511                           TemplateArgs);
3512 }
3513 
3514 static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source,
3515                                     SmallString<32> &Target) {
3516   Target.resize(CharByteWidth * (Source.size() + 1));
3517   char *ResultPtr = &Target[0];
3518   const llvm::UTF8 *ErrorPtr;
3519   bool success =
3520       llvm::ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr);
3521   (void)success;
3522   assert(success);
3523   Target.resize(ResultPtr - &Target[0]);
3524 }
3525 
3526 ExprResult Sema::BuildPredefinedExpr(SourceLocation Loc,
3527                                      PredefinedExpr::IdentKind IK) {
3528   // Pick the current block, lambda, captured statement or function.
3529   Decl *currentDecl = nullptr;
3530   if (const BlockScopeInfo *BSI = getCurBlock())
3531     currentDecl = BSI->TheDecl;
3532   else if (const LambdaScopeInfo *LSI = getCurLambda())
3533     currentDecl = LSI->CallOperator;
3534   else if (const CapturedRegionScopeInfo *CSI = getCurCapturedRegion())
3535     currentDecl = CSI->TheCapturedDecl;
3536   else
3537     currentDecl = getCurFunctionOrMethodDecl();
3538 
3539   if (!currentDecl) {
3540     Diag(Loc, diag::ext_predef_outside_function);
3541     currentDecl = Context.getTranslationUnitDecl();
3542   }
3543 
3544   QualType ResTy;
3545   StringLiteral *SL = nullptr;
3546   if (cast<DeclContext>(currentDecl)->isDependentContext())
3547     ResTy = Context.DependentTy;
3548   else {
3549     // Pre-defined identifiers are of type char[x], where x is the length of
3550     // the string.
3551     auto Str = PredefinedExpr::ComputeName(IK, currentDecl);
3552     unsigned Length = Str.length();
3553 
3554     llvm::APInt LengthI(32, Length + 1);
3555     if (IK == PredefinedExpr::LFunction || IK == PredefinedExpr::LFuncSig) {
3556       ResTy =
3557           Context.adjustStringLiteralBaseType(Context.WideCharTy.withConst());
3558       SmallString<32> RawChars;
3559       ConvertUTF8ToWideString(Context.getTypeSizeInChars(ResTy).getQuantity(),
3560                               Str, RawChars);
3561       ResTy = Context.getConstantArrayType(ResTy, LengthI, nullptr,
3562                                            ArrayType::Normal,
3563                                            /*IndexTypeQuals*/ 0);
3564       SL = StringLiteral::Create(Context, RawChars, StringLiteral::Wide,
3565                                  /*Pascal*/ false, ResTy, Loc);
3566     } else {
3567       ResTy = Context.adjustStringLiteralBaseType(Context.CharTy.withConst());
3568       ResTy = Context.getConstantArrayType(ResTy, LengthI, nullptr,
3569                                            ArrayType::Normal,
3570                                            /*IndexTypeQuals*/ 0);
3571       SL = StringLiteral::Create(Context, Str, StringLiteral::Ordinary,
3572                                  /*Pascal*/ false, ResTy, Loc);
3573     }
3574   }
3575 
3576   return PredefinedExpr::Create(Context, Loc, ResTy, IK, SL);
3577 }
3578 
3579 ExprResult Sema::BuildSYCLUniqueStableNameExpr(SourceLocation OpLoc,
3580                                                SourceLocation LParen,
3581                                                SourceLocation RParen,
3582                                                TypeSourceInfo *TSI) {
3583   return SYCLUniqueStableNameExpr::Create(Context, OpLoc, LParen, RParen, TSI);
3584 }
3585 
3586 ExprResult Sema::ActOnSYCLUniqueStableNameExpr(SourceLocation OpLoc,
3587                                                SourceLocation LParen,
3588                                                SourceLocation RParen,
3589                                                ParsedType ParsedTy) {
3590   TypeSourceInfo *TSI = nullptr;
3591   QualType Ty = GetTypeFromParser(ParsedTy, &TSI);
3592 
3593   if (Ty.isNull())
3594     return ExprError();
3595   if (!TSI)
3596     TSI = Context.getTrivialTypeSourceInfo(Ty, LParen);
3597 
3598   return BuildSYCLUniqueStableNameExpr(OpLoc, LParen, RParen, TSI);
3599 }
3600 
3601 ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) {
3602   PredefinedExpr::IdentKind IK;
3603 
3604   switch (Kind) {
3605   default: llvm_unreachable("Unknown simple primary expr!");
3606   case tok::kw___func__: IK = PredefinedExpr::Func; break; // [C99 6.4.2.2]
3607   case tok::kw___FUNCTION__: IK = PredefinedExpr::Function; break;
3608   case tok::kw___FUNCDNAME__: IK = PredefinedExpr::FuncDName; break; // [MS]
3609   case tok::kw___FUNCSIG__: IK = PredefinedExpr::FuncSig; break; // [MS]
3610   case tok::kw_L__FUNCTION__: IK = PredefinedExpr::LFunction; break; // [MS]
3611   case tok::kw_L__FUNCSIG__: IK = PredefinedExpr::LFuncSig; break; // [MS]
3612   case tok::kw___PRETTY_FUNCTION__: IK = PredefinedExpr::PrettyFunction; break;
3613   }
3614 
3615   return BuildPredefinedExpr(Loc, IK);
3616 }
3617 
3618 ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) {
3619   SmallString<16> CharBuffer;
3620   bool Invalid = false;
3621   StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid);
3622   if (Invalid)
3623     return ExprError();
3624 
3625   CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(),
3626                             PP, Tok.getKind());
3627   if (Literal.hadError())
3628     return ExprError();
3629 
3630   QualType Ty;
3631   if (Literal.isWide())
3632     Ty = Context.WideCharTy; // L'x' -> wchar_t in C and C++.
3633   else if (Literal.isUTF8() && getLangOpts().C2x)
3634     Ty = Context.UnsignedCharTy; // u8'x' -> unsigned char in C2x
3635   else if (Literal.isUTF8() && getLangOpts().Char8)
3636     Ty = Context.Char8Ty; // u8'x' -> char8_t when it exists.
3637   else if (Literal.isUTF16())
3638     Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11.
3639   else if (Literal.isUTF32())
3640     Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11.
3641   else if (!getLangOpts().CPlusPlus || Literal.isMultiChar())
3642     Ty = Context.IntTy;   // 'x' -> int in C, 'wxyz' -> int in C++.
3643   else
3644     Ty = Context.CharTy; // 'x' -> char in C++;
3645                          // u8'x' -> char in C11-C17 and in C++ without char8_t.
3646 
3647   CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii;
3648   if (Literal.isWide())
3649     Kind = CharacterLiteral::Wide;
3650   else if (Literal.isUTF16())
3651     Kind = CharacterLiteral::UTF16;
3652   else if (Literal.isUTF32())
3653     Kind = CharacterLiteral::UTF32;
3654   else if (Literal.isUTF8())
3655     Kind = CharacterLiteral::UTF8;
3656 
3657   Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty,
3658                                              Tok.getLocation());
3659 
3660   if (Literal.getUDSuffix().empty())
3661     return Lit;
3662 
3663   // We're building a user-defined literal.
3664   IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
3665   SourceLocation UDSuffixLoc =
3666     getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
3667 
3668   // Make sure we're allowed user-defined literals here.
3669   if (!UDLScope)
3670     return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl));
3671 
3672   // C++11 [lex.ext]p6: The literal L is treated as a call of the form
3673   //   operator "" X (ch)
3674   return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc,
3675                                         Lit, Tok.getLocation());
3676 }
3677 
3678 ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) {
3679   unsigned IntSize = Context.getTargetInfo().getIntWidth();
3680   return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val),
3681                                 Context.IntTy, Loc);
3682 }
3683 
3684 static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal,
3685                                   QualType Ty, SourceLocation Loc) {
3686   const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty);
3687 
3688   using llvm::APFloat;
3689   APFloat Val(Format);
3690 
3691   APFloat::opStatus result = Literal.GetFloatValue(Val);
3692 
3693   // Overflow is always an error, but underflow is only an error if
3694   // we underflowed to zero (APFloat reports denormals as underflow).
3695   if ((result & APFloat::opOverflow) ||
3696       ((result & APFloat::opUnderflow) && Val.isZero())) {
3697     unsigned diagnostic;
3698     SmallString<20> buffer;
3699     if (result & APFloat::opOverflow) {
3700       diagnostic = diag::warn_float_overflow;
3701       APFloat::getLargest(Format).toString(buffer);
3702     } else {
3703       diagnostic = diag::warn_float_underflow;
3704       APFloat::getSmallest(Format).toString(buffer);
3705     }
3706 
3707     S.Diag(Loc, diagnostic)
3708       << Ty
3709       << StringRef(buffer.data(), buffer.size());
3710   }
3711 
3712   bool isExact = (result == APFloat::opOK);
3713   return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc);
3714 }
3715 
3716 bool Sema::CheckLoopHintExpr(Expr *E, SourceLocation Loc) {
3717   assert(E && "Invalid expression");
3718 
3719   if (E->isValueDependent())
3720     return false;
3721 
3722   QualType QT = E->getType();
3723   if (!QT->isIntegerType() || QT->isBooleanType() || QT->isCharType()) {
3724     Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_type) << QT;
3725     return true;
3726   }
3727 
3728   llvm::APSInt ValueAPS;
3729   ExprResult R = VerifyIntegerConstantExpression(E, &ValueAPS);
3730 
3731   if (R.isInvalid())
3732     return true;
3733 
3734   bool ValueIsPositive = ValueAPS.isStrictlyPositive();
3735   if (!ValueIsPositive || ValueAPS.getActiveBits() > 31) {
3736     Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_value)
3737         << toString(ValueAPS, 10) << ValueIsPositive;
3738     return true;
3739   }
3740 
3741   return false;
3742 }
3743 
3744 ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) {
3745   // Fast path for a single digit (which is quite common).  A single digit
3746   // cannot have a trigraph, escaped newline, radix prefix, or suffix.
3747   if (Tok.getLength() == 1) {
3748     const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
3749     return ActOnIntegerConstant(Tok.getLocation(), Val-'0');
3750   }
3751 
3752   SmallString<128> SpellingBuffer;
3753   // NumericLiteralParser wants to overread by one character.  Add padding to
3754   // the buffer in case the token is copied to the buffer.  If getSpelling()
3755   // returns a StringRef to the memory buffer, it should have a null char at
3756   // the EOF, so it is also safe.
3757   SpellingBuffer.resize(Tok.getLength() + 1);
3758 
3759   // Get the spelling of the token, which eliminates trigraphs, etc.
3760   bool Invalid = false;
3761   StringRef TokSpelling = PP.getSpelling(Tok, SpellingBuffer, &Invalid);
3762   if (Invalid)
3763     return ExprError();
3764 
3765   NumericLiteralParser Literal(TokSpelling, Tok.getLocation(),
3766                                PP.getSourceManager(), PP.getLangOpts(),
3767                                PP.getTargetInfo(), PP.getDiagnostics());
3768   if (Literal.hadError)
3769     return ExprError();
3770 
3771   if (Literal.hasUDSuffix()) {
3772     // We're building a user-defined literal.
3773     IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
3774     SourceLocation UDSuffixLoc =
3775       getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
3776 
3777     // Make sure we're allowed user-defined literals here.
3778     if (!UDLScope)
3779       return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl));
3780 
3781     QualType CookedTy;
3782     if (Literal.isFloatingLiteral()) {
3783       // C++11 [lex.ext]p4: If S contains a literal operator with parameter type
3784       // long double, the literal is treated as a call of the form
3785       //   operator "" X (f L)
3786       CookedTy = Context.LongDoubleTy;
3787     } else {
3788       // C++11 [lex.ext]p3: If S contains a literal operator with parameter type
3789       // unsigned long long, the literal is treated as a call of the form
3790       //   operator "" X (n ULL)
3791       CookedTy = Context.UnsignedLongLongTy;
3792     }
3793 
3794     DeclarationName OpName =
3795       Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
3796     DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
3797     OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
3798 
3799     SourceLocation TokLoc = Tok.getLocation();
3800 
3801     // Perform literal operator lookup to determine if we're building a raw
3802     // literal or a cooked one.
3803     LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
3804     switch (LookupLiteralOperator(UDLScope, R, CookedTy,
3805                                   /*AllowRaw*/ true, /*AllowTemplate*/ true,
3806                                   /*AllowStringTemplatePack*/ false,
3807                                   /*DiagnoseMissing*/ !Literal.isImaginary)) {
3808     case LOLR_ErrorNoDiagnostic:
3809       // Lookup failure for imaginary constants isn't fatal, there's still the
3810       // GNU extension producing _Complex types.
3811       break;
3812     case LOLR_Error:
3813       return ExprError();
3814     case LOLR_Cooked: {
3815       Expr *Lit;
3816       if (Literal.isFloatingLiteral()) {
3817         Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation());
3818       } else {
3819         llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0);
3820         if (Literal.GetIntegerValue(ResultVal))
3821           Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
3822               << /* Unsigned */ 1;
3823         Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy,
3824                                      Tok.getLocation());
3825       }
3826       return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc);
3827     }
3828 
3829     case LOLR_Raw: {
3830       // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the
3831       // literal is treated as a call of the form
3832       //   operator "" X ("n")
3833       unsigned Length = Literal.getUDSuffixOffset();
3834       QualType StrTy = Context.getConstantArrayType(
3835           Context.adjustStringLiteralBaseType(Context.CharTy.withConst()),
3836           llvm::APInt(32, Length + 1), nullptr, ArrayType::Normal, 0);
3837       Expr *Lit =
3838           StringLiteral::Create(Context, StringRef(TokSpelling.data(), Length),
3839                                 StringLiteral::Ordinary,
3840                                 /*Pascal*/ false, StrTy, &TokLoc, 1);
3841       return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc);
3842     }
3843 
3844     case LOLR_Template: {
3845       // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator
3846       // template), L is treated as a call fo the form
3847       //   operator "" X <'c1', 'c2', ... 'ck'>()
3848       // where n is the source character sequence c1 c2 ... ck.
3849       TemplateArgumentListInfo ExplicitArgs;
3850       unsigned CharBits = Context.getIntWidth(Context.CharTy);
3851       bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType();
3852       llvm::APSInt Value(CharBits, CharIsUnsigned);
3853       for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) {
3854         Value = TokSpelling[I];
3855         TemplateArgument Arg(Context, Value, Context.CharTy);
3856         TemplateArgumentLocInfo ArgInfo;
3857         ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
3858       }
3859       return BuildLiteralOperatorCall(R, OpNameInfo, None, TokLoc,
3860                                       &ExplicitArgs);
3861     }
3862     case LOLR_StringTemplatePack:
3863       llvm_unreachable("unexpected literal operator lookup result");
3864     }
3865   }
3866 
3867   Expr *Res;
3868 
3869   if (Literal.isFixedPointLiteral()) {
3870     QualType Ty;
3871 
3872     if (Literal.isAccum) {
3873       if (Literal.isHalf) {
3874         Ty = Context.ShortAccumTy;
3875       } else if (Literal.isLong) {
3876         Ty = Context.LongAccumTy;
3877       } else {
3878         Ty = Context.AccumTy;
3879       }
3880     } else if (Literal.isFract) {
3881       if (Literal.isHalf) {
3882         Ty = Context.ShortFractTy;
3883       } else if (Literal.isLong) {
3884         Ty = Context.LongFractTy;
3885       } else {
3886         Ty = Context.FractTy;
3887       }
3888     }
3889 
3890     if (Literal.isUnsigned) Ty = Context.getCorrespondingUnsignedType(Ty);
3891 
3892     bool isSigned = !Literal.isUnsigned;
3893     unsigned scale = Context.getFixedPointScale(Ty);
3894     unsigned bit_width = Context.getTypeInfo(Ty).Width;
3895 
3896     llvm::APInt Val(bit_width, 0, isSigned);
3897     bool Overflowed = Literal.GetFixedPointValue(Val, scale);
3898     bool ValIsZero = Val.isZero() && !Overflowed;
3899 
3900     auto MaxVal = Context.getFixedPointMax(Ty).getValue();
3901     if (Literal.isFract && Val == MaxVal + 1 && !ValIsZero)
3902       // Clause 6.4.4 - The value of a constant shall be in the range of
3903       // representable values for its type, with exception for constants of a
3904       // fract type with a value of exactly 1; such a constant shall denote
3905       // the maximal value for the type.
3906       --Val;
3907     else if (Val.ugt(MaxVal) || Overflowed)
3908       Diag(Tok.getLocation(), diag::err_too_large_for_fixed_point);
3909 
3910     Res = FixedPointLiteral::CreateFromRawInt(Context, Val, Ty,
3911                                               Tok.getLocation(), scale);
3912   } else if (Literal.isFloatingLiteral()) {
3913     QualType Ty;
3914     if (Literal.isHalf){
3915       if (getOpenCLOptions().isAvailableOption("cl_khr_fp16", getLangOpts()))
3916         Ty = Context.HalfTy;
3917       else {
3918         Diag(Tok.getLocation(), diag::err_half_const_requires_fp16);
3919         return ExprError();
3920       }
3921     } else if (Literal.isFloat)
3922       Ty = Context.FloatTy;
3923     else if (Literal.isLong)
3924       Ty = Context.LongDoubleTy;
3925     else if (Literal.isFloat16)
3926       Ty = Context.Float16Ty;
3927     else if (Literal.isFloat128)
3928       Ty = Context.Float128Ty;
3929     else
3930       Ty = Context.DoubleTy;
3931 
3932     Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation());
3933 
3934     if (Ty == Context.DoubleTy) {
3935       if (getLangOpts().SinglePrecisionConstants) {
3936         if (Ty->castAs<BuiltinType>()->getKind() != BuiltinType::Float) {
3937           Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get();
3938         }
3939       } else if (getLangOpts().OpenCL && !getOpenCLOptions().isAvailableOption(
3940                                              "cl_khr_fp64", getLangOpts())) {
3941         // Impose single-precision float type when cl_khr_fp64 is not enabled.
3942         Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64)
3943             << (getLangOpts().getOpenCLCompatibleVersion() >= 300);
3944         Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get();
3945       }
3946     }
3947   } else if (!Literal.isIntegerLiteral()) {
3948     return ExprError();
3949   } else {
3950     QualType Ty;
3951 
3952     // 'long long' is a C99 or C++11 feature.
3953     if (!getLangOpts().C99 && Literal.isLongLong) {
3954       if (getLangOpts().CPlusPlus)
3955         Diag(Tok.getLocation(),
3956              getLangOpts().CPlusPlus11 ?
3957              diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong);
3958       else
3959         Diag(Tok.getLocation(), diag::ext_c99_longlong);
3960     }
3961 
3962     // 'z/uz' literals are a C++2b feature.
3963     if (Literal.isSizeT)
3964       Diag(Tok.getLocation(), getLangOpts().CPlusPlus
3965                                   ? getLangOpts().CPlusPlus2b
3966                                         ? diag::warn_cxx20_compat_size_t_suffix
3967                                         : diag::ext_cxx2b_size_t_suffix
3968                                   : diag::err_cxx2b_size_t_suffix);
3969 
3970     // 'wb/uwb' literals are a C2x feature. We support _BitInt as a type in C++,
3971     // but we do not currently support the suffix in C++ mode because it's not
3972     // entirely clear whether WG21 will prefer this suffix to return a library
3973     // type such as std::bit_int instead of returning a _BitInt.
3974     if (Literal.isBitInt && !getLangOpts().CPlusPlus)
3975       PP.Diag(Tok.getLocation(), getLangOpts().C2x
3976                                      ? diag::warn_c2x_compat_bitint_suffix
3977                                      : diag::ext_c2x_bitint_suffix);
3978 
3979     // Get the value in the widest-possible width. What is "widest" depends on
3980     // whether the literal is a bit-precise integer or not. For a bit-precise
3981     // integer type, try to scan the source to determine how many bits are
3982     // needed to represent the value. This may seem a bit expensive, but trying
3983     // to get the integer value from an overly-wide APInt is *extremely*
3984     // expensive, so the naive approach of assuming
3985     // llvm::IntegerType::MAX_INT_BITS is a big performance hit.
3986     unsigned BitsNeeded =
3987         Literal.isBitInt ? llvm::APInt::getSufficientBitsNeeded(
3988                                Literal.getLiteralDigits(), Literal.getRadix())
3989                          : Context.getTargetInfo().getIntMaxTWidth();
3990     llvm::APInt ResultVal(BitsNeeded, 0);
3991 
3992     if (Literal.GetIntegerValue(ResultVal)) {
3993       // If this value didn't fit into uintmax_t, error and force to ull.
3994       Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
3995           << /* Unsigned */ 1;
3996       Ty = Context.UnsignedLongLongTy;
3997       assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
3998              "long long is not intmax_t?");
3999     } else {
4000       // If this value fits into a ULL, try to figure out what else it fits into
4001       // according to the rules of C99 6.4.4.1p5.
4002 
4003       // Octal, Hexadecimal, and integers with a U suffix are allowed to
4004       // be an unsigned int.
4005       bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
4006 
4007       // Check from smallest to largest, picking the smallest type we can.
4008       unsigned Width = 0;
4009 
4010       // Microsoft specific integer suffixes are explicitly sized.
4011       if (Literal.MicrosoftInteger) {
4012         if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) {
4013           Width = 8;
4014           Ty = Context.CharTy;
4015         } else {
4016           Width = Literal.MicrosoftInteger;
4017           Ty = Context.getIntTypeForBitwidth(Width,
4018                                              /*Signed=*/!Literal.isUnsigned);
4019         }
4020       }
4021 
4022       // Bit-precise integer literals are automagically-sized based on the
4023       // width required by the literal.
4024       if (Literal.isBitInt) {
4025         // The signed version has one more bit for the sign value. There are no
4026         // zero-width bit-precise integers, even if the literal value is 0.
4027         Width = std::max(ResultVal.getActiveBits(), 1u) +
4028                 (Literal.isUnsigned ? 0u : 1u);
4029 
4030         // Diagnose if the width of the constant is larger than BITINT_MAXWIDTH,
4031         // and reset the type to the largest supported width.
4032         unsigned int MaxBitIntWidth =
4033             Context.getTargetInfo().getMaxBitIntWidth();
4034         if (Width > MaxBitIntWidth) {
4035           Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
4036               << Literal.isUnsigned;
4037           Width = MaxBitIntWidth;
4038         }
4039 
4040         // Reset the result value to the smaller APInt and select the correct
4041         // type to be used. Note, we zext even for signed values because the
4042         // literal itself is always an unsigned value (a preceeding - is a
4043         // unary operator, not part of the literal).
4044         ResultVal = ResultVal.zextOrTrunc(Width);
4045         Ty = Context.getBitIntType(Literal.isUnsigned, Width);
4046       }
4047 
4048       // Check C++2b size_t literals.
4049       if (Literal.isSizeT) {
4050         assert(!Literal.MicrosoftInteger &&
4051                "size_t literals can't be Microsoft literals");
4052         unsigned SizeTSize = Context.getTargetInfo().getTypeWidth(
4053             Context.getTargetInfo().getSizeType());
4054 
4055         // Does it fit in size_t?
4056         if (ResultVal.isIntN(SizeTSize)) {
4057           // Does it fit in ssize_t?
4058           if (!Literal.isUnsigned && ResultVal[SizeTSize - 1] == 0)
4059             Ty = Context.getSignedSizeType();
4060           else if (AllowUnsigned)
4061             Ty = Context.getSizeType();
4062           Width = SizeTSize;
4063         }
4064       }
4065 
4066       if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong &&
4067           !Literal.isSizeT) {
4068         // Are int/unsigned possibilities?
4069         unsigned IntSize = Context.getTargetInfo().getIntWidth();
4070 
4071         // Does it fit in a unsigned int?
4072         if (ResultVal.isIntN(IntSize)) {
4073           // Does it fit in a signed int?
4074           if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
4075             Ty = Context.IntTy;
4076           else if (AllowUnsigned)
4077             Ty = Context.UnsignedIntTy;
4078           Width = IntSize;
4079         }
4080       }
4081 
4082       // Are long/unsigned long possibilities?
4083       if (Ty.isNull() && !Literal.isLongLong && !Literal.isSizeT) {
4084         unsigned LongSize = Context.getTargetInfo().getLongWidth();
4085 
4086         // Does it fit in a unsigned long?
4087         if (ResultVal.isIntN(LongSize)) {
4088           // Does it fit in a signed long?
4089           if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
4090             Ty = Context.LongTy;
4091           else if (AllowUnsigned)
4092             Ty = Context.UnsignedLongTy;
4093           // Check according to the rules of C90 6.1.3.2p5. C++03 [lex.icon]p2
4094           // is compatible.
4095           else if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11) {
4096             const unsigned LongLongSize =
4097                 Context.getTargetInfo().getLongLongWidth();
4098             Diag(Tok.getLocation(),
4099                  getLangOpts().CPlusPlus
4100                      ? Literal.isLong
4101                            ? diag::warn_old_implicitly_unsigned_long_cxx
4102                            : /*C++98 UB*/ diag::
4103                                  ext_old_implicitly_unsigned_long_cxx
4104                      : diag::warn_old_implicitly_unsigned_long)
4105                 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0
4106                                             : /*will be ill-formed*/ 1);
4107             Ty = Context.UnsignedLongTy;
4108           }
4109           Width = LongSize;
4110         }
4111       }
4112 
4113       // Check long long if needed.
4114       if (Ty.isNull() && !Literal.isSizeT) {
4115         unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth();
4116 
4117         // Does it fit in a unsigned long long?
4118         if (ResultVal.isIntN(LongLongSize)) {
4119           // Does it fit in a signed long long?
4120           // To be compatible with MSVC, hex integer literals ending with the
4121           // LL or i64 suffix are always signed in Microsoft mode.
4122           if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 ||
4123               (getLangOpts().MSVCCompat && Literal.isLongLong)))
4124             Ty = Context.LongLongTy;
4125           else if (AllowUnsigned)
4126             Ty = Context.UnsignedLongLongTy;
4127           Width = LongLongSize;
4128         }
4129       }
4130 
4131       // If we still couldn't decide a type, we either have 'size_t' literal
4132       // that is out of range, or a decimal literal that does not fit in a
4133       // signed long long and has no U suffix.
4134       if (Ty.isNull()) {
4135         if (Literal.isSizeT)
4136           Diag(Tok.getLocation(), diag::err_size_t_literal_too_large)
4137               << Literal.isUnsigned;
4138         else
4139           Diag(Tok.getLocation(),
4140                diag::ext_integer_literal_too_large_for_signed);
4141         Ty = Context.UnsignedLongLongTy;
4142         Width = Context.getTargetInfo().getLongLongWidth();
4143       }
4144 
4145       if (ResultVal.getBitWidth() != Width)
4146         ResultVal = ResultVal.trunc(Width);
4147     }
4148     Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation());
4149   }
4150 
4151   // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
4152   if (Literal.isImaginary) {
4153     Res = new (Context) ImaginaryLiteral(Res,
4154                                         Context.getComplexType(Res->getType()));
4155 
4156     Diag(Tok.getLocation(), diag::ext_imaginary_constant);
4157   }
4158   return Res;
4159 }
4160 
4161 ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) {
4162   assert(E && "ActOnParenExpr() missing expr");
4163   QualType ExprTy = E->getType();
4164   if (getLangOpts().ProtectParens && CurFPFeatures.getAllowFPReassociate() &&
4165       !E->isLValue() && ExprTy->hasFloatingRepresentation())
4166     return BuildBuiltinCallExpr(R, Builtin::BI__arithmetic_fence, E);
4167   return new (Context) ParenExpr(L, R, E);
4168 }
4169 
4170 static bool CheckVecStepTraitOperandType(Sema &S, QualType T,
4171                                          SourceLocation Loc,
4172                                          SourceRange ArgRange) {
4173   // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in
4174   // scalar or vector data type argument..."
4175   // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic
4176   // type (C99 6.2.5p18) or void.
4177   if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) {
4178     S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type)
4179       << T << ArgRange;
4180     return true;
4181   }
4182 
4183   assert((T->isVoidType() || !T->isIncompleteType()) &&
4184          "Scalar types should always be complete");
4185   return false;
4186 }
4187 
4188 static bool CheckExtensionTraitOperandType(Sema &S, QualType T,
4189                                            SourceLocation Loc,
4190                                            SourceRange ArgRange,
4191                                            UnaryExprOrTypeTrait TraitKind) {
4192   // Invalid types must be hard errors for SFINAE in C++.
4193   if (S.LangOpts.CPlusPlus)
4194     return true;
4195 
4196   // C99 6.5.3.4p1:
4197   if (T->isFunctionType() &&
4198       (TraitKind == UETT_SizeOf || TraitKind == UETT_AlignOf ||
4199        TraitKind == UETT_PreferredAlignOf)) {
4200     // sizeof(function)/alignof(function) is allowed as an extension.
4201     S.Diag(Loc, diag::ext_sizeof_alignof_function_type)
4202         << getTraitSpelling(TraitKind) << ArgRange;
4203     return false;
4204   }
4205 
4206   // Allow sizeof(void)/alignof(void) as an extension, unless in OpenCL where
4207   // this is an error (OpenCL v1.1 s6.3.k)
4208   if (T->isVoidType()) {
4209     unsigned DiagID = S.LangOpts.OpenCL ? diag::err_opencl_sizeof_alignof_type
4210                                         : diag::ext_sizeof_alignof_void_type;
4211     S.Diag(Loc, DiagID) << getTraitSpelling(TraitKind) << ArgRange;
4212     return false;
4213   }
4214 
4215   return true;
4216 }
4217 
4218 static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T,
4219                                              SourceLocation Loc,
4220                                              SourceRange ArgRange,
4221                                              UnaryExprOrTypeTrait TraitKind) {
4222   // Reject sizeof(interface) and sizeof(interface<proto>) if the
4223   // runtime doesn't allow it.
4224   if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) {
4225     S.Diag(Loc, diag::err_sizeof_nonfragile_interface)
4226       << T << (TraitKind == UETT_SizeOf)
4227       << ArgRange;
4228     return true;
4229   }
4230 
4231   return false;
4232 }
4233 
4234 /// Check whether E is a pointer from a decayed array type (the decayed
4235 /// pointer type is equal to T) and emit a warning if it is.
4236 static void warnOnSizeofOnArrayDecay(Sema &S, SourceLocation Loc, QualType T,
4237                                      Expr *E) {
4238   // Don't warn if the operation changed the type.
4239   if (T != E->getType())
4240     return;
4241 
4242   // Now look for array decays.
4243   ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E);
4244   if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay)
4245     return;
4246 
4247   S.Diag(Loc, diag::warn_sizeof_array_decay) << ICE->getSourceRange()
4248                                              << ICE->getType()
4249                                              << ICE->getSubExpr()->getType();
4250 }
4251 
4252 /// Check the constraints on expression operands to unary type expression
4253 /// and type traits.
4254 ///
4255 /// Completes any types necessary and validates the constraints on the operand
4256 /// expression. The logic mostly mirrors the type-based overload, but may modify
4257 /// the expression as it completes the type for that expression through template
4258 /// instantiation, etc.
4259 bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E,
4260                                             UnaryExprOrTypeTrait ExprKind) {
4261   QualType ExprTy = E->getType();
4262   assert(!ExprTy->isReferenceType());
4263 
4264   bool IsUnevaluatedOperand =
4265       (ExprKind == UETT_SizeOf || ExprKind == UETT_AlignOf ||
4266        ExprKind == UETT_PreferredAlignOf || ExprKind == UETT_VecStep);
4267   if (IsUnevaluatedOperand) {
4268     ExprResult Result = CheckUnevaluatedOperand(E);
4269     if (Result.isInvalid())
4270       return true;
4271     E = Result.get();
4272   }
4273 
4274   // The operand for sizeof and alignof is in an unevaluated expression context,
4275   // so side effects could result in unintended consequences.
4276   // Exclude instantiation-dependent expressions, because 'sizeof' is sometimes
4277   // used to build SFINAE gadgets.
4278   // FIXME: Should we consider instantiation-dependent operands to 'alignof'?
4279   if (IsUnevaluatedOperand && !inTemplateInstantiation() &&
4280       !E->isInstantiationDependent() &&
4281       !E->getType()->isVariableArrayType() &&
4282       E->HasSideEffects(Context, false))
4283     Diag(E->getExprLoc(), diag::warn_side_effects_unevaluated_context);
4284 
4285   if (ExprKind == UETT_VecStep)
4286     return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
4287                                         E->getSourceRange());
4288 
4289   // Explicitly list some types as extensions.
4290   if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
4291                                       E->getSourceRange(), ExprKind))
4292     return false;
4293 
4294   // 'alignof' applied to an expression only requires the base element type of
4295   // the expression to be complete. 'sizeof' requires the expression's type to
4296   // be complete (and will attempt to complete it if it's an array of unknown
4297   // bound).
4298   if (ExprKind == UETT_AlignOf || ExprKind == UETT_PreferredAlignOf) {
4299     if (RequireCompleteSizedType(
4300             E->getExprLoc(), Context.getBaseElementType(E->getType()),
4301             diag::err_sizeof_alignof_incomplete_or_sizeless_type,
4302             getTraitSpelling(ExprKind), E->getSourceRange()))
4303       return true;
4304   } else {
4305     if (RequireCompleteSizedExprType(
4306             E, diag::err_sizeof_alignof_incomplete_or_sizeless_type,
4307             getTraitSpelling(ExprKind), E->getSourceRange()))
4308       return true;
4309   }
4310 
4311   // Completing the expression's type may have changed it.
4312   ExprTy = E->getType();
4313   assert(!ExprTy->isReferenceType());
4314 
4315   if (ExprTy->isFunctionType()) {
4316     Diag(E->getExprLoc(), diag::err_sizeof_alignof_function_type)
4317         << getTraitSpelling(ExprKind) << E->getSourceRange();
4318     return true;
4319   }
4320 
4321   if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),
4322                                        E->getSourceRange(), ExprKind))
4323     return true;
4324 
4325   if (ExprKind == UETT_SizeOf) {
4326     if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
4327       if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
4328         QualType OType = PVD->getOriginalType();
4329         QualType Type = PVD->getType();
4330         if (Type->isPointerType() && OType->isArrayType()) {
4331           Diag(E->getExprLoc(), diag::warn_sizeof_array_param)
4332             << Type << OType;
4333           Diag(PVD->getLocation(), diag::note_declared_at);
4334         }
4335       }
4336     }
4337 
4338     // Warn on "sizeof(array op x)" and "sizeof(x op array)", where the array
4339     // decays into a pointer and returns an unintended result. This is most
4340     // likely a typo for "sizeof(array) op x".
4341     if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) {
4342       warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
4343                                BO->getLHS());
4344       warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
4345                                BO->getRHS());
4346     }
4347   }
4348 
4349   return false;
4350 }
4351 
4352 /// Check the constraints on operands to unary expression and type
4353 /// traits.
4354 ///
4355 /// This will complete any types necessary, and validate the various constraints
4356 /// on those operands.
4357 ///
4358 /// The UsualUnaryConversions() function is *not* called by this routine.
4359 /// C99 6.3.2.1p[2-4] all state:
4360 ///   Except when it is the operand of the sizeof operator ...
4361 ///
4362 /// C++ [expr.sizeof]p4
4363 ///   The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
4364 ///   standard conversions are not applied to the operand of sizeof.
4365 ///
4366 /// This policy is followed for all of the unary trait expressions.
4367 bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType,
4368                                             SourceLocation OpLoc,
4369                                             SourceRange ExprRange,
4370                                             UnaryExprOrTypeTrait ExprKind) {
4371   if (ExprType->isDependentType())
4372     return false;
4373 
4374   // C++ [expr.sizeof]p2:
4375   //     When applied to a reference or a reference type, the result
4376   //     is the size of the referenced type.
4377   // C++11 [expr.alignof]p3:
4378   //     When alignof is applied to a reference type, the result
4379   //     shall be the alignment of the referenced type.
4380   if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
4381     ExprType = Ref->getPointeeType();
4382 
4383   // C11 6.5.3.4/3, C++11 [expr.alignof]p3:
4384   //   When alignof or _Alignof is applied to an array type, the result
4385   //   is the alignment of the element type.
4386   if (ExprKind == UETT_AlignOf || ExprKind == UETT_PreferredAlignOf ||
4387       ExprKind == UETT_OpenMPRequiredSimdAlign)
4388     ExprType = Context.getBaseElementType(ExprType);
4389 
4390   if (ExprKind == UETT_VecStep)
4391     return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
4392 
4393   // Explicitly list some types as extensions.
4394   if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
4395                                       ExprKind))
4396     return false;
4397 
4398   if (RequireCompleteSizedType(
4399           OpLoc, ExprType, diag::err_sizeof_alignof_incomplete_or_sizeless_type,
4400           getTraitSpelling(ExprKind), ExprRange))
4401     return true;
4402 
4403   if (ExprType->isFunctionType()) {
4404     Diag(OpLoc, diag::err_sizeof_alignof_function_type)
4405         << getTraitSpelling(ExprKind) << ExprRange;
4406     return true;
4407   }
4408 
4409   if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange,
4410                                        ExprKind))
4411     return true;
4412 
4413   return false;
4414 }
4415 
4416 static bool CheckAlignOfExpr(Sema &S, Expr *E, UnaryExprOrTypeTrait ExprKind) {
4417   // Cannot know anything else if the expression is dependent.
4418   if (E->isTypeDependent())
4419     return false;
4420 
4421   if (E->getObjectKind() == OK_BitField) {
4422     S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_typeof_bitfield)
4423        << 1 << E->getSourceRange();
4424     return true;
4425   }
4426 
4427   ValueDecl *D = nullptr;
4428   Expr *Inner = E->IgnoreParens();
4429   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Inner)) {
4430     D = DRE->getDecl();
4431   } else if (MemberExpr *ME = dyn_cast<MemberExpr>(Inner)) {
4432     D = ME->getMemberDecl();
4433   }
4434 
4435   // If it's a field, require the containing struct to have a
4436   // complete definition so that we can compute the layout.
4437   //
4438   // This can happen in C++11 onwards, either by naming the member
4439   // in a way that is not transformed into a member access expression
4440   // (in an unevaluated operand, for instance), or by naming the member
4441   // in a trailing-return-type.
4442   //
4443   // For the record, since __alignof__ on expressions is a GCC
4444   // extension, GCC seems to permit this but always gives the
4445   // nonsensical answer 0.
4446   //
4447   // We don't really need the layout here --- we could instead just
4448   // directly check for all the appropriate alignment-lowing
4449   // attributes --- but that would require duplicating a lot of
4450   // logic that just isn't worth duplicating for such a marginal
4451   // use-case.
4452   if (FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) {
4453     // Fast path this check, since we at least know the record has a
4454     // definition if we can find a member of it.
4455     if (!FD->getParent()->isCompleteDefinition()) {
4456       S.Diag(E->getExprLoc(), diag::err_alignof_member_of_incomplete_type)
4457         << E->getSourceRange();
4458       return true;
4459     }
4460 
4461     // Otherwise, if it's a field, and the field doesn't have
4462     // reference type, then it must have a complete type (or be a
4463     // flexible array member, which we explicitly want to
4464     // white-list anyway), which makes the following checks trivial.
4465     if (!FD->getType()->isReferenceType())
4466       return false;
4467   }
4468 
4469   return S.CheckUnaryExprOrTypeTraitOperand(E, ExprKind);
4470 }
4471 
4472 bool Sema::CheckVecStepExpr(Expr *E) {
4473   E = E->IgnoreParens();
4474 
4475   // Cannot know anything else if the expression is dependent.
4476   if (E->isTypeDependent())
4477     return false;
4478 
4479   return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep);
4480 }
4481 
4482 static void captureVariablyModifiedType(ASTContext &Context, QualType T,
4483                                         CapturingScopeInfo *CSI) {
4484   assert(T->isVariablyModifiedType());
4485   assert(CSI != nullptr);
4486 
4487   // We're going to walk down into the type and look for VLA expressions.
4488   do {
4489     const Type *Ty = T.getTypePtr();
4490     switch (Ty->getTypeClass()) {
4491 #define TYPE(Class, Base)
4492 #define ABSTRACT_TYPE(Class, Base)
4493 #define NON_CANONICAL_TYPE(Class, Base)
4494 #define DEPENDENT_TYPE(Class, Base) case Type::Class:
4495 #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base)
4496 #include "clang/AST/TypeNodes.inc"
4497       T = QualType();
4498       break;
4499     // These types are never variably-modified.
4500     case Type::Builtin:
4501     case Type::Complex:
4502     case Type::Vector:
4503     case Type::ExtVector:
4504     case Type::ConstantMatrix:
4505     case Type::Record:
4506     case Type::Enum:
4507     case Type::Elaborated:
4508     case Type::TemplateSpecialization:
4509     case Type::ObjCObject:
4510     case Type::ObjCInterface:
4511     case Type::ObjCObjectPointer:
4512     case Type::ObjCTypeParam:
4513     case Type::Pipe:
4514     case Type::BitInt:
4515       llvm_unreachable("type class is never variably-modified!");
4516     case Type::Adjusted:
4517       T = cast<AdjustedType>(Ty)->getOriginalType();
4518       break;
4519     case Type::Decayed:
4520       T = cast<DecayedType>(Ty)->getPointeeType();
4521       break;
4522     case Type::Pointer:
4523       T = cast<PointerType>(Ty)->getPointeeType();
4524       break;
4525     case Type::BlockPointer:
4526       T = cast<BlockPointerType>(Ty)->getPointeeType();
4527       break;
4528     case Type::LValueReference:
4529     case Type::RValueReference:
4530       T = cast<ReferenceType>(Ty)->getPointeeType();
4531       break;
4532     case Type::MemberPointer:
4533       T = cast<MemberPointerType>(Ty)->getPointeeType();
4534       break;
4535     case Type::ConstantArray:
4536     case Type::IncompleteArray:
4537       // Losing element qualification here is fine.
4538       T = cast<ArrayType>(Ty)->getElementType();
4539       break;
4540     case Type::VariableArray: {
4541       // Losing element qualification here is fine.
4542       const VariableArrayType *VAT = cast<VariableArrayType>(Ty);
4543 
4544       // Unknown size indication requires no size computation.
4545       // Otherwise, evaluate and record it.
4546       auto Size = VAT->getSizeExpr();
4547       if (Size && !CSI->isVLATypeCaptured(VAT) &&
4548           (isa<CapturedRegionScopeInfo>(CSI) || isa<LambdaScopeInfo>(CSI)))
4549         CSI->addVLATypeCapture(Size->getExprLoc(), VAT, Context.getSizeType());
4550 
4551       T = VAT->getElementType();
4552       break;
4553     }
4554     case Type::FunctionProto:
4555     case Type::FunctionNoProto:
4556       T = cast<FunctionType>(Ty)->getReturnType();
4557       break;
4558     case Type::Paren:
4559     case Type::TypeOf:
4560     case Type::UnaryTransform:
4561     case Type::Attributed:
4562     case Type::BTFTagAttributed:
4563     case Type::SubstTemplateTypeParm:
4564     case Type::MacroQualified:
4565       // Keep walking after single level desugaring.
4566       T = T.getSingleStepDesugaredType(Context);
4567       break;
4568     case Type::Typedef:
4569       T = cast<TypedefType>(Ty)->desugar();
4570       break;
4571     case Type::Decltype:
4572       T = cast<DecltypeType>(Ty)->desugar();
4573       break;
4574     case Type::Using:
4575       T = cast<UsingType>(Ty)->desugar();
4576       break;
4577     case Type::Auto:
4578     case Type::DeducedTemplateSpecialization:
4579       T = cast<DeducedType>(Ty)->getDeducedType();
4580       break;
4581     case Type::TypeOfExpr:
4582       T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType();
4583       break;
4584     case Type::Atomic:
4585       T = cast<AtomicType>(Ty)->getValueType();
4586       break;
4587     }
4588   } while (!T.isNull() && T->isVariablyModifiedType());
4589 }
4590 
4591 /// Build a sizeof or alignof expression given a type operand.
4592 ExprResult
4593 Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo,
4594                                      SourceLocation OpLoc,
4595                                      UnaryExprOrTypeTrait ExprKind,
4596                                      SourceRange R) {
4597   if (!TInfo)
4598     return ExprError();
4599 
4600   QualType T = TInfo->getType();
4601 
4602   if (!T->isDependentType() &&
4603       CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind))
4604     return ExprError();
4605 
4606   if (T->isVariablyModifiedType() && FunctionScopes.size() > 1) {
4607     if (auto *TT = T->getAs<TypedefType>()) {
4608       for (auto I = FunctionScopes.rbegin(),
4609                 E = std::prev(FunctionScopes.rend());
4610            I != E; ++I) {
4611         auto *CSI = dyn_cast<CapturingScopeInfo>(*I);
4612         if (CSI == nullptr)
4613           break;
4614         DeclContext *DC = nullptr;
4615         if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI))
4616           DC = LSI->CallOperator;
4617         else if (auto *CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI))
4618           DC = CRSI->TheCapturedDecl;
4619         else if (auto *BSI = dyn_cast<BlockScopeInfo>(CSI))
4620           DC = BSI->TheDecl;
4621         if (DC) {
4622           if (DC->containsDecl(TT->getDecl()))
4623             break;
4624           captureVariablyModifiedType(Context, T, CSI);
4625         }
4626       }
4627     }
4628   }
4629 
4630   // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
4631   if (isUnevaluatedContext() && ExprKind == UETT_SizeOf &&
4632       TInfo->getType()->isVariablyModifiedType())
4633     TInfo = TransformToPotentiallyEvaluated(TInfo);
4634 
4635   return new (Context) UnaryExprOrTypeTraitExpr(
4636       ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd());
4637 }
4638 
4639 /// Build a sizeof or alignof expression given an expression
4640 /// operand.
4641 ExprResult
4642 Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc,
4643                                      UnaryExprOrTypeTrait ExprKind) {
4644   ExprResult PE = CheckPlaceholderExpr(E);
4645   if (PE.isInvalid())
4646     return ExprError();
4647 
4648   E = PE.get();
4649 
4650   // Verify that the operand is valid.
4651   bool isInvalid = false;
4652   if (E->isTypeDependent()) {
4653     // Delay type-checking for type-dependent expressions.
4654   } else if (ExprKind == UETT_AlignOf || ExprKind == UETT_PreferredAlignOf) {
4655     isInvalid = CheckAlignOfExpr(*this, E, ExprKind);
4656   } else if (ExprKind == UETT_VecStep) {
4657     isInvalid = CheckVecStepExpr(E);
4658   } else if (ExprKind == UETT_OpenMPRequiredSimdAlign) {
4659       Diag(E->getExprLoc(), diag::err_openmp_default_simd_align_expr);
4660       isInvalid = true;
4661   } else if (E->refersToBitField()) {  // C99 6.5.3.4p1.
4662     Diag(E->getExprLoc(), diag::err_sizeof_alignof_typeof_bitfield) << 0;
4663     isInvalid = true;
4664   } else {
4665     isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf);
4666   }
4667 
4668   if (isInvalid)
4669     return ExprError();
4670 
4671   if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) {
4672     PE = TransformToPotentiallyEvaluated(E);
4673     if (PE.isInvalid()) return ExprError();
4674     E = PE.get();
4675   }
4676 
4677   // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
4678   return new (Context) UnaryExprOrTypeTraitExpr(
4679       ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd());
4680 }
4681 
4682 /// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c
4683 /// expr and the same for @c alignof and @c __alignof
4684 /// Note that the ArgRange is invalid if isType is false.
4685 ExprResult
4686 Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc,
4687                                     UnaryExprOrTypeTrait ExprKind, bool IsType,
4688                                     void *TyOrEx, SourceRange ArgRange) {
4689   // If error parsing type, ignore.
4690   if (!TyOrEx) return ExprError();
4691 
4692   if (IsType) {
4693     TypeSourceInfo *TInfo;
4694     (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo);
4695     return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange);
4696   }
4697 
4698   Expr *ArgEx = (Expr *)TyOrEx;
4699   ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind);
4700   return Result;
4701 }
4702 
4703 static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc,
4704                                      bool IsReal) {
4705   if (V.get()->isTypeDependent())
4706     return S.Context.DependentTy;
4707 
4708   // _Real and _Imag are only l-values for normal l-values.
4709   if (V.get()->getObjectKind() != OK_Ordinary) {
4710     V = S.DefaultLvalueConversion(V.get());
4711     if (V.isInvalid())
4712       return QualType();
4713   }
4714 
4715   // These operators return the element type of a complex type.
4716   if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>())
4717     return CT->getElementType();
4718 
4719   // Otherwise they pass through real integer and floating point types here.
4720   if (V.get()->getType()->isArithmeticType())
4721     return V.get()->getType();
4722 
4723   // Test for placeholders.
4724   ExprResult PR = S.CheckPlaceholderExpr(V.get());
4725   if (PR.isInvalid()) return QualType();
4726   if (PR.get() != V.get()) {
4727     V = PR;
4728     return CheckRealImagOperand(S, V, Loc, IsReal);
4729   }
4730 
4731   // Reject anything else.
4732   S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType()
4733     << (IsReal ? "__real" : "__imag");
4734   return QualType();
4735 }
4736 
4737 
4738 
4739 ExprResult
4740 Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
4741                           tok::TokenKind Kind, Expr *Input) {
4742   UnaryOperatorKind Opc;
4743   switch (Kind) {
4744   default: llvm_unreachable("Unknown unary op!");
4745   case tok::plusplus:   Opc = UO_PostInc; break;
4746   case tok::minusminus: Opc = UO_PostDec; break;
4747   }
4748 
4749   // Since this might is a postfix expression, get rid of ParenListExprs.
4750   ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input);
4751   if (Result.isInvalid()) return ExprError();
4752   Input = Result.get();
4753 
4754   return BuildUnaryOp(S, OpLoc, Opc, Input);
4755 }
4756 
4757 /// Diagnose if arithmetic on the given ObjC pointer is illegal.
4758 ///
4759 /// \return true on error
4760 static bool checkArithmeticOnObjCPointer(Sema &S,
4761                                          SourceLocation opLoc,
4762                                          Expr *op) {
4763   assert(op->getType()->isObjCObjectPointerType());
4764   if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic() &&
4765       !S.LangOpts.ObjCSubscriptingLegacyRuntime)
4766     return false;
4767 
4768   S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface)
4769     << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType()
4770     << op->getSourceRange();
4771   return true;
4772 }
4773 
4774 static bool isMSPropertySubscriptExpr(Sema &S, Expr *Base) {
4775   auto *BaseNoParens = Base->IgnoreParens();
4776   if (auto *MSProp = dyn_cast<MSPropertyRefExpr>(BaseNoParens))
4777     return MSProp->getPropertyDecl()->getType()->isArrayType();
4778   return isa<MSPropertySubscriptExpr>(BaseNoParens);
4779 }
4780 
4781 // Returns the type used for LHS[RHS], given one of LHS, RHS is type-dependent.
4782 // Typically this is DependentTy, but can sometimes be more precise.
4783 //
4784 // There are cases when we could determine a non-dependent type:
4785 //  - LHS and RHS may have non-dependent types despite being type-dependent
4786 //    (e.g. unbounded array static members of the current instantiation)
4787 //  - one may be a dependent-sized array with known element type
4788 //  - one may be a dependent-typed valid index (enum in current instantiation)
4789 //
4790 // We *always* return a dependent type, in such cases it is DependentTy.
4791 // This avoids creating type-dependent expressions with non-dependent types.
4792 // FIXME: is this important to avoid? See https://reviews.llvm.org/D107275
4793 static QualType getDependentArraySubscriptType(Expr *LHS, Expr *RHS,
4794                                                const ASTContext &Ctx) {
4795   assert(LHS->isTypeDependent() || RHS->isTypeDependent());
4796   QualType LTy = LHS->getType(), RTy = RHS->getType();
4797   QualType Result = Ctx.DependentTy;
4798   if (RTy->isIntegralOrUnscopedEnumerationType()) {
4799     if (const PointerType *PT = LTy->getAs<PointerType>())
4800       Result = PT->getPointeeType();
4801     else if (const ArrayType *AT = LTy->getAsArrayTypeUnsafe())
4802       Result = AT->getElementType();
4803   } else if (LTy->isIntegralOrUnscopedEnumerationType()) {
4804     if (const PointerType *PT = RTy->getAs<PointerType>())
4805       Result = PT->getPointeeType();
4806     else if (const ArrayType *AT = RTy->getAsArrayTypeUnsafe())
4807       Result = AT->getElementType();
4808   }
4809   // Ensure we return a dependent type.
4810   return Result->isDependentType() ? Result : Ctx.DependentTy;
4811 }
4812 
4813 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args);
4814 
4815 ExprResult Sema::ActOnArraySubscriptExpr(Scope *S, Expr *base,
4816                                          SourceLocation lbLoc,
4817                                          MultiExprArg ArgExprs,
4818                                          SourceLocation rbLoc) {
4819 
4820   if (base && !base->getType().isNull() &&
4821       base->hasPlaceholderType(BuiltinType::OMPArraySection))
4822     return ActOnOMPArraySectionExpr(base, lbLoc, ArgExprs.front(), SourceLocation(),
4823                                     SourceLocation(), /*Length*/ nullptr,
4824                                     /*Stride=*/nullptr, rbLoc);
4825 
4826   // Since this might be a postfix expression, get rid of ParenListExprs.
4827   if (isa<ParenListExpr>(base)) {
4828     ExprResult result = MaybeConvertParenListExprToParenExpr(S, base);
4829     if (result.isInvalid())
4830       return ExprError();
4831     base = result.get();
4832   }
4833 
4834   // Check if base and idx form a MatrixSubscriptExpr.
4835   //
4836   // Helper to check for comma expressions, which are not allowed as indices for
4837   // matrix subscript expressions.
4838   auto CheckAndReportCommaError = [this, base, rbLoc](Expr *E) {
4839     if (isa<BinaryOperator>(E) && cast<BinaryOperator>(E)->isCommaOp()) {
4840       Diag(E->getExprLoc(), diag::err_matrix_subscript_comma)
4841           << SourceRange(base->getBeginLoc(), rbLoc);
4842       return true;
4843     }
4844     return false;
4845   };
4846   // The matrix subscript operator ([][])is considered a single operator.
4847   // Separating the index expressions by parenthesis is not allowed.
4848   if (base->hasPlaceholderType(BuiltinType::IncompleteMatrixIdx) &&
4849       !isa<MatrixSubscriptExpr>(base)) {
4850     Diag(base->getExprLoc(), diag::err_matrix_separate_incomplete_index)
4851         << SourceRange(base->getBeginLoc(), rbLoc);
4852     return ExprError();
4853   }
4854   // If the base is a MatrixSubscriptExpr, try to create a new
4855   // MatrixSubscriptExpr.
4856   auto *matSubscriptE = dyn_cast<MatrixSubscriptExpr>(base);
4857   if (matSubscriptE) {
4858     assert(ArgExprs.size() == 1);
4859     if (CheckAndReportCommaError(ArgExprs.front()))
4860       return ExprError();
4861 
4862     assert(matSubscriptE->isIncomplete() &&
4863            "base has to be an incomplete matrix subscript");
4864     return CreateBuiltinMatrixSubscriptExpr(matSubscriptE->getBase(),
4865                                             matSubscriptE->getRowIdx(),
4866                                             ArgExprs.front(), rbLoc);
4867   }
4868 
4869   // Handle any non-overload placeholder types in the base and index
4870   // expressions.  We can't handle overloads here because the other
4871   // operand might be an overloadable type, in which case the overload
4872   // resolution for the operator overload should get the first crack
4873   // at the overload.
4874   bool IsMSPropertySubscript = false;
4875   if (base->getType()->isNonOverloadPlaceholderType()) {
4876     IsMSPropertySubscript = isMSPropertySubscriptExpr(*this, base);
4877     if (!IsMSPropertySubscript) {
4878       ExprResult result = CheckPlaceholderExpr(base);
4879       if (result.isInvalid())
4880         return ExprError();
4881       base = result.get();
4882     }
4883   }
4884 
4885   // If the base is a matrix type, try to create a new MatrixSubscriptExpr.
4886   if (base->getType()->isMatrixType()) {
4887     assert(ArgExprs.size() == 1);
4888     if (CheckAndReportCommaError(ArgExprs.front()))
4889       return ExprError();
4890 
4891     return CreateBuiltinMatrixSubscriptExpr(base, ArgExprs.front(), nullptr,
4892                                             rbLoc);
4893   }
4894 
4895   if (ArgExprs.size() == 1 && getLangOpts().CPlusPlus20) {
4896     Expr *idx = ArgExprs[0];
4897     if ((isa<BinaryOperator>(idx) && cast<BinaryOperator>(idx)->isCommaOp()) ||
4898         (isa<CXXOperatorCallExpr>(idx) &&
4899          cast<CXXOperatorCallExpr>(idx)->getOperator() == OO_Comma)) {
4900       Diag(idx->getExprLoc(), diag::warn_deprecated_comma_subscript)
4901           << SourceRange(base->getBeginLoc(), rbLoc);
4902     }
4903   }
4904 
4905   if (ArgExprs.size() == 1 &&
4906       ArgExprs[0]->getType()->isNonOverloadPlaceholderType()) {
4907     ExprResult result = CheckPlaceholderExpr(ArgExprs[0]);
4908     if (result.isInvalid())
4909       return ExprError();
4910     ArgExprs[0] = result.get();
4911   } else {
4912     if (checkArgsForPlaceholders(*this, ArgExprs))
4913       return ExprError();
4914   }
4915 
4916   // Build an unanalyzed expression if either operand is type-dependent.
4917   if (getLangOpts().CPlusPlus && ArgExprs.size() == 1 &&
4918       (base->isTypeDependent() ||
4919        Expr::hasAnyTypeDependentArguments(ArgExprs))) {
4920     return new (Context) ArraySubscriptExpr(
4921         base, ArgExprs.front(),
4922         getDependentArraySubscriptType(base, ArgExprs.front(), getASTContext()),
4923         VK_LValue, OK_Ordinary, rbLoc);
4924   }
4925 
4926   // MSDN, property (C++)
4927   // https://msdn.microsoft.com/en-us/library/yhfk0thd(v=vs.120).aspx
4928   // This attribute can also be used in the declaration of an empty array in a
4929   // class or structure definition. For example:
4930   // __declspec(property(get=GetX, put=PutX)) int x[];
4931   // The above statement indicates that x[] can be used with one or more array
4932   // indices. In this case, i=p->x[a][b] will be turned into i=p->GetX(a, b),
4933   // and p->x[a][b] = i will be turned into p->PutX(a, b, i);
4934   if (IsMSPropertySubscript) {
4935     assert(ArgExprs.size() == 1);
4936     // Build MS property subscript expression if base is MS property reference
4937     // or MS property subscript.
4938     return new (Context)
4939         MSPropertySubscriptExpr(base, ArgExprs.front(), Context.PseudoObjectTy,
4940                                 VK_LValue, OK_Ordinary, rbLoc);
4941   }
4942 
4943   // Use C++ overloaded-operator rules if either operand has record
4944   // type.  The spec says to do this if either type is *overloadable*,
4945   // but enum types can't declare subscript operators or conversion
4946   // operators, so there's nothing interesting for overload resolution
4947   // to do if there aren't any record types involved.
4948   //
4949   // ObjC pointers have their own subscripting logic that is not tied
4950   // to overload resolution and so should not take this path.
4951   if (getLangOpts().CPlusPlus && !base->getType()->isObjCObjectPointerType() &&
4952       ((base->getType()->isRecordType() ||
4953         (ArgExprs.size() != 1 || ArgExprs[0]->getType()->isRecordType())))) {
4954     return CreateOverloadedArraySubscriptExpr(lbLoc, rbLoc, base, ArgExprs);
4955   }
4956 
4957   ExprResult Res =
4958       CreateBuiltinArraySubscriptExpr(base, lbLoc, ArgExprs.front(), rbLoc);
4959 
4960   if (!Res.isInvalid() && isa<ArraySubscriptExpr>(Res.get()))
4961     CheckSubscriptAccessOfNoDeref(cast<ArraySubscriptExpr>(Res.get()));
4962 
4963   return Res;
4964 }
4965 
4966 ExprResult Sema::tryConvertExprToType(Expr *E, QualType Ty) {
4967   InitializedEntity Entity = InitializedEntity::InitializeTemporary(Ty);
4968   InitializationKind Kind =
4969       InitializationKind::CreateCopy(E->getBeginLoc(), SourceLocation());
4970   InitializationSequence InitSeq(*this, Entity, Kind, E);
4971   return InitSeq.Perform(*this, Entity, Kind, E);
4972 }
4973 
4974 ExprResult Sema::CreateBuiltinMatrixSubscriptExpr(Expr *Base, Expr *RowIdx,
4975                                                   Expr *ColumnIdx,
4976                                                   SourceLocation RBLoc) {
4977   ExprResult BaseR = CheckPlaceholderExpr(Base);
4978   if (BaseR.isInvalid())
4979     return BaseR;
4980   Base = BaseR.get();
4981 
4982   ExprResult RowR = CheckPlaceholderExpr(RowIdx);
4983   if (RowR.isInvalid())
4984     return RowR;
4985   RowIdx = RowR.get();
4986 
4987   if (!ColumnIdx)
4988     return new (Context) MatrixSubscriptExpr(
4989         Base, RowIdx, ColumnIdx, Context.IncompleteMatrixIdxTy, RBLoc);
4990 
4991   // Build an unanalyzed expression if any of the operands is type-dependent.
4992   if (Base->isTypeDependent() || RowIdx->isTypeDependent() ||
4993       ColumnIdx->isTypeDependent())
4994     return new (Context) MatrixSubscriptExpr(Base, RowIdx, ColumnIdx,
4995                                              Context.DependentTy, RBLoc);
4996 
4997   ExprResult ColumnR = CheckPlaceholderExpr(ColumnIdx);
4998   if (ColumnR.isInvalid())
4999     return ColumnR;
5000   ColumnIdx = ColumnR.get();
5001 
5002   // Check that IndexExpr is an integer expression. If it is a constant
5003   // expression, check that it is less than Dim (= the number of elements in the
5004   // corresponding dimension).
5005   auto IsIndexValid = [&](Expr *IndexExpr, unsigned Dim,
5006                           bool IsColumnIdx) -> Expr * {
5007     if (!IndexExpr->getType()->isIntegerType() &&
5008         !IndexExpr->isTypeDependent()) {
5009       Diag(IndexExpr->getBeginLoc(), diag::err_matrix_index_not_integer)
5010           << IsColumnIdx;
5011       return nullptr;
5012     }
5013 
5014     if (Optional<llvm::APSInt> Idx =
5015             IndexExpr->getIntegerConstantExpr(Context)) {
5016       if ((*Idx < 0 || *Idx >= Dim)) {
5017         Diag(IndexExpr->getBeginLoc(), diag::err_matrix_index_outside_range)
5018             << IsColumnIdx << Dim;
5019         return nullptr;
5020       }
5021     }
5022 
5023     ExprResult ConvExpr =
5024         tryConvertExprToType(IndexExpr, Context.getSizeType());
5025     assert(!ConvExpr.isInvalid() &&
5026            "should be able to convert any integer type to size type");
5027     return ConvExpr.get();
5028   };
5029 
5030   auto *MTy = Base->getType()->getAs<ConstantMatrixType>();
5031   RowIdx = IsIndexValid(RowIdx, MTy->getNumRows(), false);
5032   ColumnIdx = IsIndexValid(ColumnIdx, MTy->getNumColumns(), true);
5033   if (!RowIdx || !ColumnIdx)
5034     return ExprError();
5035 
5036   return new (Context) MatrixSubscriptExpr(Base, RowIdx, ColumnIdx,
5037                                            MTy->getElementType(), RBLoc);
5038 }
5039 
5040 void Sema::CheckAddressOfNoDeref(const Expr *E) {
5041   ExpressionEvaluationContextRecord &LastRecord = ExprEvalContexts.back();
5042   const Expr *StrippedExpr = E->IgnoreParenImpCasts();
5043 
5044   // For expressions like `&(*s).b`, the base is recorded and what should be
5045   // checked.
5046   const MemberExpr *Member = nullptr;
5047   while ((Member = dyn_cast<MemberExpr>(StrippedExpr)) && !Member->isArrow())
5048     StrippedExpr = Member->getBase()->IgnoreParenImpCasts();
5049 
5050   LastRecord.PossibleDerefs.erase(StrippedExpr);
5051 }
5052 
5053 void Sema::CheckSubscriptAccessOfNoDeref(const ArraySubscriptExpr *E) {
5054   if (isUnevaluatedContext())
5055     return;
5056 
5057   QualType ResultTy = E->getType();
5058   ExpressionEvaluationContextRecord &LastRecord = ExprEvalContexts.back();
5059 
5060   // Bail if the element is an array since it is not memory access.
5061   if (isa<ArrayType>(ResultTy))
5062     return;
5063 
5064   if (ResultTy->hasAttr(attr::NoDeref)) {
5065     LastRecord.PossibleDerefs.insert(E);
5066     return;
5067   }
5068 
5069   // Check if the base type is a pointer to a member access of a struct
5070   // marked with noderef.
5071   const Expr *Base = E->getBase();
5072   QualType BaseTy = Base->getType();
5073   if (!(isa<ArrayType>(BaseTy) || isa<PointerType>(BaseTy)))
5074     // Not a pointer access
5075     return;
5076 
5077   const MemberExpr *Member = nullptr;
5078   while ((Member = dyn_cast<MemberExpr>(Base->IgnoreParenCasts())) &&
5079          Member->isArrow())
5080     Base = Member->getBase();
5081 
5082   if (const auto *Ptr = dyn_cast<PointerType>(Base->getType())) {
5083     if (Ptr->getPointeeType()->hasAttr(attr::NoDeref))
5084       LastRecord.PossibleDerefs.insert(E);
5085   }
5086 }
5087 
5088 ExprResult Sema::ActOnOMPArraySectionExpr(Expr *Base, SourceLocation LBLoc,
5089                                           Expr *LowerBound,
5090                                           SourceLocation ColonLocFirst,
5091                                           SourceLocation ColonLocSecond,
5092                                           Expr *Length, Expr *Stride,
5093                                           SourceLocation RBLoc) {
5094   if (Base->hasPlaceholderType() &&
5095       !Base->hasPlaceholderType(BuiltinType::OMPArraySection)) {
5096     ExprResult Result = CheckPlaceholderExpr(Base);
5097     if (Result.isInvalid())
5098       return ExprError();
5099     Base = Result.get();
5100   }
5101   if (LowerBound && LowerBound->getType()->isNonOverloadPlaceholderType()) {
5102     ExprResult Result = CheckPlaceholderExpr(LowerBound);
5103     if (Result.isInvalid())
5104       return ExprError();
5105     Result = DefaultLvalueConversion(Result.get());
5106     if (Result.isInvalid())
5107       return ExprError();
5108     LowerBound = Result.get();
5109   }
5110   if (Length && Length->getType()->isNonOverloadPlaceholderType()) {
5111     ExprResult Result = CheckPlaceholderExpr(Length);
5112     if (Result.isInvalid())
5113       return ExprError();
5114     Result = DefaultLvalueConversion(Result.get());
5115     if (Result.isInvalid())
5116       return ExprError();
5117     Length = Result.get();
5118   }
5119   if (Stride && Stride->getType()->isNonOverloadPlaceholderType()) {
5120     ExprResult Result = CheckPlaceholderExpr(Stride);
5121     if (Result.isInvalid())
5122       return ExprError();
5123     Result = DefaultLvalueConversion(Result.get());
5124     if (Result.isInvalid())
5125       return ExprError();
5126     Stride = Result.get();
5127   }
5128 
5129   // Build an unanalyzed expression if either operand is type-dependent.
5130   if (Base->isTypeDependent() ||
5131       (LowerBound &&
5132        (LowerBound->isTypeDependent() || LowerBound->isValueDependent())) ||
5133       (Length && (Length->isTypeDependent() || Length->isValueDependent())) ||
5134       (Stride && (Stride->isTypeDependent() || Stride->isValueDependent()))) {
5135     return new (Context) OMPArraySectionExpr(
5136         Base, LowerBound, Length, Stride, Context.DependentTy, VK_LValue,
5137         OK_Ordinary, ColonLocFirst, ColonLocSecond, RBLoc);
5138   }
5139 
5140   // Perform default conversions.
5141   QualType OriginalTy = OMPArraySectionExpr::getBaseOriginalType(Base);
5142   QualType ResultTy;
5143   if (OriginalTy->isAnyPointerType()) {
5144     ResultTy = OriginalTy->getPointeeType();
5145   } else if (OriginalTy->isArrayType()) {
5146     ResultTy = OriginalTy->getAsArrayTypeUnsafe()->getElementType();
5147   } else {
5148     return ExprError(
5149         Diag(Base->getExprLoc(), diag::err_omp_typecheck_section_value)
5150         << Base->getSourceRange());
5151   }
5152   // C99 6.5.2.1p1
5153   if (LowerBound) {
5154     auto Res = PerformOpenMPImplicitIntegerConversion(LowerBound->getExprLoc(),
5155                                                       LowerBound);
5156     if (Res.isInvalid())
5157       return ExprError(Diag(LowerBound->getExprLoc(),
5158                             diag::err_omp_typecheck_section_not_integer)
5159                        << 0 << LowerBound->getSourceRange());
5160     LowerBound = Res.get();
5161 
5162     if (LowerBound->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
5163         LowerBound->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
5164       Diag(LowerBound->getExprLoc(), diag::warn_omp_section_is_char)
5165           << 0 << LowerBound->getSourceRange();
5166   }
5167   if (Length) {
5168     auto Res =
5169         PerformOpenMPImplicitIntegerConversion(Length->getExprLoc(), Length);
5170     if (Res.isInvalid())
5171       return ExprError(Diag(Length->getExprLoc(),
5172                             diag::err_omp_typecheck_section_not_integer)
5173                        << 1 << Length->getSourceRange());
5174     Length = Res.get();
5175 
5176     if (Length->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
5177         Length->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
5178       Diag(Length->getExprLoc(), diag::warn_omp_section_is_char)
5179           << 1 << Length->getSourceRange();
5180   }
5181   if (Stride) {
5182     ExprResult Res =
5183         PerformOpenMPImplicitIntegerConversion(Stride->getExprLoc(), Stride);
5184     if (Res.isInvalid())
5185       return ExprError(Diag(Stride->getExprLoc(),
5186                             diag::err_omp_typecheck_section_not_integer)
5187                        << 1 << Stride->getSourceRange());
5188     Stride = Res.get();
5189 
5190     if (Stride->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
5191         Stride->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
5192       Diag(Stride->getExprLoc(), diag::warn_omp_section_is_char)
5193           << 1 << Stride->getSourceRange();
5194   }
5195 
5196   // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
5197   // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
5198   // type. Note that functions are not objects, and that (in C99 parlance)
5199   // incomplete types are not object types.
5200   if (ResultTy->isFunctionType()) {
5201     Diag(Base->getExprLoc(), diag::err_omp_section_function_type)
5202         << ResultTy << Base->getSourceRange();
5203     return ExprError();
5204   }
5205 
5206   if (RequireCompleteType(Base->getExprLoc(), ResultTy,
5207                           diag::err_omp_section_incomplete_type, Base))
5208     return ExprError();
5209 
5210   if (LowerBound && !OriginalTy->isAnyPointerType()) {
5211     Expr::EvalResult Result;
5212     if (LowerBound->EvaluateAsInt(Result, Context)) {
5213       // OpenMP 5.0, [2.1.5 Array Sections]
5214       // The array section must be a subset of the original array.
5215       llvm::APSInt LowerBoundValue = Result.Val.getInt();
5216       if (LowerBoundValue.isNegative()) {
5217         Diag(LowerBound->getExprLoc(), diag::err_omp_section_not_subset_of_array)
5218             << LowerBound->getSourceRange();
5219         return ExprError();
5220       }
5221     }
5222   }
5223 
5224   if (Length) {
5225     Expr::EvalResult Result;
5226     if (Length->EvaluateAsInt(Result, Context)) {
5227       // OpenMP 5.0, [2.1.5 Array Sections]
5228       // The length must evaluate to non-negative integers.
5229       llvm::APSInt LengthValue = Result.Val.getInt();
5230       if (LengthValue.isNegative()) {
5231         Diag(Length->getExprLoc(), diag::err_omp_section_length_negative)
5232             << toString(LengthValue, /*Radix=*/10, /*Signed=*/true)
5233             << Length->getSourceRange();
5234         return ExprError();
5235       }
5236     }
5237   } else if (ColonLocFirst.isValid() &&
5238              (OriginalTy.isNull() || (!OriginalTy->isConstantArrayType() &&
5239                                       !OriginalTy->isVariableArrayType()))) {
5240     // OpenMP 5.0, [2.1.5 Array Sections]
5241     // When the size of the array dimension is not known, the length must be
5242     // specified explicitly.
5243     Diag(ColonLocFirst, diag::err_omp_section_length_undefined)
5244         << (!OriginalTy.isNull() && OriginalTy->isArrayType());
5245     return ExprError();
5246   }
5247 
5248   if (Stride) {
5249     Expr::EvalResult Result;
5250     if (Stride->EvaluateAsInt(Result, Context)) {
5251       // OpenMP 5.0, [2.1.5 Array Sections]
5252       // The stride must evaluate to a positive integer.
5253       llvm::APSInt StrideValue = Result.Val.getInt();
5254       if (!StrideValue.isStrictlyPositive()) {
5255         Diag(Stride->getExprLoc(), diag::err_omp_section_stride_non_positive)
5256             << toString(StrideValue, /*Radix=*/10, /*Signed=*/true)
5257             << Stride->getSourceRange();
5258         return ExprError();
5259       }
5260     }
5261   }
5262 
5263   if (!Base->hasPlaceholderType(BuiltinType::OMPArraySection)) {
5264     ExprResult Result = DefaultFunctionArrayLvalueConversion(Base);
5265     if (Result.isInvalid())
5266       return ExprError();
5267     Base = Result.get();
5268   }
5269   return new (Context) OMPArraySectionExpr(
5270       Base, LowerBound, Length, Stride, Context.OMPArraySectionTy, VK_LValue,
5271       OK_Ordinary, ColonLocFirst, ColonLocSecond, RBLoc);
5272 }
5273 
5274 ExprResult Sema::ActOnOMPArrayShapingExpr(Expr *Base, SourceLocation LParenLoc,
5275                                           SourceLocation RParenLoc,
5276                                           ArrayRef<Expr *> Dims,
5277                                           ArrayRef<SourceRange> Brackets) {
5278   if (Base->hasPlaceholderType()) {
5279     ExprResult Result = CheckPlaceholderExpr(Base);
5280     if (Result.isInvalid())
5281       return ExprError();
5282     Result = DefaultLvalueConversion(Result.get());
5283     if (Result.isInvalid())
5284       return ExprError();
5285     Base = Result.get();
5286   }
5287   QualType BaseTy = Base->getType();
5288   // Delay analysis of the types/expressions if instantiation/specialization is
5289   // required.
5290   if (!BaseTy->isPointerType() && Base->isTypeDependent())
5291     return OMPArrayShapingExpr::Create(Context, Context.DependentTy, Base,
5292                                        LParenLoc, RParenLoc, Dims, Brackets);
5293   if (!BaseTy->isPointerType() ||
5294       (!Base->isTypeDependent() &&
5295        BaseTy->getPointeeType()->isIncompleteType()))
5296     return ExprError(Diag(Base->getExprLoc(),
5297                           diag::err_omp_non_pointer_type_array_shaping_base)
5298                      << Base->getSourceRange());
5299 
5300   SmallVector<Expr *, 4> NewDims;
5301   bool ErrorFound = false;
5302   for (Expr *Dim : Dims) {
5303     if (Dim->hasPlaceholderType()) {
5304       ExprResult Result = CheckPlaceholderExpr(Dim);
5305       if (Result.isInvalid()) {
5306         ErrorFound = true;
5307         continue;
5308       }
5309       Result = DefaultLvalueConversion(Result.get());
5310       if (Result.isInvalid()) {
5311         ErrorFound = true;
5312         continue;
5313       }
5314       Dim = Result.get();
5315     }
5316     if (!Dim->isTypeDependent()) {
5317       ExprResult Result =
5318           PerformOpenMPImplicitIntegerConversion(Dim->getExprLoc(), Dim);
5319       if (Result.isInvalid()) {
5320         ErrorFound = true;
5321         Diag(Dim->getExprLoc(), diag::err_omp_typecheck_shaping_not_integer)
5322             << Dim->getSourceRange();
5323         continue;
5324       }
5325       Dim = Result.get();
5326       Expr::EvalResult EvResult;
5327       if (!Dim->isValueDependent() && Dim->EvaluateAsInt(EvResult, Context)) {
5328         // OpenMP 5.0, [2.1.4 Array Shaping]
5329         // Each si is an integral type expression that must evaluate to a
5330         // positive integer.
5331         llvm::APSInt Value = EvResult.Val.getInt();
5332         if (!Value.isStrictlyPositive()) {
5333           Diag(Dim->getExprLoc(), diag::err_omp_shaping_dimension_not_positive)
5334               << toString(Value, /*Radix=*/10, /*Signed=*/true)
5335               << Dim->getSourceRange();
5336           ErrorFound = true;
5337           continue;
5338         }
5339       }
5340     }
5341     NewDims.push_back(Dim);
5342   }
5343   if (ErrorFound)
5344     return ExprError();
5345   return OMPArrayShapingExpr::Create(Context, Context.OMPArrayShapingTy, Base,
5346                                      LParenLoc, RParenLoc, NewDims, Brackets);
5347 }
5348 
5349 ExprResult Sema::ActOnOMPIteratorExpr(Scope *S, SourceLocation IteratorKwLoc,
5350                                       SourceLocation LLoc, SourceLocation RLoc,
5351                                       ArrayRef<OMPIteratorData> Data) {
5352   SmallVector<OMPIteratorExpr::IteratorDefinition, 4> ID;
5353   bool IsCorrect = true;
5354   for (const OMPIteratorData &D : Data) {
5355     TypeSourceInfo *TInfo = nullptr;
5356     SourceLocation StartLoc;
5357     QualType DeclTy;
5358     if (!D.Type.getAsOpaquePtr()) {
5359       // OpenMP 5.0, 2.1.6 Iterators
5360       // In an iterator-specifier, if the iterator-type is not specified then
5361       // the type of that iterator is of int type.
5362       DeclTy = Context.IntTy;
5363       StartLoc = D.DeclIdentLoc;
5364     } else {
5365       DeclTy = GetTypeFromParser(D.Type, &TInfo);
5366       StartLoc = TInfo->getTypeLoc().getBeginLoc();
5367     }
5368 
5369     bool IsDeclTyDependent = DeclTy->isDependentType() ||
5370                              DeclTy->containsUnexpandedParameterPack() ||
5371                              DeclTy->isInstantiationDependentType();
5372     if (!IsDeclTyDependent) {
5373       if (!DeclTy->isIntegralType(Context) && !DeclTy->isAnyPointerType()) {
5374         // OpenMP 5.0, 2.1.6 Iterators, Restrictions, C/C++
5375         // The iterator-type must be an integral or pointer type.
5376         Diag(StartLoc, diag::err_omp_iterator_not_integral_or_pointer)
5377             << DeclTy;
5378         IsCorrect = false;
5379         continue;
5380       }
5381       if (DeclTy.isConstant(Context)) {
5382         // OpenMP 5.0, 2.1.6 Iterators, Restrictions, C/C++
5383         // The iterator-type must not be const qualified.
5384         Diag(StartLoc, diag::err_omp_iterator_not_integral_or_pointer)
5385             << DeclTy;
5386         IsCorrect = false;
5387         continue;
5388       }
5389     }
5390 
5391     // Iterator declaration.
5392     assert(D.DeclIdent && "Identifier expected.");
5393     // Always try to create iterator declarator to avoid extra error messages
5394     // about unknown declarations use.
5395     auto *VD = VarDecl::Create(Context, CurContext, StartLoc, D.DeclIdentLoc,
5396                                D.DeclIdent, DeclTy, TInfo, SC_None);
5397     VD->setImplicit();
5398     if (S) {
5399       // Check for conflicting previous declaration.
5400       DeclarationNameInfo NameInfo(VD->getDeclName(), D.DeclIdentLoc);
5401       LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
5402                             ForVisibleRedeclaration);
5403       Previous.suppressDiagnostics();
5404       LookupName(Previous, S);
5405 
5406       FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage=*/false,
5407                            /*AllowInlineNamespace=*/false);
5408       if (!Previous.empty()) {
5409         NamedDecl *Old = Previous.getRepresentativeDecl();
5410         Diag(D.DeclIdentLoc, diag::err_redefinition) << VD->getDeclName();
5411         Diag(Old->getLocation(), diag::note_previous_definition);
5412       } else {
5413         PushOnScopeChains(VD, S);
5414       }
5415     } else {
5416       CurContext->addDecl(VD);
5417     }
5418     Expr *Begin = D.Range.Begin;
5419     if (!IsDeclTyDependent && Begin && !Begin->isTypeDependent()) {
5420       ExprResult BeginRes =
5421           PerformImplicitConversion(Begin, DeclTy, AA_Converting);
5422       Begin = BeginRes.get();
5423     }
5424     Expr *End = D.Range.End;
5425     if (!IsDeclTyDependent && End && !End->isTypeDependent()) {
5426       ExprResult EndRes = PerformImplicitConversion(End, DeclTy, AA_Converting);
5427       End = EndRes.get();
5428     }
5429     Expr *Step = D.Range.Step;
5430     if (!IsDeclTyDependent && Step && !Step->isTypeDependent()) {
5431       if (!Step->getType()->isIntegralType(Context)) {
5432         Diag(Step->getExprLoc(), diag::err_omp_iterator_step_not_integral)
5433             << Step << Step->getSourceRange();
5434         IsCorrect = false;
5435         continue;
5436       }
5437       Optional<llvm::APSInt> Result = Step->getIntegerConstantExpr(Context);
5438       // OpenMP 5.0, 2.1.6 Iterators, Restrictions
5439       // If the step expression of a range-specification equals zero, the
5440       // behavior is unspecified.
5441       if (Result && Result->isZero()) {
5442         Diag(Step->getExprLoc(), diag::err_omp_iterator_step_constant_zero)
5443             << Step << Step->getSourceRange();
5444         IsCorrect = false;
5445         continue;
5446       }
5447     }
5448     if (!Begin || !End || !IsCorrect) {
5449       IsCorrect = false;
5450       continue;
5451     }
5452     OMPIteratorExpr::IteratorDefinition &IDElem = ID.emplace_back();
5453     IDElem.IteratorDecl = VD;
5454     IDElem.AssignmentLoc = D.AssignLoc;
5455     IDElem.Range.Begin = Begin;
5456     IDElem.Range.End = End;
5457     IDElem.Range.Step = Step;
5458     IDElem.ColonLoc = D.ColonLoc;
5459     IDElem.SecondColonLoc = D.SecColonLoc;
5460   }
5461   if (!IsCorrect) {
5462     // Invalidate all created iterator declarations if error is found.
5463     for (const OMPIteratorExpr::IteratorDefinition &D : ID) {
5464       if (Decl *ID = D.IteratorDecl)
5465         ID->setInvalidDecl();
5466     }
5467     return ExprError();
5468   }
5469   SmallVector<OMPIteratorHelperData, 4> Helpers;
5470   if (!CurContext->isDependentContext()) {
5471     // Build number of ityeration for each iteration range.
5472     // Ni = ((Stepi > 0) ? ((Endi + Stepi -1 - Begini)/Stepi) :
5473     // ((Begini-Stepi-1-Endi) / -Stepi);
5474     for (OMPIteratorExpr::IteratorDefinition &D : ID) {
5475       // (Endi - Begini)
5476       ExprResult Res = CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, D.Range.End,
5477                                           D.Range.Begin);
5478       if(!Res.isUsable()) {
5479         IsCorrect = false;
5480         continue;
5481       }
5482       ExprResult St, St1;
5483       if (D.Range.Step) {
5484         St = D.Range.Step;
5485         // (Endi - Begini) + Stepi
5486         Res = CreateBuiltinBinOp(D.AssignmentLoc, BO_Add, Res.get(), St.get());
5487         if (!Res.isUsable()) {
5488           IsCorrect = false;
5489           continue;
5490         }
5491         // (Endi - Begini) + Stepi - 1
5492         Res =
5493             CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, Res.get(),
5494                                ActOnIntegerConstant(D.AssignmentLoc, 1).get());
5495         if (!Res.isUsable()) {
5496           IsCorrect = false;
5497           continue;
5498         }
5499         // ((Endi - Begini) + Stepi - 1) / Stepi
5500         Res = CreateBuiltinBinOp(D.AssignmentLoc, BO_Div, Res.get(), St.get());
5501         if (!Res.isUsable()) {
5502           IsCorrect = false;
5503           continue;
5504         }
5505         St1 = CreateBuiltinUnaryOp(D.AssignmentLoc, UO_Minus, D.Range.Step);
5506         // (Begini - Endi)
5507         ExprResult Res1 = CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub,
5508                                              D.Range.Begin, D.Range.End);
5509         if (!Res1.isUsable()) {
5510           IsCorrect = false;
5511           continue;
5512         }
5513         // (Begini - Endi) - Stepi
5514         Res1 =
5515             CreateBuiltinBinOp(D.AssignmentLoc, BO_Add, Res1.get(), St1.get());
5516         if (!Res1.isUsable()) {
5517           IsCorrect = false;
5518           continue;
5519         }
5520         // (Begini - Endi) - Stepi - 1
5521         Res1 =
5522             CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, Res1.get(),
5523                                ActOnIntegerConstant(D.AssignmentLoc, 1).get());
5524         if (!Res1.isUsable()) {
5525           IsCorrect = false;
5526           continue;
5527         }
5528         // ((Begini - Endi) - Stepi - 1) / (-Stepi)
5529         Res1 =
5530             CreateBuiltinBinOp(D.AssignmentLoc, BO_Div, Res1.get(), St1.get());
5531         if (!Res1.isUsable()) {
5532           IsCorrect = false;
5533           continue;
5534         }
5535         // Stepi > 0.
5536         ExprResult CmpRes =
5537             CreateBuiltinBinOp(D.AssignmentLoc, BO_GT, D.Range.Step,
5538                                ActOnIntegerConstant(D.AssignmentLoc, 0).get());
5539         if (!CmpRes.isUsable()) {
5540           IsCorrect = false;
5541           continue;
5542         }
5543         Res = ActOnConditionalOp(D.AssignmentLoc, D.AssignmentLoc, CmpRes.get(),
5544                                  Res.get(), Res1.get());
5545         if (!Res.isUsable()) {
5546           IsCorrect = false;
5547           continue;
5548         }
5549       }
5550       Res = ActOnFinishFullExpr(Res.get(), /*DiscardedValue=*/false);
5551       if (!Res.isUsable()) {
5552         IsCorrect = false;
5553         continue;
5554       }
5555 
5556       // Build counter update.
5557       // Build counter.
5558       auto *CounterVD =
5559           VarDecl::Create(Context, CurContext, D.IteratorDecl->getBeginLoc(),
5560                           D.IteratorDecl->getBeginLoc(), nullptr,
5561                           Res.get()->getType(), nullptr, SC_None);
5562       CounterVD->setImplicit();
5563       ExprResult RefRes =
5564           BuildDeclRefExpr(CounterVD, CounterVD->getType(), VK_LValue,
5565                            D.IteratorDecl->getBeginLoc());
5566       // Build counter update.
5567       // I = Begini + counter * Stepi;
5568       ExprResult UpdateRes;
5569       if (D.Range.Step) {
5570         UpdateRes = CreateBuiltinBinOp(
5571             D.AssignmentLoc, BO_Mul,
5572             DefaultLvalueConversion(RefRes.get()).get(), St.get());
5573       } else {
5574         UpdateRes = DefaultLvalueConversion(RefRes.get());
5575       }
5576       if (!UpdateRes.isUsable()) {
5577         IsCorrect = false;
5578         continue;
5579       }
5580       UpdateRes = CreateBuiltinBinOp(D.AssignmentLoc, BO_Add, D.Range.Begin,
5581                                      UpdateRes.get());
5582       if (!UpdateRes.isUsable()) {
5583         IsCorrect = false;
5584         continue;
5585       }
5586       ExprResult VDRes =
5587           BuildDeclRefExpr(cast<VarDecl>(D.IteratorDecl),
5588                            cast<VarDecl>(D.IteratorDecl)->getType(), VK_LValue,
5589                            D.IteratorDecl->getBeginLoc());
5590       UpdateRes = CreateBuiltinBinOp(D.AssignmentLoc, BO_Assign, VDRes.get(),
5591                                      UpdateRes.get());
5592       if (!UpdateRes.isUsable()) {
5593         IsCorrect = false;
5594         continue;
5595       }
5596       UpdateRes =
5597           ActOnFinishFullExpr(UpdateRes.get(), /*DiscardedValue=*/true);
5598       if (!UpdateRes.isUsable()) {
5599         IsCorrect = false;
5600         continue;
5601       }
5602       ExprResult CounterUpdateRes =
5603           CreateBuiltinUnaryOp(D.AssignmentLoc, UO_PreInc, RefRes.get());
5604       if (!CounterUpdateRes.isUsable()) {
5605         IsCorrect = false;
5606         continue;
5607       }
5608       CounterUpdateRes =
5609           ActOnFinishFullExpr(CounterUpdateRes.get(), /*DiscardedValue=*/true);
5610       if (!CounterUpdateRes.isUsable()) {
5611         IsCorrect = false;
5612         continue;
5613       }
5614       OMPIteratorHelperData &HD = Helpers.emplace_back();
5615       HD.CounterVD = CounterVD;
5616       HD.Upper = Res.get();
5617       HD.Update = UpdateRes.get();
5618       HD.CounterUpdate = CounterUpdateRes.get();
5619     }
5620   } else {
5621     Helpers.assign(ID.size(), {});
5622   }
5623   if (!IsCorrect) {
5624     // Invalidate all created iterator declarations if error is found.
5625     for (const OMPIteratorExpr::IteratorDefinition &D : ID) {
5626       if (Decl *ID = D.IteratorDecl)
5627         ID->setInvalidDecl();
5628     }
5629     return ExprError();
5630   }
5631   return OMPIteratorExpr::Create(Context, Context.OMPIteratorTy, IteratorKwLoc,
5632                                  LLoc, RLoc, ID, Helpers);
5633 }
5634 
5635 ExprResult
5636 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc,
5637                                       Expr *Idx, SourceLocation RLoc) {
5638   Expr *LHSExp = Base;
5639   Expr *RHSExp = Idx;
5640 
5641   ExprValueKind VK = VK_LValue;
5642   ExprObjectKind OK = OK_Ordinary;
5643 
5644   // Per C++ core issue 1213, the result is an xvalue if either operand is
5645   // a non-lvalue array, and an lvalue otherwise.
5646   if (getLangOpts().CPlusPlus11) {
5647     for (auto *Op : {LHSExp, RHSExp}) {
5648       Op = Op->IgnoreImplicit();
5649       if (Op->getType()->isArrayType() && !Op->isLValue())
5650         VK = VK_XValue;
5651     }
5652   }
5653 
5654   // Perform default conversions.
5655   if (!LHSExp->getType()->getAs<VectorType>()) {
5656     ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp);
5657     if (Result.isInvalid())
5658       return ExprError();
5659     LHSExp = Result.get();
5660   }
5661   ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp);
5662   if (Result.isInvalid())
5663     return ExprError();
5664   RHSExp = Result.get();
5665 
5666   QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
5667 
5668   // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
5669   // to the expression *((e1)+(e2)). This means the array "Base" may actually be
5670   // in the subscript position. As a result, we need to derive the array base
5671   // and index from the expression types.
5672   Expr *BaseExpr, *IndexExpr;
5673   QualType ResultType;
5674   if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
5675     BaseExpr = LHSExp;
5676     IndexExpr = RHSExp;
5677     ResultType =
5678         getDependentArraySubscriptType(LHSExp, RHSExp, getASTContext());
5679   } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
5680     BaseExpr = LHSExp;
5681     IndexExpr = RHSExp;
5682     ResultType = PTy->getPointeeType();
5683   } else if (const ObjCObjectPointerType *PTy =
5684                LHSTy->getAs<ObjCObjectPointerType>()) {
5685     BaseExpr = LHSExp;
5686     IndexExpr = RHSExp;
5687 
5688     // Use custom logic if this should be the pseudo-object subscript
5689     // expression.
5690     if (!LangOpts.isSubscriptPointerArithmetic())
5691       return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr,
5692                                           nullptr);
5693 
5694     ResultType = PTy->getPointeeType();
5695   } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
5696      // Handle the uncommon case of "123[Ptr]".
5697     BaseExpr = RHSExp;
5698     IndexExpr = LHSExp;
5699     ResultType = PTy->getPointeeType();
5700   } else if (const ObjCObjectPointerType *PTy =
5701                RHSTy->getAs<ObjCObjectPointerType>()) {
5702      // Handle the uncommon case of "123[Ptr]".
5703     BaseExpr = RHSExp;
5704     IndexExpr = LHSExp;
5705     ResultType = PTy->getPointeeType();
5706     if (!LangOpts.isSubscriptPointerArithmetic()) {
5707       Diag(LLoc, diag::err_subscript_nonfragile_interface)
5708         << ResultType << BaseExpr->getSourceRange();
5709       return ExprError();
5710     }
5711   } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
5712     BaseExpr = LHSExp;    // vectors: V[123]
5713     IndexExpr = RHSExp;
5714     // We apply C++ DR1213 to vector subscripting too.
5715     if (getLangOpts().CPlusPlus11 && LHSExp->isPRValue()) {
5716       ExprResult Materialized = TemporaryMaterializationConversion(LHSExp);
5717       if (Materialized.isInvalid())
5718         return ExprError();
5719       LHSExp = Materialized.get();
5720     }
5721     VK = LHSExp->getValueKind();
5722     if (VK != VK_PRValue)
5723       OK = OK_VectorComponent;
5724 
5725     ResultType = VTy->getElementType();
5726     QualType BaseType = BaseExpr->getType();
5727     Qualifiers BaseQuals = BaseType.getQualifiers();
5728     Qualifiers MemberQuals = ResultType.getQualifiers();
5729     Qualifiers Combined = BaseQuals + MemberQuals;
5730     if (Combined != MemberQuals)
5731       ResultType = Context.getQualifiedType(ResultType, Combined);
5732   } else if (LHSTy->isBuiltinType() &&
5733              LHSTy->getAs<BuiltinType>()->isVLSTBuiltinType()) {
5734     const BuiltinType *BTy = LHSTy->getAs<BuiltinType>();
5735     if (BTy->isSVEBool())
5736       return ExprError(Diag(LLoc, diag::err_subscript_svbool_t)
5737                        << LHSExp->getSourceRange() << RHSExp->getSourceRange());
5738 
5739     BaseExpr = LHSExp;
5740     IndexExpr = RHSExp;
5741     if (getLangOpts().CPlusPlus11 && LHSExp->isPRValue()) {
5742       ExprResult Materialized = TemporaryMaterializationConversion(LHSExp);
5743       if (Materialized.isInvalid())
5744         return ExprError();
5745       LHSExp = Materialized.get();
5746     }
5747     VK = LHSExp->getValueKind();
5748     if (VK != VK_PRValue)
5749       OK = OK_VectorComponent;
5750 
5751     ResultType = BTy->getSveEltType(Context);
5752 
5753     QualType BaseType = BaseExpr->getType();
5754     Qualifiers BaseQuals = BaseType.getQualifiers();
5755     Qualifiers MemberQuals = ResultType.getQualifiers();
5756     Qualifiers Combined = BaseQuals + MemberQuals;
5757     if (Combined != MemberQuals)
5758       ResultType = Context.getQualifiedType(ResultType, Combined);
5759   } else if (LHSTy->isArrayType()) {
5760     // If we see an array that wasn't promoted by
5761     // DefaultFunctionArrayLvalueConversion, it must be an array that
5762     // wasn't promoted because of the C90 rule that doesn't
5763     // allow promoting non-lvalue arrays.  Warn, then
5764     // force the promotion here.
5765     Diag(LHSExp->getBeginLoc(), diag::ext_subscript_non_lvalue)
5766         << LHSExp->getSourceRange();
5767     LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
5768                                CK_ArrayToPointerDecay).get();
5769     LHSTy = LHSExp->getType();
5770 
5771     BaseExpr = LHSExp;
5772     IndexExpr = RHSExp;
5773     ResultType = LHSTy->castAs<PointerType>()->getPointeeType();
5774   } else if (RHSTy->isArrayType()) {
5775     // Same as previous, except for 123[f().a] case
5776     Diag(RHSExp->getBeginLoc(), diag::ext_subscript_non_lvalue)
5777         << RHSExp->getSourceRange();
5778     RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
5779                                CK_ArrayToPointerDecay).get();
5780     RHSTy = RHSExp->getType();
5781 
5782     BaseExpr = RHSExp;
5783     IndexExpr = LHSExp;
5784     ResultType = RHSTy->castAs<PointerType>()->getPointeeType();
5785   } else {
5786     return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
5787        << LHSExp->getSourceRange() << RHSExp->getSourceRange());
5788   }
5789   // C99 6.5.2.1p1
5790   if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
5791     return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
5792                      << IndexExpr->getSourceRange());
5793 
5794   if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
5795        IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
5796          && !IndexExpr->isTypeDependent())
5797     Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
5798 
5799   // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
5800   // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
5801   // type. Note that Functions are not objects, and that (in C99 parlance)
5802   // incomplete types are not object types.
5803   if (ResultType->isFunctionType()) {
5804     Diag(BaseExpr->getBeginLoc(), diag::err_subscript_function_type)
5805         << ResultType << BaseExpr->getSourceRange();
5806     return ExprError();
5807   }
5808 
5809   if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) {
5810     // GNU extension: subscripting on pointer to void
5811     Diag(LLoc, diag::ext_gnu_subscript_void_type)
5812       << BaseExpr->getSourceRange();
5813 
5814     // C forbids expressions of unqualified void type from being l-values.
5815     // See IsCForbiddenLValueType.
5816     if (!ResultType.hasQualifiers())
5817       VK = VK_PRValue;
5818   } else if (!ResultType->isDependentType() &&
5819              RequireCompleteSizedType(
5820                  LLoc, ResultType,
5821                  diag::err_subscript_incomplete_or_sizeless_type, BaseExpr))
5822     return ExprError();
5823 
5824   assert(VK == VK_PRValue || LangOpts.CPlusPlus ||
5825          !ResultType.isCForbiddenLValueType());
5826 
5827   if (LHSExp->IgnoreParenImpCasts()->getType()->isVariablyModifiedType() &&
5828       FunctionScopes.size() > 1) {
5829     if (auto *TT =
5830             LHSExp->IgnoreParenImpCasts()->getType()->getAs<TypedefType>()) {
5831       for (auto I = FunctionScopes.rbegin(),
5832                 E = std::prev(FunctionScopes.rend());
5833            I != E; ++I) {
5834         auto *CSI = dyn_cast<CapturingScopeInfo>(*I);
5835         if (CSI == nullptr)
5836           break;
5837         DeclContext *DC = nullptr;
5838         if (auto *LSI = dyn_cast<LambdaScopeInfo>(CSI))
5839           DC = LSI->CallOperator;
5840         else if (auto *CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI))
5841           DC = CRSI->TheCapturedDecl;
5842         else if (auto *BSI = dyn_cast<BlockScopeInfo>(CSI))
5843           DC = BSI->TheDecl;
5844         if (DC) {
5845           if (DC->containsDecl(TT->getDecl()))
5846             break;
5847           captureVariablyModifiedType(
5848               Context, LHSExp->IgnoreParenImpCasts()->getType(), CSI);
5849         }
5850       }
5851     }
5852   }
5853 
5854   return new (Context)
5855       ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc);
5856 }
5857 
5858 bool Sema::CheckCXXDefaultArgExpr(SourceLocation CallLoc, FunctionDecl *FD,
5859                                   ParmVarDecl *Param) {
5860   if (Param->hasUnparsedDefaultArg()) {
5861     // If we've already cleared out the location for the default argument,
5862     // that means we're parsing it right now.
5863     if (!UnparsedDefaultArgLocs.count(Param)) {
5864       Diag(Param->getBeginLoc(), diag::err_recursive_default_argument) << FD;
5865       Diag(CallLoc, diag::note_recursive_default_argument_used_here);
5866       Param->setInvalidDecl();
5867       return true;
5868     }
5869 
5870     Diag(CallLoc, diag::err_use_of_default_argument_to_function_declared_later)
5871         << FD << cast<CXXRecordDecl>(FD->getDeclContext());
5872     Diag(UnparsedDefaultArgLocs[Param],
5873          diag::note_default_argument_declared_here);
5874     return true;
5875   }
5876 
5877   if (Param->hasUninstantiatedDefaultArg() &&
5878       InstantiateDefaultArgument(CallLoc, FD, Param))
5879     return true;
5880 
5881   assert(Param->hasInit() && "default argument but no initializer?");
5882 
5883   // If the default expression creates temporaries, we need to
5884   // push them to the current stack of expression temporaries so they'll
5885   // be properly destroyed.
5886   // FIXME: We should really be rebuilding the default argument with new
5887   // bound temporaries; see the comment in PR5810.
5888   // We don't need to do that with block decls, though, because
5889   // blocks in default argument expression can never capture anything.
5890   if (auto Init = dyn_cast<ExprWithCleanups>(Param->getInit())) {
5891     // Set the "needs cleanups" bit regardless of whether there are
5892     // any explicit objects.
5893     Cleanup.setExprNeedsCleanups(Init->cleanupsHaveSideEffects());
5894 
5895     // Append all the objects to the cleanup list.  Right now, this
5896     // should always be a no-op, because blocks in default argument
5897     // expressions should never be able to capture anything.
5898     assert(!Init->getNumObjects() &&
5899            "default argument expression has capturing blocks?");
5900   }
5901 
5902   // We already type-checked the argument, so we know it works.
5903   // Just mark all of the declarations in this potentially-evaluated expression
5904   // as being "referenced".
5905   EnterExpressionEvaluationContext EvalContext(
5906       *this, ExpressionEvaluationContext::PotentiallyEvaluated, Param);
5907   MarkDeclarationsReferencedInExpr(Param->getDefaultArg(),
5908                                    /*SkipLocalVariables=*/true);
5909   return false;
5910 }
5911 
5912 ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
5913                                         FunctionDecl *FD, ParmVarDecl *Param) {
5914   assert(Param->hasDefaultArg() && "can't build nonexistent default arg");
5915   if (CheckCXXDefaultArgExpr(CallLoc, FD, Param))
5916     return ExprError();
5917   return CXXDefaultArgExpr::Create(Context, CallLoc, Param, CurContext);
5918 }
5919 
5920 Sema::VariadicCallType
5921 Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto,
5922                           Expr *Fn) {
5923   if (Proto && Proto->isVariadic()) {
5924     if (isa_and_nonnull<CXXConstructorDecl>(FDecl))
5925       return VariadicConstructor;
5926     else if (Fn && Fn->getType()->isBlockPointerType())
5927       return VariadicBlock;
5928     else if (FDecl) {
5929       if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
5930         if (Method->isInstance())
5931           return VariadicMethod;
5932     } else if (Fn && Fn->getType() == Context.BoundMemberTy)
5933       return VariadicMethod;
5934     return VariadicFunction;
5935   }
5936   return VariadicDoesNotApply;
5937 }
5938 
5939 namespace {
5940 class FunctionCallCCC final : public FunctionCallFilterCCC {
5941 public:
5942   FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName,
5943                   unsigned NumArgs, MemberExpr *ME)
5944       : FunctionCallFilterCCC(SemaRef, NumArgs, false, ME),
5945         FunctionName(FuncName) {}
5946 
5947   bool ValidateCandidate(const TypoCorrection &candidate) override {
5948     if (!candidate.getCorrectionSpecifier() ||
5949         candidate.getCorrectionAsIdentifierInfo() != FunctionName) {
5950       return false;
5951     }
5952 
5953     return FunctionCallFilterCCC::ValidateCandidate(candidate);
5954   }
5955 
5956   std::unique_ptr<CorrectionCandidateCallback> clone() override {
5957     return std::make_unique<FunctionCallCCC>(*this);
5958   }
5959 
5960 private:
5961   const IdentifierInfo *const FunctionName;
5962 };
5963 }
5964 
5965 static TypoCorrection TryTypoCorrectionForCall(Sema &S, Expr *Fn,
5966                                                FunctionDecl *FDecl,
5967                                                ArrayRef<Expr *> Args) {
5968   MemberExpr *ME = dyn_cast<MemberExpr>(Fn);
5969   DeclarationName FuncName = FDecl->getDeclName();
5970   SourceLocation NameLoc = ME ? ME->getMemberLoc() : Fn->getBeginLoc();
5971 
5972   FunctionCallCCC CCC(S, FuncName.getAsIdentifierInfo(), Args.size(), ME);
5973   if (TypoCorrection Corrected = S.CorrectTypo(
5974           DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName,
5975           S.getScopeForContext(S.CurContext), nullptr, CCC,
5976           Sema::CTK_ErrorRecovery)) {
5977     if (NamedDecl *ND = Corrected.getFoundDecl()) {
5978       if (Corrected.isOverloaded()) {
5979         OverloadCandidateSet OCS(NameLoc, OverloadCandidateSet::CSK_Normal);
5980         OverloadCandidateSet::iterator Best;
5981         for (NamedDecl *CD : Corrected) {
5982           if (FunctionDecl *FD = dyn_cast<FunctionDecl>(CD))
5983             S.AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), Args,
5984                                    OCS);
5985         }
5986         switch (OCS.BestViableFunction(S, NameLoc, Best)) {
5987         case OR_Success:
5988           ND = Best->FoundDecl;
5989           Corrected.setCorrectionDecl(ND);
5990           break;
5991         default:
5992           break;
5993         }
5994       }
5995       ND = ND->getUnderlyingDecl();
5996       if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND))
5997         return Corrected;
5998     }
5999   }
6000   return TypoCorrection();
6001 }
6002 
6003 /// ConvertArgumentsForCall - Converts the arguments specified in
6004 /// Args/NumArgs to the parameter types of the function FDecl with
6005 /// function prototype Proto. Call is the call expression itself, and
6006 /// Fn is the function expression. For a C++ member function, this
6007 /// routine does not attempt to convert the object argument. Returns
6008 /// true if the call is ill-formed.
6009 bool
6010 Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
6011                               FunctionDecl *FDecl,
6012                               const FunctionProtoType *Proto,
6013                               ArrayRef<Expr *> Args,
6014                               SourceLocation RParenLoc,
6015                               bool IsExecConfig) {
6016   // Bail out early if calling a builtin with custom typechecking.
6017   if (FDecl)
6018     if (unsigned ID = FDecl->getBuiltinID())
6019       if (Context.BuiltinInfo.hasCustomTypechecking(ID))
6020         return false;
6021 
6022   // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
6023   // assignment, to the types of the corresponding parameter, ...
6024   unsigned NumParams = Proto->getNumParams();
6025   bool Invalid = false;
6026   unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumParams;
6027   unsigned FnKind = Fn->getType()->isBlockPointerType()
6028                        ? 1 /* block */
6029                        : (IsExecConfig ? 3 /* kernel function (exec config) */
6030                                        : 0 /* function */);
6031 
6032   // If too few arguments are available (and we don't have default
6033   // arguments for the remaining parameters), don't make the call.
6034   if (Args.size() < NumParams) {
6035     if (Args.size() < MinArgs) {
6036       TypoCorrection TC;
6037       if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) {
6038         unsigned diag_id =
6039             MinArgs == NumParams && !Proto->isVariadic()
6040                 ? diag::err_typecheck_call_too_few_args_suggest
6041                 : diag::err_typecheck_call_too_few_args_at_least_suggest;
6042         diagnoseTypo(TC, PDiag(diag_id) << FnKind << MinArgs
6043                                         << static_cast<unsigned>(Args.size())
6044                                         << TC.getCorrectionRange());
6045       } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName())
6046         Diag(RParenLoc,
6047              MinArgs == NumParams && !Proto->isVariadic()
6048                  ? diag::err_typecheck_call_too_few_args_one
6049                  : diag::err_typecheck_call_too_few_args_at_least_one)
6050             << FnKind << FDecl->getParamDecl(0) << Fn->getSourceRange();
6051       else
6052         Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic()
6053                             ? diag::err_typecheck_call_too_few_args
6054                             : diag::err_typecheck_call_too_few_args_at_least)
6055             << FnKind << MinArgs << static_cast<unsigned>(Args.size())
6056             << Fn->getSourceRange();
6057 
6058       // Emit the location of the prototype.
6059       if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
6060         Diag(FDecl->getLocation(), diag::note_callee_decl) << FDecl;
6061 
6062       return true;
6063     }
6064     // We reserve space for the default arguments when we create
6065     // the call expression, before calling ConvertArgumentsForCall.
6066     assert((Call->getNumArgs() == NumParams) &&
6067            "We should have reserved space for the default arguments before!");
6068   }
6069 
6070   // If too many are passed and not variadic, error on the extras and drop
6071   // them.
6072   if (Args.size() > NumParams) {
6073     if (!Proto->isVariadic()) {
6074       TypoCorrection TC;
6075       if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) {
6076         unsigned diag_id =
6077             MinArgs == NumParams && !Proto->isVariadic()
6078                 ? diag::err_typecheck_call_too_many_args_suggest
6079                 : diag::err_typecheck_call_too_many_args_at_most_suggest;
6080         diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumParams
6081                                         << static_cast<unsigned>(Args.size())
6082                                         << TC.getCorrectionRange());
6083       } else if (NumParams == 1 && FDecl &&
6084                  FDecl->getParamDecl(0)->getDeclName())
6085         Diag(Args[NumParams]->getBeginLoc(),
6086              MinArgs == NumParams
6087                  ? diag::err_typecheck_call_too_many_args_one
6088                  : diag::err_typecheck_call_too_many_args_at_most_one)
6089             << FnKind << FDecl->getParamDecl(0)
6090             << static_cast<unsigned>(Args.size()) << Fn->getSourceRange()
6091             << SourceRange(Args[NumParams]->getBeginLoc(),
6092                            Args.back()->getEndLoc());
6093       else
6094         Diag(Args[NumParams]->getBeginLoc(),
6095              MinArgs == NumParams
6096                  ? diag::err_typecheck_call_too_many_args
6097                  : diag::err_typecheck_call_too_many_args_at_most)
6098             << FnKind << NumParams << static_cast<unsigned>(Args.size())
6099             << Fn->getSourceRange()
6100             << SourceRange(Args[NumParams]->getBeginLoc(),
6101                            Args.back()->getEndLoc());
6102 
6103       // Emit the location of the prototype.
6104       if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
6105         Diag(FDecl->getLocation(), diag::note_callee_decl) << FDecl;
6106 
6107       // This deletes the extra arguments.
6108       Call->shrinkNumArgs(NumParams);
6109       return true;
6110     }
6111   }
6112   SmallVector<Expr *, 8> AllArgs;
6113   VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn);
6114 
6115   Invalid = GatherArgumentsForCall(Call->getBeginLoc(), FDecl, Proto, 0, Args,
6116                                    AllArgs, CallType);
6117   if (Invalid)
6118     return true;
6119   unsigned TotalNumArgs = AllArgs.size();
6120   for (unsigned i = 0; i < TotalNumArgs; ++i)
6121     Call->setArg(i, AllArgs[i]);
6122 
6123   Call->computeDependence();
6124   return false;
6125 }
6126 
6127 bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl,
6128                                   const FunctionProtoType *Proto,
6129                                   unsigned FirstParam, ArrayRef<Expr *> Args,
6130                                   SmallVectorImpl<Expr *> &AllArgs,
6131                                   VariadicCallType CallType, bool AllowExplicit,
6132                                   bool IsListInitialization) {
6133   unsigned NumParams = Proto->getNumParams();
6134   bool Invalid = false;
6135   size_t ArgIx = 0;
6136   // Continue to check argument types (even if we have too few/many args).
6137   for (unsigned i = FirstParam; i < NumParams; i++) {
6138     QualType ProtoArgType = Proto->getParamType(i);
6139 
6140     Expr *Arg;
6141     ParmVarDecl *Param = FDecl ? FDecl->getParamDecl(i) : nullptr;
6142     if (ArgIx < Args.size()) {
6143       Arg = Args[ArgIx++];
6144 
6145       if (RequireCompleteType(Arg->getBeginLoc(), ProtoArgType,
6146                               diag::err_call_incomplete_argument, Arg))
6147         return true;
6148 
6149       // Strip the unbridged-cast placeholder expression off, if applicable.
6150       bool CFAudited = false;
6151       if (Arg->getType() == Context.ARCUnbridgedCastTy &&
6152           FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
6153           (!Param || !Param->hasAttr<CFConsumedAttr>()))
6154         Arg = stripARCUnbridgedCast(Arg);
6155       else if (getLangOpts().ObjCAutoRefCount &&
6156                FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
6157                (!Param || !Param->hasAttr<CFConsumedAttr>()))
6158         CFAudited = true;
6159 
6160       if (Proto->getExtParameterInfo(i).isNoEscape() &&
6161           ProtoArgType->isBlockPointerType())
6162         if (auto *BE = dyn_cast<BlockExpr>(Arg->IgnoreParenNoopCasts(Context)))
6163           BE->getBlockDecl()->setDoesNotEscape();
6164 
6165       InitializedEntity Entity =
6166           Param ? InitializedEntity::InitializeParameter(Context, Param,
6167                                                          ProtoArgType)
6168                 : InitializedEntity::InitializeParameter(
6169                       Context, ProtoArgType, Proto->isParamConsumed(i));
6170 
6171       // Remember that parameter belongs to a CF audited API.
6172       if (CFAudited)
6173         Entity.setParameterCFAudited();
6174 
6175       ExprResult ArgE = PerformCopyInitialization(
6176           Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit);
6177       if (ArgE.isInvalid())
6178         return true;
6179 
6180       Arg = ArgE.getAs<Expr>();
6181     } else {
6182       assert(Param && "can't use default arguments without a known callee");
6183 
6184       ExprResult ArgExpr = BuildCXXDefaultArgExpr(CallLoc, FDecl, Param);
6185       if (ArgExpr.isInvalid())
6186         return true;
6187 
6188       Arg = ArgExpr.getAs<Expr>();
6189     }
6190 
6191     // Check for array bounds violations for each argument to the call. This
6192     // check only triggers warnings when the argument isn't a more complex Expr
6193     // with its own checking, such as a BinaryOperator.
6194     CheckArrayAccess(Arg);
6195 
6196     // Check for violations of C99 static array rules (C99 6.7.5.3p7).
6197     CheckStaticArrayArgument(CallLoc, Param, Arg);
6198 
6199     AllArgs.push_back(Arg);
6200   }
6201 
6202   // If this is a variadic call, handle args passed through "...".
6203   if (CallType != VariadicDoesNotApply) {
6204     // Assume that extern "C" functions with variadic arguments that
6205     // return __unknown_anytype aren't *really* variadic.
6206     if (Proto->getReturnType() == Context.UnknownAnyTy && FDecl &&
6207         FDecl->isExternC()) {
6208       for (Expr *A : Args.slice(ArgIx)) {
6209         QualType paramType; // ignored
6210         ExprResult arg = checkUnknownAnyArg(CallLoc, A, paramType);
6211         Invalid |= arg.isInvalid();
6212         AllArgs.push_back(arg.get());
6213       }
6214 
6215     // Otherwise do argument promotion, (C99 6.5.2.2p7).
6216     } else {
6217       for (Expr *A : Args.slice(ArgIx)) {
6218         ExprResult Arg = DefaultVariadicArgumentPromotion(A, CallType, FDecl);
6219         Invalid |= Arg.isInvalid();
6220         AllArgs.push_back(Arg.get());
6221       }
6222     }
6223 
6224     // Check for array bounds violations.
6225     for (Expr *A : Args.slice(ArgIx))
6226       CheckArrayAccess(A);
6227   }
6228   return Invalid;
6229 }
6230 
6231 static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) {
6232   TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
6233   if (DecayedTypeLoc DTL = TL.getAs<DecayedTypeLoc>())
6234     TL = DTL.getOriginalLoc();
6235   if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>())
6236     S.Diag(PVD->getLocation(), diag::note_callee_static_array)
6237       << ATL.getLocalSourceRange();
6238 }
6239 
6240 /// CheckStaticArrayArgument - If the given argument corresponds to a static
6241 /// array parameter, check that it is non-null, and that if it is formed by
6242 /// array-to-pointer decay, the underlying array is sufficiently large.
6243 ///
6244 /// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the
6245 /// array type derivation, then for each call to the function, the value of the
6246 /// corresponding actual argument shall provide access to the first element of
6247 /// an array with at least as many elements as specified by the size expression.
6248 void
6249 Sema::CheckStaticArrayArgument(SourceLocation CallLoc,
6250                                ParmVarDecl *Param,
6251                                const Expr *ArgExpr) {
6252   // Static array parameters are not supported in C++.
6253   if (!Param || getLangOpts().CPlusPlus)
6254     return;
6255 
6256   QualType OrigTy = Param->getOriginalType();
6257 
6258   const ArrayType *AT = Context.getAsArrayType(OrigTy);
6259   if (!AT || AT->getSizeModifier() != ArrayType::Static)
6260     return;
6261 
6262   if (ArgExpr->isNullPointerConstant(Context,
6263                                      Expr::NPC_NeverValueDependent)) {
6264     Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
6265     DiagnoseCalleeStaticArrayParam(*this, Param);
6266     return;
6267   }
6268 
6269   const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT);
6270   if (!CAT)
6271     return;
6272 
6273   const ConstantArrayType *ArgCAT =
6274     Context.getAsConstantArrayType(ArgExpr->IgnoreParenCasts()->getType());
6275   if (!ArgCAT)
6276     return;
6277 
6278   if (getASTContext().hasSameUnqualifiedType(CAT->getElementType(),
6279                                              ArgCAT->getElementType())) {
6280     if (ArgCAT->getSize().ult(CAT->getSize())) {
6281       Diag(CallLoc, diag::warn_static_array_too_small)
6282           << ArgExpr->getSourceRange()
6283           << (unsigned)ArgCAT->getSize().getZExtValue()
6284           << (unsigned)CAT->getSize().getZExtValue() << 0;
6285       DiagnoseCalleeStaticArrayParam(*this, Param);
6286     }
6287     return;
6288   }
6289 
6290   Optional<CharUnits> ArgSize =
6291       getASTContext().getTypeSizeInCharsIfKnown(ArgCAT);
6292   Optional<CharUnits> ParmSize = getASTContext().getTypeSizeInCharsIfKnown(CAT);
6293   if (ArgSize && ParmSize && *ArgSize < *ParmSize) {
6294     Diag(CallLoc, diag::warn_static_array_too_small)
6295         << ArgExpr->getSourceRange() << (unsigned)ArgSize->getQuantity()
6296         << (unsigned)ParmSize->getQuantity() << 1;
6297     DiagnoseCalleeStaticArrayParam(*this, Param);
6298   }
6299 }
6300 
6301 /// Given a function expression of unknown-any type, try to rebuild it
6302 /// to have a function type.
6303 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn);
6304 
6305 /// Is the given type a placeholder that we need to lower out
6306 /// immediately during argument processing?
6307 static bool isPlaceholderToRemoveAsArg(QualType type) {
6308   // Placeholders are never sugared.
6309   const BuiltinType *placeholder = dyn_cast<BuiltinType>(type);
6310   if (!placeholder) return false;
6311 
6312   switch (placeholder->getKind()) {
6313   // Ignore all the non-placeholder types.
6314 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
6315   case BuiltinType::Id:
6316 #include "clang/Basic/OpenCLImageTypes.def"
6317 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
6318   case BuiltinType::Id:
6319 #include "clang/Basic/OpenCLExtensionTypes.def"
6320   // In practice we'll never use this, since all SVE types are sugared
6321   // via TypedefTypes rather than exposed directly as BuiltinTypes.
6322 #define SVE_TYPE(Name, Id, SingletonId) \
6323   case BuiltinType::Id:
6324 #include "clang/Basic/AArch64SVEACLETypes.def"
6325 #define PPC_VECTOR_TYPE(Name, Id, Size) \
6326   case BuiltinType::Id:
6327 #include "clang/Basic/PPCTypes.def"
6328 #define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
6329 #include "clang/Basic/RISCVVTypes.def"
6330 #define PLACEHOLDER_TYPE(ID, SINGLETON_ID)
6331 #define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID:
6332 #include "clang/AST/BuiltinTypes.def"
6333     return false;
6334 
6335   // We cannot lower out overload sets; they might validly be resolved
6336   // by the call machinery.
6337   case BuiltinType::Overload:
6338     return false;
6339 
6340   // Unbridged casts in ARC can be handled in some call positions and
6341   // should be left in place.
6342   case BuiltinType::ARCUnbridgedCast:
6343     return false;
6344 
6345   // Pseudo-objects should be converted as soon as possible.
6346   case BuiltinType::PseudoObject:
6347     return true;
6348 
6349   // The debugger mode could theoretically but currently does not try
6350   // to resolve unknown-typed arguments based on known parameter types.
6351   case BuiltinType::UnknownAny:
6352     return true;
6353 
6354   // These are always invalid as call arguments and should be reported.
6355   case BuiltinType::BoundMember:
6356   case BuiltinType::BuiltinFn:
6357   case BuiltinType::IncompleteMatrixIdx:
6358   case BuiltinType::OMPArraySection:
6359   case BuiltinType::OMPArrayShaping:
6360   case BuiltinType::OMPIterator:
6361     return true;
6362 
6363   }
6364   llvm_unreachable("bad builtin type kind");
6365 }
6366 
6367 /// Check an argument list for placeholders that we won't try to
6368 /// handle later.
6369 static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) {
6370   // Apply this processing to all the arguments at once instead of
6371   // dying at the first failure.
6372   bool hasInvalid = false;
6373   for (size_t i = 0, e = args.size(); i != e; i++) {
6374     if (isPlaceholderToRemoveAsArg(args[i]->getType())) {
6375       ExprResult result = S.CheckPlaceholderExpr(args[i]);
6376       if (result.isInvalid()) hasInvalid = true;
6377       else args[i] = result.get();
6378     }
6379   }
6380   return hasInvalid;
6381 }
6382 
6383 /// If a builtin function has a pointer argument with no explicit address
6384 /// space, then it should be able to accept a pointer to any address
6385 /// space as input.  In order to do this, we need to replace the
6386 /// standard builtin declaration with one that uses the same address space
6387 /// as the call.
6388 ///
6389 /// \returns nullptr If this builtin is not a candidate for a rewrite i.e.
6390 ///                  it does not contain any pointer arguments without
6391 ///                  an address space qualifer.  Otherwise the rewritten
6392 ///                  FunctionDecl is returned.
6393 /// TODO: Handle pointer return types.
6394 static FunctionDecl *rewriteBuiltinFunctionDecl(Sema *Sema, ASTContext &Context,
6395                                                 FunctionDecl *FDecl,
6396                                                 MultiExprArg ArgExprs) {
6397 
6398   QualType DeclType = FDecl->getType();
6399   const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(DeclType);
6400 
6401   if (!Context.BuiltinInfo.hasPtrArgsOrResult(FDecl->getBuiltinID()) || !FT ||
6402       ArgExprs.size() < FT->getNumParams())
6403     return nullptr;
6404 
6405   bool NeedsNewDecl = false;
6406   unsigned i = 0;
6407   SmallVector<QualType, 8> OverloadParams;
6408 
6409   for (QualType ParamType : FT->param_types()) {
6410 
6411     // Convert array arguments to pointer to simplify type lookup.
6412     ExprResult ArgRes =
6413         Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]);
6414     if (ArgRes.isInvalid())
6415       return nullptr;
6416     Expr *Arg = ArgRes.get();
6417     QualType ArgType = Arg->getType();
6418     if (!ParamType->isPointerType() ||
6419         ParamType.hasAddressSpace() ||
6420         !ArgType->isPointerType() ||
6421         !ArgType->getPointeeType().hasAddressSpace()) {
6422       OverloadParams.push_back(ParamType);
6423       continue;
6424     }
6425 
6426     QualType PointeeType = ParamType->getPointeeType();
6427     if (PointeeType.hasAddressSpace())
6428       continue;
6429 
6430     NeedsNewDecl = true;
6431     LangAS AS = ArgType->getPointeeType().getAddressSpace();
6432 
6433     PointeeType = Context.getAddrSpaceQualType(PointeeType, AS);
6434     OverloadParams.push_back(Context.getPointerType(PointeeType));
6435   }
6436 
6437   if (!NeedsNewDecl)
6438     return nullptr;
6439 
6440   FunctionProtoType::ExtProtoInfo EPI;
6441   EPI.Variadic = FT->isVariadic();
6442   QualType OverloadTy = Context.getFunctionType(FT->getReturnType(),
6443                                                 OverloadParams, EPI);
6444   DeclContext *Parent = FDecl->getParent();
6445   FunctionDecl *OverloadDecl = FunctionDecl::Create(
6446       Context, Parent, FDecl->getLocation(), FDecl->getLocation(),
6447       FDecl->getIdentifier(), OverloadTy,
6448       /*TInfo=*/nullptr, SC_Extern, Sema->getCurFPFeatures().isFPConstrained(),
6449       false,
6450       /*hasPrototype=*/true);
6451   SmallVector<ParmVarDecl*, 16> Params;
6452   FT = cast<FunctionProtoType>(OverloadTy);
6453   for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
6454     QualType ParamType = FT->getParamType(i);
6455     ParmVarDecl *Parm =
6456         ParmVarDecl::Create(Context, OverloadDecl, SourceLocation(),
6457                                 SourceLocation(), nullptr, ParamType,
6458                                 /*TInfo=*/nullptr, SC_None, nullptr);
6459     Parm->setScopeInfo(0, i);
6460     Params.push_back(Parm);
6461   }
6462   OverloadDecl->setParams(Params);
6463   Sema->mergeDeclAttributes(OverloadDecl, FDecl);
6464   return OverloadDecl;
6465 }
6466 
6467 static void checkDirectCallValidity(Sema &S, const Expr *Fn,
6468                                     FunctionDecl *Callee,
6469                                     MultiExprArg ArgExprs) {
6470   // `Callee` (when called with ArgExprs) may be ill-formed. enable_if (and
6471   // similar attributes) really don't like it when functions are called with an
6472   // invalid number of args.
6473   if (S.TooManyArguments(Callee->getNumParams(), ArgExprs.size(),
6474                          /*PartialOverloading=*/false) &&
6475       !Callee->isVariadic())
6476     return;
6477   if (Callee->getMinRequiredArguments() > ArgExprs.size())
6478     return;
6479 
6480   if (const EnableIfAttr *Attr =
6481           S.CheckEnableIf(Callee, Fn->getBeginLoc(), ArgExprs, true)) {
6482     S.Diag(Fn->getBeginLoc(),
6483            isa<CXXMethodDecl>(Callee)
6484                ? diag::err_ovl_no_viable_member_function_in_call
6485                : diag::err_ovl_no_viable_function_in_call)
6486         << Callee << Callee->getSourceRange();
6487     S.Diag(Callee->getLocation(),
6488            diag::note_ovl_candidate_disabled_by_function_cond_attr)
6489         << Attr->getCond()->getSourceRange() << Attr->getMessage();
6490     return;
6491   }
6492 }
6493 
6494 static bool enclosingClassIsRelatedToClassInWhichMembersWereFound(
6495     const UnresolvedMemberExpr *const UME, Sema &S) {
6496 
6497   const auto GetFunctionLevelDCIfCXXClass =
6498       [](Sema &S) -> const CXXRecordDecl * {
6499     const DeclContext *const DC = S.getFunctionLevelDeclContext();
6500     if (!DC || !DC->getParent())
6501       return nullptr;
6502 
6503     // If the call to some member function was made from within a member
6504     // function body 'M' return return 'M's parent.
6505     if (const auto *MD = dyn_cast<CXXMethodDecl>(DC))
6506       return MD->getParent()->getCanonicalDecl();
6507     // else the call was made from within a default member initializer of a
6508     // class, so return the class.
6509     if (const auto *RD = dyn_cast<CXXRecordDecl>(DC))
6510       return RD->getCanonicalDecl();
6511     return nullptr;
6512   };
6513   // If our DeclContext is neither a member function nor a class (in the
6514   // case of a lambda in a default member initializer), we can't have an
6515   // enclosing 'this'.
6516 
6517   const CXXRecordDecl *const CurParentClass = GetFunctionLevelDCIfCXXClass(S);
6518   if (!CurParentClass)
6519     return false;
6520 
6521   // The naming class for implicit member functions call is the class in which
6522   // name lookup starts.
6523   const CXXRecordDecl *const NamingClass =
6524       UME->getNamingClass()->getCanonicalDecl();
6525   assert(NamingClass && "Must have naming class even for implicit access");
6526 
6527   // If the unresolved member functions were found in a 'naming class' that is
6528   // related (either the same or derived from) to the class that contains the
6529   // member function that itself contained the implicit member access.
6530 
6531   return CurParentClass == NamingClass ||
6532          CurParentClass->isDerivedFrom(NamingClass);
6533 }
6534 
6535 static void
6536 tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs(
6537     Sema &S, const UnresolvedMemberExpr *const UME, SourceLocation CallLoc) {
6538 
6539   if (!UME)
6540     return;
6541 
6542   LambdaScopeInfo *const CurLSI = S.getCurLambda();
6543   // Only try and implicitly capture 'this' within a C++ Lambda if it hasn't
6544   // already been captured, or if this is an implicit member function call (if
6545   // it isn't, an attempt to capture 'this' should already have been made).
6546   if (!CurLSI || CurLSI->ImpCaptureStyle == CurLSI->ImpCap_None ||
6547       !UME->isImplicitAccess() || CurLSI->isCXXThisCaptured())
6548     return;
6549 
6550   // Check if the naming class in which the unresolved members were found is
6551   // related (same as or is a base of) to the enclosing class.
6552 
6553   if (!enclosingClassIsRelatedToClassInWhichMembersWereFound(UME, S))
6554     return;
6555 
6556 
6557   DeclContext *EnclosingFunctionCtx = S.CurContext->getParent()->getParent();
6558   // If the enclosing function is not dependent, then this lambda is
6559   // capture ready, so if we can capture this, do so.
6560   if (!EnclosingFunctionCtx->isDependentContext()) {
6561     // If the current lambda and all enclosing lambdas can capture 'this' -
6562     // then go ahead and capture 'this' (since our unresolved overload set
6563     // contains at least one non-static member function).
6564     if (!S.CheckCXXThisCapture(CallLoc, /*Explcit*/ false, /*Diagnose*/ false))
6565       S.CheckCXXThisCapture(CallLoc);
6566   } else if (S.CurContext->isDependentContext()) {
6567     // ... since this is an implicit member reference, that might potentially
6568     // involve a 'this' capture, mark 'this' for potential capture in
6569     // enclosing lambdas.
6570     if (CurLSI->ImpCaptureStyle != CurLSI->ImpCap_None)
6571       CurLSI->addPotentialThisCapture(CallLoc);
6572   }
6573 }
6574 
6575 // Once a call is fully resolved, warn for unqualified calls to specific
6576 // C++ standard functions, like move and forward.
6577 static void DiagnosedUnqualifiedCallsToStdFunctions(Sema &S, CallExpr *Call) {
6578   // We are only checking unary move and forward so exit early here.
6579   if (Call->getNumArgs() != 1)
6580     return;
6581 
6582   Expr *E = Call->getCallee()->IgnoreParenImpCasts();
6583   if (!E || isa<UnresolvedLookupExpr>(E))
6584     return;
6585   DeclRefExpr *DRE = dyn_cast_or_null<DeclRefExpr>(E);
6586   if (!DRE || !DRE->getLocation().isValid())
6587     return;
6588 
6589   if (DRE->getQualifier())
6590     return;
6591 
6592   const FunctionDecl *FD = Call->getDirectCallee();
6593   if (!FD)
6594     return;
6595 
6596   // Only warn for some functions deemed more frequent or problematic.
6597   unsigned BuiltinID = FD->getBuiltinID();
6598   if (BuiltinID != Builtin::BImove && BuiltinID != Builtin::BIforward)
6599     return;
6600 
6601   S.Diag(DRE->getLocation(), diag::warn_unqualified_call_to_std_cast_function)
6602       << FD->getQualifiedNameAsString()
6603       << FixItHint::CreateInsertion(DRE->getLocation(), "std::");
6604 }
6605 
6606 ExprResult Sema::ActOnCallExpr(Scope *Scope, Expr *Fn, SourceLocation LParenLoc,
6607                                MultiExprArg ArgExprs, SourceLocation RParenLoc,
6608                                Expr *ExecConfig) {
6609   ExprResult Call =
6610       BuildCallExpr(Scope, Fn, LParenLoc, ArgExprs, RParenLoc, ExecConfig,
6611                     /*IsExecConfig=*/false, /*AllowRecovery=*/true);
6612   if (Call.isInvalid())
6613     return Call;
6614 
6615   // Diagnose uses of the C++20 "ADL-only template-id call" feature in earlier
6616   // language modes.
6617   if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(Fn)) {
6618     if (ULE->hasExplicitTemplateArgs() &&
6619         ULE->decls_begin() == ULE->decls_end()) {
6620       Diag(Fn->getExprLoc(), getLangOpts().CPlusPlus20
6621                                  ? diag::warn_cxx17_compat_adl_only_template_id
6622                                  : diag::ext_adl_only_template_id)
6623           << ULE->getName();
6624     }
6625   }
6626 
6627   if (LangOpts.OpenMP)
6628     Call = ActOnOpenMPCall(Call, Scope, LParenLoc, ArgExprs, RParenLoc,
6629                            ExecConfig);
6630   if (LangOpts.CPlusPlus) {
6631     CallExpr *CE = dyn_cast<CallExpr>(Call.get());
6632     if (CE)
6633       DiagnosedUnqualifiedCallsToStdFunctions(*this, CE);
6634   }
6635   return Call;
6636 }
6637 
6638 /// BuildCallExpr - Handle a call to Fn with the specified array of arguments.
6639 /// This provides the location of the left/right parens and a list of comma
6640 /// locations.
6641 ExprResult Sema::BuildCallExpr(Scope *Scope, Expr *Fn, SourceLocation LParenLoc,
6642                                MultiExprArg ArgExprs, SourceLocation RParenLoc,
6643                                Expr *ExecConfig, bool IsExecConfig,
6644                                bool AllowRecovery) {
6645   // Since this might be a postfix expression, get rid of ParenListExprs.
6646   ExprResult Result = MaybeConvertParenListExprToParenExpr(Scope, Fn);
6647   if (Result.isInvalid()) return ExprError();
6648   Fn = Result.get();
6649 
6650   if (checkArgsForPlaceholders(*this, ArgExprs))
6651     return ExprError();
6652 
6653   if (getLangOpts().CPlusPlus) {
6654     // If this is a pseudo-destructor expression, build the call immediately.
6655     if (isa<CXXPseudoDestructorExpr>(Fn)) {
6656       if (!ArgExprs.empty()) {
6657         // Pseudo-destructor calls should not have any arguments.
6658         Diag(Fn->getBeginLoc(), diag::err_pseudo_dtor_call_with_args)
6659             << FixItHint::CreateRemoval(
6660                    SourceRange(ArgExprs.front()->getBeginLoc(),
6661                                ArgExprs.back()->getEndLoc()));
6662       }
6663 
6664       return CallExpr::Create(Context, Fn, /*Args=*/{}, Context.VoidTy,
6665                               VK_PRValue, RParenLoc, CurFPFeatureOverrides());
6666     }
6667     if (Fn->getType() == Context.PseudoObjectTy) {
6668       ExprResult result = CheckPlaceholderExpr(Fn);
6669       if (result.isInvalid()) return ExprError();
6670       Fn = result.get();
6671     }
6672 
6673     // Determine whether this is a dependent call inside a C++ template,
6674     // in which case we won't do any semantic analysis now.
6675     if (Fn->isTypeDependent() || Expr::hasAnyTypeDependentArguments(ArgExprs)) {
6676       if (ExecConfig) {
6677         return CUDAKernelCallExpr::Create(Context, Fn,
6678                                           cast<CallExpr>(ExecConfig), ArgExprs,
6679                                           Context.DependentTy, VK_PRValue,
6680                                           RParenLoc, CurFPFeatureOverrides());
6681       } else {
6682 
6683         tryImplicitlyCaptureThisIfImplicitMemberFunctionAccessWithDependentArgs(
6684             *this, dyn_cast<UnresolvedMemberExpr>(Fn->IgnoreParens()),
6685             Fn->getBeginLoc());
6686 
6687         return CallExpr::Create(Context, Fn, ArgExprs, Context.DependentTy,
6688                                 VK_PRValue, RParenLoc, CurFPFeatureOverrides());
6689       }
6690     }
6691 
6692     // Determine whether this is a call to an object (C++ [over.call.object]).
6693     if (Fn->getType()->isRecordType())
6694       return BuildCallToObjectOfClassType(Scope, Fn, LParenLoc, ArgExprs,
6695                                           RParenLoc);
6696 
6697     if (Fn->getType() == Context.UnknownAnyTy) {
6698       ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
6699       if (result.isInvalid()) return ExprError();
6700       Fn = result.get();
6701     }
6702 
6703     if (Fn->getType() == Context.BoundMemberTy) {
6704       return BuildCallToMemberFunction(Scope, Fn, LParenLoc, ArgExprs,
6705                                        RParenLoc, ExecConfig, IsExecConfig,
6706                                        AllowRecovery);
6707     }
6708   }
6709 
6710   // Check for overloaded calls.  This can happen even in C due to extensions.
6711   if (Fn->getType() == Context.OverloadTy) {
6712     OverloadExpr::FindResult find = OverloadExpr::find(Fn);
6713 
6714     // We aren't supposed to apply this logic if there's an '&' involved.
6715     if (!find.HasFormOfMemberPointer) {
6716       if (Expr::hasAnyTypeDependentArguments(ArgExprs))
6717         return CallExpr::Create(Context, Fn, ArgExprs, Context.DependentTy,
6718                                 VK_PRValue, RParenLoc, CurFPFeatureOverrides());
6719       OverloadExpr *ovl = find.Expression;
6720       if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(ovl))
6721         return BuildOverloadedCallExpr(
6722             Scope, Fn, ULE, LParenLoc, ArgExprs, RParenLoc, ExecConfig,
6723             /*AllowTypoCorrection=*/true, find.IsAddressOfOperand);
6724       return BuildCallToMemberFunction(Scope, Fn, LParenLoc, ArgExprs,
6725                                        RParenLoc, ExecConfig, IsExecConfig,
6726                                        AllowRecovery);
6727     }
6728   }
6729 
6730   // If we're directly calling a function, get the appropriate declaration.
6731   if (Fn->getType() == Context.UnknownAnyTy) {
6732     ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
6733     if (result.isInvalid()) return ExprError();
6734     Fn = result.get();
6735   }
6736 
6737   Expr *NakedFn = Fn->IgnoreParens();
6738 
6739   bool CallingNDeclIndirectly = false;
6740   NamedDecl *NDecl = nullptr;
6741   if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn)) {
6742     if (UnOp->getOpcode() == UO_AddrOf) {
6743       CallingNDeclIndirectly = true;
6744       NakedFn = UnOp->getSubExpr()->IgnoreParens();
6745     }
6746   }
6747 
6748   if (auto *DRE = dyn_cast<DeclRefExpr>(NakedFn)) {
6749     NDecl = DRE->getDecl();
6750 
6751     FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl);
6752     if (FDecl && FDecl->getBuiltinID()) {
6753       // Rewrite the function decl for this builtin by replacing parameters
6754       // with no explicit address space with the address space of the arguments
6755       // in ArgExprs.
6756       if ((FDecl =
6757                rewriteBuiltinFunctionDecl(this, Context, FDecl, ArgExprs))) {
6758         NDecl = FDecl;
6759         Fn = DeclRefExpr::Create(
6760             Context, FDecl->getQualifierLoc(), SourceLocation(), FDecl, false,
6761             SourceLocation(), FDecl->getType(), Fn->getValueKind(), FDecl,
6762             nullptr, DRE->isNonOdrUse());
6763       }
6764     }
6765   } else if (isa<MemberExpr>(NakedFn))
6766     NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl();
6767 
6768   if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) {
6769     if (CallingNDeclIndirectly && !checkAddressOfFunctionIsAvailable(
6770                                       FD, /*Complain=*/true, Fn->getBeginLoc()))
6771       return ExprError();
6772 
6773     checkDirectCallValidity(*this, Fn, FD, ArgExprs);
6774 
6775     // If this expression is a call to a builtin function in HIP device
6776     // compilation, allow a pointer-type argument to default address space to be
6777     // passed as a pointer-type parameter to a non-default address space.
6778     // If Arg is declared in the default address space and Param is declared
6779     // in a non-default address space, perform an implicit address space cast to
6780     // the parameter type.
6781     if (getLangOpts().HIP && getLangOpts().CUDAIsDevice && FD &&
6782         FD->getBuiltinID()) {
6783       for (unsigned Idx = 0; Idx < FD->param_size(); ++Idx) {
6784         ParmVarDecl *Param = FD->getParamDecl(Idx);
6785         if (!ArgExprs[Idx] || !Param || !Param->getType()->isPointerType() ||
6786             !ArgExprs[Idx]->getType()->isPointerType())
6787           continue;
6788 
6789         auto ParamAS = Param->getType()->getPointeeType().getAddressSpace();
6790         auto ArgTy = ArgExprs[Idx]->getType();
6791         auto ArgPtTy = ArgTy->getPointeeType();
6792         auto ArgAS = ArgPtTy.getAddressSpace();
6793 
6794         // Add address space cast if target address spaces are different
6795         bool NeedImplicitASC =
6796           ParamAS != LangAS::Default &&       // Pointer params in generic AS don't need special handling.
6797           ( ArgAS == LangAS::Default  ||      // We do allow implicit conversion from generic AS
6798                                               // or from specific AS which has target AS matching that of Param.
6799           getASTContext().getTargetAddressSpace(ArgAS) == getASTContext().getTargetAddressSpace(ParamAS));
6800         if (!NeedImplicitASC)
6801           continue;
6802 
6803         // First, ensure that the Arg is an RValue.
6804         if (ArgExprs[Idx]->isGLValue()) {
6805           ArgExprs[Idx] = ImplicitCastExpr::Create(
6806               Context, ArgExprs[Idx]->getType(), CK_NoOp, ArgExprs[Idx],
6807               nullptr, VK_PRValue, FPOptionsOverride());
6808         }
6809 
6810         // Construct a new arg type with address space of Param
6811         Qualifiers ArgPtQuals = ArgPtTy.getQualifiers();
6812         ArgPtQuals.setAddressSpace(ParamAS);
6813         auto NewArgPtTy =
6814             Context.getQualifiedType(ArgPtTy.getUnqualifiedType(), ArgPtQuals);
6815         auto NewArgTy =
6816             Context.getQualifiedType(Context.getPointerType(NewArgPtTy),
6817                                      ArgTy.getQualifiers());
6818 
6819         // Finally perform an implicit address space cast
6820         ArgExprs[Idx] = ImpCastExprToType(ArgExprs[Idx], NewArgTy,
6821                                           CK_AddressSpaceConversion)
6822                             .get();
6823       }
6824     }
6825   }
6826 
6827   if (Context.isDependenceAllowed() &&
6828       (Fn->isTypeDependent() || Expr::hasAnyTypeDependentArguments(ArgExprs))) {
6829     assert(!getLangOpts().CPlusPlus);
6830     assert((Fn->containsErrors() ||
6831             llvm::any_of(ArgExprs,
6832                          [](clang::Expr *E) { return E->containsErrors(); })) &&
6833            "should only occur in error-recovery path.");
6834     QualType ReturnType =
6835         llvm::isa_and_nonnull<FunctionDecl>(NDecl)
6836             ? cast<FunctionDecl>(NDecl)->getCallResultType()
6837             : Context.DependentTy;
6838     return CallExpr::Create(Context, Fn, ArgExprs, ReturnType,
6839                             Expr::getValueKindForType(ReturnType), RParenLoc,
6840                             CurFPFeatureOverrides());
6841   }
6842   return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc,
6843                                ExecConfig, IsExecConfig);
6844 }
6845 
6846 /// BuildBuiltinCallExpr - Create a call to a builtin function specified by Id
6847 //  with the specified CallArgs
6848 Expr *Sema::BuildBuiltinCallExpr(SourceLocation Loc, Builtin::ID Id,
6849                                  MultiExprArg CallArgs) {
6850   StringRef Name = Context.BuiltinInfo.getName(Id);
6851   LookupResult R(*this, &Context.Idents.get(Name), Loc,
6852                  Sema::LookupOrdinaryName);
6853   LookupName(R, TUScope, /*AllowBuiltinCreation=*/true);
6854 
6855   auto *BuiltInDecl = R.getAsSingle<FunctionDecl>();
6856   assert(BuiltInDecl && "failed to find builtin declaration");
6857 
6858   ExprResult DeclRef =
6859       BuildDeclRefExpr(BuiltInDecl, BuiltInDecl->getType(), VK_LValue, Loc);
6860   assert(DeclRef.isUsable() && "Builtin reference cannot fail");
6861 
6862   ExprResult Call =
6863       BuildCallExpr(/*Scope=*/nullptr, DeclRef.get(), Loc, CallArgs, Loc);
6864 
6865   assert(!Call.isInvalid() && "Call to builtin cannot fail!");
6866   return Call.get();
6867 }
6868 
6869 /// Parse a __builtin_astype expression.
6870 ///
6871 /// __builtin_astype( value, dst type )
6872 ///
6873 ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy,
6874                                  SourceLocation BuiltinLoc,
6875                                  SourceLocation RParenLoc) {
6876   QualType DstTy = GetTypeFromParser(ParsedDestTy);
6877   return BuildAsTypeExpr(E, DstTy, BuiltinLoc, RParenLoc);
6878 }
6879 
6880 /// Create a new AsTypeExpr node (bitcast) from the arguments.
6881 ExprResult Sema::BuildAsTypeExpr(Expr *E, QualType DestTy,
6882                                  SourceLocation BuiltinLoc,
6883                                  SourceLocation RParenLoc) {
6884   ExprValueKind VK = VK_PRValue;
6885   ExprObjectKind OK = OK_Ordinary;
6886   QualType SrcTy = E->getType();
6887   if (!SrcTy->isDependentType() &&
6888       Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
6889     return ExprError(
6890         Diag(BuiltinLoc, diag::err_invalid_astype_of_different_size)
6891         << DestTy << SrcTy << E->getSourceRange());
6892   return new (Context) AsTypeExpr(E, DestTy, VK, OK, BuiltinLoc, RParenLoc);
6893 }
6894 
6895 /// ActOnConvertVectorExpr - create a new convert-vector expression from the
6896 /// provided arguments.
6897 ///
6898 /// __builtin_convertvector( value, dst type )
6899 ///
6900 ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy,
6901                                         SourceLocation BuiltinLoc,
6902                                         SourceLocation RParenLoc) {
6903   TypeSourceInfo *TInfo;
6904   GetTypeFromParser(ParsedDestTy, &TInfo);
6905   return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc);
6906 }
6907 
6908 /// BuildResolvedCallExpr - Build a call to a resolved expression,
6909 /// i.e. an expression not of \p OverloadTy.  The expression should
6910 /// unary-convert to an expression of function-pointer or
6911 /// block-pointer type.
6912 ///
6913 /// \param NDecl the declaration being called, if available
6914 ExprResult Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
6915                                        SourceLocation LParenLoc,
6916                                        ArrayRef<Expr *> Args,
6917                                        SourceLocation RParenLoc, Expr *Config,
6918                                        bool IsExecConfig, ADLCallKind UsesADL) {
6919   FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
6920   unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0);
6921 
6922   // Functions with 'interrupt' attribute cannot be called directly.
6923   if (FDecl && FDecl->hasAttr<AnyX86InterruptAttr>()) {
6924     Diag(Fn->getExprLoc(), diag::err_anyx86_interrupt_called);
6925     return ExprError();
6926   }
6927 
6928   // Interrupt handlers don't save off the VFP regs automatically on ARM,
6929   // so there's some risk when calling out to non-interrupt handler functions
6930   // that the callee might not preserve them. This is easy to diagnose here,
6931   // but can be very challenging to debug.
6932   // Likewise, X86 interrupt handlers may only call routines with attribute
6933   // no_caller_saved_registers since there is no efficient way to
6934   // save and restore the non-GPR state.
6935   if (auto *Caller = getCurFunctionDecl()) {
6936     if (Caller->hasAttr<ARMInterruptAttr>()) {
6937       bool VFP = Context.getTargetInfo().hasFeature("vfp");
6938       if (VFP && (!FDecl || !FDecl->hasAttr<ARMInterruptAttr>())) {
6939         Diag(Fn->getExprLoc(), diag::warn_arm_interrupt_calling_convention);
6940         if (FDecl)
6941           Diag(FDecl->getLocation(), diag::note_callee_decl) << FDecl;
6942       }
6943     }
6944     if (Caller->hasAttr<AnyX86InterruptAttr>() &&
6945         ((!FDecl || !FDecl->hasAttr<AnyX86NoCallerSavedRegistersAttr>()))) {
6946       Diag(Fn->getExprLoc(), diag::warn_anyx86_interrupt_regsave);
6947       if (FDecl)
6948         Diag(FDecl->getLocation(), diag::note_callee_decl) << FDecl;
6949     }
6950   }
6951 
6952   // Promote the function operand.
6953   // We special-case function promotion here because we only allow promoting
6954   // builtin functions to function pointers in the callee of a call.
6955   ExprResult Result;
6956   QualType ResultTy;
6957   if (BuiltinID &&
6958       Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) {
6959     // Extract the return type from the (builtin) function pointer type.
6960     // FIXME Several builtins still have setType in
6961     // Sema::CheckBuiltinFunctionCall. One should review their definitions in
6962     // Builtins.def to ensure they are correct before removing setType calls.
6963     QualType FnPtrTy = Context.getPointerType(FDecl->getType());
6964     Result = ImpCastExprToType(Fn, FnPtrTy, CK_BuiltinFnToFnPtr).get();
6965     ResultTy = FDecl->getCallResultType();
6966   } else {
6967     Result = CallExprUnaryConversions(Fn);
6968     ResultTy = Context.BoolTy;
6969   }
6970   if (Result.isInvalid())
6971     return ExprError();
6972   Fn = Result.get();
6973 
6974   // Check for a valid function type, but only if it is not a builtin which
6975   // requires custom type checking. These will be handled by
6976   // CheckBuiltinFunctionCall below just after creation of the call expression.
6977   const FunctionType *FuncT = nullptr;
6978   if (!BuiltinID || !Context.BuiltinInfo.hasCustomTypechecking(BuiltinID)) {
6979   retry:
6980     if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) {
6981       // C99 6.5.2.2p1 - "The expression that denotes the called function shall
6982       // have type pointer to function".
6983       FuncT = PT->getPointeeType()->getAs<FunctionType>();
6984       if (!FuncT)
6985         return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
6986                          << Fn->getType() << Fn->getSourceRange());
6987     } else if (const BlockPointerType *BPT =
6988                    Fn->getType()->getAs<BlockPointerType>()) {
6989       FuncT = BPT->getPointeeType()->castAs<FunctionType>();
6990     } else {
6991       // Handle calls to expressions of unknown-any type.
6992       if (Fn->getType() == Context.UnknownAnyTy) {
6993         ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn);
6994         if (rewrite.isInvalid())
6995           return ExprError();
6996         Fn = rewrite.get();
6997         goto retry;
6998       }
6999 
7000       return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
7001                        << Fn->getType() << Fn->getSourceRange());
7002     }
7003   }
7004 
7005   // Get the number of parameters in the function prototype, if any.
7006   // We will allocate space for max(Args.size(), NumParams) arguments
7007   // in the call expression.
7008   const auto *Proto = dyn_cast_or_null<FunctionProtoType>(FuncT);
7009   unsigned NumParams = Proto ? Proto->getNumParams() : 0;
7010 
7011   CallExpr *TheCall;
7012   if (Config) {
7013     assert(UsesADL == ADLCallKind::NotADL &&
7014            "CUDAKernelCallExpr should not use ADL");
7015     TheCall = CUDAKernelCallExpr::Create(Context, Fn, cast<CallExpr>(Config),
7016                                          Args, ResultTy, VK_PRValue, RParenLoc,
7017                                          CurFPFeatureOverrides(), NumParams);
7018   } else {
7019     TheCall =
7020         CallExpr::Create(Context, Fn, Args, ResultTy, VK_PRValue, RParenLoc,
7021                          CurFPFeatureOverrides(), NumParams, UsesADL);
7022   }
7023 
7024   if (!Context.isDependenceAllowed()) {
7025     // Forget about the nulled arguments since typo correction
7026     // do not handle them well.
7027     TheCall->shrinkNumArgs(Args.size());
7028     // C cannot always handle TypoExpr nodes in builtin calls and direct
7029     // function calls as their argument checking don't necessarily handle
7030     // dependent types properly, so make sure any TypoExprs have been
7031     // dealt with.
7032     ExprResult Result = CorrectDelayedTyposInExpr(TheCall);
7033     if (!Result.isUsable()) return ExprError();
7034     CallExpr *TheOldCall = TheCall;
7035     TheCall = dyn_cast<CallExpr>(Result.get());
7036     bool CorrectedTypos = TheCall != TheOldCall;
7037     if (!TheCall) return Result;
7038     Args = llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs());
7039 
7040     // A new call expression node was created if some typos were corrected.
7041     // However it may not have been constructed with enough storage. In this
7042     // case, rebuild the node with enough storage. The waste of space is
7043     // immaterial since this only happens when some typos were corrected.
7044     if (CorrectedTypos && Args.size() < NumParams) {
7045       if (Config)
7046         TheCall = CUDAKernelCallExpr::Create(
7047             Context, Fn, cast<CallExpr>(Config), Args, ResultTy, VK_PRValue,
7048             RParenLoc, CurFPFeatureOverrides(), NumParams);
7049       else
7050         TheCall =
7051             CallExpr::Create(Context, Fn, Args, ResultTy, VK_PRValue, RParenLoc,
7052                              CurFPFeatureOverrides(), NumParams, UsesADL);
7053     }
7054     // We can now handle the nulled arguments for the default arguments.
7055     TheCall->setNumArgsUnsafe(std::max<unsigned>(Args.size(), NumParams));
7056   }
7057 
7058   // Bail out early if calling a builtin with custom type checking.
7059   if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID))
7060     return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
7061 
7062   if (getLangOpts().CUDA) {
7063     if (Config) {
7064       // CUDA: Kernel calls must be to global functions
7065       if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>())
7066         return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
7067             << FDecl << Fn->getSourceRange());
7068 
7069       // CUDA: Kernel function must have 'void' return type
7070       if (!FuncT->getReturnType()->isVoidType() &&
7071           !FuncT->getReturnType()->getAs<AutoType>() &&
7072           !FuncT->getReturnType()->isInstantiationDependentType())
7073         return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
7074             << Fn->getType() << Fn->getSourceRange());
7075     } else {
7076       // CUDA: Calls to global functions must be configured
7077       if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>())
7078         return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
7079             << FDecl << Fn->getSourceRange());
7080     }
7081   }
7082 
7083   // Check for a valid return type
7084   if (CheckCallReturnType(FuncT->getReturnType(), Fn->getBeginLoc(), TheCall,
7085                           FDecl))
7086     return ExprError();
7087 
7088   // We know the result type of the call, set it.
7089   TheCall->setType(FuncT->getCallResultType(Context));
7090   TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType()));
7091 
7092   if (Proto) {
7093     if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc,
7094                                 IsExecConfig))
7095       return ExprError();
7096   } else {
7097     assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
7098 
7099     if (FDecl) {
7100       // Check if we have too few/too many template arguments, based
7101       // on our knowledge of the function definition.
7102       const FunctionDecl *Def = nullptr;
7103       if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) {
7104         Proto = Def->getType()->getAs<FunctionProtoType>();
7105        if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size()))
7106           Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
7107           << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange();
7108       }
7109 
7110       // If the function we're calling isn't a function prototype, but we have
7111       // a function prototype from a prior declaratiom, use that prototype.
7112       if (!FDecl->hasPrototype())
7113         Proto = FDecl->getType()->getAs<FunctionProtoType>();
7114     }
7115 
7116     // If we still haven't found a prototype to use but there are arguments to
7117     // the call, diagnose this as calling a function without a prototype.
7118     // However, if we found a function declaration, check to see if
7119     // -Wdeprecated-non-prototype was disabled where the function was declared.
7120     // If so, we will silence the diagnostic here on the assumption that this
7121     // interface is intentional and the user knows what they're doing. We will
7122     // also silence the diagnostic if there is a function declaration but it
7123     // was implicitly defined (the user already gets diagnostics about the
7124     // creation of the implicit function declaration, so the additional warning
7125     // is not helpful).
7126     if (!Proto && !Args.empty() &&
7127         (!FDecl || (!FDecl->isImplicit() &&
7128                     !Diags.isIgnored(diag::warn_strict_uses_without_prototype,
7129                                      FDecl->getLocation()))))
7130       Diag(LParenLoc, diag::warn_strict_uses_without_prototype)
7131           << (FDecl != nullptr) << FDecl;
7132 
7133     // Promote the arguments (C99 6.5.2.2p6).
7134     for (unsigned i = 0, e = Args.size(); i != e; i++) {
7135       Expr *Arg = Args[i];
7136 
7137       if (Proto && i < Proto->getNumParams()) {
7138         InitializedEntity Entity = InitializedEntity::InitializeParameter(
7139             Context, Proto->getParamType(i), Proto->isParamConsumed(i));
7140         ExprResult ArgE =
7141             PerformCopyInitialization(Entity, SourceLocation(), Arg);
7142         if (ArgE.isInvalid())
7143           return true;
7144 
7145         Arg = ArgE.getAs<Expr>();
7146 
7147       } else {
7148         ExprResult ArgE = DefaultArgumentPromotion(Arg);
7149 
7150         if (ArgE.isInvalid())
7151           return true;
7152 
7153         Arg = ArgE.getAs<Expr>();
7154       }
7155 
7156       if (RequireCompleteType(Arg->getBeginLoc(), Arg->getType(),
7157                               diag::err_call_incomplete_argument, Arg))
7158         return ExprError();
7159 
7160       TheCall->setArg(i, Arg);
7161     }
7162     TheCall->computeDependence();
7163   }
7164 
7165   if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
7166     if (!Method->isStatic())
7167       return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
7168         << Fn->getSourceRange());
7169 
7170   // Check for sentinels
7171   if (NDecl)
7172     DiagnoseSentinelCalls(NDecl, LParenLoc, Args);
7173 
7174   // Warn for unions passing across security boundary (CMSE).
7175   if (FuncT != nullptr && FuncT->getCmseNSCallAttr()) {
7176     for (unsigned i = 0, e = Args.size(); i != e; i++) {
7177       if (const auto *RT =
7178               dyn_cast<RecordType>(Args[i]->getType().getCanonicalType())) {
7179         if (RT->getDecl()->isOrContainsUnion())
7180           Diag(Args[i]->getBeginLoc(), diag::warn_cmse_nonsecure_union)
7181               << 0 << i;
7182       }
7183     }
7184   }
7185 
7186   // Do special checking on direct calls to functions.
7187   if (FDecl) {
7188     if (CheckFunctionCall(FDecl, TheCall, Proto))
7189       return ExprError();
7190 
7191     checkFortifiedBuiltinMemoryFunction(FDecl, TheCall);
7192 
7193     if (BuiltinID)
7194       return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
7195   } else if (NDecl) {
7196     if (CheckPointerCall(NDecl, TheCall, Proto))
7197       return ExprError();
7198   } else {
7199     if (CheckOtherCall(TheCall, Proto))
7200       return ExprError();
7201   }
7202 
7203   return CheckForImmediateInvocation(MaybeBindToTemporary(TheCall), FDecl);
7204 }
7205 
7206 ExprResult
7207 Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
7208                            SourceLocation RParenLoc, Expr *InitExpr) {
7209   assert(Ty && "ActOnCompoundLiteral(): missing type");
7210   assert(InitExpr && "ActOnCompoundLiteral(): missing expression");
7211 
7212   TypeSourceInfo *TInfo;
7213   QualType literalType = GetTypeFromParser(Ty, &TInfo);
7214   if (!TInfo)
7215     TInfo = Context.getTrivialTypeSourceInfo(literalType);
7216 
7217   return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
7218 }
7219 
7220 ExprResult
7221 Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
7222                                SourceLocation RParenLoc, Expr *LiteralExpr) {
7223   QualType literalType = TInfo->getType();
7224 
7225   if (literalType->isArrayType()) {
7226     if (RequireCompleteSizedType(
7227             LParenLoc, Context.getBaseElementType(literalType),
7228             diag::err_array_incomplete_or_sizeless_type,
7229             SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
7230       return ExprError();
7231     if (literalType->isVariableArrayType()) {
7232       if (!tryToFixVariablyModifiedVarType(TInfo, literalType, LParenLoc,
7233                                            diag::err_variable_object_no_init)) {
7234         return ExprError();
7235       }
7236     }
7237   } else if (!literalType->isDependentType() &&
7238              RequireCompleteType(LParenLoc, literalType,
7239                diag::err_typecheck_decl_incomplete_type,
7240                SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
7241     return ExprError();
7242 
7243   InitializedEntity Entity
7244     = InitializedEntity::InitializeCompoundLiteralInit(TInfo);
7245   InitializationKind Kind
7246     = InitializationKind::CreateCStyleCast(LParenLoc,
7247                                            SourceRange(LParenLoc, RParenLoc),
7248                                            /*InitList=*/true);
7249   InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr);
7250   ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr,
7251                                       &literalType);
7252   if (Result.isInvalid())
7253     return ExprError();
7254   LiteralExpr = Result.get();
7255 
7256   bool isFileScope = !CurContext->isFunctionOrMethod();
7257 
7258   // In C, compound literals are l-values for some reason.
7259   // For GCC compatibility, in C++, file-scope array compound literals with
7260   // constant initializers are also l-values, and compound literals are
7261   // otherwise prvalues.
7262   //
7263   // (GCC also treats C++ list-initialized file-scope array prvalues with
7264   // constant initializers as l-values, but that's non-conforming, so we don't
7265   // follow it there.)
7266   //
7267   // FIXME: It would be better to handle the lvalue cases as materializing and
7268   // lifetime-extending a temporary object, but our materialized temporaries
7269   // representation only supports lifetime extension from a variable, not "out
7270   // of thin air".
7271   // FIXME: For C++, we might want to instead lifetime-extend only if a pointer
7272   // is bound to the result of applying array-to-pointer decay to the compound
7273   // literal.
7274   // FIXME: GCC supports compound literals of reference type, which should
7275   // obviously have a value kind derived from the kind of reference involved.
7276   ExprValueKind VK =
7277       (getLangOpts().CPlusPlus && !(isFileScope && literalType->isArrayType()))
7278           ? VK_PRValue
7279           : VK_LValue;
7280 
7281   if (isFileScope)
7282     if (auto ILE = dyn_cast<InitListExpr>(LiteralExpr))
7283       for (unsigned i = 0, j = ILE->getNumInits(); i != j; i++) {
7284         Expr *Init = ILE->getInit(i);
7285         ILE->setInit(i, ConstantExpr::Create(Context, Init));
7286       }
7287 
7288   auto *E = new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
7289                                               VK, LiteralExpr, isFileScope);
7290   if (isFileScope) {
7291     if (!LiteralExpr->isTypeDependent() &&
7292         !LiteralExpr->isValueDependent() &&
7293         !literalType->isDependentType()) // C99 6.5.2.5p3
7294       if (CheckForConstantInitializer(LiteralExpr, literalType))
7295         return ExprError();
7296   } else if (literalType.getAddressSpace() != LangAS::opencl_private &&
7297              literalType.getAddressSpace() != LangAS::Default) {
7298     // Embedded-C extensions to C99 6.5.2.5:
7299     //   "If the compound literal occurs inside the body of a function, the
7300     //   type name shall not be qualified by an address-space qualifier."
7301     Diag(LParenLoc, diag::err_compound_literal_with_address_space)
7302       << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd());
7303     return ExprError();
7304   }
7305 
7306   if (!isFileScope && !getLangOpts().CPlusPlus) {
7307     // Compound literals that have automatic storage duration are destroyed at
7308     // the end of the scope in C; in C++, they're just temporaries.
7309 
7310     // Emit diagnostics if it is or contains a C union type that is non-trivial
7311     // to destruct.
7312     if (E->getType().hasNonTrivialToPrimitiveDestructCUnion())
7313       checkNonTrivialCUnion(E->getType(), E->getExprLoc(),
7314                             NTCUC_CompoundLiteral, NTCUK_Destruct);
7315 
7316     // Diagnose jumps that enter or exit the lifetime of the compound literal.
7317     if (literalType.isDestructedType()) {
7318       Cleanup.setExprNeedsCleanups(true);
7319       ExprCleanupObjects.push_back(E);
7320       getCurFunction()->setHasBranchProtectedScope();
7321     }
7322   }
7323 
7324   if (E->getType().hasNonTrivialToPrimitiveDefaultInitializeCUnion() ||
7325       E->getType().hasNonTrivialToPrimitiveCopyCUnion())
7326     checkNonTrivialCUnionInInitializer(E->getInitializer(),
7327                                        E->getInitializer()->getExprLoc());
7328 
7329   return MaybeBindToTemporary(E);
7330 }
7331 
7332 ExprResult
7333 Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList,
7334                     SourceLocation RBraceLoc) {
7335   // Only produce each kind of designated initialization diagnostic once.
7336   SourceLocation FirstDesignator;
7337   bool DiagnosedArrayDesignator = false;
7338   bool DiagnosedNestedDesignator = false;
7339   bool DiagnosedMixedDesignator = false;
7340 
7341   // Check that any designated initializers are syntactically valid in the
7342   // current language mode.
7343   for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) {
7344     if (auto *DIE = dyn_cast<DesignatedInitExpr>(InitArgList[I])) {
7345       if (FirstDesignator.isInvalid())
7346         FirstDesignator = DIE->getBeginLoc();
7347 
7348       if (!getLangOpts().CPlusPlus)
7349         break;
7350 
7351       if (!DiagnosedNestedDesignator && DIE->size() > 1) {
7352         DiagnosedNestedDesignator = true;
7353         Diag(DIE->getBeginLoc(), diag::ext_designated_init_nested)
7354           << DIE->getDesignatorsSourceRange();
7355       }
7356 
7357       for (auto &Desig : DIE->designators()) {
7358         if (!Desig.isFieldDesignator() && !DiagnosedArrayDesignator) {
7359           DiagnosedArrayDesignator = true;
7360           Diag(Desig.getBeginLoc(), diag::ext_designated_init_array)
7361             << Desig.getSourceRange();
7362         }
7363       }
7364 
7365       if (!DiagnosedMixedDesignator &&
7366           !isa<DesignatedInitExpr>(InitArgList[0])) {
7367         DiagnosedMixedDesignator = true;
7368         Diag(DIE->getBeginLoc(), diag::ext_designated_init_mixed)
7369           << DIE->getSourceRange();
7370         Diag(InitArgList[0]->getBeginLoc(), diag::note_designated_init_mixed)
7371           << InitArgList[0]->getSourceRange();
7372       }
7373     } else if (getLangOpts().CPlusPlus && !DiagnosedMixedDesignator &&
7374                isa<DesignatedInitExpr>(InitArgList[0])) {
7375       DiagnosedMixedDesignator = true;
7376       auto *DIE = cast<DesignatedInitExpr>(InitArgList[0]);
7377       Diag(DIE->getBeginLoc(), diag::ext_designated_init_mixed)
7378         << DIE->getSourceRange();
7379       Diag(InitArgList[I]->getBeginLoc(), diag::note_designated_init_mixed)
7380         << InitArgList[I]->getSourceRange();
7381     }
7382   }
7383 
7384   if (FirstDesignator.isValid()) {
7385     // Only diagnose designated initiaization as a C++20 extension if we didn't
7386     // already diagnose use of (non-C++20) C99 designator syntax.
7387     if (getLangOpts().CPlusPlus && !DiagnosedArrayDesignator &&
7388         !DiagnosedNestedDesignator && !DiagnosedMixedDesignator) {
7389       Diag(FirstDesignator, getLangOpts().CPlusPlus20
7390                                 ? diag::warn_cxx17_compat_designated_init
7391                                 : diag::ext_cxx_designated_init);
7392     } else if (!getLangOpts().CPlusPlus && !getLangOpts().C99) {
7393       Diag(FirstDesignator, diag::ext_designated_init);
7394     }
7395   }
7396 
7397   return BuildInitList(LBraceLoc, InitArgList, RBraceLoc);
7398 }
7399 
7400 ExprResult
7401 Sema::BuildInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList,
7402                     SourceLocation RBraceLoc) {
7403   // Semantic analysis for initializers is done by ActOnDeclarator() and
7404   // CheckInitializer() - it requires knowledge of the object being initialized.
7405 
7406   // Immediately handle non-overload placeholders.  Overloads can be
7407   // resolved contextually, but everything else here can't.
7408   for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) {
7409     if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) {
7410       ExprResult result = CheckPlaceholderExpr(InitArgList[I]);
7411 
7412       // Ignore failures; dropping the entire initializer list because
7413       // of one failure would be terrible for indexing/etc.
7414       if (result.isInvalid()) continue;
7415 
7416       InitArgList[I] = result.get();
7417     }
7418   }
7419 
7420   InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList,
7421                                                RBraceLoc);
7422   E->setType(Context.VoidTy); // FIXME: just a place holder for now.
7423   return E;
7424 }
7425 
7426 /// Do an explicit extend of the given block pointer if we're in ARC.
7427 void Sema::maybeExtendBlockObject(ExprResult &E) {
7428   assert(E.get()->getType()->isBlockPointerType());
7429   assert(E.get()->isPRValue());
7430 
7431   // Only do this in an r-value context.
7432   if (!getLangOpts().ObjCAutoRefCount) return;
7433 
7434   E = ImplicitCastExpr::Create(
7435       Context, E.get()->getType(), CK_ARCExtendBlockObject, E.get(),
7436       /*base path*/ nullptr, VK_PRValue, FPOptionsOverride());
7437   Cleanup.setExprNeedsCleanups(true);
7438 }
7439 
7440 /// Prepare a conversion of the given expression to an ObjC object
7441 /// pointer type.
7442 CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) {
7443   QualType type = E.get()->getType();
7444   if (type->isObjCObjectPointerType()) {
7445     return CK_BitCast;
7446   } else if (type->isBlockPointerType()) {
7447     maybeExtendBlockObject(E);
7448     return CK_BlockPointerToObjCPointerCast;
7449   } else {
7450     assert(type->isPointerType());
7451     return CK_CPointerToObjCPointerCast;
7452   }
7453 }
7454 
7455 /// Prepares for a scalar cast, performing all the necessary stages
7456 /// except the final cast and returning the kind required.
7457 CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) {
7458   // Both Src and Dest are scalar types, i.e. arithmetic or pointer.
7459   // Also, callers should have filtered out the invalid cases with
7460   // pointers.  Everything else should be possible.
7461 
7462   QualType SrcTy = Src.get()->getType();
7463   if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
7464     return CK_NoOp;
7465 
7466   switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) {
7467   case Type::STK_MemberPointer:
7468     llvm_unreachable("member pointer type in C");
7469 
7470   case Type::STK_CPointer:
7471   case Type::STK_BlockPointer:
7472   case Type::STK_ObjCObjectPointer:
7473     switch (DestTy->getScalarTypeKind()) {
7474     case Type::STK_CPointer: {
7475       LangAS SrcAS = SrcTy->getPointeeType().getAddressSpace();
7476       LangAS DestAS = DestTy->getPointeeType().getAddressSpace();
7477       if (SrcAS != DestAS)
7478         return CK_AddressSpaceConversion;
7479       if (Context.hasCvrSimilarType(SrcTy, DestTy))
7480         return CK_NoOp;
7481       return CK_BitCast;
7482     }
7483     case Type::STK_BlockPointer:
7484       return (SrcKind == Type::STK_BlockPointer
7485                 ? CK_BitCast : CK_AnyPointerToBlockPointerCast);
7486     case Type::STK_ObjCObjectPointer:
7487       if (SrcKind == Type::STK_ObjCObjectPointer)
7488         return CK_BitCast;
7489       if (SrcKind == Type::STK_CPointer)
7490         return CK_CPointerToObjCPointerCast;
7491       maybeExtendBlockObject(Src);
7492       return CK_BlockPointerToObjCPointerCast;
7493     case Type::STK_Bool:
7494       return CK_PointerToBoolean;
7495     case Type::STK_Integral:
7496       return CK_PointerToIntegral;
7497     case Type::STK_Floating:
7498     case Type::STK_FloatingComplex:
7499     case Type::STK_IntegralComplex:
7500     case Type::STK_MemberPointer:
7501     case Type::STK_FixedPoint:
7502       llvm_unreachable("illegal cast from pointer");
7503     }
7504     llvm_unreachable("Should have returned before this");
7505 
7506   case Type::STK_FixedPoint:
7507     switch (DestTy->getScalarTypeKind()) {
7508     case Type::STK_FixedPoint:
7509       return CK_FixedPointCast;
7510     case Type::STK_Bool:
7511       return CK_FixedPointToBoolean;
7512     case Type::STK_Integral:
7513       return CK_FixedPointToIntegral;
7514     case Type::STK_Floating:
7515       return CK_FixedPointToFloating;
7516     case Type::STK_IntegralComplex:
7517     case Type::STK_FloatingComplex:
7518       Diag(Src.get()->getExprLoc(),
7519            diag::err_unimplemented_conversion_with_fixed_point_type)
7520           << DestTy;
7521       return CK_IntegralCast;
7522     case Type::STK_CPointer:
7523     case Type::STK_ObjCObjectPointer:
7524     case Type::STK_BlockPointer:
7525     case Type::STK_MemberPointer:
7526       llvm_unreachable("illegal cast to pointer type");
7527     }
7528     llvm_unreachable("Should have returned before this");
7529 
7530   case Type::STK_Bool: // casting from bool is like casting from an integer
7531   case Type::STK_Integral:
7532     switch (DestTy->getScalarTypeKind()) {
7533     case Type::STK_CPointer:
7534     case Type::STK_ObjCObjectPointer:
7535     case Type::STK_BlockPointer:
7536       if (Src.get()->isNullPointerConstant(Context,
7537                                            Expr::NPC_ValueDependentIsNull))
7538         return CK_NullToPointer;
7539       return CK_IntegralToPointer;
7540     case Type::STK_Bool:
7541       return CK_IntegralToBoolean;
7542     case Type::STK_Integral:
7543       return CK_IntegralCast;
7544     case Type::STK_Floating:
7545       return CK_IntegralToFloating;
7546     case Type::STK_IntegralComplex:
7547       Src = ImpCastExprToType(Src.get(),
7548                       DestTy->castAs<ComplexType>()->getElementType(),
7549                       CK_IntegralCast);
7550       return CK_IntegralRealToComplex;
7551     case Type::STK_FloatingComplex:
7552       Src = ImpCastExprToType(Src.get(),
7553                       DestTy->castAs<ComplexType>()->getElementType(),
7554                       CK_IntegralToFloating);
7555       return CK_FloatingRealToComplex;
7556     case Type::STK_MemberPointer:
7557       llvm_unreachable("member pointer type in C");
7558     case Type::STK_FixedPoint:
7559       return CK_IntegralToFixedPoint;
7560     }
7561     llvm_unreachable("Should have returned before this");
7562 
7563   case Type::STK_Floating:
7564     switch (DestTy->getScalarTypeKind()) {
7565     case Type::STK_Floating:
7566       return CK_FloatingCast;
7567     case Type::STK_Bool:
7568       return CK_FloatingToBoolean;
7569     case Type::STK_Integral:
7570       return CK_FloatingToIntegral;
7571     case Type::STK_FloatingComplex:
7572       Src = ImpCastExprToType(Src.get(),
7573                               DestTy->castAs<ComplexType>()->getElementType(),
7574                               CK_FloatingCast);
7575       return CK_FloatingRealToComplex;
7576     case Type::STK_IntegralComplex:
7577       Src = ImpCastExprToType(Src.get(),
7578                               DestTy->castAs<ComplexType>()->getElementType(),
7579                               CK_FloatingToIntegral);
7580       return CK_IntegralRealToComplex;
7581     case Type::STK_CPointer:
7582     case Type::STK_ObjCObjectPointer:
7583     case Type::STK_BlockPointer:
7584       llvm_unreachable("valid float->pointer cast?");
7585     case Type::STK_MemberPointer:
7586       llvm_unreachable("member pointer type in C");
7587     case Type::STK_FixedPoint:
7588       return CK_FloatingToFixedPoint;
7589     }
7590     llvm_unreachable("Should have returned before this");
7591 
7592   case Type::STK_FloatingComplex:
7593     switch (DestTy->getScalarTypeKind()) {
7594     case Type::STK_FloatingComplex:
7595       return CK_FloatingComplexCast;
7596     case Type::STK_IntegralComplex:
7597       return CK_FloatingComplexToIntegralComplex;
7598     case Type::STK_Floating: {
7599       QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
7600       if (Context.hasSameType(ET, DestTy))
7601         return CK_FloatingComplexToReal;
7602       Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal);
7603       return CK_FloatingCast;
7604     }
7605     case Type::STK_Bool:
7606       return CK_FloatingComplexToBoolean;
7607     case Type::STK_Integral:
7608       Src = ImpCastExprToType(Src.get(),
7609                               SrcTy->castAs<ComplexType>()->getElementType(),
7610                               CK_FloatingComplexToReal);
7611       return CK_FloatingToIntegral;
7612     case Type::STK_CPointer:
7613     case Type::STK_ObjCObjectPointer:
7614     case Type::STK_BlockPointer:
7615       llvm_unreachable("valid complex float->pointer cast?");
7616     case Type::STK_MemberPointer:
7617       llvm_unreachable("member pointer type in C");
7618     case Type::STK_FixedPoint:
7619       Diag(Src.get()->getExprLoc(),
7620            diag::err_unimplemented_conversion_with_fixed_point_type)
7621           << SrcTy;
7622       return CK_IntegralCast;
7623     }
7624     llvm_unreachable("Should have returned before this");
7625 
7626   case Type::STK_IntegralComplex:
7627     switch (DestTy->getScalarTypeKind()) {
7628     case Type::STK_FloatingComplex:
7629       return CK_IntegralComplexToFloatingComplex;
7630     case Type::STK_IntegralComplex:
7631       return CK_IntegralComplexCast;
7632     case Type::STK_Integral: {
7633       QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
7634       if (Context.hasSameType(ET, DestTy))
7635         return CK_IntegralComplexToReal;
7636       Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal);
7637       return CK_IntegralCast;
7638     }
7639     case Type::STK_Bool:
7640       return CK_IntegralComplexToBoolean;
7641     case Type::STK_Floating:
7642       Src = ImpCastExprToType(Src.get(),
7643                               SrcTy->castAs<ComplexType>()->getElementType(),
7644                               CK_IntegralComplexToReal);
7645       return CK_IntegralToFloating;
7646     case Type::STK_CPointer:
7647     case Type::STK_ObjCObjectPointer:
7648     case Type::STK_BlockPointer:
7649       llvm_unreachable("valid complex int->pointer cast?");
7650     case Type::STK_MemberPointer:
7651       llvm_unreachable("member pointer type in C");
7652     case Type::STK_FixedPoint:
7653       Diag(Src.get()->getExprLoc(),
7654            diag::err_unimplemented_conversion_with_fixed_point_type)
7655           << SrcTy;
7656       return CK_IntegralCast;
7657     }
7658     llvm_unreachable("Should have returned before this");
7659   }
7660 
7661   llvm_unreachable("Unhandled scalar cast");
7662 }
7663 
7664 static bool breakDownVectorType(QualType type, uint64_t &len,
7665                                 QualType &eltType) {
7666   // Vectors are simple.
7667   if (const VectorType *vecType = type->getAs<VectorType>()) {
7668     len = vecType->getNumElements();
7669     eltType = vecType->getElementType();
7670     assert(eltType->isScalarType());
7671     return true;
7672   }
7673 
7674   // We allow lax conversion to and from non-vector types, but only if
7675   // they're real types (i.e. non-complex, non-pointer scalar types).
7676   if (!type->isRealType()) return false;
7677 
7678   len = 1;
7679   eltType = type;
7680   return true;
7681 }
7682 
7683 /// Are the two types SVE-bitcast-compatible types? I.e. is bitcasting from the
7684 /// first SVE type (e.g. an SVE VLAT) to the second type (e.g. an SVE VLST)
7685 /// allowed?
7686 ///
7687 /// This will also return false if the two given types do not make sense from
7688 /// the perspective of SVE bitcasts.
7689 bool Sema::isValidSveBitcast(QualType srcTy, QualType destTy) {
7690   assert(srcTy->isVectorType() || destTy->isVectorType());
7691 
7692   auto ValidScalableConversion = [](QualType FirstType, QualType SecondType) {
7693     if (!FirstType->isSizelessBuiltinType())
7694       return false;
7695 
7696     const auto *VecTy = SecondType->getAs<VectorType>();
7697     return VecTy &&
7698            VecTy->getVectorKind() == VectorType::SveFixedLengthDataVector;
7699   };
7700 
7701   return ValidScalableConversion(srcTy, destTy) ||
7702          ValidScalableConversion(destTy, srcTy);
7703 }
7704 
7705 /// Are the two types matrix types and do they have the same dimensions i.e.
7706 /// do they have the same number of rows and the same number of columns?
7707 bool Sema::areMatrixTypesOfTheSameDimension(QualType srcTy, QualType destTy) {
7708   if (!destTy->isMatrixType() || !srcTy->isMatrixType())
7709     return false;
7710 
7711   const ConstantMatrixType *matSrcType = srcTy->getAs<ConstantMatrixType>();
7712   const ConstantMatrixType *matDestType = destTy->getAs<ConstantMatrixType>();
7713 
7714   return matSrcType->getNumRows() == matDestType->getNumRows() &&
7715          matSrcType->getNumColumns() == matDestType->getNumColumns();
7716 }
7717 
7718 bool Sema::areVectorTypesSameSize(QualType SrcTy, QualType DestTy) {
7719   assert(DestTy->isVectorType() || SrcTy->isVectorType());
7720 
7721   uint64_t SrcLen, DestLen;
7722   QualType SrcEltTy, DestEltTy;
7723   if (!breakDownVectorType(SrcTy, SrcLen, SrcEltTy))
7724     return false;
7725   if (!breakDownVectorType(DestTy, DestLen, DestEltTy))
7726     return false;
7727 
7728   // ASTContext::getTypeSize will return the size rounded up to a
7729   // power of 2, so instead of using that, we need to use the raw
7730   // element size multiplied by the element count.
7731   uint64_t SrcEltSize = Context.getTypeSize(SrcEltTy);
7732   uint64_t DestEltSize = Context.getTypeSize(DestEltTy);
7733 
7734   return (SrcLen * SrcEltSize == DestLen * DestEltSize);
7735 }
7736 
7737 // This returns true if at least one of the types is an altivec vector.
7738 bool Sema::anyAltivecTypes(QualType SrcTy, QualType DestTy) {
7739   assert((DestTy->isVectorType() || SrcTy->isVectorType()) &&
7740          "expected at least one type to be a vector here");
7741 
7742   bool IsSrcTyAltivec =
7743       SrcTy->isVectorType() && (SrcTy->castAs<VectorType>()->getVectorKind() ==
7744                                 VectorType::AltiVecVector);
7745   bool IsDestTyAltivec = DestTy->isVectorType() &&
7746                          (DestTy->castAs<VectorType>()->getVectorKind() ==
7747                           VectorType::AltiVecVector);
7748 
7749   return (IsSrcTyAltivec || IsDestTyAltivec);
7750 }
7751 
7752 // This returns true if both vectors have the same element type.
7753 bool Sema::areSameVectorElemTypes(QualType SrcTy, QualType DestTy) {
7754   assert((DestTy->isVectorType() || SrcTy->isVectorType()) &&
7755          "expected at least one type to be a vector here");
7756 
7757   uint64_t SrcLen, DestLen;
7758   QualType SrcEltTy, DestEltTy;
7759   if (!breakDownVectorType(SrcTy, SrcLen, SrcEltTy))
7760     return false;
7761   if (!breakDownVectorType(DestTy, DestLen, DestEltTy))
7762     return false;
7763 
7764   return (SrcEltTy == DestEltTy);
7765 }
7766 
7767 /// Are the two types lax-compatible vector types?  That is, given
7768 /// that one of them is a vector, do they have equal storage sizes,
7769 /// where the storage size is the number of elements times the element
7770 /// size?
7771 ///
7772 /// This will also return false if either of the types is neither a
7773 /// vector nor a real type.
7774 bool Sema::areLaxCompatibleVectorTypes(QualType srcTy, QualType destTy) {
7775   assert(destTy->isVectorType() || srcTy->isVectorType());
7776 
7777   // Disallow lax conversions between scalars and ExtVectors (these
7778   // conversions are allowed for other vector types because common headers
7779   // depend on them).  Most scalar OP ExtVector cases are handled by the
7780   // splat path anyway, which does what we want (convert, not bitcast).
7781   // What this rules out for ExtVectors is crazy things like char4*float.
7782   if (srcTy->isScalarType() && destTy->isExtVectorType()) return false;
7783   if (destTy->isScalarType() && srcTy->isExtVectorType()) return false;
7784 
7785   return areVectorTypesSameSize(srcTy, destTy);
7786 }
7787 
7788 /// Is this a legal conversion between two types, one of which is
7789 /// known to be a vector type?
7790 bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) {
7791   assert(destTy->isVectorType() || srcTy->isVectorType());
7792 
7793   switch (Context.getLangOpts().getLaxVectorConversions()) {
7794   case LangOptions::LaxVectorConversionKind::None:
7795     return false;
7796 
7797   case LangOptions::LaxVectorConversionKind::Integer:
7798     if (!srcTy->isIntegralOrEnumerationType()) {
7799       auto *Vec = srcTy->getAs<VectorType>();
7800       if (!Vec || !Vec->getElementType()->isIntegralOrEnumerationType())
7801         return false;
7802     }
7803     if (!destTy->isIntegralOrEnumerationType()) {
7804       auto *Vec = destTy->getAs<VectorType>();
7805       if (!Vec || !Vec->getElementType()->isIntegralOrEnumerationType())
7806         return false;
7807     }
7808     // OK, integer (vector) -> integer (vector) bitcast.
7809     break;
7810 
7811     case LangOptions::LaxVectorConversionKind::All:
7812     break;
7813   }
7814 
7815   return areLaxCompatibleVectorTypes(srcTy, destTy);
7816 }
7817 
7818 bool Sema::CheckMatrixCast(SourceRange R, QualType DestTy, QualType SrcTy,
7819                            CastKind &Kind) {
7820   if (SrcTy->isMatrixType() && DestTy->isMatrixType()) {
7821     if (!areMatrixTypesOfTheSameDimension(SrcTy, DestTy)) {
7822       return Diag(R.getBegin(), diag::err_invalid_conversion_between_matrixes)
7823              << DestTy << SrcTy << R;
7824     }
7825   } else if (SrcTy->isMatrixType()) {
7826     return Diag(R.getBegin(),
7827                 diag::err_invalid_conversion_between_matrix_and_type)
7828            << SrcTy << DestTy << R;
7829   } else if (DestTy->isMatrixType()) {
7830     return Diag(R.getBegin(),
7831                 diag::err_invalid_conversion_between_matrix_and_type)
7832            << DestTy << SrcTy << R;
7833   }
7834 
7835   Kind = CK_MatrixCast;
7836   return false;
7837 }
7838 
7839 bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
7840                            CastKind &Kind) {
7841   assert(VectorTy->isVectorType() && "Not a vector type!");
7842 
7843   if (Ty->isVectorType() || Ty->isIntegralType(Context)) {
7844     if (!areLaxCompatibleVectorTypes(Ty, VectorTy))
7845       return Diag(R.getBegin(),
7846                   Ty->isVectorType() ?
7847                   diag::err_invalid_conversion_between_vectors :
7848                   diag::err_invalid_conversion_between_vector_and_integer)
7849         << VectorTy << Ty << R;
7850   } else
7851     return Diag(R.getBegin(),
7852                 diag::err_invalid_conversion_between_vector_and_scalar)
7853       << VectorTy << Ty << R;
7854 
7855   Kind = CK_BitCast;
7856   return false;
7857 }
7858 
7859 ExprResult Sema::prepareVectorSplat(QualType VectorTy, Expr *SplattedExpr) {
7860   QualType DestElemTy = VectorTy->castAs<VectorType>()->getElementType();
7861 
7862   if (DestElemTy == SplattedExpr->getType())
7863     return SplattedExpr;
7864 
7865   assert(DestElemTy->isFloatingType() ||
7866          DestElemTy->isIntegralOrEnumerationType());
7867 
7868   CastKind CK;
7869   if (VectorTy->isExtVectorType() && SplattedExpr->getType()->isBooleanType()) {
7870     // OpenCL requires that we convert `true` boolean expressions to -1, but
7871     // only when splatting vectors.
7872     if (DestElemTy->isFloatingType()) {
7873       // To avoid having to have a CK_BooleanToSignedFloating cast kind, we cast
7874       // in two steps: boolean to signed integral, then to floating.
7875       ExprResult CastExprRes = ImpCastExprToType(SplattedExpr, Context.IntTy,
7876                                                  CK_BooleanToSignedIntegral);
7877       SplattedExpr = CastExprRes.get();
7878       CK = CK_IntegralToFloating;
7879     } else {
7880       CK = CK_BooleanToSignedIntegral;
7881     }
7882   } else {
7883     ExprResult CastExprRes = SplattedExpr;
7884     CK = PrepareScalarCast(CastExprRes, DestElemTy);
7885     if (CastExprRes.isInvalid())
7886       return ExprError();
7887     SplattedExpr = CastExprRes.get();
7888   }
7889   return ImpCastExprToType(SplattedExpr, DestElemTy, CK);
7890 }
7891 
7892 ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy,
7893                                     Expr *CastExpr, CastKind &Kind) {
7894   assert(DestTy->isExtVectorType() && "Not an extended vector type!");
7895 
7896   QualType SrcTy = CastExpr->getType();
7897 
7898   // If SrcTy is a VectorType, the total size must match to explicitly cast to
7899   // an ExtVectorType.
7900   // In OpenCL, casts between vectors of different types are not allowed.
7901   // (See OpenCL 6.2).
7902   if (SrcTy->isVectorType()) {
7903     if (!areLaxCompatibleVectorTypes(SrcTy, DestTy) ||
7904         (getLangOpts().OpenCL &&
7905          !Context.hasSameUnqualifiedType(DestTy, SrcTy))) {
7906       Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
7907         << DestTy << SrcTy << R;
7908       return ExprError();
7909     }
7910     Kind = CK_BitCast;
7911     return CastExpr;
7912   }
7913 
7914   // All non-pointer scalars can be cast to ExtVector type.  The appropriate
7915   // conversion will take place first from scalar to elt type, and then
7916   // splat from elt type to vector.
7917   if (SrcTy->isPointerType())
7918     return Diag(R.getBegin(),
7919                 diag::err_invalid_conversion_between_vector_and_scalar)
7920       << DestTy << SrcTy << R;
7921 
7922   Kind = CK_VectorSplat;
7923   return prepareVectorSplat(DestTy, CastExpr);
7924 }
7925 
7926 ExprResult
7927 Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
7928                     Declarator &D, ParsedType &Ty,
7929                     SourceLocation RParenLoc, Expr *CastExpr) {
7930   assert(!D.isInvalidType() && (CastExpr != nullptr) &&
7931          "ActOnCastExpr(): missing type or expr");
7932 
7933   TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType());
7934   if (D.isInvalidType())
7935     return ExprError();
7936 
7937   if (getLangOpts().CPlusPlus) {
7938     // Check that there are no default arguments (C++ only).
7939     CheckExtraCXXDefaultArguments(D);
7940   } else {
7941     // Make sure any TypoExprs have been dealt with.
7942     ExprResult Res = CorrectDelayedTyposInExpr(CastExpr);
7943     if (!Res.isUsable())
7944       return ExprError();
7945     CastExpr = Res.get();
7946   }
7947 
7948   checkUnusedDeclAttributes(D);
7949 
7950   QualType castType = castTInfo->getType();
7951   Ty = CreateParsedType(castType, castTInfo);
7952 
7953   bool isVectorLiteral = false;
7954 
7955   // Check for an altivec or OpenCL literal,
7956   // i.e. all the elements are integer constants.
7957   ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr);
7958   ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr);
7959   if ((getLangOpts().AltiVec || getLangOpts().ZVector || getLangOpts().OpenCL)
7960        && castType->isVectorType() && (PE || PLE)) {
7961     if (PLE && PLE->getNumExprs() == 0) {
7962       Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer);
7963       return ExprError();
7964     }
7965     if (PE || PLE->getNumExprs() == 1) {
7966       Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0));
7967       if (!E->isTypeDependent() && !E->getType()->isVectorType())
7968         isVectorLiteral = true;
7969     }
7970     else
7971       isVectorLiteral = true;
7972   }
7973 
7974   // If this is a vector initializer, '(' type ')' '(' init, ..., init ')'
7975   // then handle it as such.
7976   if (isVectorLiteral)
7977     return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
7978 
7979   // If the Expr being casted is a ParenListExpr, handle it specially.
7980   // This is not an AltiVec-style cast, so turn the ParenListExpr into a
7981   // sequence of BinOp comma operators.
7982   if (isa<ParenListExpr>(CastExpr)) {
7983     ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr);
7984     if (Result.isInvalid()) return ExprError();
7985     CastExpr = Result.get();
7986   }
7987 
7988   if (getLangOpts().CPlusPlus && !castType->isVoidType())
7989     Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange();
7990 
7991   CheckTollFreeBridgeCast(castType, CastExpr);
7992 
7993   CheckObjCBridgeRelatedCast(castType, CastExpr);
7994 
7995   DiscardMisalignedMemberAddress(castType.getTypePtr(), CastExpr);
7996 
7997   return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
7998 }
7999 
8000 ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
8001                                     SourceLocation RParenLoc, Expr *E,
8002                                     TypeSourceInfo *TInfo) {
8003   assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) &&
8004          "Expected paren or paren list expression");
8005 
8006   Expr **exprs;
8007   unsigned numExprs;
8008   Expr *subExpr;
8009   SourceLocation LiteralLParenLoc, LiteralRParenLoc;
8010   if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) {
8011     LiteralLParenLoc = PE->getLParenLoc();
8012     LiteralRParenLoc = PE->getRParenLoc();
8013     exprs = PE->getExprs();
8014     numExprs = PE->getNumExprs();
8015   } else { // isa<ParenExpr> by assertion at function entrance
8016     LiteralLParenLoc = cast<ParenExpr>(E)->getLParen();
8017     LiteralRParenLoc = cast<ParenExpr>(E)->getRParen();
8018     subExpr = cast<ParenExpr>(E)->getSubExpr();
8019     exprs = &subExpr;
8020     numExprs = 1;
8021   }
8022 
8023   QualType Ty = TInfo->getType();
8024   assert(Ty->isVectorType() && "Expected vector type");
8025 
8026   SmallVector<Expr *, 8> initExprs;
8027   const VectorType *VTy = Ty->castAs<VectorType>();
8028   unsigned numElems = VTy->getNumElements();
8029 
8030   // '(...)' form of vector initialization in AltiVec: the number of
8031   // initializers must be one or must match the size of the vector.
8032   // If a single value is specified in the initializer then it will be
8033   // replicated to all the components of the vector
8034   if (CheckAltivecInitFromScalar(E->getSourceRange(), Ty,
8035                                  VTy->getElementType()))
8036     return ExprError();
8037   if (ShouldSplatAltivecScalarInCast(VTy)) {
8038     // The number of initializers must be one or must match the size of the
8039     // vector. If a single value is specified in the initializer then it will
8040     // be replicated to all the components of the vector
8041     if (numExprs == 1) {
8042       QualType ElemTy = VTy->getElementType();
8043       ExprResult Literal = DefaultLvalueConversion(exprs[0]);
8044       if (Literal.isInvalid())
8045         return ExprError();
8046       Literal = ImpCastExprToType(Literal.get(), ElemTy,
8047                                   PrepareScalarCast(Literal, ElemTy));
8048       return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
8049     }
8050     else if (numExprs < numElems) {
8051       Diag(E->getExprLoc(),
8052            diag::err_incorrect_number_of_vector_initializers);
8053       return ExprError();
8054     }
8055     else
8056       initExprs.append(exprs, exprs + numExprs);
8057   }
8058   else {
8059     // For OpenCL, when the number of initializers is a single value,
8060     // it will be replicated to all components of the vector.
8061     if (getLangOpts().OpenCL &&
8062         VTy->getVectorKind() == VectorType::GenericVector &&
8063         numExprs == 1) {
8064         QualType ElemTy = VTy->getElementType();
8065         ExprResult Literal = DefaultLvalueConversion(exprs[0]);
8066         if (Literal.isInvalid())
8067           return ExprError();
8068         Literal = ImpCastExprToType(Literal.get(), ElemTy,
8069                                     PrepareScalarCast(Literal, ElemTy));
8070         return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
8071     }
8072 
8073     initExprs.append(exprs, exprs + numExprs);
8074   }
8075   // FIXME: This means that pretty-printing the final AST will produce curly
8076   // braces instead of the original commas.
8077   InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc,
8078                                                    initExprs, LiteralRParenLoc);
8079   initE->setType(Ty);
8080   return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);
8081 }
8082 
8083 /// This is not an AltiVec-style cast or or C++ direct-initialization, so turn
8084 /// the ParenListExpr into a sequence of comma binary operators.
8085 ExprResult
8086 Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) {
8087   ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr);
8088   if (!E)
8089     return OrigExpr;
8090 
8091   ExprResult Result(E->getExpr(0));
8092 
8093   for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
8094     Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(),
8095                         E->getExpr(i));
8096 
8097   if (Result.isInvalid()) return ExprError();
8098 
8099   return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get());
8100 }
8101 
8102 ExprResult Sema::ActOnParenListExpr(SourceLocation L,
8103                                     SourceLocation R,
8104                                     MultiExprArg Val) {
8105   return ParenListExpr::Create(Context, L, Val, R);
8106 }
8107 
8108 /// Emit a specialized diagnostic when one expression is a null pointer
8109 /// constant and the other is not a pointer.  Returns true if a diagnostic is
8110 /// emitted.
8111 bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
8112                                       SourceLocation QuestionLoc) {
8113   Expr *NullExpr = LHSExpr;
8114   Expr *NonPointerExpr = RHSExpr;
8115   Expr::NullPointerConstantKind NullKind =
8116       NullExpr->isNullPointerConstant(Context,
8117                                       Expr::NPC_ValueDependentIsNotNull);
8118 
8119   if (NullKind == Expr::NPCK_NotNull) {
8120     NullExpr = RHSExpr;
8121     NonPointerExpr = LHSExpr;
8122     NullKind =
8123         NullExpr->isNullPointerConstant(Context,
8124                                         Expr::NPC_ValueDependentIsNotNull);
8125   }
8126 
8127   if (NullKind == Expr::NPCK_NotNull)
8128     return false;
8129 
8130   if (NullKind == Expr::NPCK_ZeroExpression)
8131     return false;
8132 
8133   if (NullKind == Expr::NPCK_ZeroLiteral) {
8134     // In this case, check to make sure that we got here from a "NULL"
8135     // string in the source code.
8136     NullExpr = NullExpr->IgnoreParenImpCasts();
8137     SourceLocation loc = NullExpr->getExprLoc();
8138     if (!findMacroSpelling(loc, "NULL"))
8139       return false;
8140   }
8141 
8142   int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr);
8143   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null)
8144       << NonPointerExpr->getType() << DiagType
8145       << NonPointerExpr->getSourceRange();
8146   return true;
8147 }
8148 
8149 /// Return false if the condition expression is valid, true otherwise.
8150 static bool checkCondition(Sema &S, Expr *Cond, SourceLocation QuestionLoc) {
8151   QualType CondTy = Cond->getType();
8152 
8153   // OpenCL v1.1 s6.3.i says the condition cannot be a floating point type.
8154   if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) {
8155     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
8156       << CondTy << Cond->getSourceRange();
8157     return true;
8158   }
8159 
8160   // C99 6.5.15p2
8161   if (CondTy->isScalarType()) return false;
8162 
8163   S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_scalar)
8164     << CondTy << Cond->getSourceRange();
8165   return true;
8166 }
8167 
8168 /// Handle when one or both operands are void type.
8169 static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS,
8170                                          ExprResult &RHS) {
8171     Expr *LHSExpr = LHS.get();
8172     Expr *RHSExpr = RHS.get();
8173 
8174     if (!LHSExpr->getType()->isVoidType())
8175       S.Diag(RHSExpr->getBeginLoc(), diag::ext_typecheck_cond_one_void)
8176           << RHSExpr->getSourceRange();
8177     if (!RHSExpr->getType()->isVoidType())
8178       S.Diag(LHSExpr->getBeginLoc(), diag::ext_typecheck_cond_one_void)
8179           << LHSExpr->getSourceRange();
8180     LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid);
8181     RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid);
8182     return S.Context.VoidTy;
8183 }
8184 
8185 /// Return false if the NullExpr can be promoted to PointerTy,
8186 /// true otherwise.
8187 static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr,
8188                                         QualType PointerTy) {
8189   if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
8190       !NullExpr.get()->isNullPointerConstant(S.Context,
8191                                             Expr::NPC_ValueDependentIsNull))
8192     return true;
8193 
8194   NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer);
8195   return false;
8196 }
8197 
8198 /// Checks compatibility between two pointers and return the resulting
8199 /// type.
8200 static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS,
8201                                                      ExprResult &RHS,
8202                                                      SourceLocation Loc) {
8203   QualType LHSTy = LHS.get()->getType();
8204   QualType RHSTy = RHS.get()->getType();
8205 
8206   if (S.Context.hasSameType(LHSTy, RHSTy)) {
8207     // Two identical pointers types are always compatible.
8208     return LHSTy;
8209   }
8210 
8211   QualType lhptee, rhptee;
8212 
8213   // Get the pointee types.
8214   bool IsBlockPointer = false;
8215   if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) {
8216     lhptee = LHSBTy->getPointeeType();
8217     rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType();
8218     IsBlockPointer = true;
8219   } else {
8220     lhptee = LHSTy->castAs<PointerType>()->getPointeeType();
8221     rhptee = RHSTy->castAs<PointerType>()->getPointeeType();
8222   }
8223 
8224   // C99 6.5.15p6: If both operands are pointers to compatible types or to
8225   // differently qualified versions of compatible types, the result type is
8226   // a pointer to an appropriately qualified version of the composite
8227   // type.
8228 
8229   // Only CVR-qualifiers exist in the standard, and the differently-qualified
8230   // clause doesn't make sense for our extensions. E.g. address space 2 should
8231   // be incompatible with address space 3: they may live on different devices or
8232   // anything.
8233   Qualifiers lhQual = lhptee.getQualifiers();
8234   Qualifiers rhQual = rhptee.getQualifiers();
8235 
8236   LangAS ResultAddrSpace = LangAS::Default;
8237   LangAS LAddrSpace = lhQual.getAddressSpace();
8238   LangAS RAddrSpace = rhQual.getAddressSpace();
8239 
8240   // OpenCL v1.1 s6.5 - Conversion between pointers to distinct address
8241   // spaces is disallowed.
8242   if (lhQual.isAddressSpaceSupersetOf(rhQual))
8243     ResultAddrSpace = LAddrSpace;
8244   else if (rhQual.isAddressSpaceSupersetOf(lhQual))
8245     ResultAddrSpace = RAddrSpace;
8246   else {
8247     S.Diag(Loc, diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
8248         << LHSTy << RHSTy << 2 << LHS.get()->getSourceRange()
8249         << RHS.get()->getSourceRange();
8250     return QualType();
8251   }
8252 
8253   unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers();
8254   auto LHSCastKind = CK_BitCast, RHSCastKind = CK_BitCast;
8255   lhQual.removeCVRQualifiers();
8256   rhQual.removeCVRQualifiers();
8257 
8258   // OpenCL v2.0 specification doesn't extend compatibility of type qualifiers
8259   // (C99 6.7.3) for address spaces. We assume that the check should behave in
8260   // the same manner as it's defined for CVR qualifiers, so for OpenCL two
8261   // qual types are compatible iff
8262   //  * corresponded types are compatible
8263   //  * CVR qualifiers are equal
8264   //  * address spaces are equal
8265   // Thus for conditional operator we merge CVR and address space unqualified
8266   // pointees and if there is a composite type we return a pointer to it with
8267   // merged qualifiers.
8268   LHSCastKind =
8269       LAddrSpace == ResultAddrSpace ? CK_BitCast : CK_AddressSpaceConversion;
8270   RHSCastKind =
8271       RAddrSpace == ResultAddrSpace ? CK_BitCast : CK_AddressSpaceConversion;
8272   lhQual.removeAddressSpace();
8273   rhQual.removeAddressSpace();
8274 
8275   lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual);
8276   rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual);
8277 
8278   QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee);
8279 
8280   if (CompositeTy.isNull()) {
8281     // In this situation, we assume void* type. No especially good
8282     // reason, but this is what gcc does, and we do have to pick
8283     // to get a consistent AST.
8284     QualType incompatTy;
8285     incompatTy = S.Context.getPointerType(
8286         S.Context.getAddrSpaceQualType(S.Context.VoidTy, ResultAddrSpace));
8287     LHS = S.ImpCastExprToType(LHS.get(), incompatTy, LHSCastKind);
8288     RHS = S.ImpCastExprToType(RHS.get(), incompatTy, RHSCastKind);
8289 
8290     // FIXME: For OpenCL the warning emission and cast to void* leaves a room
8291     // for casts between types with incompatible address space qualifiers.
8292     // For the following code the compiler produces casts between global and
8293     // local address spaces of the corresponded innermost pointees:
8294     // local int *global *a;
8295     // global int *global *b;
8296     // a = (0 ? a : b); // see C99 6.5.16.1.p1.
8297     S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers)
8298         << LHSTy << RHSTy << LHS.get()->getSourceRange()
8299         << RHS.get()->getSourceRange();
8300 
8301     return incompatTy;
8302   }
8303 
8304   // The pointer types are compatible.
8305   // In case of OpenCL ResultTy should have the address space qualifier
8306   // which is a superset of address spaces of both the 2nd and the 3rd
8307   // operands of the conditional operator.
8308   QualType ResultTy = [&, ResultAddrSpace]() {
8309     if (S.getLangOpts().OpenCL) {
8310       Qualifiers CompositeQuals = CompositeTy.getQualifiers();
8311       CompositeQuals.setAddressSpace(ResultAddrSpace);
8312       return S.Context
8313           .getQualifiedType(CompositeTy.getUnqualifiedType(), CompositeQuals)
8314           .withCVRQualifiers(MergedCVRQual);
8315     }
8316     return CompositeTy.withCVRQualifiers(MergedCVRQual);
8317   }();
8318   if (IsBlockPointer)
8319     ResultTy = S.Context.getBlockPointerType(ResultTy);
8320   else
8321     ResultTy = S.Context.getPointerType(ResultTy);
8322 
8323   LHS = S.ImpCastExprToType(LHS.get(), ResultTy, LHSCastKind);
8324   RHS = S.ImpCastExprToType(RHS.get(), ResultTy, RHSCastKind);
8325   return ResultTy;
8326 }
8327 
8328 /// Return the resulting type when the operands are both block pointers.
8329 static QualType checkConditionalBlockPointerCompatibility(Sema &S,
8330                                                           ExprResult &LHS,
8331                                                           ExprResult &RHS,
8332                                                           SourceLocation Loc) {
8333   QualType LHSTy = LHS.get()->getType();
8334   QualType RHSTy = RHS.get()->getType();
8335 
8336   if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
8337     if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
8338       QualType destType = S.Context.getPointerType(S.Context.VoidTy);
8339       LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
8340       RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
8341       return destType;
8342     }
8343     S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
8344       << LHSTy << RHSTy << LHS.get()->getSourceRange()
8345       << RHS.get()->getSourceRange();
8346     return QualType();
8347   }
8348 
8349   // We have 2 block pointer types.
8350   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
8351 }
8352 
8353 /// Return the resulting type when the operands are both pointers.
8354 static QualType
8355 checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS,
8356                                             ExprResult &RHS,
8357                                             SourceLocation Loc) {
8358   // get the pointer types
8359   QualType LHSTy = LHS.get()->getType();
8360   QualType RHSTy = RHS.get()->getType();
8361 
8362   // get the "pointed to" types
8363   QualType lhptee = LHSTy->castAs<PointerType>()->getPointeeType();
8364   QualType rhptee = RHSTy->castAs<PointerType>()->getPointeeType();
8365 
8366   // ignore qualifiers on void (C99 6.5.15p3, clause 6)
8367   if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
8368     // Figure out necessary qualifiers (C99 6.5.15p6)
8369     QualType destPointee
8370       = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers());
8371     QualType destType = S.Context.getPointerType(destPointee);
8372     // Add qualifiers if necessary.
8373     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp);
8374     // Promote to void*.
8375     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
8376     return destType;
8377   }
8378   if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
8379     QualType destPointee
8380       = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers());
8381     QualType destType = S.Context.getPointerType(destPointee);
8382     // Add qualifiers if necessary.
8383     RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp);
8384     // Promote to void*.
8385     LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
8386     return destType;
8387   }
8388 
8389   return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
8390 }
8391 
8392 /// Return false if the first expression is not an integer and the second
8393 /// expression is not a pointer, true otherwise.
8394 static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int,
8395                                         Expr* PointerExpr, SourceLocation Loc,
8396                                         bool IsIntFirstExpr) {
8397   if (!PointerExpr->getType()->isPointerType() ||
8398       !Int.get()->getType()->isIntegerType())
8399     return false;
8400 
8401   Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr;
8402   Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get();
8403 
8404   S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch)
8405     << Expr1->getType() << Expr2->getType()
8406     << Expr1->getSourceRange() << Expr2->getSourceRange();
8407   Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(),
8408                             CK_IntegralToPointer);
8409   return true;
8410 }
8411 
8412 /// Simple conversion between integer and floating point types.
8413 ///
8414 /// Used when handling the OpenCL conditional operator where the
8415 /// condition is a vector while the other operands are scalar.
8416 ///
8417 /// OpenCL v1.1 s6.3.i and s6.11.6 together require that the scalar
8418 /// types are either integer or floating type. Between the two
8419 /// operands, the type with the higher rank is defined as the "result
8420 /// type". The other operand needs to be promoted to the same type. No
8421 /// other type promotion is allowed. We cannot use
8422 /// UsualArithmeticConversions() for this purpose, since it always
8423 /// promotes promotable types.
8424 static QualType OpenCLArithmeticConversions(Sema &S, ExprResult &LHS,
8425                                             ExprResult &RHS,
8426                                             SourceLocation QuestionLoc) {
8427   LHS = S.DefaultFunctionArrayLvalueConversion(LHS.get());
8428   if (LHS.isInvalid())
8429     return QualType();
8430   RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
8431   if (RHS.isInvalid())
8432     return QualType();
8433 
8434   // For conversion purposes, we ignore any qualifiers.
8435   // For example, "const float" and "float" are equivalent.
8436   QualType LHSType =
8437     S.Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
8438   QualType RHSType =
8439     S.Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
8440 
8441   if (!LHSType->isIntegerType() && !LHSType->isRealFloatingType()) {
8442     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
8443       << LHSType << LHS.get()->getSourceRange();
8444     return QualType();
8445   }
8446 
8447   if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) {
8448     S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
8449       << RHSType << RHS.get()->getSourceRange();
8450     return QualType();
8451   }
8452 
8453   // If both types are identical, no conversion is needed.
8454   if (LHSType == RHSType)
8455     return LHSType;
8456 
8457   // Now handle "real" floating types (i.e. float, double, long double).
8458   if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
8459     return handleFloatConversion(S, LHS, RHS, LHSType, RHSType,
8460                                  /*IsCompAssign = */ false);
8461 
8462   // Finally, we have two differing integer types.
8463   return handleIntegerConversion<doIntegralCast, doIntegralCast>
8464   (S, LHS, RHS, LHSType, RHSType, /*IsCompAssign = */ false);
8465 }
8466 
8467 /// Convert scalar operands to a vector that matches the
8468 ///        condition in length.
8469 ///
8470 /// Used when handling the OpenCL conditional operator where the
8471 /// condition is a vector while the other operands are scalar.
8472 ///
8473 /// We first compute the "result type" for the scalar operands
8474 /// according to OpenCL v1.1 s6.3.i. Both operands are then converted
8475 /// into a vector of that type where the length matches the condition
8476 /// vector type. s6.11.6 requires that the element types of the result
8477 /// and the condition must have the same number of bits.
8478 static QualType
8479 OpenCLConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS,
8480                               QualType CondTy, SourceLocation QuestionLoc) {
8481   QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc);
8482   if (ResTy.isNull()) return QualType();
8483 
8484   const VectorType *CV = CondTy->getAs<VectorType>();
8485   assert(CV);
8486 
8487   // Determine the vector result type
8488   unsigned NumElements = CV->getNumElements();
8489   QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements);
8490 
8491   // Ensure that all types have the same number of bits
8492   if (S.Context.getTypeSize(CV->getElementType())
8493       != S.Context.getTypeSize(ResTy)) {
8494     // Since VectorTy is created internally, it does not pretty print
8495     // with an OpenCL name. Instead, we just print a description.
8496     std::string EleTyName = ResTy.getUnqualifiedType().getAsString();
8497     SmallString<64> Str;
8498     llvm::raw_svector_ostream OS(Str);
8499     OS << "(vector of " << NumElements << " '" << EleTyName << "' values)";
8500     S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
8501       << CondTy << OS.str();
8502     return QualType();
8503   }
8504 
8505   // Convert operands to the vector result type
8506   LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat);
8507   RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat);
8508 
8509   return VectorTy;
8510 }
8511 
8512 /// Return false if this is a valid OpenCL condition vector
8513 static bool checkOpenCLConditionVector(Sema &S, Expr *Cond,
8514                                        SourceLocation QuestionLoc) {
8515   // OpenCL v1.1 s6.11.6 says the elements of the vector must be of
8516   // integral type.
8517   const VectorType *CondTy = Cond->getType()->getAs<VectorType>();
8518   assert(CondTy);
8519   QualType EleTy = CondTy->getElementType();
8520   if (EleTy->isIntegerType()) return false;
8521 
8522   S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
8523     << Cond->getType() << Cond->getSourceRange();
8524   return true;
8525 }
8526 
8527 /// Return false if the vector condition type and the vector
8528 ///        result type are compatible.
8529 ///
8530 /// OpenCL v1.1 s6.11.6 requires that both vector types have the same
8531 /// number of elements, and their element types have the same number
8532 /// of bits.
8533 static bool checkVectorResult(Sema &S, QualType CondTy, QualType VecResTy,
8534                               SourceLocation QuestionLoc) {
8535   const VectorType *CV = CondTy->getAs<VectorType>();
8536   const VectorType *RV = VecResTy->getAs<VectorType>();
8537   assert(CV && RV);
8538 
8539   if (CV->getNumElements() != RV->getNumElements()) {
8540     S.Diag(QuestionLoc, diag::err_conditional_vector_size)
8541       << CondTy << VecResTy;
8542     return true;
8543   }
8544 
8545   QualType CVE = CV->getElementType();
8546   QualType RVE = RV->getElementType();
8547 
8548   if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE)) {
8549     S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
8550       << CondTy << VecResTy;
8551     return true;
8552   }
8553 
8554   return false;
8555 }
8556 
8557 /// Return the resulting type for the conditional operator in
8558 ///        OpenCL (aka "ternary selection operator", OpenCL v1.1
8559 ///        s6.3.i) when the condition is a vector type.
8560 static QualType
8561 OpenCLCheckVectorConditional(Sema &S, ExprResult &Cond,
8562                              ExprResult &LHS, ExprResult &RHS,
8563                              SourceLocation QuestionLoc) {
8564   Cond = S.DefaultFunctionArrayLvalueConversion(Cond.get());
8565   if (Cond.isInvalid())
8566     return QualType();
8567   QualType CondTy = Cond.get()->getType();
8568 
8569   if (checkOpenCLConditionVector(S, Cond.get(), QuestionLoc))
8570     return QualType();
8571 
8572   // If either operand is a vector then find the vector type of the
8573   // result as specified in OpenCL v1.1 s6.3.i.
8574   if (LHS.get()->getType()->isVectorType() ||
8575       RHS.get()->getType()->isVectorType()) {
8576     bool IsBoolVecLang =
8577         !S.getLangOpts().OpenCL && !S.getLangOpts().OpenCLCPlusPlus;
8578     QualType VecResTy =
8579         S.CheckVectorOperands(LHS, RHS, QuestionLoc,
8580                               /*isCompAssign*/ false,
8581                               /*AllowBothBool*/ true,
8582                               /*AllowBoolConversions*/ false,
8583                               /*AllowBooleanOperation*/ IsBoolVecLang,
8584                               /*ReportInvalid*/ true);
8585     if (VecResTy.isNull())
8586       return QualType();
8587     // The result type must match the condition type as specified in
8588     // OpenCL v1.1 s6.11.6.
8589     if (checkVectorResult(S, CondTy, VecResTy, QuestionLoc))
8590       return QualType();
8591     return VecResTy;
8592   }
8593 
8594   // Both operands are scalar.
8595   return OpenCLConvertScalarsToVectors(S, LHS, RHS, CondTy, QuestionLoc);
8596 }
8597 
8598 /// Return true if the Expr is block type
8599 static bool checkBlockType(Sema &S, const Expr *E) {
8600   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
8601     QualType Ty = CE->getCallee()->getType();
8602     if (Ty->isBlockPointerType()) {
8603       S.Diag(E->getExprLoc(), diag::err_opencl_ternary_with_block);
8604       return true;
8605     }
8606   }
8607   return false;
8608 }
8609 
8610 /// Note that LHS is not null here, even if this is the gnu "x ?: y" extension.
8611 /// In that case, LHS = cond.
8612 /// C99 6.5.15
8613 QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
8614                                         ExprResult &RHS, ExprValueKind &VK,
8615                                         ExprObjectKind &OK,
8616                                         SourceLocation QuestionLoc) {
8617 
8618   ExprResult LHSResult = CheckPlaceholderExpr(LHS.get());
8619   if (!LHSResult.isUsable()) return QualType();
8620   LHS = LHSResult;
8621 
8622   ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
8623   if (!RHSResult.isUsable()) return QualType();
8624   RHS = RHSResult;
8625 
8626   // C++ is sufficiently different to merit its own checker.
8627   if (getLangOpts().CPlusPlus)
8628     return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc);
8629 
8630   VK = VK_PRValue;
8631   OK = OK_Ordinary;
8632 
8633   if (Context.isDependenceAllowed() &&
8634       (Cond.get()->isTypeDependent() || LHS.get()->isTypeDependent() ||
8635        RHS.get()->isTypeDependent())) {
8636     assert(!getLangOpts().CPlusPlus);
8637     assert((Cond.get()->containsErrors() || LHS.get()->containsErrors() ||
8638             RHS.get()->containsErrors()) &&
8639            "should only occur in error-recovery path.");
8640     return Context.DependentTy;
8641   }
8642 
8643   // The OpenCL operator with a vector condition is sufficiently
8644   // different to merit its own checker.
8645   if ((getLangOpts().OpenCL && Cond.get()->getType()->isVectorType()) ||
8646       Cond.get()->getType()->isExtVectorType())
8647     return OpenCLCheckVectorConditional(*this, Cond, LHS, RHS, QuestionLoc);
8648 
8649   // First, check the condition.
8650   Cond = UsualUnaryConversions(Cond.get());
8651   if (Cond.isInvalid())
8652     return QualType();
8653   if (checkCondition(*this, Cond.get(), QuestionLoc))
8654     return QualType();
8655 
8656   // Now check the two expressions.
8657   if (LHS.get()->getType()->isVectorType() ||
8658       RHS.get()->getType()->isVectorType())
8659     return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/ false,
8660                                /*AllowBothBool*/ true,
8661                                /*AllowBoolConversions*/ false,
8662                                /*AllowBooleanOperation*/ false,
8663                                /*ReportInvalid*/ true);
8664 
8665   QualType ResTy =
8666       UsualArithmeticConversions(LHS, RHS, QuestionLoc, ACK_Conditional);
8667   if (LHS.isInvalid() || RHS.isInvalid())
8668     return QualType();
8669 
8670   QualType LHSTy = LHS.get()->getType();
8671   QualType RHSTy = RHS.get()->getType();
8672 
8673   // Diagnose attempts to convert between __ibm128, __float128 and long double
8674   // where such conversions currently can't be handled.
8675   if (unsupportedTypeConversion(*this, LHSTy, RHSTy)) {
8676     Diag(QuestionLoc,
8677          diag::err_typecheck_cond_incompatible_operands) << LHSTy << RHSTy
8678       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8679     return QualType();
8680   }
8681 
8682   // OpenCL v2.0 s6.12.5 - Blocks cannot be used as expressions of the ternary
8683   // selection operator (?:).
8684   if (getLangOpts().OpenCL &&
8685       ((int)checkBlockType(*this, LHS.get()) | (int)checkBlockType(*this, RHS.get()))) {
8686     return QualType();
8687   }
8688 
8689   // If both operands have arithmetic type, do the usual arithmetic conversions
8690   // to find a common type: C99 6.5.15p3,5.
8691   if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
8692     // Disallow invalid arithmetic conversions, such as those between bit-
8693     // precise integers types of different sizes, or between a bit-precise
8694     // integer and another type.
8695     if (ResTy.isNull() && (LHSTy->isBitIntType() || RHSTy->isBitIntType())) {
8696       Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
8697           << LHSTy << RHSTy << LHS.get()->getSourceRange()
8698           << RHS.get()->getSourceRange();
8699       return QualType();
8700     }
8701 
8702     LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
8703     RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
8704 
8705     return ResTy;
8706   }
8707 
8708   // And if they're both bfloat (which isn't arithmetic), that's fine too.
8709   if (LHSTy->isBFloat16Type() && RHSTy->isBFloat16Type()) {
8710     return LHSTy;
8711   }
8712 
8713   // If both operands are the same structure or union type, the result is that
8714   // type.
8715   if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) {    // C99 6.5.15p3
8716     if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
8717       if (LHSRT->getDecl() == RHSRT->getDecl())
8718         // "If both the operands have structure or union type, the result has
8719         // that type."  This implies that CV qualifiers are dropped.
8720         return LHSTy.getUnqualifiedType();
8721     // FIXME: Type of conditional expression must be complete in C mode.
8722   }
8723 
8724   // C99 6.5.15p5: "If both operands have void type, the result has void type."
8725   // The following || allows only one side to be void (a GCC-ism).
8726   if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
8727     return checkConditionalVoidType(*this, LHS, RHS);
8728   }
8729 
8730   // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
8731   // the type of the other operand."
8732   if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy;
8733   if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy;
8734 
8735   // All objective-c pointer type analysis is done here.
8736   QualType compositeType = FindCompositeObjCPointerType(LHS, RHS,
8737                                                         QuestionLoc);
8738   if (LHS.isInvalid() || RHS.isInvalid())
8739     return QualType();
8740   if (!compositeType.isNull())
8741     return compositeType;
8742 
8743 
8744   // Handle block pointer types.
8745   if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType())
8746     return checkConditionalBlockPointerCompatibility(*this, LHS, RHS,
8747                                                      QuestionLoc);
8748 
8749   // Check constraints for C object pointers types (C99 6.5.15p3,6).
8750   if (LHSTy->isPointerType() && RHSTy->isPointerType())
8751     return checkConditionalObjectPointersCompatibility(*this, LHS, RHS,
8752                                                        QuestionLoc);
8753 
8754   // GCC compatibility: soften pointer/integer mismatch.  Note that
8755   // null pointers have been filtered out by this point.
8756   if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc,
8757       /*IsIntFirstExpr=*/true))
8758     return RHSTy;
8759   if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc,
8760       /*IsIntFirstExpr=*/false))
8761     return LHSTy;
8762 
8763   // Allow ?: operations in which both operands have the same
8764   // built-in sizeless type.
8765   if (LHSTy->isSizelessBuiltinType() && Context.hasSameType(LHSTy, RHSTy))
8766     return LHSTy;
8767 
8768   // Emit a better diagnostic if one of the expressions is a null pointer
8769   // constant and the other is not a pointer type. In this case, the user most
8770   // likely forgot to take the address of the other expression.
8771   if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
8772     return QualType();
8773 
8774   // Otherwise, the operands are not compatible.
8775   Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
8776     << LHSTy << RHSTy << LHS.get()->getSourceRange()
8777     << RHS.get()->getSourceRange();
8778   return QualType();
8779 }
8780 
8781 /// FindCompositeObjCPointerType - Helper method to find composite type of
8782 /// two objective-c pointer types of the two input expressions.
8783 QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
8784                                             SourceLocation QuestionLoc) {
8785   QualType LHSTy = LHS.get()->getType();
8786   QualType RHSTy = RHS.get()->getType();
8787 
8788   // Handle things like Class and struct objc_class*.  Here we case the result
8789   // to the pseudo-builtin, because that will be implicitly cast back to the
8790   // redefinition type if an attempt is made to access its fields.
8791   if (LHSTy->isObjCClassType() &&
8792       (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) {
8793     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
8794     return LHSTy;
8795   }
8796   if (RHSTy->isObjCClassType() &&
8797       (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) {
8798     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
8799     return RHSTy;
8800   }
8801   // And the same for struct objc_object* / id
8802   if (LHSTy->isObjCIdType() &&
8803       (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) {
8804     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
8805     return LHSTy;
8806   }
8807   if (RHSTy->isObjCIdType() &&
8808       (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) {
8809     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
8810     return RHSTy;
8811   }
8812   // And the same for struct objc_selector* / SEL
8813   if (Context.isObjCSelType(LHSTy) &&
8814       (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) {
8815     RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast);
8816     return LHSTy;
8817   }
8818   if (Context.isObjCSelType(RHSTy) &&
8819       (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) {
8820     LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast);
8821     return RHSTy;
8822   }
8823   // Check constraints for Objective-C object pointers types.
8824   if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
8825 
8826     if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
8827       // Two identical object pointer types are always compatible.
8828       return LHSTy;
8829     }
8830     const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>();
8831     const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>();
8832     QualType compositeType = LHSTy;
8833 
8834     // If both operands are interfaces and either operand can be
8835     // assigned to the other, use that type as the composite
8836     // type. This allows
8837     //   xxx ? (A*) a : (B*) b
8838     // where B is a subclass of A.
8839     //
8840     // Additionally, as for assignment, if either type is 'id'
8841     // allow silent coercion. Finally, if the types are
8842     // incompatible then make sure to use 'id' as the composite
8843     // type so the result is acceptable for sending messages to.
8844 
8845     // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
8846     // It could return the composite type.
8847     if (!(compositeType =
8848           Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) {
8849       // Nothing more to do.
8850     } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
8851       compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
8852     } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
8853       compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
8854     } else if ((LHSOPT->isObjCQualifiedIdType() ||
8855                 RHSOPT->isObjCQualifiedIdType()) &&
8856                Context.ObjCQualifiedIdTypesAreCompatible(LHSOPT, RHSOPT,
8857                                                          true)) {
8858       // Need to handle "id<xx>" explicitly.
8859       // GCC allows qualified id and any Objective-C type to devolve to
8860       // id. Currently localizing to here until clear this should be
8861       // part of ObjCQualifiedIdTypesAreCompatible.
8862       compositeType = Context.getObjCIdType();
8863     } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
8864       compositeType = Context.getObjCIdType();
8865     } else {
8866       Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
8867       << LHSTy << RHSTy
8868       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8869       QualType incompatTy = Context.getObjCIdType();
8870       LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
8871       RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
8872       return incompatTy;
8873     }
8874     // The object pointer types are compatible.
8875     LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast);
8876     RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast);
8877     return compositeType;
8878   }
8879   // Check Objective-C object pointer types and 'void *'
8880   if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
8881     if (getLangOpts().ObjCAutoRefCount) {
8882       // ARC forbids the implicit conversion of object pointers to 'void *',
8883       // so these types are not compatible.
8884       Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
8885           << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8886       LHS = RHS = true;
8887       return QualType();
8888     }
8889     QualType lhptee = LHSTy->castAs<PointerType>()->getPointeeType();
8890     QualType rhptee = RHSTy->castAs<ObjCObjectPointerType>()->getPointeeType();
8891     QualType destPointee
8892     = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
8893     QualType destType = Context.getPointerType(destPointee);
8894     // Add qualifiers if necessary.
8895     LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp);
8896     // Promote to void*.
8897     RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast);
8898     return destType;
8899   }
8900   if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
8901     if (getLangOpts().ObjCAutoRefCount) {
8902       // ARC forbids the implicit conversion of object pointers to 'void *',
8903       // so these types are not compatible.
8904       Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
8905           << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8906       LHS = RHS = true;
8907       return QualType();
8908     }
8909     QualType lhptee = LHSTy->castAs<ObjCObjectPointerType>()->getPointeeType();
8910     QualType rhptee = RHSTy->castAs<PointerType>()->getPointeeType();
8911     QualType destPointee
8912     = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
8913     QualType destType = Context.getPointerType(destPointee);
8914     // Add qualifiers if necessary.
8915     RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp);
8916     // Promote to void*.
8917     LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast);
8918     return destType;
8919   }
8920   return QualType();
8921 }
8922 
8923 /// SuggestParentheses - Emit a note with a fixit hint that wraps
8924 /// ParenRange in parentheses.
8925 static void SuggestParentheses(Sema &Self, SourceLocation Loc,
8926                                const PartialDiagnostic &Note,
8927                                SourceRange ParenRange) {
8928   SourceLocation EndLoc = Self.getLocForEndOfToken(ParenRange.getEnd());
8929   if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() &&
8930       EndLoc.isValid()) {
8931     Self.Diag(Loc, Note)
8932       << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
8933       << FixItHint::CreateInsertion(EndLoc, ")");
8934   } else {
8935     // We can't display the parentheses, so just show the bare note.
8936     Self.Diag(Loc, Note) << ParenRange;
8937   }
8938 }
8939 
8940 static bool IsArithmeticOp(BinaryOperatorKind Opc) {
8941   return BinaryOperator::isAdditiveOp(Opc) ||
8942          BinaryOperator::isMultiplicativeOp(Opc) ||
8943          BinaryOperator::isShiftOp(Opc) || Opc == BO_And || Opc == BO_Or;
8944   // This only checks for bitwise-or and bitwise-and, but not bitwise-xor and
8945   // not any of the logical operators.  Bitwise-xor is commonly used as a
8946   // logical-xor because there is no logical-xor operator.  The logical
8947   // operators, including uses of xor, have a high false positive rate for
8948   // precedence warnings.
8949 }
8950 
8951 /// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary
8952 /// expression, either using a built-in or overloaded operator,
8953 /// and sets *OpCode to the opcode and *RHSExprs to the right-hand side
8954 /// expression.
8955 static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode,
8956                                    Expr **RHSExprs) {
8957   // Don't strip parenthesis: we should not warn if E is in parenthesis.
8958   E = E->IgnoreImpCasts();
8959   E = E->IgnoreConversionOperatorSingleStep();
8960   E = E->IgnoreImpCasts();
8961   if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E)) {
8962     E = MTE->getSubExpr();
8963     E = E->IgnoreImpCasts();
8964   }
8965 
8966   // Built-in binary operator.
8967   if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) {
8968     if (IsArithmeticOp(OP->getOpcode())) {
8969       *Opcode = OP->getOpcode();
8970       *RHSExprs = OP->getRHS();
8971       return true;
8972     }
8973   }
8974 
8975   // Overloaded operator.
8976   if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) {
8977     if (Call->getNumArgs() != 2)
8978       return false;
8979 
8980     // Make sure this is really a binary operator that is safe to pass into
8981     // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op.
8982     OverloadedOperatorKind OO = Call->getOperator();
8983     if (OO < OO_Plus || OO > OO_Arrow ||
8984         OO == OO_PlusPlus || OO == OO_MinusMinus)
8985       return false;
8986 
8987     BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO);
8988     if (IsArithmeticOp(OpKind)) {
8989       *Opcode = OpKind;
8990       *RHSExprs = Call->getArg(1);
8991       return true;
8992     }
8993   }
8994 
8995   return false;
8996 }
8997 
8998 /// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type
8999 /// or is a logical expression such as (x==y) which has int type, but is
9000 /// commonly interpreted as boolean.
9001 static bool ExprLooksBoolean(Expr *E) {
9002   E = E->IgnoreParenImpCasts();
9003 
9004   if (E->getType()->isBooleanType())
9005     return true;
9006   if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E))
9007     return OP->isComparisonOp() || OP->isLogicalOp();
9008   if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E))
9009     return OP->getOpcode() == UO_LNot;
9010   if (E->getType()->isPointerType())
9011     return true;
9012   // FIXME: What about overloaded operator calls returning "unspecified boolean
9013   // type"s (commonly pointer-to-members)?
9014 
9015   return false;
9016 }
9017 
9018 /// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator
9019 /// and binary operator are mixed in a way that suggests the programmer assumed
9020 /// the conditional operator has higher precedence, for example:
9021 /// "int x = a + someBinaryCondition ? 1 : 2".
9022 static void DiagnoseConditionalPrecedence(Sema &Self,
9023                                           SourceLocation OpLoc,
9024                                           Expr *Condition,
9025                                           Expr *LHSExpr,
9026                                           Expr *RHSExpr) {
9027   BinaryOperatorKind CondOpcode;
9028   Expr *CondRHS;
9029 
9030   if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS))
9031     return;
9032   if (!ExprLooksBoolean(CondRHS))
9033     return;
9034 
9035   // The condition is an arithmetic binary expression, with a right-
9036   // hand side that looks boolean, so warn.
9037 
9038   unsigned DiagID = BinaryOperator::isBitwiseOp(CondOpcode)
9039                         ? diag::warn_precedence_bitwise_conditional
9040                         : diag::warn_precedence_conditional;
9041 
9042   Self.Diag(OpLoc, DiagID)
9043       << Condition->getSourceRange()
9044       << BinaryOperator::getOpcodeStr(CondOpcode);
9045 
9046   SuggestParentheses(
9047       Self, OpLoc,
9048       Self.PDiag(diag::note_precedence_silence)
9049           << BinaryOperator::getOpcodeStr(CondOpcode),
9050       SourceRange(Condition->getBeginLoc(), Condition->getEndLoc()));
9051 
9052   SuggestParentheses(Self, OpLoc,
9053                      Self.PDiag(diag::note_precedence_conditional_first),
9054                      SourceRange(CondRHS->getBeginLoc(), RHSExpr->getEndLoc()));
9055 }
9056 
9057 /// Compute the nullability of a conditional expression.
9058 static QualType computeConditionalNullability(QualType ResTy, bool IsBin,
9059                                               QualType LHSTy, QualType RHSTy,
9060                                               ASTContext &Ctx) {
9061   if (!ResTy->isAnyPointerType())
9062     return ResTy;
9063 
9064   auto GetNullability = [&Ctx](QualType Ty) {
9065     Optional<NullabilityKind> Kind = Ty->getNullability(Ctx);
9066     if (Kind) {
9067       // For our purposes, treat _Nullable_result as _Nullable.
9068       if (*Kind == NullabilityKind::NullableResult)
9069         return NullabilityKind::Nullable;
9070       return *Kind;
9071     }
9072     return NullabilityKind::Unspecified;
9073   };
9074 
9075   auto LHSKind = GetNullability(LHSTy), RHSKind = GetNullability(RHSTy);
9076   NullabilityKind MergedKind;
9077 
9078   // Compute nullability of a binary conditional expression.
9079   if (IsBin) {
9080     if (LHSKind == NullabilityKind::NonNull)
9081       MergedKind = NullabilityKind::NonNull;
9082     else
9083       MergedKind = RHSKind;
9084   // Compute nullability of a normal conditional expression.
9085   } else {
9086     if (LHSKind == NullabilityKind::Nullable ||
9087         RHSKind == NullabilityKind::Nullable)
9088       MergedKind = NullabilityKind::Nullable;
9089     else if (LHSKind == NullabilityKind::NonNull)
9090       MergedKind = RHSKind;
9091     else if (RHSKind == NullabilityKind::NonNull)
9092       MergedKind = LHSKind;
9093     else
9094       MergedKind = NullabilityKind::Unspecified;
9095   }
9096 
9097   // Return if ResTy already has the correct nullability.
9098   if (GetNullability(ResTy) == MergedKind)
9099     return ResTy;
9100 
9101   // Strip all nullability from ResTy.
9102   while (ResTy->getNullability(Ctx))
9103     ResTy = ResTy.getSingleStepDesugaredType(Ctx);
9104 
9105   // Create a new AttributedType with the new nullability kind.
9106   auto NewAttr = AttributedType::getNullabilityAttrKind(MergedKind);
9107   return Ctx.getAttributedType(NewAttr, ResTy, ResTy);
9108 }
9109 
9110 /// ActOnConditionalOp - Parse a ?: operation.  Note that 'LHS' may be null
9111 /// in the case of a the GNU conditional expr extension.
9112 ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
9113                                     SourceLocation ColonLoc,
9114                                     Expr *CondExpr, Expr *LHSExpr,
9115                                     Expr *RHSExpr) {
9116   if (!Context.isDependenceAllowed()) {
9117     // C cannot handle TypoExpr nodes in the condition because it
9118     // doesn't handle dependent types properly, so make sure any TypoExprs have
9119     // been dealt with before checking the operands.
9120     ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr);
9121     ExprResult LHSResult = CorrectDelayedTyposInExpr(LHSExpr);
9122     ExprResult RHSResult = CorrectDelayedTyposInExpr(RHSExpr);
9123 
9124     if (!CondResult.isUsable())
9125       return ExprError();
9126 
9127     if (LHSExpr) {
9128       if (!LHSResult.isUsable())
9129         return ExprError();
9130     }
9131 
9132     if (!RHSResult.isUsable())
9133       return ExprError();
9134 
9135     CondExpr = CondResult.get();
9136     LHSExpr = LHSResult.get();
9137     RHSExpr = RHSResult.get();
9138   }
9139 
9140   // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
9141   // was the condition.
9142   OpaqueValueExpr *opaqueValue = nullptr;
9143   Expr *commonExpr = nullptr;
9144   if (!LHSExpr) {
9145     commonExpr = CondExpr;
9146     // Lower out placeholder types first.  This is important so that we don't
9147     // try to capture a placeholder. This happens in few cases in C++; such
9148     // as Objective-C++'s dictionary subscripting syntax.
9149     if (commonExpr->hasPlaceholderType()) {
9150       ExprResult result = CheckPlaceholderExpr(commonExpr);
9151       if (!result.isUsable()) return ExprError();
9152       commonExpr = result.get();
9153     }
9154     // We usually want to apply unary conversions *before* saving, except
9155     // in the special case of a C++ l-value conditional.
9156     if (!(getLangOpts().CPlusPlus
9157           && !commonExpr->isTypeDependent()
9158           && commonExpr->getValueKind() == RHSExpr->getValueKind()
9159           && commonExpr->isGLValue()
9160           && commonExpr->isOrdinaryOrBitFieldObject()
9161           && RHSExpr->isOrdinaryOrBitFieldObject()
9162           && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) {
9163       ExprResult commonRes = UsualUnaryConversions(commonExpr);
9164       if (commonRes.isInvalid())
9165         return ExprError();
9166       commonExpr = commonRes.get();
9167     }
9168 
9169     // If the common expression is a class or array prvalue, materialize it
9170     // so that we can safely refer to it multiple times.
9171     if (commonExpr->isPRValue() && (commonExpr->getType()->isRecordType() ||
9172                                     commonExpr->getType()->isArrayType())) {
9173       ExprResult MatExpr = TemporaryMaterializationConversion(commonExpr);
9174       if (MatExpr.isInvalid())
9175         return ExprError();
9176       commonExpr = MatExpr.get();
9177     }
9178 
9179     opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(),
9180                                                 commonExpr->getType(),
9181                                                 commonExpr->getValueKind(),
9182                                                 commonExpr->getObjectKind(),
9183                                                 commonExpr);
9184     LHSExpr = CondExpr = opaqueValue;
9185   }
9186 
9187   QualType LHSTy = LHSExpr->getType(), RHSTy = RHSExpr->getType();
9188   ExprValueKind VK = VK_PRValue;
9189   ExprObjectKind OK = OK_Ordinary;
9190   ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr;
9191   QualType result = CheckConditionalOperands(Cond, LHS, RHS,
9192                                              VK, OK, QuestionLoc);
9193   if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() ||
9194       RHS.isInvalid())
9195     return ExprError();
9196 
9197   DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(),
9198                                 RHS.get());
9199 
9200   CheckBoolLikeConversion(Cond.get(), QuestionLoc);
9201 
9202   result = computeConditionalNullability(result, commonExpr, LHSTy, RHSTy,
9203                                          Context);
9204 
9205   if (!commonExpr)
9206     return new (Context)
9207         ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc,
9208                             RHS.get(), result, VK, OK);
9209 
9210   return new (Context) BinaryConditionalOperator(
9211       commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc,
9212       ColonLoc, result, VK, OK);
9213 }
9214 
9215 // Check if we have a conversion between incompatible cmse function pointer
9216 // types, that is, a conversion between a function pointer with the
9217 // cmse_nonsecure_call attribute and one without.
9218 static bool IsInvalidCmseNSCallConversion(Sema &S, QualType FromType,
9219                                           QualType ToType) {
9220   if (const auto *ToFn =
9221           dyn_cast<FunctionType>(S.Context.getCanonicalType(ToType))) {
9222     if (const auto *FromFn =
9223             dyn_cast<FunctionType>(S.Context.getCanonicalType(FromType))) {
9224       FunctionType::ExtInfo ToEInfo = ToFn->getExtInfo();
9225       FunctionType::ExtInfo FromEInfo = FromFn->getExtInfo();
9226 
9227       return ToEInfo.getCmseNSCall() != FromEInfo.getCmseNSCall();
9228     }
9229   }
9230   return false;
9231 }
9232 
9233 // checkPointerTypesForAssignment - This is a very tricky routine (despite
9234 // being closely modeled after the C99 spec:-). The odd characteristic of this
9235 // routine is it effectively iqnores the qualifiers on the top level pointee.
9236 // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
9237 // FIXME: add a couple examples in this comment.
9238 static Sema::AssignConvertType
9239 checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) {
9240   assert(LHSType.isCanonical() && "LHS not canonicalized!");
9241   assert(RHSType.isCanonical() && "RHS not canonicalized!");
9242 
9243   // get the "pointed to" type (ignoring qualifiers at the top level)
9244   const Type *lhptee, *rhptee;
9245   Qualifiers lhq, rhq;
9246   std::tie(lhptee, lhq) =
9247       cast<PointerType>(LHSType)->getPointeeType().split().asPair();
9248   std::tie(rhptee, rhq) =
9249       cast<PointerType>(RHSType)->getPointeeType().split().asPair();
9250 
9251   Sema::AssignConvertType ConvTy = Sema::Compatible;
9252 
9253   // C99 6.5.16.1p1: This following citation is common to constraints
9254   // 3 & 4 (below). ...and the type *pointed to* by the left has all the
9255   // qualifiers of the type *pointed to* by the right;
9256 
9257   // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay.
9258   if (lhq.getObjCLifetime() != rhq.getObjCLifetime() &&
9259       lhq.compatiblyIncludesObjCLifetime(rhq)) {
9260     // Ignore lifetime for further calculation.
9261     lhq.removeObjCLifetime();
9262     rhq.removeObjCLifetime();
9263   }
9264 
9265   if (!lhq.compatiblyIncludes(rhq)) {
9266     // Treat address-space mismatches as fatal.
9267     if (!lhq.isAddressSpaceSupersetOf(rhq))
9268       return Sema::IncompatiblePointerDiscardsQualifiers;
9269 
9270     // It's okay to add or remove GC or lifetime qualifiers when converting to
9271     // and from void*.
9272     else if (lhq.withoutObjCGCAttr().withoutObjCLifetime()
9273                         .compatiblyIncludes(
9274                                 rhq.withoutObjCGCAttr().withoutObjCLifetime())
9275              && (lhptee->isVoidType() || rhptee->isVoidType()))
9276       ; // keep old
9277 
9278     // Treat lifetime mismatches as fatal.
9279     else if (lhq.getObjCLifetime() != rhq.getObjCLifetime())
9280       ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
9281 
9282     // For GCC/MS compatibility, other qualifier mismatches are treated
9283     // as still compatible in C.
9284     else ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
9285   }
9286 
9287   // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
9288   // incomplete type and the other is a pointer to a qualified or unqualified
9289   // version of void...
9290   if (lhptee->isVoidType()) {
9291     if (rhptee->isIncompleteOrObjectType())
9292       return ConvTy;
9293 
9294     // As an extension, we allow cast to/from void* to function pointer.
9295     assert(rhptee->isFunctionType());
9296     return Sema::FunctionVoidPointer;
9297   }
9298 
9299   if (rhptee->isVoidType()) {
9300     if (lhptee->isIncompleteOrObjectType())
9301       return ConvTy;
9302 
9303     // As an extension, we allow cast to/from void* to function pointer.
9304     assert(lhptee->isFunctionType());
9305     return Sema::FunctionVoidPointer;
9306   }
9307 
9308   // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
9309   // unqualified versions of compatible types, ...
9310   QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0);
9311   if (!S.Context.typesAreCompatible(ltrans, rtrans)) {
9312     // Check if the pointee types are compatible ignoring the sign.
9313     // We explicitly check for char so that we catch "char" vs
9314     // "unsigned char" on systems where "char" is unsigned.
9315     if (lhptee->isCharType())
9316       ltrans = S.Context.UnsignedCharTy;
9317     else if (lhptee->hasSignedIntegerRepresentation())
9318       ltrans = S.Context.getCorrespondingUnsignedType(ltrans);
9319 
9320     if (rhptee->isCharType())
9321       rtrans = S.Context.UnsignedCharTy;
9322     else if (rhptee->hasSignedIntegerRepresentation())
9323       rtrans = S.Context.getCorrespondingUnsignedType(rtrans);
9324 
9325     if (ltrans == rtrans) {
9326       // Types are compatible ignoring the sign. Qualifier incompatibility
9327       // takes priority over sign incompatibility because the sign
9328       // warning can be disabled.
9329       if (ConvTy != Sema::Compatible)
9330         return ConvTy;
9331 
9332       return Sema::IncompatiblePointerSign;
9333     }
9334 
9335     // If we are a multi-level pointer, it's possible that our issue is simply
9336     // one of qualification - e.g. char ** -> const char ** is not allowed. If
9337     // the eventual target type is the same and the pointers have the same
9338     // level of indirection, this must be the issue.
9339     if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) {
9340       do {
9341         std::tie(lhptee, lhq) =
9342           cast<PointerType>(lhptee)->getPointeeType().split().asPair();
9343         std::tie(rhptee, rhq) =
9344           cast<PointerType>(rhptee)->getPointeeType().split().asPair();
9345 
9346         // Inconsistent address spaces at this point is invalid, even if the
9347         // address spaces would be compatible.
9348         // FIXME: This doesn't catch address space mismatches for pointers of
9349         // different nesting levels, like:
9350         //   __local int *** a;
9351         //   int ** b = a;
9352         // It's not clear how to actually determine when such pointers are
9353         // invalidly incompatible.
9354         if (lhq.getAddressSpace() != rhq.getAddressSpace())
9355           return Sema::IncompatibleNestedPointerAddressSpaceMismatch;
9356 
9357       } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee));
9358 
9359       if (lhptee == rhptee)
9360         return Sema::IncompatibleNestedPointerQualifiers;
9361     }
9362 
9363     // General pointer incompatibility takes priority over qualifiers.
9364     if (RHSType->isFunctionPointerType() && LHSType->isFunctionPointerType())
9365       return Sema::IncompatibleFunctionPointer;
9366     return Sema::IncompatiblePointer;
9367   }
9368   if (!S.getLangOpts().CPlusPlus &&
9369       S.IsFunctionConversion(ltrans, rtrans, ltrans))
9370     return Sema::IncompatibleFunctionPointer;
9371   if (IsInvalidCmseNSCallConversion(S, ltrans, rtrans))
9372     return Sema::IncompatibleFunctionPointer;
9373   return ConvTy;
9374 }
9375 
9376 /// checkBlockPointerTypesForAssignment - This routine determines whether two
9377 /// block pointer types are compatible or whether a block and normal pointer
9378 /// are compatible. It is more restrict than comparing two function pointer
9379 // types.
9380 static Sema::AssignConvertType
9381 checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType,
9382                                     QualType RHSType) {
9383   assert(LHSType.isCanonical() && "LHS not canonicalized!");
9384   assert(RHSType.isCanonical() && "RHS not canonicalized!");
9385 
9386   QualType lhptee, rhptee;
9387 
9388   // get the "pointed to" type (ignoring qualifiers at the top level)
9389   lhptee = cast<BlockPointerType>(LHSType)->getPointeeType();
9390   rhptee = cast<BlockPointerType>(RHSType)->getPointeeType();
9391 
9392   // In C++, the types have to match exactly.
9393   if (S.getLangOpts().CPlusPlus)
9394     return Sema::IncompatibleBlockPointer;
9395 
9396   Sema::AssignConvertType ConvTy = Sema::Compatible;
9397 
9398   // For blocks we enforce that qualifiers are identical.
9399   Qualifiers LQuals = lhptee.getLocalQualifiers();
9400   Qualifiers RQuals = rhptee.getLocalQualifiers();
9401   if (S.getLangOpts().OpenCL) {
9402     LQuals.removeAddressSpace();
9403     RQuals.removeAddressSpace();
9404   }
9405   if (LQuals != RQuals)
9406     ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
9407 
9408   // FIXME: OpenCL doesn't define the exact compile time semantics for a block
9409   // assignment.
9410   // The current behavior is similar to C++ lambdas. A block might be
9411   // assigned to a variable iff its return type and parameters are compatible
9412   // (C99 6.2.7) with the corresponding return type and parameters of the LHS of
9413   // an assignment. Presumably it should behave in way that a function pointer
9414   // assignment does in C, so for each parameter and return type:
9415   //  * CVR and address space of LHS should be a superset of CVR and address
9416   //  space of RHS.
9417   //  * unqualified types should be compatible.
9418   if (S.getLangOpts().OpenCL) {
9419     if (!S.Context.typesAreBlockPointerCompatible(
9420             S.Context.getQualifiedType(LHSType.getUnqualifiedType(), LQuals),
9421             S.Context.getQualifiedType(RHSType.getUnqualifiedType(), RQuals)))
9422       return Sema::IncompatibleBlockPointer;
9423   } else if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType))
9424     return Sema::IncompatibleBlockPointer;
9425 
9426   return ConvTy;
9427 }
9428 
9429 /// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types
9430 /// for assignment compatibility.
9431 static Sema::AssignConvertType
9432 checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType,
9433                                    QualType RHSType) {
9434   assert(LHSType.isCanonical() && "LHS was not canonicalized!");
9435   assert(RHSType.isCanonical() && "RHS was not canonicalized!");
9436 
9437   if (LHSType->isObjCBuiltinType()) {
9438     // Class is not compatible with ObjC object pointers.
9439     if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() &&
9440         !RHSType->isObjCQualifiedClassType())
9441       return Sema::IncompatiblePointer;
9442     return Sema::Compatible;
9443   }
9444   if (RHSType->isObjCBuiltinType()) {
9445     if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() &&
9446         !LHSType->isObjCQualifiedClassType())
9447       return Sema::IncompatiblePointer;
9448     return Sema::Compatible;
9449   }
9450   QualType lhptee = LHSType->castAs<ObjCObjectPointerType>()->getPointeeType();
9451   QualType rhptee = RHSType->castAs<ObjCObjectPointerType>()->getPointeeType();
9452 
9453   if (!lhptee.isAtLeastAsQualifiedAs(rhptee) &&
9454       // make an exception for id<P>
9455       !LHSType->isObjCQualifiedIdType())
9456     return Sema::CompatiblePointerDiscardsQualifiers;
9457 
9458   if (S.Context.typesAreCompatible(LHSType, RHSType))
9459     return Sema::Compatible;
9460   if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType())
9461     return Sema::IncompatibleObjCQualifiedId;
9462   return Sema::IncompatiblePointer;
9463 }
9464 
9465 Sema::AssignConvertType
9466 Sema::CheckAssignmentConstraints(SourceLocation Loc,
9467                                  QualType LHSType, QualType RHSType) {
9468   // Fake up an opaque expression.  We don't actually care about what
9469   // cast operations are required, so if CheckAssignmentConstraints
9470   // adds casts to this they'll be wasted, but fortunately that doesn't
9471   // usually happen on valid code.
9472   OpaqueValueExpr RHSExpr(Loc, RHSType, VK_PRValue);
9473   ExprResult RHSPtr = &RHSExpr;
9474   CastKind K;
9475 
9476   return CheckAssignmentConstraints(LHSType, RHSPtr, K, /*ConvertRHS=*/false);
9477 }
9478 
9479 /// This helper function returns true if QT is a vector type that has element
9480 /// type ElementType.
9481 static bool isVector(QualType QT, QualType ElementType) {
9482   if (const VectorType *VT = QT->getAs<VectorType>())
9483     return VT->getElementType().getCanonicalType() == ElementType;
9484   return false;
9485 }
9486 
9487 /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
9488 /// has code to accommodate several GCC extensions when type checking
9489 /// pointers. Here are some objectionable examples that GCC considers warnings:
9490 ///
9491 ///  int a, *pint;
9492 ///  short *pshort;
9493 ///  struct foo *pfoo;
9494 ///
9495 ///  pint = pshort; // warning: assignment from incompatible pointer type
9496 ///  a = pint; // warning: assignment makes integer from pointer without a cast
9497 ///  pint = a; // warning: assignment makes pointer from integer without a cast
9498 ///  pint = pfoo; // warning: assignment from incompatible pointer type
9499 ///
9500 /// As a result, the code for dealing with pointers is more complex than the
9501 /// C99 spec dictates.
9502 ///
9503 /// Sets 'Kind' for any result kind except Incompatible.
9504 Sema::AssignConvertType
9505 Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS,
9506                                  CastKind &Kind, bool ConvertRHS) {
9507   QualType RHSType = RHS.get()->getType();
9508   QualType OrigLHSType = LHSType;
9509 
9510   // Get canonical types.  We're not formatting these types, just comparing
9511   // them.
9512   LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType();
9513   RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType();
9514 
9515   // Common case: no conversion required.
9516   if (LHSType == RHSType) {
9517     Kind = CK_NoOp;
9518     return Compatible;
9519   }
9520 
9521   // If the LHS has an __auto_type, there are no additional type constraints
9522   // to be worried about.
9523   if (const auto *AT = dyn_cast<AutoType>(LHSType)) {
9524     if (AT->isGNUAutoType()) {
9525       Kind = CK_NoOp;
9526       return Compatible;
9527     }
9528   }
9529 
9530   // If we have an atomic type, try a non-atomic assignment, then just add an
9531   // atomic qualification step.
9532   if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) {
9533     Sema::AssignConvertType result =
9534       CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind);
9535     if (result != Compatible)
9536       return result;
9537     if (Kind != CK_NoOp && ConvertRHS)
9538       RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind);
9539     Kind = CK_NonAtomicToAtomic;
9540     return Compatible;
9541   }
9542 
9543   // If the left-hand side is a reference type, then we are in a
9544   // (rare!) case where we've allowed the use of references in C,
9545   // e.g., as a parameter type in a built-in function. In this case,
9546   // just make sure that the type referenced is compatible with the
9547   // right-hand side type. The caller is responsible for adjusting
9548   // LHSType so that the resulting expression does not have reference
9549   // type.
9550   if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) {
9551     if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) {
9552       Kind = CK_LValueBitCast;
9553       return Compatible;
9554     }
9555     return Incompatible;
9556   }
9557 
9558   // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
9559   // to the same ExtVector type.
9560   if (LHSType->isExtVectorType()) {
9561     if (RHSType->isExtVectorType())
9562       return Incompatible;
9563     if (RHSType->isArithmeticType()) {
9564       // CK_VectorSplat does T -> vector T, so first cast to the element type.
9565       if (ConvertRHS)
9566         RHS = prepareVectorSplat(LHSType, RHS.get());
9567       Kind = CK_VectorSplat;
9568       return Compatible;
9569     }
9570   }
9571 
9572   // Conversions to or from vector type.
9573   if (LHSType->isVectorType() || RHSType->isVectorType()) {
9574     if (LHSType->isVectorType() && RHSType->isVectorType()) {
9575       // Allow assignments of an AltiVec vector type to an equivalent GCC
9576       // vector type and vice versa
9577       if (Context.areCompatibleVectorTypes(LHSType, RHSType)) {
9578         Kind = CK_BitCast;
9579         return Compatible;
9580       }
9581 
9582       // If we are allowing lax vector conversions, and LHS and RHS are both
9583       // vectors, the total size only needs to be the same. This is a bitcast;
9584       // no bits are changed but the result type is different.
9585       if (isLaxVectorConversion(RHSType, LHSType)) {
9586         // The default for lax vector conversions with Altivec vectors will
9587         // change, so if we are converting between vector types where
9588         // at least one is an Altivec vector, emit a warning.
9589         if (anyAltivecTypes(RHSType, LHSType) &&
9590             !areSameVectorElemTypes(RHSType, LHSType))
9591           Diag(RHS.get()->getExprLoc(), diag::warn_deprecated_lax_vec_conv_all)
9592               << RHSType << LHSType;
9593         Kind = CK_BitCast;
9594         return IncompatibleVectors;
9595       }
9596     }
9597 
9598     // When the RHS comes from another lax conversion (e.g. binops between
9599     // scalars and vectors) the result is canonicalized as a vector. When the
9600     // LHS is also a vector, the lax is allowed by the condition above. Handle
9601     // the case where LHS is a scalar.
9602     if (LHSType->isScalarType()) {
9603       const VectorType *VecType = RHSType->getAs<VectorType>();
9604       if (VecType && VecType->getNumElements() == 1 &&
9605           isLaxVectorConversion(RHSType, LHSType)) {
9606         if (VecType->getVectorKind() == VectorType::AltiVecVector)
9607           Diag(RHS.get()->getExprLoc(), diag::warn_deprecated_lax_vec_conv_all)
9608               << RHSType << LHSType;
9609         ExprResult *VecExpr = &RHS;
9610         *VecExpr = ImpCastExprToType(VecExpr->get(), LHSType, CK_BitCast);
9611         Kind = CK_BitCast;
9612         return Compatible;
9613       }
9614     }
9615 
9616     // Allow assignments between fixed-length and sizeless SVE vectors.
9617     if ((LHSType->isSizelessBuiltinType() && RHSType->isVectorType()) ||
9618         (LHSType->isVectorType() && RHSType->isSizelessBuiltinType()))
9619       if (Context.areCompatibleSveTypes(LHSType, RHSType) ||
9620           Context.areLaxCompatibleSveTypes(LHSType, RHSType)) {
9621         Kind = CK_BitCast;
9622         return Compatible;
9623       }
9624 
9625     return Incompatible;
9626   }
9627 
9628   // Diagnose attempts to convert between __ibm128, __float128 and long double
9629   // where such conversions currently can't be handled.
9630   if (unsupportedTypeConversion(*this, LHSType, RHSType))
9631     return Incompatible;
9632 
9633   // Disallow assigning a _Complex to a real type in C++ mode since it simply
9634   // discards the imaginary part.
9635   if (getLangOpts().CPlusPlus && RHSType->getAs<ComplexType>() &&
9636       !LHSType->getAs<ComplexType>())
9637     return Incompatible;
9638 
9639   // Arithmetic conversions.
9640   if (LHSType->isArithmeticType() && RHSType->isArithmeticType() &&
9641       !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) {
9642     if (ConvertRHS)
9643       Kind = PrepareScalarCast(RHS, LHSType);
9644     return Compatible;
9645   }
9646 
9647   // Conversions to normal pointers.
9648   if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) {
9649     // U* -> T*
9650     if (isa<PointerType>(RHSType)) {
9651       LangAS AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace();
9652       LangAS AddrSpaceR = RHSType->getPointeeType().getAddressSpace();
9653       if (AddrSpaceL != AddrSpaceR)
9654         Kind = CK_AddressSpaceConversion;
9655       else if (Context.hasCvrSimilarType(RHSType, LHSType))
9656         Kind = CK_NoOp;
9657       else
9658         Kind = CK_BitCast;
9659       return checkPointerTypesForAssignment(*this, LHSType, RHSType);
9660     }
9661 
9662     // int -> T*
9663     if (RHSType->isIntegerType()) {
9664       Kind = CK_IntegralToPointer; // FIXME: null?
9665       return IntToPointer;
9666     }
9667 
9668     // C pointers are not compatible with ObjC object pointers,
9669     // with two exceptions:
9670     if (isa<ObjCObjectPointerType>(RHSType)) {
9671       //  - conversions to void*
9672       if (LHSPointer->getPointeeType()->isVoidType()) {
9673         Kind = CK_BitCast;
9674         return Compatible;
9675       }
9676 
9677       //  - conversions from 'Class' to the redefinition type
9678       if (RHSType->isObjCClassType() &&
9679           Context.hasSameType(LHSType,
9680                               Context.getObjCClassRedefinitionType())) {
9681         Kind = CK_BitCast;
9682         return Compatible;
9683       }
9684 
9685       Kind = CK_BitCast;
9686       return IncompatiblePointer;
9687     }
9688 
9689     // U^ -> void*
9690     if (RHSType->getAs<BlockPointerType>()) {
9691       if (LHSPointer->getPointeeType()->isVoidType()) {
9692         LangAS AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace();
9693         LangAS AddrSpaceR = RHSType->getAs<BlockPointerType>()
9694                                 ->getPointeeType()
9695                                 .getAddressSpace();
9696         Kind =
9697             AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
9698         return Compatible;
9699       }
9700     }
9701 
9702     return Incompatible;
9703   }
9704 
9705   // Conversions to block pointers.
9706   if (isa<BlockPointerType>(LHSType)) {
9707     // U^ -> T^
9708     if (RHSType->isBlockPointerType()) {
9709       LangAS AddrSpaceL = LHSType->getAs<BlockPointerType>()
9710                               ->getPointeeType()
9711                               .getAddressSpace();
9712       LangAS AddrSpaceR = RHSType->getAs<BlockPointerType>()
9713                               ->getPointeeType()
9714                               .getAddressSpace();
9715       Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
9716       return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType);
9717     }
9718 
9719     // int or null -> T^
9720     if (RHSType->isIntegerType()) {
9721       Kind = CK_IntegralToPointer; // FIXME: null
9722       return IntToBlockPointer;
9723     }
9724 
9725     // id -> T^
9726     if (getLangOpts().ObjC && RHSType->isObjCIdType()) {
9727       Kind = CK_AnyPointerToBlockPointerCast;
9728       return Compatible;
9729     }
9730 
9731     // void* -> T^
9732     if (const PointerType *RHSPT = RHSType->getAs<PointerType>())
9733       if (RHSPT->getPointeeType()->isVoidType()) {
9734         Kind = CK_AnyPointerToBlockPointerCast;
9735         return Compatible;
9736       }
9737 
9738     return Incompatible;
9739   }
9740 
9741   // Conversions to Objective-C pointers.
9742   if (isa<ObjCObjectPointerType>(LHSType)) {
9743     // A* -> B*
9744     if (RHSType->isObjCObjectPointerType()) {
9745       Kind = CK_BitCast;
9746       Sema::AssignConvertType result =
9747         checkObjCPointerTypesForAssignment(*this, LHSType, RHSType);
9748       if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
9749           result == Compatible &&
9750           !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType))
9751         result = IncompatibleObjCWeakRef;
9752       return result;
9753     }
9754 
9755     // int or null -> A*
9756     if (RHSType->isIntegerType()) {
9757       Kind = CK_IntegralToPointer; // FIXME: null
9758       return IntToPointer;
9759     }
9760 
9761     // In general, C pointers are not compatible with ObjC object pointers,
9762     // with two exceptions:
9763     if (isa<PointerType>(RHSType)) {
9764       Kind = CK_CPointerToObjCPointerCast;
9765 
9766       //  - conversions from 'void*'
9767       if (RHSType->isVoidPointerType()) {
9768         return Compatible;
9769       }
9770 
9771       //  - conversions to 'Class' from its redefinition type
9772       if (LHSType->isObjCClassType() &&
9773           Context.hasSameType(RHSType,
9774                               Context.getObjCClassRedefinitionType())) {
9775         return Compatible;
9776       }
9777 
9778       return IncompatiblePointer;
9779     }
9780 
9781     // Only under strict condition T^ is compatible with an Objective-C pointer.
9782     if (RHSType->isBlockPointerType() &&
9783         LHSType->isBlockCompatibleObjCPointerType(Context)) {
9784       if (ConvertRHS)
9785         maybeExtendBlockObject(RHS);
9786       Kind = CK_BlockPointerToObjCPointerCast;
9787       return Compatible;
9788     }
9789 
9790     return Incompatible;
9791   }
9792 
9793   // Conversions from pointers that are not covered by the above.
9794   if (isa<PointerType>(RHSType)) {
9795     // T* -> _Bool
9796     if (LHSType == Context.BoolTy) {
9797       Kind = CK_PointerToBoolean;
9798       return Compatible;
9799     }
9800 
9801     // T* -> int
9802     if (LHSType->isIntegerType()) {
9803       Kind = CK_PointerToIntegral;
9804       return PointerToInt;
9805     }
9806 
9807     return Incompatible;
9808   }
9809 
9810   // Conversions from Objective-C pointers that are not covered by the above.
9811   if (isa<ObjCObjectPointerType>(RHSType)) {
9812     // T* -> _Bool
9813     if (LHSType == Context.BoolTy) {
9814       Kind = CK_PointerToBoolean;
9815       return Compatible;
9816     }
9817 
9818     // T* -> int
9819     if (LHSType->isIntegerType()) {
9820       Kind = CK_PointerToIntegral;
9821       return PointerToInt;
9822     }
9823 
9824     return Incompatible;
9825   }
9826 
9827   // struct A -> struct B
9828   if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) {
9829     if (Context.typesAreCompatible(LHSType, RHSType)) {
9830       Kind = CK_NoOp;
9831       return Compatible;
9832     }
9833   }
9834 
9835   if (LHSType->isSamplerT() && RHSType->isIntegerType()) {
9836     Kind = CK_IntToOCLSampler;
9837     return Compatible;
9838   }
9839 
9840   return Incompatible;
9841 }
9842 
9843 /// Constructs a transparent union from an expression that is
9844 /// used to initialize the transparent union.
9845 static void ConstructTransparentUnion(Sema &S, ASTContext &C,
9846                                       ExprResult &EResult, QualType UnionType,
9847                                       FieldDecl *Field) {
9848   // Build an initializer list that designates the appropriate member
9849   // of the transparent union.
9850   Expr *E = EResult.get();
9851   InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(),
9852                                                    E, SourceLocation());
9853   Initializer->setType(UnionType);
9854   Initializer->setInitializedFieldInUnion(Field);
9855 
9856   // Build a compound literal constructing a value of the transparent
9857   // union type from this initializer list.
9858   TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType);
9859   EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType,
9860                                         VK_PRValue, Initializer, false);
9861 }
9862 
9863 Sema::AssignConvertType
9864 Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType,
9865                                                ExprResult &RHS) {
9866   QualType RHSType = RHS.get()->getType();
9867 
9868   // If the ArgType is a Union type, we want to handle a potential
9869   // transparent_union GCC extension.
9870   const RecordType *UT = ArgType->getAsUnionType();
9871   if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
9872     return Incompatible;
9873 
9874   // The field to initialize within the transparent union.
9875   RecordDecl *UD = UT->getDecl();
9876   FieldDecl *InitField = nullptr;
9877   // It's compatible if the expression matches any of the fields.
9878   for (auto *it : UD->fields()) {
9879     if (it->getType()->isPointerType()) {
9880       // If the transparent union contains a pointer type, we allow:
9881       // 1) void pointer
9882       // 2) null pointer constant
9883       if (RHSType->isPointerType())
9884         if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) {
9885           RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast);
9886           InitField = it;
9887           break;
9888         }
9889 
9890       if (RHS.get()->isNullPointerConstant(Context,
9891                                            Expr::NPC_ValueDependentIsNull)) {
9892         RHS = ImpCastExprToType(RHS.get(), it->getType(),
9893                                 CK_NullToPointer);
9894         InitField = it;
9895         break;
9896       }
9897     }
9898 
9899     CastKind Kind;
9900     if (CheckAssignmentConstraints(it->getType(), RHS, Kind)
9901           == Compatible) {
9902       RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind);
9903       InitField = it;
9904       break;
9905     }
9906   }
9907 
9908   if (!InitField)
9909     return Incompatible;
9910 
9911   ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField);
9912   return Compatible;
9913 }
9914 
9915 Sema::AssignConvertType
9916 Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &CallerRHS,
9917                                        bool Diagnose,
9918                                        bool DiagnoseCFAudited,
9919                                        bool ConvertRHS) {
9920   // We need to be able to tell the caller whether we diagnosed a problem, if
9921   // they ask us to issue diagnostics.
9922   assert((ConvertRHS || !Diagnose) && "can't indicate whether we diagnosed");
9923 
9924   // If ConvertRHS is false, we want to leave the caller's RHS untouched. Sadly,
9925   // we can't avoid *all* modifications at the moment, so we need some somewhere
9926   // to put the updated value.
9927   ExprResult LocalRHS = CallerRHS;
9928   ExprResult &RHS = ConvertRHS ? CallerRHS : LocalRHS;
9929 
9930   if (const auto *LHSPtrType = LHSType->getAs<PointerType>()) {
9931     if (const auto *RHSPtrType = RHS.get()->getType()->getAs<PointerType>()) {
9932       if (RHSPtrType->getPointeeType()->hasAttr(attr::NoDeref) &&
9933           !LHSPtrType->getPointeeType()->hasAttr(attr::NoDeref)) {
9934         Diag(RHS.get()->getExprLoc(),
9935              diag::warn_noderef_to_dereferenceable_pointer)
9936             << RHS.get()->getSourceRange();
9937       }
9938     }
9939   }
9940 
9941   if (getLangOpts().CPlusPlus) {
9942     if (!LHSType->isRecordType() && !LHSType->isAtomicType()) {
9943       // C++ 5.17p3: If the left operand is not of class type, the
9944       // expression is implicitly converted (C++ 4) to the
9945       // cv-unqualified type of the left operand.
9946       QualType RHSType = RHS.get()->getType();
9947       if (Diagnose) {
9948         RHS = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
9949                                         AA_Assigning);
9950       } else {
9951         ImplicitConversionSequence ICS =
9952             TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
9953                                   /*SuppressUserConversions=*/false,
9954                                   AllowedExplicit::None,
9955                                   /*InOverloadResolution=*/false,
9956                                   /*CStyle=*/false,
9957                                   /*AllowObjCWritebackConversion=*/false);
9958         if (ICS.isFailure())
9959           return Incompatible;
9960         RHS = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
9961                                         ICS, AA_Assigning);
9962       }
9963       if (RHS.isInvalid())
9964         return Incompatible;
9965       Sema::AssignConvertType result = Compatible;
9966       if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
9967           !CheckObjCARCUnavailableWeakConversion(LHSType, RHSType))
9968         result = IncompatibleObjCWeakRef;
9969       return result;
9970     }
9971 
9972     // FIXME: Currently, we fall through and treat C++ classes like C
9973     // structures.
9974     // FIXME: We also fall through for atomics; not sure what should
9975     // happen there, though.
9976   } else if (RHS.get()->getType() == Context.OverloadTy) {
9977     // As a set of extensions to C, we support overloading on functions. These
9978     // functions need to be resolved here.
9979     DeclAccessPair DAP;
9980     if (FunctionDecl *FD = ResolveAddressOfOverloadedFunction(
9981             RHS.get(), LHSType, /*Complain=*/false, DAP))
9982       RHS = FixOverloadedFunctionReference(RHS.get(), DAP, FD);
9983     else
9984       return Incompatible;
9985   }
9986 
9987   // C99 6.5.16.1p1: the left operand is a pointer and the right is
9988   // a null pointer constant.
9989   if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() ||
9990        LHSType->isBlockPointerType()) &&
9991       RHS.get()->isNullPointerConstant(Context,
9992                                        Expr::NPC_ValueDependentIsNull)) {
9993     if (Diagnose || ConvertRHS) {
9994       CastKind Kind;
9995       CXXCastPath Path;
9996       CheckPointerConversion(RHS.get(), LHSType, Kind, Path,
9997                              /*IgnoreBaseAccess=*/false, Diagnose);
9998       if (ConvertRHS)
9999         RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_PRValue, &Path);
10000     }
10001     return Compatible;
10002   }
10003 
10004   // OpenCL queue_t type assignment.
10005   if (LHSType->isQueueT() && RHS.get()->isNullPointerConstant(
10006                                  Context, Expr::NPC_ValueDependentIsNull)) {
10007     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
10008     return Compatible;
10009   }
10010 
10011   // This check seems unnatural, however it is necessary to ensure the proper
10012   // conversion of functions/arrays. If the conversion were done for all
10013   // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
10014   // expressions that suppress this implicit conversion (&, sizeof).
10015   //
10016   // Suppress this for references: C++ 8.5.3p5.
10017   if (!LHSType->isReferenceType()) {
10018     // FIXME: We potentially allocate here even if ConvertRHS is false.
10019     RHS = DefaultFunctionArrayLvalueConversion(RHS.get(), Diagnose);
10020     if (RHS.isInvalid())
10021       return Incompatible;
10022   }
10023   CastKind Kind;
10024   Sema::AssignConvertType result =
10025     CheckAssignmentConstraints(LHSType, RHS, Kind, ConvertRHS);
10026 
10027   // C99 6.5.16.1p2: The value of the right operand is converted to the
10028   // type of the assignment expression.
10029   // CheckAssignmentConstraints allows the left-hand side to be a reference,
10030   // so that we can use references in built-in functions even in C.
10031   // The getNonReferenceType() call makes sure that the resulting expression
10032   // does not have reference type.
10033   if (result != Incompatible && RHS.get()->getType() != LHSType) {
10034     QualType Ty = LHSType.getNonLValueExprType(Context);
10035     Expr *E = RHS.get();
10036 
10037     // Check for various Objective-C errors. If we are not reporting
10038     // diagnostics and just checking for errors, e.g., during overload
10039     // resolution, return Incompatible to indicate the failure.
10040     if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() &&
10041         CheckObjCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion,
10042                             Diagnose, DiagnoseCFAudited) != ACR_okay) {
10043       if (!Diagnose)
10044         return Incompatible;
10045     }
10046     if (getLangOpts().ObjC &&
10047         (CheckObjCBridgeRelatedConversions(E->getBeginLoc(), LHSType,
10048                                            E->getType(), E, Diagnose) ||
10049          CheckConversionToObjCLiteral(LHSType, E, Diagnose))) {
10050       if (!Diagnose)
10051         return Incompatible;
10052       // Replace the expression with a corrected version and continue so we
10053       // can find further errors.
10054       RHS = E;
10055       return Compatible;
10056     }
10057 
10058     if (ConvertRHS)
10059       RHS = ImpCastExprToType(E, Ty, Kind);
10060   }
10061 
10062   return result;
10063 }
10064 
10065 namespace {
10066 /// The original operand to an operator, prior to the application of the usual
10067 /// arithmetic conversions and converting the arguments of a builtin operator
10068 /// candidate.
10069 struct OriginalOperand {
10070   explicit OriginalOperand(Expr *Op) : Orig(Op), Conversion(nullptr) {
10071     if (auto *MTE = dyn_cast<MaterializeTemporaryExpr>(Op))
10072       Op = MTE->getSubExpr();
10073     if (auto *BTE = dyn_cast<CXXBindTemporaryExpr>(Op))
10074       Op = BTE->getSubExpr();
10075     if (auto *ICE = dyn_cast<ImplicitCastExpr>(Op)) {
10076       Orig = ICE->getSubExprAsWritten();
10077       Conversion = ICE->getConversionFunction();
10078     }
10079   }
10080 
10081   QualType getType() const { return Orig->getType(); }
10082 
10083   Expr *Orig;
10084   NamedDecl *Conversion;
10085 };
10086 }
10087 
10088 QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS,
10089                                ExprResult &RHS) {
10090   OriginalOperand OrigLHS(LHS.get()), OrigRHS(RHS.get());
10091 
10092   Diag(Loc, diag::err_typecheck_invalid_operands)
10093     << OrigLHS.getType() << OrigRHS.getType()
10094     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
10095 
10096   // If a user-defined conversion was applied to either of the operands prior
10097   // to applying the built-in operator rules, tell the user about it.
10098   if (OrigLHS.Conversion) {
10099     Diag(OrigLHS.Conversion->getLocation(),
10100          diag::note_typecheck_invalid_operands_converted)
10101       << 0 << LHS.get()->getType();
10102   }
10103   if (OrigRHS.Conversion) {
10104     Diag(OrigRHS.Conversion->getLocation(),
10105          diag::note_typecheck_invalid_operands_converted)
10106       << 1 << RHS.get()->getType();
10107   }
10108 
10109   return QualType();
10110 }
10111 
10112 // Diagnose cases where a scalar was implicitly converted to a vector and
10113 // diagnose the underlying types. Otherwise, diagnose the error
10114 // as invalid vector logical operands for non-C++ cases.
10115 QualType Sema::InvalidLogicalVectorOperands(SourceLocation Loc, ExprResult &LHS,
10116                                             ExprResult &RHS) {
10117   QualType LHSType = LHS.get()->IgnoreImpCasts()->getType();
10118   QualType RHSType = RHS.get()->IgnoreImpCasts()->getType();
10119 
10120   bool LHSNatVec = LHSType->isVectorType();
10121   bool RHSNatVec = RHSType->isVectorType();
10122 
10123   if (!(LHSNatVec && RHSNatVec)) {
10124     Expr *Vector = LHSNatVec ? LHS.get() : RHS.get();
10125     Expr *NonVector = !LHSNatVec ? LHS.get() : RHS.get();
10126     Diag(Loc, diag::err_typecheck_logical_vector_expr_gnu_cpp_restrict)
10127         << 0 << Vector->getType() << NonVector->IgnoreImpCasts()->getType()
10128         << Vector->getSourceRange();
10129     return QualType();
10130   }
10131 
10132   Diag(Loc, diag::err_typecheck_logical_vector_expr_gnu_cpp_restrict)
10133       << 1 << LHSType << RHSType << LHS.get()->getSourceRange()
10134       << RHS.get()->getSourceRange();
10135 
10136   return QualType();
10137 }
10138 
10139 /// Try to convert a value of non-vector type to a vector type by converting
10140 /// the type to the element type of the vector and then performing a splat.
10141 /// If the language is OpenCL, we only use conversions that promote scalar
10142 /// rank; for C, Obj-C, and C++ we allow any real scalar conversion except
10143 /// for float->int.
10144 ///
10145 /// OpenCL V2.0 6.2.6.p2:
10146 /// An error shall occur if any scalar operand type has greater rank
10147 /// than the type of the vector element.
10148 ///
10149 /// \param scalar - if non-null, actually perform the conversions
10150 /// \return true if the operation fails (but without diagnosing the failure)
10151 static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar,
10152                                      QualType scalarTy,
10153                                      QualType vectorEltTy,
10154                                      QualType vectorTy,
10155                                      unsigned &DiagID) {
10156   // The conversion to apply to the scalar before splatting it,
10157   // if necessary.
10158   CastKind scalarCast = CK_NoOp;
10159 
10160   if (vectorEltTy->isIntegralType(S.Context)) {
10161     if (S.getLangOpts().OpenCL && (scalarTy->isRealFloatingType() ||
10162         (scalarTy->isIntegerType() &&
10163          S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0))) {
10164       DiagID = diag::err_opencl_scalar_type_rank_greater_than_vector_type;
10165       return true;
10166     }
10167     if (!scalarTy->isIntegralType(S.Context))
10168       return true;
10169     scalarCast = CK_IntegralCast;
10170   } else if (vectorEltTy->isRealFloatingType()) {
10171     if (scalarTy->isRealFloatingType()) {
10172       if (S.getLangOpts().OpenCL &&
10173           S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0) {
10174         DiagID = diag::err_opencl_scalar_type_rank_greater_than_vector_type;
10175         return true;
10176       }
10177       scalarCast = CK_FloatingCast;
10178     }
10179     else if (scalarTy->isIntegralType(S.Context))
10180       scalarCast = CK_IntegralToFloating;
10181     else
10182       return true;
10183   } else {
10184     return true;
10185   }
10186 
10187   // Adjust scalar if desired.
10188   if (scalar) {
10189     if (scalarCast != CK_NoOp)
10190       *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast);
10191     *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat);
10192   }
10193   return false;
10194 }
10195 
10196 /// Convert vector E to a vector with the same number of elements but different
10197 /// element type.
10198 static ExprResult convertVector(Expr *E, QualType ElementType, Sema &S) {
10199   const auto *VecTy = E->getType()->getAs<VectorType>();
10200   assert(VecTy && "Expression E must be a vector");
10201   QualType NewVecTy =
10202       VecTy->isExtVectorType()
10203           ? S.Context.getExtVectorType(ElementType, VecTy->getNumElements())
10204           : S.Context.getVectorType(ElementType, VecTy->getNumElements(),
10205                                     VecTy->getVectorKind());
10206 
10207   // Look through the implicit cast. Return the subexpression if its type is
10208   // NewVecTy.
10209   if (auto *ICE = dyn_cast<ImplicitCastExpr>(E))
10210     if (ICE->getSubExpr()->getType() == NewVecTy)
10211       return ICE->getSubExpr();
10212 
10213   auto Cast = ElementType->isIntegerType() ? CK_IntegralCast : CK_FloatingCast;
10214   return S.ImpCastExprToType(E, NewVecTy, Cast);
10215 }
10216 
10217 /// Test if a (constant) integer Int can be casted to another integer type
10218 /// IntTy without losing precision.
10219 static bool canConvertIntToOtherIntTy(Sema &S, ExprResult *Int,
10220                                       QualType OtherIntTy) {
10221   QualType IntTy = Int->get()->getType().getUnqualifiedType();
10222 
10223   // Reject cases where the value of the Int is unknown as that would
10224   // possibly cause truncation, but accept cases where the scalar can be
10225   // demoted without loss of precision.
10226   Expr::EvalResult EVResult;
10227   bool CstInt = Int->get()->EvaluateAsInt(EVResult, S.Context);
10228   int Order = S.Context.getIntegerTypeOrder(OtherIntTy, IntTy);
10229   bool IntSigned = IntTy->hasSignedIntegerRepresentation();
10230   bool OtherIntSigned = OtherIntTy->hasSignedIntegerRepresentation();
10231 
10232   if (CstInt) {
10233     // If the scalar is constant and is of a higher order and has more active
10234     // bits that the vector element type, reject it.
10235     llvm::APSInt Result = EVResult.Val.getInt();
10236     unsigned NumBits = IntSigned
10237                            ? (Result.isNegative() ? Result.getMinSignedBits()
10238                                                   : Result.getActiveBits())
10239                            : Result.getActiveBits();
10240     if (Order < 0 && S.Context.getIntWidth(OtherIntTy) < NumBits)
10241       return true;
10242 
10243     // If the signedness of the scalar type and the vector element type
10244     // differs and the number of bits is greater than that of the vector
10245     // element reject it.
10246     return (IntSigned != OtherIntSigned &&
10247             NumBits > S.Context.getIntWidth(OtherIntTy));
10248   }
10249 
10250   // Reject cases where the value of the scalar is not constant and it's
10251   // order is greater than that of the vector element type.
10252   return (Order < 0);
10253 }
10254 
10255 /// Test if a (constant) integer Int can be casted to floating point type
10256 /// FloatTy without losing precision.
10257 static bool canConvertIntTyToFloatTy(Sema &S, ExprResult *Int,
10258                                      QualType FloatTy) {
10259   QualType IntTy = Int->get()->getType().getUnqualifiedType();
10260 
10261   // Determine if the integer constant can be expressed as a floating point
10262   // number of the appropriate type.
10263   Expr::EvalResult EVResult;
10264   bool CstInt = Int->get()->EvaluateAsInt(EVResult, S.Context);
10265 
10266   uint64_t Bits = 0;
10267   if (CstInt) {
10268     // Reject constants that would be truncated if they were converted to
10269     // the floating point type. Test by simple to/from conversion.
10270     // FIXME: Ideally the conversion to an APFloat and from an APFloat
10271     //        could be avoided if there was a convertFromAPInt method
10272     //        which could signal back if implicit truncation occurred.
10273     llvm::APSInt Result = EVResult.Val.getInt();
10274     llvm::APFloat Float(S.Context.getFloatTypeSemantics(FloatTy));
10275     Float.convertFromAPInt(Result, IntTy->hasSignedIntegerRepresentation(),
10276                            llvm::APFloat::rmTowardZero);
10277     llvm::APSInt ConvertBack(S.Context.getIntWidth(IntTy),
10278                              !IntTy->hasSignedIntegerRepresentation());
10279     bool Ignored = false;
10280     Float.convertToInteger(ConvertBack, llvm::APFloat::rmNearestTiesToEven,
10281                            &Ignored);
10282     if (Result != ConvertBack)
10283       return true;
10284   } else {
10285     // Reject types that cannot be fully encoded into the mantissa of
10286     // the float.
10287     Bits = S.Context.getTypeSize(IntTy);
10288     unsigned FloatPrec = llvm::APFloat::semanticsPrecision(
10289         S.Context.getFloatTypeSemantics(FloatTy));
10290     if (Bits > FloatPrec)
10291       return true;
10292   }
10293 
10294   return false;
10295 }
10296 
10297 /// Attempt to convert and splat Scalar into a vector whose types matches
10298 /// Vector following GCC conversion rules. The rule is that implicit
10299 /// conversion can occur when Scalar can be casted to match Vector's element
10300 /// type without causing truncation of Scalar.
10301 static bool tryGCCVectorConvertAndSplat(Sema &S, ExprResult *Scalar,
10302                                         ExprResult *Vector) {
10303   QualType ScalarTy = Scalar->get()->getType().getUnqualifiedType();
10304   QualType VectorTy = Vector->get()->getType().getUnqualifiedType();
10305   QualType VectorEltTy;
10306 
10307   if (const auto *VT = VectorTy->getAs<VectorType>()) {
10308     assert(!isa<ExtVectorType>(VT) &&
10309            "ExtVectorTypes should not be handled here!");
10310     VectorEltTy = VT->getElementType();
10311   } else if (VectorTy->isVLSTBuiltinType()) {
10312     VectorEltTy =
10313         VectorTy->castAs<BuiltinType>()->getSveEltType(S.getASTContext());
10314   } else {
10315     llvm_unreachable("Only Fixed-Length and SVE Vector types are handled here");
10316   }
10317 
10318   // Reject cases where the vector element type or the scalar element type are
10319   // not integral or floating point types.
10320   if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType())
10321     return true;
10322 
10323   // The conversion to apply to the scalar before splatting it,
10324   // if necessary.
10325   CastKind ScalarCast = CK_NoOp;
10326 
10327   // Accept cases where the vector elements are integers and the scalar is
10328   // an integer.
10329   // FIXME: Notionally if the scalar was a floating point value with a precise
10330   //        integral representation, we could cast it to an appropriate integer
10331   //        type and then perform the rest of the checks here. GCC will perform
10332   //        this conversion in some cases as determined by the input language.
10333   //        We should accept it on a language independent basis.
10334   if (VectorEltTy->isIntegralType(S.Context) &&
10335       ScalarTy->isIntegralType(S.Context) &&
10336       S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy)) {
10337 
10338     if (canConvertIntToOtherIntTy(S, Scalar, VectorEltTy))
10339       return true;
10340 
10341     ScalarCast = CK_IntegralCast;
10342   } else if (VectorEltTy->isIntegralType(S.Context) &&
10343              ScalarTy->isRealFloatingType()) {
10344     if (S.Context.getTypeSize(VectorEltTy) == S.Context.getTypeSize(ScalarTy))
10345       ScalarCast = CK_FloatingToIntegral;
10346     else
10347       return true;
10348   } else if (VectorEltTy->isRealFloatingType()) {
10349     if (ScalarTy->isRealFloatingType()) {
10350 
10351       // Reject cases where the scalar type is not a constant and has a higher
10352       // Order than the vector element type.
10353       llvm::APFloat Result(0.0);
10354 
10355       // Determine whether this is a constant scalar. In the event that the
10356       // value is dependent (and thus cannot be evaluated by the constant
10357       // evaluator), skip the evaluation. This will then diagnose once the
10358       // expression is instantiated.
10359       bool CstScalar = Scalar->get()->isValueDependent() ||
10360                        Scalar->get()->EvaluateAsFloat(Result, S.Context);
10361       int Order = S.Context.getFloatingTypeOrder(VectorEltTy, ScalarTy);
10362       if (!CstScalar && Order < 0)
10363         return true;
10364 
10365       // If the scalar cannot be safely casted to the vector element type,
10366       // reject it.
10367       if (CstScalar) {
10368         bool Truncated = false;
10369         Result.convert(S.Context.getFloatTypeSemantics(VectorEltTy),
10370                        llvm::APFloat::rmNearestTiesToEven, &Truncated);
10371         if (Truncated)
10372           return true;
10373       }
10374 
10375       ScalarCast = CK_FloatingCast;
10376     } else if (ScalarTy->isIntegralType(S.Context)) {
10377       if (canConvertIntTyToFloatTy(S, Scalar, VectorEltTy))
10378         return true;
10379 
10380       ScalarCast = CK_IntegralToFloating;
10381     } else
10382       return true;
10383   } else if (ScalarTy->isEnumeralType())
10384     return true;
10385 
10386   // Adjust scalar if desired.
10387   if (Scalar) {
10388     if (ScalarCast != CK_NoOp)
10389       *Scalar = S.ImpCastExprToType(Scalar->get(), VectorEltTy, ScalarCast);
10390     *Scalar = S.ImpCastExprToType(Scalar->get(), VectorTy, CK_VectorSplat);
10391   }
10392   return false;
10393 }
10394 
10395 QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS,
10396                                    SourceLocation Loc, bool IsCompAssign,
10397                                    bool AllowBothBool,
10398                                    bool AllowBoolConversions,
10399                                    bool AllowBoolOperation,
10400                                    bool ReportInvalid) {
10401   if (!IsCompAssign) {
10402     LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
10403     if (LHS.isInvalid())
10404       return QualType();
10405   }
10406   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
10407   if (RHS.isInvalid())
10408     return QualType();
10409 
10410   // For conversion purposes, we ignore any qualifiers.
10411   // For example, "const float" and "float" are equivalent.
10412   QualType LHSType = LHS.get()->getType().getUnqualifiedType();
10413   QualType RHSType = RHS.get()->getType().getUnqualifiedType();
10414 
10415   const VectorType *LHSVecType = LHSType->getAs<VectorType>();
10416   const VectorType *RHSVecType = RHSType->getAs<VectorType>();
10417   assert(LHSVecType || RHSVecType);
10418 
10419   if ((LHSVecType && LHSVecType->getElementType()->isBFloat16Type()) ||
10420       (RHSVecType && RHSVecType->getElementType()->isBFloat16Type()))
10421     return ReportInvalid ? InvalidOperands(Loc, LHS, RHS) : QualType();
10422 
10423   // AltiVec-style "vector bool op vector bool" combinations are allowed
10424   // for some operators but not others.
10425   if (!AllowBothBool &&
10426       LHSVecType && LHSVecType->getVectorKind() == VectorType::AltiVecBool &&
10427       RHSVecType && RHSVecType->getVectorKind() == VectorType::AltiVecBool)
10428     return ReportInvalid ? InvalidOperands(Loc, LHS, RHS) : QualType();
10429 
10430   // This operation may not be performed on boolean vectors.
10431   if (!AllowBoolOperation &&
10432       (LHSType->isExtVectorBoolType() || RHSType->isExtVectorBoolType()))
10433     return ReportInvalid ? InvalidOperands(Loc, LHS, RHS) : QualType();
10434 
10435   // If the vector types are identical, return.
10436   if (Context.hasSameType(LHSType, RHSType))
10437     return LHSType;
10438 
10439   // If we have compatible AltiVec and GCC vector types, use the AltiVec type.
10440   if (LHSVecType && RHSVecType &&
10441       Context.areCompatibleVectorTypes(LHSType, RHSType)) {
10442     if (isa<ExtVectorType>(LHSVecType)) {
10443       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
10444       return LHSType;
10445     }
10446 
10447     if (!IsCompAssign)
10448       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
10449     return RHSType;
10450   }
10451 
10452   // AllowBoolConversions says that bool and non-bool AltiVec vectors
10453   // can be mixed, with the result being the non-bool type.  The non-bool
10454   // operand must have integer element type.
10455   if (AllowBoolConversions && LHSVecType && RHSVecType &&
10456       LHSVecType->getNumElements() == RHSVecType->getNumElements() &&
10457       (Context.getTypeSize(LHSVecType->getElementType()) ==
10458        Context.getTypeSize(RHSVecType->getElementType()))) {
10459     if (LHSVecType->getVectorKind() == VectorType::AltiVecVector &&
10460         LHSVecType->getElementType()->isIntegerType() &&
10461         RHSVecType->getVectorKind() == VectorType::AltiVecBool) {
10462       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
10463       return LHSType;
10464     }
10465     if (!IsCompAssign &&
10466         LHSVecType->getVectorKind() == VectorType::AltiVecBool &&
10467         RHSVecType->getVectorKind() == VectorType::AltiVecVector &&
10468         RHSVecType->getElementType()->isIntegerType()) {
10469       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
10470       return RHSType;
10471     }
10472   }
10473 
10474   // Expressions containing fixed-length and sizeless SVE vectors are invalid
10475   // since the ambiguity can affect the ABI.
10476   auto IsSveConversion = [](QualType FirstType, QualType SecondType) {
10477     const VectorType *VecType = SecondType->getAs<VectorType>();
10478     return FirstType->isSizelessBuiltinType() && VecType &&
10479            (VecType->getVectorKind() == VectorType::SveFixedLengthDataVector ||
10480             VecType->getVectorKind() ==
10481                 VectorType::SveFixedLengthPredicateVector);
10482   };
10483 
10484   if (IsSveConversion(LHSType, RHSType) || IsSveConversion(RHSType, LHSType)) {
10485     Diag(Loc, diag::err_typecheck_sve_ambiguous) << LHSType << RHSType;
10486     return QualType();
10487   }
10488 
10489   // Expressions containing GNU and SVE (fixed or sizeless) vectors are invalid
10490   // since the ambiguity can affect the ABI.
10491   auto IsSveGnuConversion = [](QualType FirstType, QualType SecondType) {
10492     const VectorType *FirstVecType = FirstType->getAs<VectorType>();
10493     const VectorType *SecondVecType = SecondType->getAs<VectorType>();
10494 
10495     if (FirstVecType && SecondVecType)
10496       return FirstVecType->getVectorKind() == VectorType::GenericVector &&
10497              (SecondVecType->getVectorKind() ==
10498                   VectorType::SveFixedLengthDataVector ||
10499               SecondVecType->getVectorKind() ==
10500                   VectorType::SveFixedLengthPredicateVector);
10501 
10502     return FirstType->isSizelessBuiltinType() && SecondVecType &&
10503            SecondVecType->getVectorKind() == VectorType::GenericVector;
10504   };
10505 
10506   if (IsSveGnuConversion(LHSType, RHSType) ||
10507       IsSveGnuConversion(RHSType, LHSType)) {
10508     Diag(Loc, diag::err_typecheck_sve_gnu_ambiguous) << LHSType << RHSType;
10509     return QualType();
10510   }
10511 
10512   // If there's a vector type and a scalar, try to convert the scalar to
10513   // the vector element type and splat.
10514   unsigned DiagID = diag::err_typecheck_vector_not_convertable;
10515   if (!RHSVecType) {
10516     if (isa<ExtVectorType>(LHSVecType)) {
10517       if (!tryVectorConvertAndSplat(*this, &RHS, RHSType,
10518                                     LHSVecType->getElementType(), LHSType,
10519                                     DiagID))
10520         return LHSType;
10521     } else {
10522       if (!tryGCCVectorConvertAndSplat(*this, &RHS, &LHS))
10523         return LHSType;
10524     }
10525   }
10526   if (!LHSVecType) {
10527     if (isa<ExtVectorType>(RHSVecType)) {
10528       if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS),
10529                                     LHSType, RHSVecType->getElementType(),
10530                                     RHSType, DiagID))
10531         return RHSType;
10532     } else {
10533       if (LHS.get()->isLValue() ||
10534           !tryGCCVectorConvertAndSplat(*this, &LHS, &RHS))
10535         return RHSType;
10536     }
10537   }
10538 
10539   // FIXME: The code below also handles conversion between vectors and
10540   // non-scalars, we should break this down into fine grained specific checks
10541   // and emit proper diagnostics.
10542   QualType VecType = LHSVecType ? LHSType : RHSType;
10543   const VectorType *VT = LHSVecType ? LHSVecType : RHSVecType;
10544   QualType OtherType = LHSVecType ? RHSType : LHSType;
10545   ExprResult *OtherExpr = LHSVecType ? &RHS : &LHS;
10546   if (isLaxVectorConversion(OtherType, VecType)) {
10547     if (anyAltivecTypes(RHSType, LHSType) &&
10548         !areSameVectorElemTypes(RHSType, LHSType))
10549       Diag(Loc, diag::warn_deprecated_lax_vec_conv_all) << RHSType << LHSType;
10550     // If we're allowing lax vector conversions, only the total (data) size
10551     // needs to be the same. For non compound assignment, if one of the types is
10552     // scalar, the result is always the vector type.
10553     if (!IsCompAssign) {
10554       *OtherExpr = ImpCastExprToType(OtherExpr->get(), VecType, CK_BitCast);
10555       return VecType;
10556     // In a compound assignment, lhs += rhs, 'lhs' is a lvalue src, forbidding
10557     // any implicit cast. Here, the 'rhs' should be implicit casted to 'lhs'
10558     // type. Note that this is already done by non-compound assignments in
10559     // CheckAssignmentConstraints. If it's a scalar type, only bitcast for
10560     // <1 x T> -> T. The result is also a vector type.
10561     } else if (OtherType->isExtVectorType() || OtherType->isVectorType() ||
10562                (OtherType->isScalarType() && VT->getNumElements() == 1)) {
10563       ExprResult *RHSExpr = &RHS;
10564       *RHSExpr = ImpCastExprToType(RHSExpr->get(), LHSType, CK_BitCast);
10565       return VecType;
10566     }
10567   }
10568 
10569   // Okay, the expression is invalid.
10570 
10571   // If there's a non-vector, non-real operand, diagnose that.
10572   if ((!RHSVecType && !RHSType->isRealType()) ||
10573       (!LHSVecType && !LHSType->isRealType())) {
10574     Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar)
10575       << LHSType << RHSType
10576       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
10577     return QualType();
10578   }
10579 
10580   // OpenCL V1.1 6.2.6.p1:
10581   // If the operands are of more than one vector type, then an error shall
10582   // occur. Implicit conversions between vector types are not permitted, per
10583   // section 6.2.1.
10584   if (getLangOpts().OpenCL &&
10585       RHSVecType && isa<ExtVectorType>(RHSVecType) &&
10586       LHSVecType && isa<ExtVectorType>(LHSVecType)) {
10587     Diag(Loc, diag::err_opencl_implicit_vector_conversion) << LHSType
10588                                                            << RHSType;
10589     return QualType();
10590   }
10591 
10592 
10593   // If there is a vector type that is not a ExtVector and a scalar, we reach
10594   // this point if scalar could not be converted to the vector's element type
10595   // without truncation.
10596   if ((RHSVecType && !isa<ExtVectorType>(RHSVecType)) ||
10597       (LHSVecType && !isa<ExtVectorType>(LHSVecType))) {
10598     QualType Scalar = LHSVecType ? RHSType : LHSType;
10599     QualType Vector = LHSVecType ? LHSType : RHSType;
10600     unsigned ScalarOrVector = LHSVecType && RHSVecType ? 1 : 0;
10601     Diag(Loc,
10602          diag::err_typecheck_vector_not_convertable_implict_truncation)
10603         << ScalarOrVector << Scalar << Vector;
10604 
10605     return QualType();
10606   }
10607 
10608   // Otherwise, use the generic diagnostic.
10609   Diag(Loc, DiagID)
10610     << LHSType << RHSType
10611     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
10612   return QualType();
10613 }
10614 
10615 QualType Sema::CheckSizelessVectorOperands(ExprResult &LHS, ExprResult &RHS,
10616                                            SourceLocation Loc,
10617                                            bool IsCompAssign,
10618                                            ArithConvKind OperationKind) {
10619   if (!IsCompAssign) {
10620     LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
10621     if (LHS.isInvalid())
10622       return QualType();
10623   }
10624   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
10625   if (RHS.isInvalid())
10626     return QualType();
10627 
10628   QualType LHSType = LHS.get()->getType().getUnqualifiedType();
10629   QualType RHSType = RHS.get()->getType().getUnqualifiedType();
10630 
10631   const BuiltinType *LHSBuiltinTy = LHSType->getAs<BuiltinType>();
10632   const BuiltinType *RHSBuiltinTy = RHSType->getAs<BuiltinType>();
10633 
10634   unsigned DiagID = diag::err_typecheck_invalid_operands;
10635   if ((OperationKind == ACK_Arithmetic) &&
10636       ((LHSBuiltinTy && LHSBuiltinTy->isSVEBool()) ||
10637        (RHSBuiltinTy && RHSBuiltinTy->isSVEBool()))) {
10638     Diag(Loc, DiagID) << LHSType << RHSType << LHS.get()->getSourceRange()
10639                       << RHS.get()->getSourceRange();
10640     return QualType();
10641   }
10642 
10643   if (Context.hasSameType(LHSType, RHSType))
10644     return LHSType;
10645 
10646   if (LHSType->isVLSTBuiltinType() && !RHSType->isVLSTBuiltinType()) {
10647     if (!tryGCCVectorConvertAndSplat(*this, &RHS, &LHS))
10648       return LHSType;
10649   }
10650   if (RHSType->isVLSTBuiltinType() && !LHSType->isVLSTBuiltinType()) {
10651     if (LHS.get()->isLValue() ||
10652         !tryGCCVectorConvertAndSplat(*this, &LHS, &RHS))
10653       return RHSType;
10654   }
10655 
10656   if ((!LHSType->isVLSTBuiltinType() && !LHSType->isRealType()) ||
10657       (!RHSType->isVLSTBuiltinType() && !RHSType->isRealType())) {
10658     Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar)
10659         << LHSType << RHSType << LHS.get()->getSourceRange()
10660         << RHS.get()->getSourceRange();
10661     return QualType();
10662   }
10663 
10664   if (LHSType->isVLSTBuiltinType() && RHSType->isVLSTBuiltinType() &&
10665       Context.getBuiltinVectorTypeInfo(LHSBuiltinTy).EC !=
10666           Context.getBuiltinVectorTypeInfo(RHSBuiltinTy).EC) {
10667     Diag(Loc, diag::err_typecheck_vector_lengths_not_equal)
10668         << LHSType << RHSType << LHS.get()->getSourceRange()
10669         << RHS.get()->getSourceRange();
10670     return QualType();
10671   }
10672 
10673   if (LHSType->isVLSTBuiltinType() || RHSType->isVLSTBuiltinType()) {
10674     QualType Scalar = LHSType->isVLSTBuiltinType() ? RHSType : LHSType;
10675     QualType Vector = LHSType->isVLSTBuiltinType() ? LHSType : RHSType;
10676     bool ScalarOrVector =
10677         LHSType->isVLSTBuiltinType() && RHSType->isVLSTBuiltinType();
10678 
10679     Diag(Loc, diag::err_typecheck_vector_not_convertable_implict_truncation)
10680         << ScalarOrVector << Scalar << Vector;
10681 
10682     return QualType();
10683   }
10684 
10685   Diag(Loc, DiagID) << LHSType << RHSType << LHS.get()->getSourceRange()
10686                     << RHS.get()->getSourceRange();
10687   return QualType();
10688 }
10689 
10690 // checkArithmeticNull - Detect when a NULL constant is used improperly in an
10691 // expression.  These are mainly cases where the null pointer is used as an
10692 // integer instead of a pointer.
10693 static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS,
10694                                 SourceLocation Loc, bool IsCompare) {
10695   // The canonical way to check for a GNU null is with isNullPointerConstant,
10696   // but we use a bit of a hack here for speed; this is a relatively
10697   // hot path, and isNullPointerConstant is slow.
10698   bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts());
10699   bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts());
10700 
10701   QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType();
10702 
10703   // Avoid analyzing cases where the result will either be invalid (and
10704   // diagnosed as such) or entirely valid and not something to warn about.
10705   if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() ||
10706       NonNullType->isMemberPointerType() || NonNullType->isFunctionType())
10707     return;
10708 
10709   // Comparison operations would not make sense with a null pointer no matter
10710   // what the other expression is.
10711   if (!IsCompare) {
10712     S.Diag(Loc, diag::warn_null_in_arithmetic_operation)
10713         << (LHSNull ? LHS.get()->getSourceRange() : SourceRange())
10714         << (RHSNull ? RHS.get()->getSourceRange() : SourceRange());
10715     return;
10716   }
10717 
10718   // The rest of the operations only make sense with a null pointer
10719   // if the other expression is a pointer.
10720   if (LHSNull == RHSNull || NonNullType->isAnyPointerType() ||
10721       NonNullType->canDecayToPointerType())
10722     return;
10723 
10724   S.Diag(Loc, diag::warn_null_in_comparison_operation)
10725       << LHSNull /* LHS is NULL */ << NonNullType
10726       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
10727 }
10728 
10729 static void DiagnoseDivisionSizeofPointerOrArray(Sema &S, Expr *LHS, Expr *RHS,
10730                                           SourceLocation Loc) {
10731   const auto *LUE = dyn_cast<UnaryExprOrTypeTraitExpr>(LHS);
10732   const auto *RUE = dyn_cast<UnaryExprOrTypeTraitExpr>(RHS);
10733   if (!LUE || !RUE)
10734     return;
10735   if (LUE->getKind() != UETT_SizeOf || LUE->isArgumentType() ||
10736       RUE->getKind() != UETT_SizeOf)
10737     return;
10738 
10739   const Expr *LHSArg = LUE->getArgumentExpr()->IgnoreParens();
10740   QualType LHSTy = LHSArg->getType();
10741   QualType RHSTy;
10742 
10743   if (RUE->isArgumentType())
10744     RHSTy = RUE->getArgumentType().getNonReferenceType();
10745   else
10746     RHSTy = RUE->getArgumentExpr()->IgnoreParens()->getType();
10747 
10748   if (LHSTy->isPointerType() && !RHSTy->isPointerType()) {
10749     if (!S.Context.hasSameUnqualifiedType(LHSTy->getPointeeType(), RHSTy))
10750       return;
10751 
10752     S.Diag(Loc, diag::warn_division_sizeof_ptr) << LHS << LHS->getSourceRange();
10753     if (const auto *DRE = dyn_cast<DeclRefExpr>(LHSArg)) {
10754       if (const ValueDecl *LHSArgDecl = DRE->getDecl())
10755         S.Diag(LHSArgDecl->getLocation(), diag::note_pointer_declared_here)
10756             << LHSArgDecl;
10757     }
10758   } else if (const auto *ArrayTy = S.Context.getAsArrayType(LHSTy)) {
10759     QualType ArrayElemTy = ArrayTy->getElementType();
10760     if (ArrayElemTy != S.Context.getBaseElementType(ArrayTy) ||
10761         ArrayElemTy->isDependentType() || RHSTy->isDependentType() ||
10762         RHSTy->isReferenceType() || ArrayElemTy->isCharType() ||
10763         S.Context.getTypeSize(ArrayElemTy) == S.Context.getTypeSize(RHSTy))
10764       return;
10765     S.Diag(Loc, diag::warn_division_sizeof_array)
10766         << LHSArg->getSourceRange() << ArrayElemTy << RHSTy;
10767     if (const auto *DRE = dyn_cast<DeclRefExpr>(LHSArg)) {
10768       if (const ValueDecl *LHSArgDecl = DRE->getDecl())
10769         S.Diag(LHSArgDecl->getLocation(), diag::note_array_declared_here)
10770             << LHSArgDecl;
10771     }
10772 
10773     S.Diag(Loc, diag::note_precedence_silence) << RHS;
10774   }
10775 }
10776 
10777 static void DiagnoseBadDivideOrRemainderValues(Sema& S, ExprResult &LHS,
10778                                                ExprResult &RHS,
10779                                                SourceLocation Loc, bool IsDiv) {
10780   // Check for division/remainder by zero.
10781   Expr::EvalResult RHSValue;
10782   if (!RHS.get()->isValueDependent() &&
10783       RHS.get()->EvaluateAsInt(RHSValue, S.Context) &&
10784       RHSValue.Val.getInt() == 0)
10785     S.DiagRuntimeBehavior(Loc, RHS.get(),
10786                           S.PDiag(diag::warn_remainder_division_by_zero)
10787                             << IsDiv << RHS.get()->getSourceRange());
10788 }
10789 
10790 QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS,
10791                                            SourceLocation Loc,
10792                                            bool IsCompAssign, bool IsDiv) {
10793   checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false);
10794 
10795   QualType LHSTy = LHS.get()->getType();
10796   QualType RHSTy = RHS.get()->getType();
10797   if (LHSTy->isVectorType() || RHSTy->isVectorType())
10798     return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
10799                                /*AllowBothBool*/ getLangOpts().AltiVec,
10800                                /*AllowBoolConversions*/ false,
10801                                /*AllowBooleanOperation*/ false,
10802                                /*ReportInvalid*/ true);
10803   if (LHSTy->isVLSTBuiltinType() || RHSTy->isVLSTBuiltinType())
10804     return CheckSizelessVectorOperands(LHS, RHS, Loc, IsCompAssign,
10805                                        ACK_Arithmetic);
10806   if (!IsDiv &&
10807       (LHSTy->isConstantMatrixType() || RHSTy->isConstantMatrixType()))
10808     return CheckMatrixMultiplyOperands(LHS, RHS, Loc, IsCompAssign);
10809   // For division, only matrix-by-scalar is supported. Other combinations with
10810   // matrix types are invalid.
10811   if (IsDiv && LHSTy->isConstantMatrixType() && RHSTy->isArithmeticType())
10812     return CheckMatrixElementwiseOperands(LHS, RHS, Loc, IsCompAssign);
10813 
10814   QualType compType = UsualArithmeticConversions(
10815       LHS, RHS, Loc, IsCompAssign ? ACK_CompAssign : ACK_Arithmetic);
10816   if (LHS.isInvalid() || RHS.isInvalid())
10817     return QualType();
10818 
10819 
10820   if (compType.isNull() || !compType->isArithmeticType())
10821     return InvalidOperands(Loc, LHS, RHS);
10822   if (IsDiv) {
10823     DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, IsDiv);
10824     DiagnoseDivisionSizeofPointerOrArray(*this, LHS.get(), RHS.get(), Loc);
10825   }
10826   return compType;
10827 }
10828 
10829 QualType Sema::CheckRemainderOperands(
10830   ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
10831   checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false);
10832 
10833   if (LHS.get()->getType()->isVectorType() ||
10834       RHS.get()->getType()->isVectorType()) {
10835     if (LHS.get()->getType()->hasIntegerRepresentation() &&
10836         RHS.get()->getType()->hasIntegerRepresentation())
10837       return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
10838                                  /*AllowBothBool*/ getLangOpts().AltiVec,
10839                                  /*AllowBoolConversions*/ false,
10840                                  /*AllowBooleanOperation*/ false,
10841                                  /*ReportInvalid*/ true);
10842     return InvalidOperands(Loc, LHS, RHS);
10843   }
10844 
10845   if (LHS.get()->getType()->isVLSTBuiltinType() ||
10846       RHS.get()->getType()->isVLSTBuiltinType()) {
10847     if (LHS.get()->getType()->hasIntegerRepresentation() &&
10848         RHS.get()->getType()->hasIntegerRepresentation())
10849       return CheckSizelessVectorOperands(LHS, RHS, Loc, IsCompAssign,
10850                                          ACK_Arithmetic);
10851 
10852     return InvalidOperands(Loc, LHS, RHS);
10853   }
10854 
10855   QualType compType = UsualArithmeticConversions(
10856       LHS, RHS, Loc, IsCompAssign ? ACK_CompAssign : ACK_Arithmetic);
10857   if (LHS.isInvalid() || RHS.isInvalid())
10858     return QualType();
10859 
10860   if (compType.isNull() || !compType->isIntegerType())
10861     return InvalidOperands(Loc, LHS, RHS);
10862   DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, false /* IsDiv */);
10863   return compType;
10864 }
10865 
10866 /// Diagnose invalid arithmetic on two void pointers.
10867 static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc,
10868                                                 Expr *LHSExpr, Expr *RHSExpr) {
10869   S.Diag(Loc, S.getLangOpts().CPlusPlus
10870                 ? diag::err_typecheck_pointer_arith_void_type
10871                 : diag::ext_gnu_void_ptr)
10872     << 1 /* two pointers */ << LHSExpr->getSourceRange()
10873                             << RHSExpr->getSourceRange();
10874 }
10875 
10876 /// Diagnose invalid arithmetic on a void pointer.
10877 static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc,
10878                                             Expr *Pointer) {
10879   S.Diag(Loc, S.getLangOpts().CPlusPlus
10880                 ? diag::err_typecheck_pointer_arith_void_type
10881                 : diag::ext_gnu_void_ptr)
10882     << 0 /* one pointer */ << Pointer->getSourceRange();
10883 }
10884 
10885 /// Diagnose invalid arithmetic on a null pointer.
10886 ///
10887 /// If \p IsGNUIdiom is true, the operation is using the 'p = (i8*)nullptr + n'
10888 /// idiom, which we recognize as a GNU extension.
10889 ///
10890 static void diagnoseArithmeticOnNullPointer(Sema &S, SourceLocation Loc,
10891                                             Expr *Pointer, bool IsGNUIdiom) {
10892   if (IsGNUIdiom)
10893     S.Diag(Loc, diag::warn_gnu_null_ptr_arith)
10894       << Pointer->getSourceRange();
10895   else
10896     S.Diag(Loc, diag::warn_pointer_arith_null_ptr)
10897       << S.getLangOpts().CPlusPlus << Pointer->getSourceRange();
10898 }
10899 
10900 /// Diagnose invalid subraction on a null pointer.
10901 ///
10902 static void diagnoseSubtractionOnNullPointer(Sema &S, SourceLocation Loc,
10903                                              Expr *Pointer, bool BothNull) {
10904   // Null - null is valid in C++ [expr.add]p7
10905   if (BothNull && S.getLangOpts().CPlusPlus)
10906     return;
10907 
10908   // Is this s a macro from a system header?
10909   if (S.Diags.getSuppressSystemWarnings() && S.SourceMgr.isInSystemMacro(Loc))
10910     return;
10911 
10912   S.DiagRuntimeBehavior(Loc, Pointer,
10913                         S.PDiag(diag::warn_pointer_sub_null_ptr)
10914                             << S.getLangOpts().CPlusPlus
10915                             << Pointer->getSourceRange());
10916 }
10917 
10918 /// Diagnose invalid arithmetic on two function pointers.
10919 static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc,
10920                                                     Expr *LHS, Expr *RHS) {
10921   assert(LHS->getType()->isAnyPointerType());
10922   assert(RHS->getType()->isAnyPointerType());
10923   S.Diag(Loc, S.getLangOpts().CPlusPlus
10924                 ? diag::err_typecheck_pointer_arith_function_type
10925                 : diag::ext_gnu_ptr_func_arith)
10926     << 1 /* two pointers */ << LHS->getType()->getPointeeType()
10927     // We only show the second type if it differs from the first.
10928     << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(),
10929                                                    RHS->getType())
10930     << RHS->getType()->getPointeeType()
10931     << LHS->getSourceRange() << RHS->getSourceRange();
10932 }
10933 
10934 /// Diagnose invalid arithmetic on a function pointer.
10935 static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc,
10936                                                 Expr *Pointer) {
10937   assert(Pointer->getType()->isAnyPointerType());
10938   S.Diag(Loc, S.getLangOpts().CPlusPlus
10939                 ? diag::err_typecheck_pointer_arith_function_type
10940                 : diag::ext_gnu_ptr_func_arith)
10941     << 0 /* one pointer */ << Pointer->getType()->getPointeeType()
10942     << 0 /* one pointer, so only one type */
10943     << Pointer->getSourceRange();
10944 }
10945 
10946 /// Emit error if Operand is incomplete pointer type
10947 ///
10948 /// \returns True if pointer has incomplete type
10949 static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc,
10950                                                  Expr *Operand) {
10951   QualType ResType = Operand->getType();
10952   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
10953     ResType = ResAtomicType->getValueType();
10954 
10955   assert(ResType->isAnyPointerType() && !ResType->isDependentType());
10956   QualType PointeeTy = ResType->getPointeeType();
10957   return S.RequireCompleteSizedType(
10958       Loc, PointeeTy,
10959       diag::err_typecheck_arithmetic_incomplete_or_sizeless_type,
10960       Operand->getSourceRange());
10961 }
10962 
10963 /// Check the validity of an arithmetic pointer operand.
10964 ///
10965 /// If the operand has pointer type, this code will check for pointer types
10966 /// which are invalid in arithmetic operations. These will be diagnosed
10967 /// appropriately, including whether or not the use is supported as an
10968 /// extension.
10969 ///
10970 /// \returns True when the operand is valid to use (even if as an extension).
10971 static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc,
10972                                             Expr *Operand) {
10973   QualType ResType = Operand->getType();
10974   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
10975     ResType = ResAtomicType->getValueType();
10976 
10977   if (!ResType->isAnyPointerType()) return true;
10978 
10979   QualType PointeeTy = ResType->getPointeeType();
10980   if (PointeeTy->isVoidType()) {
10981     diagnoseArithmeticOnVoidPointer(S, Loc, Operand);
10982     return !S.getLangOpts().CPlusPlus;
10983   }
10984   if (PointeeTy->isFunctionType()) {
10985     diagnoseArithmeticOnFunctionPointer(S, Loc, Operand);
10986     return !S.getLangOpts().CPlusPlus;
10987   }
10988 
10989   if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false;
10990 
10991   return true;
10992 }
10993 
10994 /// Check the validity of a binary arithmetic operation w.r.t. pointer
10995 /// operands.
10996 ///
10997 /// This routine will diagnose any invalid arithmetic on pointer operands much
10998 /// like \see checkArithmeticOpPointerOperand. However, it has special logic
10999 /// for emitting a single diagnostic even for operations where both LHS and RHS
11000 /// are (potentially problematic) pointers.
11001 ///
11002 /// \returns True when the operand is valid to use (even if as an extension).
11003 static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc,
11004                                                 Expr *LHSExpr, Expr *RHSExpr) {
11005   bool isLHSPointer = LHSExpr->getType()->isAnyPointerType();
11006   bool isRHSPointer = RHSExpr->getType()->isAnyPointerType();
11007   if (!isLHSPointer && !isRHSPointer) return true;
11008 
11009   QualType LHSPointeeTy, RHSPointeeTy;
11010   if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType();
11011   if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType();
11012 
11013   // if both are pointers check if operation is valid wrt address spaces
11014   if (isLHSPointer && isRHSPointer) {
11015     if (!LHSPointeeTy.isAddressSpaceOverlapping(RHSPointeeTy)) {
11016       S.Diag(Loc,
11017              diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
11018           << LHSExpr->getType() << RHSExpr->getType() << 1 /*arithmetic op*/
11019           << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
11020       return false;
11021     }
11022   }
11023 
11024   // Check for arithmetic on pointers to incomplete types.
11025   bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType();
11026   bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType();
11027   if (isLHSVoidPtr || isRHSVoidPtr) {
11028     if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr);
11029     else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr);
11030     else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr);
11031 
11032     return !S.getLangOpts().CPlusPlus;
11033   }
11034 
11035   bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType();
11036   bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType();
11037   if (isLHSFuncPtr || isRHSFuncPtr) {
11038     if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr);
11039     else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc,
11040                                                                 RHSExpr);
11041     else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr);
11042 
11043     return !S.getLangOpts().CPlusPlus;
11044   }
11045 
11046   if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr))
11047     return false;
11048   if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr))
11049     return false;
11050 
11051   return true;
11052 }
11053 
11054 /// diagnoseStringPlusInt - Emit a warning when adding an integer to a string
11055 /// literal.
11056 static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc,
11057                                   Expr *LHSExpr, Expr *RHSExpr) {
11058   StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts());
11059   Expr* IndexExpr = RHSExpr;
11060   if (!StrExpr) {
11061     StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts());
11062     IndexExpr = LHSExpr;
11063   }
11064 
11065   bool IsStringPlusInt = StrExpr &&
11066       IndexExpr->getType()->isIntegralOrUnscopedEnumerationType();
11067   if (!IsStringPlusInt || IndexExpr->isValueDependent())
11068     return;
11069 
11070   SourceRange DiagRange(LHSExpr->getBeginLoc(), RHSExpr->getEndLoc());
11071   Self.Diag(OpLoc, diag::warn_string_plus_int)
11072       << DiagRange << IndexExpr->IgnoreImpCasts()->getType();
11073 
11074   // Only print a fixit for "str" + int, not for int + "str".
11075   if (IndexExpr == RHSExpr) {
11076     SourceLocation EndLoc = Self.getLocForEndOfToken(RHSExpr->getEndLoc());
11077     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
11078         << FixItHint::CreateInsertion(LHSExpr->getBeginLoc(), "&")
11079         << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
11080         << FixItHint::CreateInsertion(EndLoc, "]");
11081   } else
11082     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
11083 }
11084 
11085 /// Emit a warning when adding a char literal to a string.
11086 static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc,
11087                                    Expr *LHSExpr, Expr *RHSExpr) {
11088   const Expr *StringRefExpr = LHSExpr;
11089   const CharacterLiteral *CharExpr =
11090       dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts());
11091 
11092   if (!CharExpr) {
11093     CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts());
11094     StringRefExpr = RHSExpr;
11095   }
11096 
11097   if (!CharExpr || !StringRefExpr)
11098     return;
11099 
11100   const QualType StringType = StringRefExpr->getType();
11101 
11102   // Return if not a PointerType.
11103   if (!StringType->isAnyPointerType())
11104     return;
11105 
11106   // Return if not a CharacterType.
11107   if (!StringType->getPointeeType()->isAnyCharacterType())
11108     return;
11109 
11110   ASTContext &Ctx = Self.getASTContext();
11111   SourceRange DiagRange(LHSExpr->getBeginLoc(), RHSExpr->getEndLoc());
11112 
11113   const QualType CharType = CharExpr->getType();
11114   if (!CharType->isAnyCharacterType() &&
11115       CharType->isIntegerType() &&
11116       llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) {
11117     Self.Diag(OpLoc, diag::warn_string_plus_char)
11118         << DiagRange << Ctx.CharTy;
11119   } else {
11120     Self.Diag(OpLoc, diag::warn_string_plus_char)
11121         << DiagRange << CharExpr->getType();
11122   }
11123 
11124   // Only print a fixit for str + char, not for char + str.
11125   if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) {
11126     SourceLocation EndLoc = Self.getLocForEndOfToken(RHSExpr->getEndLoc());
11127     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
11128         << FixItHint::CreateInsertion(LHSExpr->getBeginLoc(), "&")
11129         << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
11130         << FixItHint::CreateInsertion(EndLoc, "]");
11131   } else {
11132     Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
11133   }
11134 }
11135 
11136 /// Emit error when two pointers are incompatible.
11137 static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc,
11138                                            Expr *LHSExpr, Expr *RHSExpr) {
11139   assert(LHSExpr->getType()->isAnyPointerType());
11140   assert(RHSExpr->getType()->isAnyPointerType());
11141   S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
11142     << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange()
11143     << RHSExpr->getSourceRange();
11144 }
11145 
11146 // C99 6.5.6
11147 QualType Sema::CheckAdditionOperands(ExprResult &LHS, ExprResult &RHS,
11148                                      SourceLocation Loc, BinaryOperatorKind Opc,
11149                                      QualType* CompLHSTy) {
11150   checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false);
11151 
11152   if (LHS.get()->getType()->isVectorType() ||
11153       RHS.get()->getType()->isVectorType()) {
11154     QualType compType =
11155         CheckVectorOperands(LHS, RHS, Loc, CompLHSTy,
11156                             /*AllowBothBool*/ getLangOpts().AltiVec,
11157                             /*AllowBoolConversions*/ getLangOpts().ZVector,
11158                             /*AllowBooleanOperation*/ false,
11159                             /*ReportInvalid*/ true);
11160     if (CompLHSTy) *CompLHSTy = compType;
11161     return compType;
11162   }
11163 
11164   if (LHS.get()->getType()->isVLSTBuiltinType() ||
11165       RHS.get()->getType()->isVLSTBuiltinType()) {
11166     QualType compType =
11167         CheckSizelessVectorOperands(LHS, RHS, Loc, CompLHSTy, ACK_Arithmetic);
11168     if (CompLHSTy)
11169       *CompLHSTy = compType;
11170     return compType;
11171   }
11172 
11173   if (LHS.get()->getType()->isConstantMatrixType() ||
11174       RHS.get()->getType()->isConstantMatrixType()) {
11175     QualType compType =
11176         CheckMatrixElementwiseOperands(LHS, RHS, Loc, CompLHSTy);
11177     if (CompLHSTy)
11178       *CompLHSTy = compType;
11179     return compType;
11180   }
11181 
11182   QualType compType = UsualArithmeticConversions(
11183       LHS, RHS, Loc, CompLHSTy ? ACK_CompAssign : ACK_Arithmetic);
11184   if (LHS.isInvalid() || RHS.isInvalid())
11185     return QualType();
11186 
11187   // Diagnose "string literal" '+' int and string '+' "char literal".
11188   if (Opc == BO_Add) {
11189     diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get());
11190     diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get());
11191   }
11192 
11193   // handle the common case first (both operands are arithmetic).
11194   if (!compType.isNull() && compType->isArithmeticType()) {
11195     if (CompLHSTy) *CompLHSTy = compType;
11196     return compType;
11197   }
11198 
11199   // Type-checking.  Ultimately the pointer's going to be in PExp;
11200   // note that we bias towards the LHS being the pointer.
11201   Expr *PExp = LHS.get(), *IExp = RHS.get();
11202 
11203   bool isObjCPointer;
11204   if (PExp->getType()->isPointerType()) {
11205     isObjCPointer = false;
11206   } else if (PExp->getType()->isObjCObjectPointerType()) {
11207     isObjCPointer = true;
11208   } else {
11209     std::swap(PExp, IExp);
11210     if (PExp->getType()->isPointerType()) {
11211       isObjCPointer = false;
11212     } else if (PExp->getType()->isObjCObjectPointerType()) {
11213       isObjCPointer = true;
11214     } else {
11215       return InvalidOperands(Loc, LHS, RHS);
11216     }
11217   }
11218   assert(PExp->getType()->isAnyPointerType());
11219 
11220   if (!IExp->getType()->isIntegerType())
11221     return InvalidOperands(Loc, LHS, RHS);
11222 
11223   // Adding to a null pointer results in undefined behavior.
11224   if (PExp->IgnoreParenCasts()->isNullPointerConstant(
11225           Context, Expr::NPC_ValueDependentIsNotNull)) {
11226     // In C++ adding zero to a null pointer is defined.
11227     Expr::EvalResult KnownVal;
11228     if (!getLangOpts().CPlusPlus ||
11229         (!IExp->isValueDependent() &&
11230          (!IExp->EvaluateAsInt(KnownVal, Context) ||
11231           KnownVal.Val.getInt() != 0))) {
11232       // Check the conditions to see if this is the 'p = nullptr + n' idiom.
11233       bool IsGNUIdiom = BinaryOperator::isNullPointerArithmeticExtension(
11234           Context, BO_Add, PExp, IExp);
11235       diagnoseArithmeticOnNullPointer(*this, Loc, PExp, IsGNUIdiom);
11236     }
11237   }
11238 
11239   if (!checkArithmeticOpPointerOperand(*this, Loc, PExp))
11240     return QualType();
11241 
11242   if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp))
11243     return QualType();
11244 
11245   // Check array bounds for pointer arithemtic
11246   CheckArrayAccess(PExp, IExp);
11247 
11248   if (CompLHSTy) {
11249     QualType LHSTy = Context.isPromotableBitField(LHS.get());
11250     if (LHSTy.isNull()) {
11251       LHSTy = LHS.get()->getType();
11252       if (LHSTy->isPromotableIntegerType())
11253         LHSTy = Context.getPromotedIntegerType(LHSTy);
11254     }
11255     *CompLHSTy = LHSTy;
11256   }
11257 
11258   return PExp->getType();
11259 }
11260 
11261 // C99 6.5.6
11262 QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS,
11263                                         SourceLocation Loc,
11264                                         QualType* CompLHSTy) {
11265   checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false);
11266 
11267   if (LHS.get()->getType()->isVectorType() ||
11268       RHS.get()->getType()->isVectorType()) {
11269     QualType compType =
11270         CheckVectorOperands(LHS, RHS, Loc, CompLHSTy,
11271                             /*AllowBothBool*/ getLangOpts().AltiVec,
11272                             /*AllowBoolConversions*/ getLangOpts().ZVector,
11273                             /*AllowBooleanOperation*/ false,
11274                             /*ReportInvalid*/ true);
11275     if (CompLHSTy) *CompLHSTy = compType;
11276     return compType;
11277   }
11278 
11279   if (LHS.get()->getType()->isVLSTBuiltinType() ||
11280       RHS.get()->getType()->isVLSTBuiltinType()) {
11281     QualType compType =
11282         CheckSizelessVectorOperands(LHS, RHS, Loc, CompLHSTy, ACK_Arithmetic);
11283     if (CompLHSTy)
11284       *CompLHSTy = compType;
11285     return compType;
11286   }
11287 
11288   if (LHS.get()->getType()->isConstantMatrixType() ||
11289       RHS.get()->getType()->isConstantMatrixType()) {
11290     QualType compType =
11291         CheckMatrixElementwiseOperands(LHS, RHS, Loc, CompLHSTy);
11292     if (CompLHSTy)
11293       *CompLHSTy = compType;
11294     return compType;
11295   }
11296 
11297   QualType compType = UsualArithmeticConversions(
11298       LHS, RHS, Loc, CompLHSTy ? ACK_CompAssign : ACK_Arithmetic);
11299   if (LHS.isInvalid() || RHS.isInvalid())
11300     return QualType();
11301 
11302   // Enforce type constraints: C99 6.5.6p3.
11303 
11304   // Handle the common case first (both operands are arithmetic).
11305   if (!compType.isNull() && compType->isArithmeticType()) {
11306     if (CompLHSTy) *CompLHSTy = compType;
11307     return compType;
11308   }
11309 
11310   // Either ptr - int   or   ptr - ptr.
11311   if (LHS.get()->getType()->isAnyPointerType()) {
11312     QualType lpointee = LHS.get()->getType()->getPointeeType();
11313 
11314     // Diagnose bad cases where we step over interface counts.
11315     if (LHS.get()->getType()->isObjCObjectPointerType() &&
11316         checkArithmeticOnObjCPointer(*this, Loc, LHS.get()))
11317       return QualType();
11318 
11319     // The result type of a pointer-int computation is the pointer type.
11320     if (RHS.get()->getType()->isIntegerType()) {
11321       // Subtracting from a null pointer should produce a warning.
11322       // The last argument to the diagnose call says this doesn't match the
11323       // GNU int-to-pointer idiom.
11324       if (LHS.get()->IgnoreParenCasts()->isNullPointerConstant(Context,
11325                                            Expr::NPC_ValueDependentIsNotNull)) {
11326         // In C++ adding zero to a null pointer is defined.
11327         Expr::EvalResult KnownVal;
11328         if (!getLangOpts().CPlusPlus ||
11329             (!RHS.get()->isValueDependent() &&
11330              (!RHS.get()->EvaluateAsInt(KnownVal, Context) ||
11331               KnownVal.Val.getInt() != 0))) {
11332           diagnoseArithmeticOnNullPointer(*this, Loc, LHS.get(), false);
11333         }
11334       }
11335 
11336       if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get()))
11337         return QualType();
11338 
11339       // Check array bounds for pointer arithemtic
11340       CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr,
11341                        /*AllowOnePastEnd*/true, /*IndexNegated*/true);
11342 
11343       if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
11344       return LHS.get()->getType();
11345     }
11346 
11347     // Handle pointer-pointer subtractions.
11348     if (const PointerType *RHSPTy
11349           = RHS.get()->getType()->getAs<PointerType>()) {
11350       QualType rpointee = RHSPTy->getPointeeType();
11351 
11352       if (getLangOpts().CPlusPlus) {
11353         // Pointee types must be the same: C++ [expr.add]
11354         if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
11355           diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
11356         }
11357       } else {
11358         // Pointee types must be compatible C99 6.5.6p3
11359         if (!Context.typesAreCompatible(
11360                 Context.getCanonicalType(lpointee).getUnqualifiedType(),
11361                 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
11362           diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
11363           return QualType();
11364         }
11365       }
11366 
11367       if (!checkArithmeticBinOpPointerOperands(*this, Loc,
11368                                                LHS.get(), RHS.get()))
11369         return QualType();
11370 
11371       bool LHSIsNullPtr = LHS.get()->IgnoreParenCasts()->isNullPointerConstant(
11372           Context, Expr::NPC_ValueDependentIsNotNull);
11373       bool RHSIsNullPtr = RHS.get()->IgnoreParenCasts()->isNullPointerConstant(
11374           Context, Expr::NPC_ValueDependentIsNotNull);
11375 
11376       // Subtracting nullptr or from nullptr is suspect
11377       if (LHSIsNullPtr)
11378         diagnoseSubtractionOnNullPointer(*this, Loc, LHS.get(), RHSIsNullPtr);
11379       if (RHSIsNullPtr)
11380         diagnoseSubtractionOnNullPointer(*this, Loc, RHS.get(), LHSIsNullPtr);
11381 
11382       // The pointee type may have zero size.  As an extension, a structure or
11383       // union may have zero size or an array may have zero length.  In this
11384       // case subtraction does not make sense.
11385       if (!rpointee->isVoidType() && !rpointee->isFunctionType()) {
11386         CharUnits ElementSize = Context.getTypeSizeInChars(rpointee);
11387         if (ElementSize.isZero()) {
11388           Diag(Loc,diag::warn_sub_ptr_zero_size_types)
11389             << rpointee.getUnqualifiedType()
11390             << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
11391         }
11392       }
11393 
11394       if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
11395       return Context.getPointerDiffType();
11396     }
11397   }
11398 
11399   return InvalidOperands(Loc, LHS, RHS);
11400 }
11401 
11402 static bool isScopedEnumerationType(QualType T) {
11403   if (const EnumType *ET = T->getAs<EnumType>())
11404     return ET->getDecl()->isScoped();
11405   return false;
11406 }
11407 
11408 static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS,
11409                                    SourceLocation Loc, BinaryOperatorKind Opc,
11410                                    QualType LHSType) {
11411   // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined),
11412   // so skip remaining warnings as we don't want to modify values within Sema.
11413   if (S.getLangOpts().OpenCL)
11414     return;
11415 
11416   // Check right/shifter operand
11417   Expr::EvalResult RHSResult;
11418   if (RHS.get()->isValueDependent() ||
11419       !RHS.get()->EvaluateAsInt(RHSResult, S.Context))
11420     return;
11421   llvm::APSInt Right = RHSResult.Val.getInt();
11422 
11423   if (Right.isNegative()) {
11424     S.DiagRuntimeBehavior(Loc, RHS.get(),
11425                           S.PDiag(diag::warn_shift_negative)
11426                             << RHS.get()->getSourceRange());
11427     return;
11428   }
11429 
11430   QualType LHSExprType = LHS.get()->getType();
11431   uint64_t LeftSize = S.Context.getTypeSize(LHSExprType);
11432   if (LHSExprType->isBitIntType())
11433     LeftSize = S.Context.getIntWidth(LHSExprType);
11434   else if (LHSExprType->isFixedPointType()) {
11435     auto FXSema = S.Context.getFixedPointSemantics(LHSExprType);
11436     LeftSize = FXSema.getWidth() - (unsigned)FXSema.hasUnsignedPadding();
11437   }
11438   llvm::APInt LeftBits(Right.getBitWidth(), LeftSize);
11439   if (Right.uge(LeftBits)) {
11440     S.DiagRuntimeBehavior(Loc, RHS.get(),
11441                           S.PDiag(diag::warn_shift_gt_typewidth)
11442                             << RHS.get()->getSourceRange());
11443     return;
11444   }
11445 
11446   // FIXME: We probably need to handle fixed point types specially here.
11447   if (Opc != BO_Shl || LHSExprType->isFixedPointType())
11448     return;
11449 
11450   // When left shifting an ICE which is signed, we can check for overflow which
11451   // according to C++ standards prior to C++2a has undefined behavior
11452   // ([expr.shift] 5.8/2). Unsigned integers have defined behavior modulo one
11453   // more than the maximum value representable in the result type, so never
11454   // warn for those. (FIXME: Unsigned left-shift overflow in a constant
11455   // expression is still probably a bug.)
11456   Expr::EvalResult LHSResult;
11457   if (LHS.get()->isValueDependent() ||
11458       LHSType->hasUnsignedIntegerRepresentation() ||
11459       !LHS.get()->EvaluateAsInt(LHSResult, S.Context))
11460     return;
11461   llvm::APSInt Left = LHSResult.Val.getInt();
11462 
11463   // Don't warn if signed overflow is defined, then all the rest of the
11464   // diagnostics will not be triggered because the behavior is defined.
11465   // Also don't warn in C++20 mode (and newer), as signed left shifts
11466   // always wrap and never overflow.
11467   if (S.getLangOpts().isSignedOverflowDefined() || S.getLangOpts().CPlusPlus20)
11468     return;
11469 
11470   // If LHS does not have a non-negative value then, the
11471   // behavior is undefined before C++2a. Warn about it.
11472   if (Left.isNegative()) {
11473     S.DiagRuntimeBehavior(Loc, LHS.get(),
11474                           S.PDiag(diag::warn_shift_lhs_negative)
11475                             << LHS.get()->getSourceRange());
11476     return;
11477   }
11478 
11479   llvm::APInt ResultBits =
11480       static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits();
11481   if (LeftBits.uge(ResultBits))
11482     return;
11483   llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue());
11484   Result = Result.shl(Right);
11485 
11486   // Print the bit representation of the signed integer as an unsigned
11487   // hexadecimal number.
11488   SmallString<40> HexResult;
11489   Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true);
11490 
11491   // If we are only missing a sign bit, this is less likely to result in actual
11492   // bugs -- if the result is cast back to an unsigned type, it will have the
11493   // expected value. Thus we place this behind a different warning that can be
11494   // turned off separately if needed.
11495   if (LeftBits == ResultBits - 1) {
11496     S.Diag(Loc, diag::warn_shift_result_sets_sign_bit)
11497         << HexResult << LHSType
11498         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
11499     return;
11500   }
11501 
11502   S.Diag(Loc, diag::warn_shift_result_gt_typewidth)
11503     << HexResult.str() << Result.getMinSignedBits() << LHSType
11504     << Left.getBitWidth() << LHS.get()->getSourceRange()
11505     << RHS.get()->getSourceRange();
11506 }
11507 
11508 /// Return the resulting type when a vector is shifted
11509 ///        by a scalar or vector shift amount.
11510 static QualType checkVectorShift(Sema &S, ExprResult &LHS, ExprResult &RHS,
11511                                  SourceLocation Loc, bool IsCompAssign) {
11512   // OpenCL v1.1 s6.3.j says RHS can be a vector only if LHS is a vector.
11513   if ((S.LangOpts.OpenCL || S.LangOpts.ZVector) &&
11514       !LHS.get()->getType()->isVectorType()) {
11515     S.Diag(Loc, diag::err_shift_rhs_only_vector)
11516       << RHS.get()->getType() << LHS.get()->getType()
11517       << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
11518     return QualType();
11519   }
11520 
11521   if (!IsCompAssign) {
11522     LHS = S.UsualUnaryConversions(LHS.get());
11523     if (LHS.isInvalid()) return QualType();
11524   }
11525 
11526   RHS = S.UsualUnaryConversions(RHS.get());
11527   if (RHS.isInvalid()) return QualType();
11528 
11529   QualType LHSType = LHS.get()->getType();
11530   // Note that LHS might be a scalar because the routine calls not only in
11531   // OpenCL case.
11532   const VectorType *LHSVecTy = LHSType->getAs<VectorType>();
11533   QualType LHSEleType = LHSVecTy ? LHSVecTy->getElementType() : LHSType;
11534 
11535   // Note that RHS might not be a vector.
11536   QualType RHSType = RHS.get()->getType();
11537   const VectorType *RHSVecTy = RHSType->getAs<VectorType>();
11538   QualType RHSEleType = RHSVecTy ? RHSVecTy->getElementType() : RHSType;
11539 
11540   // Do not allow shifts for boolean vectors.
11541   if ((LHSVecTy && LHSVecTy->isExtVectorBoolType()) ||
11542       (RHSVecTy && RHSVecTy->isExtVectorBoolType())) {
11543     S.Diag(Loc, diag::err_typecheck_invalid_operands)
11544         << LHS.get()->getType() << RHS.get()->getType()
11545         << LHS.get()->getSourceRange();
11546     return QualType();
11547   }
11548 
11549   // The operands need to be integers.
11550   if (!LHSEleType->isIntegerType()) {
11551     S.Diag(Loc, diag::err_typecheck_expect_int)
11552       << LHS.get()->getType() << LHS.get()->getSourceRange();
11553     return QualType();
11554   }
11555 
11556   if (!RHSEleType->isIntegerType()) {
11557     S.Diag(Loc, diag::err_typecheck_expect_int)
11558       << RHS.get()->getType() << RHS.get()->getSourceRange();
11559     return QualType();
11560   }
11561 
11562   if (!LHSVecTy) {
11563     assert(RHSVecTy);
11564     if (IsCompAssign)
11565       return RHSType;
11566     if (LHSEleType != RHSEleType) {
11567       LHS = S.ImpCastExprToType(LHS.get(),RHSEleType, CK_IntegralCast);
11568       LHSEleType = RHSEleType;
11569     }
11570     QualType VecTy =
11571         S.Context.getExtVectorType(LHSEleType, RHSVecTy->getNumElements());
11572     LHS = S.ImpCastExprToType(LHS.get(), VecTy, CK_VectorSplat);
11573     LHSType = VecTy;
11574   } else if (RHSVecTy) {
11575     // OpenCL v1.1 s6.3.j says that for vector types, the operators
11576     // are applied component-wise. So if RHS is a vector, then ensure
11577     // that the number of elements is the same as LHS...
11578     if (RHSVecTy->getNumElements() != LHSVecTy->getNumElements()) {
11579       S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal)
11580         << LHS.get()->getType() << RHS.get()->getType()
11581         << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
11582       return QualType();
11583     }
11584     if (!S.LangOpts.OpenCL && !S.LangOpts.ZVector) {
11585       const BuiltinType *LHSBT = LHSEleType->getAs<clang::BuiltinType>();
11586       const BuiltinType *RHSBT = RHSEleType->getAs<clang::BuiltinType>();
11587       if (LHSBT != RHSBT &&
11588           S.Context.getTypeSize(LHSBT) != S.Context.getTypeSize(RHSBT)) {
11589         S.Diag(Loc, diag::warn_typecheck_vector_element_sizes_not_equal)
11590             << LHS.get()->getType() << RHS.get()->getType()
11591             << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
11592       }
11593     }
11594   } else {
11595     // ...else expand RHS to match the number of elements in LHS.
11596     QualType VecTy =
11597       S.Context.getExtVectorType(RHSEleType, LHSVecTy->getNumElements());
11598     RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat);
11599   }
11600 
11601   return LHSType;
11602 }
11603 
11604 static QualType checkSizelessVectorShift(Sema &S, ExprResult &LHS,
11605                                          ExprResult &RHS, SourceLocation Loc,
11606                                          bool IsCompAssign) {
11607   if (!IsCompAssign) {
11608     LHS = S.UsualUnaryConversions(LHS.get());
11609     if (LHS.isInvalid())
11610       return QualType();
11611   }
11612 
11613   RHS = S.UsualUnaryConversions(RHS.get());
11614   if (RHS.isInvalid())
11615     return QualType();
11616 
11617   QualType LHSType = LHS.get()->getType();
11618   const BuiltinType *LHSBuiltinTy = LHSType->getAs<BuiltinType>();
11619   QualType LHSEleType = LHSType->isVLSTBuiltinType()
11620                             ? LHSBuiltinTy->getSveEltType(S.getASTContext())
11621                             : LHSType;
11622 
11623   // Note that RHS might not be a vector
11624   QualType RHSType = RHS.get()->getType();
11625   const BuiltinType *RHSBuiltinTy = RHSType->getAs<BuiltinType>();
11626   QualType RHSEleType = RHSType->isVLSTBuiltinType()
11627                             ? RHSBuiltinTy->getSveEltType(S.getASTContext())
11628                             : RHSType;
11629 
11630   if ((LHSBuiltinTy && LHSBuiltinTy->isSVEBool()) ||
11631       (RHSBuiltinTy && RHSBuiltinTy->isSVEBool())) {
11632     S.Diag(Loc, diag::err_typecheck_invalid_operands)
11633         << LHSType << RHSType << LHS.get()->getSourceRange();
11634     return QualType();
11635   }
11636 
11637   if (!LHSEleType->isIntegerType()) {
11638     S.Diag(Loc, diag::err_typecheck_expect_int)
11639         << LHS.get()->getType() << LHS.get()->getSourceRange();
11640     return QualType();
11641   }
11642 
11643   if (!RHSEleType->isIntegerType()) {
11644     S.Diag(Loc, diag::err_typecheck_expect_int)
11645         << RHS.get()->getType() << RHS.get()->getSourceRange();
11646     return QualType();
11647   }
11648 
11649   if (LHSType->isVLSTBuiltinType() && RHSType->isVLSTBuiltinType() &&
11650       (S.Context.getBuiltinVectorTypeInfo(LHSBuiltinTy).EC !=
11651        S.Context.getBuiltinVectorTypeInfo(RHSBuiltinTy).EC)) {
11652     S.Diag(Loc, diag::err_typecheck_invalid_operands)
11653         << LHSType << RHSType << LHS.get()->getSourceRange()
11654         << RHS.get()->getSourceRange();
11655     return QualType();
11656   }
11657 
11658   if (!LHSType->isVLSTBuiltinType()) {
11659     assert(RHSType->isVLSTBuiltinType());
11660     if (IsCompAssign)
11661       return RHSType;
11662     if (LHSEleType != RHSEleType) {
11663       LHS = S.ImpCastExprToType(LHS.get(), RHSEleType, clang::CK_IntegralCast);
11664       LHSEleType = RHSEleType;
11665     }
11666     const llvm::ElementCount VecSize =
11667         S.Context.getBuiltinVectorTypeInfo(RHSBuiltinTy).EC;
11668     QualType VecTy =
11669         S.Context.getScalableVectorType(LHSEleType, VecSize.getKnownMinValue());
11670     LHS = S.ImpCastExprToType(LHS.get(), VecTy, clang::CK_VectorSplat);
11671     LHSType = VecTy;
11672   } else if (RHSBuiltinTy && RHSBuiltinTy->isVLSTBuiltinType()) {
11673     if (S.Context.getTypeSize(RHSBuiltinTy) !=
11674         S.Context.getTypeSize(LHSBuiltinTy)) {
11675       S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal)
11676           << LHSType << RHSType << LHS.get()->getSourceRange()
11677           << RHS.get()->getSourceRange();
11678       return QualType();
11679     }
11680   } else {
11681     const llvm::ElementCount VecSize =
11682         S.Context.getBuiltinVectorTypeInfo(LHSBuiltinTy).EC;
11683     if (LHSEleType != RHSEleType) {
11684       RHS = S.ImpCastExprToType(RHS.get(), LHSEleType, clang::CK_IntegralCast);
11685       RHSEleType = LHSEleType;
11686     }
11687     QualType VecTy =
11688         S.Context.getScalableVectorType(RHSEleType, VecSize.getKnownMinValue());
11689     RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat);
11690   }
11691 
11692   return LHSType;
11693 }
11694 
11695 // C99 6.5.7
11696 QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS,
11697                                   SourceLocation Loc, BinaryOperatorKind Opc,
11698                                   bool IsCompAssign) {
11699   checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false);
11700 
11701   // Vector shifts promote their scalar inputs to vector type.
11702   if (LHS.get()->getType()->isVectorType() ||
11703       RHS.get()->getType()->isVectorType()) {
11704     if (LangOpts.ZVector) {
11705       // The shift operators for the z vector extensions work basically
11706       // like general shifts, except that neither the LHS nor the RHS is
11707       // allowed to be a "vector bool".
11708       if (auto LHSVecType = LHS.get()->getType()->getAs<VectorType>())
11709         if (LHSVecType->getVectorKind() == VectorType::AltiVecBool)
11710           return InvalidOperands(Loc, LHS, RHS);
11711       if (auto RHSVecType = RHS.get()->getType()->getAs<VectorType>())
11712         if (RHSVecType->getVectorKind() == VectorType::AltiVecBool)
11713           return InvalidOperands(Loc, LHS, RHS);
11714     }
11715     return checkVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
11716   }
11717 
11718   if (LHS.get()->getType()->isVLSTBuiltinType() ||
11719       RHS.get()->getType()->isVLSTBuiltinType())
11720     return checkSizelessVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
11721 
11722   // Shifts don't perform usual arithmetic conversions, they just do integer
11723   // promotions on each operand. C99 6.5.7p3
11724 
11725   // For the LHS, do usual unary conversions, but then reset them away
11726   // if this is a compound assignment.
11727   ExprResult OldLHS = LHS;
11728   LHS = UsualUnaryConversions(LHS.get());
11729   if (LHS.isInvalid())
11730     return QualType();
11731   QualType LHSType = LHS.get()->getType();
11732   if (IsCompAssign) LHS = OldLHS;
11733 
11734   // The RHS is simpler.
11735   RHS = UsualUnaryConversions(RHS.get());
11736   if (RHS.isInvalid())
11737     return QualType();
11738   QualType RHSType = RHS.get()->getType();
11739 
11740   // C99 6.5.7p2: Each of the operands shall have integer type.
11741   // Embedded-C 4.1.6.2.2: The LHS may also be fixed-point.
11742   if ((!LHSType->isFixedPointOrIntegerType() &&
11743        !LHSType->hasIntegerRepresentation()) ||
11744       !RHSType->hasIntegerRepresentation())
11745     return InvalidOperands(Loc, LHS, RHS);
11746 
11747   // C++0x: Don't allow scoped enums. FIXME: Use something better than
11748   // hasIntegerRepresentation() above instead of this.
11749   if (isScopedEnumerationType(LHSType) ||
11750       isScopedEnumerationType(RHSType)) {
11751     return InvalidOperands(Loc, LHS, RHS);
11752   }
11753   DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType);
11754 
11755   // "The type of the result is that of the promoted left operand."
11756   return LHSType;
11757 }
11758 
11759 /// Diagnose bad pointer comparisons.
11760 static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc,
11761                                               ExprResult &LHS, ExprResult &RHS,
11762                                               bool IsError) {
11763   S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers
11764                       : diag::ext_typecheck_comparison_of_distinct_pointers)
11765     << LHS.get()->getType() << RHS.get()->getType()
11766     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
11767 }
11768 
11769 /// Returns false if the pointers are converted to a composite type,
11770 /// true otherwise.
11771 static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc,
11772                                            ExprResult &LHS, ExprResult &RHS) {
11773   // C++ [expr.rel]p2:
11774   //   [...] Pointer conversions (4.10) and qualification
11775   //   conversions (4.4) are performed on pointer operands (or on
11776   //   a pointer operand and a null pointer constant) to bring
11777   //   them to their composite pointer type. [...]
11778   //
11779   // C++ [expr.eq]p1 uses the same notion for (in)equality
11780   // comparisons of pointers.
11781 
11782   QualType LHSType = LHS.get()->getType();
11783   QualType RHSType = RHS.get()->getType();
11784   assert(LHSType->isPointerType() || RHSType->isPointerType() ||
11785          LHSType->isMemberPointerType() || RHSType->isMemberPointerType());
11786 
11787   QualType T = S.FindCompositePointerType(Loc, LHS, RHS);
11788   if (T.isNull()) {
11789     if ((LHSType->isAnyPointerType() || LHSType->isMemberPointerType()) &&
11790         (RHSType->isAnyPointerType() || RHSType->isMemberPointerType()))
11791       diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true);
11792     else
11793       S.InvalidOperands(Loc, LHS, RHS);
11794     return true;
11795   }
11796 
11797   return false;
11798 }
11799 
11800 static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc,
11801                                                     ExprResult &LHS,
11802                                                     ExprResult &RHS,
11803                                                     bool IsError) {
11804   S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void
11805                       : diag::ext_typecheck_comparison_of_fptr_to_void)
11806     << LHS.get()->getType() << RHS.get()->getType()
11807     << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
11808 }
11809 
11810 static bool isObjCObjectLiteral(ExprResult &E) {
11811   switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) {
11812   case Stmt::ObjCArrayLiteralClass:
11813   case Stmt::ObjCDictionaryLiteralClass:
11814   case Stmt::ObjCStringLiteralClass:
11815   case Stmt::ObjCBoxedExprClass:
11816     return true;
11817   default:
11818     // Note that ObjCBoolLiteral is NOT an object literal!
11819     return false;
11820   }
11821 }
11822 
11823 static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) {
11824   const ObjCObjectPointerType *Type =
11825     LHS->getType()->getAs<ObjCObjectPointerType>();
11826 
11827   // If this is not actually an Objective-C object, bail out.
11828   if (!Type)
11829     return false;
11830 
11831   // Get the LHS object's interface type.
11832   QualType InterfaceType = Type->getPointeeType();
11833 
11834   // If the RHS isn't an Objective-C object, bail out.
11835   if (!RHS->getType()->isObjCObjectPointerType())
11836     return false;
11837 
11838   // Try to find the -isEqual: method.
11839   Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector();
11840   ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel,
11841                                                       InterfaceType,
11842                                                       /*IsInstance=*/true);
11843   if (!Method) {
11844     if (Type->isObjCIdType()) {
11845       // For 'id', just check the global pool.
11846       Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(),
11847                                                   /*receiverId=*/true);
11848     } else {
11849       // Check protocols.
11850       Method = S.LookupMethodInQualifiedType(IsEqualSel, Type,
11851                                              /*IsInstance=*/true);
11852     }
11853   }
11854 
11855   if (!Method)
11856     return false;
11857 
11858   QualType T = Method->parameters()[0]->getType();
11859   if (!T->isObjCObjectPointerType())
11860     return false;
11861 
11862   QualType R = Method->getReturnType();
11863   if (!R->isScalarType())
11864     return false;
11865 
11866   return true;
11867 }
11868 
11869 Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) {
11870   FromE = FromE->IgnoreParenImpCasts();
11871   switch (FromE->getStmtClass()) {
11872     default:
11873       break;
11874     case Stmt::ObjCStringLiteralClass:
11875       // "string literal"
11876       return LK_String;
11877     case Stmt::ObjCArrayLiteralClass:
11878       // "array literal"
11879       return LK_Array;
11880     case Stmt::ObjCDictionaryLiteralClass:
11881       // "dictionary literal"
11882       return LK_Dictionary;
11883     case Stmt::BlockExprClass:
11884       return LK_Block;
11885     case Stmt::ObjCBoxedExprClass: {
11886       Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens();
11887       switch (Inner->getStmtClass()) {
11888         case Stmt::IntegerLiteralClass:
11889         case Stmt::FloatingLiteralClass:
11890         case Stmt::CharacterLiteralClass:
11891         case Stmt::ObjCBoolLiteralExprClass:
11892         case Stmt::CXXBoolLiteralExprClass:
11893           // "numeric literal"
11894           return LK_Numeric;
11895         case Stmt::ImplicitCastExprClass: {
11896           CastKind CK = cast<CastExpr>(Inner)->getCastKind();
11897           // Boolean literals can be represented by implicit casts.
11898           if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast)
11899             return LK_Numeric;
11900           break;
11901         }
11902         default:
11903           break;
11904       }
11905       return LK_Boxed;
11906     }
11907   }
11908   return LK_None;
11909 }
11910 
11911 static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc,
11912                                           ExprResult &LHS, ExprResult &RHS,
11913                                           BinaryOperator::Opcode Opc){
11914   Expr *Literal;
11915   Expr *Other;
11916   if (isObjCObjectLiteral(LHS)) {
11917     Literal = LHS.get();
11918     Other = RHS.get();
11919   } else {
11920     Literal = RHS.get();
11921     Other = LHS.get();
11922   }
11923 
11924   // Don't warn on comparisons against nil.
11925   Other = Other->IgnoreParenCasts();
11926   if (Other->isNullPointerConstant(S.getASTContext(),
11927                                    Expr::NPC_ValueDependentIsNotNull))
11928     return;
11929 
11930   // This should be kept in sync with warn_objc_literal_comparison.
11931   // LK_String should always be after the other literals, since it has its own
11932   // warning flag.
11933   Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal);
11934   assert(LiteralKind != Sema::LK_Block);
11935   if (LiteralKind == Sema::LK_None) {
11936     llvm_unreachable("Unknown Objective-C object literal kind");
11937   }
11938 
11939   if (LiteralKind == Sema::LK_String)
11940     S.Diag(Loc, diag::warn_objc_string_literal_comparison)
11941       << Literal->getSourceRange();
11942   else
11943     S.Diag(Loc, diag::warn_objc_literal_comparison)
11944       << LiteralKind << Literal->getSourceRange();
11945 
11946   if (BinaryOperator::isEqualityOp(Opc) &&
11947       hasIsEqualMethod(S, LHS.get(), RHS.get())) {
11948     SourceLocation Start = LHS.get()->getBeginLoc();
11949     SourceLocation End = S.getLocForEndOfToken(RHS.get()->getEndLoc());
11950     CharSourceRange OpRange =
11951       CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc));
11952 
11953     S.Diag(Loc, diag::note_objc_literal_comparison_isequal)
11954       << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![")
11955       << FixItHint::CreateReplacement(OpRange, " isEqual:")
11956       << FixItHint::CreateInsertion(End, "]");
11957   }
11958 }
11959 
11960 /// Warns on !x < y, !x & y where !(x < y), !(x & y) was probably intended.
11961 static void diagnoseLogicalNotOnLHSofCheck(Sema &S, ExprResult &LHS,
11962                                            ExprResult &RHS, SourceLocation Loc,
11963                                            BinaryOperatorKind Opc) {
11964   // Check that left hand side is !something.
11965   UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts());
11966   if (!UO || UO->getOpcode() != UO_LNot) return;
11967 
11968   // Only check if the right hand side is non-bool arithmetic type.
11969   if (RHS.get()->isKnownToHaveBooleanValue()) return;
11970 
11971   // Make sure that the something in !something is not bool.
11972   Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts();
11973   if (SubExpr->isKnownToHaveBooleanValue()) return;
11974 
11975   // Emit warning.
11976   bool IsBitwiseOp = Opc == BO_And || Opc == BO_Or || Opc == BO_Xor;
11977   S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_check)
11978       << Loc << IsBitwiseOp;
11979 
11980   // First note suggest !(x < y)
11981   SourceLocation FirstOpen = SubExpr->getBeginLoc();
11982   SourceLocation FirstClose = RHS.get()->getEndLoc();
11983   FirstClose = S.getLocForEndOfToken(FirstClose);
11984   if (FirstClose.isInvalid())
11985     FirstOpen = SourceLocation();
11986   S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix)
11987       << IsBitwiseOp
11988       << FixItHint::CreateInsertion(FirstOpen, "(")
11989       << FixItHint::CreateInsertion(FirstClose, ")");
11990 
11991   // Second note suggests (!x) < y
11992   SourceLocation SecondOpen = LHS.get()->getBeginLoc();
11993   SourceLocation SecondClose = LHS.get()->getEndLoc();
11994   SecondClose = S.getLocForEndOfToken(SecondClose);
11995   if (SecondClose.isInvalid())
11996     SecondOpen = SourceLocation();
11997   S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens)
11998       << FixItHint::CreateInsertion(SecondOpen, "(")
11999       << FixItHint::CreateInsertion(SecondClose, ")");
12000 }
12001 
12002 // Returns true if E refers to a non-weak array.
12003 static bool checkForArray(const Expr *E) {
12004   const ValueDecl *D = nullptr;
12005   if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E)) {
12006     D = DR->getDecl();
12007   } else if (const MemberExpr *Mem = dyn_cast<MemberExpr>(E)) {
12008     if (Mem->isImplicitAccess())
12009       D = Mem->getMemberDecl();
12010   }
12011   if (!D)
12012     return false;
12013   return D->getType()->isArrayType() && !D->isWeak();
12014 }
12015 
12016 /// Diagnose some forms of syntactically-obvious tautological comparison.
12017 static void diagnoseTautologicalComparison(Sema &S, SourceLocation Loc,
12018                                            Expr *LHS, Expr *RHS,
12019                                            BinaryOperatorKind Opc) {
12020   Expr *LHSStripped = LHS->IgnoreParenImpCasts();
12021   Expr *RHSStripped = RHS->IgnoreParenImpCasts();
12022 
12023   QualType LHSType = LHS->getType();
12024   QualType RHSType = RHS->getType();
12025   if (LHSType->hasFloatingRepresentation() ||
12026       (LHSType->isBlockPointerType() && !BinaryOperator::isEqualityOp(Opc)) ||
12027       S.inTemplateInstantiation())
12028     return;
12029 
12030   // Comparisons between two array types are ill-formed for operator<=>, so
12031   // we shouldn't emit any additional warnings about it.
12032   if (Opc == BO_Cmp && LHSType->isArrayType() && RHSType->isArrayType())
12033     return;
12034 
12035   // For non-floating point types, check for self-comparisons of the form
12036   // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
12037   // often indicate logic errors in the program.
12038   //
12039   // NOTE: Don't warn about comparison expressions resulting from macro
12040   // expansion. Also don't warn about comparisons which are only self
12041   // comparisons within a template instantiation. The warnings should catch
12042   // obvious cases in the definition of the template anyways. The idea is to
12043   // warn when the typed comparison operator will always evaluate to the same
12044   // result.
12045 
12046   // Used for indexing into %select in warn_comparison_always
12047   enum {
12048     AlwaysConstant,
12049     AlwaysTrue,
12050     AlwaysFalse,
12051     AlwaysEqual, // std::strong_ordering::equal from operator<=>
12052   };
12053 
12054   // C++2a [depr.array.comp]:
12055   //   Equality and relational comparisons ([expr.eq], [expr.rel]) between two
12056   //   operands of array type are deprecated.
12057   if (S.getLangOpts().CPlusPlus20 && LHSStripped->getType()->isArrayType() &&
12058       RHSStripped->getType()->isArrayType()) {
12059     S.Diag(Loc, diag::warn_depr_array_comparison)
12060         << LHS->getSourceRange() << RHS->getSourceRange()
12061         << LHSStripped->getType() << RHSStripped->getType();
12062     // Carry on to produce the tautological comparison warning, if this
12063     // expression is potentially-evaluated, we can resolve the array to a
12064     // non-weak declaration, and so on.
12065   }
12066 
12067   if (!LHS->getBeginLoc().isMacroID() && !RHS->getBeginLoc().isMacroID()) {
12068     if (Expr::isSameComparisonOperand(LHS, RHS)) {
12069       unsigned Result;
12070       switch (Opc) {
12071       case BO_EQ:
12072       case BO_LE:
12073       case BO_GE:
12074         Result = AlwaysTrue;
12075         break;
12076       case BO_NE:
12077       case BO_LT:
12078       case BO_GT:
12079         Result = AlwaysFalse;
12080         break;
12081       case BO_Cmp:
12082         Result = AlwaysEqual;
12083         break;
12084       default:
12085         Result = AlwaysConstant;
12086         break;
12087       }
12088       S.DiagRuntimeBehavior(Loc, nullptr,
12089                             S.PDiag(diag::warn_comparison_always)
12090                                 << 0 /*self-comparison*/
12091                                 << Result);
12092     } else if (checkForArray(LHSStripped) && checkForArray(RHSStripped)) {
12093       // What is it always going to evaluate to?
12094       unsigned Result;
12095       switch (Opc) {
12096       case BO_EQ: // e.g. array1 == array2
12097         Result = AlwaysFalse;
12098         break;
12099       case BO_NE: // e.g. array1 != array2
12100         Result = AlwaysTrue;
12101         break;
12102       default: // e.g. array1 <= array2
12103         // The best we can say is 'a constant'
12104         Result = AlwaysConstant;
12105         break;
12106       }
12107       S.DiagRuntimeBehavior(Loc, nullptr,
12108                             S.PDiag(diag::warn_comparison_always)
12109                                 << 1 /*array comparison*/
12110                                 << Result);
12111     }
12112   }
12113 
12114   if (isa<CastExpr>(LHSStripped))
12115     LHSStripped = LHSStripped->IgnoreParenCasts();
12116   if (isa<CastExpr>(RHSStripped))
12117     RHSStripped = RHSStripped->IgnoreParenCasts();
12118 
12119   // Warn about comparisons against a string constant (unless the other
12120   // operand is null); the user probably wants string comparison function.
12121   Expr *LiteralString = nullptr;
12122   Expr *LiteralStringStripped = nullptr;
12123   if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
12124       !RHSStripped->isNullPointerConstant(S.Context,
12125                                           Expr::NPC_ValueDependentIsNull)) {
12126     LiteralString = LHS;
12127     LiteralStringStripped = LHSStripped;
12128   } else if ((isa<StringLiteral>(RHSStripped) ||
12129               isa<ObjCEncodeExpr>(RHSStripped)) &&
12130              !LHSStripped->isNullPointerConstant(S.Context,
12131                                           Expr::NPC_ValueDependentIsNull)) {
12132     LiteralString = RHS;
12133     LiteralStringStripped = RHSStripped;
12134   }
12135 
12136   if (LiteralString) {
12137     S.DiagRuntimeBehavior(Loc, nullptr,
12138                           S.PDiag(diag::warn_stringcompare)
12139                               << isa<ObjCEncodeExpr>(LiteralStringStripped)
12140                               << LiteralString->getSourceRange());
12141   }
12142 }
12143 
12144 static ImplicitConversionKind castKindToImplicitConversionKind(CastKind CK) {
12145   switch (CK) {
12146   default: {
12147 #ifndef NDEBUG
12148     llvm::errs() << "unhandled cast kind: " << CastExpr::getCastKindName(CK)
12149                  << "\n";
12150 #endif
12151     llvm_unreachable("unhandled cast kind");
12152   }
12153   case CK_UserDefinedConversion:
12154     return ICK_Identity;
12155   case CK_LValueToRValue:
12156     return ICK_Lvalue_To_Rvalue;
12157   case CK_ArrayToPointerDecay:
12158     return ICK_Array_To_Pointer;
12159   case CK_FunctionToPointerDecay:
12160     return ICK_Function_To_Pointer;
12161   case CK_IntegralCast:
12162     return ICK_Integral_Conversion;
12163   case CK_FloatingCast:
12164     return ICK_Floating_Conversion;
12165   case CK_IntegralToFloating:
12166   case CK_FloatingToIntegral:
12167     return ICK_Floating_Integral;
12168   case CK_IntegralComplexCast:
12169   case CK_FloatingComplexCast:
12170   case CK_FloatingComplexToIntegralComplex:
12171   case CK_IntegralComplexToFloatingComplex:
12172     return ICK_Complex_Conversion;
12173   case CK_FloatingComplexToReal:
12174   case CK_FloatingRealToComplex:
12175   case CK_IntegralComplexToReal:
12176   case CK_IntegralRealToComplex:
12177     return ICK_Complex_Real;
12178   }
12179 }
12180 
12181 static bool checkThreeWayNarrowingConversion(Sema &S, QualType ToType, Expr *E,
12182                                              QualType FromType,
12183                                              SourceLocation Loc) {
12184   // Check for a narrowing implicit conversion.
12185   StandardConversionSequence SCS;
12186   SCS.setAsIdentityConversion();
12187   SCS.setToType(0, FromType);
12188   SCS.setToType(1, ToType);
12189   if (const auto *ICE = dyn_cast<ImplicitCastExpr>(E))
12190     SCS.Second = castKindToImplicitConversionKind(ICE->getCastKind());
12191 
12192   APValue PreNarrowingValue;
12193   QualType PreNarrowingType;
12194   switch (SCS.getNarrowingKind(S.Context, E, PreNarrowingValue,
12195                                PreNarrowingType,
12196                                /*IgnoreFloatToIntegralConversion*/ true)) {
12197   case NK_Dependent_Narrowing:
12198     // Implicit conversion to a narrower type, but the expression is
12199     // value-dependent so we can't tell whether it's actually narrowing.
12200   case NK_Not_Narrowing:
12201     return false;
12202 
12203   case NK_Constant_Narrowing:
12204     // Implicit conversion to a narrower type, and the value is not a constant
12205     // expression.
12206     S.Diag(E->getBeginLoc(), diag::err_spaceship_argument_narrowing)
12207         << /*Constant*/ 1
12208         << PreNarrowingValue.getAsString(S.Context, PreNarrowingType) << ToType;
12209     return true;
12210 
12211   case NK_Variable_Narrowing:
12212     // Implicit conversion to a narrower type, and the value is not a constant
12213     // expression.
12214   case NK_Type_Narrowing:
12215     S.Diag(E->getBeginLoc(), diag::err_spaceship_argument_narrowing)
12216         << /*Constant*/ 0 << FromType << ToType;
12217     // TODO: It's not a constant expression, but what if the user intended it
12218     // to be? Can we produce notes to help them figure out why it isn't?
12219     return true;
12220   }
12221   llvm_unreachable("unhandled case in switch");
12222 }
12223 
12224 static QualType checkArithmeticOrEnumeralThreeWayCompare(Sema &S,
12225                                                          ExprResult &LHS,
12226                                                          ExprResult &RHS,
12227                                                          SourceLocation Loc) {
12228   QualType LHSType = LHS.get()->getType();
12229   QualType RHSType = RHS.get()->getType();
12230   // Dig out the original argument type and expression before implicit casts
12231   // were applied. These are the types/expressions we need to check the
12232   // [expr.spaceship] requirements against.
12233   ExprResult LHSStripped = LHS.get()->IgnoreParenImpCasts();
12234   ExprResult RHSStripped = RHS.get()->IgnoreParenImpCasts();
12235   QualType LHSStrippedType = LHSStripped.get()->getType();
12236   QualType RHSStrippedType = RHSStripped.get()->getType();
12237 
12238   // C++2a [expr.spaceship]p3: If one of the operands is of type bool and the
12239   // other is not, the program is ill-formed.
12240   if (LHSStrippedType->isBooleanType() != RHSStrippedType->isBooleanType()) {
12241     S.InvalidOperands(Loc, LHSStripped, RHSStripped);
12242     return QualType();
12243   }
12244 
12245   // FIXME: Consider combining this with checkEnumArithmeticConversions.
12246   int NumEnumArgs = (int)LHSStrippedType->isEnumeralType() +
12247                     RHSStrippedType->isEnumeralType();
12248   if (NumEnumArgs == 1) {
12249     bool LHSIsEnum = LHSStrippedType->isEnumeralType();
12250     QualType OtherTy = LHSIsEnum ? RHSStrippedType : LHSStrippedType;
12251     if (OtherTy->hasFloatingRepresentation()) {
12252       S.InvalidOperands(Loc, LHSStripped, RHSStripped);
12253       return QualType();
12254     }
12255   }
12256   if (NumEnumArgs == 2) {
12257     // C++2a [expr.spaceship]p5: If both operands have the same enumeration
12258     // type E, the operator yields the result of converting the operands
12259     // to the underlying type of E and applying <=> to the converted operands.
12260     if (!S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) {
12261       S.InvalidOperands(Loc, LHS, RHS);
12262       return QualType();
12263     }
12264     QualType IntType =
12265         LHSStrippedType->castAs<EnumType>()->getDecl()->getIntegerType();
12266     assert(IntType->isArithmeticType());
12267 
12268     // We can't use `CK_IntegralCast` when the underlying type is 'bool', so we
12269     // promote the boolean type, and all other promotable integer types, to
12270     // avoid this.
12271     if (IntType->isPromotableIntegerType())
12272       IntType = S.Context.getPromotedIntegerType(IntType);
12273 
12274     LHS = S.ImpCastExprToType(LHS.get(), IntType, CK_IntegralCast);
12275     RHS = S.ImpCastExprToType(RHS.get(), IntType, CK_IntegralCast);
12276     LHSType = RHSType = IntType;
12277   }
12278 
12279   // C++2a [expr.spaceship]p4: If both operands have arithmetic types, the
12280   // usual arithmetic conversions are applied to the operands.
12281   QualType Type =
12282       S.UsualArithmeticConversions(LHS, RHS, Loc, Sema::ACK_Comparison);
12283   if (LHS.isInvalid() || RHS.isInvalid())
12284     return QualType();
12285   if (Type.isNull())
12286     return S.InvalidOperands(Loc, LHS, RHS);
12287 
12288   Optional<ComparisonCategoryType> CCT =
12289       getComparisonCategoryForBuiltinCmp(Type);
12290   if (!CCT)
12291     return S.InvalidOperands(Loc, LHS, RHS);
12292 
12293   bool HasNarrowing = checkThreeWayNarrowingConversion(
12294       S, Type, LHS.get(), LHSType, LHS.get()->getBeginLoc());
12295   HasNarrowing |= checkThreeWayNarrowingConversion(S, Type, RHS.get(), RHSType,
12296                                                    RHS.get()->getBeginLoc());
12297   if (HasNarrowing)
12298     return QualType();
12299 
12300   assert(!Type.isNull() && "composite type for <=> has not been set");
12301 
12302   return S.CheckComparisonCategoryType(
12303       *CCT, Loc, Sema::ComparisonCategoryUsage::OperatorInExpression);
12304 }
12305 
12306 static QualType checkArithmeticOrEnumeralCompare(Sema &S, ExprResult &LHS,
12307                                                  ExprResult &RHS,
12308                                                  SourceLocation Loc,
12309                                                  BinaryOperatorKind Opc) {
12310   if (Opc == BO_Cmp)
12311     return checkArithmeticOrEnumeralThreeWayCompare(S, LHS, RHS, Loc);
12312 
12313   // C99 6.5.8p3 / C99 6.5.9p4
12314   QualType Type =
12315       S.UsualArithmeticConversions(LHS, RHS, Loc, Sema::ACK_Comparison);
12316   if (LHS.isInvalid() || RHS.isInvalid())
12317     return QualType();
12318   if (Type.isNull())
12319     return S.InvalidOperands(Loc, LHS, RHS);
12320   assert(Type->isArithmeticType() || Type->isEnumeralType());
12321 
12322   if (Type->isAnyComplexType() && BinaryOperator::isRelationalOp(Opc))
12323     return S.InvalidOperands(Loc, LHS, RHS);
12324 
12325   // Check for comparisons of floating point operands using != and ==.
12326   if (Type->hasFloatingRepresentation() && BinaryOperator::isEqualityOp(Opc))
12327     S.CheckFloatComparison(Loc, LHS.get(), RHS.get(), Opc);
12328 
12329   // The result of comparisons is 'bool' in C++, 'int' in C.
12330   return S.Context.getLogicalOperationType();
12331 }
12332 
12333 void Sema::CheckPtrComparisonWithNullChar(ExprResult &E, ExprResult &NullE) {
12334   if (!NullE.get()->getType()->isAnyPointerType())
12335     return;
12336   int NullValue = PP.isMacroDefined("NULL") ? 0 : 1;
12337   if (!E.get()->getType()->isAnyPointerType() &&
12338       E.get()->isNullPointerConstant(Context,
12339                                      Expr::NPC_ValueDependentIsNotNull) ==
12340         Expr::NPCK_ZeroExpression) {
12341     if (const auto *CL = dyn_cast<CharacterLiteral>(E.get())) {
12342       if (CL->getValue() == 0)
12343         Diag(E.get()->getExprLoc(), diag::warn_pointer_compare)
12344             << NullValue
12345             << FixItHint::CreateReplacement(E.get()->getExprLoc(),
12346                                             NullValue ? "NULL" : "(void *)0");
12347     } else if (const auto *CE = dyn_cast<CStyleCastExpr>(E.get())) {
12348         TypeSourceInfo *TI = CE->getTypeInfoAsWritten();
12349         QualType T = Context.getCanonicalType(TI->getType()).getUnqualifiedType();
12350         if (T == Context.CharTy)
12351           Diag(E.get()->getExprLoc(), diag::warn_pointer_compare)
12352               << NullValue
12353               << FixItHint::CreateReplacement(E.get()->getExprLoc(),
12354                                               NullValue ? "NULL" : "(void *)0");
12355       }
12356   }
12357 }
12358 
12359 // C99 6.5.8, C++ [expr.rel]
12360 QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS,
12361                                     SourceLocation Loc,
12362                                     BinaryOperatorKind Opc) {
12363   bool IsRelational = BinaryOperator::isRelationalOp(Opc);
12364   bool IsThreeWay = Opc == BO_Cmp;
12365   bool IsOrdered = IsRelational || IsThreeWay;
12366   auto IsAnyPointerType = [](ExprResult E) {
12367     QualType Ty = E.get()->getType();
12368     return Ty->isPointerType() || Ty->isMemberPointerType();
12369   };
12370 
12371   // C++2a [expr.spaceship]p6: If at least one of the operands is of pointer
12372   // type, array-to-pointer, ..., conversions are performed on both operands to
12373   // bring them to their composite type.
12374   // Otherwise, all comparisons expect an rvalue, so convert to rvalue before
12375   // any type-related checks.
12376   if (!IsThreeWay || IsAnyPointerType(LHS) || IsAnyPointerType(RHS)) {
12377     LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
12378     if (LHS.isInvalid())
12379       return QualType();
12380     RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
12381     if (RHS.isInvalid())
12382       return QualType();
12383   } else {
12384     LHS = DefaultLvalueConversion(LHS.get());
12385     if (LHS.isInvalid())
12386       return QualType();
12387     RHS = DefaultLvalueConversion(RHS.get());
12388     if (RHS.isInvalid())
12389       return QualType();
12390   }
12391 
12392   checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/true);
12393   if (!getLangOpts().CPlusPlus && BinaryOperator::isEqualityOp(Opc)) {
12394     CheckPtrComparisonWithNullChar(LHS, RHS);
12395     CheckPtrComparisonWithNullChar(RHS, LHS);
12396   }
12397 
12398   // Handle vector comparisons separately.
12399   if (LHS.get()->getType()->isVectorType() ||
12400       RHS.get()->getType()->isVectorType())
12401     return CheckVectorCompareOperands(LHS, RHS, Loc, Opc);
12402 
12403   if (LHS.get()->getType()->isVLSTBuiltinType() ||
12404       RHS.get()->getType()->isVLSTBuiltinType())
12405     return CheckSizelessVectorCompareOperands(LHS, RHS, Loc, Opc);
12406 
12407   diagnoseLogicalNotOnLHSofCheck(*this, LHS, RHS, Loc, Opc);
12408   diagnoseTautologicalComparison(*this, Loc, LHS.get(), RHS.get(), Opc);
12409 
12410   QualType LHSType = LHS.get()->getType();
12411   QualType RHSType = RHS.get()->getType();
12412   if ((LHSType->isArithmeticType() || LHSType->isEnumeralType()) &&
12413       (RHSType->isArithmeticType() || RHSType->isEnumeralType()))
12414     return checkArithmeticOrEnumeralCompare(*this, LHS, RHS, Loc, Opc);
12415 
12416   const Expr::NullPointerConstantKind LHSNullKind =
12417       LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
12418   const Expr::NullPointerConstantKind RHSNullKind =
12419       RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
12420   bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull;
12421   bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull;
12422 
12423   auto computeResultTy = [&]() {
12424     if (Opc != BO_Cmp)
12425       return Context.getLogicalOperationType();
12426     assert(getLangOpts().CPlusPlus);
12427     assert(Context.hasSameType(LHS.get()->getType(), RHS.get()->getType()));
12428 
12429     QualType CompositeTy = LHS.get()->getType();
12430     assert(!CompositeTy->isReferenceType());
12431 
12432     Optional<ComparisonCategoryType> CCT =
12433         getComparisonCategoryForBuiltinCmp(CompositeTy);
12434     if (!CCT)
12435       return InvalidOperands(Loc, LHS, RHS);
12436 
12437     if (CompositeTy->isPointerType() && LHSIsNull != RHSIsNull) {
12438       // P0946R0: Comparisons between a null pointer constant and an object
12439       // pointer result in std::strong_equality, which is ill-formed under
12440       // P1959R0.
12441       Diag(Loc, diag::err_typecheck_three_way_comparison_of_pointer_and_zero)
12442           << (LHSIsNull ? LHS.get()->getSourceRange()
12443                         : RHS.get()->getSourceRange());
12444       return QualType();
12445     }
12446 
12447     return CheckComparisonCategoryType(
12448         *CCT, Loc, ComparisonCategoryUsage::OperatorInExpression);
12449   };
12450 
12451   if (!IsOrdered && LHSIsNull != RHSIsNull) {
12452     bool IsEquality = Opc == BO_EQ;
12453     if (RHSIsNull)
12454       DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality,
12455                                    RHS.get()->getSourceRange());
12456     else
12457       DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality,
12458                                    LHS.get()->getSourceRange());
12459   }
12460 
12461   if (IsOrdered && LHSType->isFunctionPointerType() &&
12462       RHSType->isFunctionPointerType()) {
12463     // Valid unless a relational comparison of function pointers
12464     bool IsError = Opc == BO_Cmp;
12465     auto DiagID =
12466         IsError ? diag::err_typecheck_ordered_comparison_of_function_pointers
12467         : getLangOpts().CPlusPlus
12468             ? diag::warn_typecheck_ordered_comparison_of_function_pointers
12469             : diag::ext_typecheck_ordered_comparison_of_function_pointers;
12470     Diag(Loc, DiagID) << LHSType << RHSType << LHS.get()->getSourceRange()
12471                       << RHS.get()->getSourceRange();
12472     if (IsError)
12473       return QualType();
12474   }
12475 
12476   if ((LHSType->isIntegerType() && !LHSIsNull) ||
12477       (RHSType->isIntegerType() && !RHSIsNull)) {
12478     // Skip normal pointer conversion checks in this case; we have better
12479     // diagnostics for this below.
12480   } else if (getLangOpts().CPlusPlus) {
12481     // Equality comparison of a function pointer to a void pointer is invalid,
12482     // but we allow it as an extension.
12483     // FIXME: If we really want to allow this, should it be part of composite
12484     // pointer type computation so it works in conditionals too?
12485     if (!IsOrdered &&
12486         ((LHSType->isFunctionPointerType() && RHSType->isVoidPointerType()) ||
12487          (RHSType->isFunctionPointerType() && LHSType->isVoidPointerType()))) {
12488       // This is a gcc extension compatibility comparison.
12489       // In a SFINAE context, we treat this as a hard error to maintain
12490       // conformance with the C++ standard.
12491       diagnoseFunctionPointerToVoidComparison(
12492           *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext());
12493 
12494       if (isSFINAEContext())
12495         return QualType();
12496 
12497       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
12498       return computeResultTy();
12499     }
12500 
12501     // C++ [expr.eq]p2:
12502     //   If at least one operand is a pointer [...] bring them to their
12503     //   composite pointer type.
12504     // C++ [expr.spaceship]p6
12505     //  If at least one of the operands is of pointer type, [...] bring them
12506     //  to their composite pointer type.
12507     // C++ [expr.rel]p2:
12508     //   If both operands are pointers, [...] bring them to their composite
12509     //   pointer type.
12510     // For <=>, the only valid non-pointer types are arrays and functions, and
12511     // we already decayed those, so this is really the same as the relational
12512     // comparison rule.
12513     if ((int)LHSType->isPointerType() + (int)RHSType->isPointerType() >=
12514             (IsOrdered ? 2 : 1) &&
12515         (!LangOpts.ObjCAutoRefCount || !(LHSType->isObjCObjectPointerType() ||
12516                                          RHSType->isObjCObjectPointerType()))) {
12517       if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
12518         return QualType();
12519       return computeResultTy();
12520     }
12521   } else if (LHSType->isPointerType() &&
12522              RHSType->isPointerType()) { // C99 6.5.8p2
12523     // All of the following pointer-related warnings are GCC extensions, except
12524     // when handling null pointer constants.
12525     QualType LCanPointeeTy =
12526       LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
12527     QualType RCanPointeeTy =
12528       RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
12529 
12530     // C99 6.5.9p2 and C99 6.5.8p2
12531     if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
12532                                    RCanPointeeTy.getUnqualifiedType())) {
12533       if (IsRelational) {
12534         // Pointers both need to point to complete or incomplete types
12535         if ((LCanPointeeTy->isIncompleteType() !=
12536              RCanPointeeTy->isIncompleteType()) &&
12537             !getLangOpts().C11) {
12538           Diag(Loc, diag::ext_typecheck_compare_complete_incomplete_pointers)
12539               << LHS.get()->getSourceRange() << RHS.get()->getSourceRange()
12540               << LHSType << RHSType << LCanPointeeTy->isIncompleteType()
12541               << RCanPointeeTy->isIncompleteType();
12542         }
12543       }
12544     } else if (!IsRelational &&
12545                (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
12546       // Valid unless comparison between non-null pointer and function pointer
12547       if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
12548           && !LHSIsNull && !RHSIsNull)
12549         diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS,
12550                                                 /*isError*/false);
12551     } else {
12552       // Invalid
12553       diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false);
12554     }
12555     if (LCanPointeeTy != RCanPointeeTy) {
12556       // Treat NULL constant as a special case in OpenCL.
12557       if (getLangOpts().OpenCL && !LHSIsNull && !RHSIsNull) {
12558         if (!LCanPointeeTy.isAddressSpaceOverlapping(RCanPointeeTy)) {
12559           Diag(Loc,
12560                diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
12561               << LHSType << RHSType << 0 /* comparison */
12562               << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
12563         }
12564       }
12565       LangAS AddrSpaceL = LCanPointeeTy.getAddressSpace();
12566       LangAS AddrSpaceR = RCanPointeeTy.getAddressSpace();
12567       CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion
12568                                                : CK_BitCast;
12569       if (LHSIsNull && !RHSIsNull)
12570         LHS = ImpCastExprToType(LHS.get(), RHSType, Kind);
12571       else
12572         RHS = ImpCastExprToType(RHS.get(), LHSType, Kind);
12573     }
12574     return computeResultTy();
12575   }
12576 
12577   if (getLangOpts().CPlusPlus) {
12578     // C++ [expr.eq]p4:
12579     //   Two operands of type std::nullptr_t or one operand of type
12580     //   std::nullptr_t and the other a null pointer constant compare equal.
12581     if (!IsOrdered && LHSIsNull && RHSIsNull) {
12582       if (LHSType->isNullPtrType()) {
12583         RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
12584         return computeResultTy();
12585       }
12586       if (RHSType->isNullPtrType()) {
12587         LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
12588         return computeResultTy();
12589       }
12590     }
12591 
12592     // Comparison of Objective-C pointers and block pointers against nullptr_t.
12593     // These aren't covered by the composite pointer type rules.
12594     if (!IsOrdered && RHSType->isNullPtrType() &&
12595         (LHSType->isObjCObjectPointerType() || LHSType->isBlockPointerType())) {
12596       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
12597       return computeResultTy();
12598     }
12599     if (!IsOrdered && LHSType->isNullPtrType() &&
12600         (RHSType->isObjCObjectPointerType() || RHSType->isBlockPointerType())) {
12601       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
12602       return computeResultTy();
12603     }
12604 
12605     if (IsRelational &&
12606         ((LHSType->isNullPtrType() && RHSType->isPointerType()) ||
12607          (RHSType->isNullPtrType() && LHSType->isPointerType()))) {
12608       // HACK: Relational comparison of nullptr_t against a pointer type is
12609       // invalid per DR583, but we allow it within std::less<> and friends,
12610       // since otherwise common uses of it break.
12611       // FIXME: Consider removing this hack once LWG fixes std::less<> and
12612       // friends to have std::nullptr_t overload candidates.
12613       DeclContext *DC = CurContext;
12614       if (isa<FunctionDecl>(DC))
12615         DC = DC->getParent();
12616       if (auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(DC)) {
12617         if (CTSD->isInStdNamespace() &&
12618             llvm::StringSwitch<bool>(CTSD->getName())
12619                 .Cases("less", "less_equal", "greater", "greater_equal", true)
12620                 .Default(false)) {
12621           if (RHSType->isNullPtrType())
12622             RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
12623           else
12624             LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
12625           return computeResultTy();
12626         }
12627       }
12628     }
12629 
12630     // C++ [expr.eq]p2:
12631     //   If at least one operand is a pointer to member, [...] bring them to
12632     //   their composite pointer type.
12633     if (!IsOrdered &&
12634         (LHSType->isMemberPointerType() || RHSType->isMemberPointerType())) {
12635       if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
12636         return QualType();
12637       else
12638         return computeResultTy();
12639     }
12640   }
12641 
12642   // Handle block pointer types.
12643   if (!IsOrdered && LHSType->isBlockPointerType() &&
12644       RHSType->isBlockPointerType()) {
12645     QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType();
12646     QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType();
12647 
12648     if (!LHSIsNull && !RHSIsNull &&
12649         !Context.typesAreCompatible(lpointee, rpointee)) {
12650       Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
12651         << LHSType << RHSType << LHS.get()->getSourceRange()
12652         << RHS.get()->getSourceRange();
12653     }
12654     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
12655     return computeResultTy();
12656   }
12657 
12658   // Allow block pointers to be compared with null pointer constants.
12659   if (!IsOrdered
12660       && ((LHSType->isBlockPointerType() && RHSType->isPointerType())
12661           || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) {
12662     if (!LHSIsNull && !RHSIsNull) {
12663       if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>()
12664              ->getPointeeType()->isVoidType())
12665             || (LHSType->isPointerType() && LHSType->castAs<PointerType>()
12666                 ->getPointeeType()->isVoidType())))
12667         Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
12668           << LHSType << RHSType << LHS.get()->getSourceRange()
12669           << RHS.get()->getSourceRange();
12670     }
12671     if (LHSIsNull && !RHSIsNull)
12672       LHS = ImpCastExprToType(LHS.get(), RHSType,
12673                               RHSType->isPointerType() ? CK_BitCast
12674                                 : CK_AnyPointerToBlockPointerCast);
12675     else
12676       RHS = ImpCastExprToType(RHS.get(), LHSType,
12677                               LHSType->isPointerType() ? CK_BitCast
12678                                 : CK_AnyPointerToBlockPointerCast);
12679     return computeResultTy();
12680   }
12681 
12682   if (LHSType->isObjCObjectPointerType() ||
12683       RHSType->isObjCObjectPointerType()) {
12684     const PointerType *LPT = LHSType->getAs<PointerType>();
12685     const PointerType *RPT = RHSType->getAs<PointerType>();
12686     if (LPT || RPT) {
12687       bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false;
12688       bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false;
12689 
12690       if (!LPtrToVoid && !RPtrToVoid &&
12691           !Context.typesAreCompatible(LHSType, RHSType)) {
12692         diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
12693                                           /*isError*/false);
12694       }
12695       // FIXME: If LPtrToVoid, we should presumably convert the LHS rather than
12696       // the RHS, but we have test coverage for this behavior.
12697       // FIXME: Consider using convertPointersToCompositeType in C++.
12698       if (LHSIsNull && !RHSIsNull) {
12699         Expr *E = LHS.get();
12700         if (getLangOpts().ObjCAutoRefCount)
12701           CheckObjCConversion(SourceRange(), RHSType, E,
12702                               CCK_ImplicitConversion);
12703         LHS = ImpCastExprToType(E, RHSType,
12704                                 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
12705       }
12706       else {
12707         Expr *E = RHS.get();
12708         if (getLangOpts().ObjCAutoRefCount)
12709           CheckObjCConversion(SourceRange(), LHSType, E, CCK_ImplicitConversion,
12710                               /*Diagnose=*/true,
12711                               /*DiagnoseCFAudited=*/false, Opc);
12712         RHS = ImpCastExprToType(E, LHSType,
12713                                 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
12714       }
12715       return computeResultTy();
12716     }
12717     if (LHSType->isObjCObjectPointerType() &&
12718         RHSType->isObjCObjectPointerType()) {
12719       if (!Context.areComparableObjCPointerTypes(LHSType, RHSType))
12720         diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
12721                                           /*isError*/false);
12722       if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS))
12723         diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc);
12724 
12725       if (LHSIsNull && !RHSIsNull)
12726         LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
12727       else
12728         RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
12729       return computeResultTy();
12730     }
12731 
12732     if (!IsOrdered && LHSType->isBlockPointerType() &&
12733         RHSType->isBlockCompatibleObjCPointerType(Context)) {
12734       LHS = ImpCastExprToType(LHS.get(), RHSType,
12735                               CK_BlockPointerToObjCPointerCast);
12736       return computeResultTy();
12737     } else if (!IsOrdered &&
12738                LHSType->isBlockCompatibleObjCPointerType(Context) &&
12739                RHSType->isBlockPointerType()) {
12740       RHS = ImpCastExprToType(RHS.get(), LHSType,
12741                               CK_BlockPointerToObjCPointerCast);
12742       return computeResultTy();
12743     }
12744   }
12745   if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) ||
12746       (LHSType->isIntegerType() && RHSType->isAnyPointerType())) {
12747     unsigned DiagID = 0;
12748     bool isError = false;
12749     if (LangOpts.DebuggerSupport) {
12750       // Under a debugger, allow the comparison of pointers to integers,
12751       // since users tend to want to compare addresses.
12752     } else if ((LHSIsNull && LHSType->isIntegerType()) ||
12753                (RHSIsNull && RHSType->isIntegerType())) {
12754       if (IsOrdered) {
12755         isError = getLangOpts().CPlusPlus;
12756         DiagID =
12757           isError ? diag::err_typecheck_ordered_comparison_of_pointer_and_zero
12758                   : diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
12759       }
12760     } else if (getLangOpts().CPlusPlus) {
12761       DiagID = diag::err_typecheck_comparison_of_pointer_integer;
12762       isError = true;
12763     } else if (IsOrdered)
12764       DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
12765     else
12766       DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
12767 
12768     if (DiagID) {
12769       Diag(Loc, DiagID)
12770         << LHSType << RHSType << LHS.get()->getSourceRange()
12771         << RHS.get()->getSourceRange();
12772       if (isError)
12773         return QualType();
12774     }
12775 
12776     if (LHSType->isIntegerType())
12777       LHS = ImpCastExprToType(LHS.get(), RHSType,
12778                         LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
12779     else
12780       RHS = ImpCastExprToType(RHS.get(), LHSType,
12781                         RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
12782     return computeResultTy();
12783   }
12784 
12785   // Handle block pointers.
12786   if (!IsOrdered && RHSIsNull
12787       && LHSType->isBlockPointerType() && RHSType->isIntegerType()) {
12788     RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
12789     return computeResultTy();
12790   }
12791   if (!IsOrdered && LHSIsNull
12792       && LHSType->isIntegerType() && RHSType->isBlockPointerType()) {
12793     LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
12794     return computeResultTy();
12795   }
12796 
12797   if (getLangOpts().getOpenCLCompatibleVersion() >= 200) {
12798     if (LHSType->isClkEventT() && RHSType->isClkEventT()) {
12799       return computeResultTy();
12800     }
12801 
12802     if (LHSType->isQueueT() && RHSType->isQueueT()) {
12803       return computeResultTy();
12804     }
12805 
12806     if (LHSIsNull && RHSType->isQueueT()) {
12807       LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
12808       return computeResultTy();
12809     }
12810 
12811     if (LHSType->isQueueT() && RHSIsNull) {
12812       RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
12813       return computeResultTy();
12814     }
12815   }
12816 
12817   return InvalidOperands(Loc, LHS, RHS);
12818 }
12819 
12820 // Return a signed ext_vector_type that is of identical size and number of
12821 // elements. For floating point vectors, return an integer type of identical
12822 // size and number of elements. In the non ext_vector_type case, search from
12823 // the largest type to the smallest type to avoid cases where long long == long,
12824 // where long gets picked over long long.
12825 QualType Sema::GetSignedVectorType(QualType V) {
12826   const VectorType *VTy = V->castAs<VectorType>();
12827   unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
12828 
12829   if (isa<ExtVectorType>(VTy)) {
12830     if (VTy->isExtVectorBoolType())
12831       return Context.getExtVectorType(Context.BoolTy, VTy->getNumElements());
12832     if (TypeSize == Context.getTypeSize(Context.CharTy))
12833       return Context.getExtVectorType(Context.CharTy, VTy->getNumElements());
12834     if (TypeSize == Context.getTypeSize(Context.ShortTy))
12835       return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements());
12836     if (TypeSize == Context.getTypeSize(Context.IntTy))
12837       return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
12838     if (TypeSize == Context.getTypeSize(Context.Int128Ty))
12839       return Context.getExtVectorType(Context.Int128Ty, VTy->getNumElements());
12840     if (TypeSize == Context.getTypeSize(Context.LongTy))
12841       return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
12842     assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
12843            "Unhandled vector element size in vector compare");
12844     return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
12845   }
12846 
12847   if (TypeSize == Context.getTypeSize(Context.Int128Ty))
12848     return Context.getVectorType(Context.Int128Ty, VTy->getNumElements(),
12849                                  VectorType::GenericVector);
12850   if (TypeSize == Context.getTypeSize(Context.LongLongTy))
12851     return Context.getVectorType(Context.LongLongTy, VTy->getNumElements(),
12852                                  VectorType::GenericVector);
12853   if (TypeSize == Context.getTypeSize(Context.LongTy))
12854     return Context.getVectorType(Context.LongTy, VTy->getNumElements(),
12855                                  VectorType::GenericVector);
12856   if (TypeSize == Context.getTypeSize(Context.IntTy))
12857     return Context.getVectorType(Context.IntTy, VTy->getNumElements(),
12858                                  VectorType::GenericVector);
12859   if (TypeSize == Context.getTypeSize(Context.ShortTy))
12860     return Context.getVectorType(Context.ShortTy, VTy->getNumElements(),
12861                                  VectorType::GenericVector);
12862   assert(TypeSize == Context.getTypeSize(Context.CharTy) &&
12863          "Unhandled vector element size in vector compare");
12864   return Context.getVectorType(Context.CharTy, VTy->getNumElements(),
12865                                VectorType::GenericVector);
12866 }
12867 
12868 QualType Sema::GetSignedSizelessVectorType(QualType V) {
12869   const BuiltinType *VTy = V->castAs<BuiltinType>();
12870   assert(VTy->isSizelessBuiltinType() && "expected sizeless type");
12871 
12872   const QualType ETy = V->getSveEltType(Context);
12873   const auto TypeSize = Context.getTypeSize(ETy);
12874 
12875   const QualType IntTy = Context.getIntTypeForBitwidth(TypeSize, true);
12876   const llvm::ElementCount VecSize = Context.getBuiltinVectorTypeInfo(VTy).EC;
12877   return Context.getScalableVectorType(IntTy, VecSize.getKnownMinValue());
12878 }
12879 
12880 /// CheckVectorCompareOperands - vector comparisons are a clang extension that
12881 /// operates on extended vector types.  Instead of producing an IntTy result,
12882 /// like a scalar comparison, a vector comparison produces a vector of integer
12883 /// types.
12884 QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS,
12885                                           SourceLocation Loc,
12886                                           BinaryOperatorKind Opc) {
12887   if (Opc == BO_Cmp) {
12888     Diag(Loc, diag::err_three_way_vector_comparison);
12889     return QualType();
12890   }
12891 
12892   // Check to make sure we're operating on vectors of the same type and width,
12893   // Allowing one side to be a scalar of element type.
12894   QualType vType =
12895       CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/ false,
12896                           /*AllowBothBool*/ true,
12897                           /*AllowBoolConversions*/ getLangOpts().ZVector,
12898                           /*AllowBooleanOperation*/ true,
12899                           /*ReportInvalid*/ true);
12900   if (vType.isNull())
12901     return vType;
12902 
12903   QualType LHSType = LHS.get()->getType();
12904 
12905   // Determine the return type of a vector compare. By default clang will return
12906   // a scalar for all vector compares except vector bool and vector pixel.
12907   // With the gcc compiler we will always return a vector type and with the xl
12908   // compiler we will always return a scalar type. This switch allows choosing
12909   // which behavior is prefered.
12910   if (getLangOpts().AltiVec) {
12911     switch (getLangOpts().getAltivecSrcCompat()) {
12912     case LangOptions::AltivecSrcCompatKind::Mixed:
12913       // If AltiVec, the comparison results in a numeric type, i.e.
12914       // bool for C++, int for C
12915       if (vType->castAs<VectorType>()->getVectorKind() ==
12916           VectorType::AltiVecVector)
12917         return Context.getLogicalOperationType();
12918       else
12919         Diag(Loc, diag::warn_deprecated_altivec_src_compat);
12920       break;
12921     case LangOptions::AltivecSrcCompatKind::GCC:
12922       // For GCC we always return the vector type.
12923       break;
12924     case LangOptions::AltivecSrcCompatKind::XL:
12925       return Context.getLogicalOperationType();
12926       break;
12927     }
12928   }
12929 
12930   // For non-floating point types, check for self-comparisons of the form
12931   // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
12932   // often indicate logic errors in the program.
12933   diagnoseTautologicalComparison(*this, Loc, LHS.get(), RHS.get(), Opc);
12934 
12935   // Check for comparisons of floating point operands using != and ==.
12936   if (BinaryOperator::isEqualityOp(Opc) &&
12937       LHSType->hasFloatingRepresentation()) {
12938     assert(RHS.get()->getType()->hasFloatingRepresentation());
12939     CheckFloatComparison(Loc, LHS.get(), RHS.get(), Opc);
12940   }
12941 
12942   // Return a signed type for the vector.
12943   return GetSignedVectorType(vType);
12944 }
12945 
12946 QualType Sema::CheckSizelessVectorCompareOperands(ExprResult &LHS,
12947                                                   ExprResult &RHS,
12948                                                   SourceLocation Loc,
12949                                                   BinaryOperatorKind Opc) {
12950   if (Opc == BO_Cmp) {
12951     Diag(Loc, diag::err_three_way_vector_comparison);
12952     return QualType();
12953   }
12954 
12955   // Check to make sure we're operating on vectors of the same type and width,
12956   // Allowing one side to be a scalar of element type.
12957   QualType vType = CheckSizelessVectorOperands(
12958       LHS, RHS, Loc, /*isCompAssign*/ false, ACK_Comparison);
12959 
12960   if (vType.isNull())
12961     return vType;
12962 
12963   QualType LHSType = LHS.get()->getType();
12964 
12965   // For non-floating point types, check for self-comparisons of the form
12966   // x == x, x != x, x < x, etc.  These always evaluate to a constant, and
12967   // often indicate logic errors in the program.
12968   diagnoseTautologicalComparison(*this, Loc, LHS.get(), RHS.get(), Opc);
12969 
12970   // Check for comparisons of floating point operands using != and ==.
12971   if (BinaryOperator::isEqualityOp(Opc) &&
12972       LHSType->hasFloatingRepresentation()) {
12973     assert(RHS.get()->getType()->hasFloatingRepresentation());
12974     CheckFloatComparison(Loc, LHS.get(), RHS.get(), Opc);
12975   }
12976 
12977   const BuiltinType *LHSBuiltinTy = LHSType->getAs<BuiltinType>();
12978   const BuiltinType *RHSBuiltinTy = RHS.get()->getType()->getAs<BuiltinType>();
12979 
12980   if (LHSBuiltinTy && RHSBuiltinTy && LHSBuiltinTy->isSVEBool() &&
12981       RHSBuiltinTy->isSVEBool())
12982     return LHSType;
12983 
12984   // Return a signed type for the vector.
12985   return GetSignedSizelessVectorType(vType);
12986 }
12987 
12988 static void diagnoseXorMisusedAsPow(Sema &S, const ExprResult &XorLHS,
12989                                     const ExprResult &XorRHS,
12990                                     const SourceLocation Loc) {
12991   // Do not diagnose macros.
12992   if (Loc.isMacroID())
12993     return;
12994 
12995   // Do not diagnose if both LHS and RHS are macros.
12996   if (XorLHS.get()->getExprLoc().isMacroID() &&
12997       XorRHS.get()->getExprLoc().isMacroID())
12998     return;
12999 
13000   bool Negative = false;
13001   bool ExplicitPlus = false;
13002   const auto *LHSInt = dyn_cast<IntegerLiteral>(XorLHS.get());
13003   const auto *RHSInt = dyn_cast<IntegerLiteral>(XorRHS.get());
13004 
13005   if (!LHSInt)
13006     return;
13007   if (!RHSInt) {
13008     // Check negative literals.
13009     if (const auto *UO = dyn_cast<UnaryOperator>(XorRHS.get())) {
13010       UnaryOperatorKind Opc = UO->getOpcode();
13011       if (Opc != UO_Minus && Opc != UO_Plus)
13012         return;
13013       RHSInt = dyn_cast<IntegerLiteral>(UO->getSubExpr());
13014       if (!RHSInt)
13015         return;
13016       Negative = (Opc == UO_Minus);
13017       ExplicitPlus = !Negative;
13018     } else {
13019       return;
13020     }
13021   }
13022 
13023   const llvm::APInt &LeftSideValue = LHSInt->getValue();
13024   llvm::APInt RightSideValue = RHSInt->getValue();
13025   if (LeftSideValue != 2 && LeftSideValue != 10)
13026     return;
13027 
13028   if (LeftSideValue.getBitWidth() != RightSideValue.getBitWidth())
13029     return;
13030 
13031   CharSourceRange ExprRange = CharSourceRange::getCharRange(
13032       LHSInt->getBeginLoc(), S.getLocForEndOfToken(RHSInt->getLocation()));
13033   llvm::StringRef ExprStr =
13034       Lexer::getSourceText(ExprRange, S.getSourceManager(), S.getLangOpts());
13035 
13036   CharSourceRange XorRange =
13037       CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc));
13038   llvm::StringRef XorStr =
13039       Lexer::getSourceText(XorRange, S.getSourceManager(), S.getLangOpts());
13040   // Do not diagnose if xor keyword/macro is used.
13041   if (XorStr == "xor")
13042     return;
13043 
13044   std::string LHSStr = std::string(Lexer::getSourceText(
13045       CharSourceRange::getTokenRange(LHSInt->getSourceRange()),
13046       S.getSourceManager(), S.getLangOpts()));
13047   std::string RHSStr = std::string(Lexer::getSourceText(
13048       CharSourceRange::getTokenRange(RHSInt->getSourceRange()),
13049       S.getSourceManager(), S.getLangOpts()));
13050 
13051   if (Negative) {
13052     RightSideValue = -RightSideValue;
13053     RHSStr = "-" + RHSStr;
13054   } else if (ExplicitPlus) {
13055     RHSStr = "+" + RHSStr;
13056   }
13057 
13058   StringRef LHSStrRef = LHSStr;
13059   StringRef RHSStrRef = RHSStr;
13060   // Do not diagnose literals with digit separators, binary, hexadecimal, octal
13061   // literals.
13062   if (LHSStrRef.startswith("0b") || LHSStrRef.startswith("0B") ||
13063       RHSStrRef.startswith("0b") || RHSStrRef.startswith("0B") ||
13064       LHSStrRef.startswith("0x") || LHSStrRef.startswith("0X") ||
13065       RHSStrRef.startswith("0x") || RHSStrRef.startswith("0X") ||
13066       (LHSStrRef.size() > 1 && LHSStrRef.startswith("0")) ||
13067       (RHSStrRef.size() > 1 && RHSStrRef.startswith("0")) ||
13068       LHSStrRef.contains('\'') || RHSStrRef.contains('\''))
13069     return;
13070 
13071   bool SuggestXor =
13072       S.getLangOpts().CPlusPlus || S.getPreprocessor().isMacroDefined("xor");
13073   const llvm::APInt XorValue = LeftSideValue ^ RightSideValue;
13074   int64_t RightSideIntValue = RightSideValue.getSExtValue();
13075   if (LeftSideValue == 2 && RightSideIntValue >= 0) {
13076     std::string SuggestedExpr = "1 << " + RHSStr;
13077     bool Overflow = false;
13078     llvm::APInt One = (LeftSideValue - 1);
13079     llvm::APInt PowValue = One.sshl_ov(RightSideValue, Overflow);
13080     if (Overflow) {
13081       if (RightSideIntValue < 64)
13082         S.Diag(Loc, diag::warn_xor_used_as_pow_base)
13083             << ExprStr << toString(XorValue, 10, true) << ("1LL << " + RHSStr)
13084             << FixItHint::CreateReplacement(ExprRange, "1LL << " + RHSStr);
13085       else if (RightSideIntValue == 64)
13086         S.Diag(Loc, diag::warn_xor_used_as_pow)
13087             << ExprStr << toString(XorValue, 10, true);
13088       else
13089         return;
13090     } else {
13091       S.Diag(Loc, diag::warn_xor_used_as_pow_base_extra)
13092           << ExprStr << toString(XorValue, 10, true) << SuggestedExpr
13093           << toString(PowValue, 10, true)
13094           << FixItHint::CreateReplacement(
13095                  ExprRange, (RightSideIntValue == 0) ? "1" : SuggestedExpr);
13096     }
13097 
13098     S.Diag(Loc, diag::note_xor_used_as_pow_silence)
13099         << ("0x2 ^ " + RHSStr) << SuggestXor;
13100   } else if (LeftSideValue == 10) {
13101     std::string SuggestedValue = "1e" + std::to_string(RightSideIntValue);
13102     S.Diag(Loc, diag::warn_xor_used_as_pow_base)
13103         << ExprStr << toString(XorValue, 10, true) << SuggestedValue
13104         << FixItHint::CreateReplacement(ExprRange, SuggestedValue);
13105     S.Diag(Loc, diag::note_xor_used_as_pow_silence)
13106         << ("0xA ^ " + RHSStr) << SuggestXor;
13107   }
13108 }
13109 
13110 QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS,
13111                                           SourceLocation Loc) {
13112   // Ensure that either both operands are of the same vector type, or
13113   // one operand is of a vector type and the other is of its element type.
13114   QualType vType = CheckVectorOperands(LHS, RHS, Loc, false,
13115                                        /*AllowBothBool*/ true,
13116                                        /*AllowBoolConversions*/ false,
13117                                        /*AllowBooleanOperation*/ false,
13118                                        /*ReportInvalid*/ false);
13119   if (vType.isNull())
13120     return InvalidOperands(Loc, LHS, RHS);
13121   if (getLangOpts().OpenCL &&
13122       getLangOpts().getOpenCLCompatibleVersion() < 120 &&
13123       vType->hasFloatingRepresentation())
13124     return InvalidOperands(Loc, LHS, RHS);
13125   // FIXME: The check for C++ here is for GCC compatibility. GCC rejects the
13126   //        usage of the logical operators && and || with vectors in C. This
13127   //        check could be notionally dropped.
13128   if (!getLangOpts().CPlusPlus &&
13129       !(isa<ExtVectorType>(vType->getAs<VectorType>())))
13130     return InvalidLogicalVectorOperands(Loc, LHS, RHS);
13131 
13132   return GetSignedVectorType(LHS.get()->getType());
13133 }
13134 
13135 QualType Sema::CheckMatrixElementwiseOperands(ExprResult &LHS, ExprResult &RHS,
13136                                               SourceLocation Loc,
13137                                               bool IsCompAssign) {
13138   if (!IsCompAssign) {
13139     LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
13140     if (LHS.isInvalid())
13141       return QualType();
13142   }
13143   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
13144   if (RHS.isInvalid())
13145     return QualType();
13146 
13147   // For conversion purposes, we ignore any qualifiers.
13148   // For example, "const float" and "float" are equivalent.
13149   QualType LHSType = LHS.get()->getType().getUnqualifiedType();
13150   QualType RHSType = RHS.get()->getType().getUnqualifiedType();
13151 
13152   const MatrixType *LHSMatType = LHSType->getAs<MatrixType>();
13153   const MatrixType *RHSMatType = RHSType->getAs<MatrixType>();
13154   assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix");
13155 
13156   if (Context.hasSameType(LHSType, RHSType))
13157     return LHSType;
13158 
13159   // Type conversion may change LHS/RHS. Keep copies to the original results, in
13160   // case we have to return InvalidOperands.
13161   ExprResult OriginalLHS = LHS;
13162   ExprResult OriginalRHS = RHS;
13163   if (LHSMatType && !RHSMatType) {
13164     RHS = tryConvertExprToType(RHS.get(), LHSMatType->getElementType());
13165     if (!RHS.isInvalid())
13166       return LHSType;
13167 
13168     return InvalidOperands(Loc, OriginalLHS, OriginalRHS);
13169   }
13170 
13171   if (!LHSMatType && RHSMatType) {
13172     LHS = tryConvertExprToType(LHS.get(), RHSMatType->getElementType());
13173     if (!LHS.isInvalid())
13174       return RHSType;
13175     return InvalidOperands(Loc, OriginalLHS, OriginalRHS);
13176   }
13177 
13178   return InvalidOperands(Loc, LHS, RHS);
13179 }
13180 
13181 QualType Sema::CheckMatrixMultiplyOperands(ExprResult &LHS, ExprResult &RHS,
13182                                            SourceLocation Loc,
13183                                            bool IsCompAssign) {
13184   if (!IsCompAssign) {
13185     LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
13186     if (LHS.isInvalid())
13187       return QualType();
13188   }
13189   RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
13190   if (RHS.isInvalid())
13191     return QualType();
13192 
13193   auto *LHSMatType = LHS.get()->getType()->getAs<ConstantMatrixType>();
13194   auto *RHSMatType = RHS.get()->getType()->getAs<ConstantMatrixType>();
13195   assert((LHSMatType || RHSMatType) && "At least one operand must be a matrix");
13196 
13197   if (LHSMatType && RHSMatType) {
13198     if (LHSMatType->getNumColumns() != RHSMatType->getNumRows())
13199       return InvalidOperands(Loc, LHS, RHS);
13200 
13201     if (!Context.hasSameType(LHSMatType->getElementType(),
13202                              RHSMatType->getElementType()))
13203       return InvalidOperands(Loc, LHS, RHS);
13204 
13205     return Context.getConstantMatrixType(LHSMatType->getElementType(),
13206                                          LHSMatType->getNumRows(),
13207                                          RHSMatType->getNumColumns());
13208   }
13209   return CheckMatrixElementwiseOperands(LHS, RHS, Loc, IsCompAssign);
13210 }
13211 
13212 static bool isLegalBoolVectorBinaryOp(BinaryOperatorKind Opc) {
13213   switch (Opc) {
13214   default:
13215     return false;
13216   case BO_And:
13217   case BO_AndAssign:
13218   case BO_Or:
13219   case BO_OrAssign:
13220   case BO_Xor:
13221   case BO_XorAssign:
13222     return true;
13223   }
13224 }
13225 
13226 inline QualType Sema::CheckBitwiseOperands(ExprResult &LHS, ExprResult &RHS,
13227                                            SourceLocation Loc,
13228                                            BinaryOperatorKind Opc) {
13229   checkArithmeticNull(*this, LHS, RHS, Loc, /*IsCompare=*/false);
13230 
13231   bool IsCompAssign =
13232       Opc == BO_AndAssign || Opc == BO_OrAssign || Opc == BO_XorAssign;
13233 
13234   bool LegalBoolVecOperator = isLegalBoolVectorBinaryOp(Opc);
13235 
13236   if (LHS.get()->getType()->isVectorType() ||
13237       RHS.get()->getType()->isVectorType()) {
13238     if (LHS.get()->getType()->hasIntegerRepresentation() &&
13239         RHS.get()->getType()->hasIntegerRepresentation())
13240       return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign,
13241                                  /*AllowBothBool*/ true,
13242                                  /*AllowBoolConversions*/ getLangOpts().ZVector,
13243                                  /*AllowBooleanOperation*/ LegalBoolVecOperator,
13244                                  /*ReportInvalid*/ true);
13245     return InvalidOperands(Loc, LHS, RHS);
13246   }
13247 
13248   if (LHS.get()->getType()->isVLSTBuiltinType() ||
13249       RHS.get()->getType()->isVLSTBuiltinType()) {
13250     if (LHS.get()->getType()->hasIntegerRepresentation() &&
13251         RHS.get()->getType()->hasIntegerRepresentation())
13252       return CheckSizelessVectorOperands(LHS, RHS, Loc, IsCompAssign,
13253                                          ACK_BitwiseOp);
13254     return InvalidOperands(Loc, LHS, RHS);
13255   }
13256 
13257   if (LHS.get()->getType()->isVLSTBuiltinType() ||
13258       RHS.get()->getType()->isVLSTBuiltinType()) {
13259     if (LHS.get()->getType()->hasIntegerRepresentation() &&
13260         RHS.get()->getType()->hasIntegerRepresentation())
13261       return CheckSizelessVectorOperands(LHS, RHS, Loc, IsCompAssign,
13262                                          ACK_BitwiseOp);
13263     return InvalidOperands(Loc, LHS, RHS);
13264   }
13265 
13266   if (Opc == BO_And)
13267     diagnoseLogicalNotOnLHSofCheck(*this, LHS, RHS, Loc, Opc);
13268 
13269   if (LHS.get()->getType()->hasFloatingRepresentation() ||
13270       RHS.get()->getType()->hasFloatingRepresentation())
13271     return InvalidOperands(Loc, LHS, RHS);
13272 
13273   ExprResult LHSResult = LHS, RHSResult = RHS;
13274   QualType compType = UsualArithmeticConversions(
13275       LHSResult, RHSResult, Loc, IsCompAssign ? ACK_CompAssign : ACK_BitwiseOp);
13276   if (LHSResult.isInvalid() || RHSResult.isInvalid())
13277     return QualType();
13278   LHS = LHSResult.get();
13279   RHS = RHSResult.get();
13280 
13281   if (Opc == BO_Xor)
13282     diagnoseXorMisusedAsPow(*this, LHS, RHS, Loc);
13283 
13284   if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType())
13285     return compType;
13286   return InvalidOperands(Loc, LHS, RHS);
13287 }
13288 
13289 // C99 6.5.[13,14]
13290 inline QualType Sema::CheckLogicalOperands(ExprResult &LHS, ExprResult &RHS,
13291                                            SourceLocation Loc,
13292                                            BinaryOperatorKind Opc) {
13293   // Check vector operands differently.
13294   if (LHS.get()->getType()->isVectorType() ||
13295       RHS.get()->getType()->isVectorType())
13296     return CheckVectorLogicalOperands(LHS, RHS, Loc);
13297 
13298   bool EnumConstantInBoolContext = false;
13299   for (const ExprResult &HS : {LHS, RHS}) {
13300     if (const auto *DREHS = dyn_cast<DeclRefExpr>(HS.get())) {
13301       const auto *ECDHS = dyn_cast<EnumConstantDecl>(DREHS->getDecl());
13302       if (ECDHS && ECDHS->getInitVal() != 0 && ECDHS->getInitVal() != 1)
13303         EnumConstantInBoolContext = true;
13304     }
13305   }
13306 
13307   if (EnumConstantInBoolContext)
13308     Diag(Loc, diag::warn_enum_constant_in_bool_context);
13309 
13310   // Diagnose cases where the user write a logical and/or but probably meant a
13311   // bitwise one.  We do this when the LHS is a non-bool integer and the RHS
13312   // is a constant.
13313   if (!EnumConstantInBoolContext && LHS.get()->getType()->isIntegerType() &&
13314       !LHS.get()->getType()->isBooleanType() &&
13315       RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() &&
13316       // Don't warn in macros or template instantiations.
13317       !Loc.isMacroID() && !inTemplateInstantiation()) {
13318     // If the RHS can be constant folded, and if it constant folds to something
13319     // that isn't 0 or 1 (which indicate a potential logical operation that
13320     // happened to fold to true/false) then warn.
13321     // Parens on the RHS are ignored.
13322     Expr::EvalResult EVResult;
13323     if (RHS.get()->EvaluateAsInt(EVResult, Context)) {
13324       llvm::APSInt Result = EVResult.Val.getInt();
13325       if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() &&
13326            !RHS.get()->getExprLoc().isMacroID()) ||
13327           (Result != 0 && Result != 1)) {
13328         Diag(Loc, diag::warn_logical_instead_of_bitwise)
13329             << RHS.get()->getSourceRange() << (Opc == BO_LAnd ? "&&" : "||");
13330         // Suggest replacing the logical operator with the bitwise version
13331         Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator)
13332             << (Opc == BO_LAnd ? "&" : "|")
13333             << FixItHint::CreateReplacement(
13334                    SourceRange(Loc, getLocForEndOfToken(Loc)),
13335                    Opc == BO_LAnd ? "&" : "|");
13336         if (Opc == BO_LAnd)
13337           // Suggest replacing "Foo() && kNonZero" with "Foo()"
13338           Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant)
13339               << FixItHint::CreateRemoval(
13340                      SourceRange(getLocForEndOfToken(LHS.get()->getEndLoc()),
13341                                  RHS.get()->getEndLoc()));
13342       }
13343     }
13344   }
13345 
13346   if (!Context.getLangOpts().CPlusPlus) {
13347     // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do
13348     // not operate on the built-in scalar and vector float types.
13349     if (Context.getLangOpts().OpenCL &&
13350         Context.getLangOpts().OpenCLVersion < 120) {
13351       if (LHS.get()->getType()->isFloatingType() ||
13352           RHS.get()->getType()->isFloatingType())
13353         return InvalidOperands(Loc, LHS, RHS);
13354     }
13355 
13356     LHS = UsualUnaryConversions(LHS.get());
13357     if (LHS.isInvalid())
13358       return QualType();
13359 
13360     RHS = UsualUnaryConversions(RHS.get());
13361     if (RHS.isInvalid())
13362       return QualType();
13363 
13364     if (!LHS.get()->getType()->isScalarType() ||
13365         !RHS.get()->getType()->isScalarType())
13366       return InvalidOperands(Loc, LHS, RHS);
13367 
13368     return Context.IntTy;
13369   }
13370 
13371   // The following is safe because we only use this method for
13372   // non-overloadable operands.
13373 
13374   // C++ [expr.log.and]p1
13375   // C++ [expr.log.or]p1
13376   // The operands are both contextually converted to type bool.
13377   ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get());
13378   if (LHSRes.isInvalid())
13379     return InvalidOperands(Loc, LHS, RHS);
13380   LHS = LHSRes;
13381 
13382   ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get());
13383   if (RHSRes.isInvalid())
13384     return InvalidOperands(Loc, LHS, RHS);
13385   RHS = RHSRes;
13386 
13387   // C++ [expr.log.and]p2
13388   // C++ [expr.log.or]p2
13389   // The result is a bool.
13390   return Context.BoolTy;
13391 }
13392 
13393 static bool IsReadonlyMessage(Expr *E, Sema &S) {
13394   const MemberExpr *ME = dyn_cast<MemberExpr>(E);
13395   if (!ME) return false;
13396   if (!isa<FieldDecl>(ME->getMemberDecl())) return false;
13397   ObjCMessageExpr *Base = dyn_cast<ObjCMessageExpr>(
13398       ME->getBase()->IgnoreImplicit()->IgnoreParenImpCasts());
13399   if (!Base) return false;
13400   return Base->getMethodDecl() != nullptr;
13401 }
13402 
13403 /// Is the given expression (which must be 'const') a reference to a
13404 /// variable which was originally non-const, but which has become
13405 /// 'const' due to being captured within a block?
13406 enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda };
13407 static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) {
13408   assert(E->isLValue() && E->getType().isConstQualified());
13409   E = E->IgnoreParens();
13410 
13411   // Must be a reference to a declaration from an enclosing scope.
13412   DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
13413   if (!DRE) return NCCK_None;
13414   if (!DRE->refersToEnclosingVariableOrCapture()) return NCCK_None;
13415 
13416   // The declaration must be a variable which is not declared 'const'.
13417   VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
13418   if (!var) return NCCK_None;
13419   if (var->getType().isConstQualified()) return NCCK_None;
13420   assert(var->hasLocalStorage() && "capture added 'const' to non-local?");
13421 
13422   // Decide whether the first capture was for a block or a lambda.
13423   DeclContext *DC = S.CurContext, *Prev = nullptr;
13424   // Decide whether the first capture was for a block or a lambda.
13425   while (DC) {
13426     // For init-capture, it is possible that the variable belongs to the
13427     // template pattern of the current context.
13428     if (auto *FD = dyn_cast<FunctionDecl>(DC))
13429       if (var->isInitCapture() &&
13430           FD->getTemplateInstantiationPattern() == var->getDeclContext())
13431         break;
13432     if (DC == var->getDeclContext())
13433       break;
13434     Prev = DC;
13435     DC = DC->getParent();
13436   }
13437   // Unless we have an init-capture, we've gone one step too far.
13438   if (!var->isInitCapture())
13439     DC = Prev;
13440   return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda);
13441 }
13442 
13443 static bool IsTypeModifiable(QualType Ty, bool IsDereference) {
13444   Ty = Ty.getNonReferenceType();
13445   if (IsDereference && Ty->isPointerType())
13446     Ty = Ty->getPointeeType();
13447   return !Ty.isConstQualified();
13448 }
13449 
13450 // Update err_typecheck_assign_const and note_typecheck_assign_const
13451 // when this enum is changed.
13452 enum {
13453   ConstFunction,
13454   ConstVariable,
13455   ConstMember,
13456   ConstMethod,
13457   NestedConstMember,
13458   ConstUnknown,  // Keep as last element
13459 };
13460 
13461 /// Emit the "read-only variable not assignable" error and print notes to give
13462 /// more information about why the variable is not assignable, such as pointing
13463 /// to the declaration of a const variable, showing that a method is const, or
13464 /// that the function is returning a const reference.
13465 static void DiagnoseConstAssignment(Sema &S, const Expr *E,
13466                                     SourceLocation Loc) {
13467   SourceRange ExprRange = E->getSourceRange();
13468 
13469   // Only emit one error on the first const found.  All other consts will emit
13470   // a note to the error.
13471   bool DiagnosticEmitted = false;
13472 
13473   // Track if the current expression is the result of a dereference, and if the
13474   // next checked expression is the result of a dereference.
13475   bool IsDereference = false;
13476   bool NextIsDereference = false;
13477 
13478   // Loop to process MemberExpr chains.
13479   while (true) {
13480     IsDereference = NextIsDereference;
13481 
13482     E = E->IgnoreImplicit()->IgnoreParenImpCasts();
13483     if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
13484       NextIsDereference = ME->isArrow();
13485       const ValueDecl *VD = ME->getMemberDecl();
13486       if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) {
13487         // Mutable fields can be modified even if the class is const.
13488         if (Field->isMutable()) {
13489           assert(DiagnosticEmitted && "Expected diagnostic not emitted.");
13490           break;
13491         }
13492 
13493         if (!IsTypeModifiable(Field->getType(), IsDereference)) {
13494           if (!DiagnosticEmitted) {
13495             S.Diag(Loc, diag::err_typecheck_assign_const)
13496                 << ExprRange << ConstMember << false /*static*/ << Field
13497                 << Field->getType();
13498             DiagnosticEmitted = true;
13499           }
13500           S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
13501               << ConstMember << false /*static*/ << Field << Field->getType()
13502               << Field->getSourceRange();
13503         }
13504         E = ME->getBase();
13505         continue;
13506       } else if (const VarDecl *VDecl = dyn_cast<VarDecl>(VD)) {
13507         if (VDecl->getType().isConstQualified()) {
13508           if (!DiagnosticEmitted) {
13509             S.Diag(Loc, diag::err_typecheck_assign_const)
13510                 << ExprRange << ConstMember << true /*static*/ << VDecl
13511                 << VDecl->getType();
13512             DiagnosticEmitted = true;
13513           }
13514           S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
13515               << ConstMember << true /*static*/ << VDecl << VDecl->getType()
13516               << VDecl->getSourceRange();
13517         }
13518         // Static fields do not inherit constness from parents.
13519         break;
13520       }
13521       break; // End MemberExpr
13522     } else if (const ArraySubscriptExpr *ASE =
13523                    dyn_cast<ArraySubscriptExpr>(E)) {
13524       E = ASE->getBase()->IgnoreParenImpCasts();
13525       continue;
13526     } else if (const ExtVectorElementExpr *EVE =
13527                    dyn_cast<ExtVectorElementExpr>(E)) {
13528       E = EVE->getBase()->IgnoreParenImpCasts();
13529       continue;
13530     }
13531     break;
13532   }
13533 
13534   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
13535     // Function calls
13536     const FunctionDecl *FD = CE->getDirectCallee();
13537     if (FD && !IsTypeModifiable(FD->getReturnType(), IsDereference)) {
13538       if (!DiagnosticEmitted) {
13539         S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
13540                                                       << ConstFunction << FD;
13541         DiagnosticEmitted = true;
13542       }
13543       S.Diag(FD->getReturnTypeSourceRange().getBegin(),
13544              diag::note_typecheck_assign_const)
13545           << ConstFunction << FD << FD->getReturnType()
13546           << FD->getReturnTypeSourceRange();
13547     }
13548   } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
13549     // Point to variable declaration.
13550     if (const ValueDecl *VD = DRE->getDecl()) {
13551       if (!IsTypeModifiable(VD->getType(), IsDereference)) {
13552         if (!DiagnosticEmitted) {
13553           S.Diag(Loc, diag::err_typecheck_assign_const)
13554               << ExprRange << ConstVariable << VD << VD->getType();
13555           DiagnosticEmitted = true;
13556         }
13557         S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
13558             << ConstVariable << VD << VD->getType() << VD->getSourceRange();
13559       }
13560     }
13561   } else if (isa<CXXThisExpr>(E)) {
13562     if (const DeclContext *DC = S.getFunctionLevelDeclContext()) {
13563       if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
13564         if (MD->isConst()) {
13565           if (!DiagnosticEmitted) {
13566             S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
13567                                                           << ConstMethod << MD;
13568             DiagnosticEmitted = true;
13569           }
13570           S.Diag(MD->getLocation(), diag::note_typecheck_assign_const)
13571               << ConstMethod << MD << MD->getSourceRange();
13572         }
13573       }
13574     }
13575   }
13576 
13577   if (DiagnosticEmitted)
13578     return;
13579 
13580   // Can't determine a more specific message, so display the generic error.
13581   S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange << ConstUnknown;
13582 }
13583 
13584 enum OriginalExprKind {
13585   OEK_Variable,
13586   OEK_Member,
13587   OEK_LValue
13588 };
13589 
13590 static void DiagnoseRecursiveConstFields(Sema &S, const ValueDecl *VD,
13591                                          const RecordType *Ty,
13592                                          SourceLocation Loc, SourceRange Range,
13593                                          OriginalExprKind OEK,
13594                                          bool &DiagnosticEmitted) {
13595   std::vector<const RecordType *> RecordTypeList;
13596   RecordTypeList.push_back(Ty);
13597   unsigned NextToCheckIndex = 0;
13598   // We walk the record hierarchy breadth-first to ensure that we print
13599   // diagnostics in field nesting order.
13600   while (RecordTypeList.size() > NextToCheckIndex) {
13601     bool IsNested = NextToCheckIndex > 0;
13602     for (const FieldDecl *Field :
13603          RecordTypeList[NextToCheckIndex]->getDecl()->fields()) {
13604       // First, check every field for constness.
13605       QualType FieldTy = Field->getType();
13606       if (FieldTy.isConstQualified()) {
13607         if (!DiagnosticEmitted) {
13608           S.Diag(Loc, diag::err_typecheck_assign_const)
13609               << Range << NestedConstMember << OEK << VD
13610               << IsNested << Field;
13611           DiagnosticEmitted = true;
13612         }
13613         S.Diag(Field->getLocation(), diag::note_typecheck_assign_const)
13614             << NestedConstMember << IsNested << Field
13615             << FieldTy << Field->getSourceRange();
13616       }
13617 
13618       // Then we append it to the list to check next in order.
13619       FieldTy = FieldTy.getCanonicalType();
13620       if (const auto *FieldRecTy = FieldTy->getAs<RecordType>()) {
13621         if (!llvm::is_contained(RecordTypeList, FieldRecTy))
13622           RecordTypeList.push_back(FieldRecTy);
13623       }
13624     }
13625     ++NextToCheckIndex;
13626   }
13627 }
13628 
13629 /// Emit an error for the case where a record we are trying to assign to has a
13630 /// const-qualified field somewhere in its hierarchy.
13631 static void DiagnoseRecursiveConstFields(Sema &S, const Expr *E,
13632                                          SourceLocation Loc) {
13633   QualType Ty = E->getType();
13634   assert(Ty->isRecordType() && "lvalue was not record?");
13635   SourceRange Range = E->getSourceRange();
13636   const RecordType *RTy = Ty.getCanonicalType()->getAs<RecordType>();
13637   bool DiagEmitted = false;
13638 
13639   if (const MemberExpr *ME = dyn_cast<MemberExpr>(E))
13640     DiagnoseRecursiveConstFields(S, ME->getMemberDecl(), RTy, Loc,
13641             Range, OEK_Member, DiagEmitted);
13642   else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
13643     DiagnoseRecursiveConstFields(S, DRE->getDecl(), RTy, Loc,
13644             Range, OEK_Variable, DiagEmitted);
13645   else
13646     DiagnoseRecursiveConstFields(S, nullptr, RTy, Loc,
13647             Range, OEK_LValue, DiagEmitted);
13648   if (!DiagEmitted)
13649     DiagnoseConstAssignment(S, E, Loc);
13650 }
13651 
13652 /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue.  If not,
13653 /// emit an error and return true.  If so, return false.
13654 static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
13655   assert(!E->hasPlaceholderType(BuiltinType::PseudoObject));
13656 
13657   S.CheckShadowingDeclModification(E, Loc);
13658 
13659   SourceLocation OrigLoc = Loc;
13660   Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
13661                                                               &Loc);
13662   if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S))
13663     IsLV = Expr::MLV_InvalidMessageExpression;
13664   if (IsLV == Expr::MLV_Valid)
13665     return false;
13666 
13667   unsigned DiagID = 0;
13668   bool NeedType = false;
13669   switch (IsLV) { // C99 6.5.16p2
13670   case Expr::MLV_ConstQualified:
13671     // Use a specialized diagnostic when we're assigning to an object
13672     // from an enclosing function or block.
13673     if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) {
13674       if (NCCK == NCCK_Block)
13675         DiagID = diag::err_block_decl_ref_not_modifiable_lvalue;
13676       else
13677         DiagID = diag::err_lambda_decl_ref_not_modifiable_lvalue;
13678       break;
13679     }
13680 
13681     // In ARC, use some specialized diagnostics for occasions where we
13682     // infer 'const'.  These are always pseudo-strong variables.
13683     if (S.getLangOpts().ObjCAutoRefCount) {
13684       DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
13685       if (declRef && isa<VarDecl>(declRef->getDecl())) {
13686         VarDecl *var = cast<VarDecl>(declRef->getDecl());
13687 
13688         // Use the normal diagnostic if it's pseudo-__strong but the
13689         // user actually wrote 'const'.
13690         if (var->isARCPseudoStrong() &&
13691             (!var->getTypeSourceInfo() ||
13692              !var->getTypeSourceInfo()->getType().isConstQualified())) {
13693           // There are three pseudo-strong cases:
13694           //  - self
13695           ObjCMethodDecl *method = S.getCurMethodDecl();
13696           if (method && var == method->getSelfDecl()) {
13697             DiagID = method->isClassMethod()
13698               ? diag::err_typecheck_arc_assign_self_class_method
13699               : diag::err_typecheck_arc_assign_self;
13700 
13701           //  - Objective-C externally_retained attribute.
13702           } else if (var->hasAttr<ObjCExternallyRetainedAttr>() ||
13703                      isa<ParmVarDecl>(var)) {
13704             DiagID = diag::err_typecheck_arc_assign_externally_retained;
13705 
13706           //  - fast enumeration variables
13707           } else {
13708             DiagID = diag::err_typecheck_arr_assign_enumeration;
13709           }
13710 
13711           SourceRange Assign;
13712           if (Loc != OrigLoc)
13713             Assign = SourceRange(OrigLoc, OrigLoc);
13714           S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
13715           // We need to preserve the AST regardless, so migration tool
13716           // can do its job.
13717           return false;
13718         }
13719       }
13720     }
13721 
13722     // If none of the special cases above are triggered, then this is a
13723     // simple const assignment.
13724     if (DiagID == 0) {
13725       DiagnoseConstAssignment(S, E, Loc);
13726       return true;
13727     }
13728 
13729     break;
13730   case Expr::MLV_ConstAddrSpace:
13731     DiagnoseConstAssignment(S, E, Loc);
13732     return true;
13733   case Expr::MLV_ConstQualifiedField:
13734     DiagnoseRecursiveConstFields(S, E, Loc);
13735     return true;
13736   case Expr::MLV_ArrayType:
13737   case Expr::MLV_ArrayTemporary:
13738     DiagID = diag::err_typecheck_array_not_modifiable_lvalue;
13739     NeedType = true;
13740     break;
13741   case Expr::MLV_NotObjectType:
13742     DiagID = diag::err_typecheck_non_object_not_modifiable_lvalue;
13743     NeedType = true;
13744     break;
13745   case Expr::MLV_LValueCast:
13746     DiagID = diag::err_typecheck_lvalue_casts_not_supported;
13747     break;
13748   case Expr::MLV_Valid:
13749     llvm_unreachable("did not take early return for MLV_Valid");
13750   case Expr::MLV_InvalidExpression:
13751   case Expr::MLV_MemberFunction:
13752   case Expr::MLV_ClassTemporary:
13753     DiagID = diag::err_typecheck_expression_not_modifiable_lvalue;
13754     break;
13755   case Expr::MLV_IncompleteType:
13756   case Expr::MLV_IncompleteVoidType:
13757     return S.RequireCompleteType(Loc, E->getType(),
13758              diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E);
13759   case Expr::MLV_DuplicateVectorComponents:
13760     DiagID = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
13761     break;
13762   case Expr::MLV_NoSetterProperty:
13763     llvm_unreachable("readonly properties should be processed differently");
13764   case Expr::MLV_InvalidMessageExpression:
13765     DiagID = diag::err_readonly_message_assignment;
13766     break;
13767   case Expr::MLV_SubObjCPropertySetting:
13768     DiagID = diag::err_no_subobject_property_setting;
13769     break;
13770   }
13771 
13772   SourceRange Assign;
13773   if (Loc != OrigLoc)
13774     Assign = SourceRange(OrigLoc, OrigLoc);
13775   if (NeedType)
13776     S.Diag(Loc, DiagID) << E->getType() << E->getSourceRange() << Assign;
13777   else
13778     S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
13779   return true;
13780 }
13781 
13782 static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr,
13783                                          SourceLocation Loc,
13784                                          Sema &Sema) {
13785   if (Sema.inTemplateInstantiation())
13786     return;
13787   if (Sema.isUnevaluatedContext())
13788     return;
13789   if (Loc.isInvalid() || Loc.isMacroID())
13790     return;
13791   if (LHSExpr->getExprLoc().isMacroID() || RHSExpr->getExprLoc().isMacroID())
13792     return;
13793 
13794   // C / C++ fields
13795   MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr);
13796   MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr);
13797   if (ML && MR) {
13798     if (!(isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase())))
13799       return;
13800     const ValueDecl *LHSDecl =
13801         cast<ValueDecl>(ML->getMemberDecl()->getCanonicalDecl());
13802     const ValueDecl *RHSDecl =
13803         cast<ValueDecl>(MR->getMemberDecl()->getCanonicalDecl());
13804     if (LHSDecl != RHSDecl)
13805       return;
13806     if (LHSDecl->getType().isVolatileQualified())
13807       return;
13808     if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
13809       if (RefTy->getPointeeType().isVolatileQualified())
13810         return;
13811 
13812     Sema.Diag(Loc, diag::warn_identity_field_assign) << 0;
13813   }
13814 
13815   // Objective-C instance variables
13816   ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr);
13817   ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr);
13818   if (OL && OR && OL->getDecl() == OR->getDecl()) {
13819     DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts());
13820     DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts());
13821     if (RL && RR && RL->getDecl() == RR->getDecl())
13822       Sema.Diag(Loc, diag::warn_identity_field_assign) << 1;
13823   }
13824 }
13825 
13826 // C99 6.5.16.1
13827 QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS,
13828                                        SourceLocation Loc,
13829                                        QualType CompoundType) {
13830   assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject));
13831 
13832   // Verify that LHS is a modifiable lvalue, and emit error if not.
13833   if (CheckForModifiableLvalue(LHSExpr, Loc, *this))
13834     return QualType();
13835 
13836   QualType LHSType = LHSExpr->getType();
13837   QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() :
13838                                              CompoundType;
13839   // OpenCL v1.2 s6.1.1.1 p2:
13840   // The half data type can only be used to declare a pointer to a buffer that
13841   // contains half values
13842   if (getLangOpts().OpenCL &&
13843       !getOpenCLOptions().isAvailableOption("cl_khr_fp16", getLangOpts()) &&
13844       LHSType->isHalfType()) {
13845     Diag(Loc, diag::err_opencl_half_load_store) << 1
13846         << LHSType.getUnqualifiedType();
13847     return QualType();
13848   }
13849 
13850   AssignConvertType ConvTy;
13851   if (CompoundType.isNull()) {
13852     Expr *RHSCheck = RHS.get();
13853 
13854     CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this);
13855 
13856     QualType LHSTy(LHSType);
13857     ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
13858     if (RHS.isInvalid())
13859       return QualType();
13860     // Special case of NSObject attributes on c-style pointer types.
13861     if (ConvTy == IncompatiblePointer &&
13862         ((Context.isObjCNSObjectType(LHSType) &&
13863           RHSType->isObjCObjectPointerType()) ||
13864          (Context.isObjCNSObjectType(RHSType) &&
13865           LHSType->isObjCObjectPointerType())))
13866       ConvTy = Compatible;
13867 
13868     if (ConvTy == Compatible &&
13869         LHSType->isObjCObjectType())
13870         Diag(Loc, diag::err_objc_object_assignment)
13871           << LHSType;
13872 
13873     // If the RHS is a unary plus or minus, check to see if they = and + are
13874     // right next to each other.  If so, the user may have typo'd "x =+ 4"
13875     // instead of "x += 4".
13876     if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
13877       RHSCheck = ICE->getSubExpr();
13878     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
13879       if ((UO->getOpcode() == UO_Plus || UO->getOpcode() == UO_Minus) &&
13880           Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
13881           // Only if the two operators are exactly adjacent.
13882           Loc.getLocWithOffset(1) == UO->getOperatorLoc() &&
13883           // And there is a space or other character before the subexpr of the
13884           // unary +/-.  We don't want to warn on "x=-1".
13885           Loc.getLocWithOffset(2) != UO->getSubExpr()->getBeginLoc() &&
13886           UO->getSubExpr()->getBeginLoc().isFileID()) {
13887         Diag(Loc, diag::warn_not_compound_assign)
13888           << (UO->getOpcode() == UO_Plus ? "+" : "-")
13889           << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
13890       }
13891     }
13892 
13893     if (ConvTy == Compatible) {
13894       if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) {
13895         // Warn about retain cycles where a block captures the LHS, but
13896         // not if the LHS is a simple variable into which the block is
13897         // being stored...unless that variable can be captured by reference!
13898         const Expr *InnerLHS = LHSExpr->IgnoreParenCasts();
13899         const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS);
13900         if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>())
13901           checkRetainCycles(LHSExpr, RHS.get());
13902       }
13903 
13904       if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong ||
13905           LHSType.isNonWeakInMRRWithObjCWeak(Context)) {
13906         // It is safe to assign a weak reference into a strong variable.
13907         // Although this code can still have problems:
13908         //   id x = self.weakProp;
13909         //   id y = self.weakProp;
13910         // we do not warn to warn spuriously when 'x' and 'y' are on separate
13911         // paths through the function. This should be revisited if
13912         // -Wrepeated-use-of-weak is made flow-sensitive.
13913         // For ObjCWeak only, we do not warn if the assign is to a non-weak
13914         // variable, which will be valid for the current autorelease scope.
13915         if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
13916                              RHS.get()->getBeginLoc()))
13917           getCurFunction()->markSafeWeakUse(RHS.get());
13918 
13919       } else if (getLangOpts().ObjCAutoRefCount || getLangOpts().ObjCWeak) {
13920         checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get());
13921       }
13922     }
13923   } else {
13924     // Compound assignment "x += y"
13925     ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType);
13926   }
13927 
13928   if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
13929                                RHS.get(), AA_Assigning))
13930     return QualType();
13931 
13932   CheckForNullPointerDereference(*this, LHSExpr);
13933 
13934   if (getLangOpts().CPlusPlus20 && LHSType.isVolatileQualified()) {
13935     if (CompoundType.isNull()) {
13936       // C++2a [expr.ass]p5:
13937       //   A simple-assignment whose left operand is of a volatile-qualified
13938       //   type is deprecated unless the assignment is either a discarded-value
13939       //   expression or an unevaluated operand
13940       ExprEvalContexts.back().VolatileAssignmentLHSs.push_back(LHSExpr);
13941     } else {
13942       // C++2a [expr.ass]p6:
13943       //   [Compound-assignment] expressions are deprecated if E1 has
13944       //   volatile-qualified type
13945       Diag(Loc, diag::warn_deprecated_compound_assign_volatile) << LHSType;
13946     }
13947   }
13948 
13949   // C11 6.5.16p3: The type of an assignment expression is the type of the
13950   // left operand would have after lvalue conversion.
13951   // C11 6.3.2.1p2: ...this is called lvalue conversion. If the lvalue has
13952   // qualified type, the value has the unqualified version of the type of the
13953   // lvalue; additionally, if the lvalue has atomic type, the value has the
13954   // non-atomic version of the type of the lvalue.
13955   // C++ 5.17p1: the type of the assignment expression is that of its left
13956   // operand.
13957   return getLangOpts().CPlusPlus ? LHSType : LHSType.getAtomicUnqualifiedType();
13958 }
13959 
13960 // Only ignore explicit casts to void.
13961 static bool IgnoreCommaOperand(const Expr *E) {
13962   E = E->IgnoreParens();
13963 
13964   if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
13965     if (CE->getCastKind() == CK_ToVoid) {
13966       return true;
13967     }
13968 
13969     // static_cast<void> on a dependent type will not show up as CK_ToVoid.
13970     if (CE->getCastKind() == CK_Dependent && E->getType()->isVoidType() &&
13971         CE->getSubExpr()->getType()->isDependentType()) {
13972       return true;
13973     }
13974   }
13975 
13976   return false;
13977 }
13978 
13979 // Look for instances where it is likely the comma operator is confused with
13980 // another operator.  There is an explicit list of acceptable expressions for
13981 // the left hand side of the comma operator, otherwise emit a warning.
13982 void Sema::DiagnoseCommaOperator(const Expr *LHS, SourceLocation Loc) {
13983   // No warnings in macros
13984   if (Loc.isMacroID())
13985     return;
13986 
13987   // Don't warn in template instantiations.
13988   if (inTemplateInstantiation())
13989     return;
13990 
13991   // Scope isn't fine-grained enough to explicitly list the specific cases, so
13992   // instead, skip more than needed, then call back into here with the
13993   // CommaVisitor in SemaStmt.cpp.
13994   // The listed locations are the initialization and increment portions
13995   // of a for loop.  The additional checks are on the condition of
13996   // if statements, do/while loops, and for loops.
13997   // Differences in scope flags for C89 mode requires the extra logic.
13998   const unsigned ForIncrementFlags =
13999       getLangOpts().C99 || getLangOpts().CPlusPlus
14000           ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope
14001           : Scope::ContinueScope | Scope::BreakScope;
14002   const unsigned ForInitFlags = Scope::ControlScope | Scope::DeclScope;
14003   const unsigned ScopeFlags = getCurScope()->getFlags();
14004   if ((ScopeFlags & ForIncrementFlags) == ForIncrementFlags ||
14005       (ScopeFlags & ForInitFlags) == ForInitFlags)
14006     return;
14007 
14008   // If there are multiple comma operators used together, get the RHS of the
14009   // of the comma operator as the LHS.
14010   while (const BinaryOperator *BO = dyn_cast<BinaryOperator>(LHS)) {
14011     if (BO->getOpcode() != BO_Comma)
14012       break;
14013     LHS = BO->getRHS();
14014   }
14015 
14016   // Only allow some expressions on LHS to not warn.
14017   if (IgnoreCommaOperand(LHS))
14018     return;
14019 
14020   Diag(Loc, diag::warn_comma_operator);
14021   Diag(LHS->getBeginLoc(), diag::note_cast_to_void)
14022       << LHS->getSourceRange()
14023       << FixItHint::CreateInsertion(LHS->getBeginLoc(),
14024                                     LangOpts.CPlusPlus ? "static_cast<void>("
14025                                                        : "(void)(")
14026       << FixItHint::CreateInsertion(PP.getLocForEndOfToken(LHS->getEndLoc()),
14027                                     ")");
14028 }
14029 
14030 // C99 6.5.17
14031 static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS,
14032                                    SourceLocation Loc) {
14033   LHS = S.CheckPlaceholderExpr(LHS.get());
14034   RHS = S.CheckPlaceholderExpr(RHS.get());
14035   if (LHS.isInvalid() || RHS.isInvalid())
14036     return QualType();
14037 
14038   // C's comma performs lvalue conversion (C99 6.3.2.1) on both its
14039   // operands, but not unary promotions.
14040   // C++'s comma does not do any conversions at all (C++ [expr.comma]p1).
14041 
14042   // So we treat the LHS as a ignored value, and in C++ we allow the
14043   // containing site to determine what should be done with the RHS.
14044   LHS = S.IgnoredValueConversions(LHS.get());
14045   if (LHS.isInvalid())
14046     return QualType();
14047 
14048   S.DiagnoseUnusedExprResult(LHS.get(), diag::warn_unused_comma_left_operand);
14049 
14050   if (!S.getLangOpts().CPlusPlus) {
14051     RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
14052     if (RHS.isInvalid())
14053       return QualType();
14054     if (!RHS.get()->getType()->isVoidType())
14055       S.RequireCompleteType(Loc, RHS.get()->getType(),
14056                             diag::err_incomplete_type);
14057   }
14058 
14059   if (!S.getDiagnostics().isIgnored(diag::warn_comma_operator, Loc))
14060     S.DiagnoseCommaOperator(LHS.get(), Loc);
14061 
14062   return RHS.get()->getType();
14063 }
14064 
14065 /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
14066 /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
14067 static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op,
14068                                                ExprValueKind &VK,
14069                                                ExprObjectKind &OK,
14070                                                SourceLocation OpLoc,
14071                                                bool IsInc, bool IsPrefix) {
14072   if (Op->isTypeDependent())
14073     return S.Context.DependentTy;
14074 
14075   QualType ResType = Op->getType();
14076   // Atomic types can be used for increment / decrement where the non-atomic
14077   // versions can, so ignore the _Atomic() specifier for the purpose of
14078   // checking.
14079   if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
14080     ResType = ResAtomicType->getValueType();
14081 
14082   assert(!ResType.isNull() && "no type for increment/decrement expression");
14083 
14084   if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) {
14085     // Decrement of bool is not allowed.
14086     if (!IsInc) {
14087       S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
14088       return QualType();
14089     }
14090     // Increment of bool sets it to true, but is deprecated.
14091     S.Diag(OpLoc, S.getLangOpts().CPlusPlus17 ? diag::ext_increment_bool
14092                                               : diag::warn_increment_bool)
14093       << Op->getSourceRange();
14094   } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) {
14095     // Error on enum increments and decrements in C++ mode
14096     S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType;
14097     return QualType();
14098   } else if (ResType->isRealType()) {
14099     // OK!
14100   } else if (ResType->isPointerType()) {
14101     // C99 6.5.2.4p2, 6.5.6p2
14102     if (!checkArithmeticOpPointerOperand(S, OpLoc, Op))
14103       return QualType();
14104   } else if (ResType->isObjCObjectPointerType()) {
14105     // On modern runtimes, ObjC pointer arithmetic is forbidden.
14106     // Otherwise, we just need a complete type.
14107     if (checkArithmeticIncompletePointerType(S, OpLoc, Op) ||
14108         checkArithmeticOnObjCPointer(S, OpLoc, Op))
14109       return QualType();
14110   } else if (ResType->isAnyComplexType()) {
14111     // C99 does not support ++/-- on complex types, we allow as an extension.
14112     S.Diag(OpLoc, diag::ext_integer_increment_complex)
14113       << ResType << Op->getSourceRange();
14114   } else if (ResType->isPlaceholderType()) {
14115     ExprResult PR = S.CheckPlaceholderExpr(Op);
14116     if (PR.isInvalid()) return QualType();
14117     return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc,
14118                                           IsInc, IsPrefix);
14119   } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) {
14120     // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 )
14121   } else if (S.getLangOpts().ZVector && ResType->isVectorType() &&
14122              (ResType->castAs<VectorType>()->getVectorKind() !=
14123               VectorType::AltiVecBool)) {
14124     // The z vector extensions allow ++ and -- for non-bool vectors.
14125   } else if(S.getLangOpts().OpenCL && ResType->isVectorType() &&
14126             ResType->castAs<VectorType>()->getElementType()->isIntegerType()) {
14127     // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types.
14128   } else {
14129     S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
14130       << ResType << int(IsInc) << Op->getSourceRange();
14131     return QualType();
14132   }
14133   // At this point, we know we have a real, complex or pointer type.
14134   // Now make sure the operand is a modifiable lvalue.
14135   if (CheckForModifiableLvalue(Op, OpLoc, S))
14136     return QualType();
14137   if (S.getLangOpts().CPlusPlus20 && ResType.isVolatileQualified()) {
14138     // C++2a [expr.pre.inc]p1, [expr.post.inc]p1:
14139     //   An operand with volatile-qualified type is deprecated
14140     S.Diag(OpLoc, diag::warn_deprecated_increment_decrement_volatile)
14141         << IsInc << ResType;
14142   }
14143   // In C++, a prefix increment is the same type as the operand. Otherwise
14144   // (in C or with postfix), the increment is the unqualified type of the
14145   // operand.
14146   if (IsPrefix && S.getLangOpts().CPlusPlus) {
14147     VK = VK_LValue;
14148     OK = Op->getObjectKind();
14149     return ResType;
14150   } else {
14151     VK = VK_PRValue;
14152     return ResType.getUnqualifiedType();
14153   }
14154 }
14155 
14156 
14157 /// getPrimaryDecl - Helper function for CheckAddressOfOperand().
14158 /// This routine allows us to typecheck complex/recursive expressions
14159 /// where the declaration is needed for type checking. We only need to
14160 /// handle cases when the expression references a function designator
14161 /// or is an lvalue. Here are some examples:
14162 ///  - &(x) => x
14163 ///  - &*****f => f for f a function designator.
14164 ///  - &s.xx => s
14165 ///  - &s.zz[1].yy -> s, if zz is an array
14166 ///  - *(x + 1) -> x, if x is an array
14167 ///  - &"123"[2] -> 0
14168 ///  - & __real__ x -> x
14169 ///
14170 /// FIXME: We don't recurse to the RHS of a comma, nor handle pointers to
14171 /// members.
14172 static ValueDecl *getPrimaryDecl(Expr *E) {
14173   switch (E->getStmtClass()) {
14174   case Stmt::DeclRefExprClass:
14175     return cast<DeclRefExpr>(E)->getDecl();
14176   case Stmt::MemberExprClass:
14177     // If this is an arrow operator, the address is an offset from
14178     // the base's value, so the object the base refers to is
14179     // irrelevant.
14180     if (cast<MemberExpr>(E)->isArrow())
14181       return nullptr;
14182     // Otherwise, the expression refers to a part of the base
14183     return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
14184   case Stmt::ArraySubscriptExprClass: {
14185     // FIXME: This code shouldn't be necessary!  We should catch the implicit
14186     // promotion of register arrays earlier.
14187     Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
14188     if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
14189       if (ICE->getSubExpr()->getType()->isArrayType())
14190         return getPrimaryDecl(ICE->getSubExpr());
14191     }
14192     return nullptr;
14193   }
14194   case Stmt::UnaryOperatorClass: {
14195     UnaryOperator *UO = cast<UnaryOperator>(E);
14196 
14197     switch(UO->getOpcode()) {
14198     case UO_Real:
14199     case UO_Imag:
14200     case UO_Extension:
14201       return getPrimaryDecl(UO->getSubExpr());
14202     default:
14203       return nullptr;
14204     }
14205   }
14206   case Stmt::ParenExprClass:
14207     return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
14208   case Stmt::ImplicitCastExprClass:
14209     // If the result of an implicit cast is an l-value, we care about
14210     // the sub-expression; otherwise, the result here doesn't matter.
14211     return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
14212   case Stmt::CXXUuidofExprClass:
14213     return cast<CXXUuidofExpr>(E)->getGuidDecl();
14214   default:
14215     return nullptr;
14216   }
14217 }
14218 
14219 namespace {
14220 enum {
14221   AO_Bit_Field = 0,
14222   AO_Vector_Element = 1,
14223   AO_Property_Expansion = 2,
14224   AO_Register_Variable = 3,
14225   AO_Matrix_Element = 4,
14226   AO_No_Error = 5
14227 };
14228 }
14229 /// Diagnose invalid operand for address of operations.
14230 ///
14231 /// \param Type The type of operand which cannot have its address taken.
14232 static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc,
14233                                          Expr *E, unsigned Type) {
14234   S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange();
14235 }
14236 
14237 /// CheckAddressOfOperand - The operand of & must be either a function
14238 /// designator or an lvalue designating an object. If it is an lvalue, the
14239 /// object cannot be declared with storage class register or be a bit field.
14240 /// Note: The usual conversions are *not* applied to the operand of the &
14241 /// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
14242 /// In C++, the operand might be an overloaded function name, in which case
14243 /// we allow the '&' but retain the overloaded-function type.
14244 QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) {
14245   if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){
14246     if (PTy->getKind() == BuiltinType::Overload) {
14247       Expr *E = OrigOp.get()->IgnoreParens();
14248       if (!isa<OverloadExpr>(E)) {
14249         assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf);
14250         Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function)
14251           << OrigOp.get()->getSourceRange();
14252         return QualType();
14253       }
14254 
14255       OverloadExpr *Ovl = cast<OverloadExpr>(E);
14256       if (isa<UnresolvedMemberExpr>(Ovl))
14257         if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) {
14258           Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
14259             << OrigOp.get()->getSourceRange();
14260           return QualType();
14261         }
14262 
14263       return Context.OverloadTy;
14264     }
14265 
14266     if (PTy->getKind() == BuiltinType::UnknownAny)
14267       return Context.UnknownAnyTy;
14268 
14269     if (PTy->getKind() == BuiltinType::BoundMember) {
14270       Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
14271         << OrigOp.get()->getSourceRange();
14272       return QualType();
14273     }
14274 
14275     OrigOp = CheckPlaceholderExpr(OrigOp.get());
14276     if (OrigOp.isInvalid()) return QualType();
14277   }
14278 
14279   if (OrigOp.get()->isTypeDependent())
14280     return Context.DependentTy;
14281 
14282   assert(!OrigOp.get()->hasPlaceholderType());
14283 
14284   // Make sure to ignore parentheses in subsequent checks
14285   Expr *op = OrigOp.get()->IgnoreParens();
14286 
14287   // In OpenCL captures for blocks called as lambda functions
14288   // are located in the private address space. Blocks used in
14289   // enqueue_kernel can be located in a different address space
14290   // depending on a vendor implementation. Thus preventing
14291   // taking an address of the capture to avoid invalid AS casts.
14292   if (LangOpts.OpenCL) {
14293     auto* VarRef = dyn_cast<DeclRefExpr>(op);
14294     if (VarRef && VarRef->refersToEnclosingVariableOrCapture()) {
14295       Diag(op->getExprLoc(), diag::err_opencl_taking_address_capture);
14296       return QualType();
14297     }
14298   }
14299 
14300   if (getLangOpts().C99) {
14301     // Implement C99-only parts of addressof rules.
14302     if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
14303       if (uOp->getOpcode() == UO_Deref)
14304         // Per C99 6.5.3.2, the address of a deref always returns a valid result
14305         // (assuming the deref expression is valid).
14306         return uOp->getSubExpr()->getType();
14307     }
14308     // Technically, there should be a check for array subscript
14309     // expressions here, but the result of one is always an lvalue anyway.
14310   }
14311   ValueDecl *dcl = getPrimaryDecl(op);
14312 
14313   if (auto *FD = dyn_cast_or_null<FunctionDecl>(dcl))
14314     if (!checkAddressOfFunctionIsAvailable(FD, /*Complain=*/true,
14315                                            op->getBeginLoc()))
14316       return QualType();
14317 
14318   Expr::LValueClassification lval = op->ClassifyLValue(Context);
14319   unsigned AddressOfError = AO_No_Error;
14320 
14321   if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) {
14322     bool sfinae = (bool)isSFINAEContext();
14323     Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary
14324                                   : diag::ext_typecheck_addrof_temporary)
14325       << op->getType() << op->getSourceRange();
14326     if (sfinae)
14327       return QualType();
14328     // Materialize the temporary as an lvalue so that we can take its address.
14329     OrigOp = op =
14330         CreateMaterializeTemporaryExpr(op->getType(), OrigOp.get(), true);
14331   } else if (isa<ObjCSelectorExpr>(op)) {
14332     return Context.getPointerType(op->getType());
14333   } else if (lval == Expr::LV_MemberFunction) {
14334     // If it's an instance method, make a member pointer.
14335     // The expression must have exactly the form &A::foo.
14336 
14337     // If the underlying expression isn't a decl ref, give up.
14338     if (!isa<DeclRefExpr>(op)) {
14339       Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
14340         << OrigOp.get()->getSourceRange();
14341       return QualType();
14342     }
14343     DeclRefExpr *DRE = cast<DeclRefExpr>(op);
14344     CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl());
14345 
14346     // The id-expression was parenthesized.
14347     if (OrigOp.get() != DRE) {
14348       Diag(OpLoc, diag::err_parens_pointer_member_function)
14349         << OrigOp.get()->getSourceRange();
14350 
14351     // The method was named without a qualifier.
14352     } else if (!DRE->getQualifier()) {
14353       if (MD->getParent()->getName().empty())
14354         Diag(OpLoc, diag::err_unqualified_pointer_member_function)
14355           << op->getSourceRange();
14356       else {
14357         SmallString<32> Str;
14358         StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str);
14359         Diag(OpLoc, diag::err_unqualified_pointer_member_function)
14360           << op->getSourceRange()
14361           << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual);
14362       }
14363     }
14364 
14365     // Taking the address of a dtor is illegal per C++ [class.dtor]p2.
14366     if (isa<CXXDestructorDecl>(MD))
14367       Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange();
14368 
14369     QualType MPTy = Context.getMemberPointerType(
14370         op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr());
14371     // Under the MS ABI, lock down the inheritance model now.
14372     if (Context.getTargetInfo().getCXXABI().isMicrosoft())
14373       (void)isCompleteType(OpLoc, MPTy);
14374     return MPTy;
14375   } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
14376     // C99 6.5.3.2p1
14377     // The operand must be either an l-value or a function designator
14378     if (!op->getType()->isFunctionType()) {
14379       // Use a special diagnostic for loads from property references.
14380       if (isa<PseudoObjectExpr>(op)) {
14381         AddressOfError = AO_Property_Expansion;
14382       } else {
14383         Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
14384           << op->getType() << op->getSourceRange();
14385         return QualType();
14386       }
14387     }
14388   } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1
14389     // The operand cannot be a bit-field
14390     AddressOfError = AO_Bit_Field;
14391   } else if (op->getObjectKind() == OK_VectorComponent) {
14392     // The operand cannot be an element of a vector
14393     AddressOfError = AO_Vector_Element;
14394   } else if (op->getObjectKind() == OK_MatrixComponent) {
14395     // The operand cannot be an element of a matrix.
14396     AddressOfError = AO_Matrix_Element;
14397   } else if (dcl) { // C99 6.5.3.2p1
14398     // We have an lvalue with a decl. Make sure the decl is not declared
14399     // with the register storage-class specifier.
14400     if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
14401       // in C++ it is not error to take address of a register
14402       // variable (c++03 7.1.1P3)
14403       if (vd->getStorageClass() == SC_Register &&
14404           !getLangOpts().CPlusPlus) {
14405         AddressOfError = AO_Register_Variable;
14406       }
14407     } else if (isa<MSPropertyDecl>(dcl)) {
14408       AddressOfError = AO_Property_Expansion;
14409     } else if (isa<FunctionTemplateDecl>(dcl)) {
14410       return Context.OverloadTy;
14411     } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) {
14412       // Okay: we can take the address of a field.
14413       // Could be a pointer to member, though, if there is an explicit
14414       // scope qualifier for the class.
14415       if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
14416         DeclContext *Ctx = dcl->getDeclContext();
14417         if (Ctx && Ctx->isRecord()) {
14418           if (dcl->getType()->isReferenceType()) {
14419             Diag(OpLoc,
14420                  diag::err_cannot_form_pointer_to_member_of_reference_type)
14421               << dcl->getDeclName() << dcl->getType();
14422             return QualType();
14423           }
14424 
14425           while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion())
14426             Ctx = Ctx->getParent();
14427 
14428           QualType MPTy = Context.getMemberPointerType(
14429               op->getType(),
14430               Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
14431           // Under the MS ABI, lock down the inheritance model now.
14432           if (Context.getTargetInfo().getCXXABI().isMicrosoft())
14433             (void)isCompleteType(OpLoc, MPTy);
14434           return MPTy;
14435         }
14436       }
14437     } else if (!isa<FunctionDecl, NonTypeTemplateParmDecl, BindingDecl,
14438                     MSGuidDecl, UnnamedGlobalConstantDecl>(dcl))
14439       llvm_unreachable("Unknown/unexpected decl type");
14440   }
14441 
14442   if (AddressOfError != AO_No_Error) {
14443     diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError);
14444     return QualType();
14445   }
14446 
14447   if (lval == Expr::LV_IncompleteVoidType) {
14448     // Taking the address of a void variable is technically illegal, but we
14449     // allow it in cases which are otherwise valid.
14450     // Example: "extern void x; void* y = &x;".
14451     Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
14452   }
14453 
14454   // If the operand has type "type", the result has type "pointer to type".
14455   if (op->getType()->isObjCObjectType())
14456     return Context.getObjCObjectPointerType(op->getType());
14457 
14458   CheckAddressOfPackedMember(op);
14459 
14460   return Context.getPointerType(op->getType());
14461 }
14462 
14463 static void RecordModifiableNonNullParam(Sema &S, const Expr *Exp) {
14464   const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp);
14465   if (!DRE)
14466     return;
14467   const Decl *D = DRE->getDecl();
14468   if (!D)
14469     return;
14470   const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D);
14471   if (!Param)
14472     return;
14473   if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(Param->getDeclContext()))
14474     if (!FD->hasAttr<NonNullAttr>() && !Param->hasAttr<NonNullAttr>())
14475       return;
14476   if (FunctionScopeInfo *FD = S.getCurFunction())
14477     FD->ModifiedNonNullParams.insert(Param);
14478 }
14479 
14480 /// CheckIndirectionOperand - Type check unary indirection (prefix '*').
14481 static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK,
14482                                         SourceLocation OpLoc) {
14483   if (Op->isTypeDependent())
14484     return S.Context.DependentTy;
14485 
14486   ExprResult ConvResult = S.UsualUnaryConversions(Op);
14487   if (ConvResult.isInvalid())
14488     return QualType();
14489   Op = ConvResult.get();
14490   QualType OpTy = Op->getType();
14491   QualType Result;
14492 
14493   if (isa<CXXReinterpretCastExpr>(Op)) {
14494     QualType OpOrigType = Op->IgnoreParenCasts()->getType();
14495     S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
14496                                      Op->getSourceRange());
14497   }
14498 
14499   if (const PointerType *PT = OpTy->getAs<PointerType>())
14500   {
14501     Result = PT->getPointeeType();
14502   }
14503   else if (const ObjCObjectPointerType *OPT =
14504              OpTy->getAs<ObjCObjectPointerType>())
14505     Result = OPT->getPointeeType();
14506   else {
14507     ExprResult PR = S.CheckPlaceholderExpr(Op);
14508     if (PR.isInvalid()) return QualType();
14509     if (PR.get() != Op)
14510       return CheckIndirectionOperand(S, PR.get(), VK, OpLoc);
14511   }
14512 
14513   if (Result.isNull()) {
14514     S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
14515       << OpTy << Op->getSourceRange();
14516     return QualType();
14517   }
14518 
14519   // Note that per both C89 and C99, indirection is always legal, even if Result
14520   // is an incomplete type or void.  It would be possible to warn about
14521   // dereferencing a void pointer, but it's completely well-defined, and such a
14522   // warning is unlikely to catch any mistakes. In C++, indirection is not valid
14523   // for pointers to 'void' but is fine for any other pointer type:
14524   //
14525   // C++ [expr.unary.op]p1:
14526   //   [...] the expression to which [the unary * operator] is applied shall
14527   //   be a pointer to an object type, or a pointer to a function type
14528   if (S.getLangOpts().CPlusPlus && Result->isVoidType())
14529     S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer)
14530       << OpTy << Op->getSourceRange();
14531 
14532   // Dereferences are usually l-values...
14533   VK = VK_LValue;
14534 
14535   // ...except that certain expressions are never l-values in C.
14536   if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType())
14537     VK = VK_PRValue;
14538 
14539   return Result;
14540 }
14541 
14542 BinaryOperatorKind Sema::ConvertTokenKindToBinaryOpcode(tok::TokenKind Kind) {
14543   BinaryOperatorKind Opc;
14544   switch (Kind) {
14545   default: llvm_unreachable("Unknown binop!");
14546   case tok::periodstar:           Opc = BO_PtrMemD; break;
14547   case tok::arrowstar:            Opc = BO_PtrMemI; break;
14548   case tok::star:                 Opc = BO_Mul; break;
14549   case tok::slash:                Opc = BO_Div; break;
14550   case tok::percent:              Opc = BO_Rem; break;
14551   case tok::plus:                 Opc = BO_Add; break;
14552   case tok::minus:                Opc = BO_Sub; break;
14553   case tok::lessless:             Opc = BO_Shl; break;
14554   case tok::greatergreater:       Opc = BO_Shr; break;
14555   case tok::lessequal:            Opc = BO_LE; break;
14556   case tok::less:                 Opc = BO_LT; break;
14557   case tok::greaterequal:         Opc = BO_GE; break;
14558   case tok::greater:              Opc = BO_GT; break;
14559   case tok::exclaimequal:         Opc = BO_NE; break;
14560   case tok::equalequal:           Opc = BO_EQ; break;
14561   case tok::spaceship:            Opc = BO_Cmp; break;
14562   case tok::amp:                  Opc = BO_And; break;
14563   case tok::caret:                Opc = BO_Xor; break;
14564   case tok::pipe:                 Opc = BO_Or; break;
14565   case tok::ampamp:               Opc = BO_LAnd; break;
14566   case tok::pipepipe:             Opc = BO_LOr; break;
14567   case tok::equal:                Opc = BO_Assign; break;
14568   case tok::starequal:            Opc = BO_MulAssign; break;
14569   case tok::slashequal:           Opc = BO_DivAssign; break;
14570   case tok::percentequal:         Opc = BO_RemAssign; break;
14571   case tok::plusequal:            Opc = BO_AddAssign; break;
14572   case tok::minusequal:           Opc = BO_SubAssign; break;
14573   case tok::lesslessequal:        Opc = BO_ShlAssign; break;
14574   case tok::greatergreaterequal:  Opc = BO_ShrAssign; break;
14575   case tok::ampequal:             Opc = BO_AndAssign; break;
14576   case tok::caretequal:           Opc = BO_XorAssign; break;
14577   case tok::pipeequal:            Opc = BO_OrAssign; break;
14578   case tok::comma:                Opc = BO_Comma; break;
14579   }
14580   return Opc;
14581 }
14582 
14583 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode(
14584   tok::TokenKind Kind) {
14585   UnaryOperatorKind Opc;
14586   switch (Kind) {
14587   default: llvm_unreachable("Unknown unary op!");
14588   case tok::plusplus:     Opc = UO_PreInc; break;
14589   case tok::minusminus:   Opc = UO_PreDec; break;
14590   case tok::amp:          Opc = UO_AddrOf; break;
14591   case tok::star:         Opc = UO_Deref; break;
14592   case tok::plus:         Opc = UO_Plus; break;
14593   case tok::minus:        Opc = UO_Minus; break;
14594   case tok::tilde:        Opc = UO_Not; break;
14595   case tok::exclaim:      Opc = UO_LNot; break;
14596   case tok::kw___real:    Opc = UO_Real; break;
14597   case tok::kw___imag:    Opc = UO_Imag; break;
14598   case tok::kw___extension__: Opc = UO_Extension; break;
14599   }
14600   return Opc;
14601 }
14602 
14603 /// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself.
14604 /// This warning suppressed in the event of macro expansions.
14605 static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr,
14606                                    SourceLocation OpLoc, bool IsBuiltin) {
14607   if (S.inTemplateInstantiation())
14608     return;
14609   if (S.isUnevaluatedContext())
14610     return;
14611   if (OpLoc.isInvalid() || OpLoc.isMacroID())
14612     return;
14613   LHSExpr = LHSExpr->IgnoreParenImpCasts();
14614   RHSExpr = RHSExpr->IgnoreParenImpCasts();
14615   const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
14616   const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
14617   if (!LHSDeclRef || !RHSDeclRef ||
14618       LHSDeclRef->getLocation().isMacroID() ||
14619       RHSDeclRef->getLocation().isMacroID())
14620     return;
14621   const ValueDecl *LHSDecl =
14622     cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl());
14623   const ValueDecl *RHSDecl =
14624     cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl());
14625   if (LHSDecl != RHSDecl)
14626     return;
14627   if (LHSDecl->getType().isVolatileQualified())
14628     return;
14629   if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
14630     if (RefTy->getPointeeType().isVolatileQualified())
14631       return;
14632 
14633   S.Diag(OpLoc, IsBuiltin ? diag::warn_self_assignment_builtin
14634                           : diag::warn_self_assignment_overloaded)
14635       << LHSDeclRef->getType() << LHSExpr->getSourceRange()
14636       << RHSExpr->getSourceRange();
14637 }
14638 
14639 /// Check if a bitwise-& is performed on an Objective-C pointer.  This
14640 /// is usually indicative of introspection within the Objective-C pointer.
14641 static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R,
14642                                           SourceLocation OpLoc) {
14643   if (!S.getLangOpts().ObjC)
14644     return;
14645 
14646   const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr;
14647   const Expr *LHS = L.get();
14648   const Expr *RHS = R.get();
14649 
14650   if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
14651     ObjCPointerExpr = LHS;
14652     OtherExpr = RHS;
14653   }
14654   else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
14655     ObjCPointerExpr = RHS;
14656     OtherExpr = LHS;
14657   }
14658 
14659   // This warning is deliberately made very specific to reduce false
14660   // positives with logic that uses '&' for hashing.  This logic mainly
14661   // looks for code trying to introspect into tagged pointers, which
14662   // code should generally never do.
14663   if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) {
14664     unsigned Diag = diag::warn_objc_pointer_masking;
14665     // Determine if we are introspecting the result of performSelectorXXX.
14666     const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts();
14667     // Special case messages to -performSelector and friends, which
14668     // can return non-pointer values boxed in a pointer value.
14669     // Some clients may wish to silence warnings in this subcase.
14670     if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) {
14671       Selector S = ME->getSelector();
14672       StringRef SelArg0 = S.getNameForSlot(0);
14673       if (SelArg0.startswith("performSelector"))
14674         Diag = diag::warn_objc_pointer_masking_performSelector;
14675     }
14676 
14677     S.Diag(OpLoc, Diag)
14678       << ObjCPointerExpr->getSourceRange();
14679   }
14680 }
14681 
14682 static NamedDecl *getDeclFromExpr(Expr *E) {
14683   if (!E)
14684     return nullptr;
14685   if (auto *DRE = dyn_cast<DeclRefExpr>(E))
14686     return DRE->getDecl();
14687   if (auto *ME = dyn_cast<MemberExpr>(E))
14688     return ME->getMemberDecl();
14689   if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E))
14690     return IRE->getDecl();
14691   return nullptr;
14692 }
14693 
14694 // This helper function promotes a binary operator's operands (which are of a
14695 // half vector type) to a vector of floats and then truncates the result to
14696 // a vector of either half or short.
14697 static ExprResult convertHalfVecBinOp(Sema &S, ExprResult LHS, ExprResult RHS,
14698                                       BinaryOperatorKind Opc, QualType ResultTy,
14699                                       ExprValueKind VK, ExprObjectKind OK,
14700                                       bool IsCompAssign, SourceLocation OpLoc,
14701                                       FPOptionsOverride FPFeatures) {
14702   auto &Context = S.getASTContext();
14703   assert((isVector(ResultTy, Context.HalfTy) ||
14704           isVector(ResultTy, Context.ShortTy)) &&
14705          "Result must be a vector of half or short");
14706   assert(isVector(LHS.get()->getType(), Context.HalfTy) &&
14707          isVector(RHS.get()->getType(), Context.HalfTy) &&
14708          "both operands expected to be a half vector");
14709 
14710   RHS = convertVector(RHS.get(), Context.FloatTy, S);
14711   QualType BinOpResTy = RHS.get()->getType();
14712 
14713   // If Opc is a comparison, ResultType is a vector of shorts. In that case,
14714   // change BinOpResTy to a vector of ints.
14715   if (isVector(ResultTy, Context.ShortTy))
14716     BinOpResTy = S.GetSignedVectorType(BinOpResTy);
14717 
14718   if (IsCompAssign)
14719     return CompoundAssignOperator::Create(Context, LHS.get(), RHS.get(), Opc,
14720                                           ResultTy, VK, OK, OpLoc, FPFeatures,
14721                                           BinOpResTy, BinOpResTy);
14722 
14723   LHS = convertVector(LHS.get(), Context.FloatTy, S);
14724   auto *BO = BinaryOperator::Create(Context, LHS.get(), RHS.get(), Opc,
14725                                     BinOpResTy, VK, OK, OpLoc, FPFeatures);
14726   return convertVector(BO, ResultTy->castAs<VectorType>()->getElementType(), S);
14727 }
14728 
14729 static std::pair<ExprResult, ExprResult>
14730 CorrectDelayedTyposInBinOp(Sema &S, BinaryOperatorKind Opc, Expr *LHSExpr,
14731                            Expr *RHSExpr) {
14732   ExprResult LHS = LHSExpr, RHS = RHSExpr;
14733   if (!S.Context.isDependenceAllowed()) {
14734     // C cannot handle TypoExpr nodes on either side of a binop because it
14735     // doesn't handle dependent types properly, so make sure any TypoExprs have
14736     // been dealt with before checking the operands.
14737     LHS = S.CorrectDelayedTyposInExpr(LHS);
14738     RHS = S.CorrectDelayedTyposInExpr(
14739         RHS, /*InitDecl=*/nullptr, /*RecoverUncorrectedTypos=*/false,
14740         [Opc, LHS](Expr *E) {
14741           if (Opc != BO_Assign)
14742             return ExprResult(E);
14743           // Avoid correcting the RHS to the same Expr as the LHS.
14744           Decl *D = getDeclFromExpr(E);
14745           return (D && D == getDeclFromExpr(LHS.get())) ? ExprError() : E;
14746         });
14747   }
14748   return std::make_pair(LHS, RHS);
14749 }
14750 
14751 /// Returns true if conversion between vectors of halfs and vectors of floats
14752 /// is needed.
14753 static bool needsConversionOfHalfVec(bool OpRequiresConversion, ASTContext &Ctx,
14754                                      Expr *E0, Expr *E1 = nullptr) {
14755   if (!OpRequiresConversion || Ctx.getLangOpts().NativeHalfType ||
14756       Ctx.getTargetInfo().useFP16ConversionIntrinsics())
14757     return false;
14758 
14759   auto HasVectorOfHalfType = [&Ctx](Expr *E) {
14760     QualType Ty = E->IgnoreImplicit()->getType();
14761 
14762     // Don't promote half precision neon vectors like float16x4_t in arm_neon.h
14763     // to vectors of floats. Although the element type of the vectors is __fp16,
14764     // the vectors shouldn't be treated as storage-only types. See the
14765     // discussion here: https://reviews.llvm.org/rG825235c140e7
14766     if (const VectorType *VT = Ty->getAs<VectorType>()) {
14767       if (VT->getVectorKind() == VectorType::NeonVector)
14768         return false;
14769       return VT->getElementType().getCanonicalType() == Ctx.HalfTy;
14770     }
14771     return false;
14772   };
14773 
14774   return HasVectorOfHalfType(E0) && (!E1 || HasVectorOfHalfType(E1));
14775 }
14776 
14777 /// CreateBuiltinBinOp - Creates a new built-in binary operation with
14778 /// operator @p Opc at location @c TokLoc. This routine only supports
14779 /// built-in operations; ActOnBinOp handles overloaded operators.
14780 ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
14781                                     BinaryOperatorKind Opc,
14782                                     Expr *LHSExpr, Expr *RHSExpr) {
14783   if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) {
14784     // The syntax only allows initializer lists on the RHS of assignment,
14785     // so we don't need to worry about accepting invalid code for
14786     // non-assignment operators.
14787     // C++11 5.17p9:
14788     //   The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning
14789     //   of x = {} is x = T().
14790     InitializationKind Kind = InitializationKind::CreateDirectList(
14791         RHSExpr->getBeginLoc(), RHSExpr->getBeginLoc(), RHSExpr->getEndLoc());
14792     InitializedEntity Entity =
14793         InitializedEntity::InitializeTemporary(LHSExpr->getType());
14794     InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr);
14795     ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr);
14796     if (Init.isInvalid())
14797       return Init;
14798     RHSExpr = Init.get();
14799   }
14800 
14801   ExprResult LHS = LHSExpr, RHS = RHSExpr;
14802   QualType ResultTy;     // Result type of the binary operator.
14803   // The following two variables are used for compound assignment operators
14804   QualType CompLHSTy;    // Type of LHS after promotions for computation
14805   QualType CompResultTy; // Type of computation result
14806   ExprValueKind VK = VK_PRValue;
14807   ExprObjectKind OK = OK_Ordinary;
14808   bool ConvertHalfVec = false;
14809 
14810   std::tie(LHS, RHS) = CorrectDelayedTyposInBinOp(*this, Opc, LHSExpr, RHSExpr);
14811   if (!LHS.isUsable() || !RHS.isUsable())
14812     return ExprError();
14813 
14814   if (getLangOpts().OpenCL) {
14815     QualType LHSTy = LHSExpr->getType();
14816     QualType RHSTy = RHSExpr->getType();
14817     // OpenCLC v2.0 s6.13.11.1 allows atomic variables to be initialized by
14818     // the ATOMIC_VAR_INIT macro.
14819     if (LHSTy->isAtomicType() || RHSTy->isAtomicType()) {
14820       SourceRange SR(LHSExpr->getBeginLoc(), RHSExpr->getEndLoc());
14821       if (BO_Assign == Opc)
14822         Diag(OpLoc, diag::err_opencl_atomic_init) << 0 << SR;
14823       else
14824         ResultTy = InvalidOperands(OpLoc, LHS, RHS);
14825       return ExprError();
14826     }
14827 
14828     // OpenCL special types - image, sampler, pipe, and blocks are to be used
14829     // only with a builtin functions and therefore should be disallowed here.
14830     if (LHSTy->isImageType() || RHSTy->isImageType() ||
14831         LHSTy->isSamplerT() || RHSTy->isSamplerT() ||
14832         LHSTy->isPipeType() || RHSTy->isPipeType() ||
14833         LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
14834       ResultTy = InvalidOperands(OpLoc, LHS, RHS);
14835       return ExprError();
14836     }
14837   }
14838 
14839   checkTypeSupport(LHSExpr->getType(), OpLoc, /*ValueDecl*/ nullptr);
14840   checkTypeSupport(RHSExpr->getType(), OpLoc, /*ValueDecl*/ nullptr);
14841 
14842   switch (Opc) {
14843   case BO_Assign:
14844     ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
14845     if (getLangOpts().CPlusPlus &&
14846         LHS.get()->getObjectKind() != OK_ObjCProperty) {
14847       VK = LHS.get()->getValueKind();
14848       OK = LHS.get()->getObjectKind();
14849     }
14850     if (!ResultTy.isNull()) {
14851       DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc, true);
14852       DiagnoseSelfMove(LHS.get(), RHS.get(), OpLoc);
14853 
14854       // Avoid copying a block to the heap if the block is assigned to a local
14855       // auto variable that is declared in the same scope as the block. This
14856       // optimization is unsafe if the local variable is declared in an outer
14857       // scope. For example:
14858       //
14859       // BlockTy b;
14860       // {
14861       //   b = ^{...};
14862       // }
14863       // // It is unsafe to invoke the block here if it wasn't copied to the
14864       // // heap.
14865       // b();
14866 
14867       if (auto *BE = dyn_cast<BlockExpr>(RHS.get()->IgnoreParens()))
14868         if (auto *DRE = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParens()))
14869           if (auto *VD = dyn_cast<VarDecl>(DRE->getDecl()))
14870             if (VD->hasLocalStorage() && getCurScope()->isDeclScope(VD))
14871               BE->getBlockDecl()->setCanAvoidCopyToHeap();
14872 
14873       if (LHS.get()->getType().hasNonTrivialToPrimitiveCopyCUnion())
14874         checkNonTrivialCUnion(LHS.get()->getType(), LHS.get()->getExprLoc(),
14875                               NTCUC_Assignment, NTCUK_Copy);
14876     }
14877     RecordModifiableNonNullParam(*this, LHS.get());
14878     break;
14879   case BO_PtrMemD:
14880   case BO_PtrMemI:
14881     ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
14882                                             Opc == BO_PtrMemI);
14883     break;
14884   case BO_Mul:
14885   case BO_Div:
14886     ConvertHalfVec = true;
14887     ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
14888                                            Opc == BO_Div);
14889     break;
14890   case BO_Rem:
14891     ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
14892     break;
14893   case BO_Add:
14894     ConvertHalfVec = true;
14895     ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
14896     break;
14897   case BO_Sub:
14898     ConvertHalfVec = true;
14899     ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
14900     break;
14901   case BO_Shl:
14902   case BO_Shr:
14903     ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
14904     break;
14905   case BO_LE:
14906   case BO_LT:
14907   case BO_GE:
14908   case BO_GT:
14909     ConvertHalfVec = true;
14910     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc);
14911     break;
14912   case BO_EQ:
14913   case BO_NE:
14914     ConvertHalfVec = true;
14915     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc);
14916     break;
14917   case BO_Cmp:
14918     ConvertHalfVec = true;
14919     ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc);
14920     assert(ResultTy.isNull() || ResultTy->getAsCXXRecordDecl());
14921     break;
14922   case BO_And:
14923     checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc);
14924     LLVM_FALLTHROUGH;
14925   case BO_Xor:
14926   case BO_Or:
14927     ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, Opc);
14928     break;
14929   case BO_LAnd:
14930   case BO_LOr:
14931     ConvertHalfVec = true;
14932     ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
14933     break;
14934   case BO_MulAssign:
14935   case BO_DivAssign:
14936     ConvertHalfVec = true;
14937     CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true,
14938                                                Opc == BO_DivAssign);
14939     CompLHSTy = CompResultTy;
14940     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
14941       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
14942     break;
14943   case BO_RemAssign:
14944     CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true);
14945     CompLHSTy = CompResultTy;
14946     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
14947       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
14948     break;
14949   case BO_AddAssign:
14950     ConvertHalfVec = true;
14951     CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy);
14952     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
14953       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
14954     break;
14955   case BO_SubAssign:
14956     ConvertHalfVec = true;
14957     CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy);
14958     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
14959       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
14960     break;
14961   case BO_ShlAssign:
14962   case BO_ShrAssign:
14963     CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true);
14964     CompLHSTy = CompResultTy;
14965     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
14966       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
14967     break;
14968   case BO_AndAssign:
14969   case BO_OrAssign: // fallthrough
14970     DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc, true);
14971     LLVM_FALLTHROUGH;
14972   case BO_XorAssign:
14973     CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, Opc);
14974     CompLHSTy = CompResultTy;
14975     if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
14976       ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
14977     break;
14978   case BO_Comma:
14979     ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
14980     if (getLangOpts().CPlusPlus && !RHS.isInvalid()) {
14981       VK = RHS.get()->getValueKind();
14982       OK = RHS.get()->getObjectKind();
14983     }
14984     break;
14985   }
14986   if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
14987     return ExprError();
14988 
14989   // Some of the binary operations require promoting operands of half vector to
14990   // float vectors and truncating the result back to half vector. For now, we do
14991   // this only when HalfArgsAndReturn is set (that is, when the target is arm or
14992   // arm64).
14993   assert(
14994       (Opc == BO_Comma || isVector(RHS.get()->getType(), Context.HalfTy) ==
14995                               isVector(LHS.get()->getType(), Context.HalfTy)) &&
14996       "both sides are half vectors or neither sides are");
14997   ConvertHalfVec =
14998       needsConversionOfHalfVec(ConvertHalfVec, Context, LHS.get(), RHS.get());
14999 
15000   // Check for array bounds violations for both sides of the BinaryOperator
15001   CheckArrayAccess(LHS.get());
15002   CheckArrayAccess(RHS.get());
15003 
15004   if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) {
15005     NamedDecl *ObjectSetClass = LookupSingleName(TUScope,
15006                                                  &Context.Idents.get("object_setClass"),
15007                                                  SourceLocation(), LookupOrdinaryName);
15008     if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) {
15009       SourceLocation RHSLocEnd = getLocForEndOfToken(RHS.get()->getEndLoc());
15010       Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign)
15011           << FixItHint::CreateInsertion(LHS.get()->getBeginLoc(),
15012                                         "object_setClass(")
15013           << FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc),
15014                                           ",")
15015           << FixItHint::CreateInsertion(RHSLocEnd, ")");
15016     }
15017     else
15018       Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign);
15019   }
15020   else if (const ObjCIvarRefExpr *OIRE =
15021            dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts()))
15022     DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get());
15023 
15024   // Opc is not a compound assignment if CompResultTy is null.
15025   if (CompResultTy.isNull()) {
15026     if (ConvertHalfVec)
15027       return convertHalfVecBinOp(*this, LHS, RHS, Opc, ResultTy, VK, OK, false,
15028                                  OpLoc, CurFPFeatureOverrides());
15029     return BinaryOperator::Create(Context, LHS.get(), RHS.get(), Opc, ResultTy,
15030                                   VK, OK, OpLoc, CurFPFeatureOverrides());
15031   }
15032 
15033   // Handle compound assignments.
15034   if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() !=
15035       OK_ObjCProperty) {
15036     VK = VK_LValue;
15037     OK = LHS.get()->getObjectKind();
15038   }
15039 
15040   // The LHS is not converted to the result type for fixed-point compound
15041   // assignment as the common type is computed on demand. Reset the CompLHSTy
15042   // to the LHS type we would have gotten after unary conversions.
15043   if (CompResultTy->isFixedPointType())
15044     CompLHSTy = UsualUnaryConversions(LHS.get()).get()->getType();
15045 
15046   if (ConvertHalfVec)
15047     return convertHalfVecBinOp(*this, LHS, RHS, Opc, ResultTy, VK, OK, true,
15048                                OpLoc, CurFPFeatureOverrides());
15049 
15050   return CompoundAssignOperator::Create(
15051       Context, LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, OpLoc,
15052       CurFPFeatureOverrides(), CompLHSTy, CompResultTy);
15053 }
15054 
15055 /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
15056 /// operators are mixed in a way that suggests that the programmer forgot that
15057 /// comparison operators have higher precedence. The most typical example of
15058 /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
15059 static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc,
15060                                       SourceLocation OpLoc, Expr *LHSExpr,
15061                                       Expr *RHSExpr) {
15062   BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr);
15063   BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr);
15064 
15065   // Check that one of the sides is a comparison operator and the other isn't.
15066   bool isLeftComp = LHSBO && LHSBO->isComparisonOp();
15067   bool isRightComp = RHSBO && RHSBO->isComparisonOp();
15068   if (isLeftComp == isRightComp)
15069     return;
15070 
15071   // Bitwise operations are sometimes used as eager logical ops.
15072   // Don't diagnose this.
15073   bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp();
15074   bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp();
15075   if (isLeftBitwise || isRightBitwise)
15076     return;
15077 
15078   SourceRange DiagRange = isLeftComp
15079                               ? SourceRange(LHSExpr->getBeginLoc(), OpLoc)
15080                               : SourceRange(OpLoc, RHSExpr->getEndLoc());
15081   StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr();
15082   SourceRange ParensRange =
15083       isLeftComp
15084           ? SourceRange(LHSBO->getRHS()->getBeginLoc(), RHSExpr->getEndLoc())
15085           : SourceRange(LHSExpr->getBeginLoc(), RHSBO->getLHS()->getEndLoc());
15086 
15087   Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel)
15088     << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr;
15089   SuggestParentheses(Self, OpLoc,
15090     Self.PDiag(diag::note_precedence_silence) << OpStr,
15091     (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange());
15092   SuggestParentheses(Self, OpLoc,
15093     Self.PDiag(diag::note_precedence_bitwise_first)
15094       << BinaryOperator::getOpcodeStr(Opc),
15095     ParensRange);
15096 }
15097 
15098 /// It accepts a '&&' expr that is inside a '||' one.
15099 /// Emit a diagnostic together with a fixit hint that wraps the '&&' expression
15100 /// in parentheses.
15101 static void
15102 EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc,
15103                                        BinaryOperator *Bop) {
15104   assert(Bop->getOpcode() == BO_LAnd);
15105   Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or)
15106       << Bop->getSourceRange() << OpLoc;
15107   SuggestParentheses(Self, Bop->getOperatorLoc(),
15108     Self.PDiag(diag::note_precedence_silence)
15109       << Bop->getOpcodeStr(),
15110     Bop->getSourceRange());
15111 }
15112 
15113 /// Returns true if the given expression can be evaluated as a constant
15114 /// 'true'.
15115 static bool EvaluatesAsTrue(Sema &S, Expr *E) {
15116   bool Res;
15117   return !E->isValueDependent() &&
15118          E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res;
15119 }
15120 
15121 /// Returns true if the given expression can be evaluated as a constant
15122 /// 'false'.
15123 static bool EvaluatesAsFalse(Sema &S, Expr *E) {
15124   bool Res;
15125   return !E->isValueDependent() &&
15126          E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res;
15127 }
15128 
15129 /// Look for '&&' in the left hand of a '||' expr.
15130 static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc,
15131                                              Expr *LHSExpr, Expr *RHSExpr) {
15132   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) {
15133     if (Bop->getOpcode() == BO_LAnd) {
15134       // If it's "a && b || 0" don't warn since the precedence doesn't matter.
15135       if (EvaluatesAsFalse(S, RHSExpr))
15136         return;
15137       // If it's "1 && a || b" don't warn since the precedence doesn't matter.
15138       if (!EvaluatesAsTrue(S, Bop->getLHS()))
15139         return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
15140     } else if (Bop->getOpcode() == BO_LOr) {
15141       if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) {
15142         // If it's "a || b && 1 || c" we didn't warn earlier for
15143         // "a || b && 1", but warn now.
15144         if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS()))
15145           return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop);
15146       }
15147     }
15148   }
15149 }
15150 
15151 /// Look for '&&' in the right hand of a '||' expr.
15152 static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc,
15153                                              Expr *LHSExpr, Expr *RHSExpr) {
15154   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) {
15155     if (Bop->getOpcode() == BO_LAnd) {
15156       // If it's "0 || a && b" don't warn since the precedence doesn't matter.
15157       if (EvaluatesAsFalse(S, LHSExpr))
15158         return;
15159       // If it's "a || b && 1" don't warn since the precedence doesn't matter.
15160       if (!EvaluatesAsTrue(S, Bop->getRHS()))
15161         return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
15162     }
15163   }
15164 }
15165 
15166 /// Look for bitwise op in the left or right hand of a bitwise op with
15167 /// lower precedence and emit a diagnostic together with a fixit hint that wraps
15168 /// the '&' expression in parentheses.
15169 static void DiagnoseBitwiseOpInBitwiseOp(Sema &S, BinaryOperatorKind Opc,
15170                                          SourceLocation OpLoc, Expr *SubExpr) {
15171   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) {
15172     if (Bop->isBitwiseOp() && Bop->getOpcode() < Opc) {
15173       S.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_op_in_bitwise_op)
15174         << Bop->getOpcodeStr() << BinaryOperator::getOpcodeStr(Opc)
15175         << Bop->getSourceRange() << OpLoc;
15176       SuggestParentheses(S, Bop->getOperatorLoc(),
15177         S.PDiag(diag::note_precedence_silence)
15178           << Bop->getOpcodeStr(),
15179         Bop->getSourceRange());
15180     }
15181   }
15182 }
15183 
15184 static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc,
15185                                     Expr *SubExpr, StringRef Shift) {
15186   if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) {
15187     if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) {
15188       StringRef Op = Bop->getOpcodeStr();
15189       S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift)
15190           << Bop->getSourceRange() << OpLoc << Shift << Op;
15191       SuggestParentheses(S, Bop->getOperatorLoc(),
15192           S.PDiag(diag::note_precedence_silence) << Op,
15193           Bop->getSourceRange());
15194     }
15195   }
15196 }
15197 
15198 static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc,
15199                                  Expr *LHSExpr, Expr *RHSExpr) {
15200   CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr);
15201   if (!OCE)
15202     return;
15203 
15204   FunctionDecl *FD = OCE->getDirectCallee();
15205   if (!FD || !FD->isOverloadedOperator())
15206     return;
15207 
15208   OverloadedOperatorKind Kind = FD->getOverloadedOperator();
15209   if (Kind != OO_LessLess && Kind != OO_GreaterGreater)
15210     return;
15211 
15212   S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison)
15213       << LHSExpr->getSourceRange() << RHSExpr->getSourceRange()
15214       << (Kind == OO_LessLess);
15215   SuggestParentheses(S, OCE->getOperatorLoc(),
15216                      S.PDiag(diag::note_precedence_silence)
15217                          << (Kind == OO_LessLess ? "<<" : ">>"),
15218                      OCE->getSourceRange());
15219   SuggestParentheses(
15220       S, OpLoc, S.PDiag(diag::note_evaluate_comparison_first),
15221       SourceRange(OCE->getArg(1)->getBeginLoc(), RHSExpr->getEndLoc()));
15222 }
15223 
15224 /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
15225 /// precedence.
15226 static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc,
15227                                     SourceLocation OpLoc, Expr *LHSExpr,
15228                                     Expr *RHSExpr){
15229   // Diagnose "arg1 'bitwise' arg2 'eq' arg3".
15230   if (BinaryOperator::isBitwiseOp(Opc))
15231     DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr);
15232 
15233   // Diagnose "arg1 & arg2 | arg3"
15234   if ((Opc == BO_Or || Opc == BO_Xor) &&
15235       !OpLoc.isMacroID()/* Don't warn in macros. */) {
15236     DiagnoseBitwiseOpInBitwiseOp(Self, Opc, OpLoc, LHSExpr);
15237     DiagnoseBitwiseOpInBitwiseOp(Self, Opc, OpLoc, RHSExpr);
15238   }
15239 
15240   // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does.
15241   // We don't warn for 'assert(a || b && "bad")' since this is safe.
15242   if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) {
15243     DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr);
15244     DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr);
15245   }
15246 
15247   if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext()))
15248       || Opc == BO_Shr) {
15249     StringRef Shift = BinaryOperator::getOpcodeStr(Opc);
15250     DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift);
15251     DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift);
15252   }
15253 
15254   // Warn on overloaded shift operators and comparisons, such as:
15255   // cout << 5 == 4;
15256   if (BinaryOperator::isComparisonOp(Opc))
15257     DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr);
15258 }
15259 
15260 // Binary Operators.  'Tok' is the token for the operator.
15261 ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
15262                             tok::TokenKind Kind,
15263                             Expr *LHSExpr, Expr *RHSExpr) {
15264   BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind);
15265   assert(LHSExpr && "ActOnBinOp(): missing left expression");
15266   assert(RHSExpr && "ActOnBinOp(): missing right expression");
15267 
15268   // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
15269   DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr);
15270 
15271   return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr);
15272 }
15273 
15274 void Sema::LookupBinOp(Scope *S, SourceLocation OpLoc, BinaryOperatorKind Opc,
15275                        UnresolvedSetImpl &Functions) {
15276   OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
15277   if (OverOp != OO_None && OverOp != OO_Equal)
15278     LookupOverloadedOperatorName(OverOp, S, Functions);
15279 
15280   // In C++20 onwards, we may have a second operator to look up.
15281   if (getLangOpts().CPlusPlus20) {
15282     if (OverloadedOperatorKind ExtraOp = getRewrittenOverloadedOperator(OverOp))
15283       LookupOverloadedOperatorName(ExtraOp, S, Functions);
15284   }
15285 }
15286 
15287 /// Build an overloaded binary operator expression in the given scope.
15288 static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc,
15289                                        BinaryOperatorKind Opc,
15290                                        Expr *LHS, Expr *RHS) {
15291   switch (Opc) {
15292   case BO_Assign:
15293   case BO_DivAssign:
15294   case BO_RemAssign:
15295   case BO_SubAssign:
15296   case BO_AndAssign:
15297   case BO_OrAssign:
15298   case BO_XorAssign:
15299     DiagnoseSelfAssignment(S, LHS, RHS, OpLoc, false);
15300     CheckIdentityFieldAssignment(LHS, RHS, OpLoc, S);
15301     break;
15302   default:
15303     break;
15304   }
15305 
15306   // Find all of the overloaded operators visible from this point.
15307   UnresolvedSet<16> Functions;
15308   S.LookupBinOp(Sc, OpLoc, Opc, Functions);
15309 
15310   // Build the (potentially-overloaded, potentially-dependent)
15311   // binary operation.
15312   return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS);
15313 }
15314 
15315 ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
15316                             BinaryOperatorKind Opc,
15317                             Expr *LHSExpr, Expr *RHSExpr) {
15318   ExprResult LHS, RHS;
15319   std::tie(LHS, RHS) = CorrectDelayedTyposInBinOp(*this, Opc, LHSExpr, RHSExpr);
15320   if (!LHS.isUsable() || !RHS.isUsable())
15321     return ExprError();
15322   LHSExpr = LHS.get();
15323   RHSExpr = RHS.get();
15324 
15325   // We want to end up calling one of checkPseudoObjectAssignment
15326   // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if
15327   // both expressions are overloadable or either is type-dependent),
15328   // or CreateBuiltinBinOp (in any other case).  We also want to get
15329   // any placeholder types out of the way.
15330 
15331   // Handle pseudo-objects in the LHS.
15332   if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) {
15333     // Assignments with a pseudo-object l-value need special analysis.
15334     if (pty->getKind() == BuiltinType::PseudoObject &&
15335         BinaryOperator::isAssignmentOp(Opc))
15336       return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr);
15337 
15338     // Don't resolve overloads if the other type is overloadable.
15339     if (getLangOpts().CPlusPlus && pty->getKind() == BuiltinType::Overload) {
15340       // We can't actually test that if we still have a placeholder,
15341       // though.  Fortunately, none of the exceptions we see in that
15342       // code below are valid when the LHS is an overload set.  Note
15343       // that an overload set can be dependently-typed, but it never
15344       // instantiates to having an overloadable type.
15345       ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
15346       if (resolvedRHS.isInvalid()) return ExprError();
15347       RHSExpr = resolvedRHS.get();
15348 
15349       if (RHSExpr->isTypeDependent() ||
15350           RHSExpr->getType()->isOverloadableType())
15351         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
15352     }
15353 
15354     // If we're instantiating "a.x < b" or "A::x < b" and 'x' names a function
15355     // template, diagnose the missing 'template' keyword instead of diagnosing
15356     // an invalid use of a bound member function.
15357     //
15358     // Note that "A::x < b" might be valid if 'b' has an overloadable type due
15359     // to C++1z [over.over]/1.4, but we already checked for that case above.
15360     if (Opc == BO_LT && inTemplateInstantiation() &&
15361         (pty->getKind() == BuiltinType::BoundMember ||
15362          pty->getKind() == BuiltinType::Overload)) {
15363       auto *OE = dyn_cast<OverloadExpr>(LHSExpr);
15364       if (OE && !OE->hasTemplateKeyword() && !OE->hasExplicitTemplateArgs() &&
15365           std::any_of(OE->decls_begin(), OE->decls_end(), [](NamedDecl *ND) {
15366             return isa<FunctionTemplateDecl>(ND);
15367           })) {
15368         Diag(OE->getQualifier() ? OE->getQualifierLoc().getBeginLoc()
15369                                 : OE->getNameLoc(),
15370              diag::err_template_kw_missing)
15371           << OE->getName().getAsString() << "";
15372         return ExprError();
15373       }
15374     }
15375 
15376     ExprResult LHS = CheckPlaceholderExpr(LHSExpr);
15377     if (LHS.isInvalid()) return ExprError();
15378     LHSExpr = LHS.get();
15379   }
15380 
15381   // Handle pseudo-objects in the RHS.
15382   if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) {
15383     // An overload in the RHS can potentially be resolved by the type
15384     // being assigned to.
15385     if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) {
15386       if (getLangOpts().CPlusPlus &&
15387           (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent() ||
15388            LHSExpr->getType()->isOverloadableType()))
15389         return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
15390 
15391       return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
15392     }
15393 
15394     // Don't resolve overloads if the other type is overloadable.
15395     if (getLangOpts().CPlusPlus && pty->getKind() == BuiltinType::Overload &&
15396         LHSExpr->getType()->isOverloadableType())
15397       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
15398 
15399     ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
15400     if (!resolvedRHS.isUsable()) return ExprError();
15401     RHSExpr = resolvedRHS.get();
15402   }
15403 
15404   if (getLangOpts().CPlusPlus) {
15405     // If either expression is type-dependent, always build an
15406     // overloaded op.
15407     if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
15408       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
15409 
15410     // Otherwise, build an overloaded op if either expression has an
15411     // overloadable type.
15412     if (LHSExpr->getType()->isOverloadableType() ||
15413         RHSExpr->getType()->isOverloadableType())
15414       return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
15415   }
15416 
15417   if (getLangOpts().RecoveryAST &&
15418       (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())) {
15419     assert(!getLangOpts().CPlusPlus);
15420     assert((LHSExpr->containsErrors() || RHSExpr->containsErrors()) &&
15421            "Should only occur in error-recovery path.");
15422     if (BinaryOperator::isCompoundAssignmentOp(Opc))
15423       // C [6.15.16] p3:
15424       // An assignment expression has the value of the left operand after the
15425       // assignment, but is not an lvalue.
15426       return CompoundAssignOperator::Create(
15427           Context, LHSExpr, RHSExpr, Opc,
15428           LHSExpr->getType().getUnqualifiedType(), VK_PRValue, OK_Ordinary,
15429           OpLoc, CurFPFeatureOverrides());
15430     QualType ResultType;
15431     switch (Opc) {
15432     case BO_Assign:
15433       ResultType = LHSExpr->getType().getUnqualifiedType();
15434       break;
15435     case BO_LT:
15436     case BO_GT:
15437     case BO_LE:
15438     case BO_GE:
15439     case BO_EQ:
15440     case BO_NE:
15441     case BO_LAnd:
15442     case BO_LOr:
15443       // These operators have a fixed result type regardless of operands.
15444       ResultType = Context.IntTy;
15445       break;
15446     case BO_Comma:
15447       ResultType = RHSExpr->getType();
15448       break;
15449     default:
15450       ResultType = Context.DependentTy;
15451       break;
15452     }
15453     return BinaryOperator::Create(Context, LHSExpr, RHSExpr, Opc, ResultType,
15454                                   VK_PRValue, OK_Ordinary, OpLoc,
15455                                   CurFPFeatureOverrides());
15456   }
15457 
15458   // Build a built-in binary operation.
15459   return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
15460 }
15461 
15462 static bool isOverflowingIntegerType(ASTContext &Ctx, QualType T) {
15463   if (T.isNull() || T->isDependentType())
15464     return false;
15465 
15466   if (!T->isPromotableIntegerType())
15467     return true;
15468 
15469   return Ctx.getIntWidth(T) >= Ctx.getIntWidth(Ctx.IntTy);
15470 }
15471 
15472 ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
15473                                       UnaryOperatorKind Opc,
15474                                       Expr *InputExpr) {
15475   ExprResult Input = InputExpr;
15476   ExprValueKind VK = VK_PRValue;
15477   ExprObjectKind OK = OK_Ordinary;
15478   QualType resultType;
15479   bool CanOverflow = false;
15480 
15481   bool ConvertHalfVec = false;
15482   if (getLangOpts().OpenCL) {
15483     QualType Ty = InputExpr->getType();
15484     // The only legal unary operation for atomics is '&'.
15485     if ((Opc != UO_AddrOf && Ty->isAtomicType()) ||
15486     // OpenCL special types - image, sampler, pipe, and blocks are to be used
15487     // only with a builtin functions and therefore should be disallowed here.
15488         (Ty->isImageType() || Ty->isSamplerT() || Ty->isPipeType()
15489         || Ty->isBlockPointerType())) {
15490       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
15491                        << InputExpr->getType()
15492                        << Input.get()->getSourceRange());
15493     }
15494   }
15495 
15496   if (getLangOpts().HLSL) {
15497     if (Opc == UO_AddrOf)
15498       return ExprError(Diag(OpLoc, diag::err_hlsl_operator_unsupported) << 0);
15499     if (Opc == UO_Deref)
15500       return ExprError(Diag(OpLoc, diag::err_hlsl_operator_unsupported) << 1);
15501   }
15502 
15503   switch (Opc) {
15504   case UO_PreInc:
15505   case UO_PreDec:
15506   case UO_PostInc:
15507   case UO_PostDec:
15508     resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK,
15509                                                 OpLoc,
15510                                                 Opc == UO_PreInc ||
15511                                                 Opc == UO_PostInc,
15512                                                 Opc == UO_PreInc ||
15513                                                 Opc == UO_PreDec);
15514     CanOverflow = isOverflowingIntegerType(Context, resultType);
15515     break;
15516   case UO_AddrOf:
15517     resultType = CheckAddressOfOperand(Input, OpLoc);
15518     CheckAddressOfNoDeref(InputExpr);
15519     RecordModifiableNonNullParam(*this, InputExpr);
15520     break;
15521   case UO_Deref: {
15522     Input = DefaultFunctionArrayLvalueConversion(Input.get());
15523     if (Input.isInvalid()) return ExprError();
15524     resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc);
15525     break;
15526   }
15527   case UO_Plus:
15528   case UO_Minus:
15529     CanOverflow = Opc == UO_Minus &&
15530                   isOverflowingIntegerType(Context, Input.get()->getType());
15531     Input = UsualUnaryConversions(Input.get());
15532     if (Input.isInvalid()) return ExprError();
15533     // Unary plus and minus require promoting an operand of half vector to a
15534     // float vector and truncating the result back to a half vector. For now, we
15535     // do this only when HalfArgsAndReturns is set (that is, when the target is
15536     // arm or arm64).
15537     ConvertHalfVec = needsConversionOfHalfVec(true, Context, Input.get());
15538 
15539     // If the operand is a half vector, promote it to a float vector.
15540     if (ConvertHalfVec)
15541       Input = convertVector(Input.get(), Context.FloatTy, *this);
15542     resultType = Input.get()->getType();
15543     if (resultType->isDependentType())
15544       break;
15545     if (resultType->isArithmeticType()) // C99 6.5.3.3p1
15546       break;
15547     else if (resultType->isVectorType() &&
15548              // The z vector extensions don't allow + or - with bool vectors.
15549              (!Context.getLangOpts().ZVector ||
15550               resultType->castAs<VectorType>()->getVectorKind() !=
15551               VectorType::AltiVecBool))
15552       break;
15553     else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6
15554              Opc == UO_Plus &&
15555              resultType->isPointerType())
15556       break;
15557 
15558     return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
15559       << resultType << Input.get()->getSourceRange());
15560 
15561   case UO_Not: // bitwise complement
15562     Input = UsualUnaryConversions(Input.get());
15563     if (Input.isInvalid())
15564       return ExprError();
15565     resultType = Input.get()->getType();
15566     if (resultType->isDependentType())
15567       break;
15568     // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
15569     if (resultType->isComplexType() || resultType->isComplexIntegerType())
15570       // C99 does not support '~' for complex conjugation.
15571       Diag(OpLoc, diag::ext_integer_complement_complex)
15572           << resultType << Input.get()->getSourceRange();
15573     else if (resultType->hasIntegerRepresentation())
15574       break;
15575     else if (resultType->isExtVectorType() && Context.getLangOpts().OpenCL) {
15576       // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate
15577       // on vector float types.
15578       QualType T = resultType->castAs<ExtVectorType>()->getElementType();
15579       if (!T->isIntegerType())
15580         return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
15581                           << resultType << Input.get()->getSourceRange());
15582     } else {
15583       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
15584                        << resultType << Input.get()->getSourceRange());
15585     }
15586     break;
15587 
15588   case UO_LNot: // logical negation
15589     // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
15590     Input = DefaultFunctionArrayLvalueConversion(Input.get());
15591     if (Input.isInvalid()) return ExprError();
15592     resultType = Input.get()->getType();
15593 
15594     // Though we still have to promote half FP to float...
15595     if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) {
15596       Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get();
15597       resultType = Context.FloatTy;
15598     }
15599 
15600     if (resultType->isDependentType())
15601       break;
15602     if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) {
15603       // C99 6.5.3.3p1: ok, fallthrough;
15604       if (Context.getLangOpts().CPlusPlus) {
15605         // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9:
15606         // operand contextually converted to bool.
15607         Input = ImpCastExprToType(Input.get(), Context.BoolTy,
15608                                   ScalarTypeToBooleanCastKind(resultType));
15609       } else if (Context.getLangOpts().OpenCL &&
15610                  Context.getLangOpts().OpenCLVersion < 120) {
15611         // OpenCL v1.1 6.3.h: The logical operator not (!) does not
15612         // operate on scalar float types.
15613         if (!resultType->isIntegerType() && !resultType->isPointerType())
15614           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
15615                            << resultType << Input.get()->getSourceRange());
15616       }
15617     } else if (resultType->isExtVectorType()) {
15618       if (Context.getLangOpts().OpenCL &&
15619           Context.getLangOpts().getOpenCLCompatibleVersion() < 120) {
15620         // OpenCL v1.1 6.3.h: The logical operator not (!) does not
15621         // operate on vector float types.
15622         QualType T = resultType->castAs<ExtVectorType>()->getElementType();
15623         if (!T->isIntegerType())
15624           return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
15625                            << resultType << Input.get()->getSourceRange());
15626       }
15627       // Vector logical not returns the signed variant of the operand type.
15628       resultType = GetSignedVectorType(resultType);
15629       break;
15630     } else if (Context.getLangOpts().CPlusPlus && resultType->isVectorType()) {
15631       const VectorType *VTy = resultType->castAs<VectorType>();
15632       if (VTy->getVectorKind() != VectorType::GenericVector)
15633         return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
15634                          << resultType << Input.get()->getSourceRange());
15635 
15636       // Vector logical not returns the signed variant of the operand type.
15637       resultType = GetSignedVectorType(resultType);
15638       break;
15639     } else {
15640       return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
15641         << resultType << Input.get()->getSourceRange());
15642     }
15643 
15644     // LNot always has type int. C99 6.5.3.3p5.
15645     // In C++, it's bool. C++ 5.3.1p8
15646     resultType = Context.getLogicalOperationType();
15647     break;
15648   case UO_Real:
15649   case UO_Imag:
15650     resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real);
15651     // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary
15652     // complex l-values to ordinary l-values and all other values to r-values.
15653     if (Input.isInvalid()) return ExprError();
15654     if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) {
15655       if (Input.get()->isGLValue() &&
15656           Input.get()->getObjectKind() == OK_Ordinary)
15657         VK = Input.get()->getValueKind();
15658     } else if (!getLangOpts().CPlusPlus) {
15659       // In C, a volatile scalar is read by __imag. In C++, it is not.
15660       Input = DefaultLvalueConversion(Input.get());
15661     }
15662     break;
15663   case UO_Extension:
15664     resultType = Input.get()->getType();
15665     VK = Input.get()->getValueKind();
15666     OK = Input.get()->getObjectKind();
15667     break;
15668   case UO_Coawait:
15669     // It's unnecessary to represent the pass-through operator co_await in the
15670     // AST; just return the input expression instead.
15671     assert(!Input.get()->getType()->isDependentType() &&
15672                    "the co_await expression must be non-dependant before "
15673                    "building operator co_await");
15674     return Input;
15675   }
15676   if (resultType.isNull() || Input.isInvalid())
15677     return ExprError();
15678 
15679   // Check for array bounds violations in the operand of the UnaryOperator,
15680   // except for the '*' and '&' operators that have to be handled specially
15681   // by CheckArrayAccess (as there are special cases like &array[arraysize]
15682   // that are explicitly defined as valid by the standard).
15683   if (Opc != UO_AddrOf && Opc != UO_Deref)
15684     CheckArrayAccess(Input.get());
15685 
15686   auto *UO =
15687       UnaryOperator::Create(Context, Input.get(), Opc, resultType, VK, OK,
15688                             OpLoc, CanOverflow, CurFPFeatureOverrides());
15689 
15690   if (Opc == UO_Deref && UO->getType()->hasAttr(attr::NoDeref) &&
15691       !isa<ArrayType>(UO->getType().getDesugaredType(Context)) &&
15692       !isUnevaluatedContext())
15693     ExprEvalContexts.back().PossibleDerefs.insert(UO);
15694 
15695   // Convert the result back to a half vector.
15696   if (ConvertHalfVec)
15697     return convertVector(UO, Context.HalfTy, *this);
15698   return UO;
15699 }
15700 
15701 /// Determine whether the given expression is a qualified member
15702 /// access expression, of a form that could be turned into a pointer to member
15703 /// with the address-of operator.
15704 bool Sema::isQualifiedMemberAccess(Expr *E) {
15705   if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
15706     if (!DRE->getQualifier())
15707       return false;
15708 
15709     ValueDecl *VD = DRE->getDecl();
15710     if (!VD->isCXXClassMember())
15711       return false;
15712 
15713     if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD))
15714       return true;
15715     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD))
15716       return Method->isInstance();
15717 
15718     return false;
15719   }
15720 
15721   if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
15722     if (!ULE->getQualifier())
15723       return false;
15724 
15725     for (NamedDecl *D : ULE->decls()) {
15726       if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
15727         if (Method->isInstance())
15728           return true;
15729       } else {
15730         // Overload set does not contain methods.
15731         break;
15732       }
15733     }
15734 
15735     return false;
15736   }
15737 
15738   return false;
15739 }
15740 
15741 ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
15742                               UnaryOperatorKind Opc, Expr *Input) {
15743   // First things first: handle placeholders so that the
15744   // overloaded-operator check considers the right type.
15745   if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) {
15746     // Increment and decrement of pseudo-object references.
15747     if (pty->getKind() == BuiltinType::PseudoObject &&
15748         UnaryOperator::isIncrementDecrementOp(Opc))
15749       return checkPseudoObjectIncDec(S, OpLoc, Opc, Input);
15750 
15751     // extension is always a builtin operator.
15752     if (Opc == UO_Extension)
15753       return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
15754 
15755     // & gets special logic for several kinds of placeholder.
15756     // The builtin code knows what to do.
15757     if (Opc == UO_AddrOf &&
15758         (pty->getKind() == BuiltinType::Overload ||
15759          pty->getKind() == BuiltinType::UnknownAny ||
15760          pty->getKind() == BuiltinType::BoundMember))
15761       return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
15762 
15763     // Anything else needs to be handled now.
15764     ExprResult Result = CheckPlaceholderExpr(Input);
15765     if (Result.isInvalid()) return ExprError();
15766     Input = Result.get();
15767   }
15768 
15769   if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() &&
15770       UnaryOperator::getOverloadedOperator(Opc) != OO_None &&
15771       !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) {
15772     // Find all of the overloaded operators visible from this point.
15773     UnresolvedSet<16> Functions;
15774     OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
15775     if (S && OverOp != OO_None)
15776       LookupOverloadedOperatorName(OverOp, S, Functions);
15777 
15778     return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input);
15779   }
15780 
15781   return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
15782 }
15783 
15784 // Unary Operators.  'Tok' is the token for the operator.
15785 ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
15786                               tok::TokenKind Op, Expr *Input) {
15787   return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input);
15788 }
15789 
15790 /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
15791 ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc,
15792                                 LabelDecl *TheDecl) {
15793   TheDecl->markUsed(Context);
15794   // Create the AST node.  The address of a label always has type 'void*'.
15795   return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl,
15796                                      Context.getPointerType(Context.VoidTy));
15797 }
15798 
15799 void Sema::ActOnStartStmtExpr() {
15800   PushExpressionEvaluationContext(ExprEvalContexts.back().Context);
15801 }
15802 
15803 void Sema::ActOnStmtExprError() {
15804   // Note that function is also called by TreeTransform when leaving a
15805   // StmtExpr scope without rebuilding anything.
15806 
15807   DiscardCleanupsInEvaluationContext();
15808   PopExpressionEvaluationContext();
15809 }
15810 
15811 ExprResult Sema::ActOnStmtExpr(Scope *S, SourceLocation LPLoc, Stmt *SubStmt,
15812                                SourceLocation RPLoc) {
15813   return BuildStmtExpr(LPLoc, SubStmt, RPLoc, getTemplateDepth(S));
15814 }
15815 
15816 ExprResult Sema::BuildStmtExpr(SourceLocation LPLoc, Stmt *SubStmt,
15817                                SourceLocation RPLoc, unsigned TemplateDepth) {
15818   assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
15819   CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
15820 
15821   if (hasAnyUnrecoverableErrorsInThisFunction())
15822     DiscardCleanupsInEvaluationContext();
15823   assert(!Cleanup.exprNeedsCleanups() &&
15824          "cleanups within StmtExpr not correctly bound!");
15825   PopExpressionEvaluationContext();
15826 
15827   // FIXME: there are a variety of strange constraints to enforce here, for
15828   // example, it is not possible to goto into a stmt expression apparently.
15829   // More semantic analysis is needed.
15830 
15831   // If there are sub-stmts in the compound stmt, take the type of the last one
15832   // as the type of the stmtexpr.
15833   QualType Ty = Context.VoidTy;
15834   bool StmtExprMayBindToTemp = false;
15835   if (!Compound->body_empty()) {
15836     // For GCC compatibility we get the last Stmt excluding trailing NullStmts.
15837     if (const auto *LastStmt =
15838             dyn_cast<ValueStmt>(Compound->getStmtExprResult())) {
15839       if (const Expr *Value = LastStmt->getExprStmt()) {
15840         StmtExprMayBindToTemp = true;
15841         Ty = Value->getType();
15842       }
15843     }
15844   }
15845 
15846   // FIXME: Check that expression type is complete/non-abstract; statement
15847   // expressions are not lvalues.
15848   Expr *ResStmtExpr =
15849       new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc, TemplateDepth);
15850   if (StmtExprMayBindToTemp)
15851     return MaybeBindToTemporary(ResStmtExpr);
15852   return ResStmtExpr;
15853 }
15854 
15855 ExprResult Sema::ActOnStmtExprResult(ExprResult ER) {
15856   if (ER.isInvalid())
15857     return ExprError();
15858 
15859   // Do function/array conversion on the last expression, but not
15860   // lvalue-to-rvalue.  However, initialize an unqualified type.
15861   ER = DefaultFunctionArrayConversion(ER.get());
15862   if (ER.isInvalid())
15863     return ExprError();
15864   Expr *E = ER.get();
15865 
15866   if (E->isTypeDependent())
15867     return E;
15868 
15869   // In ARC, if the final expression ends in a consume, splice
15870   // the consume out and bind it later.  In the alternate case
15871   // (when dealing with a retainable type), the result
15872   // initialization will create a produce.  In both cases the
15873   // result will be +1, and we'll need to balance that out with
15874   // a bind.
15875   auto *Cast = dyn_cast<ImplicitCastExpr>(E);
15876   if (Cast && Cast->getCastKind() == CK_ARCConsumeObject)
15877     return Cast->getSubExpr();
15878 
15879   // FIXME: Provide a better location for the initialization.
15880   return PerformCopyInitialization(
15881       InitializedEntity::InitializeStmtExprResult(
15882           E->getBeginLoc(), E->getType().getUnqualifiedType()),
15883       SourceLocation(), E);
15884 }
15885 
15886 ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc,
15887                                       TypeSourceInfo *TInfo,
15888                                       ArrayRef<OffsetOfComponent> Components,
15889                                       SourceLocation RParenLoc) {
15890   QualType ArgTy = TInfo->getType();
15891   bool Dependent = ArgTy->isDependentType();
15892   SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange();
15893 
15894   // We must have at least one component that refers to the type, and the first
15895   // one is known to be a field designator.  Verify that the ArgTy represents
15896   // a struct/union/class.
15897   if (!Dependent && !ArgTy->isRecordType())
15898     return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type)
15899                        << ArgTy << TypeRange);
15900 
15901   // Type must be complete per C99 7.17p3 because a declaring a variable
15902   // with an incomplete type would be ill-formed.
15903   if (!Dependent
15904       && RequireCompleteType(BuiltinLoc, ArgTy,
15905                              diag::err_offsetof_incomplete_type, TypeRange))
15906     return ExprError();
15907 
15908   bool DidWarnAboutNonPOD = false;
15909   QualType CurrentType = ArgTy;
15910   SmallVector<OffsetOfNode, 4> Comps;
15911   SmallVector<Expr*, 4> Exprs;
15912   for (const OffsetOfComponent &OC : Components) {
15913     if (OC.isBrackets) {
15914       // Offset of an array sub-field.  TODO: Should we allow vector elements?
15915       if (!CurrentType->isDependentType()) {
15916         const ArrayType *AT = Context.getAsArrayType(CurrentType);
15917         if(!AT)
15918           return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
15919                            << CurrentType);
15920         CurrentType = AT->getElementType();
15921       } else
15922         CurrentType = Context.DependentTy;
15923 
15924       ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E));
15925       if (IdxRval.isInvalid())
15926         return ExprError();
15927       Expr *Idx = IdxRval.get();
15928 
15929       // The expression must be an integral expression.
15930       // FIXME: An integral constant expression?
15931       if (!Idx->isTypeDependent() && !Idx->isValueDependent() &&
15932           !Idx->getType()->isIntegerType())
15933         return ExprError(
15934             Diag(Idx->getBeginLoc(), diag::err_typecheck_subscript_not_integer)
15935             << Idx->getSourceRange());
15936 
15937       // Record this array index.
15938       Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
15939       Exprs.push_back(Idx);
15940       continue;
15941     }
15942 
15943     // Offset of a field.
15944     if (CurrentType->isDependentType()) {
15945       // We have the offset of a field, but we can't look into the dependent
15946       // type. Just record the identifier of the field.
15947       Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
15948       CurrentType = Context.DependentTy;
15949       continue;
15950     }
15951 
15952     // We need to have a complete type to look into.
15953     if (RequireCompleteType(OC.LocStart, CurrentType,
15954                             diag::err_offsetof_incomplete_type))
15955       return ExprError();
15956 
15957     // Look for the designated field.
15958     const RecordType *RC = CurrentType->getAs<RecordType>();
15959     if (!RC)
15960       return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
15961                        << CurrentType);
15962     RecordDecl *RD = RC->getDecl();
15963 
15964     // C++ [lib.support.types]p5:
15965     //   The macro offsetof accepts a restricted set of type arguments in this
15966     //   International Standard. type shall be a POD structure or a POD union
15967     //   (clause 9).
15968     // C++11 [support.types]p4:
15969     //   If type is not a standard-layout class (Clause 9), the results are
15970     //   undefined.
15971     if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
15972       bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD();
15973       unsigned DiagID =
15974         LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type
15975                             : diag::ext_offsetof_non_pod_type;
15976 
15977       if (!IsSafe && !DidWarnAboutNonPOD &&
15978           DiagRuntimeBehavior(BuiltinLoc, nullptr,
15979                               PDiag(DiagID)
15980                               << SourceRange(Components[0].LocStart, OC.LocEnd)
15981                               << CurrentType))
15982         DidWarnAboutNonPOD = true;
15983     }
15984 
15985     // Look for the field.
15986     LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
15987     LookupQualifiedName(R, RD);
15988     FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>();
15989     IndirectFieldDecl *IndirectMemberDecl = nullptr;
15990     if (!MemberDecl) {
15991       if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>()))
15992         MemberDecl = IndirectMemberDecl->getAnonField();
15993     }
15994 
15995     if (!MemberDecl)
15996       return ExprError(Diag(BuiltinLoc, diag::err_no_member)
15997                        << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
15998                                                               OC.LocEnd));
15999 
16000     // C99 7.17p3:
16001     //   (If the specified member is a bit-field, the behavior is undefined.)
16002     //
16003     // We diagnose this as an error.
16004     if (MemberDecl->isBitField()) {
16005       Diag(OC.LocEnd, diag::err_offsetof_bitfield)
16006         << MemberDecl->getDeclName()
16007         << SourceRange(BuiltinLoc, RParenLoc);
16008       Diag(MemberDecl->getLocation(), diag::note_bitfield_decl);
16009       return ExprError();
16010     }
16011 
16012     RecordDecl *Parent = MemberDecl->getParent();
16013     if (IndirectMemberDecl)
16014       Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext());
16015 
16016     // If the member was found in a base class, introduce OffsetOfNodes for
16017     // the base class indirections.
16018     CXXBasePaths Paths;
16019     if (IsDerivedFrom(OC.LocStart, CurrentType, Context.getTypeDeclType(Parent),
16020                       Paths)) {
16021       if (Paths.getDetectedVirtual()) {
16022         Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base)
16023           << MemberDecl->getDeclName()
16024           << SourceRange(BuiltinLoc, RParenLoc);
16025         return ExprError();
16026       }
16027 
16028       CXXBasePath &Path = Paths.front();
16029       for (const CXXBasePathElement &B : Path)
16030         Comps.push_back(OffsetOfNode(B.Base));
16031     }
16032 
16033     if (IndirectMemberDecl) {
16034       for (auto *FI : IndirectMemberDecl->chain()) {
16035         assert(isa<FieldDecl>(FI));
16036         Comps.push_back(OffsetOfNode(OC.LocStart,
16037                                      cast<FieldDecl>(FI), OC.LocEnd));
16038       }
16039     } else
16040       Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
16041 
16042     CurrentType = MemberDecl->getType().getNonReferenceType();
16043   }
16044 
16045   return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo,
16046                               Comps, Exprs, RParenLoc);
16047 }
16048 
16049 ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
16050                                       SourceLocation BuiltinLoc,
16051                                       SourceLocation TypeLoc,
16052                                       ParsedType ParsedArgTy,
16053                                       ArrayRef<OffsetOfComponent> Components,
16054                                       SourceLocation RParenLoc) {
16055 
16056   TypeSourceInfo *ArgTInfo;
16057   QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo);
16058   if (ArgTy.isNull())
16059     return ExprError();
16060 
16061   if (!ArgTInfo)
16062     ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
16063 
16064   return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, Components, RParenLoc);
16065 }
16066 
16067 
16068 ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
16069                                  Expr *CondExpr,
16070                                  Expr *LHSExpr, Expr *RHSExpr,
16071                                  SourceLocation RPLoc) {
16072   assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
16073 
16074   ExprValueKind VK = VK_PRValue;
16075   ExprObjectKind OK = OK_Ordinary;
16076   QualType resType;
16077   bool CondIsTrue = false;
16078   if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
16079     resType = Context.DependentTy;
16080   } else {
16081     // The conditional expression is required to be a constant expression.
16082     llvm::APSInt condEval(32);
16083     ExprResult CondICE = VerifyIntegerConstantExpression(
16084         CondExpr, &condEval, diag::err_typecheck_choose_expr_requires_constant);
16085     if (CondICE.isInvalid())
16086       return ExprError();
16087     CondExpr = CondICE.get();
16088     CondIsTrue = condEval.getZExtValue();
16089 
16090     // If the condition is > zero, then the AST type is the same as the LHSExpr.
16091     Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr;
16092 
16093     resType = ActiveExpr->getType();
16094     VK = ActiveExpr->getValueKind();
16095     OK = ActiveExpr->getObjectKind();
16096   }
16097 
16098   return new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
16099                                   resType, VK, OK, RPLoc, CondIsTrue);
16100 }
16101 
16102 //===----------------------------------------------------------------------===//
16103 // Clang Extensions.
16104 //===----------------------------------------------------------------------===//
16105 
16106 /// ActOnBlockStart - This callback is invoked when a block literal is started.
16107 void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) {
16108   BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc);
16109 
16110   if (LangOpts.CPlusPlus) {
16111     MangleNumberingContext *MCtx;
16112     Decl *ManglingContextDecl;
16113     std::tie(MCtx, ManglingContextDecl) =
16114         getCurrentMangleNumberContext(Block->getDeclContext());
16115     if (MCtx) {
16116       unsigned ManglingNumber = MCtx->getManglingNumber(Block);
16117       Block->setBlockMangling(ManglingNumber, ManglingContextDecl);
16118     }
16119   }
16120 
16121   PushBlockScope(CurScope, Block);
16122   CurContext->addDecl(Block);
16123   if (CurScope)
16124     PushDeclContext(CurScope, Block);
16125   else
16126     CurContext = Block;
16127 
16128   getCurBlock()->HasImplicitReturnType = true;
16129 
16130   // Enter a new evaluation context to insulate the block from any
16131   // cleanups from the enclosing full-expression.
16132   PushExpressionEvaluationContext(
16133       ExpressionEvaluationContext::PotentiallyEvaluated);
16134 }
16135 
16136 void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo,
16137                                Scope *CurScope) {
16138   assert(ParamInfo.getIdentifier() == nullptr &&
16139          "block-id should have no identifier!");
16140   assert(ParamInfo.getContext() == DeclaratorContext::BlockLiteral);
16141   BlockScopeInfo *CurBlock = getCurBlock();
16142 
16143   TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope);
16144   QualType T = Sig->getType();
16145 
16146   // FIXME: We should allow unexpanded parameter packs here, but that would,
16147   // in turn, make the block expression contain unexpanded parameter packs.
16148   if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) {
16149     // Drop the parameters.
16150     FunctionProtoType::ExtProtoInfo EPI;
16151     EPI.HasTrailingReturn = false;
16152     EPI.TypeQuals.addConst();
16153     T = Context.getFunctionType(Context.DependentTy, None, EPI);
16154     Sig = Context.getTrivialTypeSourceInfo(T);
16155   }
16156 
16157   // GetTypeForDeclarator always produces a function type for a block
16158   // literal signature.  Furthermore, it is always a FunctionProtoType
16159   // unless the function was written with a typedef.
16160   assert(T->isFunctionType() &&
16161          "GetTypeForDeclarator made a non-function block signature");
16162 
16163   // Look for an explicit signature in that function type.
16164   FunctionProtoTypeLoc ExplicitSignature;
16165 
16166   if ((ExplicitSignature = Sig->getTypeLoc()
16167                                .getAsAdjusted<FunctionProtoTypeLoc>())) {
16168 
16169     // Check whether that explicit signature was synthesized by
16170     // GetTypeForDeclarator.  If so, don't save that as part of the
16171     // written signature.
16172     if (ExplicitSignature.getLocalRangeBegin() ==
16173         ExplicitSignature.getLocalRangeEnd()) {
16174       // This would be much cheaper if we stored TypeLocs instead of
16175       // TypeSourceInfos.
16176       TypeLoc Result = ExplicitSignature.getReturnLoc();
16177       unsigned Size = Result.getFullDataSize();
16178       Sig = Context.CreateTypeSourceInfo(Result.getType(), Size);
16179       Sig->getTypeLoc().initializeFullCopy(Result, Size);
16180 
16181       ExplicitSignature = FunctionProtoTypeLoc();
16182     }
16183   }
16184 
16185   CurBlock->TheDecl->setSignatureAsWritten(Sig);
16186   CurBlock->FunctionType = T;
16187 
16188   const auto *Fn = T->castAs<FunctionType>();
16189   QualType RetTy = Fn->getReturnType();
16190   bool isVariadic =
16191       (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic());
16192 
16193   CurBlock->TheDecl->setIsVariadic(isVariadic);
16194 
16195   // Context.DependentTy is used as a placeholder for a missing block
16196   // return type.  TODO:  what should we do with declarators like:
16197   //   ^ * { ... }
16198   // If the answer is "apply template argument deduction"....
16199   if (RetTy != Context.DependentTy) {
16200     CurBlock->ReturnType = RetTy;
16201     CurBlock->TheDecl->setBlockMissingReturnType(false);
16202     CurBlock->HasImplicitReturnType = false;
16203   }
16204 
16205   // Push block parameters from the declarator if we had them.
16206   SmallVector<ParmVarDecl*, 8> Params;
16207   if (ExplicitSignature) {
16208     for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) {
16209       ParmVarDecl *Param = ExplicitSignature.getParam(I);
16210       if (Param->getIdentifier() == nullptr && !Param->isImplicit() &&
16211           !Param->isInvalidDecl() && !getLangOpts().CPlusPlus) {
16212         // Diagnose this as an extension in C17 and earlier.
16213         if (!getLangOpts().C2x)
16214           Diag(Param->getLocation(), diag::ext_parameter_name_omitted_c2x);
16215       }
16216       Params.push_back(Param);
16217     }
16218 
16219   // Fake up parameter variables if we have a typedef, like
16220   //   ^ fntype { ... }
16221   } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) {
16222     for (const auto &I : Fn->param_types()) {
16223       ParmVarDecl *Param = BuildParmVarDeclForTypedef(
16224           CurBlock->TheDecl, ParamInfo.getBeginLoc(), I);
16225       Params.push_back(Param);
16226     }
16227   }
16228 
16229   // Set the parameters on the block decl.
16230   if (!Params.empty()) {
16231     CurBlock->TheDecl->setParams(Params);
16232     CheckParmsForFunctionDef(CurBlock->TheDecl->parameters(),
16233                              /*CheckParameterNames=*/false);
16234   }
16235 
16236   // Finally we can process decl attributes.
16237   ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
16238 
16239   // Put the parameter variables in scope.
16240   for (auto AI : CurBlock->TheDecl->parameters()) {
16241     AI->setOwningFunction(CurBlock->TheDecl);
16242 
16243     // If this has an identifier, add it to the scope stack.
16244     if (AI->getIdentifier()) {
16245       CheckShadow(CurBlock->TheScope, AI);
16246 
16247       PushOnScopeChains(AI, CurBlock->TheScope);
16248     }
16249   }
16250 }
16251 
16252 /// ActOnBlockError - If there is an error parsing a block, this callback
16253 /// is invoked to pop the information about the block from the action impl.
16254 void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
16255   // Leave the expression-evaluation context.
16256   DiscardCleanupsInEvaluationContext();
16257   PopExpressionEvaluationContext();
16258 
16259   // Pop off CurBlock, handle nested blocks.
16260   PopDeclContext();
16261   PopFunctionScopeInfo();
16262 }
16263 
16264 /// ActOnBlockStmtExpr - This is called when the body of a block statement
16265 /// literal was successfully completed.  ^(int x){...}
16266 ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
16267                                     Stmt *Body, Scope *CurScope) {
16268   // If blocks are disabled, emit an error.
16269   if (!LangOpts.Blocks)
16270     Diag(CaretLoc, diag::err_blocks_disable) << LangOpts.OpenCL;
16271 
16272   // Leave the expression-evaluation context.
16273   if (hasAnyUnrecoverableErrorsInThisFunction())
16274     DiscardCleanupsInEvaluationContext();
16275   assert(!Cleanup.exprNeedsCleanups() &&
16276          "cleanups within block not correctly bound!");
16277   PopExpressionEvaluationContext();
16278 
16279   BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back());
16280   BlockDecl *BD = BSI->TheDecl;
16281 
16282   if (BSI->HasImplicitReturnType)
16283     deduceClosureReturnType(*BSI);
16284 
16285   QualType RetTy = Context.VoidTy;
16286   if (!BSI->ReturnType.isNull())
16287     RetTy = BSI->ReturnType;
16288 
16289   bool NoReturn = BD->hasAttr<NoReturnAttr>();
16290   QualType BlockTy;
16291 
16292   // If the user wrote a function type in some form, try to use that.
16293   if (!BSI->FunctionType.isNull()) {
16294     const FunctionType *FTy = BSI->FunctionType->castAs<FunctionType>();
16295 
16296     FunctionType::ExtInfo Ext = FTy->getExtInfo();
16297     if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
16298 
16299     // Turn protoless block types into nullary block types.
16300     if (isa<FunctionNoProtoType>(FTy)) {
16301       FunctionProtoType::ExtProtoInfo EPI;
16302       EPI.ExtInfo = Ext;
16303       BlockTy = Context.getFunctionType(RetTy, None, EPI);
16304 
16305     // Otherwise, if we don't need to change anything about the function type,
16306     // preserve its sugar structure.
16307     } else if (FTy->getReturnType() == RetTy &&
16308                (!NoReturn || FTy->getNoReturnAttr())) {
16309       BlockTy = BSI->FunctionType;
16310 
16311     // Otherwise, make the minimal modifications to the function type.
16312     } else {
16313       const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy);
16314       FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
16315       EPI.TypeQuals = Qualifiers();
16316       EPI.ExtInfo = Ext;
16317       BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI);
16318     }
16319 
16320   // If we don't have a function type, just build one from nothing.
16321   } else {
16322     FunctionProtoType::ExtProtoInfo EPI;
16323     EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);
16324     BlockTy = Context.getFunctionType(RetTy, None, EPI);
16325   }
16326 
16327   DiagnoseUnusedParameters(BD->parameters());
16328   BlockTy = Context.getBlockPointerType(BlockTy);
16329 
16330   // If needed, diagnose invalid gotos and switches in the block.
16331   if (getCurFunction()->NeedsScopeChecking() &&
16332       !PP.isCodeCompletionEnabled())
16333     DiagnoseInvalidJumps(cast<CompoundStmt>(Body));
16334 
16335   BD->setBody(cast<CompoundStmt>(Body));
16336 
16337   if (Body && getCurFunction()->HasPotentialAvailabilityViolations)
16338     DiagnoseUnguardedAvailabilityViolations(BD);
16339 
16340   // Try to apply the named return value optimization. We have to check again
16341   // if we can do this, though, because blocks keep return statements around
16342   // to deduce an implicit return type.
16343   if (getLangOpts().CPlusPlus && RetTy->isRecordType() &&
16344       !BD->isDependentContext())
16345     computeNRVO(Body, BSI);
16346 
16347   if (RetTy.hasNonTrivialToPrimitiveDestructCUnion() ||
16348       RetTy.hasNonTrivialToPrimitiveCopyCUnion())
16349     checkNonTrivialCUnion(RetTy, BD->getCaretLocation(), NTCUC_FunctionReturn,
16350                           NTCUK_Destruct|NTCUK_Copy);
16351 
16352   PopDeclContext();
16353 
16354   // Set the captured variables on the block.
16355   SmallVector<BlockDecl::Capture, 4> Captures;
16356   for (Capture &Cap : BSI->Captures) {
16357     if (Cap.isInvalid() || Cap.isThisCapture())
16358       continue;
16359 
16360     VarDecl *Var = Cap.getVariable();
16361     Expr *CopyExpr = nullptr;
16362     if (getLangOpts().CPlusPlus && Cap.isCopyCapture()) {
16363       if (const RecordType *Record =
16364               Cap.getCaptureType()->getAs<RecordType>()) {
16365         // The capture logic needs the destructor, so make sure we mark it.
16366         // Usually this is unnecessary because most local variables have
16367         // their destructors marked at declaration time, but parameters are
16368         // an exception because it's technically only the call site that
16369         // actually requires the destructor.
16370         if (isa<ParmVarDecl>(Var))
16371           FinalizeVarWithDestructor(Var, Record);
16372 
16373         // Enter a separate potentially-evaluated context while building block
16374         // initializers to isolate their cleanups from those of the block
16375         // itself.
16376         // FIXME: Is this appropriate even when the block itself occurs in an
16377         // unevaluated operand?
16378         EnterExpressionEvaluationContext EvalContext(
16379             *this, ExpressionEvaluationContext::PotentiallyEvaluated);
16380 
16381         SourceLocation Loc = Cap.getLocation();
16382 
16383         ExprResult Result = BuildDeclarationNameExpr(
16384             CXXScopeSpec(), DeclarationNameInfo(Var->getDeclName(), Loc), Var);
16385 
16386         // According to the blocks spec, the capture of a variable from
16387         // the stack requires a const copy constructor.  This is not true
16388         // of the copy/move done to move a __block variable to the heap.
16389         if (!Result.isInvalid() &&
16390             !Result.get()->getType().isConstQualified()) {
16391           Result = ImpCastExprToType(Result.get(),
16392                                      Result.get()->getType().withConst(),
16393                                      CK_NoOp, VK_LValue);
16394         }
16395 
16396         if (!Result.isInvalid()) {
16397           Result = PerformCopyInitialization(
16398               InitializedEntity::InitializeBlock(Var->getLocation(),
16399                                                  Cap.getCaptureType()),
16400               Loc, Result.get());
16401         }
16402 
16403         // Build a full-expression copy expression if initialization
16404         // succeeded and used a non-trivial constructor.  Recover from
16405         // errors by pretending that the copy isn't necessary.
16406         if (!Result.isInvalid() &&
16407             !cast<CXXConstructExpr>(Result.get())->getConstructor()
16408                 ->isTrivial()) {
16409           Result = MaybeCreateExprWithCleanups(Result);
16410           CopyExpr = Result.get();
16411         }
16412       }
16413     }
16414 
16415     BlockDecl::Capture NewCap(Var, Cap.isBlockCapture(), Cap.isNested(),
16416                               CopyExpr);
16417     Captures.push_back(NewCap);
16418   }
16419   BD->setCaptures(Context, Captures, BSI->CXXThisCaptureIndex != 0);
16420 
16421   // Pop the block scope now but keep it alive to the end of this function.
16422   AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
16423   PoppedFunctionScopePtr ScopeRAII = PopFunctionScopeInfo(&WP, BD, BlockTy);
16424 
16425   BlockExpr *Result = new (Context) BlockExpr(BD, BlockTy);
16426 
16427   // If the block isn't obviously global, i.e. it captures anything at
16428   // all, then we need to do a few things in the surrounding context:
16429   if (Result->getBlockDecl()->hasCaptures()) {
16430     // First, this expression has a new cleanup object.
16431     ExprCleanupObjects.push_back(Result->getBlockDecl());
16432     Cleanup.setExprNeedsCleanups(true);
16433 
16434     // It also gets a branch-protected scope if any of the captured
16435     // variables needs destruction.
16436     for (const auto &CI : Result->getBlockDecl()->captures()) {
16437       const VarDecl *var = CI.getVariable();
16438       if (var->getType().isDestructedType() != QualType::DK_none) {
16439         setFunctionHasBranchProtectedScope();
16440         break;
16441       }
16442     }
16443   }
16444 
16445   if (getCurFunction())
16446     getCurFunction()->addBlock(BD);
16447 
16448   return Result;
16449 }
16450 
16451 ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, Expr *E, ParsedType Ty,
16452                             SourceLocation RPLoc) {
16453   TypeSourceInfo *TInfo;
16454   GetTypeFromParser(Ty, &TInfo);
16455   return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc);
16456 }
16457 
16458 ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc,
16459                                 Expr *E, TypeSourceInfo *TInfo,
16460                                 SourceLocation RPLoc) {
16461   Expr *OrigExpr = E;
16462   bool IsMS = false;
16463 
16464   // CUDA device code does not support varargs.
16465   if (getLangOpts().CUDA && getLangOpts().CUDAIsDevice) {
16466     if (const FunctionDecl *F = dyn_cast<FunctionDecl>(CurContext)) {
16467       CUDAFunctionTarget T = IdentifyCUDATarget(F);
16468       if (T == CFT_Global || T == CFT_Device || T == CFT_HostDevice)
16469         return ExprError(Diag(E->getBeginLoc(), diag::err_va_arg_in_device));
16470     }
16471   }
16472 
16473   // NVPTX does not support va_arg expression.
16474   if (getLangOpts().OpenMP && getLangOpts().OpenMPIsDevice &&
16475       Context.getTargetInfo().getTriple().isNVPTX())
16476     targetDiag(E->getBeginLoc(), diag::err_va_arg_in_device);
16477 
16478   // It might be a __builtin_ms_va_list. (But don't ever mark a va_arg()
16479   // as Microsoft ABI on an actual Microsoft platform, where
16480   // __builtin_ms_va_list and __builtin_va_list are the same.)
16481   if (!E->isTypeDependent() && Context.getTargetInfo().hasBuiltinMSVaList() &&
16482       Context.getTargetInfo().getBuiltinVaListKind() != TargetInfo::CharPtrBuiltinVaList) {
16483     QualType MSVaListType = Context.getBuiltinMSVaListType();
16484     if (Context.hasSameType(MSVaListType, E->getType())) {
16485       if (CheckForModifiableLvalue(E, BuiltinLoc, *this))
16486         return ExprError();
16487       IsMS = true;
16488     }
16489   }
16490 
16491   // Get the va_list type
16492   QualType VaListType = Context.getBuiltinVaListType();
16493   if (!IsMS) {
16494     if (VaListType->isArrayType()) {
16495       // Deal with implicit array decay; for example, on x86-64,
16496       // va_list is an array, but it's supposed to decay to
16497       // a pointer for va_arg.
16498       VaListType = Context.getArrayDecayedType(VaListType);
16499       // Make sure the input expression also decays appropriately.
16500       ExprResult Result = UsualUnaryConversions(E);
16501       if (Result.isInvalid())
16502         return ExprError();
16503       E = Result.get();
16504     } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) {
16505       // If va_list is a record type and we are compiling in C++ mode,
16506       // check the argument using reference binding.
16507       InitializedEntity Entity = InitializedEntity::InitializeParameter(
16508           Context, Context.getLValueReferenceType(VaListType), false);
16509       ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E);
16510       if (Init.isInvalid())
16511         return ExprError();
16512       E = Init.getAs<Expr>();
16513     } else {
16514       // Otherwise, the va_list argument must be an l-value because
16515       // it is modified by va_arg.
16516       if (!E->isTypeDependent() &&
16517           CheckForModifiableLvalue(E, BuiltinLoc, *this))
16518         return ExprError();
16519     }
16520   }
16521 
16522   if (!IsMS && !E->isTypeDependent() &&
16523       !Context.hasSameType(VaListType, E->getType()))
16524     return ExprError(
16525         Diag(E->getBeginLoc(),
16526              diag::err_first_argument_to_va_arg_not_of_type_va_list)
16527         << OrigExpr->getType() << E->getSourceRange());
16528 
16529   if (!TInfo->getType()->isDependentType()) {
16530     if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(),
16531                             diag::err_second_parameter_to_va_arg_incomplete,
16532                             TInfo->getTypeLoc()))
16533       return ExprError();
16534 
16535     if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(),
16536                                TInfo->getType(),
16537                                diag::err_second_parameter_to_va_arg_abstract,
16538                                TInfo->getTypeLoc()))
16539       return ExprError();
16540 
16541     if (!TInfo->getType().isPODType(Context)) {
16542       Diag(TInfo->getTypeLoc().getBeginLoc(),
16543            TInfo->getType()->isObjCLifetimeType()
16544              ? diag::warn_second_parameter_to_va_arg_ownership_qualified
16545              : diag::warn_second_parameter_to_va_arg_not_pod)
16546         << TInfo->getType()
16547         << TInfo->getTypeLoc().getSourceRange();
16548     }
16549 
16550     // Check for va_arg where arguments of the given type will be promoted
16551     // (i.e. this va_arg is guaranteed to have undefined behavior).
16552     QualType PromoteType;
16553     if (TInfo->getType()->isPromotableIntegerType()) {
16554       PromoteType = Context.getPromotedIntegerType(TInfo->getType());
16555       // [cstdarg.syn]p1 defers the C++ behavior to what the C standard says,
16556       // and C2x 7.16.1.1p2 says, in part:
16557       //   If type is not compatible with the type of the actual next argument
16558       //   (as promoted according to the default argument promotions), the
16559       //   behavior is undefined, except for the following cases:
16560       //     - both types are pointers to qualified or unqualified versions of
16561       //       compatible types;
16562       //     - one type is a signed integer type, the other type is the
16563       //       corresponding unsigned integer type, and the value is
16564       //       representable in both types;
16565       //     - one type is pointer to qualified or unqualified void and the
16566       //       other is a pointer to a qualified or unqualified character type.
16567       // Given that type compatibility is the primary requirement (ignoring
16568       // qualifications), you would think we could call typesAreCompatible()
16569       // directly to test this. However, in C++, that checks for *same type*,
16570       // which causes false positives when passing an enumeration type to
16571       // va_arg. Instead, get the underlying type of the enumeration and pass
16572       // that.
16573       QualType UnderlyingType = TInfo->getType();
16574       if (const auto *ET = UnderlyingType->getAs<EnumType>())
16575         UnderlyingType = ET->getDecl()->getIntegerType();
16576       if (Context.typesAreCompatible(PromoteType, UnderlyingType,
16577                                      /*CompareUnqualified*/ true))
16578         PromoteType = QualType();
16579 
16580       // If the types are still not compatible, we need to test whether the
16581       // promoted type and the underlying type are the same except for
16582       // signedness. Ask the AST for the correctly corresponding type and see
16583       // if that's compatible.
16584       if (!PromoteType.isNull() && !UnderlyingType->isBooleanType() &&
16585           PromoteType->isUnsignedIntegerType() !=
16586               UnderlyingType->isUnsignedIntegerType()) {
16587         UnderlyingType =
16588             UnderlyingType->isUnsignedIntegerType()
16589                 ? Context.getCorrespondingSignedType(UnderlyingType)
16590                 : Context.getCorrespondingUnsignedType(UnderlyingType);
16591         if (Context.typesAreCompatible(PromoteType, UnderlyingType,
16592                                        /*CompareUnqualified*/ true))
16593           PromoteType = QualType();
16594       }
16595     }
16596     if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float))
16597       PromoteType = Context.DoubleTy;
16598     if (!PromoteType.isNull())
16599       DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E,
16600                   PDiag(diag::warn_second_parameter_to_va_arg_never_compatible)
16601                           << TInfo->getType()
16602                           << PromoteType
16603                           << TInfo->getTypeLoc().getSourceRange());
16604   }
16605 
16606   QualType T = TInfo->getType().getNonLValueExprType(Context);
16607   return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T, IsMS);
16608 }
16609 
16610 ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
16611   // The type of __null will be int or long, depending on the size of
16612   // pointers on the target.
16613   QualType Ty;
16614   unsigned pw = Context.getTargetInfo().getPointerWidth(0);
16615   if (pw == Context.getTargetInfo().getIntWidth())
16616     Ty = Context.IntTy;
16617   else if (pw == Context.getTargetInfo().getLongWidth())
16618     Ty = Context.LongTy;
16619   else if (pw == Context.getTargetInfo().getLongLongWidth())
16620     Ty = Context.LongLongTy;
16621   else {
16622     llvm_unreachable("I don't know size of pointer!");
16623   }
16624 
16625   return new (Context) GNUNullExpr(Ty, TokenLoc);
16626 }
16627 
16628 static CXXRecordDecl *LookupStdSourceLocationImpl(Sema &S, SourceLocation Loc) {
16629   CXXRecordDecl *ImplDecl = nullptr;
16630 
16631   // Fetch the std::source_location::__impl decl.
16632   if (NamespaceDecl *Std = S.getStdNamespace()) {
16633     LookupResult ResultSL(S, &S.PP.getIdentifierTable().get("source_location"),
16634                           Loc, Sema::LookupOrdinaryName);
16635     if (S.LookupQualifiedName(ResultSL, Std)) {
16636       if (auto *SLDecl = ResultSL.getAsSingle<RecordDecl>()) {
16637         LookupResult ResultImpl(S, &S.PP.getIdentifierTable().get("__impl"),
16638                                 Loc, Sema::LookupOrdinaryName);
16639         if ((SLDecl->isCompleteDefinition() || SLDecl->isBeingDefined()) &&
16640             S.LookupQualifiedName(ResultImpl, SLDecl)) {
16641           ImplDecl = ResultImpl.getAsSingle<CXXRecordDecl>();
16642         }
16643       }
16644     }
16645   }
16646 
16647   if (!ImplDecl || !ImplDecl->isCompleteDefinition()) {
16648     S.Diag(Loc, diag::err_std_source_location_impl_not_found);
16649     return nullptr;
16650   }
16651 
16652   // Verify that __impl is a trivial struct type, with no base classes, and with
16653   // only the four expected fields.
16654   if (ImplDecl->isUnion() || !ImplDecl->isStandardLayout() ||
16655       ImplDecl->getNumBases() != 0) {
16656     S.Diag(Loc, diag::err_std_source_location_impl_malformed);
16657     return nullptr;
16658   }
16659 
16660   unsigned Count = 0;
16661   for (FieldDecl *F : ImplDecl->fields()) {
16662     StringRef Name = F->getName();
16663 
16664     if (Name == "_M_file_name") {
16665       if (F->getType() !=
16666           S.Context.getPointerType(S.Context.CharTy.withConst()))
16667         break;
16668       Count++;
16669     } else if (Name == "_M_function_name") {
16670       if (F->getType() !=
16671           S.Context.getPointerType(S.Context.CharTy.withConst()))
16672         break;
16673       Count++;
16674     } else if (Name == "_M_line") {
16675       if (!F->getType()->isIntegerType())
16676         break;
16677       Count++;
16678     } else if (Name == "_M_column") {
16679       if (!F->getType()->isIntegerType())
16680         break;
16681       Count++;
16682     } else {
16683       Count = 100; // invalid
16684       break;
16685     }
16686   }
16687   if (Count != 4) {
16688     S.Diag(Loc, diag::err_std_source_location_impl_malformed);
16689     return nullptr;
16690   }
16691 
16692   return ImplDecl;
16693 }
16694 
16695 ExprResult Sema::ActOnSourceLocExpr(SourceLocExpr::IdentKind Kind,
16696                                     SourceLocation BuiltinLoc,
16697                                     SourceLocation RPLoc) {
16698   QualType ResultTy;
16699   switch (Kind) {
16700   case SourceLocExpr::File:
16701   case SourceLocExpr::Function: {
16702     QualType ArrTy = Context.getStringLiteralArrayType(Context.CharTy, 0);
16703     ResultTy =
16704         Context.getPointerType(ArrTy->getAsArrayTypeUnsafe()->getElementType());
16705     break;
16706   }
16707   case SourceLocExpr::Line:
16708   case SourceLocExpr::Column:
16709     ResultTy = Context.UnsignedIntTy;
16710     break;
16711   case SourceLocExpr::SourceLocStruct:
16712     if (!StdSourceLocationImplDecl) {
16713       StdSourceLocationImplDecl =
16714           LookupStdSourceLocationImpl(*this, BuiltinLoc);
16715       if (!StdSourceLocationImplDecl)
16716         return ExprError();
16717     }
16718     ResultTy = Context.getPointerType(
16719         Context.getRecordType(StdSourceLocationImplDecl).withConst());
16720     break;
16721   }
16722 
16723   return BuildSourceLocExpr(Kind, ResultTy, BuiltinLoc, RPLoc, CurContext);
16724 }
16725 
16726 ExprResult Sema::BuildSourceLocExpr(SourceLocExpr::IdentKind Kind,
16727                                     QualType ResultTy,
16728                                     SourceLocation BuiltinLoc,
16729                                     SourceLocation RPLoc,
16730                                     DeclContext *ParentContext) {
16731   return new (Context)
16732       SourceLocExpr(Context, Kind, ResultTy, BuiltinLoc, RPLoc, ParentContext);
16733 }
16734 
16735 bool Sema::CheckConversionToObjCLiteral(QualType DstType, Expr *&Exp,
16736                                         bool Diagnose) {
16737   if (!getLangOpts().ObjC)
16738     return false;
16739 
16740   const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>();
16741   if (!PT)
16742     return false;
16743   const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
16744 
16745   // Ignore any parens, implicit casts (should only be
16746   // array-to-pointer decays), and not-so-opaque values.  The last is
16747   // important for making this trigger for property assignments.
16748   Expr *SrcExpr = Exp->IgnoreParenImpCasts();
16749   if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr))
16750     if (OV->getSourceExpr())
16751       SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts();
16752 
16753   if (auto *SL = dyn_cast<StringLiteral>(SrcExpr)) {
16754     if (!PT->isObjCIdType() &&
16755         !(ID && ID->getIdentifier()->isStr("NSString")))
16756       return false;
16757     if (!SL->isOrdinary())
16758       return false;
16759 
16760     if (Diagnose) {
16761       Diag(SL->getBeginLoc(), diag::err_missing_atsign_prefix)
16762           << /*string*/0 << FixItHint::CreateInsertion(SL->getBeginLoc(), "@");
16763       Exp = BuildObjCStringLiteral(SL->getBeginLoc(), SL).get();
16764     }
16765     return true;
16766   }
16767 
16768   if ((isa<IntegerLiteral>(SrcExpr) || isa<CharacterLiteral>(SrcExpr) ||
16769       isa<FloatingLiteral>(SrcExpr) || isa<ObjCBoolLiteralExpr>(SrcExpr) ||
16770       isa<CXXBoolLiteralExpr>(SrcExpr)) &&
16771       !SrcExpr->isNullPointerConstant(
16772           getASTContext(), Expr::NPC_NeverValueDependent)) {
16773     if (!ID || !ID->getIdentifier()->isStr("NSNumber"))
16774       return false;
16775     if (Diagnose) {
16776       Diag(SrcExpr->getBeginLoc(), diag::err_missing_atsign_prefix)
16777           << /*number*/1
16778           << FixItHint::CreateInsertion(SrcExpr->getBeginLoc(), "@");
16779       Expr *NumLit =
16780           BuildObjCNumericLiteral(SrcExpr->getBeginLoc(), SrcExpr).get();
16781       if (NumLit)
16782         Exp = NumLit;
16783     }
16784     return true;
16785   }
16786 
16787   return false;
16788 }
16789 
16790 static bool maybeDiagnoseAssignmentToFunction(Sema &S, QualType DstType,
16791                                               const Expr *SrcExpr) {
16792   if (!DstType->isFunctionPointerType() ||
16793       !SrcExpr->getType()->isFunctionType())
16794     return false;
16795 
16796   auto *DRE = dyn_cast<DeclRefExpr>(SrcExpr->IgnoreParenImpCasts());
16797   if (!DRE)
16798     return false;
16799 
16800   auto *FD = dyn_cast<FunctionDecl>(DRE->getDecl());
16801   if (!FD)
16802     return false;
16803 
16804   return !S.checkAddressOfFunctionIsAvailable(FD,
16805                                               /*Complain=*/true,
16806                                               SrcExpr->getBeginLoc());
16807 }
16808 
16809 bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
16810                                     SourceLocation Loc,
16811                                     QualType DstType, QualType SrcType,
16812                                     Expr *SrcExpr, AssignmentAction Action,
16813                                     bool *Complained) {
16814   if (Complained)
16815     *Complained = false;
16816 
16817   // Decode the result (notice that AST's are still created for extensions).
16818   bool CheckInferredResultType = false;
16819   bool isInvalid = false;
16820   unsigned DiagKind = 0;
16821   ConversionFixItGenerator ConvHints;
16822   bool MayHaveConvFixit = false;
16823   bool MayHaveFunctionDiff = false;
16824   const ObjCInterfaceDecl *IFace = nullptr;
16825   const ObjCProtocolDecl *PDecl = nullptr;
16826 
16827   switch (ConvTy) {
16828   case Compatible:
16829       DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr);
16830       return false;
16831 
16832   case PointerToInt:
16833     if (getLangOpts().CPlusPlus) {
16834       DiagKind = diag::err_typecheck_convert_pointer_int;
16835       isInvalid = true;
16836     } else {
16837       DiagKind = diag::ext_typecheck_convert_pointer_int;
16838     }
16839     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
16840     MayHaveConvFixit = true;
16841     break;
16842   case IntToPointer:
16843     if (getLangOpts().CPlusPlus) {
16844       DiagKind = diag::err_typecheck_convert_int_pointer;
16845       isInvalid = true;
16846     } else {
16847       DiagKind = diag::ext_typecheck_convert_int_pointer;
16848     }
16849     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
16850     MayHaveConvFixit = true;
16851     break;
16852   case IncompatibleFunctionPointer:
16853     if (getLangOpts().CPlusPlus) {
16854       DiagKind = diag::err_typecheck_convert_incompatible_function_pointer;
16855       isInvalid = true;
16856     } else {
16857       DiagKind = diag::ext_typecheck_convert_incompatible_function_pointer;
16858     }
16859     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
16860     MayHaveConvFixit = true;
16861     break;
16862   case IncompatiblePointer:
16863     if (Action == AA_Passing_CFAudited) {
16864       DiagKind = diag::err_arc_typecheck_convert_incompatible_pointer;
16865     } else if (getLangOpts().CPlusPlus) {
16866       DiagKind = diag::err_typecheck_convert_incompatible_pointer;
16867       isInvalid = true;
16868     } else {
16869       DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
16870     }
16871     CheckInferredResultType = DstType->isObjCObjectPointerType() &&
16872       SrcType->isObjCObjectPointerType();
16873     if (!CheckInferredResultType) {
16874       ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
16875     } else if (CheckInferredResultType) {
16876       SrcType = SrcType.getUnqualifiedType();
16877       DstType = DstType.getUnqualifiedType();
16878     }
16879     MayHaveConvFixit = true;
16880     break;
16881   case IncompatiblePointerSign:
16882     if (getLangOpts().CPlusPlus) {
16883       DiagKind = diag::err_typecheck_convert_incompatible_pointer_sign;
16884       isInvalid = true;
16885     } else {
16886       DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
16887     }
16888     break;
16889   case FunctionVoidPointer:
16890     if (getLangOpts().CPlusPlus) {
16891       DiagKind = diag::err_typecheck_convert_pointer_void_func;
16892       isInvalid = true;
16893     } else {
16894       DiagKind = diag::ext_typecheck_convert_pointer_void_func;
16895     }
16896     break;
16897   case IncompatiblePointerDiscardsQualifiers: {
16898     // Perform array-to-pointer decay if necessary.
16899     if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType);
16900 
16901     isInvalid = true;
16902 
16903     Qualifiers lhq = SrcType->getPointeeType().getQualifiers();
16904     Qualifiers rhq = DstType->getPointeeType().getQualifiers();
16905     if (lhq.getAddressSpace() != rhq.getAddressSpace()) {
16906       DiagKind = diag::err_typecheck_incompatible_address_space;
16907       break;
16908 
16909     } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) {
16910       DiagKind = diag::err_typecheck_incompatible_ownership;
16911       break;
16912     }
16913 
16914     llvm_unreachable("unknown error case for discarding qualifiers!");
16915     // fallthrough
16916   }
16917   case CompatiblePointerDiscardsQualifiers:
16918     // If the qualifiers lost were because we were applying the
16919     // (deprecated) C++ conversion from a string literal to a char*
16920     // (or wchar_t*), then there was no error (C++ 4.2p2).  FIXME:
16921     // Ideally, this check would be performed in
16922     // checkPointerTypesForAssignment. However, that would require a
16923     // bit of refactoring (so that the second argument is an
16924     // expression, rather than a type), which should be done as part
16925     // of a larger effort to fix checkPointerTypesForAssignment for
16926     // C++ semantics.
16927     if (getLangOpts().CPlusPlus &&
16928         IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
16929       return false;
16930     if (getLangOpts().CPlusPlus) {
16931       DiagKind =  diag::err_typecheck_convert_discards_qualifiers;
16932       isInvalid = true;
16933     } else {
16934       DiagKind =  diag::ext_typecheck_convert_discards_qualifiers;
16935     }
16936 
16937     break;
16938   case IncompatibleNestedPointerQualifiers:
16939     if (getLangOpts().CPlusPlus) {
16940       isInvalid = true;
16941       DiagKind = diag::err_nested_pointer_qualifier_mismatch;
16942     } else {
16943       DiagKind = diag::ext_nested_pointer_qualifier_mismatch;
16944     }
16945     break;
16946   case IncompatibleNestedPointerAddressSpaceMismatch:
16947     DiagKind = diag::err_typecheck_incompatible_nested_address_space;
16948     isInvalid = true;
16949     break;
16950   case IntToBlockPointer:
16951     DiagKind = diag::err_int_to_block_pointer;
16952     isInvalid = true;
16953     break;
16954   case IncompatibleBlockPointer:
16955     DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
16956     isInvalid = true;
16957     break;
16958   case IncompatibleObjCQualifiedId: {
16959     if (SrcType->isObjCQualifiedIdType()) {
16960       const ObjCObjectPointerType *srcOPT =
16961                 SrcType->castAs<ObjCObjectPointerType>();
16962       for (auto *srcProto : srcOPT->quals()) {
16963         PDecl = srcProto;
16964         break;
16965       }
16966       if (const ObjCInterfaceType *IFaceT =
16967             DstType->castAs<ObjCObjectPointerType>()->getInterfaceType())
16968         IFace = IFaceT->getDecl();
16969     }
16970     else if (DstType->isObjCQualifiedIdType()) {
16971       const ObjCObjectPointerType *dstOPT =
16972         DstType->castAs<ObjCObjectPointerType>();
16973       for (auto *dstProto : dstOPT->quals()) {
16974         PDecl = dstProto;
16975         break;
16976       }
16977       if (const ObjCInterfaceType *IFaceT =
16978             SrcType->castAs<ObjCObjectPointerType>()->getInterfaceType())
16979         IFace = IFaceT->getDecl();
16980     }
16981     if (getLangOpts().CPlusPlus) {
16982       DiagKind = diag::err_incompatible_qualified_id;
16983       isInvalid = true;
16984     } else {
16985       DiagKind = diag::warn_incompatible_qualified_id;
16986     }
16987     break;
16988   }
16989   case IncompatibleVectors:
16990     if (getLangOpts().CPlusPlus) {
16991       DiagKind = diag::err_incompatible_vectors;
16992       isInvalid = true;
16993     } else {
16994       DiagKind = diag::warn_incompatible_vectors;
16995     }
16996     break;
16997   case IncompatibleObjCWeakRef:
16998     DiagKind = diag::err_arc_weak_unavailable_assign;
16999     isInvalid = true;
17000     break;
17001   case Incompatible:
17002     if (maybeDiagnoseAssignmentToFunction(*this, DstType, SrcExpr)) {
17003       if (Complained)
17004         *Complained = true;
17005       return true;
17006     }
17007 
17008     DiagKind = diag::err_typecheck_convert_incompatible;
17009     ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
17010     MayHaveConvFixit = true;
17011     isInvalid = true;
17012     MayHaveFunctionDiff = true;
17013     break;
17014   }
17015 
17016   QualType FirstType, SecondType;
17017   switch (Action) {
17018   case AA_Assigning:
17019   case AA_Initializing:
17020     // The destination type comes first.
17021     FirstType = DstType;
17022     SecondType = SrcType;
17023     break;
17024 
17025   case AA_Returning:
17026   case AA_Passing:
17027   case AA_Passing_CFAudited:
17028   case AA_Converting:
17029   case AA_Sending:
17030   case AA_Casting:
17031     // The source type comes first.
17032     FirstType = SrcType;
17033     SecondType = DstType;
17034     break;
17035   }
17036 
17037   PartialDiagnostic FDiag = PDiag(DiagKind);
17038   AssignmentAction ActionForDiag = Action;
17039   if (Action == AA_Passing_CFAudited)
17040     ActionForDiag = AA_Passing;
17041 
17042   FDiag << FirstType << SecondType << ActionForDiag
17043         << SrcExpr->getSourceRange();
17044 
17045   if (DiagKind == diag::ext_typecheck_convert_incompatible_pointer_sign ||
17046       DiagKind == diag::err_typecheck_convert_incompatible_pointer_sign) {
17047     auto isPlainChar = [](const clang::Type *Type) {
17048       return Type->isSpecificBuiltinType(BuiltinType::Char_S) ||
17049              Type->isSpecificBuiltinType(BuiltinType::Char_U);
17050     };
17051     FDiag << (isPlainChar(FirstType->getPointeeOrArrayElementType()) ||
17052               isPlainChar(SecondType->getPointeeOrArrayElementType()));
17053   }
17054 
17055   // If we can fix the conversion, suggest the FixIts.
17056   if (!ConvHints.isNull()) {
17057     for (FixItHint &H : ConvHints.Hints)
17058       FDiag << H;
17059   }
17060 
17061   if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); }
17062 
17063   if (MayHaveFunctionDiff)
17064     HandleFunctionTypeMismatch(FDiag, SecondType, FirstType);
17065 
17066   Diag(Loc, FDiag);
17067   if ((DiagKind == diag::warn_incompatible_qualified_id ||
17068        DiagKind == diag::err_incompatible_qualified_id) &&
17069       PDecl && IFace && !IFace->hasDefinition())
17070     Diag(IFace->getLocation(), diag::note_incomplete_class_and_qualified_id)
17071         << IFace << PDecl;
17072 
17073   if (SecondType == Context.OverloadTy)
17074     NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression,
17075                               FirstType, /*TakingAddress=*/true);
17076 
17077   if (CheckInferredResultType)
17078     EmitRelatedResultTypeNote(SrcExpr);
17079 
17080   if (Action == AA_Returning && ConvTy == IncompatiblePointer)
17081     EmitRelatedResultTypeNoteForReturn(DstType);
17082 
17083   if (Complained)
17084     *Complained = true;
17085   return isInvalid;
17086 }
17087 
17088 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
17089                                                  llvm::APSInt *Result,
17090                                                  AllowFoldKind CanFold) {
17091   class SimpleICEDiagnoser : public VerifyICEDiagnoser {
17092   public:
17093     SemaDiagnosticBuilder diagnoseNotICEType(Sema &S, SourceLocation Loc,
17094                                              QualType T) override {
17095       return S.Diag(Loc, diag::err_ice_not_integral)
17096              << T << S.LangOpts.CPlusPlus;
17097     }
17098     SemaDiagnosticBuilder diagnoseNotICE(Sema &S, SourceLocation Loc) override {
17099       return S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus;
17100     }
17101   } Diagnoser;
17102 
17103   return VerifyIntegerConstantExpression(E, Result, Diagnoser, CanFold);
17104 }
17105 
17106 ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
17107                                                  llvm::APSInt *Result,
17108                                                  unsigned DiagID,
17109                                                  AllowFoldKind CanFold) {
17110   class IDDiagnoser : public VerifyICEDiagnoser {
17111     unsigned DiagID;
17112 
17113   public:
17114     IDDiagnoser(unsigned DiagID)
17115       : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { }
17116 
17117     SemaDiagnosticBuilder diagnoseNotICE(Sema &S, SourceLocation Loc) override {
17118       return S.Diag(Loc, DiagID);
17119     }
17120   } Diagnoser(DiagID);
17121 
17122   return VerifyIntegerConstantExpression(E, Result, Diagnoser, CanFold);
17123 }
17124 
17125 Sema::SemaDiagnosticBuilder
17126 Sema::VerifyICEDiagnoser::diagnoseNotICEType(Sema &S, SourceLocation Loc,
17127                                              QualType T) {
17128   return diagnoseNotICE(S, Loc);
17129 }
17130 
17131 Sema::SemaDiagnosticBuilder
17132 Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc) {
17133   return S.Diag(Loc, diag::ext_expr_not_ice) << S.LangOpts.CPlusPlus;
17134 }
17135 
17136 ExprResult
17137 Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
17138                                       VerifyICEDiagnoser &Diagnoser,
17139                                       AllowFoldKind CanFold) {
17140   SourceLocation DiagLoc = E->getBeginLoc();
17141 
17142   if (getLangOpts().CPlusPlus11) {
17143     // C++11 [expr.const]p5:
17144     //   If an expression of literal class type is used in a context where an
17145     //   integral constant expression is required, then that class type shall
17146     //   have a single non-explicit conversion function to an integral or
17147     //   unscoped enumeration type
17148     ExprResult Converted;
17149     class CXX11ConvertDiagnoser : public ICEConvertDiagnoser {
17150       VerifyICEDiagnoser &BaseDiagnoser;
17151     public:
17152       CXX11ConvertDiagnoser(VerifyICEDiagnoser &BaseDiagnoser)
17153           : ICEConvertDiagnoser(/*AllowScopedEnumerations*/ false,
17154                                 BaseDiagnoser.Suppress, true),
17155             BaseDiagnoser(BaseDiagnoser) {}
17156 
17157       SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
17158                                            QualType T) override {
17159         return BaseDiagnoser.diagnoseNotICEType(S, Loc, T);
17160       }
17161 
17162       SemaDiagnosticBuilder diagnoseIncomplete(
17163           Sema &S, SourceLocation Loc, QualType T) override {
17164         return S.Diag(Loc, diag::err_ice_incomplete_type) << T;
17165       }
17166 
17167       SemaDiagnosticBuilder diagnoseExplicitConv(
17168           Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
17169         return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy;
17170       }
17171 
17172       SemaDiagnosticBuilder noteExplicitConv(
17173           Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
17174         return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
17175                  << ConvTy->isEnumeralType() << ConvTy;
17176       }
17177 
17178       SemaDiagnosticBuilder diagnoseAmbiguous(
17179           Sema &S, SourceLocation Loc, QualType T) override {
17180         return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T;
17181       }
17182 
17183       SemaDiagnosticBuilder noteAmbiguous(
17184           Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
17185         return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
17186                  << ConvTy->isEnumeralType() << ConvTy;
17187       }
17188 
17189       SemaDiagnosticBuilder diagnoseConversion(
17190           Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
17191         llvm_unreachable("conversion functions are permitted");
17192       }
17193     } ConvertDiagnoser(Diagnoser);
17194 
17195     Converted = PerformContextualImplicitConversion(DiagLoc, E,
17196                                                     ConvertDiagnoser);
17197     if (Converted.isInvalid())
17198       return Converted;
17199     E = Converted.get();
17200     if (!E->getType()->isIntegralOrUnscopedEnumerationType())
17201       return ExprError();
17202   } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
17203     // An ICE must be of integral or unscoped enumeration type.
17204     if (!Diagnoser.Suppress)
17205       Diagnoser.diagnoseNotICEType(*this, DiagLoc, E->getType())
17206           << E->getSourceRange();
17207     return ExprError();
17208   }
17209 
17210   ExprResult RValueExpr = DefaultLvalueConversion(E);
17211   if (RValueExpr.isInvalid())
17212     return ExprError();
17213 
17214   E = RValueExpr.get();
17215 
17216   // Circumvent ICE checking in C++11 to avoid evaluating the expression twice
17217   // in the non-ICE case.
17218   if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) {
17219     if (Result)
17220       *Result = E->EvaluateKnownConstIntCheckOverflow(Context);
17221     if (!isa<ConstantExpr>(E))
17222       E = Result ? ConstantExpr::Create(Context, E, APValue(*Result))
17223                  : ConstantExpr::Create(Context, E);
17224     return E;
17225   }
17226 
17227   Expr::EvalResult EvalResult;
17228   SmallVector<PartialDiagnosticAt, 8> Notes;
17229   EvalResult.Diag = &Notes;
17230 
17231   // Try to evaluate the expression, and produce diagnostics explaining why it's
17232   // not a constant expression as a side-effect.
17233   bool Folded =
17234       E->EvaluateAsRValue(EvalResult, Context, /*isConstantContext*/ true) &&
17235       EvalResult.Val.isInt() && !EvalResult.HasSideEffects;
17236 
17237   if (!isa<ConstantExpr>(E))
17238     E = ConstantExpr::Create(Context, E, EvalResult.Val);
17239 
17240   // In C++11, we can rely on diagnostics being produced for any expression
17241   // which is not a constant expression. If no diagnostics were produced, then
17242   // this is a constant expression.
17243   if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) {
17244     if (Result)
17245       *Result = EvalResult.Val.getInt();
17246     return E;
17247   }
17248 
17249   // If our only note is the usual "invalid subexpression" note, just point
17250   // the caret at its location rather than producing an essentially
17251   // redundant note.
17252   if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
17253         diag::note_invalid_subexpr_in_const_expr) {
17254     DiagLoc = Notes[0].first;
17255     Notes.clear();
17256   }
17257 
17258   if (!Folded || !CanFold) {
17259     if (!Diagnoser.Suppress) {
17260       Diagnoser.diagnoseNotICE(*this, DiagLoc) << E->getSourceRange();
17261       for (const PartialDiagnosticAt &Note : Notes)
17262         Diag(Note.first, Note.second);
17263     }
17264 
17265     return ExprError();
17266   }
17267 
17268   Diagnoser.diagnoseFold(*this, DiagLoc) << E->getSourceRange();
17269   for (const PartialDiagnosticAt &Note : Notes)
17270     Diag(Note.first, Note.second);
17271 
17272   if (Result)
17273     *Result = EvalResult.Val.getInt();
17274   return E;
17275 }
17276 
17277 namespace {
17278   // Handle the case where we conclude a expression which we speculatively
17279   // considered to be unevaluated is actually evaluated.
17280   class TransformToPE : public TreeTransform<TransformToPE> {
17281     typedef TreeTransform<TransformToPE> BaseTransform;
17282 
17283   public:
17284     TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { }
17285 
17286     // Make sure we redo semantic analysis
17287     bool AlwaysRebuild() { return true; }
17288     bool ReplacingOriginal() { return true; }
17289 
17290     // We need to special-case DeclRefExprs referring to FieldDecls which
17291     // are not part of a member pointer formation; normal TreeTransforming
17292     // doesn't catch this case because of the way we represent them in the AST.
17293     // FIXME: This is a bit ugly; is it really the best way to handle this
17294     // case?
17295     //
17296     // Error on DeclRefExprs referring to FieldDecls.
17297     ExprResult TransformDeclRefExpr(DeclRefExpr *E) {
17298       if (isa<FieldDecl>(E->getDecl()) &&
17299           !SemaRef.isUnevaluatedContext())
17300         return SemaRef.Diag(E->getLocation(),
17301                             diag::err_invalid_non_static_member_use)
17302             << E->getDecl() << E->getSourceRange();
17303 
17304       return BaseTransform::TransformDeclRefExpr(E);
17305     }
17306 
17307     // Exception: filter out member pointer formation
17308     ExprResult TransformUnaryOperator(UnaryOperator *E) {
17309       if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType())
17310         return E;
17311 
17312       return BaseTransform::TransformUnaryOperator(E);
17313     }
17314 
17315     // The body of a lambda-expression is in a separate expression evaluation
17316     // context so never needs to be transformed.
17317     // FIXME: Ideally we wouldn't transform the closure type either, and would
17318     // just recreate the capture expressions and lambda expression.
17319     StmtResult TransformLambdaBody(LambdaExpr *E, Stmt *Body) {
17320       return SkipLambdaBody(E, Body);
17321     }
17322   };
17323 }
17324 
17325 ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) {
17326   assert(isUnevaluatedContext() &&
17327          "Should only transform unevaluated expressions");
17328   ExprEvalContexts.back().Context =
17329       ExprEvalContexts[ExprEvalContexts.size()-2].Context;
17330   if (isUnevaluatedContext())
17331     return E;
17332   return TransformToPE(*this).TransformExpr(E);
17333 }
17334 
17335 TypeSourceInfo *Sema::TransformToPotentiallyEvaluated(TypeSourceInfo *TInfo) {
17336   assert(isUnevaluatedContext() &&
17337          "Should only transform unevaluated expressions");
17338   ExprEvalContexts.back().Context =
17339       ExprEvalContexts[ExprEvalContexts.size() - 2].Context;
17340   if (isUnevaluatedContext())
17341     return TInfo;
17342   return TransformToPE(*this).TransformType(TInfo);
17343 }
17344 
17345 void
17346 Sema::PushExpressionEvaluationContext(
17347     ExpressionEvaluationContext NewContext, Decl *LambdaContextDecl,
17348     ExpressionEvaluationContextRecord::ExpressionKind ExprContext) {
17349   ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), Cleanup,
17350                                 LambdaContextDecl, ExprContext);
17351 
17352   // Discarded statements and immediate contexts nested in other
17353   // discarded statements or immediate context are themselves
17354   // a discarded statement or an immediate context, respectively.
17355   ExprEvalContexts.back().InDiscardedStatement =
17356       ExprEvalContexts[ExprEvalContexts.size() - 2]
17357           .isDiscardedStatementContext();
17358   ExprEvalContexts.back().InImmediateFunctionContext =
17359       ExprEvalContexts[ExprEvalContexts.size() - 2]
17360           .isImmediateFunctionContext();
17361 
17362   Cleanup.reset();
17363   if (!MaybeODRUseExprs.empty())
17364     std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs);
17365 }
17366 
17367 void
17368 Sema::PushExpressionEvaluationContext(
17369     ExpressionEvaluationContext NewContext, ReuseLambdaContextDecl_t,
17370     ExpressionEvaluationContextRecord::ExpressionKind ExprContext) {
17371   Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl;
17372   PushExpressionEvaluationContext(NewContext, ClosureContextDecl, ExprContext);
17373 }
17374 
17375 namespace {
17376 
17377 const DeclRefExpr *CheckPossibleDeref(Sema &S, const Expr *PossibleDeref) {
17378   PossibleDeref = PossibleDeref->IgnoreParenImpCasts();
17379   if (const auto *E = dyn_cast<UnaryOperator>(PossibleDeref)) {
17380     if (E->getOpcode() == UO_Deref)
17381       return CheckPossibleDeref(S, E->getSubExpr());
17382   } else if (const auto *E = dyn_cast<ArraySubscriptExpr>(PossibleDeref)) {
17383     return CheckPossibleDeref(S, E->getBase());
17384   } else if (const auto *E = dyn_cast<MemberExpr>(PossibleDeref)) {
17385     return CheckPossibleDeref(S, E->getBase());
17386   } else if (const auto E = dyn_cast<DeclRefExpr>(PossibleDeref)) {
17387     QualType Inner;
17388     QualType Ty = E->getType();
17389     if (const auto *Ptr = Ty->getAs<PointerType>())
17390       Inner = Ptr->getPointeeType();
17391     else if (const auto *Arr = S.Context.getAsArrayType(Ty))
17392       Inner = Arr->getElementType();
17393     else
17394       return nullptr;
17395 
17396     if (Inner->hasAttr(attr::NoDeref))
17397       return E;
17398   }
17399   return nullptr;
17400 }
17401 
17402 } // namespace
17403 
17404 void Sema::WarnOnPendingNoDerefs(ExpressionEvaluationContextRecord &Rec) {
17405   for (const Expr *E : Rec.PossibleDerefs) {
17406     const DeclRefExpr *DeclRef = CheckPossibleDeref(*this, E);
17407     if (DeclRef) {
17408       const ValueDecl *Decl = DeclRef->getDecl();
17409       Diag(E->getExprLoc(), diag::warn_dereference_of_noderef_type)
17410           << Decl->getName() << E->getSourceRange();
17411       Diag(Decl->getLocation(), diag::note_previous_decl) << Decl->getName();
17412     } else {
17413       Diag(E->getExprLoc(), diag::warn_dereference_of_noderef_type_no_decl)
17414           << E->getSourceRange();
17415     }
17416   }
17417   Rec.PossibleDerefs.clear();
17418 }
17419 
17420 /// Check whether E, which is either a discarded-value expression or an
17421 /// unevaluated operand, is a simple-assignment to a volatlie-qualified lvalue,
17422 /// and if so, remove it from the list of volatile-qualified assignments that
17423 /// we are going to warn are deprecated.
17424 void Sema::CheckUnusedVolatileAssignment(Expr *E) {
17425   if (!E->getType().isVolatileQualified() || !getLangOpts().CPlusPlus20)
17426     return;
17427 
17428   // Note: ignoring parens here is not justified by the standard rules, but
17429   // ignoring parentheses seems like a more reasonable approach, and this only
17430   // drives a deprecation warning so doesn't affect conformance.
17431   if (auto *BO = dyn_cast<BinaryOperator>(E->IgnoreParenImpCasts())) {
17432     if (BO->getOpcode() == BO_Assign) {
17433       auto &LHSs = ExprEvalContexts.back().VolatileAssignmentLHSs;
17434       llvm::erase_value(LHSs, BO->getLHS());
17435     }
17436   }
17437 }
17438 
17439 ExprResult Sema::CheckForImmediateInvocation(ExprResult E, FunctionDecl *Decl) {
17440   if (isUnevaluatedContext() || !E.isUsable() || !Decl ||
17441       !Decl->isConsteval() || isConstantEvaluated() ||
17442       RebuildingImmediateInvocation || isImmediateFunctionContext())
17443     return E;
17444 
17445   /// Opportunistically remove the callee from ReferencesToConsteval if we can.
17446   /// It's OK if this fails; we'll also remove this in
17447   /// HandleImmediateInvocations, but catching it here allows us to avoid
17448   /// walking the AST looking for it in simple cases.
17449   if (auto *Call = dyn_cast<CallExpr>(E.get()->IgnoreImplicit()))
17450     if (auto *DeclRef =
17451             dyn_cast<DeclRefExpr>(Call->getCallee()->IgnoreImplicit()))
17452       ExprEvalContexts.back().ReferenceToConsteval.erase(DeclRef);
17453 
17454   E = MaybeCreateExprWithCleanups(E);
17455 
17456   ConstantExpr *Res = ConstantExpr::Create(
17457       getASTContext(), E.get(),
17458       ConstantExpr::getStorageKind(Decl->getReturnType().getTypePtr(),
17459                                    getASTContext()),
17460       /*IsImmediateInvocation*/ true);
17461   /// Value-dependent constant expressions should not be immediately
17462   /// evaluated until they are instantiated.
17463   if (!Res->isValueDependent())
17464     ExprEvalContexts.back().ImmediateInvocationCandidates.emplace_back(Res, 0);
17465   return Res;
17466 }
17467 
17468 static void EvaluateAndDiagnoseImmediateInvocation(
17469     Sema &SemaRef, Sema::ImmediateInvocationCandidate Candidate) {
17470   llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
17471   Expr::EvalResult Eval;
17472   Eval.Diag = &Notes;
17473   ConstantExpr *CE = Candidate.getPointer();
17474   bool Result = CE->EvaluateAsConstantExpr(
17475       Eval, SemaRef.getASTContext(), ConstantExprKind::ImmediateInvocation);
17476   if (!Result || !Notes.empty()) {
17477     Expr *InnerExpr = CE->getSubExpr()->IgnoreImplicit();
17478     if (auto *FunctionalCast = dyn_cast<CXXFunctionalCastExpr>(InnerExpr))
17479       InnerExpr = FunctionalCast->getSubExpr();
17480     FunctionDecl *FD = nullptr;
17481     if (auto *Call = dyn_cast<CallExpr>(InnerExpr))
17482       FD = cast<FunctionDecl>(Call->getCalleeDecl());
17483     else if (auto *Call = dyn_cast<CXXConstructExpr>(InnerExpr))
17484       FD = Call->getConstructor();
17485     else
17486       llvm_unreachable("unhandled decl kind");
17487     assert(FD->isConsteval());
17488     SemaRef.Diag(CE->getBeginLoc(), diag::err_invalid_consteval_call) << FD;
17489     for (auto &Note : Notes)
17490       SemaRef.Diag(Note.first, Note.second);
17491     return;
17492   }
17493   CE->MoveIntoResult(Eval.Val, SemaRef.getASTContext());
17494 }
17495 
17496 static void RemoveNestedImmediateInvocation(
17497     Sema &SemaRef, Sema::ExpressionEvaluationContextRecord &Rec,
17498     SmallVector<Sema::ImmediateInvocationCandidate, 4>::reverse_iterator It) {
17499   struct ComplexRemove : TreeTransform<ComplexRemove> {
17500     using Base = TreeTransform<ComplexRemove>;
17501     llvm::SmallPtrSetImpl<DeclRefExpr *> &DRSet;
17502     SmallVector<Sema::ImmediateInvocationCandidate, 4> &IISet;
17503     SmallVector<Sema::ImmediateInvocationCandidate, 4>::reverse_iterator
17504         CurrentII;
17505     ComplexRemove(Sema &SemaRef, llvm::SmallPtrSetImpl<DeclRefExpr *> &DR,
17506                   SmallVector<Sema::ImmediateInvocationCandidate, 4> &II,
17507                   SmallVector<Sema::ImmediateInvocationCandidate,
17508                               4>::reverse_iterator Current)
17509         : Base(SemaRef), DRSet(DR), IISet(II), CurrentII(Current) {}
17510     void RemoveImmediateInvocation(ConstantExpr* E) {
17511       auto It = std::find_if(CurrentII, IISet.rend(),
17512                              [E](Sema::ImmediateInvocationCandidate Elem) {
17513                                return Elem.getPointer() == E;
17514                              });
17515       assert(It != IISet.rend() &&
17516              "ConstantExpr marked IsImmediateInvocation should "
17517              "be present");
17518       It->setInt(1); // Mark as deleted
17519     }
17520     ExprResult TransformConstantExpr(ConstantExpr *E) {
17521       if (!E->isImmediateInvocation())
17522         return Base::TransformConstantExpr(E);
17523       RemoveImmediateInvocation(E);
17524       return Base::TransformExpr(E->getSubExpr());
17525     }
17526     /// Base::TransfromCXXOperatorCallExpr doesn't traverse the callee so
17527     /// we need to remove its DeclRefExpr from the DRSet.
17528     ExprResult TransformCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
17529       DRSet.erase(cast<DeclRefExpr>(E->getCallee()->IgnoreImplicit()));
17530       return Base::TransformCXXOperatorCallExpr(E);
17531     }
17532     /// Base::TransformInitializer skip ConstantExpr so we need to visit them
17533     /// here.
17534     ExprResult TransformInitializer(Expr *Init, bool NotCopyInit) {
17535       if (!Init)
17536         return Init;
17537       /// ConstantExpr are the first layer of implicit node to be removed so if
17538       /// Init isn't a ConstantExpr, no ConstantExpr will be skipped.
17539       if (auto *CE = dyn_cast<ConstantExpr>(Init))
17540         if (CE->isImmediateInvocation())
17541           RemoveImmediateInvocation(CE);
17542       return Base::TransformInitializer(Init, NotCopyInit);
17543     }
17544     ExprResult TransformDeclRefExpr(DeclRefExpr *E) {
17545       DRSet.erase(E);
17546       return E;
17547     }
17548     bool AlwaysRebuild() { return false; }
17549     bool ReplacingOriginal() { return true; }
17550     bool AllowSkippingCXXConstructExpr() {
17551       bool Res = AllowSkippingFirstCXXConstructExpr;
17552       AllowSkippingFirstCXXConstructExpr = true;
17553       return Res;
17554     }
17555     bool AllowSkippingFirstCXXConstructExpr = true;
17556   } Transformer(SemaRef, Rec.ReferenceToConsteval,
17557                 Rec.ImmediateInvocationCandidates, It);
17558 
17559   /// CXXConstructExpr with a single argument are getting skipped by
17560   /// TreeTransform in some situtation because they could be implicit. This
17561   /// can only occur for the top-level CXXConstructExpr because it is used
17562   /// nowhere in the expression being transformed therefore will not be rebuilt.
17563   /// Setting AllowSkippingFirstCXXConstructExpr to false will prevent from
17564   /// skipping the first CXXConstructExpr.
17565   if (isa<CXXConstructExpr>(It->getPointer()->IgnoreImplicit()))
17566     Transformer.AllowSkippingFirstCXXConstructExpr = false;
17567 
17568   ExprResult Res = Transformer.TransformExpr(It->getPointer()->getSubExpr());
17569   assert(Res.isUsable());
17570   Res = SemaRef.MaybeCreateExprWithCleanups(Res);
17571   It->getPointer()->setSubExpr(Res.get());
17572 }
17573 
17574 static void
17575 HandleImmediateInvocations(Sema &SemaRef,
17576                            Sema::ExpressionEvaluationContextRecord &Rec) {
17577   if ((Rec.ImmediateInvocationCandidates.size() == 0 &&
17578        Rec.ReferenceToConsteval.size() == 0) ||
17579       SemaRef.RebuildingImmediateInvocation)
17580     return;
17581 
17582   /// When we have more then 1 ImmediateInvocationCandidates we need to check
17583   /// for nested ImmediateInvocationCandidates. when we have only 1 we only
17584   /// need to remove ReferenceToConsteval in the immediate invocation.
17585   if (Rec.ImmediateInvocationCandidates.size() > 1) {
17586 
17587     /// Prevent sema calls during the tree transform from adding pointers that
17588     /// are already in the sets.
17589     llvm::SaveAndRestore<bool> DisableIITracking(
17590         SemaRef.RebuildingImmediateInvocation, true);
17591 
17592     /// Prevent diagnostic during tree transfrom as they are duplicates
17593     Sema::TentativeAnalysisScope DisableDiag(SemaRef);
17594 
17595     for (auto It = Rec.ImmediateInvocationCandidates.rbegin();
17596          It != Rec.ImmediateInvocationCandidates.rend(); It++)
17597       if (!It->getInt())
17598         RemoveNestedImmediateInvocation(SemaRef, Rec, It);
17599   } else if (Rec.ImmediateInvocationCandidates.size() == 1 &&
17600              Rec.ReferenceToConsteval.size()) {
17601     struct SimpleRemove : RecursiveASTVisitor<SimpleRemove> {
17602       llvm::SmallPtrSetImpl<DeclRefExpr *> &DRSet;
17603       SimpleRemove(llvm::SmallPtrSetImpl<DeclRefExpr *> &S) : DRSet(S) {}
17604       bool VisitDeclRefExpr(DeclRefExpr *E) {
17605         DRSet.erase(E);
17606         return DRSet.size();
17607       }
17608     } Visitor(Rec.ReferenceToConsteval);
17609     Visitor.TraverseStmt(
17610         Rec.ImmediateInvocationCandidates.front().getPointer()->getSubExpr());
17611   }
17612   for (auto CE : Rec.ImmediateInvocationCandidates)
17613     if (!CE.getInt())
17614       EvaluateAndDiagnoseImmediateInvocation(SemaRef, CE);
17615   for (auto DR : Rec.ReferenceToConsteval) {
17616     auto *FD = cast<FunctionDecl>(DR->getDecl());
17617     SemaRef.Diag(DR->getBeginLoc(), diag::err_invalid_consteval_take_address)
17618         << FD;
17619     SemaRef.Diag(FD->getLocation(), diag::note_declared_at);
17620   }
17621 }
17622 
17623 void Sema::PopExpressionEvaluationContext() {
17624   ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back();
17625   unsigned NumTypos = Rec.NumTypos;
17626 
17627   if (!Rec.Lambdas.empty()) {
17628     using ExpressionKind = ExpressionEvaluationContextRecord::ExpressionKind;
17629     if (!getLangOpts().CPlusPlus20 &&
17630         (Rec.ExprContext == ExpressionKind::EK_TemplateArgument ||
17631          Rec.isUnevaluated() ||
17632          (Rec.isConstantEvaluated() && !getLangOpts().CPlusPlus17))) {
17633       unsigned D;
17634       if (Rec.isUnevaluated()) {
17635         // C++11 [expr.prim.lambda]p2:
17636         //   A lambda-expression shall not appear in an unevaluated operand
17637         //   (Clause 5).
17638         D = diag::err_lambda_unevaluated_operand;
17639       } else if (Rec.isConstantEvaluated() && !getLangOpts().CPlusPlus17) {
17640         // C++1y [expr.const]p2:
17641         //   A conditional-expression e is a core constant expression unless the
17642         //   evaluation of e, following the rules of the abstract machine, would
17643         //   evaluate [...] a lambda-expression.
17644         D = diag::err_lambda_in_constant_expression;
17645       } else if (Rec.ExprContext == ExpressionKind::EK_TemplateArgument) {
17646         // C++17 [expr.prim.lamda]p2:
17647         // A lambda-expression shall not appear [...] in a template-argument.
17648         D = diag::err_lambda_in_invalid_context;
17649       } else
17650         llvm_unreachable("Couldn't infer lambda error message.");
17651 
17652       for (const auto *L : Rec.Lambdas)
17653         Diag(L->getBeginLoc(), D);
17654     }
17655   }
17656 
17657   WarnOnPendingNoDerefs(Rec);
17658   HandleImmediateInvocations(*this, Rec);
17659 
17660   // Warn on any volatile-qualified simple-assignments that are not discarded-
17661   // value expressions nor unevaluated operands (those cases get removed from
17662   // this list by CheckUnusedVolatileAssignment).
17663   for (auto *BO : Rec.VolatileAssignmentLHSs)
17664     Diag(BO->getBeginLoc(), diag::warn_deprecated_simple_assign_volatile)
17665         << BO->getType();
17666 
17667   // When are coming out of an unevaluated context, clear out any
17668   // temporaries that we may have created as part of the evaluation of
17669   // the expression in that context: they aren't relevant because they
17670   // will never be constructed.
17671   if (Rec.isUnevaluated() || Rec.isConstantEvaluated()) {
17672     ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects,
17673                              ExprCleanupObjects.end());
17674     Cleanup = Rec.ParentCleanup;
17675     CleanupVarDeclMarking();
17676     std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs);
17677   // Otherwise, merge the contexts together.
17678   } else {
17679     Cleanup.mergeFrom(Rec.ParentCleanup);
17680     MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(),
17681                             Rec.SavedMaybeODRUseExprs.end());
17682   }
17683 
17684   // Pop the current expression evaluation context off the stack.
17685   ExprEvalContexts.pop_back();
17686 
17687   // The global expression evaluation context record is never popped.
17688   ExprEvalContexts.back().NumTypos += NumTypos;
17689 }
17690 
17691 void Sema::DiscardCleanupsInEvaluationContext() {
17692   ExprCleanupObjects.erase(
17693          ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects,
17694          ExprCleanupObjects.end());
17695   Cleanup.reset();
17696   MaybeODRUseExprs.clear();
17697 }
17698 
17699 ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) {
17700   ExprResult Result = CheckPlaceholderExpr(E);
17701   if (Result.isInvalid())
17702     return ExprError();
17703   E = Result.get();
17704   if (!E->getType()->isVariablyModifiedType())
17705     return E;
17706   return TransformToPotentiallyEvaluated(E);
17707 }
17708 
17709 /// Are we in a context that is potentially constant evaluated per C++20
17710 /// [expr.const]p12?
17711 static bool isPotentiallyConstantEvaluatedContext(Sema &SemaRef) {
17712   /// C++2a [expr.const]p12:
17713   //   An expression or conversion is potentially constant evaluated if it is
17714   switch (SemaRef.ExprEvalContexts.back().Context) {
17715     case Sema::ExpressionEvaluationContext::ConstantEvaluated:
17716     case Sema::ExpressionEvaluationContext::ImmediateFunctionContext:
17717 
17718       // -- a manifestly constant-evaluated expression,
17719     case Sema::ExpressionEvaluationContext::PotentiallyEvaluated:
17720     case Sema::ExpressionEvaluationContext::PotentiallyEvaluatedIfUsed:
17721     case Sema::ExpressionEvaluationContext::DiscardedStatement:
17722       // -- a potentially-evaluated expression,
17723     case Sema::ExpressionEvaluationContext::UnevaluatedList:
17724       // -- an immediate subexpression of a braced-init-list,
17725 
17726       // -- [FIXME] an expression of the form & cast-expression that occurs
17727       //    within a templated entity
17728       // -- a subexpression of one of the above that is not a subexpression of
17729       // a nested unevaluated operand.
17730       return true;
17731 
17732     case Sema::ExpressionEvaluationContext::Unevaluated:
17733     case Sema::ExpressionEvaluationContext::UnevaluatedAbstract:
17734       // Expressions in this context are never evaluated.
17735       return false;
17736   }
17737   llvm_unreachable("Invalid context");
17738 }
17739 
17740 /// Return true if this function has a calling convention that requires mangling
17741 /// in the size of the parameter pack.
17742 static bool funcHasParameterSizeMangling(Sema &S, FunctionDecl *FD) {
17743   // These manglings don't do anything on non-Windows or non-x86 platforms, so
17744   // we don't need parameter type sizes.
17745   const llvm::Triple &TT = S.Context.getTargetInfo().getTriple();
17746   if (!TT.isOSWindows() || !TT.isX86())
17747     return false;
17748 
17749   // If this is C++ and this isn't an extern "C" function, parameters do not
17750   // need to be complete. In this case, C++ mangling will apply, which doesn't
17751   // use the size of the parameters.
17752   if (S.getLangOpts().CPlusPlus && !FD->isExternC())
17753     return false;
17754 
17755   // Stdcall, fastcall, and vectorcall need this special treatment.
17756   CallingConv CC = FD->getType()->castAs<FunctionType>()->getCallConv();
17757   switch (CC) {
17758   case CC_X86StdCall:
17759   case CC_X86FastCall:
17760   case CC_X86VectorCall:
17761     return true;
17762   default:
17763     break;
17764   }
17765   return false;
17766 }
17767 
17768 /// Require that all of the parameter types of function be complete. Normally,
17769 /// parameter types are only required to be complete when a function is called
17770 /// or defined, but to mangle functions with certain calling conventions, the
17771 /// mangler needs to know the size of the parameter list. In this situation,
17772 /// MSVC doesn't emit an error or instantiate templates. Instead, MSVC mangles
17773 /// the function as _foo@0, i.e. zero bytes of parameters, which will usually
17774 /// result in a linker error. Clang doesn't implement this behavior, and instead
17775 /// attempts to error at compile time.
17776 static void CheckCompleteParameterTypesForMangler(Sema &S, FunctionDecl *FD,
17777                                                   SourceLocation Loc) {
17778   class ParamIncompleteTypeDiagnoser : public Sema::TypeDiagnoser {
17779     FunctionDecl *FD;
17780     ParmVarDecl *Param;
17781 
17782   public:
17783     ParamIncompleteTypeDiagnoser(FunctionDecl *FD, ParmVarDecl *Param)
17784         : FD(FD), Param(Param) {}
17785 
17786     void diagnose(Sema &S, SourceLocation Loc, QualType T) override {
17787       CallingConv CC = FD->getType()->castAs<FunctionType>()->getCallConv();
17788       StringRef CCName;
17789       switch (CC) {
17790       case CC_X86StdCall:
17791         CCName = "stdcall";
17792         break;
17793       case CC_X86FastCall:
17794         CCName = "fastcall";
17795         break;
17796       case CC_X86VectorCall:
17797         CCName = "vectorcall";
17798         break;
17799       default:
17800         llvm_unreachable("CC does not need mangling");
17801       }
17802 
17803       S.Diag(Loc, diag::err_cconv_incomplete_param_type)
17804           << Param->getDeclName() << FD->getDeclName() << CCName;
17805     }
17806   };
17807 
17808   for (ParmVarDecl *Param : FD->parameters()) {
17809     ParamIncompleteTypeDiagnoser Diagnoser(FD, Param);
17810     S.RequireCompleteType(Loc, Param->getType(), Diagnoser);
17811   }
17812 }
17813 
17814 namespace {
17815 enum class OdrUseContext {
17816   /// Declarations in this context are not odr-used.
17817   None,
17818   /// Declarations in this context are formally odr-used, but this is a
17819   /// dependent context.
17820   Dependent,
17821   /// Declarations in this context are odr-used but not actually used (yet).
17822   FormallyOdrUsed,
17823   /// Declarations in this context are used.
17824   Used
17825 };
17826 }
17827 
17828 /// Are we within a context in which references to resolved functions or to
17829 /// variables result in odr-use?
17830 static OdrUseContext isOdrUseContext(Sema &SemaRef) {
17831   OdrUseContext Result;
17832 
17833   switch (SemaRef.ExprEvalContexts.back().Context) {
17834     case Sema::ExpressionEvaluationContext::Unevaluated:
17835     case Sema::ExpressionEvaluationContext::UnevaluatedList:
17836     case Sema::ExpressionEvaluationContext::UnevaluatedAbstract:
17837       return OdrUseContext::None;
17838 
17839     case Sema::ExpressionEvaluationContext::ConstantEvaluated:
17840     case Sema::ExpressionEvaluationContext::ImmediateFunctionContext:
17841     case Sema::ExpressionEvaluationContext::PotentiallyEvaluated:
17842       Result = OdrUseContext::Used;
17843       break;
17844 
17845     case Sema::ExpressionEvaluationContext::DiscardedStatement:
17846       Result = OdrUseContext::FormallyOdrUsed;
17847       break;
17848 
17849     case Sema::ExpressionEvaluationContext::PotentiallyEvaluatedIfUsed:
17850       // A default argument formally results in odr-use, but doesn't actually
17851       // result in a use in any real sense until it itself is used.
17852       Result = OdrUseContext::FormallyOdrUsed;
17853       break;
17854   }
17855 
17856   if (SemaRef.CurContext->isDependentContext())
17857     return OdrUseContext::Dependent;
17858 
17859   return Result;
17860 }
17861 
17862 static bool isImplicitlyDefinableConstexprFunction(FunctionDecl *Func) {
17863   if (!Func->isConstexpr())
17864     return false;
17865 
17866   if (Func->isImplicitlyInstantiable() || !Func->isUserProvided())
17867     return true;
17868   auto *CCD = dyn_cast<CXXConstructorDecl>(Func);
17869   return CCD && CCD->getInheritedConstructor();
17870 }
17871 
17872 /// Mark a function referenced, and check whether it is odr-used
17873 /// (C++ [basic.def.odr]p2, C99 6.9p3)
17874 void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func,
17875                                   bool MightBeOdrUse) {
17876   assert(Func && "No function?");
17877 
17878   Func->setReferenced();
17879 
17880   // Recursive functions aren't really used until they're used from some other
17881   // context.
17882   bool IsRecursiveCall = CurContext == Func;
17883 
17884   // C++11 [basic.def.odr]p3:
17885   //   A function whose name appears as a potentially-evaluated expression is
17886   //   odr-used if it is the unique lookup result or the selected member of a
17887   //   set of overloaded functions [...].
17888   //
17889   // We (incorrectly) mark overload resolution as an unevaluated context, so we
17890   // can just check that here.
17891   OdrUseContext OdrUse =
17892       MightBeOdrUse ? isOdrUseContext(*this) : OdrUseContext::None;
17893   if (IsRecursiveCall && OdrUse == OdrUseContext::Used)
17894     OdrUse = OdrUseContext::FormallyOdrUsed;
17895 
17896   // Trivial default constructors and destructors are never actually used.
17897   // FIXME: What about other special members?
17898   if (Func->isTrivial() && !Func->hasAttr<DLLExportAttr>() &&
17899       OdrUse == OdrUseContext::Used) {
17900     if (auto *Constructor = dyn_cast<CXXConstructorDecl>(Func))
17901       if (Constructor->isDefaultConstructor())
17902         OdrUse = OdrUseContext::FormallyOdrUsed;
17903     if (isa<CXXDestructorDecl>(Func))
17904       OdrUse = OdrUseContext::FormallyOdrUsed;
17905   }
17906 
17907   // C++20 [expr.const]p12:
17908   //   A function [...] is needed for constant evaluation if it is [...] a
17909   //   constexpr function that is named by an expression that is potentially
17910   //   constant evaluated
17911   bool NeededForConstantEvaluation =
17912       isPotentiallyConstantEvaluatedContext(*this) &&
17913       isImplicitlyDefinableConstexprFunction(Func);
17914 
17915   // Determine whether we require a function definition to exist, per
17916   // C++11 [temp.inst]p3:
17917   //   Unless a function template specialization has been explicitly
17918   //   instantiated or explicitly specialized, the function template
17919   //   specialization is implicitly instantiated when the specialization is
17920   //   referenced in a context that requires a function definition to exist.
17921   // C++20 [temp.inst]p7:
17922   //   The existence of a definition of a [...] function is considered to
17923   //   affect the semantics of the program if the [...] function is needed for
17924   //   constant evaluation by an expression
17925   // C++20 [basic.def.odr]p10:
17926   //   Every program shall contain exactly one definition of every non-inline
17927   //   function or variable that is odr-used in that program outside of a
17928   //   discarded statement
17929   // C++20 [special]p1:
17930   //   The implementation will implicitly define [defaulted special members]
17931   //   if they are odr-used or needed for constant evaluation.
17932   //
17933   // Note that we skip the implicit instantiation of templates that are only
17934   // used in unused default arguments or by recursive calls to themselves.
17935   // This is formally non-conforming, but seems reasonable in practice.
17936   bool NeedDefinition = !IsRecursiveCall && (OdrUse == OdrUseContext::Used ||
17937                                              NeededForConstantEvaluation);
17938 
17939   // C++14 [temp.expl.spec]p6:
17940   //   If a template [...] is explicitly specialized then that specialization
17941   //   shall be declared before the first use of that specialization that would
17942   //   cause an implicit instantiation to take place, in every translation unit
17943   //   in which such a use occurs
17944   if (NeedDefinition &&
17945       (Func->getTemplateSpecializationKind() != TSK_Undeclared ||
17946        Func->getMemberSpecializationInfo()))
17947     checkSpecializationReachability(Loc, Func);
17948 
17949   if (getLangOpts().CUDA)
17950     CheckCUDACall(Loc, Func);
17951 
17952   if (getLangOpts().SYCLIsDevice)
17953     checkSYCLDeviceFunction(Loc, Func);
17954 
17955   // If we need a definition, try to create one.
17956   if (NeedDefinition && !Func->getBody()) {
17957     runWithSufficientStackSpace(Loc, [&] {
17958       if (CXXConstructorDecl *Constructor =
17959               dyn_cast<CXXConstructorDecl>(Func)) {
17960         Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl());
17961         if (Constructor->isDefaulted() && !Constructor->isDeleted()) {
17962           if (Constructor->isDefaultConstructor()) {
17963             if (Constructor->isTrivial() &&
17964                 !Constructor->hasAttr<DLLExportAttr>())
17965               return;
17966             DefineImplicitDefaultConstructor(Loc, Constructor);
17967           } else if (Constructor->isCopyConstructor()) {
17968             DefineImplicitCopyConstructor(Loc, Constructor);
17969           } else if (Constructor->isMoveConstructor()) {
17970             DefineImplicitMoveConstructor(Loc, Constructor);
17971           }
17972         } else if (Constructor->getInheritedConstructor()) {
17973           DefineInheritingConstructor(Loc, Constructor);
17974         }
17975       } else if (CXXDestructorDecl *Destructor =
17976                      dyn_cast<CXXDestructorDecl>(Func)) {
17977         Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl());
17978         if (Destructor->isDefaulted() && !Destructor->isDeleted()) {
17979           if (Destructor->isTrivial() && !Destructor->hasAttr<DLLExportAttr>())
17980             return;
17981           DefineImplicitDestructor(Loc, Destructor);
17982         }
17983         if (Destructor->isVirtual() && getLangOpts().AppleKext)
17984           MarkVTableUsed(Loc, Destructor->getParent());
17985       } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
17986         if (MethodDecl->isOverloadedOperator() &&
17987             MethodDecl->getOverloadedOperator() == OO_Equal) {
17988           MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl());
17989           if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) {
17990             if (MethodDecl->isCopyAssignmentOperator())
17991               DefineImplicitCopyAssignment(Loc, MethodDecl);
17992             else if (MethodDecl->isMoveAssignmentOperator())
17993               DefineImplicitMoveAssignment(Loc, MethodDecl);
17994           }
17995         } else if (isa<CXXConversionDecl>(MethodDecl) &&
17996                    MethodDecl->getParent()->isLambda()) {
17997           CXXConversionDecl *Conversion =
17998               cast<CXXConversionDecl>(MethodDecl->getFirstDecl());
17999           if (Conversion->isLambdaToBlockPointerConversion())
18000             DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion);
18001           else
18002             DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion);
18003         } else if (MethodDecl->isVirtual() && getLangOpts().AppleKext)
18004           MarkVTableUsed(Loc, MethodDecl->getParent());
18005       }
18006 
18007       if (Func->isDefaulted() && !Func->isDeleted()) {
18008         DefaultedComparisonKind DCK = getDefaultedComparisonKind(Func);
18009         if (DCK != DefaultedComparisonKind::None)
18010           DefineDefaultedComparison(Loc, Func, DCK);
18011       }
18012 
18013       // Implicit instantiation of function templates and member functions of
18014       // class templates.
18015       if (Func->isImplicitlyInstantiable()) {
18016         TemplateSpecializationKind TSK =
18017             Func->getTemplateSpecializationKindForInstantiation();
18018         SourceLocation PointOfInstantiation = Func->getPointOfInstantiation();
18019         bool FirstInstantiation = PointOfInstantiation.isInvalid();
18020         if (FirstInstantiation) {
18021           PointOfInstantiation = Loc;
18022           if (auto *MSI = Func->getMemberSpecializationInfo())
18023             MSI->setPointOfInstantiation(Loc);
18024             // FIXME: Notify listener.
18025           else
18026             Func->setTemplateSpecializationKind(TSK, PointOfInstantiation);
18027         } else if (TSK != TSK_ImplicitInstantiation) {
18028           // Use the point of use as the point of instantiation, instead of the
18029           // point of explicit instantiation (which we track as the actual point
18030           // of instantiation). This gives better backtraces in diagnostics.
18031           PointOfInstantiation = Loc;
18032         }
18033 
18034         if (FirstInstantiation || TSK != TSK_ImplicitInstantiation ||
18035             Func->isConstexpr()) {
18036           if (isa<CXXRecordDecl>(Func->getDeclContext()) &&
18037               cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() &&
18038               CodeSynthesisContexts.size())
18039             PendingLocalImplicitInstantiations.push_back(
18040                 std::make_pair(Func, PointOfInstantiation));
18041           else if (Func->isConstexpr())
18042             // Do not defer instantiations of constexpr functions, to avoid the
18043             // expression evaluator needing to call back into Sema if it sees a
18044             // call to such a function.
18045             InstantiateFunctionDefinition(PointOfInstantiation, Func);
18046           else {
18047             Func->setInstantiationIsPending(true);
18048             PendingInstantiations.push_back(
18049                 std::make_pair(Func, PointOfInstantiation));
18050             // Notify the consumer that a function was implicitly instantiated.
18051             Consumer.HandleCXXImplicitFunctionInstantiation(Func);
18052           }
18053         }
18054       } else {
18055         // Walk redefinitions, as some of them may be instantiable.
18056         for (auto i : Func->redecls()) {
18057           if (!i->isUsed(false) && i->isImplicitlyInstantiable())
18058             MarkFunctionReferenced(Loc, i, MightBeOdrUse);
18059         }
18060       }
18061     });
18062   }
18063 
18064   // C++14 [except.spec]p17:
18065   //   An exception-specification is considered to be needed when:
18066   //   - the function is odr-used or, if it appears in an unevaluated operand,
18067   //     would be odr-used if the expression were potentially-evaluated;
18068   //
18069   // Note, we do this even if MightBeOdrUse is false. That indicates that the
18070   // function is a pure virtual function we're calling, and in that case the
18071   // function was selected by overload resolution and we need to resolve its
18072   // exception specification for a different reason.
18073   const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>();
18074   if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
18075     ResolveExceptionSpec(Loc, FPT);
18076 
18077   // If this is the first "real" use, act on that.
18078   if (OdrUse == OdrUseContext::Used && !Func->isUsed(/*CheckUsedAttr=*/false)) {
18079     // Keep track of used but undefined functions.
18080     if (!Func->isDefined()) {
18081       if (mightHaveNonExternalLinkage(Func))
18082         UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
18083       else if (Func->getMostRecentDecl()->isInlined() &&
18084                !LangOpts.GNUInline &&
18085                !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>())
18086         UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
18087       else if (isExternalWithNoLinkageType(Func))
18088         UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
18089     }
18090 
18091     // Some x86 Windows calling conventions mangle the size of the parameter
18092     // pack into the name. Computing the size of the parameters requires the
18093     // parameter types to be complete. Check that now.
18094     if (funcHasParameterSizeMangling(*this, Func))
18095       CheckCompleteParameterTypesForMangler(*this, Func, Loc);
18096 
18097     // In the MS C++ ABI, the compiler emits destructor variants where they are
18098     // used. If the destructor is used here but defined elsewhere, mark the
18099     // virtual base destructors referenced. If those virtual base destructors
18100     // are inline, this will ensure they are defined when emitting the complete
18101     // destructor variant. This checking may be redundant if the destructor is
18102     // provided later in this TU.
18103     if (Context.getTargetInfo().getCXXABI().isMicrosoft()) {
18104       if (auto *Dtor = dyn_cast<CXXDestructorDecl>(Func)) {
18105         CXXRecordDecl *Parent = Dtor->getParent();
18106         if (Parent->getNumVBases() > 0 && !Dtor->getBody())
18107           CheckCompleteDestructorVariant(Loc, Dtor);
18108       }
18109     }
18110 
18111     Func->markUsed(Context);
18112   }
18113 }
18114 
18115 /// Directly mark a variable odr-used. Given a choice, prefer to use
18116 /// MarkVariableReferenced since it does additional checks and then
18117 /// calls MarkVarDeclODRUsed.
18118 /// If the variable must be captured:
18119 ///  - if FunctionScopeIndexToStopAt is null, capture it in the CurContext
18120 ///  - else capture it in the DeclContext that maps to the
18121 ///    *FunctionScopeIndexToStopAt on the FunctionScopeInfo stack.
18122 static void
18123 MarkVarDeclODRUsed(VarDecl *Var, SourceLocation Loc, Sema &SemaRef,
18124                    const unsigned *const FunctionScopeIndexToStopAt = nullptr) {
18125   // Keep track of used but undefined variables.
18126   // FIXME: We shouldn't suppress this warning for static data members.
18127   if (Var->hasDefinition(SemaRef.Context) == VarDecl::DeclarationOnly &&
18128       (!Var->isExternallyVisible() || Var->isInline() ||
18129        SemaRef.isExternalWithNoLinkageType(Var)) &&
18130       !(Var->isStaticDataMember() && Var->hasInit())) {
18131     SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()];
18132     if (old.isInvalid())
18133       old = Loc;
18134   }
18135   QualType CaptureType, DeclRefType;
18136   if (SemaRef.LangOpts.OpenMP)
18137     SemaRef.tryCaptureOpenMPLambdas(Var);
18138   SemaRef.tryCaptureVariable(Var, Loc, Sema::TryCapture_Implicit,
18139     /*EllipsisLoc*/ SourceLocation(),
18140     /*BuildAndDiagnose*/ true,
18141     CaptureType, DeclRefType,
18142     FunctionScopeIndexToStopAt);
18143 
18144   if (SemaRef.LangOpts.CUDA && Var->hasGlobalStorage()) {
18145     auto *FD = dyn_cast_or_null<FunctionDecl>(SemaRef.CurContext);
18146     auto VarTarget = SemaRef.IdentifyCUDATarget(Var);
18147     auto UserTarget = SemaRef.IdentifyCUDATarget(FD);
18148     if (VarTarget == Sema::CVT_Host &&
18149         (UserTarget == Sema::CFT_Device || UserTarget == Sema::CFT_HostDevice ||
18150          UserTarget == Sema::CFT_Global)) {
18151       // Diagnose ODR-use of host global variables in device functions.
18152       // Reference of device global variables in host functions is allowed
18153       // through shadow variables therefore it is not diagnosed.
18154       if (SemaRef.LangOpts.CUDAIsDevice) {
18155         SemaRef.targetDiag(Loc, diag::err_ref_bad_target)
18156             << /*host*/ 2 << /*variable*/ 1 << Var << UserTarget;
18157         SemaRef.targetDiag(Var->getLocation(),
18158                            Var->getType().isConstQualified()
18159                                ? diag::note_cuda_const_var_unpromoted
18160                                : diag::note_cuda_host_var);
18161       }
18162     } else if (VarTarget == Sema::CVT_Device &&
18163                (UserTarget == Sema::CFT_Host ||
18164                 UserTarget == Sema::CFT_HostDevice)) {
18165       // Record a CUDA/HIP device side variable if it is ODR-used
18166       // by host code. This is done conservatively, when the variable is
18167       // referenced in any of the following contexts:
18168       //   - a non-function context
18169       //   - a host function
18170       //   - a host device function
18171       // This makes the ODR-use of the device side variable by host code to
18172       // be visible in the device compilation for the compiler to be able to
18173       // emit template variables instantiated by host code only and to
18174       // externalize the static device side variable ODR-used by host code.
18175       if (!Var->hasExternalStorage())
18176         SemaRef.getASTContext().CUDADeviceVarODRUsedByHost.insert(Var);
18177       else if (SemaRef.LangOpts.GPURelocatableDeviceCode)
18178         SemaRef.getASTContext().CUDAExternalDeviceDeclODRUsedByHost.insert(Var);
18179     }
18180   }
18181 
18182   Var->markUsed(SemaRef.Context);
18183 }
18184 
18185 void Sema::MarkCaptureUsedInEnclosingContext(VarDecl *Capture,
18186                                              SourceLocation Loc,
18187                                              unsigned CapturingScopeIndex) {
18188   MarkVarDeclODRUsed(Capture, Loc, *this, &CapturingScopeIndex);
18189 }
18190 
18191 static void diagnoseUncapturableValueReference(Sema &S, SourceLocation loc,
18192                                                ValueDecl *var) {
18193   DeclContext *VarDC = var->getDeclContext();
18194 
18195   //  If the parameter still belongs to the translation unit, then
18196   //  we're actually just using one parameter in the declaration of
18197   //  the next.
18198   if (isa<ParmVarDecl>(var) &&
18199       isa<TranslationUnitDecl>(VarDC))
18200     return;
18201 
18202   // For C code, don't diagnose about capture if we're not actually in code
18203   // right now; it's impossible to write a non-constant expression outside of
18204   // function context, so we'll get other (more useful) diagnostics later.
18205   //
18206   // For C++, things get a bit more nasty... it would be nice to suppress this
18207   // diagnostic for certain cases like using a local variable in an array bound
18208   // for a member of a local class, but the correct predicate is not obvious.
18209   if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod())
18210     return;
18211 
18212   unsigned ValueKind = isa<BindingDecl>(var) ? 1 : 0;
18213   unsigned ContextKind = 3; // unknown
18214   if (isa<CXXMethodDecl>(VarDC) &&
18215       cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) {
18216     ContextKind = 2;
18217   } else if (isa<FunctionDecl>(VarDC)) {
18218     ContextKind = 0;
18219   } else if (isa<BlockDecl>(VarDC)) {
18220     ContextKind = 1;
18221   }
18222 
18223   S.Diag(loc, diag::err_reference_to_local_in_enclosing_context)
18224     << var << ValueKind << ContextKind << VarDC;
18225   S.Diag(var->getLocation(), diag::note_entity_declared_at)
18226       << var;
18227 
18228   // FIXME: Add additional diagnostic info about class etc. which prevents
18229   // capture.
18230 }
18231 
18232 
18233 static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var,
18234                                       bool &SubCapturesAreNested,
18235                                       QualType &CaptureType,
18236                                       QualType &DeclRefType) {
18237    // Check whether we've already captured it.
18238   if (CSI->CaptureMap.count(Var)) {
18239     // If we found a capture, any subcaptures are nested.
18240     SubCapturesAreNested = true;
18241 
18242     // Retrieve the capture type for this variable.
18243     CaptureType = CSI->getCapture(Var).getCaptureType();
18244 
18245     // Compute the type of an expression that refers to this variable.
18246     DeclRefType = CaptureType.getNonReferenceType();
18247 
18248     // Similarly to mutable captures in lambda, all the OpenMP captures by copy
18249     // are mutable in the sense that user can change their value - they are
18250     // private instances of the captured declarations.
18251     const Capture &Cap = CSI->getCapture(Var);
18252     if (Cap.isCopyCapture() &&
18253         !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable) &&
18254         !(isa<CapturedRegionScopeInfo>(CSI) &&
18255           cast<CapturedRegionScopeInfo>(CSI)->CapRegionKind == CR_OpenMP))
18256       DeclRefType.addConst();
18257     return true;
18258   }
18259   return false;
18260 }
18261 
18262 // Only block literals, captured statements, and lambda expressions can
18263 // capture; other scopes don't work.
18264 static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var,
18265                                  SourceLocation Loc,
18266                                  const bool Diagnose, Sema &S) {
18267   if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC))
18268     return getLambdaAwareParentOfDeclContext(DC);
18269   else if (Var->hasLocalStorage()) {
18270     if (Diagnose)
18271        diagnoseUncapturableValueReference(S, Loc, Var);
18272   }
18273   return nullptr;
18274 }
18275 
18276 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
18277 // certain types of variables (unnamed, variably modified types etc.)
18278 // so check for eligibility.
18279 static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var,
18280                                  SourceLocation Loc,
18281                                  const bool Diagnose, Sema &S) {
18282 
18283   bool IsBlock = isa<BlockScopeInfo>(CSI);
18284   bool IsLambda = isa<LambdaScopeInfo>(CSI);
18285 
18286   // Lambdas are not allowed to capture unnamed variables
18287   // (e.g. anonymous unions).
18288   // FIXME: The C++11 rule don't actually state this explicitly, but I'm
18289   // assuming that's the intent.
18290   if (IsLambda && !Var->getDeclName()) {
18291     if (Diagnose) {
18292       S.Diag(Loc, diag::err_lambda_capture_anonymous_var);
18293       S.Diag(Var->getLocation(), diag::note_declared_at);
18294     }
18295     return false;
18296   }
18297 
18298   // Prohibit variably-modified types in blocks; they're difficult to deal with.
18299   if (Var->getType()->isVariablyModifiedType() && IsBlock) {
18300     if (Diagnose) {
18301       S.Diag(Loc, diag::err_ref_vm_type);
18302       S.Diag(Var->getLocation(), diag::note_previous_decl) << Var;
18303     }
18304     return false;
18305   }
18306   // Prohibit structs with flexible array members too.
18307   // We cannot capture what is in the tail end of the struct.
18308   if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) {
18309     if (VTTy->getDecl()->hasFlexibleArrayMember()) {
18310       if (Diagnose) {
18311         if (IsBlock)
18312           S.Diag(Loc, diag::err_ref_flexarray_type);
18313         else
18314           S.Diag(Loc, diag::err_lambda_capture_flexarray_type) << Var;
18315         S.Diag(Var->getLocation(), diag::note_previous_decl) << Var;
18316       }
18317       return false;
18318     }
18319   }
18320   const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
18321   // Lambdas and captured statements are not allowed to capture __block
18322   // variables; they don't support the expected semantics.
18323   if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) {
18324     if (Diagnose) {
18325       S.Diag(Loc, diag::err_capture_block_variable) << Var << !IsLambda;
18326       S.Diag(Var->getLocation(), diag::note_previous_decl) << Var;
18327     }
18328     return false;
18329   }
18330   // OpenCL v2.0 s6.12.5: Blocks cannot reference/capture other blocks
18331   if (S.getLangOpts().OpenCL && IsBlock &&
18332       Var->getType()->isBlockPointerType()) {
18333     if (Diagnose)
18334       S.Diag(Loc, diag::err_opencl_block_ref_block);
18335     return false;
18336   }
18337 
18338   return true;
18339 }
18340 
18341 // Returns true if the capture by block was successful.
18342 static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var,
18343                                  SourceLocation Loc,
18344                                  const bool BuildAndDiagnose,
18345                                  QualType &CaptureType,
18346                                  QualType &DeclRefType,
18347                                  const bool Nested,
18348                                  Sema &S, bool Invalid) {
18349   bool ByRef = false;
18350 
18351   // Blocks are not allowed to capture arrays, excepting OpenCL.
18352   // OpenCL v2.0 s1.12.5 (revision 40): arrays are captured by reference
18353   // (decayed to pointers).
18354   if (!Invalid && !S.getLangOpts().OpenCL && CaptureType->isArrayType()) {
18355     if (BuildAndDiagnose) {
18356       S.Diag(Loc, diag::err_ref_array_type);
18357       S.Diag(Var->getLocation(), diag::note_previous_decl) << Var;
18358       Invalid = true;
18359     } else {
18360       return false;
18361     }
18362   }
18363 
18364   // Forbid the block-capture of autoreleasing variables.
18365   if (!Invalid &&
18366       CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
18367     if (BuildAndDiagnose) {
18368       S.Diag(Loc, diag::err_arc_autoreleasing_capture)
18369         << /*block*/ 0;
18370       S.Diag(Var->getLocation(), diag::note_previous_decl) << Var;
18371       Invalid = true;
18372     } else {
18373       return false;
18374     }
18375   }
18376 
18377   // Warn about implicitly autoreleasing indirect parameters captured by blocks.
18378   if (const auto *PT = CaptureType->getAs<PointerType>()) {
18379     QualType PointeeTy = PT->getPointeeType();
18380 
18381     if (!Invalid && PointeeTy->getAs<ObjCObjectPointerType>() &&
18382         PointeeTy.getObjCLifetime() == Qualifiers::OCL_Autoreleasing &&
18383         !S.Context.hasDirectOwnershipQualifier(PointeeTy)) {
18384       if (BuildAndDiagnose) {
18385         SourceLocation VarLoc = Var->getLocation();
18386         S.Diag(Loc, diag::warn_block_capture_autoreleasing);
18387         S.Diag(VarLoc, diag::note_declare_parameter_strong);
18388       }
18389     }
18390   }
18391 
18392   const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
18393   if (HasBlocksAttr || CaptureType->isReferenceType() ||
18394       (S.getLangOpts().OpenMP && S.isOpenMPCapturedDecl(Var))) {
18395     // Block capture by reference does not change the capture or
18396     // declaration reference types.
18397     ByRef = true;
18398   } else {
18399     // Block capture by copy introduces 'const'.
18400     CaptureType = CaptureType.getNonReferenceType().withConst();
18401     DeclRefType = CaptureType;
18402   }
18403 
18404   // Actually capture the variable.
18405   if (BuildAndDiagnose)
18406     BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc, SourceLocation(),
18407                     CaptureType, Invalid);
18408 
18409   return !Invalid;
18410 }
18411 
18412 
18413 /// Capture the given variable in the captured region.
18414 static bool captureInCapturedRegion(
18415     CapturedRegionScopeInfo *RSI, VarDecl *Var, SourceLocation Loc,
18416     const bool BuildAndDiagnose, QualType &CaptureType, QualType &DeclRefType,
18417     const bool RefersToCapturedVariable, Sema::TryCaptureKind Kind,
18418     bool IsTopScope, Sema &S, bool Invalid) {
18419   // By default, capture variables by reference.
18420   bool ByRef = true;
18421   if (IsTopScope && Kind != Sema::TryCapture_Implicit) {
18422     ByRef = (Kind == Sema::TryCapture_ExplicitByRef);
18423   } else if (S.getLangOpts().OpenMP && RSI->CapRegionKind == CR_OpenMP) {
18424     // Using an LValue reference type is consistent with Lambdas (see below).
18425     if (S.isOpenMPCapturedDecl(Var)) {
18426       bool HasConst = DeclRefType.isConstQualified();
18427       DeclRefType = DeclRefType.getUnqualifiedType();
18428       // Don't lose diagnostics about assignments to const.
18429       if (HasConst)
18430         DeclRefType.addConst();
18431     }
18432     // Do not capture firstprivates in tasks.
18433     if (S.isOpenMPPrivateDecl(Var, RSI->OpenMPLevel, RSI->OpenMPCaptureLevel) !=
18434         OMPC_unknown)
18435       return true;
18436     ByRef = S.isOpenMPCapturedByRef(Var, RSI->OpenMPLevel,
18437                                     RSI->OpenMPCaptureLevel);
18438   }
18439 
18440   if (ByRef)
18441     CaptureType = S.Context.getLValueReferenceType(DeclRefType);
18442   else
18443     CaptureType = DeclRefType;
18444 
18445   // Actually capture the variable.
18446   if (BuildAndDiagnose)
18447     RSI->addCapture(Var, /*isBlock*/ false, ByRef, RefersToCapturedVariable,
18448                     Loc, SourceLocation(), CaptureType, Invalid);
18449 
18450   return !Invalid;
18451 }
18452 
18453 /// Capture the given variable in the lambda.
18454 static bool captureInLambda(LambdaScopeInfo *LSI,
18455                             VarDecl *Var,
18456                             SourceLocation Loc,
18457                             const bool BuildAndDiagnose,
18458                             QualType &CaptureType,
18459                             QualType &DeclRefType,
18460                             const bool RefersToCapturedVariable,
18461                             const Sema::TryCaptureKind Kind,
18462                             SourceLocation EllipsisLoc,
18463                             const bool IsTopScope,
18464                             Sema &S, bool Invalid) {
18465   // Determine whether we are capturing by reference or by value.
18466   bool ByRef = false;
18467   if (IsTopScope && Kind != Sema::TryCapture_Implicit) {
18468     ByRef = (Kind == Sema::TryCapture_ExplicitByRef);
18469   } else {
18470     ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref);
18471   }
18472 
18473   // Compute the type of the field that will capture this variable.
18474   if (ByRef) {
18475     // C++11 [expr.prim.lambda]p15:
18476     //   An entity is captured by reference if it is implicitly or
18477     //   explicitly captured but not captured by copy. It is
18478     //   unspecified whether additional unnamed non-static data
18479     //   members are declared in the closure type for entities
18480     //   captured by reference.
18481     //
18482     // FIXME: It is not clear whether we want to build an lvalue reference
18483     // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears
18484     // to do the former, while EDG does the latter. Core issue 1249 will
18485     // clarify, but for now we follow GCC because it's a more permissive and
18486     // easily defensible position.
18487     CaptureType = S.Context.getLValueReferenceType(DeclRefType);
18488   } else {
18489     // C++11 [expr.prim.lambda]p14:
18490     //   For each entity captured by copy, an unnamed non-static
18491     //   data member is declared in the closure type. The
18492     //   declaration order of these members is unspecified. The type
18493     //   of such a data member is the type of the corresponding
18494     //   captured entity if the entity is not a reference to an
18495     //   object, or the referenced type otherwise. [Note: If the
18496     //   captured entity is a reference to a function, the
18497     //   corresponding data member is also a reference to a
18498     //   function. - end note ]
18499     if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){
18500       if (!RefType->getPointeeType()->isFunctionType())
18501         CaptureType = RefType->getPointeeType();
18502     }
18503 
18504     // Forbid the lambda copy-capture of autoreleasing variables.
18505     if (!Invalid &&
18506         CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
18507       if (BuildAndDiagnose) {
18508         S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1;
18509         S.Diag(Var->getLocation(), diag::note_previous_decl)
18510           << Var->getDeclName();
18511         Invalid = true;
18512       } else {
18513         return false;
18514       }
18515     }
18516 
18517     // Make sure that by-copy captures are of a complete and non-abstract type.
18518     if (!Invalid && BuildAndDiagnose) {
18519       if (!CaptureType->isDependentType() &&
18520           S.RequireCompleteSizedType(
18521               Loc, CaptureType,
18522               diag::err_capture_of_incomplete_or_sizeless_type,
18523               Var->getDeclName()))
18524         Invalid = true;
18525       else if (S.RequireNonAbstractType(Loc, CaptureType,
18526                                         diag::err_capture_of_abstract_type))
18527         Invalid = true;
18528     }
18529   }
18530 
18531   // Compute the type of a reference to this captured variable.
18532   if (ByRef)
18533     DeclRefType = CaptureType.getNonReferenceType();
18534   else {
18535     // C++ [expr.prim.lambda]p5:
18536     //   The closure type for a lambda-expression has a public inline
18537     //   function call operator [...]. This function call operator is
18538     //   declared const (9.3.1) if and only if the lambda-expression's
18539     //   parameter-declaration-clause is not followed by mutable.
18540     DeclRefType = CaptureType.getNonReferenceType();
18541     if (!LSI->Mutable && !CaptureType->isReferenceType())
18542       DeclRefType.addConst();
18543   }
18544 
18545   // Add the capture.
18546   if (BuildAndDiagnose)
18547     LSI->addCapture(Var, /*isBlock=*/false, ByRef, RefersToCapturedVariable,
18548                     Loc, EllipsisLoc, CaptureType, Invalid);
18549 
18550   return !Invalid;
18551 }
18552 
18553 static bool canCaptureVariableByCopy(VarDecl *Var, const ASTContext &Context) {
18554   // Offer a Copy fix even if the type is dependent.
18555   if (Var->getType()->isDependentType())
18556     return true;
18557   QualType T = Var->getType().getNonReferenceType();
18558   if (T.isTriviallyCopyableType(Context))
18559     return true;
18560   if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) {
18561 
18562     if (!(RD = RD->getDefinition()))
18563       return false;
18564     if (RD->hasSimpleCopyConstructor())
18565       return true;
18566     if (RD->hasUserDeclaredCopyConstructor())
18567       for (CXXConstructorDecl *Ctor : RD->ctors())
18568         if (Ctor->isCopyConstructor())
18569           return !Ctor->isDeleted();
18570   }
18571   return false;
18572 }
18573 
18574 /// Create up to 4 fix-its for explicit reference and value capture of \p Var or
18575 /// default capture. Fixes may be omitted if they aren't allowed by the
18576 /// standard, for example we can't emit a default copy capture fix-it if we
18577 /// already explicitly copy capture capture another variable.
18578 static void buildLambdaCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI,
18579                                     VarDecl *Var) {
18580   assert(LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None);
18581   // Don't offer Capture by copy of default capture by copy fixes if Var is
18582   // known not to be copy constructible.
18583   bool ShouldOfferCopyFix = canCaptureVariableByCopy(Var, Sema.getASTContext());
18584 
18585   SmallString<32> FixBuffer;
18586   StringRef Separator = LSI->NumExplicitCaptures > 0 ? ", " : "";
18587   if (Var->getDeclName().isIdentifier() && !Var->getName().empty()) {
18588     SourceLocation VarInsertLoc = LSI->IntroducerRange.getEnd();
18589     if (ShouldOfferCopyFix) {
18590       // Offer fixes to insert an explicit capture for the variable.
18591       // [] -> [VarName]
18592       // [OtherCapture] -> [OtherCapture, VarName]
18593       FixBuffer.assign({Separator, Var->getName()});
18594       Sema.Diag(VarInsertLoc, diag::note_lambda_variable_capture_fixit)
18595           << Var << /*value*/ 0
18596           << FixItHint::CreateInsertion(VarInsertLoc, FixBuffer);
18597     }
18598     // As above but capture by reference.
18599     FixBuffer.assign({Separator, "&", Var->getName()});
18600     Sema.Diag(VarInsertLoc, diag::note_lambda_variable_capture_fixit)
18601         << Var << /*reference*/ 1
18602         << FixItHint::CreateInsertion(VarInsertLoc, FixBuffer);
18603   }
18604 
18605   // Only try to offer default capture if there are no captures excluding this
18606   // and init captures.
18607   // [this]: OK.
18608   // [X = Y]: OK.
18609   // [&A, &B]: Don't offer.
18610   // [A, B]: Don't offer.
18611   if (llvm::any_of(LSI->Captures, [](Capture &C) {
18612         return !C.isThisCapture() && !C.isInitCapture();
18613       }))
18614     return;
18615 
18616   // The default capture specifiers, '=' or '&', must appear first in the
18617   // capture body.
18618   SourceLocation DefaultInsertLoc =
18619       LSI->IntroducerRange.getBegin().getLocWithOffset(1);
18620 
18621   if (ShouldOfferCopyFix) {
18622     bool CanDefaultCopyCapture = true;
18623     // [=, *this] OK since c++17
18624     // [=, this] OK since c++20
18625     if (LSI->isCXXThisCaptured() && !Sema.getLangOpts().CPlusPlus20)
18626       CanDefaultCopyCapture = Sema.getLangOpts().CPlusPlus17
18627                                   ? LSI->getCXXThisCapture().isCopyCapture()
18628                                   : false;
18629     // We can't use default capture by copy if any captures already specified
18630     // capture by copy.
18631     if (CanDefaultCopyCapture && llvm::none_of(LSI->Captures, [](Capture &C) {
18632           return !C.isThisCapture() && !C.isInitCapture() && C.isCopyCapture();
18633         })) {
18634       FixBuffer.assign({"=", Separator});
18635       Sema.Diag(DefaultInsertLoc, diag::note_lambda_default_capture_fixit)
18636           << /*value*/ 0
18637           << FixItHint::CreateInsertion(DefaultInsertLoc, FixBuffer);
18638     }
18639   }
18640 
18641   // We can't use default capture by reference if any captures already specified
18642   // capture by reference.
18643   if (llvm::none_of(LSI->Captures, [](Capture &C) {
18644         return !C.isInitCapture() && C.isReferenceCapture() &&
18645                !C.isThisCapture();
18646       })) {
18647     FixBuffer.assign({"&", Separator});
18648     Sema.Diag(DefaultInsertLoc, diag::note_lambda_default_capture_fixit)
18649         << /*reference*/ 1
18650         << FixItHint::CreateInsertion(DefaultInsertLoc, FixBuffer);
18651   }
18652 }
18653 
18654 bool Sema::tryCaptureVariable(
18655     VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind,
18656     SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType,
18657     QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) {
18658   // An init-capture is notionally from the context surrounding its
18659   // declaration, but its parent DC is the lambda class.
18660   DeclContext *VarDC = Var->getDeclContext();
18661   if (Var->isInitCapture())
18662     VarDC = VarDC->getParent();
18663 
18664   DeclContext *DC = CurContext;
18665   const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt
18666       ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1;
18667   // We need to sync up the Declaration Context with the
18668   // FunctionScopeIndexToStopAt
18669   if (FunctionScopeIndexToStopAt) {
18670     unsigned FSIndex = FunctionScopes.size() - 1;
18671     while (FSIndex != MaxFunctionScopesIndex) {
18672       DC = getLambdaAwareParentOfDeclContext(DC);
18673       --FSIndex;
18674     }
18675   }
18676 
18677 
18678   // If the variable is declared in the current context, there is no need to
18679   // capture it.
18680   if (VarDC == DC) return true;
18681 
18682   // Capture global variables if it is required to use private copy of this
18683   // variable.
18684   bool IsGlobal = !Var->hasLocalStorage();
18685   if (IsGlobal &&
18686       !(LangOpts.OpenMP && isOpenMPCapturedDecl(Var, /*CheckScopeInfo=*/true,
18687                                                 MaxFunctionScopesIndex)))
18688     return true;
18689   Var = Var->getCanonicalDecl();
18690 
18691   // Walk up the stack to determine whether we can capture the variable,
18692   // performing the "simple" checks that don't depend on type. We stop when
18693   // we've either hit the declared scope of the variable or find an existing
18694   // capture of that variable.  We start from the innermost capturing-entity
18695   // (the DC) and ensure that all intervening capturing-entities
18696   // (blocks/lambdas etc.) between the innermost capturer and the variable`s
18697   // declcontext can either capture the variable or have already captured
18698   // the variable.
18699   CaptureType = Var->getType();
18700   DeclRefType = CaptureType.getNonReferenceType();
18701   bool Nested = false;
18702   bool Explicit = (Kind != TryCapture_Implicit);
18703   unsigned FunctionScopesIndex = MaxFunctionScopesIndex;
18704   do {
18705     // Only block literals, captured statements, and lambda expressions can
18706     // capture; other scopes don't work.
18707     DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var,
18708                                                               ExprLoc,
18709                                                               BuildAndDiagnose,
18710                                                               *this);
18711     // We need to check for the parent *first* because, if we *have*
18712     // private-captured a global variable, we need to recursively capture it in
18713     // intermediate blocks, lambdas, etc.
18714     if (!ParentDC) {
18715       if (IsGlobal) {
18716         FunctionScopesIndex = MaxFunctionScopesIndex - 1;
18717         break;
18718       }
18719       return true;
18720     }
18721 
18722     FunctionScopeInfo  *FSI = FunctionScopes[FunctionScopesIndex];
18723     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI);
18724 
18725 
18726     // Check whether we've already captured it.
18727     if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType,
18728                                              DeclRefType)) {
18729       CSI->getCapture(Var).markUsed(BuildAndDiagnose);
18730       break;
18731     }
18732     // If we are instantiating a generic lambda call operator body,
18733     // we do not want to capture new variables.  What was captured
18734     // during either a lambdas transformation or initial parsing
18735     // should be used.
18736     if (isGenericLambdaCallOperatorSpecialization(DC)) {
18737       if (BuildAndDiagnose) {
18738         LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
18739         if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) {
18740           Diag(ExprLoc, diag::err_lambda_impcap) << Var;
18741           Diag(Var->getLocation(), diag::note_previous_decl) << Var;
18742           Diag(LSI->Lambda->getBeginLoc(), diag::note_lambda_decl);
18743           buildLambdaCaptureFixit(*this, LSI, Var);
18744         } else
18745           diagnoseUncapturableValueReference(*this, ExprLoc, Var);
18746       }
18747       return true;
18748     }
18749 
18750     // Try to capture variable-length arrays types.
18751     if (Var->getType()->isVariablyModifiedType()) {
18752       // We're going to walk down into the type and look for VLA
18753       // expressions.
18754       QualType QTy = Var->getType();
18755       if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var))
18756         QTy = PVD->getOriginalType();
18757       captureVariablyModifiedType(Context, QTy, CSI);
18758     }
18759 
18760     if (getLangOpts().OpenMP) {
18761       if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
18762         // OpenMP private variables should not be captured in outer scope, so
18763         // just break here. Similarly, global variables that are captured in a
18764         // target region should not be captured outside the scope of the region.
18765         if (RSI->CapRegionKind == CR_OpenMP) {
18766           OpenMPClauseKind IsOpenMPPrivateDecl = isOpenMPPrivateDecl(
18767               Var, RSI->OpenMPLevel, RSI->OpenMPCaptureLevel);
18768           // If the variable is private (i.e. not captured) and has variably
18769           // modified type, we still need to capture the type for correct
18770           // codegen in all regions, associated with the construct. Currently,
18771           // it is captured in the innermost captured region only.
18772           if (IsOpenMPPrivateDecl != OMPC_unknown &&
18773               Var->getType()->isVariablyModifiedType()) {
18774             QualType QTy = Var->getType();
18775             if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var))
18776               QTy = PVD->getOriginalType();
18777             for (int I = 1, E = getNumberOfConstructScopes(RSI->OpenMPLevel);
18778                  I < E; ++I) {
18779               auto *OuterRSI = cast<CapturedRegionScopeInfo>(
18780                   FunctionScopes[FunctionScopesIndex - I]);
18781               assert(RSI->OpenMPLevel == OuterRSI->OpenMPLevel &&
18782                      "Wrong number of captured regions associated with the "
18783                      "OpenMP construct.");
18784               captureVariablyModifiedType(Context, QTy, OuterRSI);
18785             }
18786           }
18787           bool IsTargetCap =
18788               IsOpenMPPrivateDecl != OMPC_private &&
18789               isOpenMPTargetCapturedDecl(Var, RSI->OpenMPLevel,
18790                                          RSI->OpenMPCaptureLevel);
18791           // Do not capture global if it is not privatized in outer regions.
18792           bool IsGlobalCap =
18793               IsGlobal && isOpenMPGlobalCapturedDecl(Var, RSI->OpenMPLevel,
18794                                                      RSI->OpenMPCaptureLevel);
18795 
18796           // When we detect target captures we are looking from inside the
18797           // target region, therefore we need to propagate the capture from the
18798           // enclosing region. Therefore, the capture is not initially nested.
18799           if (IsTargetCap)
18800             adjustOpenMPTargetScopeIndex(FunctionScopesIndex, RSI->OpenMPLevel);
18801 
18802           if (IsTargetCap || IsOpenMPPrivateDecl == OMPC_private ||
18803               (IsGlobal && !IsGlobalCap)) {
18804             Nested = !IsTargetCap;
18805             bool HasConst = DeclRefType.isConstQualified();
18806             DeclRefType = DeclRefType.getUnqualifiedType();
18807             // Don't lose diagnostics about assignments to const.
18808             if (HasConst)
18809               DeclRefType.addConst();
18810             CaptureType = Context.getLValueReferenceType(DeclRefType);
18811             break;
18812           }
18813         }
18814       }
18815     }
18816     if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) {
18817       // No capture-default, and this is not an explicit capture
18818       // so cannot capture this variable.
18819       if (BuildAndDiagnose) {
18820         Diag(ExprLoc, diag::err_lambda_impcap) << Var;
18821         Diag(Var->getLocation(), diag::note_previous_decl) << Var;
18822         auto *LSI = cast<LambdaScopeInfo>(CSI);
18823         if (LSI->Lambda) {
18824           Diag(LSI->Lambda->getBeginLoc(), diag::note_lambda_decl);
18825           buildLambdaCaptureFixit(*this, LSI, Var);
18826         }
18827         // FIXME: If we error out because an outer lambda can not implicitly
18828         // capture a variable that an inner lambda explicitly captures, we
18829         // should have the inner lambda do the explicit capture - because
18830         // it makes for cleaner diagnostics later.  This would purely be done
18831         // so that the diagnostic does not misleadingly claim that a variable
18832         // can not be captured by a lambda implicitly even though it is captured
18833         // explicitly.  Suggestion:
18834         //  - create const bool VariableCaptureWasInitiallyExplicit = Explicit
18835         //    at the function head
18836         //  - cache the StartingDeclContext - this must be a lambda
18837         //  - captureInLambda in the innermost lambda the variable.
18838       }
18839       return true;
18840     }
18841 
18842     FunctionScopesIndex--;
18843     DC = ParentDC;
18844     Explicit = false;
18845   } while (!VarDC->Equals(DC));
18846 
18847   // Walk back down the scope stack, (e.g. from outer lambda to inner lambda)
18848   // computing the type of the capture at each step, checking type-specific
18849   // requirements, and adding captures if requested.
18850   // If the variable had already been captured previously, we start capturing
18851   // at the lambda nested within that one.
18852   bool Invalid = false;
18853   for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N;
18854        ++I) {
18855     CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]);
18856 
18857     // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
18858     // certain types of variables (unnamed, variably modified types etc.)
18859     // so check for eligibility.
18860     if (!Invalid)
18861       Invalid =
18862           !isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this);
18863 
18864     // After encountering an error, if we're actually supposed to capture, keep
18865     // capturing in nested contexts to suppress any follow-on diagnostics.
18866     if (Invalid && !BuildAndDiagnose)
18867       return true;
18868 
18869     if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) {
18870       Invalid = !captureInBlock(BSI, Var, ExprLoc, BuildAndDiagnose, CaptureType,
18871                                DeclRefType, Nested, *this, Invalid);
18872       Nested = true;
18873     } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
18874       Invalid = !captureInCapturedRegion(
18875           RSI, Var, ExprLoc, BuildAndDiagnose, CaptureType, DeclRefType, Nested,
18876           Kind, /*IsTopScope*/ I == N - 1, *this, Invalid);
18877       Nested = true;
18878     } else {
18879       LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
18880       Invalid =
18881           !captureInLambda(LSI, Var, ExprLoc, BuildAndDiagnose, CaptureType,
18882                            DeclRefType, Nested, Kind, EllipsisLoc,
18883                            /*IsTopScope*/ I == N - 1, *this, Invalid);
18884       Nested = true;
18885     }
18886 
18887     if (Invalid && !BuildAndDiagnose)
18888       return true;
18889   }
18890   return Invalid;
18891 }
18892 
18893 bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc,
18894                               TryCaptureKind Kind, SourceLocation EllipsisLoc) {
18895   QualType CaptureType;
18896   QualType DeclRefType;
18897   return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc,
18898                             /*BuildAndDiagnose=*/true, CaptureType,
18899                             DeclRefType, nullptr);
18900 }
18901 
18902 bool Sema::NeedToCaptureVariable(VarDecl *Var, SourceLocation Loc) {
18903   QualType CaptureType;
18904   QualType DeclRefType;
18905   return !tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
18906                              /*BuildAndDiagnose=*/false, CaptureType,
18907                              DeclRefType, nullptr);
18908 }
18909 
18910 QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) {
18911   QualType CaptureType;
18912   QualType DeclRefType;
18913 
18914   // Determine whether we can capture this variable.
18915   if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
18916                          /*BuildAndDiagnose=*/false, CaptureType,
18917                          DeclRefType, nullptr))
18918     return QualType();
18919 
18920   return DeclRefType;
18921 }
18922 
18923 namespace {
18924 // Helper to copy the template arguments from a DeclRefExpr or MemberExpr.
18925 // The produced TemplateArgumentListInfo* points to data stored within this
18926 // object, so should only be used in contexts where the pointer will not be
18927 // used after the CopiedTemplateArgs object is destroyed.
18928 class CopiedTemplateArgs {
18929   bool HasArgs;
18930   TemplateArgumentListInfo TemplateArgStorage;
18931 public:
18932   template<typename RefExpr>
18933   CopiedTemplateArgs(RefExpr *E) : HasArgs(E->hasExplicitTemplateArgs()) {
18934     if (HasArgs)
18935       E->copyTemplateArgumentsInto(TemplateArgStorage);
18936   }
18937   operator TemplateArgumentListInfo*()
18938 #ifdef __has_cpp_attribute
18939 #if __has_cpp_attribute(clang::lifetimebound)
18940   [[clang::lifetimebound]]
18941 #endif
18942 #endif
18943   {
18944     return HasArgs ? &TemplateArgStorage : nullptr;
18945   }
18946 };
18947 }
18948 
18949 /// Walk the set of potential results of an expression and mark them all as
18950 /// non-odr-uses if they satisfy the side-conditions of the NonOdrUseReason.
18951 ///
18952 /// \return A new expression if we found any potential results, ExprEmpty() if
18953 ///         not, and ExprError() if we diagnosed an error.
18954 static ExprResult rebuildPotentialResultsAsNonOdrUsed(Sema &S, Expr *E,
18955                                                       NonOdrUseReason NOUR) {
18956   // Per C++11 [basic.def.odr], a variable is odr-used "unless it is
18957   // an object that satisfies the requirements for appearing in a
18958   // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1)
18959   // is immediately applied."  This function handles the lvalue-to-rvalue
18960   // conversion part.
18961   //
18962   // If we encounter a node that claims to be an odr-use but shouldn't be, we
18963   // transform it into the relevant kind of non-odr-use node and rebuild the
18964   // tree of nodes leading to it.
18965   //
18966   // This is a mini-TreeTransform that only transforms a restricted subset of
18967   // nodes (and only certain operands of them).
18968 
18969   // Rebuild a subexpression.
18970   auto Rebuild = [&](Expr *Sub) {
18971     return rebuildPotentialResultsAsNonOdrUsed(S, Sub, NOUR);
18972   };
18973 
18974   // Check whether a potential result satisfies the requirements of NOUR.
18975   auto IsPotentialResultOdrUsed = [&](NamedDecl *D) {
18976     // Any entity other than a VarDecl is always odr-used whenever it's named
18977     // in a potentially-evaluated expression.
18978     auto *VD = dyn_cast<VarDecl>(D);
18979     if (!VD)
18980       return true;
18981 
18982     // C++2a [basic.def.odr]p4:
18983     //   A variable x whose name appears as a potentially-evalauted expression
18984     //   e is odr-used by e unless
18985     //   -- x is a reference that is usable in constant expressions, or
18986     //   -- x is a variable of non-reference type that is usable in constant
18987     //      expressions and has no mutable subobjects, and e is an element of
18988     //      the set of potential results of an expression of
18989     //      non-volatile-qualified non-class type to which the lvalue-to-rvalue
18990     //      conversion is applied, or
18991     //   -- x is a variable of non-reference type, and e is an element of the
18992     //      set of potential results of a discarded-value expression to which
18993     //      the lvalue-to-rvalue conversion is not applied
18994     //
18995     // We check the first bullet and the "potentially-evaluated" condition in
18996     // BuildDeclRefExpr. We check the type requirements in the second bullet
18997     // in CheckLValueToRValueConversionOperand below.
18998     switch (NOUR) {
18999     case NOUR_None:
19000     case NOUR_Unevaluated:
19001       llvm_unreachable("unexpected non-odr-use-reason");
19002 
19003     case NOUR_Constant:
19004       // Constant references were handled when they were built.
19005       if (VD->getType()->isReferenceType())
19006         return true;
19007       if (auto *RD = VD->getType()->getAsCXXRecordDecl())
19008         if (RD->hasMutableFields())
19009           return true;
19010       if (!VD->isUsableInConstantExpressions(S.Context))
19011         return true;
19012       break;
19013 
19014     case NOUR_Discarded:
19015       if (VD->getType()->isReferenceType())
19016         return true;
19017       break;
19018     }
19019     return false;
19020   };
19021 
19022   // Mark that this expression does not constitute an odr-use.
19023   auto MarkNotOdrUsed = [&] {
19024     S.MaybeODRUseExprs.remove(E);
19025     if (LambdaScopeInfo *LSI = S.getCurLambda())
19026       LSI->markVariableExprAsNonODRUsed(E);
19027   };
19028 
19029   // C++2a [basic.def.odr]p2:
19030   //   The set of potential results of an expression e is defined as follows:
19031   switch (E->getStmtClass()) {
19032   //   -- If e is an id-expression, ...
19033   case Expr::DeclRefExprClass: {
19034     auto *DRE = cast<DeclRefExpr>(E);
19035     if (DRE->isNonOdrUse() || IsPotentialResultOdrUsed(DRE->getDecl()))
19036       break;
19037 
19038     // Rebuild as a non-odr-use DeclRefExpr.
19039     MarkNotOdrUsed();
19040     return DeclRefExpr::Create(
19041         S.Context, DRE->getQualifierLoc(), DRE->getTemplateKeywordLoc(),
19042         DRE->getDecl(), DRE->refersToEnclosingVariableOrCapture(),
19043         DRE->getNameInfo(), DRE->getType(), DRE->getValueKind(),
19044         DRE->getFoundDecl(), CopiedTemplateArgs(DRE), NOUR);
19045   }
19046 
19047   case Expr::FunctionParmPackExprClass: {
19048     auto *FPPE = cast<FunctionParmPackExpr>(E);
19049     // If any of the declarations in the pack is odr-used, then the expression
19050     // as a whole constitutes an odr-use.
19051     for (VarDecl *D : *FPPE)
19052       if (IsPotentialResultOdrUsed(D))
19053         return ExprEmpty();
19054 
19055     // FIXME: Rebuild as a non-odr-use FunctionParmPackExpr? In practice,
19056     // nothing cares about whether we marked this as an odr-use, but it might
19057     // be useful for non-compiler tools.
19058     MarkNotOdrUsed();
19059     break;
19060   }
19061 
19062   //   -- If e is a subscripting operation with an array operand...
19063   case Expr::ArraySubscriptExprClass: {
19064     auto *ASE = cast<ArraySubscriptExpr>(E);
19065     Expr *OldBase = ASE->getBase()->IgnoreImplicit();
19066     if (!OldBase->getType()->isArrayType())
19067       break;
19068     ExprResult Base = Rebuild(OldBase);
19069     if (!Base.isUsable())
19070       return Base;
19071     Expr *LHS = ASE->getBase() == ASE->getLHS() ? Base.get() : ASE->getLHS();
19072     Expr *RHS = ASE->getBase() == ASE->getRHS() ? Base.get() : ASE->getRHS();
19073     SourceLocation LBracketLoc = ASE->getBeginLoc(); // FIXME: Not stored.
19074     return S.ActOnArraySubscriptExpr(nullptr, LHS, LBracketLoc, RHS,
19075                                      ASE->getRBracketLoc());
19076   }
19077 
19078   case Expr::MemberExprClass: {
19079     auto *ME = cast<MemberExpr>(E);
19080     // -- If e is a class member access expression [...] naming a non-static
19081     //    data member...
19082     if (isa<FieldDecl>(ME->getMemberDecl())) {
19083       ExprResult Base = Rebuild(ME->getBase());
19084       if (!Base.isUsable())
19085         return Base;
19086       return MemberExpr::Create(
19087           S.Context, Base.get(), ME->isArrow(), ME->getOperatorLoc(),
19088           ME->getQualifierLoc(), ME->getTemplateKeywordLoc(),
19089           ME->getMemberDecl(), ME->getFoundDecl(), ME->getMemberNameInfo(),
19090           CopiedTemplateArgs(ME), ME->getType(), ME->getValueKind(),
19091           ME->getObjectKind(), ME->isNonOdrUse());
19092     }
19093 
19094     if (ME->getMemberDecl()->isCXXInstanceMember())
19095       break;
19096 
19097     // -- If e is a class member access expression naming a static data member,
19098     //    ...
19099     if (ME->isNonOdrUse() || IsPotentialResultOdrUsed(ME->getMemberDecl()))
19100       break;
19101 
19102     // Rebuild as a non-odr-use MemberExpr.
19103     MarkNotOdrUsed();
19104     return MemberExpr::Create(
19105         S.Context, ME->getBase(), ME->isArrow(), ME->getOperatorLoc(),
19106         ME->getQualifierLoc(), ME->getTemplateKeywordLoc(), ME->getMemberDecl(),
19107         ME->getFoundDecl(), ME->getMemberNameInfo(), CopiedTemplateArgs(ME),
19108         ME->getType(), ME->getValueKind(), ME->getObjectKind(), NOUR);
19109   }
19110 
19111   case Expr::BinaryOperatorClass: {
19112     auto *BO = cast<BinaryOperator>(E);
19113     Expr *LHS = BO->getLHS();
19114     Expr *RHS = BO->getRHS();
19115     // -- If e is a pointer-to-member expression of the form e1 .* e2 ...
19116     if (BO->getOpcode() == BO_PtrMemD) {
19117       ExprResult Sub = Rebuild(LHS);
19118       if (!Sub.isUsable())
19119         return Sub;
19120       LHS = Sub.get();
19121     //   -- If e is a comma expression, ...
19122     } else if (BO->getOpcode() == BO_Comma) {
19123       ExprResult Sub = Rebuild(RHS);
19124       if (!Sub.isUsable())
19125         return Sub;
19126       RHS = Sub.get();
19127     } else {
19128       break;
19129     }
19130     return S.BuildBinOp(nullptr, BO->getOperatorLoc(), BO->getOpcode(),
19131                         LHS, RHS);
19132   }
19133 
19134   //   -- If e has the form (e1)...
19135   case Expr::ParenExprClass: {
19136     auto *PE = cast<ParenExpr>(E);
19137     ExprResult Sub = Rebuild(PE->getSubExpr());
19138     if (!Sub.isUsable())
19139       return Sub;
19140     return S.ActOnParenExpr(PE->getLParen(), PE->getRParen(), Sub.get());
19141   }
19142 
19143   //   -- If e is a glvalue conditional expression, ...
19144   // We don't apply this to a binary conditional operator. FIXME: Should we?
19145   case Expr::ConditionalOperatorClass: {
19146     auto *CO = cast<ConditionalOperator>(E);
19147     ExprResult LHS = Rebuild(CO->getLHS());
19148     if (LHS.isInvalid())
19149       return ExprError();
19150     ExprResult RHS = Rebuild(CO->getRHS());
19151     if (RHS.isInvalid())
19152       return ExprError();
19153     if (!LHS.isUsable() && !RHS.isUsable())
19154       return ExprEmpty();
19155     if (!LHS.isUsable())
19156       LHS = CO->getLHS();
19157     if (!RHS.isUsable())
19158       RHS = CO->getRHS();
19159     return S.ActOnConditionalOp(CO->getQuestionLoc(), CO->getColonLoc(),
19160                                 CO->getCond(), LHS.get(), RHS.get());
19161   }
19162 
19163   // [Clang extension]
19164   //   -- If e has the form __extension__ e1...
19165   case Expr::UnaryOperatorClass: {
19166     auto *UO = cast<UnaryOperator>(E);
19167     if (UO->getOpcode() != UO_Extension)
19168       break;
19169     ExprResult Sub = Rebuild(UO->getSubExpr());
19170     if (!Sub.isUsable())
19171       return Sub;
19172     return S.BuildUnaryOp(nullptr, UO->getOperatorLoc(), UO_Extension,
19173                           Sub.get());
19174   }
19175 
19176   // [Clang extension]
19177   //   -- If e has the form _Generic(...), the set of potential results is the
19178   //      union of the sets of potential results of the associated expressions.
19179   case Expr::GenericSelectionExprClass: {
19180     auto *GSE = cast<GenericSelectionExpr>(E);
19181 
19182     SmallVector<Expr *, 4> AssocExprs;
19183     bool AnyChanged = false;
19184     for (Expr *OrigAssocExpr : GSE->getAssocExprs()) {
19185       ExprResult AssocExpr = Rebuild(OrigAssocExpr);
19186       if (AssocExpr.isInvalid())
19187         return ExprError();
19188       if (AssocExpr.isUsable()) {
19189         AssocExprs.push_back(AssocExpr.get());
19190         AnyChanged = true;
19191       } else {
19192         AssocExprs.push_back(OrigAssocExpr);
19193       }
19194     }
19195 
19196     return AnyChanged ? S.CreateGenericSelectionExpr(
19197                             GSE->getGenericLoc(), GSE->getDefaultLoc(),
19198                             GSE->getRParenLoc(), GSE->getControllingExpr(),
19199                             GSE->getAssocTypeSourceInfos(), AssocExprs)
19200                       : ExprEmpty();
19201   }
19202 
19203   // [Clang extension]
19204   //   -- If e has the form __builtin_choose_expr(...), the set of potential
19205   //      results is the union of the sets of potential results of the
19206   //      second and third subexpressions.
19207   case Expr::ChooseExprClass: {
19208     auto *CE = cast<ChooseExpr>(E);
19209 
19210     ExprResult LHS = Rebuild(CE->getLHS());
19211     if (LHS.isInvalid())
19212       return ExprError();
19213 
19214     ExprResult RHS = Rebuild(CE->getLHS());
19215     if (RHS.isInvalid())
19216       return ExprError();
19217 
19218     if (!LHS.get() && !RHS.get())
19219       return ExprEmpty();
19220     if (!LHS.isUsable())
19221       LHS = CE->getLHS();
19222     if (!RHS.isUsable())
19223       RHS = CE->getRHS();
19224 
19225     return S.ActOnChooseExpr(CE->getBuiltinLoc(), CE->getCond(), LHS.get(),
19226                              RHS.get(), CE->getRParenLoc());
19227   }
19228 
19229   // Step through non-syntactic nodes.
19230   case Expr::ConstantExprClass: {
19231     auto *CE = cast<ConstantExpr>(E);
19232     ExprResult Sub = Rebuild(CE->getSubExpr());
19233     if (!Sub.isUsable())
19234       return Sub;
19235     return ConstantExpr::Create(S.Context, Sub.get());
19236   }
19237 
19238   // We could mostly rely on the recursive rebuilding to rebuild implicit
19239   // casts, but not at the top level, so rebuild them here.
19240   case Expr::ImplicitCastExprClass: {
19241     auto *ICE = cast<ImplicitCastExpr>(E);
19242     // Only step through the narrow set of cast kinds we expect to encounter.
19243     // Anything else suggests we've left the region in which potential results
19244     // can be found.
19245     switch (ICE->getCastKind()) {
19246     case CK_NoOp:
19247     case CK_DerivedToBase:
19248     case CK_UncheckedDerivedToBase: {
19249       ExprResult Sub = Rebuild(ICE->getSubExpr());
19250       if (!Sub.isUsable())
19251         return Sub;
19252       CXXCastPath Path(ICE->path());
19253       return S.ImpCastExprToType(Sub.get(), ICE->getType(), ICE->getCastKind(),
19254                                  ICE->getValueKind(), &Path);
19255     }
19256 
19257     default:
19258       break;
19259     }
19260     break;
19261   }
19262 
19263   default:
19264     break;
19265   }
19266 
19267   // Can't traverse through this node. Nothing to do.
19268   return ExprEmpty();
19269 }
19270 
19271 ExprResult Sema::CheckLValueToRValueConversionOperand(Expr *E) {
19272   // Check whether the operand is or contains an object of non-trivial C union
19273   // type.
19274   if (E->getType().isVolatileQualified() &&
19275       (E->getType().hasNonTrivialToPrimitiveDestructCUnion() ||
19276        E->getType().hasNonTrivialToPrimitiveCopyCUnion()))
19277     checkNonTrivialCUnion(E->getType(), E->getExprLoc(),
19278                           Sema::NTCUC_LValueToRValueVolatile,
19279                           NTCUK_Destruct|NTCUK_Copy);
19280 
19281   // C++2a [basic.def.odr]p4:
19282   //   [...] an expression of non-volatile-qualified non-class type to which
19283   //   the lvalue-to-rvalue conversion is applied [...]
19284   if (E->getType().isVolatileQualified() || E->getType()->getAs<RecordType>())
19285     return E;
19286 
19287   ExprResult Result =
19288       rebuildPotentialResultsAsNonOdrUsed(*this, E, NOUR_Constant);
19289   if (Result.isInvalid())
19290     return ExprError();
19291   return Result.get() ? Result : E;
19292 }
19293 
19294 ExprResult Sema::ActOnConstantExpression(ExprResult Res) {
19295   Res = CorrectDelayedTyposInExpr(Res);
19296 
19297   if (!Res.isUsable())
19298     return Res;
19299 
19300   // If a constant-expression is a reference to a variable where we delay
19301   // deciding whether it is an odr-use, just assume we will apply the
19302   // lvalue-to-rvalue conversion.  In the one case where this doesn't happen
19303   // (a non-type template argument), we have special handling anyway.
19304   return CheckLValueToRValueConversionOperand(Res.get());
19305 }
19306 
19307 void Sema::CleanupVarDeclMarking() {
19308   // Iterate through a local copy in case MarkVarDeclODRUsed makes a recursive
19309   // call.
19310   MaybeODRUseExprSet LocalMaybeODRUseExprs;
19311   std::swap(LocalMaybeODRUseExprs, MaybeODRUseExprs);
19312 
19313   for (Expr *E : LocalMaybeODRUseExprs) {
19314     if (auto *DRE = dyn_cast<DeclRefExpr>(E)) {
19315       MarkVarDeclODRUsed(cast<VarDecl>(DRE->getDecl()),
19316                          DRE->getLocation(), *this);
19317     } else if (auto *ME = dyn_cast<MemberExpr>(E)) {
19318       MarkVarDeclODRUsed(cast<VarDecl>(ME->getMemberDecl()), ME->getMemberLoc(),
19319                          *this);
19320     } else if (auto *FP = dyn_cast<FunctionParmPackExpr>(E)) {
19321       for (VarDecl *VD : *FP)
19322         MarkVarDeclODRUsed(VD, FP->getParameterPackLocation(), *this);
19323     } else {
19324       llvm_unreachable("Unexpected expression");
19325     }
19326   }
19327 
19328   assert(MaybeODRUseExprs.empty() &&
19329          "MarkVarDeclODRUsed failed to cleanup MaybeODRUseExprs?");
19330 }
19331 
19332 static void DoMarkVarDeclReferenced(
19333     Sema &SemaRef, SourceLocation Loc, VarDecl *Var, Expr *E,
19334     llvm::DenseMap<const VarDecl *, int> &RefsMinusAssignments) {
19335   assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E) ||
19336           isa<FunctionParmPackExpr>(E)) &&
19337          "Invalid Expr argument to DoMarkVarDeclReferenced");
19338   Var->setReferenced();
19339 
19340   if (Var->isInvalidDecl())
19341     return;
19342 
19343   auto *MSI = Var->getMemberSpecializationInfo();
19344   TemplateSpecializationKind TSK = MSI ? MSI->getTemplateSpecializationKind()
19345                                        : Var->getTemplateSpecializationKind();
19346 
19347   OdrUseContext OdrUse = isOdrUseContext(SemaRef);
19348   bool UsableInConstantExpr =
19349       Var->mightBeUsableInConstantExpressions(SemaRef.Context);
19350 
19351   if (Var->isLocalVarDeclOrParm() && !Var->hasExternalStorage()) {
19352     RefsMinusAssignments.insert({Var, 0}).first->getSecond()++;
19353   }
19354 
19355   // C++20 [expr.const]p12:
19356   //   A variable [...] is needed for constant evaluation if it is [...] a
19357   //   variable whose name appears as a potentially constant evaluated
19358   //   expression that is either a contexpr variable or is of non-volatile
19359   //   const-qualified integral type or of reference type
19360   bool NeededForConstantEvaluation =
19361       isPotentiallyConstantEvaluatedContext(SemaRef) && UsableInConstantExpr;
19362 
19363   bool NeedDefinition =
19364       OdrUse == OdrUseContext::Used || NeededForConstantEvaluation;
19365 
19366   assert(!isa<VarTemplatePartialSpecializationDecl>(Var) &&
19367          "Can't instantiate a partial template specialization.");
19368 
19369   // If this might be a member specialization of a static data member, check
19370   // the specialization is visible. We already did the checks for variable
19371   // template specializations when we created them.
19372   if (NeedDefinition && TSK != TSK_Undeclared &&
19373       !isa<VarTemplateSpecializationDecl>(Var))
19374     SemaRef.checkSpecializationVisibility(Loc, Var);
19375 
19376   // Perform implicit instantiation of static data members, static data member
19377   // templates of class templates, and variable template specializations. Delay
19378   // instantiations of variable templates, except for those that could be used
19379   // in a constant expression.
19380   if (NeedDefinition && isTemplateInstantiation(TSK)) {
19381     // Per C++17 [temp.explicit]p10, we may instantiate despite an explicit
19382     // instantiation declaration if a variable is usable in a constant
19383     // expression (among other cases).
19384     bool TryInstantiating =
19385         TSK == TSK_ImplicitInstantiation ||
19386         (TSK == TSK_ExplicitInstantiationDeclaration && UsableInConstantExpr);
19387 
19388     if (TryInstantiating) {
19389       SourceLocation PointOfInstantiation =
19390           MSI ? MSI->getPointOfInstantiation() : Var->getPointOfInstantiation();
19391       bool FirstInstantiation = PointOfInstantiation.isInvalid();
19392       if (FirstInstantiation) {
19393         PointOfInstantiation = Loc;
19394         if (MSI)
19395           MSI->setPointOfInstantiation(PointOfInstantiation);
19396           // FIXME: Notify listener.
19397         else
19398           Var->setTemplateSpecializationKind(TSK, PointOfInstantiation);
19399       }
19400 
19401       if (UsableInConstantExpr) {
19402         // Do not defer instantiations of variables that could be used in a
19403         // constant expression.
19404         SemaRef.runWithSufficientStackSpace(PointOfInstantiation, [&] {
19405           SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var);
19406         });
19407 
19408         // Re-set the member to trigger a recomputation of the dependence bits
19409         // for the expression.
19410         if (auto *DRE = dyn_cast_or_null<DeclRefExpr>(E))
19411           DRE->setDecl(DRE->getDecl());
19412         else if (auto *ME = dyn_cast_or_null<MemberExpr>(E))
19413           ME->setMemberDecl(ME->getMemberDecl());
19414       } else if (FirstInstantiation ||
19415                  isa<VarTemplateSpecializationDecl>(Var)) {
19416         // FIXME: For a specialization of a variable template, we don't
19417         // distinguish between "declaration and type implicitly instantiated"
19418         // and "implicit instantiation of definition requested", so we have
19419         // no direct way to avoid enqueueing the pending instantiation
19420         // multiple times.
19421         SemaRef.PendingInstantiations
19422             .push_back(std::make_pair(Var, PointOfInstantiation));
19423       }
19424     }
19425   }
19426 
19427   // C++2a [basic.def.odr]p4:
19428   //   A variable x whose name appears as a potentially-evaluated expression e
19429   //   is odr-used by e unless
19430   //   -- x is a reference that is usable in constant expressions
19431   //   -- x is a variable of non-reference type that is usable in constant
19432   //      expressions and has no mutable subobjects [FIXME], and e is an
19433   //      element of the set of potential results of an expression of
19434   //      non-volatile-qualified non-class type to which the lvalue-to-rvalue
19435   //      conversion is applied
19436   //   -- x is a variable of non-reference type, and e is an element of the set
19437   //      of potential results of a discarded-value expression to which the
19438   //      lvalue-to-rvalue conversion is not applied [FIXME]
19439   //
19440   // We check the first part of the second bullet here, and
19441   // Sema::CheckLValueToRValueConversionOperand deals with the second part.
19442   // FIXME: To get the third bullet right, we need to delay this even for
19443   // variables that are not usable in constant expressions.
19444 
19445   // If we already know this isn't an odr-use, there's nothing more to do.
19446   if (DeclRefExpr *DRE = dyn_cast_or_null<DeclRefExpr>(E))
19447     if (DRE->isNonOdrUse())
19448       return;
19449   if (MemberExpr *ME = dyn_cast_or_null<MemberExpr>(E))
19450     if (ME->isNonOdrUse())
19451       return;
19452 
19453   switch (OdrUse) {
19454   case OdrUseContext::None:
19455     assert((!E || isa<FunctionParmPackExpr>(E)) &&
19456            "missing non-odr-use marking for unevaluated decl ref");
19457     break;
19458 
19459   case OdrUseContext::FormallyOdrUsed:
19460     // FIXME: Ignoring formal odr-uses results in incorrect lambda capture
19461     // behavior.
19462     break;
19463 
19464   case OdrUseContext::Used:
19465     // If we might later find that this expression isn't actually an odr-use,
19466     // delay the marking.
19467     if (E && Var->isUsableInConstantExpressions(SemaRef.Context))
19468       SemaRef.MaybeODRUseExprs.insert(E);
19469     else
19470       MarkVarDeclODRUsed(Var, Loc, SemaRef);
19471     break;
19472 
19473   case OdrUseContext::Dependent:
19474     // If this is a dependent context, we don't need to mark variables as
19475     // odr-used, but we may still need to track them for lambda capture.
19476     // FIXME: Do we also need to do this inside dependent typeid expressions
19477     // (which are modeled as unevaluated at this point)?
19478     const bool RefersToEnclosingScope =
19479         (SemaRef.CurContext != Var->getDeclContext() &&
19480          Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage());
19481     if (RefersToEnclosingScope) {
19482       LambdaScopeInfo *const LSI =
19483           SemaRef.getCurLambda(/*IgnoreNonLambdaCapturingScope=*/true);
19484       if (LSI && (!LSI->CallOperator ||
19485                   !LSI->CallOperator->Encloses(Var->getDeclContext()))) {
19486         // If a variable could potentially be odr-used, defer marking it so
19487         // until we finish analyzing the full expression for any
19488         // lvalue-to-rvalue
19489         // or discarded value conversions that would obviate odr-use.
19490         // Add it to the list of potential captures that will be analyzed
19491         // later (ActOnFinishFullExpr) for eventual capture and odr-use marking
19492         // unless the variable is a reference that was initialized by a constant
19493         // expression (this will never need to be captured or odr-used).
19494         //
19495         // FIXME: We can simplify this a lot after implementing P0588R1.
19496         assert(E && "Capture variable should be used in an expression.");
19497         if (!Var->getType()->isReferenceType() ||
19498             !Var->isUsableInConstantExpressions(SemaRef.Context))
19499           LSI->addPotentialCapture(E->IgnoreParens());
19500       }
19501     }
19502     break;
19503   }
19504 }
19505 
19506 /// Mark a variable referenced, and check whether it is odr-used
19507 /// (C++ [basic.def.odr]p2, C99 6.9p3).  Note that this should not be
19508 /// used directly for normal expressions referring to VarDecl.
19509 void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) {
19510   DoMarkVarDeclReferenced(*this, Loc, Var, nullptr, RefsMinusAssignments);
19511 }
19512 
19513 static void
19514 MarkExprReferenced(Sema &SemaRef, SourceLocation Loc, Decl *D, Expr *E,
19515                    bool MightBeOdrUse,
19516                    llvm::DenseMap<const VarDecl *, int> &RefsMinusAssignments) {
19517   if (SemaRef.isInOpenMPDeclareTargetContext())
19518     SemaRef.checkDeclIsAllowedInOpenMPTarget(E, D);
19519 
19520   if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
19521     DoMarkVarDeclReferenced(SemaRef, Loc, Var, E, RefsMinusAssignments);
19522     return;
19523   }
19524 
19525   SemaRef.MarkAnyDeclReferenced(Loc, D, MightBeOdrUse);
19526 
19527   // If this is a call to a method via a cast, also mark the method in the
19528   // derived class used in case codegen can devirtualize the call.
19529   const MemberExpr *ME = dyn_cast<MemberExpr>(E);
19530   if (!ME)
19531     return;
19532   CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl());
19533   if (!MD)
19534     return;
19535   // Only attempt to devirtualize if this is truly a virtual call.
19536   bool IsVirtualCall = MD->isVirtual() &&
19537                           ME->performsVirtualDispatch(SemaRef.getLangOpts());
19538   if (!IsVirtualCall)
19539     return;
19540 
19541   // If it's possible to devirtualize the call, mark the called function
19542   // referenced.
19543   CXXMethodDecl *DM = MD->getDevirtualizedMethod(
19544       ME->getBase(), SemaRef.getLangOpts().AppleKext);
19545   if (DM)
19546     SemaRef.MarkAnyDeclReferenced(Loc, DM, MightBeOdrUse);
19547 }
19548 
19549 /// Perform reference-marking and odr-use handling for a DeclRefExpr.
19550 ///
19551 /// Note, this may change the dependence of the DeclRefExpr, and so needs to be
19552 /// handled with care if the DeclRefExpr is not newly-created.
19553 void Sema::MarkDeclRefReferenced(DeclRefExpr *E, const Expr *Base) {
19554   // TODO: update this with DR# once a defect report is filed.
19555   // C++11 defect. The address of a pure member should not be an ODR use, even
19556   // if it's a qualified reference.
19557   bool OdrUse = true;
19558   if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl()))
19559     if (Method->isVirtual() &&
19560         !Method->getDevirtualizedMethod(Base, getLangOpts().AppleKext))
19561       OdrUse = false;
19562 
19563   if (auto *FD = dyn_cast<FunctionDecl>(E->getDecl()))
19564     if (!isUnevaluatedContext() && !isConstantEvaluated() &&
19565         FD->isConsteval() && !RebuildingImmediateInvocation)
19566       ExprEvalContexts.back().ReferenceToConsteval.insert(E);
19567   MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse,
19568                      RefsMinusAssignments);
19569 }
19570 
19571 /// Perform reference-marking and odr-use handling for a MemberExpr.
19572 void Sema::MarkMemberReferenced(MemberExpr *E) {
19573   // C++11 [basic.def.odr]p2:
19574   //   A non-overloaded function whose name appears as a potentially-evaluated
19575   //   expression or a member of a set of candidate functions, if selected by
19576   //   overload resolution when referred to from a potentially-evaluated
19577   //   expression, is odr-used, unless it is a pure virtual function and its
19578   //   name is not explicitly qualified.
19579   bool MightBeOdrUse = true;
19580   if (E->performsVirtualDispatch(getLangOpts())) {
19581     if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl()))
19582       if (Method->isPure())
19583         MightBeOdrUse = false;
19584   }
19585   SourceLocation Loc =
19586       E->getMemberLoc().isValid() ? E->getMemberLoc() : E->getBeginLoc();
19587   MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, MightBeOdrUse,
19588                      RefsMinusAssignments);
19589 }
19590 
19591 /// Perform reference-marking and odr-use handling for a FunctionParmPackExpr.
19592 void Sema::MarkFunctionParmPackReferenced(FunctionParmPackExpr *E) {
19593   for (VarDecl *VD : *E)
19594     MarkExprReferenced(*this, E->getParameterPackLocation(), VD, E, true,
19595                        RefsMinusAssignments);
19596 }
19597 
19598 /// Perform marking for a reference to an arbitrary declaration.  It
19599 /// marks the declaration referenced, and performs odr-use checking for
19600 /// functions and variables. This method should not be used when building a
19601 /// normal expression which refers to a variable.
19602 void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D,
19603                                  bool MightBeOdrUse) {
19604   if (MightBeOdrUse) {
19605     if (auto *VD = dyn_cast<VarDecl>(D)) {
19606       MarkVariableReferenced(Loc, VD);
19607       return;
19608     }
19609   }
19610   if (auto *FD = dyn_cast<FunctionDecl>(D)) {
19611     MarkFunctionReferenced(Loc, FD, MightBeOdrUse);
19612     return;
19613   }
19614   D->setReferenced();
19615 }
19616 
19617 namespace {
19618   // Mark all of the declarations used by a type as referenced.
19619   // FIXME: Not fully implemented yet! We need to have a better understanding
19620   // of when we're entering a context we should not recurse into.
19621   // FIXME: This is and EvaluatedExprMarker are more-or-less equivalent to
19622   // TreeTransforms rebuilding the type in a new context. Rather than
19623   // duplicating the TreeTransform logic, we should consider reusing it here.
19624   // Currently that causes problems when rebuilding LambdaExprs.
19625   class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> {
19626     Sema &S;
19627     SourceLocation Loc;
19628 
19629   public:
19630     typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited;
19631 
19632     MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { }
19633 
19634     bool TraverseTemplateArgument(const TemplateArgument &Arg);
19635   };
19636 }
19637 
19638 bool MarkReferencedDecls::TraverseTemplateArgument(
19639     const TemplateArgument &Arg) {
19640   {
19641     // A non-type template argument is a constant-evaluated context.
19642     EnterExpressionEvaluationContext Evaluated(
19643         S, Sema::ExpressionEvaluationContext::ConstantEvaluated);
19644     if (Arg.getKind() == TemplateArgument::Declaration) {
19645       if (Decl *D = Arg.getAsDecl())
19646         S.MarkAnyDeclReferenced(Loc, D, true);
19647     } else if (Arg.getKind() == TemplateArgument::Expression) {
19648       S.MarkDeclarationsReferencedInExpr(Arg.getAsExpr(), false);
19649     }
19650   }
19651 
19652   return Inherited::TraverseTemplateArgument(Arg);
19653 }
19654 
19655 void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) {
19656   MarkReferencedDecls Marker(*this, Loc);
19657   Marker.TraverseType(T);
19658 }
19659 
19660 namespace {
19661 /// Helper class that marks all of the declarations referenced by
19662 /// potentially-evaluated subexpressions as "referenced".
19663 class EvaluatedExprMarker : public UsedDeclVisitor<EvaluatedExprMarker> {
19664 public:
19665   typedef UsedDeclVisitor<EvaluatedExprMarker> Inherited;
19666   bool SkipLocalVariables;
19667   ArrayRef<const Expr *> StopAt;
19668 
19669   EvaluatedExprMarker(Sema &S, bool SkipLocalVariables,
19670                       ArrayRef<const Expr *> StopAt)
19671       : Inherited(S), SkipLocalVariables(SkipLocalVariables), StopAt(StopAt) {}
19672 
19673   void visitUsedDecl(SourceLocation Loc, Decl *D) {
19674     S.MarkFunctionReferenced(Loc, cast<FunctionDecl>(D));
19675   }
19676 
19677   void Visit(Expr *E) {
19678     if (llvm::is_contained(StopAt, E))
19679       return;
19680     Inherited::Visit(E);
19681   }
19682 
19683   void VisitConstantExpr(ConstantExpr *E) {
19684     // Don't mark declarations within a ConstantExpression, as this expression
19685     // will be evaluated and folded to a value.
19686     return;
19687   }
19688 
19689   void VisitDeclRefExpr(DeclRefExpr *E) {
19690     // If we were asked not to visit local variables, don't.
19691     if (SkipLocalVariables) {
19692       if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
19693         if (VD->hasLocalStorage())
19694           return;
19695     }
19696 
19697     // FIXME: This can trigger the instantiation of the initializer of a
19698     // variable, which can cause the expression to become value-dependent
19699     // or error-dependent. Do we need to propagate the new dependence bits?
19700     S.MarkDeclRefReferenced(E);
19701   }
19702 
19703   void VisitMemberExpr(MemberExpr *E) {
19704     S.MarkMemberReferenced(E);
19705     Visit(E->getBase());
19706   }
19707 };
19708 } // namespace
19709 
19710 /// Mark any declarations that appear within this expression or any
19711 /// potentially-evaluated subexpressions as "referenced".
19712 ///
19713 /// \param SkipLocalVariables If true, don't mark local variables as
19714 /// 'referenced'.
19715 /// \param StopAt Subexpressions that we shouldn't recurse into.
19716 void Sema::MarkDeclarationsReferencedInExpr(Expr *E,
19717                                             bool SkipLocalVariables,
19718                                             ArrayRef<const Expr*> StopAt) {
19719   EvaluatedExprMarker(*this, SkipLocalVariables, StopAt).Visit(E);
19720 }
19721 
19722 /// Emit a diagnostic when statements are reachable.
19723 /// FIXME: check for reachability even in expressions for which we don't build a
19724 ///        CFG (eg, in the initializer of a global or in a constant expression).
19725 ///        For example,
19726 ///        namespace { auto *p = new double[3][false ? (1, 2) : 3]; }
19727 bool Sema::DiagIfReachable(SourceLocation Loc, ArrayRef<const Stmt *> Stmts,
19728                            const PartialDiagnostic &PD) {
19729   if (!Stmts.empty() && getCurFunctionOrMethodDecl()) {
19730     if (!FunctionScopes.empty())
19731       FunctionScopes.back()->PossiblyUnreachableDiags.push_back(
19732           sema::PossiblyUnreachableDiag(PD, Loc, Stmts));
19733     return true;
19734   }
19735 
19736   // The initializer of a constexpr variable or of the first declaration of a
19737   // static data member is not syntactically a constant evaluated constant,
19738   // but nonetheless is always required to be a constant expression, so we
19739   // can skip diagnosing.
19740   // FIXME: Using the mangling context here is a hack.
19741   if (auto *VD = dyn_cast_or_null<VarDecl>(
19742           ExprEvalContexts.back().ManglingContextDecl)) {
19743     if (VD->isConstexpr() ||
19744         (VD->isStaticDataMember() && VD->isFirstDecl() && !VD->isInline()))
19745       return false;
19746     // FIXME: For any other kind of variable, we should build a CFG for its
19747     // initializer and check whether the context in question is reachable.
19748   }
19749 
19750   Diag(Loc, PD);
19751   return true;
19752 }
19753 
19754 /// Emit a diagnostic that describes an effect on the run-time behavior
19755 /// of the program being compiled.
19756 ///
19757 /// This routine emits the given diagnostic when the code currently being
19758 /// type-checked is "potentially evaluated", meaning that there is a
19759 /// possibility that the code will actually be executable. Code in sizeof()
19760 /// expressions, code used only during overload resolution, etc., are not
19761 /// potentially evaluated. This routine will suppress such diagnostics or,
19762 /// in the absolutely nutty case of potentially potentially evaluated
19763 /// expressions (C++ typeid), queue the diagnostic to potentially emit it
19764 /// later.
19765 ///
19766 /// This routine should be used for all diagnostics that describe the run-time
19767 /// behavior of a program, such as passing a non-POD value through an ellipsis.
19768 /// Failure to do so will likely result in spurious diagnostics or failures
19769 /// during overload resolution or within sizeof/alignof/typeof/typeid.
19770 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, ArrayRef<const Stmt*> Stmts,
19771                                const PartialDiagnostic &PD) {
19772 
19773   if (ExprEvalContexts.back().isDiscardedStatementContext())
19774     return false;
19775 
19776   switch (ExprEvalContexts.back().Context) {
19777   case ExpressionEvaluationContext::Unevaluated:
19778   case ExpressionEvaluationContext::UnevaluatedList:
19779   case ExpressionEvaluationContext::UnevaluatedAbstract:
19780   case ExpressionEvaluationContext::DiscardedStatement:
19781     // The argument will never be evaluated, so don't complain.
19782     break;
19783 
19784   case ExpressionEvaluationContext::ConstantEvaluated:
19785   case ExpressionEvaluationContext::ImmediateFunctionContext:
19786     // Relevant diagnostics should be produced by constant evaluation.
19787     break;
19788 
19789   case ExpressionEvaluationContext::PotentiallyEvaluated:
19790   case ExpressionEvaluationContext::PotentiallyEvaluatedIfUsed:
19791     return DiagIfReachable(Loc, Stmts, PD);
19792   }
19793 
19794   return false;
19795 }
19796 
19797 bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement,
19798                                const PartialDiagnostic &PD) {
19799   return DiagRuntimeBehavior(
19800       Loc, Statement ? llvm::makeArrayRef(Statement) : llvm::None, PD);
19801 }
19802 
19803 bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
19804                                CallExpr *CE, FunctionDecl *FD) {
19805   if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
19806     return false;
19807 
19808   // If we're inside a decltype's expression, don't check for a valid return
19809   // type or construct temporaries until we know whether this is the last call.
19810   if (ExprEvalContexts.back().ExprContext ==
19811       ExpressionEvaluationContextRecord::EK_Decltype) {
19812     ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE);
19813     return false;
19814   }
19815 
19816   class CallReturnIncompleteDiagnoser : public TypeDiagnoser {
19817     FunctionDecl *FD;
19818     CallExpr *CE;
19819 
19820   public:
19821     CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE)
19822       : FD(FD), CE(CE) { }
19823 
19824     void diagnose(Sema &S, SourceLocation Loc, QualType T) override {
19825       if (!FD) {
19826         S.Diag(Loc, diag::err_call_incomplete_return)
19827           << T << CE->getSourceRange();
19828         return;
19829       }
19830 
19831       S.Diag(Loc, diag::err_call_function_incomplete_return)
19832           << CE->getSourceRange() << FD << T;
19833       S.Diag(FD->getLocation(), diag::note_entity_declared_at)
19834           << FD->getDeclName();
19835     }
19836   } Diagnoser(FD, CE);
19837 
19838   if (RequireCompleteType(Loc, ReturnType, Diagnoser))
19839     return true;
19840 
19841   return false;
19842 }
19843 
19844 // Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses
19845 // will prevent this condition from triggering, which is what we want.
19846 void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
19847   SourceLocation Loc;
19848 
19849   unsigned diagnostic = diag::warn_condition_is_assignment;
19850   bool IsOrAssign = false;
19851 
19852   if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
19853     if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign)
19854       return;
19855 
19856     IsOrAssign = Op->getOpcode() == BO_OrAssign;
19857 
19858     // Greylist some idioms by putting them into a warning subcategory.
19859     if (ObjCMessageExpr *ME
19860           = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) {
19861       Selector Sel = ME->getSelector();
19862 
19863       // self = [<foo> init...]
19864       if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init)
19865         diagnostic = diag::warn_condition_is_idiomatic_assignment;
19866 
19867       // <foo> = [<bar> nextObject]
19868       else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject")
19869         diagnostic = diag::warn_condition_is_idiomatic_assignment;
19870     }
19871 
19872     Loc = Op->getOperatorLoc();
19873   } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
19874     if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual)
19875       return;
19876 
19877     IsOrAssign = Op->getOperator() == OO_PipeEqual;
19878     Loc = Op->getOperatorLoc();
19879   } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E))
19880     return DiagnoseAssignmentAsCondition(POE->getSyntacticForm());
19881   else {
19882     // Not an assignment.
19883     return;
19884   }
19885 
19886   Diag(Loc, diagnostic) << E->getSourceRange();
19887 
19888   SourceLocation Open = E->getBeginLoc();
19889   SourceLocation Close = getLocForEndOfToken(E->getSourceRange().getEnd());
19890   Diag(Loc, diag::note_condition_assign_silence)
19891         << FixItHint::CreateInsertion(Open, "(")
19892         << FixItHint::CreateInsertion(Close, ")");
19893 
19894   if (IsOrAssign)
19895     Diag(Loc, diag::note_condition_or_assign_to_comparison)
19896       << FixItHint::CreateReplacement(Loc, "!=");
19897   else
19898     Diag(Loc, diag::note_condition_assign_to_comparison)
19899       << FixItHint::CreateReplacement(Loc, "==");
19900 }
19901 
19902 /// Redundant parentheses over an equality comparison can indicate
19903 /// that the user intended an assignment used as condition.
19904 void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) {
19905   // Don't warn if the parens came from a macro.
19906   SourceLocation parenLoc = ParenE->getBeginLoc();
19907   if (parenLoc.isInvalid() || parenLoc.isMacroID())
19908     return;
19909   // Don't warn for dependent expressions.
19910   if (ParenE->isTypeDependent())
19911     return;
19912 
19913   Expr *E = ParenE->IgnoreParens();
19914 
19915   if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E))
19916     if (opE->getOpcode() == BO_EQ &&
19917         opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context)
19918                                                            == Expr::MLV_Valid) {
19919       SourceLocation Loc = opE->getOperatorLoc();
19920 
19921       Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange();
19922       SourceRange ParenERange = ParenE->getSourceRange();
19923       Diag(Loc, diag::note_equality_comparison_silence)
19924         << FixItHint::CreateRemoval(ParenERange.getBegin())
19925         << FixItHint::CreateRemoval(ParenERange.getEnd());
19926       Diag(Loc, diag::note_equality_comparison_to_assign)
19927         << FixItHint::CreateReplacement(Loc, "=");
19928     }
19929 }
19930 
19931 ExprResult Sema::CheckBooleanCondition(SourceLocation Loc, Expr *E,
19932                                        bool IsConstexpr) {
19933   DiagnoseAssignmentAsCondition(E);
19934   if (ParenExpr *parenE = dyn_cast<ParenExpr>(E))
19935     DiagnoseEqualityWithExtraParens(parenE);
19936 
19937   ExprResult result = CheckPlaceholderExpr(E);
19938   if (result.isInvalid()) return ExprError();
19939   E = result.get();
19940 
19941   if (!E->isTypeDependent()) {
19942     if (getLangOpts().CPlusPlus)
19943       return CheckCXXBooleanCondition(E, IsConstexpr); // C++ 6.4p4
19944 
19945     ExprResult ERes = DefaultFunctionArrayLvalueConversion(E);
19946     if (ERes.isInvalid())
19947       return ExprError();
19948     E = ERes.get();
19949 
19950     QualType T = E->getType();
19951     if (!T->isScalarType()) { // C99 6.8.4.1p1
19952       Diag(Loc, diag::err_typecheck_statement_requires_scalar)
19953         << T << E->getSourceRange();
19954       return ExprError();
19955     }
19956     CheckBoolLikeConversion(E, Loc);
19957   }
19958 
19959   return E;
19960 }
19961 
19962 Sema::ConditionResult Sema::ActOnCondition(Scope *S, SourceLocation Loc,
19963                                            Expr *SubExpr, ConditionKind CK,
19964                                            bool MissingOK) {
19965   // MissingOK indicates whether having no condition expression is valid
19966   // (for loop) or invalid (e.g. while loop).
19967   if (!SubExpr)
19968     return MissingOK ? ConditionResult() : ConditionError();
19969 
19970   ExprResult Cond;
19971   switch (CK) {
19972   case ConditionKind::Boolean:
19973     Cond = CheckBooleanCondition(Loc, SubExpr);
19974     break;
19975 
19976   case ConditionKind::ConstexprIf:
19977     Cond = CheckBooleanCondition(Loc, SubExpr, true);
19978     break;
19979 
19980   case ConditionKind::Switch:
19981     Cond = CheckSwitchCondition(Loc, SubExpr);
19982     break;
19983   }
19984   if (Cond.isInvalid()) {
19985     Cond = CreateRecoveryExpr(SubExpr->getBeginLoc(), SubExpr->getEndLoc(),
19986                               {SubExpr}, PreferredConditionType(CK));
19987     if (!Cond.get())
19988       return ConditionError();
19989   }
19990   // FIXME: FullExprArg doesn't have an invalid bit, so check nullness instead.
19991   FullExprArg FullExpr = MakeFullExpr(Cond.get(), Loc);
19992   if (!FullExpr.get())
19993     return ConditionError();
19994 
19995   return ConditionResult(*this, nullptr, FullExpr,
19996                          CK == ConditionKind::ConstexprIf);
19997 }
19998 
19999 namespace {
20000   /// A visitor for rebuilding a call to an __unknown_any expression
20001   /// to have an appropriate type.
20002   struct RebuildUnknownAnyFunction
20003     : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> {
20004 
20005     Sema &S;
20006 
20007     RebuildUnknownAnyFunction(Sema &S) : S(S) {}
20008 
20009     ExprResult VisitStmt(Stmt *S) {
20010       llvm_unreachable("unexpected statement!");
20011     }
20012 
20013     ExprResult VisitExpr(Expr *E) {
20014       S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call)
20015         << E->getSourceRange();
20016       return ExprError();
20017     }
20018 
20019     /// Rebuild an expression which simply semantically wraps another
20020     /// expression which it shares the type and value kind of.
20021     template <class T> ExprResult rebuildSugarExpr(T *E) {
20022       ExprResult SubResult = Visit(E->getSubExpr());
20023       if (SubResult.isInvalid()) return ExprError();
20024 
20025       Expr *SubExpr = SubResult.get();
20026       E->setSubExpr(SubExpr);
20027       E->setType(SubExpr->getType());
20028       E->setValueKind(SubExpr->getValueKind());
20029       assert(E->getObjectKind() == OK_Ordinary);
20030       return E;
20031     }
20032 
20033     ExprResult VisitParenExpr(ParenExpr *E) {
20034       return rebuildSugarExpr(E);
20035     }
20036 
20037     ExprResult VisitUnaryExtension(UnaryOperator *E) {
20038       return rebuildSugarExpr(E);
20039     }
20040 
20041     ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
20042       ExprResult SubResult = Visit(E->getSubExpr());
20043       if (SubResult.isInvalid()) return ExprError();
20044 
20045       Expr *SubExpr = SubResult.get();
20046       E->setSubExpr(SubExpr);
20047       E->setType(S.Context.getPointerType(SubExpr->getType()));
20048       assert(E->isPRValue());
20049       assert(E->getObjectKind() == OK_Ordinary);
20050       return E;
20051     }
20052 
20053     ExprResult resolveDecl(Expr *E, ValueDecl *VD) {
20054       if (!isa<FunctionDecl>(VD)) return VisitExpr(E);
20055 
20056       E->setType(VD->getType());
20057 
20058       assert(E->isPRValue());
20059       if (S.getLangOpts().CPlusPlus &&
20060           !(isa<CXXMethodDecl>(VD) &&
20061             cast<CXXMethodDecl>(VD)->isInstance()))
20062         E->setValueKind(VK_LValue);
20063 
20064       return E;
20065     }
20066 
20067     ExprResult VisitMemberExpr(MemberExpr *E) {
20068       return resolveDecl(E, E->getMemberDecl());
20069     }
20070 
20071     ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
20072       return resolveDecl(E, E->getDecl());
20073     }
20074   };
20075 }
20076 
20077 /// Given a function expression of unknown-any type, try to rebuild it
20078 /// to have a function type.
20079 static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) {
20080   ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr);
20081   if (Result.isInvalid()) return ExprError();
20082   return S.DefaultFunctionArrayConversion(Result.get());
20083 }
20084 
20085 namespace {
20086   /// A visitor for rebuilding an expression of type __unknown_anytype
20087   /// into one which resolves the type directly on the referring
20088   /// expression.  Strict preservation of the original source
20089   /// structure is not a goal.
20090   struct RebuildUnknownAnyExpr
20091     : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> {
20092 
20093     Sema &S;
20094 
20095     /// The current destination type.
20096     QualType DestType;
20097 
20098     RebuildUnknownAnyExpr(Sema &S, QualType CastType)
20099       : S(S), DestType(CastType) {}
20100 
20101     ExprResult VisitStmt(Stmt *S) {
20102       llvm_unreachable("unexpected statement!");
20103     }
20104 
20105     ExprResult VisitExpr(Expr *E) {
20106       S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
20107         << E->getSourceRange();
20108       return ExprError();
20109     }
20110 
20111     ExprResult VisitCallExpr(CallExpr *E);
20112     ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E);
20113 
20114     /// Rebuild an expression which simply semantically wraps another
20115     /// expression which it shares the type and value kind of.
20116     template <class T> ExprResult rebuildSugarExpr(T *E) {
20117       ExprResult SubResult = Visit(E->getSubExpr());
20118       if (SubResult.isInvalid()) return ExprError();
20119       Expr *SubExpr = SubResult.get();
20120       E->setSubExpr(SubExpr);
20121       E->setType(SubExpr->getType());
20122       E->setValueKind(SubExpr->getValueKind());
20123       assert(E->getObjectKind() == OK_Ordinary);
20124       return E;
20125     }
20126 
20127     ExprResult VisitParenExpr(ParenExpr *E) {
20128       return rebuildSugarExpr(E);
20129     }
20130 
20131     ExprResult VisitUnaryExtension(UnaryOperator *E) {
20132       return rebuildSugarExpr(E);
20133     }
20134 
20135     ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
20136       const PointerType *Ptr = DestType->getAs<PointerType>();
20137       if (!Ptr) {
20138         S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof)
20139           << E->getSourceRange();
20140         return ExprError();
20141       }
20142 
20143       if (isa<CallExpr>(E->getSubExpr())) {
20144         S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof_call)
20145           << E->getSourceRange();
20146         return ExprError();
20147       }
20148 
20149       assert(E->isPRValue());
20150       assert(E->getObjectKind() == OK_Ordinary);
20151       E->setType(DestType);
20152 
20153       // Build the sub-expression as if it were an object of the pointee type.
20154       DestType = Ptr->getPointeeType();
20155       ExprResult SubResult = Visit(E->getSubExpr());
20156       if (SubResult.isInvalid()) return ExprError();
20157       E->setSubExpr(SubResult.get());
20158       return E;
20159     }
20160 
20161     ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E);
20162 
20163     ExprResult resolveDecl(Expr *E, ValueDecl *VD);
20164 
20165     ExprResult VisitMemberExpr(MemberExpr *E) {
20166       return resolveDecl(E, E->getMemberDecl());
20167     }
20168 
20169     ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
20170       return resolveDecl(E, E->getDecl());
20171     }
20172   };
20173 }
20174 
20175 /// Rebuilds a call expression which yielded __unknown_anytype.
20176 ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) {
20177   Expr *CalleeExpr = E->getCallee();
20178 
20179   enum FnKind {
20180     FK_MemberFunction,
20181     FK_FunctionPointer,
20182     FK_BlockPointer
20183   };
20184 
20185   FnKind Kind;
20186   QualType CalleeType = CalleeExpr->getType();
20187   if (CalleeType == S.Context.BoundMemberTy) {
20188     assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E));
20189     Kind = FK_MemberFunction;
20190     CalleeType = Expr::findBoundMemberType(CalleeExpr);
20191   } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) {
20192     CalleeType = Ptr->getPointeeType();
20193     Kind = FK_FunctionPointer;
20194   } else {
20195     CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType();
20196     Kind = FK_BlockPointer;
20197   }
20198   const FunctionType *FnType = CalleeType->castAs<FunctionType>();
20199 
20200   // Verify that this is a legal result type of a function.
20201   if (DestType->isArrayType() || DestType->isFunctionType()) {
20202     unsigned diagID = diag::err_func_returning_array_function;
20203     if (Kind == FK_BlockPointer)
20204       diagID = diag::err_block_returning_array_function;
20205 
20206     S.Diag(E->getExprLoc(), diagID)
20207       << DestType->isFunctionType() << DestType;
20208     return ExprError();
20209   }
20210 
20211   // Otherwise, go ahead and set DestType as the call's result.
20212   E->setType(DestType.getNonLValueExprType(S.Context));
20213   E->setValueKind(Expr::getValueKindForType(DestType));
20214   assert(E->getObjectKind() == OK_Ordinary);
20215 
20216   // Rebuild the function type, replacing the result type with DestType.
20217   const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType);
20218   if (Proto) {
20219     // __unknown_anytype(...) is a special case used by the debugger when
20220     // it has no idea what a function's signature is.
20221     //
20222     // We want to build this call essentially under the K&R
20223     // unprototyped rules, but making a FunctionNoProtoType in C++
20224     // would foul up all sorts of assumptions.  However, we cannot
20225     // simply pass all arguments as variadic arguments, nor can we
20226     // portably just call the function under a non-variadic type; see
20227     // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic.
20228     // However, it turns out that in practice it is generally safe to
20229     // call a function declared as "A foo(B,C,D);" under the prototype
20230     // "A foo(B,C,D,...);".  The only known exception is with the
20231     // Windows ABI, where any variadic function is implicitly cdecl
20232     // regardless of its normal CC.  Therefore we change the parameter
20233     // types to match the types of the arguments.
20234     //
20235     // This is a hack, but it is far superior to moving the
20236     // corresponding target-specific code from IR-gen to Sema/AST.
20237 
20238     ArrayRef<QualType> ParamTypes = Proto->getParamTypes();
20239     SmallVector<QualType, 8> ArgTypes;
20240     if (ParamTypes.empty() && Proto->isVariadic()) { // the special case
20241       ArgTypes.reserve(E->getNumArgs());
20242       for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) {
20243         ArgTypes.push_back(S.Context.getReferenceQualifiedType(E->getArg(i)));
20244       }
20245       ParamTypes = ArgTypes;
20246     }
20247     DestType = S.Context.getFunctionType(DestType, ParamTypes,
20248                                          Proto->getExtProtoInfo());
20249   } else {
20250     DestType = S.Context.getFunctionNoProtoType(DestType,
20251                                                 FnType->getExtInfo());
20252   }
20253 
20254   // Rebuild the appropriate pointer-to-function type.
20255   switch (Kind) {
20256   case FK_MemberFunction:
20257     // Nothing to do.
20258     break;
20259 
20260   case FK_FunctionPointer:
20261     DestType = S.Context.getPointerType(DestType);
20262     break;
20263 
20264   case FK_BlockPointer:
20265     DestType = S.Context.getBlockPointerType(DestType);
20266     break;
20267   }
20268 
20269   // Finally, we can recurse.
20270   ExprResult CalleeResult = Visit(CalleeExpr);
20271   if (!CalleeResult.isUsable()) return ExprError();
20272   E->setCallee(CalleeResult.get());
20273 
20274   // Bind a temporary if necessary.
20275   return S.MaybeBindToTemporary(E);
20276 }
20277 
20278 ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) {
20279   // Verify that this is a legal result type of a call.
20280   if (DestType->isArrayType() || DestType->isFunctionType()) {
20281     S.Diag(E->getExprLoc(), diag::err_func_returning_array_function)
20282       << DestType->isFunctionType() << DestType;
20283     return ExprError();
20284   }
20285 
20286   // Rewrite the method result type if available.
20287   if (ObjCMethodDecl *Method = E->getMethodDecl()) {
20288     assert(Method->getReturnType() == S.Context.UnknownAnyTy);
20289     Method->setReturnType(DestType);
20290   }
20291 
20292   // Change the type of the message.
20293   E->setType(DestType.getNonReferenceType());
20294   E->setValueKind(Expr::getValueKindForType(DestType));
20295 
20296   return S.MaybeBindToTemporary(E);
20297 }
20298 
20299 ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) {
20300   // The only case we should ever see here is a function-to-pointer decay.
20301   if (E->getCastKind() == CK_FunctionToPointerDecay) {
20302     assert(E->isPRValue());
20303     assert(E->getObjectKind() == OK_Ordinary);
20304 
20305     E->setType(DestType);
20306 
20307     // Rebuild the sub-expression as the pointee (function) type.
20308     DestType = DestType->castAs<PointerType>()->getPointeeType();
20309 
20310     ExprResult Result = Visit(E->getSubExpr());
20311     if (!Result.isUsable()) return ExprError();
20312 
20313     E->setSubExpr(Result.get());
20314     return E;
20315   } else if (E->getCastKind() == CK_LValueToRValue) {
20316     assert(E->isPRValue());
20317     assert(E->getObjectKind() == OK_Ordinary);
20318 
20319     assert(isa<BlockPointerType>(E->getType()));
20320 
20321     E->setType(DestType);
20322 
20323     // The sub-expression has to be a lvalue reference, so rebuild it as such.
20324     DestType = S.Context.getLValueReferenceType(DestType);
20325 
20326     ExprResult Result = Visit(E->getSubExpr());
20327     if (!Result.isUsable()) return ExprError();
20328 
20329     E->setSubExpr(Result.get());
20330     return E;
20331   } else {
20332     llvm_unreachable("Unhandled cast type!");
20333   }
20334 }
20335 
20336 ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) {
20337   ExprValueKind ValueKind = VK_LValue;
20338   QualType Type = DestType;
20339 
20340   // We know how to make this work for certain kinds of decls:
20341 
20342   //  - functions
20343   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) {
20344     if (const PointerType *Ptr = Type->getAs<PointerType>()) {
20345       DestType = Ptr->getPointeeType();
20346       ExprResult Result = resolveDecl(E, VD);
20347       if (Result.isInvalid()) return ExprError();
20348       return S.ImpCastExprToType(Result.get(), Type, CK_FunctionToPointerDecay,
20349                                  VK_PRValue);
20350     }
20351 
20352     if (!Type->isFunctionType()) {
20353       S.Diag(E->getExprLoc(), diag::err_unknown_any_function)
20354         << VD << E->getSourceRange();
20355       return ExprError();
20356     }
20357     if (const FunctionProtoType *FT = Type->getAs<FunctionProtoType>()) {
20358       // We must match the FunctionDecl's type to the hack introduced in
20359       // RebuildUnknownAnyExpr::VisitCallExpr to vararg functions of unknown
20360       // type. See the lengthy commentary in that routine.
20361       QualType FDT = FD->getType();
20362       const FunctionType *FnType = FDT->castAs<FunctionType>();
20363       const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType);
20364       DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
20365       if (DRE && Proto && Proto->getParamTypes().empty() && Proto->isVariadic()) {
20366         SourceLocation Loc = FD->getLocation();
20367         FunctionDecl *NewFD = FunctionDecl::Create(
20368             S.Context, FD->getDeclContext(), Loc, Loc,
20369             FD->getNameInfo().getName(), DestType, FD->getTypeSourceInfo(),
20370             SC_None, S.getCurFPFeatures().isFPConstrained(),
20371             false /*isInlineSpecified*/, FD->hasPrototype(),
20372             /*ConstexprKind*/ ConstexprSpecKind::Unspecified);
20373 
20374         if (FD->getQualifier())
20375           NewFD->setQualifierInfo(FD->getQualifierLoc());
20376 
20377         SmallVector<ParmVarDecl*, 16> Params;
20378         for (const auto &AI : FT->param_types()) {
20379           ParmVarDecl *Param =
20380             S.BuildParmVarDeclForTypedef(FD, Loc, AI);
20381           Param->setScopeInfo(0, Params.size());
20382           Params.push_back(Param);
20383         }
20384         NewFD->setParams(Params);
20385         DRE->setDecl(NewFD);
20386         VD = DRE->getDecl();
20387       }
20388     }
20389 
20390     if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
20391       if (MD->isInstance()) {
20392         ValueKind = VK_PRValue;
20393         Type = S.Context.BoundMemberTy;
20394       }
20395 
20396     // Function references aren't l-values in C.
20397     if (!S.getLangOpts().CPlusPlus)
20398       ValueKind = VK_PRValue;
20399 
20400   //  - variables
20401   } else if (isa<VarDecl>(VD)) {
20402     if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) {
20403       Type = RefTy->getPointeeType();
20404     } else if (Type->isFunctionType()) {
20405       S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type)
20406         << VD << E->getSourceRange();
20407       return ExprError();
20408     }
20409 
20410   //  - nothing else
20411   } else {
20412     S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl)
20413       << VD << E->getSourceRange();
20414     return ExprError();
20415   }
20416 
20417   // Modifying the declaration like this is friendly to IR-gen but
20418   // also really dangerous.
20419   VD->setType(DestType);
20420   E->setType(Type);
20421   E->setValueKind(ValueKind);
20422   return E;
20423 }
20424 
20425 /// Check a cast of an unknown-any type.  We intentionally only
20426 /// trigger this for C-style casts.
20427 ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType,
20428                                      Expr *CastExpr, CastKind &CastKind,
20429                                      ExprValueKind &VK, CXXCastPath &Path) {
20430   // The type we're casting to must be either void or complete.
20431   if (!CastType->isVoidType() &&
20432       RequireCompleteType(TypeRange.getBegin(), CastType,
20433                           diag::err_typecheck_cast_to_incomplete))
20434     return ExprError();
20435 
20436   // Rewrite the casted expression from scratch.
20437   ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr);
20438   if (!result.isUsable()) return ExprError();
20439 
20440   CastExpr = result.get();
20441   VK = CastExpr->getValueKind();
20442   CastKind = CK_NoOp;
20443 
20444   return CastExpr;
20445 }
20446 
20447 ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) {
20448   return RebuildUnknownAnyExpr(*this, ToType).Visit(E);
20449 }
20450 
20451 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc,
20452                                     Expr *arg, QualType &paramType) {
20453   // If the syntactic form of the argument is not an explicit cast of
20454   // any sort, just do default argument promotion.
20455   ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens());
20456   if (!castArg) {
20457     ExprResult result = DefaultArgumentPromotion(arg);
20458     if (result.isInvalid()) return ExprError();
20459     paramType = result.get()->getType();
20460     return result;
20461   }
20462 
20463   // Otherwise, use the type that was written in the explicit cast.
20464   assert(!arg->hasPlaceholderType());
20465   paramType = castArg->getTypeAsWritten();
20466 
20467   // Copy-initialize a parameter of that type.
20468   InitializedEntity entity =
20469     InitializedEntity::InitializeParameter(Context, paramType,
20470                                            /*consumed*/ false);
20471   return PerformCopyInitialization(entity, callLoc, arg);
20472 }
20473 
20474 static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) {
20475   Expr *orig = E;
20476   unsigned diagID = diag::err_uncasted_use_of_unknown_any;
20477   while (true) {
20478     E = E->IgnoreParenImpCasts();
20479     if (CallExpr *call = dyn_cast<CallExpr>(E)) {
20480       E = call->getCallee();
20481       diagID = diag::err_uncasted_call_of_unknown_any;
20482     } else {
20483       break;
20484     }
20485   }
20486 
20487   SourceLocation loc;
20488   NamedDecl *d;
20489   if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) {
20490     loc = ref->getLocation();
20491     d = ref->getDecl();
20492   } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
20493     loc = mem->getMemberLoc();
20494     d = mem->getMemberDecl();
20495   } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) {
20496     diagID = diag::err_uncasted_call_of_unknown_any;
20497     loc = msg->getSelectorStartLoc();
20498     d = msg->getMethodDecl();
20499     if (!d) {
20500       S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method)
20501         << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector()
20502         << orig->getSourceRange();
20503       return ExprError();
20504     }
20505   } else {
20506     S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
20507       << E->getSourceRange();
20508     return ExprError();
20509   }
20510 
20511   S.Diag(loc, diagID) << d << orig->getSourceRange();
20512 
20513   // Never recoverable.
20514   return ExprError();
20515 }
20516 
20517 /// Check for operands with placeholder types and complain if found.
20518 /// Returns ExprError() if there was an error and no recovery was possible.
20519 ExprResult Sema::CheckPlaceholderExpr(Expr *E) {
20520   if (!Context.isDependenceAllowed()) {
20521     // C cannot handle TypoExpr nodes on either side of a binop because it
20522     // doesn't handle dependent types properly, so make sure any TypoExprs have
20523     // been dealt with before checking the operands.
20524     ExprResult Result = CorrectDelayedTyposInExpr(E);
20525     if (!Result.isUsable()) return ExprError();
20526     E = Result.get();
20527   }
20528 
20529   const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType();
20530   if (!placeholderType) return E;
20531 
20532   switch (placeholderType->getKind()) {
20533 
20534   // Overloaded expressions.
20535   case BuiltinType::Overload: {
20536     // Try to resolve a single function template specialization.
20537     // This is obligatory.
20538     ExprResult Result = E;
20539     if (ResolveAndFixSingleFunctionTemplateSpecialization(Result, false))
20540       return Result;
20541 
20542     // No guarantees that ResolveAndFixSingleFunctionTemplateSpecialization
20543     // leaves Result unchanged on failure.
20544     Result = E;
20545     if (resolveAndFixAddressOfSingleOverloadCandidate(Result))
20546       return Result;
20547 
20548     // If that failed, try to recover with a call.
20549     tryToRecoverWithCall(Result, PDiag(diag::err_ovl_unresolvable),
20550                          /*complain*/ true);
20551     return Result;
20552   }
20553 
20554   // Bound member functions.
20555   case BuiltinType::BoundMember: {
20556     ExprResult result = E;
20557     const Expr *BME = E->IgnoreParens();
20558     PartialDiagnostic PD = PDiag(diag::err_bound_member_function);
20559     // Try to give a nicer diagnostic if it is a bound member that we recognize.
20560     if (isa<CXXPseudoDestructorExpr>(BME)) {
20561       PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1;
20562     } else if (const auto *ME = dyn_cast<MemberExpr>(BME)) {
20563       if (ME->getMemberNameInfo().getName().getNameKind() ==
20564           DeclarationName::CXXDestructorName)
20565         PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0;
20566     }
20567     tryToRecoverWithCall(result, PD,
20568                          /*complain*/ true);
20569     return result;
20570   }
20571 
20572   // ARC unbridged casts.
20573   case BuiltinType::ARCUnbridgedCast: {
20574     Expr *realCast = stripARCUnbridgedCast(E);
20575     diagnoseARCUnbridgedCast(realCast);
20576     return realCast;
20577   }
20578 
20579   // Expressions of unknown type.
20580   case BuiltinType::UnknownAny:
20581     return diagnoseUnknownAnyExpr(*this, E);
20582 
20583   // Pseudo-objects.
20584   case BuiltinType::PseudoObject:
20585     return checkPseudoObjectRValue(E);
20586 
20587   case BuiltinType::BuiltinFn: {
20588     // Accept __noop without parens by implicitly converting it to a call expr.
20589     auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts());
20590     if (DRE) {
20591       auto *FD = cast<FunctionDecl>(DRE->getDecl());
20592       unsigned BuiltinID = FD->getBuiltinID();
20593       if (BuiltinID == Builtin::BI__noop) {
20594         E = ImpCastExprToType(E, Context.getPointerType(FD->getType()),
20595                               CK_BuiltinFnToFnPtr)
20596                 .get();
20597         return CallExpr::Create(Context, E, /*Args=*/{}, Context.IntTy,
20598                                 VK_PRValue, SourceLocation(),
20599                                 FPOptionsOverride());
20600       }
20601 
20602       if (Context.BuiltinInfo.isInStdNamespace(BuiltinID)) {
20603         // Any use of these other than a direct call is ill-formed as of C++20,
20604         // because they are not addressable functions. In earlier language
20605         // modes, warn and force an instantiation of the real body.
20606         Diag(E->getBeginLoc(),
20607              getLangOpts().CPlusPlus20
20608                  ? diag::err_use_of_unaddressable_function
20609                  : diag::warn_cxx20_compat_use_of_unaddressable_function);
20610         if (FD->isImplicitlyInstantiable()) {
20611           // Require a definition here because a normal attempt at
20612           // instantiation for a builtin will be ignored, and we won't try
20613           // again later. We assume that the definition of the template
20614           // precedes this use.
20615           InstantiateFunctionDefinition(E->getBeginLoc(), FD,
20616                                         /*Recursive=*/false,
20617                                         /*DefinitionRequired=*/true,
20618                                         /*AtEndOfTU=*/false);
20619         }
20620         // Produce a properly-typed reference to the function.
20621         CXXScopeSpec SS;
20622         SS.Adopt(DRE->getQualifierLoc());
20623         TemplateArgumentListInfo TemplateArgs;
20624         DRE->copyTemplateArgumentsInto(TemplateArgs);
20625         return BuildDeclRefExpr(
20626             FD, FD->getType(), VK_LValue, DRE->getNameInfo(),
20627             DRE->hasQualifier() ? &SS : nullptr, DRE->getFoundDecl(),
20628             DRE->getTemplateKeywordLoc(),
20629             DRE->hasExplicitTemplateArgs() ? &TemplateArgs : nullptr);
20630       }
20631     }
20632 
20633     Diag(E->getBeginLoc(), diag::err_builtin_fn_use);
20634     return ExprError();
20635   }
20636 
20637   case BuiltinType::IncompleteMatrixIdx:
20638     Diag(cast<MatrixSubscriptExpr>(E->IgnoreParens())
20639              ->getRowIdx()
20640              ->getBeginLoc(),
20641          diag::err_matrix_incomplete_index);
20642     return ExprError();
20643 
20644   // Expressions of unknown type.
20645   case BuiltinType::OMPArraySection:
20646     Diag(E->getBeginLoc(), diag::err_omp_array_section_use);
20647     return ExprError();
20648 
20649   // Expressions of unknown type.
20650   case BuiltinType::OMPArrayShaping:
20651     return ExprError(Diag(E->getBeginLoc(), diag::err_omp_array_shaping_use));
20652 
20653   case BuiltinType::OMPIterator:
20654     return ExprError(Diag(E->getBeginLoc(), diag::err_omp_iterator_use));
20655 
20656   // Everything else should be impossible.
20657 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
20658   case BuiltinType::Id:
20659 #include "clang/Basic/OpenCLImageTypes.def"
20660 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
20661   case BuiltinType::Id:
20662 #include "clang/Basic/OpenCLExtensionTypes.def"
20663 #define SVE_TYPE(Name, Id, SingletonId) \
20664   case BuiltinType::Id:
20665 #include "clang/Basic/AArch64SVEACLETypes.def"
20666 #define PPC_VECTOR_TYPE(Name, Id, Size) \
20667   case BuiltinType::Id:
20668 #include "clang/Basic/PPCTypes.def"
20669 #define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
20670 #include "clang/Basic/RISCVVTypes.def"
20671 #define BUILTIN_TYPE(Id, SingletonId) case BuiltinType::Id:
20672 #define PLACEHOLDER_TYPE(Id, SingletonId)
20673 #include "clang/AST/BuiltinTypes.def"
20674     break;
20675   }
20676 
20677   llvm_unreachable("invalid placeholder type!");
20678 }
20679 
20680 bool Sema::CheckCaseExpression(Expr *E) {
20681   if (E->isTypeDependent())
20682     return true;
20683   if (E->isValueDependent() || E->isIntegerConstantExpr(Context))
20684     return E->getType()->isIntegralOrEnumerationType();
20685   return false;
20686 }
20687 
20688 /// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals.
20689 ExprResult
20690 Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
20691   assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) &&
20692          "Unknown Objective-C Boolean value!");
20693   QualType BoolT = Context.ObjCBuiltinBoolTy;
20694   if (!Context.getBOOLDecl()) {
20695     LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc,
20696                         Sema::LookupOrdinaryName);
20697     if (LookupName(Result, getCurScope()) && Result.isSingleResult()) {
20698       NamedDecl *ND = Result.getFoundDecl();
20699       if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND))
20700         Context.setBOOLDecl(TD);
20701     }
20702   }
20703   if (Context.getBOOLDecl())
20704     BoolT = Context.getBOOLType();
20705   return new (Context)
20706       ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc);
20707 }
20708 
20709 ExprResult Sema::ActOnObjCAvailabilityCheckExpr(
20710     llvm::ArrayRef<AvailabilitySpec> AvailSpecs, SourceLocation AtLoc,
20711     SourceLocation RParen) {
20712   auto FindSpecVersion = [&](StringRef Platform) -> Optional<VersionTuple> {
20713     auto Spec = llvm::find_if(AvailSpecs, [&](const AvailabilitySpec &Spec) {
20714       return Spec.getPlatform() == Platform;
20715     });
20716     // Transcribe the "ios" availability check to "maccatalyst" when compiling
20717     // for "maccatalyst" if "maccatalyst" is not specified.
20718     if (Spec == AvailSpecs.end() && Platform == "maccatalyst") {
20719       Spec = llvm::find_if(AvailSpecs, [&](const AvailabilitySpec &Spec) {
20720         return Spec.getPlatform() == "ios";
20721       });
20722     }
20723     if (Spec == AvailSpecs.end())
20724       return None;
20725     return Spec->getVersion();
20726   };
20727 
20728   VersionTuple Version;
20729   if (auto MaybeVersion =
20730           FindSpecVersion(Context.getTargetInfo().getPlatformName()))
20731     Version = *MaybeVersion;
20732 
20733   // The use of `@available` in the enclosing context should be analyzed to
20734   // warn when it's used inappropriately (i.e. not if(@available)).
20735   if (FunctionScopeInfo *Context = getCurFunctionAvailabilityContext())
20736     Context->HasPotentialAvailabilityViolations = true;
20737 
20738   return new (Context)
20739       ObjCAvailabilityCheckExpr(Version, AtLoc, RParen, Context.BoolTy);
20740 }
20741 
20742 ExprResult Sema::CreateRecoveryExpr(SourceLocation Begin, SourceLocation End,
20743                                     ArrayRef<Expr *> SubExprs, QualType T) {
20744   if (!Context.getLangOpts().RecoveryAST)
20745     return ExprError();
20746 
20747   if (isSFINAEContext())
20748     return ExprError();
20749 
20750   if (T.isNull() || T->isUndeducedType() ||
20751       !Context.getLangOpts().RecoveryASTType)
20752     // We don't know the concrete type, fallback to dependent type.
20753     T = Context.DependentTy;
20754 
20755   return RecoveryExpr::Create(Context, T, Begin, End, SubExprs);
20756 }
20757