1 //===- SemaChecking.cpp - Extra Semantic Checking -------------------------===//
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 extra semantic analysis beyond what is enforced
10 //  by the C type system.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/AST/APValue.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/Attr.h"
17 #include "clang/AST/AttrIterator.h"
18 #include "clang/AST/CharUnits.h"
19 #include "clang/AST/Decl.h"
20 #include "clang/AST/DeclBase.h"
21 #include "clang/AST/DeclCXX.h"
22 #include "clang/AST/DeclObjC.h"
23 #include "clang/AST/DeclarationName.h"
24 #include "clang/AST/EvaluatedExprVisitor.h"
25 #include "clang/AST/Expr.h"
26 #include "clang/AST/ExprCXX.h"
27 #include "clang/AST/ExprObjC.h"
28 #include "clang/AST/ExprOpenMP.h"
29 #include "clang/AST/FormatString.h"
30 #include "clang/AST/NSAPI.h"
31 #include "clang/AST/NonTrivialTypeVisitor.h"
32 #include "clang/AST/OperationKinds.h"
33 #include "clang/AST/RecordLayout.h"
34 #include "clang/AST/Stmt.h"
35 #include "clang/AST/TemplateBase.h"
36 #include "clang/AST/Type.h"
37 #include "clang/AST/TypeLoc.h"
38 #include "clang/AST/UnresolvedSet.h"
39 #include "clang/Basic/AddressSpaces.h"
40 #include "clang/Basic/CharInfo.h"
41 #include "clang/Basic/Diagnostic.h"
42 #include "clang/Basic/IdentifierTable.h"
43 #include "clang/Basic/LLVM.h"
44 #include "clang/Basic/LangOptions.h"
45 #include "clang/Basic/OpenCLOptions.h"
46 #include "clang/Basic/OperatorKinds.h"
47 #include "clang/Basic/PartialDiagnostic.h"
48 #include "clang/Basic/SourceLocation.h"
49 #include "clang/Basic/SourceManager.h"
50 #include "clang/Basic/Specifiers.h"
51 #include "clang/Basic/SyncScope.h"
52 #include "clang/Basic/TargetBuiltins.h"
53 #include "clang/Basic/TargetCXXABI.h"
54 #include "clang/Basic/TargetInfo.h"
55 #include "clang/Basic/TypeTraits.h"
56 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
57 #include "clang/Sema/Initialization.h"
58 #include "clang/Sema/Lookup.h"
59 #include "clang/Sema/Ownership.h"
60 #include "clang/Sema/Scope.h"
61 #include "clang/Sema/ScopeInfo.h"
62 #include "clang/Sema/Sema.h"
63 #include "clang/Sema/SemaInternal.h"
64 #include "llvm/ADT/APFloat.h"
65 #include "llvm/ADT/APInt.h"
66 #include "llvm/ADT/APSInt.h"
67 #include "llvm/ADT/ArrayRef.h"
68 #include "llvm/ADT/DenseMap.h"
69 #include "llvm/ADT/FoldingSet.h"
70 #include "llvm/ADT/None.h"
71 #include "llvm/ADT/Optional.h"
72 #include "llvm/ADT/STLExtras.h"
73 #include "llvm/ADT/SmallBitVector.h"
74 #include "llvm/ADT/SmallPtrSet.h"
75 #include "llvm/ADT/SmallString.h"
76 #include "llvm/ADT/SmallVector.h"
77 #include "llvm/ADT/StringRef.h"
78 #include "llvm/ADT/StringSet.h"
79 #include "llvm/ADT/StringSwitch.h"
80 #include "llvm/ADT/Triple.h"
81 #include "llvm/Support/AtomicOrdering.h"
82 #include "llvm/Support/Casting.h"
83 #include "llvm/Support/Compiler.h"
84 #include "llvm/Support/ConvertUTF.h"
85 #include "llvm/Support/ErrorHandling.h"
86 #include "llvm/Support/Format.h"
87 #include "llvm/Support/Locale.h"
88 #include "llvm/Support/MathExtras.h"
89 #include "llvm/Support/SaveAndRestore.h"
90 #include "llvm/Support/raw_ostream.h"
91 #include <algorithm>
92 #include <bitset>
93 #include <cassert>
94 #include <cctype>
95 #include <cstddef>
96 #include <cstdint>
97 #include <functional>
98 #include <limits>
99 #include <string>
100 #include <tuple>
101 #include <utility>
102 
103 using namespace clang;
104 using namespace sema;
105 
106 SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
107                                                     unsigned ByteNo) const {
108   return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts,
109                                Context.getTargetInfo());
110 }
111 
112 /// Checks that a call expression's argument count is the desired number.
113 /// This is useful when doing custom type-checking.  Returns true on error.
114 static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
115   unsigned argCount = call->getNumArgs();
116   if (argCount == desiredArgCount) return false;
117 
118   if (argCount < desiredArgCount)
119     return S.Diag(call->getEndLoc(), diag::err_typecheck_call_too_few_args)
120            << 0 /*function call*/ << desiredArgCount << argCount
121            << call->getSourceRange();
122 
123   // Highlight all the excess arguments.
124   SourceRange range(call->getArg(desiredArgCount)->getBeginLoc(),
125                     call->getArg(argCount - 1)->getEndLoc());
126 
127   return S.Diag(range.getBegin(), diag::err_typecheck_call_too_many_args)
128     << 0 /*function call*/ << desiredArgCount << argCount
129     << call->getArg(1)->getSourceRange();
130 }
131 
132 /// Check that the first argument to __builtin_annotation is an integer
133 /// and the second argument is a non-wide string literal.
134 static bool SemaBuiltinAnnotation(Sema &S, CallExpr *TheCall) {
135   if (checkArgCount(S, TheCall, 2))
136     return true;
137 
138   // First argument should be an integer.
139   Expr *ValArg = TheCall->getArg(0);
140   QualType Ty = ValArg->getType();
141   if (!Ty->isIntegerType()) {
142     S.Diag(ValArg->getBeginLoc(), diag::err_builtin_annotation_first_arg)
143         << ValArg->getSourceRange();
144     return true;
145   }
146 
147   // Second argument should be a constant string.
148   Expr *StrArg = TheCall->getArg(1)->IgnoreParenCasts();
149   StringLiteral *Literal = dyn_cast<StringLiteral>(StrArg);
150   if (!Literal || !Literal->isAscii()) {
151     S.Diag(StrArg->getBeginLoc(), diag::err_builtin_annotation_second_arg)
152         << StrArg->getSourceRange();
153     return true;
154   }
155 
156   TheCall->setType(Ty);
157   return false;
158 }
159 
160 static bool SemaBuiltinMSVCAnnotation(Sema &S, CallExpr *TheCall) {
161   // We need at least one argument.
162   if (TheCall->getNumArgs() < 1) {
163     S.Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
164         << 0 << 1 << TheCall->getNumArgs()
165         << TheCall->getCallee()->getSourceRange();
166     return true;
167   }
168 
169   // All arguments should be wide string literals.
170   for (Expr *Arg : TheCall->arguments()) {
171     auto *Literal = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
172     if (!Literal || !Literal->isWide()) {
173       S.Diag(Arg->getBeginLoc(), diag::err_msvc_annotation_wide_str)
174           << Arg->getSourceRange();
175       return true;
176     }
177   }
178 
179   return false;
180 }
181 
182 /// Check that the argument to __builtin_addressof is a glvalue, and set the
183 /// result type to the corresponding pointer type.
184 static bool SemaBuiltinAddressof(Sema &S, CallExpr *TheCall) {
185   if (checkArgCount(S, TheCall, 1))
186     return true;
187 
188   ExprResult Arg(TheCall->getArg(0));
189   QualType ResultType = S.CheckAddressOfOperand(Arg, TheCall->getBeginLoc());
190   if (ResultType.isNull())
191     return true;
192 
193   TheCall->setArg(0, Arg.get());
194   TheCall->setType(ResultType);
195   return false;
196 }
197 
198 /// Check the number of arguments and set the result type to
199 /// the argument type.
200 static bool SemaBuiltinPreserveAI(Sema &S, CallExpr *TheCall) {
201   if (checkArgCount(S, TheCall, 1))
202     return true;
203 
204   TheCall->setType(TheCall->getArg(0)->getType());
205   return false;
206 }
207 
208 /// Check that the value argument for __builtin_is_aligned(value, alignment) and
209 /// __builtin_aligned_{up,down}(value, alignment) is an integer or a pointer
210 /// type (but not a function pointer) and that the alignment is a power-of-two.
211 static bool SemaBuiltinAlignment(Sema &S, CallExpr *TheCall, unsigned ID) {
212   if (checkArgCount(S, TheCall, 2))
213     return true;
214 
215   clang::Expr *Source = TheCall->getArg(0);
216   bool IsBooleanAlignBuiltin = ID == Builtin::BI__builtin_is_aligned;
217 
218   auto IsValidIntegerType = [](QualType Ty) {
219     return Ty->isIntegerType() && !Ty->isEnumeralType() && !Ty->isBooleanType();
220   };
221   QualType SrcTy = Source->getType();
222   // We should also be able to use it with arrays (but not functions!).
223   if (SrcTy->canDecayToPointerType() && SrcTy->isArrayType()) {
224     SrcTy = S.Context.getDecayedType(SrcTy);
225   }
226   if ((!SrcTy->isPointerType() && !IsValidIntegerType(SrcTy)) ||
227       SrcTy->isFunctionPointerType()) {
228     // FIXME: this is not quite the right error message since we don't allow
229     // floating point types, or member pointers.
230     S.Diag(Source->getExprLoc(), diag::err_typecheck_expect_scalar_operand)
231         << SrcTy;
232     return true;
233   }
234 
235   clang::Expr *AlignOp = TheCall->getArg(1);
236   if (!IsValidIntegerType(AlignOp->getType())) {
237     S.Diag(AlignOp->getExprLoc(), diag::err_typecheck_expect_int)
238         << AlignOp->getType();
239     return true;
240   }
241   Expr::EvalResult AlignResult;
242   unsigned MaxAlignmentBits = S.Context.getIntWidth(SrcTy) - 1;
243   // We can't check validity of alignment if it is value dependent.
244   if (!AlignOp->isValueDependent() &&
245       AlignOp->EvaluateAsInt(AlignResult, S.Context,
246                              Expr::SE_AllowSideEffects)) {
247     llvm::APSInt AlignValue = AlignResult.Val.getInt();
248     llvm::APSInt MaxValue(
249         llvm::APInt::getOneBitSet(MaxAlignmentBits + 1, MaxAlignmentBits));
250     if (AlignValue < 1) {
251       S.Diag(AlignOp->getExprLoc(), diag::err_alignment_too_small) << 1;
252       return true;
253     }
254     if (llvm::APSInt::compareValues(AlignValue, MaxValue) > 0) {
255       S.Diag(AlignOp->getExprLoc(), diag::err_alignment_too_big)
256           << toString(MaxValue, 10);
257       return true;
258     }
259     if (!AlignValue.isPowerOf2()) {
260       S.Diag(AlignOp->getExprLoc(), diag::err_alignment_not_power_of_two);
261       return true;
262     }
263     if (AlignValue == 1) {
264       S.Diag(AlignOp->getExprLoc(), diag::warn_alignment_builtin_useless)
265           << IsBooleanAlignBuiltin;
266     }
267   }
268 
269   ExprResult SrcArg = S.PerformCopyInitialization(
270       InitializedEntity::InitializeParameter(S.Context, SrcTy, false),
271       SourceLocation(), Source);
272   if (SrcArg.isInvalid())
273     return true;
274   TheCall->setArg(0, SrcArg.get());
275   ExprResult AlignArg =
276       S.PerformCopyInitialization(InitializedEntity::InitializeParameter(
277                                       S.Context, AlignOp->getType(), false),
278                                   SourceLocation(), AlignOp);
279   if (AlignArg.isInvalid())
280     return true;
281   TheCall->setArg(1, AlignArg.get());
282   // For align_up/align_down, the return type is the same as the (potentially
283   // decayed) argument type including qualifiers. For is_aligned(), the result
284   // is always bool.
285   TheCall->setType(IsBooleanAlignBuiltin ? S.Context.BoolTy : SrcTy);
286   return false;
287 }
288 
289 static bool SemaBuiltinOverflow(Sema &S, CallExpr *TheCall,
290                                 unsigned BuiltinID) {
291   if (checkArgCount(S, TheCall, 3))
292     return true;
293 
294   // First two arguments should be integers.
295   for (unsigned I = 0; I < 2; ++I) {
296     ExprResult Arg = S.DefaultFunctionArrayLvalueConversion(TheCall->getArg(I));
297     if (Arg.isInvalid()) return true;
298     TheCall->setArg(I, Arg.get());
299 
300     QualType Ty = Arg.get()->getType();
301     if (!Ty->isIntegerType()) {
302       S.Diag(Arg.get()->getBeginLoc(), diag::err_overflow_builtin_must_be_int)
303           << Ty << Arg.get()->getSourceRange();
304       return true;
305     }
306   }
307 
308   // Third argument should be a pointer to a non-const integer.
309   // IRGen correctly handles volatile, restrict, and address spaces, and
310   // the other qualifiers aren't possible.
311   {
312     ExprResult Arg = S.DefaultFunctionArrayLvalueConversion(TheCall->getArg(2));
313     if (Arg.isInvalid()) return true;
314     TheCall->setArg(2, Arg.get());
315 
316     QualType Ty = Arg.get()->getType();
317     const auto *PtrTy = Ty->getAs<PointerType>();
318     if (!PtrTy ||
319         !PtrTy->getPointeeType()->isIntegerType() ||
320         PtrTy->getPointeeType().isConstQualified()) {
321       S.Diag(Arg.get()->getBeginLoc(),
322              diag::err_overflow_builtin_must_be_ptr_int)
323         << Ty << Arg.get()->getSourceRange();
324       return true;
325     }
326   }
327 
328   // Disallow signed ExtIntType args larger than 128 bits to mul function until
329   // we improve backend support.
330   if (BuiltinID == Builtin::BI__builtin_mul_overflow) {
331     for (unsigned I = 0; I < 3; ++I) {
332       const auto Arg = TheCall->getArg(I);
333       // Third argument will be a pointer.
334       auto Ty = I < 2 ? Arg->getType() : Arg->getType()->getPointeeType();
335       if (Ty->isExtIntType() && Ty->isSignedIntegerType() &&
336           S.getASTContext().getIntWidth(Ty) > 128)
337         return S.Diag(Arg->getBeginLoc(),
338                       diag::err_overflow_builtin_ext_int_max_size)
339                << 128;
340     }
341   }
342 
343   return false;
344 }
345 
346 static bool SemaBuiltinCallWithStaticChain(Sema &S, CallExpr *BuiltinCall) {
347   if (checkArgCount(S, BuiltinCall, 2))
348     return true;
349 
350   SourceLocation BuiltinLoc = BuiltinCall->getBeginLoc();
351   Expr *Builtin = BuiltinCall->getCallee()->IgnoreImpCasts();
352   Expr *Call = BuiltinCall->getArg(0);
353   Expr *Chain = BuiltinCall->getArg(1);
354 
355   if (Call->getStmtClass() != Stmt::CallExprClass) {
356     S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_not_call)
357         << Call->getSourceRange();
358     return true;
359   }
360 
361   auto CE = cast<CallExpr>(Call);
362   if (CE->getCallee()->getType()->isBlockPointerType()) {
363     S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_block_call)
364         << Call->getSourceRange();
365     return true;
366   }
367 
368   const Decl *TargetDecl = CE->getCalleeDecl();
369   if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl))
370     if (FD->getBuiltinID()) {
371       S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_builtin_call)
372           << Call->getSourceRange();
373       return true;
374     }
375 
376   if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens())) {
377     S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_pdtor_call)
378         << Call->getSourceRange();
379     return true;
380   }
381 
382   ExprResult ChainResult = S.UsualUnaryConversions(Chain);
383   if (ChainResult.isInvalid())
384     return true;
385   if (!ChainResult.get()->getType()->isPointerType()) {
386     S.Diag(BuiltinLoc, diag::err_second_argument_to_cwsc_not_pointer)
387         << Chain->getSourceRange();
388     return true;
389   }
390 
391   QualType ReturnTy = CE->getCallReturnType(S.Context);
392   QualType ArgTys[2] = { ReturnTy, ChainResult.get()->getType() };
393   QualType BuiltinTy = S.Context.getFunctionType(
394       ReturnTy, ArgTys, FunctionProtoType::ExtProtoInfo());
395   QualType BuiltinPtrTy = S.Context.getPointerType(BuiltinTy);
396 
397   Builtin =
398       S.ImpCastExprToType(Builtin, BuiltinPtrTy, CK_BuiltinFnToFnPtr).get();
399 
400   BuiltinCall->setType(CE->getType());
401   BuiltinCall->setValueKind(CE->getValueKind());
402   BuiltinCall->setObjectKind(CE->getObjectKind());
403   BuiltinCall->setCallee(Builtin);
404   BuiltinCall->setArg(1, ChainResult.get());
405 
406   return false;
407 }
408 
409 namespace {
410 
411 class EstimateSizeFormatHandler
412     : public analyze_format_string::FormatStringHandler {
413   size_t Size;
414 
415 public:
416   EstimateSizeFormatHandler(StringRef Format)
417       : Size(std::min(Format.find(0), Format.size()) +
418              1 /* null byte always written by sprintf */) {}
419 
420   bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
421                              const char *, unsigned SpecifierLen) override {
422 
423     const size_t FieldWidth = computeFieldWidth(FS);
424     const size_t Precision = computePrecision(FS);
425 
426     // The actual format.
427     switch (FS.getConversionSpecifier().getKind()) {
428     // Just a char.
429     case analyze_format_string::ConversionSpecifier::cArg:
430     case analyze_format_string::ConversionSpecifier::CArg:
431       Size += std::max(FieldWidth, (size_t)1);
432       break;
433     // Just an integer.
434     case analyze_format_string::ConversionSpecifier::dArg:
435     case analyze_format_string::ConversionSpecifier::DArg:
436     case analyze_format_string::ConversionSpecifier::iArg:
437     case analyze_format_string::ConversionSpecifier::oArg:
438     case analyze_format_string::ConversionSpecifier::OArg:
439     case analyze_format_string::ConversionSpecifier::uArg:
440     case analyze_format_string::ConversionSpecifier::UArg:
441     case analyze_format_string::ConversionSpecifier::xArg:
442     case analyze_format_string::ConversionSpecifier::XArg:
443       Size += std::max(FieldWidth, Precision);
444       break;
445 
446     // %g style conversion switches between %f or %e style dynamically.
447     // %f always takes less space, so default to it.
448     case analyze_format_string::ConversionSpecifier::gArg:
449     case analyze_format_string::ConversionSpecifier::GArg:
450 
451     // Floating point number in the form '[+]ddd.ddd'.
452     case analyze_format_string::ConversionSpecifier::fArg:
453     case analyze_format_string::ConversionSpecifier::FArg:
454       Size += std::max(FieldWidth, 1 /* integer part */ +
455                                        (Precision ? 1 + Precision
456                                                   : 0) /* period + decimal */);
457       break;
458 
459     // Floating point number in the form '[-]d.ddde[+-]dd'.
460     case analyze_format_string::ConversionSpecifier::eArg:
461     case analyze_format_string::ConversionSpecifier::EArg:
462       Size +=
463           std::max(FieldWidth,
464                    1 /* integer part */ +
465                        (Precision ? 1 + Precision : 0) /* period + decimal */ +
466                        1 /* e or E letter */ + 2 /* exponent */);
467       break;
468 
469     // Floating point number in the form '[-]0xh.hhhhp±dd'.
470     case analyze_format_string::ConversionSpecifier::aArg:
471     case analyze_format_string::ConversionSpecifier::AArg:
472       Size +=
473           std::max(FieldWidth,
474                    2 /* 0x */ + 1 /* integer part */ +
475                        (Precision ? 1 + Precision : 0) /* period + decimal */ +
476                        1 /* p or P letter */ + 1 /* + or - */ + 1 /* value */);
477       break;
478 
479     // Just a string.
480     case analyze_format_string::ConversionSpecifier::sArg:
481     case analyze_format_string::ConversionSpecifier::SArg:
482       Size += FieldWidth;
483       break;
484 
485     // Just a pointer in the form '0xddd'.
486     case analyze_format_string::ConversionSpecifier::pArg:
487       Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision);
488       break;
489 
490     // A plain percent.
491     case analyze_format_string::ConversionSpecifier::PercentArg:
492       Size += 1;
493       break;
494 
495     default:
496       break;
497     }
498 
499     Size += FS.hasPlusPrefix() || FS.hasSpacePrefix();
500 
501     if (FS.hasAlternativeForm()) {
502       switch (FS.getConversionSpecifier().getKind()) {
503       default:
504         break;
505       // Force a leading '0'.
506       case analyze_format_string::ConversionSpecifier::oArg:
507         Size += 1;
508         break;
509       // Force a leading '0x'.
510       case analyze_format_string::ConversionSpecifier::xArg:
511       case analyze_format_string::ConversionSpecifier::XArg:
512         Size += 2;
513         break;
514       // Force a period '.' before decimal, even if precision is 0.
515       case analyze_format_string::ConversionSpecifier::aArg:
516       case analyze_format_string::ConversionSpecifier::AArg:
517       case analyze_format_string::ConversionSpecifier::eArg:
518       case analyze_format_string::ConversionSpecifier::EArg:
519       case analyze_format_string::ConversionSpecifier::fArg:
520       case analyze_format_string::ConversionSpecifier::FArg:
521       case analyze_format_string::ConversionSpecifier::gArg:
522       case analyze_format_string::ConversionSpecifier::GArg:
523         Size += (Precision ? 0 : 1);
524         break;
525       }
526     }
527     assert(SpecifierLen <= Size && "no underflow");
528     Size -= SpecifierLen;
529     return true;
530   }
531 
532   size_t getSizeLowerBound() const { return Size; }
533 
534 private:
535   static size_t computeFieldWidth(const analyze_printf::PrintfSpecifier &FS) {
536     const analyze_format_string::OptionalAmount &FW = FS.getFieldWidth();
537     size_t FieldWidth = 0;
538     if (FW.getHowSpecified() == analyze_format_string::OptionalAmount::Constant)
539       FieldWidth = FW.getConstantAmount();
540     return FieldWidth;
541   }
542 
543   static size_t computePrecision(const analyze_printf::PrintfSpecifier &FS) {
544     const analyze_format_string::OptionalAmount &FW = FS.getPrecision();
545     size_t Precision = 0;
546 
547     // See man 3 printf for default precision value based on the specifier.
548     switch (FW.getHowSpecified()) {
549     case analyze_format_string::OptionalAmount::NotSpecified:
550       switch (FS.getConversionSpecifier().getKind()) {
551       default:
552         break;
553       case analyze_format_string::ConversionSpecifier::dArg: // %d
554       case analyze_format_string::ConversionSpecifier::DArg: // %D
555       case analyze_format_string::ConversionSpecifier::iArg: // %i
556         Precision = 1;
557         break;
558       case analyze_format_string::ConversionSpecifier::oArg: // %d
559       case analyze_format_string::ConversionSpecifier::OArg: // %D
560       case analyze_format_string::ConversionSpecifier::uArg: // %d
561       case analyze_format_string::ConversionSpecifier::UArg: // %D
562       case analyze_format_string::ConversionSpecifier::xArg: // %d
563       case analyze_format_string::ConversionSpecifier::XArg: // %D
564         Precision = 1;
565         break;
566       case analyze_format_string::ConversionSpecifier::fArg: // %f
567       case analyze_format_string::ConversionSpecifier::FArg: // %F
568       case analyze_format_string::ConversionSpecifier::eArg: // %e
569       case analyze_format_string::ConversionSpecifier::EArg: // %E
570       case analyze_format_string::ConversionSpecifier::gArg: // %g
571       case analyze_format_string::ConversionSpecifier::GArg: // %G
572         Precision = 6;
573         break;
574       case analyze_format_string::ConversionSpecifier::pArg: // %d
575         Precision = 1;
576         break;
577       }
578       break;
579     case analyze_format_string::OptionalAmount::Constant:
580       Precision = FW.getConstantAmount();
581       break;
582     default:
583       break;
584     }
585     return Precision;
586   }
587 };
588 
589 } // namespace
590 
591 void Sema::checkFortifiedBuiltinMemoryFunction(FunctionDecl *FD,
592                                                CallExpr *TheCall) {
593   if (TheCall->isValueDependent() || TheCall->isTypeDependent() ||
594       isConstantEvaluated())
595     return;
596 
597   unsigned BuiltinID = FD->getBuiltinID(/*ConsiderWrappers=*/true);
598   if (!BuiltinID)
599     return;
600 
601   const TargetInfo &TI = getASTContext().getTargetInfo();
602   unsigned SizeTypeWidth = TI.getTypeWidth(TI.getSizeType());
603 
604   auto ComputeExplicitObjectSizeArgument =
605       [&](unsigned Index) -> Optional<llvm::APSInt> {
606     Expr::EvalResult Result;
607     Expr *SizeArg = TheCall->getArg(Index);
608     if (!SizeArg->EvaluateAsInt(Result, getASTContext()))
609       return llvm::None;
610     return Result.Val.getInt();
611   };
612 
613   auto ComputeSizeArgument = [&](unsigned Index) -> Optional<llvm::APSInt> {
614     // If the parameter has a pass_object_size attribute, then we should use its
615     // (potentially) more strict checking mode. Otherwise, conservatively assume
616     // type 0.
617     int BOSType = 0;
618     if (const auto *POS =
619             FD->getParamDecl(Index)->getAttr<PassObjectSizeAttr>())
620       BOSType = POS->getType();
621 
622     const Expr *ObjArg = TheCall->getArg(Index);
623     uint64_t Result;
624     if (!ObjArg->tryEvaluateObjectSize(Result, getASTContext(), BOSType))
625       return llvm::None;
626 
627     // Get the object size in the target's size_t width.
628     return llvm::APSInt::getUnsigned(Result).extOrTrunc(SizeTypeWidth);
629   };
630 
631   auto ComputeStrLenArgument = [&](unsigned Index) -> Optional<llvm::APSInt> {
632     Expr *ObjArg = TheCall->getArg(Index);
633     uint64_t Result;
634     if (!ObjArg->tryEvaluateStrLen(Result, getASTContext()))
635       return llvm::None;
636     // Add 1 for null byte.
637     return llvm::APSInt::getUnsigned(Result + 1).extOrTrunc(SizeTypeWidth);
638   };
639 
640   Optional<llvm::APSInt> SourceSize;
641   Optional<llvm::APSInt> DestinationSize;
642   unsigned DiagID = 0;
643   bool IsChkVariant = false;
644 
645   switch (BuiltinID) {
646   default:
647     return;
648   case Builtin::BI__builtin_strcpy:
649   case Builtin::BIstrcpy: {
650     DiagID = diag::warn_fortify_strlen_overflow;
651     SourceSize = ComputeStrLenArgument(1);
652     DestinationSize = ComputeSizeArgument(0);
653     break;
654   }
655 
656   case Builtin::BI__builtin___strcpy_chk: {
657     DiagID = diag::warn_fortify_strlen_overflow;
658     SourceSize = ComputeStrLenArgument(1);
659     DestinationSize = ComputeExplicitObjectSizeArgument(2);
660     IsChkVariant = true;
661     break;
662   }
663 
664   case Builtin::BIsprintf:
665   case Builtin::BI__builtin___sprintf_chk: {
666     size_t FormatIndex = BuiltinID == Builtin::BIsprintf ? 1 : 3;
667     auto *FormatExpr = TheCall->getArg(FormatIndex)->IgnoreParenImpCasts();
668 
669     if (auto *Format = dyn_cast<StringLiteral>(FormatExpr)) {
670 
671       if (!Format->isAscii() && !Format->isUTF8())
672         return;
673 
674       StringRef FormatStrRef = Format->getString();
675       EstimateSizeFormatHandler H(FormatStrRef);
676       const char *FormatBytes = FormatStrRef.data();
677       const ConstantArrayType *T =
678           Context.getAsConstantArrayType(Format->getType());
679       assert(T && "String literal not of constant array type!");
680       size_t TypeSize = T->getSize().getZExtValue();
681 
682       // In case there's a null byte somewhere.
683       size_t StrLen =
684           std::min(std::max(TypeSize, size_t(1)) - 1, FormatStrRef.find(0));
685       if (!analyze_format_string::ParsePrintfString(
686               H, FormatBytes, FormatBytes + StrLen, getLangOpts(),
687               Context.getTargetInfo(), false)) {
688         DiagID = diag::warn_fortify_source_format_overflow;
689         SourceSize = llvm::APSInt::getUnsigned(H.getSizeLowerBound())
690                          .extOrTrunc(SizeTypeWidth);
691         if (BuiltinID == Builtin::BI__builtin___sprintf_chk) {
692           DestinationSize = ComputeExplicitObjectSizeArgument(2);
693           IsChkVariant = true;
694         } else {
695           DestinationSize = ComputeSizeArgument(0);
696         }
697         break;
698       }
699     }
700     return;
701   }
702   case Builtin::BI__builtin___memcpy_chk:
703   case Builtin::BI__builtin___memmove_chk:
704   case Builtin::BI__builtin___memset_chk:
705   case Builtin::BI__builtin___strlcat_chk:
706   case Builtin::BI__builtin___strlcpy_chk:
707   case Builtin::BI__builtin___strncat_chk:
708   case Builtin::BI__builtin___strncpy_chk:
709   case Builtin::BI__builtin___stpncpy_chk:
710   case Builtin::BI__builtin___memccpy_chk:
711   case Builtin::BI__builtin___mempcpy_chk: {
712     DiagID = diag::warn_builtin_chk_overflow;
713     SourceSize = ComputeExplicitObjectSizeArgument(TheCall->getNumArgs() - 2);
714     DestinationSize =
715         ComputeExplicitObjectSizeArgument(TheCall->getNumArgs() - 1);
716     IsChkVariant = true;
717     break;
718   }
719 
720   case Builtin::BI__builtin___snprintf_chk:
721   case Builtin::BI__builtin___vsnprintf_chk: {
722     DiagID = diag::warn_builtin_chk_overflow;
723     SourceSize = ComputeExplicitObjectSizeArgument(1);
724     DestinationSize = ComputeExplicitObjectSizeArgument(3);
725     IsChkVariant = true;
726     break;
727   }
728 
729   case Builtin::BIstrncat:
730   case Builtin::BI__builtin_strncat:
731   case Builtin::BIstrncpy:
732   case Builtin::BI__builtin_strncpy:
733   case Builtin::BIstpncpy:
734   case Builtin::BI__builtin_stpncpy: {
735     // Whether these functions overflow depends on the runtime strlen of the
736     // string, not just the buffer size, so emitting the "always overflow"
737     // diagnostic isn't quite right. We should still diagnose passing a buffer
738     // size larger than the destination buffer though; this is a runtime abort
739     // in _FORTIFY_SOURCE mode, and is quite suspicious otherwise.
740     DiagID = diag::warn_fortify_source_size_mismatch;
741     SourceSize = ComputeExplicitObjectSizeArgument(TheCall->getNumArgs() - 1);
742     DestinationSize = ComputeSizeArgument(0);
743     break;
744   }
745 
746   case Builtin::BImemcpy:
747   case Builtin::BI__builtin_memcpy:
748   case Builtin::BImemmove:
749   case Builtin::BI__builtin_memmove:
750   case Builtin::BImemset:
751   case Builtin::BI__builtin_memset:
752   case Builtin::BImempcpy:
753   case Builtin::BI__builtin_mempcpy: {
754     DiagID = diag::warn_fortify_source_overflow;
755     SourceSize = ComputeExplicitObjectSizeArgument(TheCall->getNumArgs() - 1);
756     DestinationSize = ComputeSizeArgument(0);
757     break;
758   }
759   case Builtin::BIsnprintf:
760   case Builtin::BI__builtin_snprintf:
761   case Builtin::BIvsnprintf:
762   case Builtin::BI__builtin_vsnprintf: {
763     DiagID = diag::warn_fortify_source_size_mismatch;
764     SourceSize = ComputeExplicitObjectSizeArgument(1);
765     DestinationSize = ComputeSizeArgument(0);
766     break;
767   }
768   }
769 
770   if (!SourceSize || !DestinationSize ||
771       SourceSize.getValue().ule(DestinationSize.getValue()))
772     return;
773 
774   StringRef FunctionName = getASTContext().BuiltinInfo.getName(BuiltinID);
775   // Skim off the details of whichever builtin was called to produce a better
776   // diagnostic, as it's unlikely that the user wrote the __builtin explicitly.
777   if (IsChkVariant) {
778     FunctionName = FunctionName.drop_front(std::strlen("__builtin___"));
779     FunctionName = FunctionName.drop_back(std::strlen("_chk"));
780   } else if (FunctionName.startswith("__builtin_")) {
781     FunctionName = FunctionName.drop_front(std::strlen("__builtin_"));
782   }
783 
784   SmallString<16> DestinationStr;
785   SmallString<16> SourceStr;
786   DestinationSize->toString(DestinationStr, /*Radix=*/10);
787   SourceSize->toString(SourceStr, /*Radix=*/10);
788   DiagRuntimeBehavior(TheCall->getBeginLoc(), TheCall,
789                       PDiag(DiagID)
790                           << FunctionName << DestinationStr << SourceStr);
791 }
792 
793 static bool SemaBuiltinSEHScopeCheck(Sema &SemaRef, CallExpr *TheCall,
794                                      Scope::ScopeFlags NeededScopeFlags,
795                                      unsigned DiagID) {
796   // Scopes aren't available during instantiation. Fortunately, builtin
797   // functions cannot be template args so they cannot be formed through template
798   // instantiation. Therefore checking once during the parse is sufficient.
799   if (SemaRef.inTemplateInstantiation())
800     return false;
801 
802   Scope *S = SemaRef.getCurScope();
803   while (S && !S->isSEHExceptScope())
804     S = S->getParent();
805   if (!S || !(S->getFlags() & NeededScopeFlags)) {
806     auto *DRE = cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
807     SemaRef.Diag(TheCall->getExprLoc(), DiagID)
808         << DRE->getDecl()->getIdentifier();
809     return true;
810   }
811 
812   return false;
813 }
814 
815 static inline bool isBlockPointer(Expr *Arg) {
816   return Arg->getType()->isBlockPointerType();
817 }
818 
819 /// OpenCL C v2.0, s6.13.17.2 - Checks that the block parameters are all local
820 /// void*, which is a requirement of device side enqueue.
821 static bool checkOpenCLBlockArgs(Sema &S, Expr *BlockArg) {
822   const BlockPointerType *BPT =
823       cast<BlockPointerType>(BlockArg->getType().getCanonicalType());
824   ArrayRef<QualType> Params =
825       BPT->getPointeeType()->castAs<FunctionProtoType>()->getParamTypes();
826   unsigned ArgCounter = 0;
827   bool IllegalParams = false;
828   // Iterate through the block parameters until either one is found that is not
829   // a local void*, or the block is valid.
830   for (ArrayRef<QualType>::iterator I = Params.begin(), E = Params.end();
831        I != E; ++I, ++ArgCounter) {
832     if (!(*I)->isPointerType() || !(*I)->getPointeeType()->isVoidType() ||
833         (*I)->getPointeeType().getQualifiers().getAddressSpace() !=
834             LangAS::opencl_local) {
835       // Get the location of the error. If a block literal has been passed
836       // (BlockExpr) then we can point straight to the offending argument,
837       // else we just point to the variable reference.
838       SourceLocation ErrorLoc;
839       if (isa<BlockExpr>(BlockArg)) {
840         BlockDecl *BD = cast<BlockExpr>(BlockArg)->getBlockDecl();
841         ErrorLoc = BD->getParamDecl(ArgCounter)->getBeginLoc();
842       } else if (isa<DeclRefExpr>(BlockArg)) {
843         ErrorLoc = cast<DeclRefExpr>(BlockArg)->getBeginLoc();
844       }
845       S.Diag(ErrorLoc,
846              diag::err_opencl_enqueue_kernel_blocks_non_local_void_args);
847       IllegalParams = true;
848     }
849   }
850 
851   return IllegalParams;
852 }
853 
854 static bool checkOpenCLSubgroupExt(Sema &S, CallExpr *Call) {
855   if (!S.getOpenCLOptions().isSupported("cl_khr_subgroups", S.getLangOpts())) {
856     S.Diag(Call->getBeginLoc(), diag::err_opencl_requires_extension)
857         << 1 << Call->getDirectCallee() << "cl_khr_subgroups";
858     return true;
859   }
860   return false;
861 }
862 
863 static bool SemaOpenCLBuiltinNDRangeAndBlock(Sema &S, CallExpr *TheCall) {
864   if (checkArgCount(S, TheCall, 2))
865     return true;
866 
867   if (checkOpenCLSubgroupExt(S, TheCall))
868     return true;
869 
870   // First argument is an ndrange_t type.
871   Expr *NDRangeArg = TheCall->getArg(0);
872   if (NDRangeArg->getType().getUnqualifiedType().getAsString() != "ndrange_t") {
873     S.Diag(NDRangeArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
874         << TheCall->getDirectCallee() << "'ndrange_t'";
875     return true;
876   }
877 
878   Expr *BlockArg = TheCall->getArg(1);
879   if (!isBlockPointer(BlockArg)) {
880     S.Diag(BlockArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
881         << TheCall->getDirectCallee() << "block";
882     return true;
883   }
884   return checkOpenCLBlockArgs(S, BlockArg);
885 }
886 
887 /// OpenCL C v2.0, s6.13.17.6 - Check the argument to the
888 /// get_kernel_work_group_size
889 /// and get_kernel_preferred_work_group_size_multiple builtin functions.
890 static bool SemaOpenCLBuiltinKernelWorkGroupSize(Sema &S, CallExpr *TheCall) {
891   if (checkArgCount(S, TheCall, 1))
892     return true;
893 
894   Expr *BlockArg = TheCall->getArg(0);
895   if (!isBlockPointer(BlockArg)) {
896     S.Diag(BlockArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
897         << TheCall->getDirectCallee() << "block";
898     return true;
899   }
900   return checkOpenCLBlockArgs(S, BlockArg);
901 }
902 
903 /// Diagnose integer type and any valid implicit conversion to it.
904 static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E,
905                                       const QualType &IntType);
906 
907 static bool checkOpenCLEnqueueLocalSizeArgs(Sema &S, CallExpr *TheCall,
908                                             unsigned Start, unsigned End) {
909   bool IllegalParams = false;
910   for (unsigned I = Start; I <= End; ++I)
911     IllegalParams |= checkOpenCLEnqueueIntType(S, TheCall->getArg(I),
912                                               S.Context.getSizeType());
913   return IllegalParams;
914 }
915 
916 /// OpenCL v2.0, s6.13.17.1 - Check that sizes are provided for all
917 /// 'local void*' parameter of passed block.
918 static bool checkOpenCLEnqueueVariadicArgs(Sema &S, CallExpr *TheCall,
919                                            Expr *BlockArg,
920                                            unsigned NumNonVarArgs) {
921   const BlockPointerType *BPT =
922       cast<BlockPointerType>(BlockArg->getType().getCanonicalType());
923   unsigned NumBlockParams =
924       BPT->getPointeeType()->castAs<FunctionProtoType>()->getNumParams();
925   unsigned TotalNumArgs = TheCall->getNumArgs();
926 
927   // For each argument passed to the block, a corresponding uint needs to
928   // be passed to describe the size of the local memory.
929   if (TotalNumArgs != NumBlockParams + NumNonVarArgs) {
930     S.Diag(TheCall->getBeginLoc(),
931            diag::err_opencl_enqueue_kernel_local_size_args);
932     return true;
933   }
934 
935   // Check that the sizes of the local memory are specified by integers.
936   return checkOpenCLEnqueueLocalSizeArgs(S, TheCall, NumNonVarArgs,
937                                          TotalNumArgs - 1);
938 }
939 
940 /// OpenCL C v2.0, s6.13.17 - Enqueue kernel function contains four different
941 /// overload formats specified in Table 6.13.17.1.
942 /// int enqueue_kernel(queue_t queue,
943 ///                    kernel_enqueue_flags_t flags,
944 ///                    const ndrange_t ndrange,
945 ///                    void (^block)(void))
946 /// int enqueue_kernel(queue_t queue,
947 ///                    kernel_enqueue_flags_t flags,
948 ///                    const ndrange_t ndrange,
949 ///                    uint num_events_in_wait_list,
950 ///                    clk_event_t *event_wait_list,
951 ///                    clk_event_t *event_ret,
952 ///                    void (^block)(void))
953 /// int enqueue_kernel(queue_t queue,
954 ///                    kernel_enqueue_flags_t flags,
955 ///                    const ndrange_t ndrange,
956 ///                    void (^block)(local void*, ...),
957 ///                    uint size0, ...)
958 /// int enqueue_kernel(queue_t queue,
959 ///                    kernel_enqueue_flags_t flags,
960 ///                    const ndrange_t ndrange,
961 ///                    uint num_events_in_wait_list,
962 ///                    clk_event_t *event_wait_list,
963 ///                    clk_event_t *event_ret,
964 ///                    void (^block)(local void*, ...),
965 ///                    uint size0, ...)
966 static bool SemaOpenCLBuiltinEnqueueKernel(Sema &S, CallExpr *TheCall) {
967   unsigned NumArgs = TheCall->getNumArgs();
968 
969   if (NumArgs < 4) {
970     S.Diag(TheCall->getBeginLoc(),
971            diag::err_typecheck_call_too_few_args_at_least)
972         << 0 << 4 << NumArgs;
973     return true;
974   }
975 
976   Expr *Arg0 = TheCall->getArg(0);
977   Expr *Arg1 = TheCall->getArg(1);
978   Expr *Arg2 = TheCall->getArg(2);
979   Expr *Arg3 = TheCall->getArg(3);
980 
981   // First argument always needs to be a queue_t type.
982   if (!Arg0->getType()->isQueueT()) {
983     S.Diag(TheCall->getArg(0)->getBeginLoc(),
984            diag::err_opencl_builtin_expected_type)
985         << TheCall->getDirectCallee() << S.Context.OCLQueueTy;
986     return true;
987   }
988 
989   // Second argument always needs to be a kernel_enqueue_flags_t enum value.
990   if (!Arg1->getType()->isIntegerType()) {
991     S.Diag(TheCall->getArg(1)->getBeginLoc(),
992            diag::err_opencl_builtin_expected_type)
993         << TheCall->getDirectCallee() << "'kernel_enqueue_flags_t' (i.e. uint)";
994     return true;
995   }
996 
997   // Third argument is always an ndrange_t type.
998   if (Arg2->getType().getUnqualifiedType().getAsString() != "ndrange_t") {
999     S.Diag(TheCall->getArg(2)->getBeginLoc(),
1000            diag::err_opencl_builtin_expected_type)
1001         << TheCall->getDirectCallee() << "'ndrange_t'";
1002     return true;
1003   }
1004 
1005   // With four arguments, there is only one form that the function could be
1006   // called in: no events and no variable arguments.
1007   if (NumArgs == 4) {
1008     // check that the last argument is the right block type.
1009     if (!isBlockPointer(Arg3)) {
1010       S.Diag(Arg3->getBeginLoc(), diag::err_opencl_builtin_expected_type)
1011           << TheCall->getDirectCallee() << "block";
1012       return true;
1013     }
1014     // we have a block type, check the prototype
1015     const BlockPointerType *BPT =
1016         cast<BlockPointerType>(Arg3->getType().getCanonicalType());
1017     if (BPT->getPointeeType()->castAs<FunctionProtoType>()->getNumParams() > 0) {
1018       S.Diag(Arg3->getBeginLoc(),
1019              diag::err_opencl_enqueue_kernel_blocks_no_args);
1020       return true;
1021     }
1022     return false;
1023   }
1024   // we can have block + varargs.
1025   if (isBlockPointer(Arg3))
1026     return (checkOpenCLBlockArgs(S, Arg3) ||
1027             checkOpenCLEnqueueVariadicArgs(S, TheCall, Arg3, 4));
1028   // last two cases with either exactly 7 args or 7 args and varargs.
1029   if (NumArgs >= 7) {
1030     // check common block argument.
1031     Expr *Arg6 = TheCall->getArg(6);
1032     if (!isBlockPointer(Arg6)) {
1033       S.Diag(Arg6->getBeginLoc(), diag::err_opencl_builtin_expected_type)
1034           << TheCall->getDirectCallee() << "block";
1035       return true;
1036     }
1037     if (checkOpenCLBlockArgs(S, Arg6))
1038       return true;
1039 
1040     // Forth argument has to be any integer type.
1041     if (!Arg3->getType()->isIntegerType()) {
1042       S.Diag(TheCall->getArg(3)->getBeginLoc(),
1043              diag::err_opencl_builtin_expected_type)
1044           << TheCall->getDirectCallee() << "integer";
1045       return true;
1046     }
1047     // check remaining common arguments.
1048     Expr *Arg4 = TheCall->getArg(4);
1049     Expr *Arg5 = TheCall->getArg(5);
1050 
1051     // Fifth argument is always passed as a pointer to clk_event_t.
1052     if (!Arg4->isNullPointerConstant(S.Context,
1053                                      Expr::NPC_ValueDependentIsNotNull) &&
1054         !Arg4->getType()->getPointeeOrArrayElementType()->isClkEventT()) {
1055       S.Diag(TheCall->getArg(4)->getBeginLoc(),
1056              diag::err_opencl_builtin_expected_type)
1057           << TheCall->getDirectCallee()
1058           << S.Context.getPointerType(S.Context.OCLClkEventTy);
1059       return true;
1060     }
1061 
1062     // Sixth argument is always passed as a pointer to clk_event_t.
1063     if (!Arg5->isNullPointerConstant(S.Context,
1064                                      Expr::NPC_ValueDependentIsNotNull) &&
1065         !(Arg5->getType()->isPointerType() &&
1066           Arg5->getType()->getPointeeType()->isClkEventT())) {
1067       S.Diag(TheCall->getArg(5)->getBeginLoc(),
1068              diag::err_opencl_builtin_expected_type)
1069           << TheCall->getDirectCallee()
1070           << S.Context.getPointerType(S.Context.OCLClkEventTy);
1071       return true;
1072     }
1073 
1074     if (NumArgs == 7)
1075       return false;
1076 
1077     return checkOpenCLEnqueueVariadicArgs(S, TheCall, Arg6, 7);
1078   }
1079 
1080   // None of the specific case has been detected, give generic error
1081   S.Diag(TheCall->getBeginLoc(),
1082          diag::err_opencl_enqueue_kernel_incorrect_args);
1083   return true;
1084 }
1085 
1086 /// Returns OpenCL access qual.
1087 static OpenCLAccessAttr *getOpenCLArgAccess(const Decl *D) {
1088     return D->getAttr<OpenCLAccessAttr>();
1089 }
1090 
1091 /// Returns true if pipe element type is different from the pointer.
1092 static bool checkOpenCLPipeArg(Sema &S, CallExpr *Call) {
1093   const Expr *Arg0 = Call->getArg(0);
1094   // First argument type should always be pipe.
1095   if (!Arg0->getType()->isPipeType()) {
1096     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg)
1097         << Call->getDirectCallee() << Arg0->getSourceRange();
1098     return true;
1099   }
1100   OpenCLAccessAttr *AccessQual =
1101       getOpenCLArgAccess(cast<DeclRefExpr>(Arg0)->getDecl());
1102   // Validates the access qualifier is compatible with the call.
1103   // OpenCL v2.0 s6.13.16 - The access qualifiers for pipe should only be
1104   // read_only and write_only, and assumed to be read_only if no qualifier is
1105   // specified.
1106   switch (Call->getDirectCallee()->getBuiltinID()) {
1107   case Builtin::BIread_pipe:
1108   case Builtin::BIreserve_read_pipe:
1109   case Builtin::BIcommit_read_pipe:
1110   case Builtin::BIwork_group_reserve_read_pipe:
1111   case Builtin::BIsub_group_reserve_read_pipe:
1112   case Builtin::BIwork_group_commit_read_pipe:
1113   case Builtin::BIsub_group_commit_read_pipe:
1114     if (!(!AccessQual || AccessQual->isReadOnly())) {
1115       S.Diag(Arg0->getBeginLoc(),
1116              diag::err_opencl_builtin_pipe_invalid_access_modifier)
1117           << "read_only" << Arg0->getSourceRange();
1118       return true;
1119     }
1120     break;
1121   case Builtin::BIwrite_pipe:
1122   case Builtin::BIreserve_write_pipe:
1123   case Builtin::BIcommit_write_pipe:
1124   case Builtin::BIwork_group_reserve_write_pipe:
1125   case Builtin::BIsub_group_reserve_write_pipe:
1126   case Builtin::BIwork_group_commit_write_pipe:
1127   case Builtin::BIsub_group_commit_write_pipe:
1128     if (!(AccessQual && AccessQual->isWriteOnly())) {
1129       S.Diag(Arg0->getBeginLoc(),
1130              diag::err_opencl_builtin_pipe_invalid_access_modifier)
1131           << "write_only" << Arg0->getSourceRange();
1132       return true;
1133     }
1134     break;
1135   default:
1136     break;
1137   }
1138   return false;
1139 }
1140 
1141 /// Returns true if pipe element type is different from the pointer.
1142 static bool checkOpenCLPipePacketType(Sema &S, CallExpr *Call, unsigned Idx) {
1143   const Expr *Arg0 = Call->getArg(0);
1144   const Expr *ArgIdx = Call->getArg(Idx);
1145   const PipeType *PipeTy = cast<PipeType>(Arg0->getType());
1146   const QualType EltTy = PipeTy->getElementType();
1147   const PointerType *ArgTy = ArgIdx->getType()->getAs<PointerType>();
1148   // The Idx argument should be a pointer and the type of the pointer and
1149   // the type of pipe element should also be the same.
1150   if (!ArgTy ||
1151       !S.Context.hasSameType(
1152           EltTy, ArgTy->getPointeeType()->getCanonicalTypeInternal())) {
1153     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
1154         << Call->getDirectCallee() << S.Context.getPointerType(EltTy)
1155         << ArgIdx->getType() << ArgIdx->getSourceRange();
1156     return true;
1157   }
1158   return false;
1159 }
1160 
1161 // Performs semantic analysis for the read/write_pipe call.
1162 // \param S Reference to the semantic analyzer.
1163 // \param Call A pointer to the builtin call.
1164 // \return True if a semantic error has been found, false otherwise.
1165 static bool SemaBuiltinRWPipe(Sema &S, CallExpr *Call) {
1166   // OpenCL v2.0 s6.13.16.2 - The built-in read/write
1167   // functions have two forms.
1168   switch (Call->getNumArgs()) {
1169   case 2:
1170     if (checkOpenCLPipeArg(S, Call))
1171       return true;
1172     // The call with 2 arguments should be
1173     // read/write_pipe(pipe T, T*).
1174     // Check packet type T.
1175     if (checkOpenCLPipePacketType(S, Call, 1))
1176       return true;
1177     break;
1178 
1179   case 4: {
1180     if (checkOpenCLPipeArg(S, Call))
1181       return true;
1182     // The call with 4 arguments should be
1183     // read/write_pipe(pipe T, reserve_id_t, uint, T*).
1184     // Check reserve_id_t.
1185     if (!Call->getArg(1)->getType()->isReserveIDT()) {
1186       S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
1187           << Call->getDirectCallee() << S.Context.OCLReserveIDTy
1188           << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange();
1189       return true;
1190     }
1191 
1192     // Check the index.
1193     const Expr *Arg2 = Call->getArg(2);
1194     if (!Arg2->getType()->isIntegerType() &&
1195         !Arg2->getType()->isUnsignedIntegerType()) {
1196       S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
1197           << Call->getDirectCallee() << S.Context.UnsignedIntTy
1198           << Arg2->getType() << Arg2->getSourceRange();
1199       return true;
1200     }
1201 
1202     // Check packet type T.
1203     if (checkOpenCLPipePacketType(S, Call, 3))
1204       return true;
1205   } break;
1206   default:
1207     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_arg_num)
1208         << Call->getDirectCallee() << Call->getSourceRange();
1209     return true;
1210   }
1211 
1212   return false;
1213 }
1214 
1215 // Performs a semantic analysis on the {work_group_/sub_group_
1216 //        /_}reserve_{read/write}_pipe
1217 // \param S Reference to the semantic analyzer.
1218 // \param Call The call to the builtin function to be analyzed.
1219 // \return True if a semantic error was found, false otherwise.
1220 static bool SemaBuiltinReserveRWPipe(Sema &S, CallExpr *Call) {
1221   if (checkArgCount(S, Call, 2))
1222     return true;
1223 
1224   if (checkOpenCLPipeArg(S, Call))
1225     return true;
1226 
1227   // Check the reserve size.
1228   if (!Call->getArg(1)->getType()->isIntegerType() &&
1229       !Call->getArg(1)->getType()->isUnsignedIntegerType()) {
1230     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
1231         << Call->getDirectCallee() << S.Context.UnsignedIntTy
1232         << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange();
1233     return true;
1234   }
1235 
1236   // Since return type of reserve_read/write_pipe built-in function is
1237   // reserve_id_t, which is not defined in the builtin def file , we used int
1238   // as return type and need to override the return type of these functions.
1239   Call->setType(S.Context.OCLReserveIDTy);
1240 
1241   return false;
1242 }
1243 
1244 // Performs a semantic analysis on {work_group_/sub_group_
1245 //        /_}commit_{read/write}_pipe
1246 // \param S Reference to the semantic analyzer.
1247 // \param Call The call to the builtin function to be analyzed.
1248 // \return True if a semantic error was found, false otherwise.
1249 static bool SemaBuiltinCommitRWPipe(Sema &S, CallExpr *Call) {
1250   if (checkArgCount(S, Call, 2))
1251     return true;
1252 
1253   if (checkOpenCLPipeArg(S, Call))
1254     return true;
1255 
1256   // Check reserve_id_t.
1257   if (!Call->getArg(1)->getType()->isReserveIDT()) {
1258     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
1259         << Call->getDirectCallee() << S.Context.OCLReserveIDTy
1260         << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange();
1261     return true;
1262   }
1263 
1264   return false;
1265 }
1266 
1267 // Performs a semantic analysis on the call to built-in Pipe
1268 //        Query Functions.
1269 // \param S Reference to the semantic analyzer.
1270 // \param Call The call to the builtin function to be analyzed.
1271 // \return True if a semantic error was found, false otherwise.
1272 static bool SemaBuiltinPipePackets(Sema &S, CallExpr *Call) {
1273   if (checkArgCount(S, Call, 1))
1274     return true;
1275 
1276   if (!Call->getArg(0)->getType()->isPipeType()) {
1277     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg)
1278         << Call->getDirectCallee() << Call->getArg(0)->getSourceRange();
1279     return true;
1280   }
1281 
1282   return false;
1283 }
1284 
1285 // OpenCL v2.0 s6.13.9 - Address space qualifier functions.
1286 // Performs semantic analysis for the to_global/local/private call.
1287 // \param S Reference to the semantic analyzer.
1288 // \param BuiltinID ID of the builtin function.
1289 // \param Call A pointer to the builtin call.
1290 // \return True if a semantic error has been found, false otherwise.
1291 static bool SemaOpenCLBuiltinToAddr(Sema &S, unsigned BuiltinID,
1292                                     CallExpr *Call) {
1293   if (checkArgCount(S, Call, 1))
1294     return true;
1295 
1296   auto RT = Call->getArg(0)->getType();
1297   if (!RT->isPointerType() || RT->getPointeeType()
1298       .getAddressSpace() == LangAS::opencl_constant) {
1299     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_to_addr_invalid_arg)
1300         << Call->getArg(0) << Call->getDirectCallee() << Call->getSourceRange();
1301     return true;
1302   }
1303 
1304   if (RT->getPointeeType().getAddressSpace() != LangAS::opencl_generic) {
1305     S.Diag(Call->getArg(0)->getBeginLoc(),
1306            diag::warn_opencl_generic_address_space_arg)
1307         << Call->getDirectCallee()->getNameInfo().getAsString()
1308         << Call->getArg(0)->getSourceRange();
1309   }
1310 
1311   RT = RT->getPointeeType();
1312   auto Qual = RT.getQualifiers();
1313   switch (BuiltinID) {
1314   case Builtin::BIto_global:
1315     Qual.setAddressSpace(LangAS::opencl_global);
1316     break;
1317   case Builtin::BIto_local:
1318     Qual.setAddressSpace(LangAS::opencl_local);
1319     break;
1320   case Builtin::BIto_private:
1321     Qual.setAddressSpace(LangAS::opencl_private);
1322     break;
1323   default:
1324     llvm_unreachable("Invalid builtin function");
1325   }
1326   Call->setType(S.Context.getPointerType(S.Context.getQualifiedType(
1327       RT.getUnqualifiedType(), Qual)));
1328 
1329   return false;
1330 }
1331 
1332 static ExprResult SemaBuiltinLaunder(Sema &S, CallExpr *TheCall) {
1333   if (checkArgCount(S, TheCall, 1))
1334     return ExprError();
1335 
1336   // Compute __builtin_launder's parameter type from the argument.
1337   // The parameter type is:
1338   //  * The type of the argument if it's not an array or function type,
1339   //  Otherwise,
1340   //  * The decayed argument type.
1341   QualType ParamTy = [&]() {
1342     QualType ArgTy = TheCall->getArg(0)->getType();
1343     if (const ArrayType *Ty = ArgTy->getAsArrayTypeUnsafe())
1344       return S.Context.getPointerType(Ty->getElementType());
1345     if (ArgTy->isFunctionType()) {
1346       return S.Context.getPointerType(ArgTy);
1347     }
1348     return ArgTy;
1349   }();
1350 
1351   TheCall->setType(ParamTy);
1352 
1353   auto DiagSelect = [&]() -> llvm::Optional<unsigned> {
1354     if (!ParamTy->isPointerType())
1355       return 0;
1356     if (ParamTy->isFunctionPointerType())
1357       return 1;
1358     if (ParamTy->isVoidPointerType())
1359       return 2;
1360     return llvm::Optional<unsigned>{};
1361   }();
1362   if (DiagSelect.hasValue()) {
1363     S.Diag(TheCall->getBeginLoc(), diag::err_builtin_launder_invalid_arg)
1364         << DiagSelect.getValue() << TheCall->getSourceRange();
1365     return ExprError();
1366   }
1367 
1368   // We either have an incomplete class type, or we have a class template
1369   // whose instantiation has not been forced. Example:
1370   //
1371   //   template <class T> struct Foo { T value; };
1372   //   Foo<int> *p = nullptr;
1373   //   auto *d = __builtin_launder(p);
1374   if (S.RequireCompleteType(TheCall->getBeginLoc(), ParamTy->getPointeeType(),
1375                             diag::err_incomplete_type))
1376     return ExprError();
1377 
1378   assert(ParamTy->getPointeeType()->isObjectType() &&
1379          "Unhandled non-object pointer case");
1380 
1381   InitializedEntity Entity =
1382       InitializedEntity::InitializeParameter(S.Context, ParamTy, false);
1383   ExprResult Arg =
1384       S.PerformCopyInitialization(Entity, SourceLocation(), TheCall->getArg(0));
1385   if (Arg.isInvalid())
1386     return ExprError();
1387   TheCall->setArg(0, Arg.get());
1388 
1389   return TheCall;
1390 }
1391 
1392 // Emit an error and return true if the current architecture is not in the list
1393 // of supported architectures.
1394 static bool
1395 CheckBuiltinTargetSupport(Sema &S, unsigned BuiltinID, CallExpr *TheCall,
1396                           ArrayRef<llvm::Triple::ArchType> SupportedArchs) {
1397   llvm::Triple::ArchType CurArch =
1398       S.getASTContext().getTargetInfo().getTriple().getArch();
1399   if (llvm::is_contained(SupportedArchs, CurArch))
1400     return false;
1401   S.Diag(TheCall->getBeginLoc(), diag::err_builtin_target_unsupported)
1402       << TheCall->getSourceRange();
1403   return true;
1404 }
1405 
1406 static void CheckNonNullArgument(Sema &S, const Expr *ArgExpr,
1407                                  SourceLocation CallSiteLoc);
1408 
1409 bool Sema::CheckTSBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID,
1410                                       CallExpr *TheCall) {
1411   switch (TI.getTriple().getArch()) {
1412   default:
1413     // Some builtins don't require additional checking, so just consider these
1414     // acceptable.
1415     return false;
1416   case llvm::Triple::arm:
1417   case llvm::Triple::armeb:
1418   case llvm::Triple::thumb:
1419   case llvm::Triple::thumbeb:
1420     return CheckARMBuiltinFunctionCall(TI, BuiltinID, TheCall);
1421   case llvm::Triple::aarch64:
1422   case llvm::Triple::aarch64_32:
1423   case llvm::Triple::aarch64_be:
1424     return CheckAArch64BuiltinFunctionCall(TI, BuiltinID, TheCall);
1425   case llvm::Triple::bpfeb:
1426   case llvm::Triple::bpfel:
1427     return CheckBPFBuiltinFunctionCall(BuiltinID, TheCall);
1428   case llvm::Triple::hexagon:
1429     return CheckHexagonBuiltinFunctionCall(BuiltinID, TheCall);
1430   case llvm::Triple::mips:
1431   case llvm::Triple::mipsel:
1432   case llvm::Triple::mips64:
1433   case llvm::Triple::mips64el:
1434     return CheckMipsBuiltinFunctionCall(TI, BuiltinID, TheCall);
1435   case llvm::Triple::systemz:
1436     return CheckSystemZBuiltinFunctionCall(BuiltinID, TheCall);
1437   case llvm::Triple::x86:
1438   case llvm::Triple::x86_64:
1439     return CheckX86BuiltinFunctionCall(TI, BuiltinID, TheCall);
1440   case llvm::Triple::ppc:
1441   case llvm::Triple::ppcle:
1442   case llvm::Triple::ppc64:
1443   case llvm::Triple::ppc64le:
1444     return CheckPPCBuiltinFunctionCall(TI, BuiltinID, TheCall);
1445   case llvm::Triple::amdgcn:
1446     return CheckAMDGCNBuiltinFunctionCall(BuiltinID, TheCall);
1447   case llvm::Triple::riscv32:
1448   case llvm::Triple::riscv64:
1449     return CheckRISCVBuiltinFunctionCall(TI, BuiltinID, TheCall);
1450   }
1451 }
1452 
1453 ExprResult
1454 Sema::CheckBuiltinFunctionCall(FunctionDecl *FDecl, unsigned BuiltinID,
1455                                CallExpr *TheCall) {
1456   ExprResult TheCallResult(TheCall);
1457 
1458   // Find out if any arguments are required to be integer constant expressions.
1459   unsigned ICEArguments = 0;
1460   ASTContext::GetBuiltinTypeError Error;
1461   Context.GetBuiltinType(BuiltinID, Error, &ICEArguments);
1462   if (Error != ASTContext::GE_None)
1463     ICEArguments = 0;  // Don't diagnose previously diagnosed errors.
1464 
1465   // If any arguments are required to be ICE's, check and diagnose.
1466   for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) {
1467     // Skip arguments not required to be ICE's.
1468     if ((ICEArguments & (1 << ArgNo)) == 0) continue;
1469 
1470     llvm::APSInt Result;
1471     if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
1472       return true;
1473     ICEArguments &= ~(1 << ArgNo);
1474   }
1475 
1476   switch (BuiltinID) {
1477   case Builtin::BI__builtin___CFStringMakeConstantString:
1478     assert(TheCall->getNumArgs() == 1 &&
1479            "Wrong # arguments to builtin CFStringMakeConstantString");
1480     if (CheckObjCString(TheCall->getArg(0)))
1481       return ExprError();
1482     break;
1483   case Builtin::BI__builtin_ms_va_start:
1484   case Builtin::BI__builtin_stdarg_start:
1485   case Builtin::BI__builtin_va_start:
1486     if (SemaBuiltinVAStart(BuiltinID, TheCall))
1487       return ExprError();
1488     break;
1489   case Builtin::BI__va_start: {
1490     switch (Context.getTargetInfo().getTriple().getArch()) {
1491     case llvm::Triple::aarch64:
1492     case llvm::Triple::arm:
1493     case llvm::Triple::thumb:
1494       if (SemaBuiltinVAStartARMMicrosoft(TheCall))
1495         return ExprError();
1496       break;
1497     default:
1498       if (SemaBuiltinVAStart(BuiltinID, TheCall))
1499         return ExprError();
1500       break;
1501     }
1502     break;
1503   }
1504 
1505   // The acquire, release, and no fence variants are ARM and AArch64 only.
1506   case Builtin::BI_interlockedbittestandset_acq:
1507   case Builtin::BI_interlockedbittestandset_rel:
1508   case Builtin::BI_interlockedbittestandset_nf:
1509   case Builtin::BI_interlockedbittestandreset_acq:
1510   case Builtin::BI_interlockedbittestandreset_rel:
1511   case Builtin::BI_interlockedbittestandreset_nf:
1512     if (CheckBuiltinTargetSupport(
1513             *this, BuiltinID, TheCall,
1514             {llvm::Triple::arm, llvm::Triple::thumb, llvm::Triple::aarch64}))
1515       return ExprError();
1516     break;
1517 
1518   // The 64-bit bittest variants are x64, ARM, and AArch64 only.
1519   case Builtin::BI_bittest64:
1520   case Builtin::BI_bittestandcomplement64:
1521   case Builtin::BI_bittestandreset64:
1522   case Builtin::BI_bittestandset64:
1523   case Builtin::BI_interlockedbittestandreset64:
1524   case Builtin::BI_interlockedbittestandset64:
1525     if (CheckBuiltinTargetSupport(*this, BuiltinID, TheCall,
1526                                   {llvm::Triple::x86_64, llvm::Triple::arm,
1527                                    llvm::Triple::thumb, llvm::Triple::aarch64}))
1528       return ExprError();
1529     break;
1530 
1531   case Builtin::BI__builtin_isgreater:
1532   case Builtin::BI__builtin_isgreaterequal:
1533   case Builtin::BI__builtin_isless:
1534   case Builtin::BI__builtin_islessequal:
1535   case Builtin::BI__builtin_islessgreater:
1536   case Builtin::BI__builtin_isunordered:
1537     if (SemaBuiltinUnorderedCompare(TheCall))
1538       return ExprError();
1539     break;
1540   case Builtin::BI__builtin_fpclassify:
1541     if (SemaBuiltinFPClassification(TheCall, 6))
1542       return ExprError();
1543     break;
1544   case Builtin::BI__builtin_isfinite:
1545   case Builtin::BI__builtin_isinf:
1546   case Builtin::BI__builtin_isinf_sign:
1547   case Builtin::BI__builtin_isnan:
1548   case Builtin::BI__builtin_isnormal:
1549   case Builtin::BI__builtin_signbit:
1550   case Builtin::BI__builtin_signbitf:
1551   case Builtin::BI__builtin_signbitl:
1552     if (SemaBuiltinFPClassification(TheCall, 1))
1553       return ExprError();
1554     break;
1555   case Builtin::BI__builtin_shufflevector:
1556     return SemaBuiltinShuffleVector(TheCall);
1557     // TheCall will be freed by the smart pointer here, but that's fine, since
1558     // SemaBuiltinShuffleVector guts it, but then doesn't release it.
1559   case Builtin::BI__builtin_prefetch:
1560     if (SemaBuiltinPrefetch(TheCall))
1561       return ExprError();
1562     break;
1563   case Builtin::BI__builtin_alloca_with_align:
1564     if (SemaBuiltinAllocaWithAlign(TheCall))
1565       return ExprError();
1566     LLVM_FALLTHROUGH;
1567   case Builtin::BI__builtin_alloca:
1568     Diag(TheCall->getBeginLoc(), diag::warn_alloca)
1569         << TheCall->getDirectCallee();
1570     break;
1571   case Builtin::BI__arithmetic_fence:
1572     if (SemaBuiltinArithmeticFence(TheCall))
1573       return ExprError();
1574     break;
1575   case Builtin::BI__assume:
1576   case Builtin::BI__builtin_assume:
1577     if (SemaBuiltinAssume(TheCall))
1578       return ExprError();
1579     break;
1580   case Builtin::BI__builtin_assume_aligned:
1581     if (SemaBuiltinAssumeAligned(TheCall))
1582       return ExprError();
1583     break;
1584   case Builtin::BI__builtin_dynamic_object_size:
1585   case Builtin::BI__builtin_object_size:
1586     if (SemaBuiltinConstantArgRange(TheCall, 1, 0, 3))
1587       return ExprError();
1588     break;
1589   case Builtin::BI__builtin_longjmp:
1590     if (SemaBuiltinLongjmp(TheCall))
1591       return ExprError();
1592     break;
1593   case Builtin::BI__builtin_setjmp:
1594     if (SemaBuiltinSetjmp(TheCall))
1595       return ExprError();
1596     break;
1597   case Builtin::BI__builtin_classify_type:
1598     if (checkArgCount(*this, TheCall, 1)) return true;
1599     TheCall->setType(Context.IntTy);
1600     break;
1601   case Builtin::BI__builtin_complex:
1602     if (SemaBuiltinComplex(TheCall))
1603       return ExprError();
1604     break;
1605   case Builtin::BI__builtin_constant_p: {
1606     if (checkArgCount(*this, TheCall, 1)) return true;
1607     ExprResult Arg = DefaultFunctionArrayLvalueConversion(TheCall->getArg(0));
1608     if (Arg.isInvalid()) return true;
1609     TheCall->setArg(0, Arg.get());
1610     TheCall->setType(Context.IntTy);
1611     break;
1612   }
1613   case Builtin::BI__builtin_launder:
1614     return SemaBuiltinLaunder(*this, TheCall);
1615   case Builtin::BI__sync_fetch_and_add:
1616   case Builtin::BI__sync_fetch_and_add_1:
1617   case Builtin::BI__sync_fetch_and_add_2:
1618   case Builtin::BI__sync_fetch_and_add_4:
1619   case Builtin::BI__sync_fetch_and_add_8:
1620   case Builtin::BI__sync_fetch_and_add_16:
1621   case Builtin::BI__sync_fetch_and_sub:
1622   case Builtin::BI__sync_fetch_and_sub_1:
1623   case Builtin::BI__sync_fetch_and_sub_2:
1624   case Builtin::BI__sync_fetch_and_sub_4:
1625   case Builtin::BI__sync_fetch_and_sub_8:
1626   case Builtin::BI__sync_fetch_and_sub_16:
1627   case Builtin::BI__sync_fetch_and_or:
1628   case Builtin::BI__sync_fetch_and_or_1:
1629   case Builtin::BI__sync_fetch_and_or_2:
1630   case Builtin::BI__sync_fetch_and_or_4:
1631   case Builtin::BI__sync_fetch_and_or_8:
1632   case Builtin::BI__sync_fetch_and_or_16:
1633   case Builtin::BI__sync_fetch_and_and:
1634   case Builtin::BI__sync_fetch_and_and_1:
1635   case Builtin::BI__sync_fetch_and_and_2:
1636   case Builtin::BI__sync_fetch_and_and_4:
1637   case Builtin::BI__sync_fetch_and_and_8:
1638   case Builtin::BI__sync_fetch_and_and_16:
1639   case Builtin::BI__sync_fetch_and_xor:
1640   case Builtin::BI__sync_fetch_and_xor_1:
1641   case Builtin::BI__sync_fetch_and_xor_2:
1642   case Builtin::BI__sync_fetch_and_xor_4:
1643   case Builtin::BI__sync_fetch_and_xor_8:
1644   case Builtin::BI__sync_fetch_and_xor_16:
1645   case Builtin::BI__sync_fetch_and_nand:
1646   case Builtin::BI__sync_fetch_and_nand_1:
1647   case Builtin::BI__sync_fetch_and_nand_2:
1648   case Builtin::BI__sync_fetch_and_nand_4:
1649   case Builtin::BI__sync_fetch_and_nand_8:
1650   case Builtin::BI__sync_fetch_and_nand_16:
1651   case Builtin::BI__sync_add_and_fetch:
1652   case Builtin::BI__sync_add_and_fetch_1:
1653   case Builtin::BI__sync_add_and_fetch_2:
1654   case Builtin::BI__sync_add_and_fetch_4:
1655   case Builtin::BI__sync_add_and_fetch_8:
1656   case Builtin::BI__sync_add_and_fetch_16:
1657   case Builtin::BI__sync_sub_and_fetch:
1658   case Builtin::BI__sync_sub_and_fetch_1:
1659   case Builtin::BI__sync_sub_and_fetch_2:
1660   case Builtin::BI__sync_sub_and_fetch_4:
1661   case Builtin::BI__sync_sub_and_fetch_8:
1662   case Builtin::BI__sync_sub_and_fetch_16:
1663   case Builtin::BI__sync_and_and_fetch:
1664   case Builtin::BI__sync_and_and_fetch_1:
1665   case Builtin::BI__sync_and_and_fetch_2:
1666   case Builtin::BI__sync_and_and_fetch_4:
1667   case Builtin::BI__sync_and_and_fetch_8:
1668   case Builtin::BI__sync_and_and_fetch_16:
1669   case Builtin::BI__sync_or_and_fetch:
1670   case Builtin::BI__sync_or_and_fetch_1:
1671   case Builtin::BI__sync_or_and_fetch_2:
1672   case Builtin::BI__sync_or_and_fetch_4:
1673   case Builtin::BI__sync_or_and_fetch_8:
1674   case Builtin::BI__sync_or_and_fetch_16:
1675   case Builtin::BI__sync_xor_and_fetch:
1676   case Builtin::BI__sync_xor_and_fetch_1:
1677   case Builtin::BI__sync_xor_and_fetch_2:
1678   case Builtin::BI__sync_xor_and_fetch_4:
1679   case Builtin::BI__sync_xor_and_fetch_8:
1680   case Builtin::BI__sync_xor_and_fetch_16:
1681   case Builtin::BI__sync_nand_and_fetch:
1682   case Builtin::BI__sync_nand_and_fetch_1:
1683   case Builtin::BI__sync_nand_and_fetch_2:
1684   case Builtin::BI__sync_nand_and_fetch_4:
1685   case Builtin::BI__sync_nand_and_fetch_8:
1686   case Builtin::BI__sync_nand_and_fetch_16:
1687   case Builtin::BI__sync_val_compare_and_swap:
1688   case Builtin::BI__sync_val_compare_and_swap_1:
1689   case Builtin::BI__sync_val_compare_and_swap_2:
1690   case Builtin::BI__sync_val_compare_and_swap_4:
1691   case Builtin::BI__sync_val_compare_and_swap_8:
1692   case Builtin::BI__sync_val_compare_and_swap_16:
1693   case Builtin::BI__sync_bool_compare_and_swap:
1694   case Builtin::BI__sync_bool_compare_and_swap_1:
1695   case Builtin::BI__sync_bool_compare_and_swap_2:
1696   case Builtin::BI__sync_bool_compare_and_swap_4:
1697   case Builtin::BI__sync_bool_compare_and_swap_8:
1698   case Builtin::BI__sync_bool_compare_and_swap_16:
1699   case Builtin::BI__sync_lock_test_and_set:
1700   case Builtin::BI__sync_lock_test_and_set_1:
1701   case Builtin::BI__sync_lock_test_and_set_2:
1702   case Builtin::BI__sync_lock_test_and_set_4:
1703   case Builtin::BI__sync_lock_test_and_set_8:
1704   case Builtin::BI__sync_lock_test_and_set_16:
1705   case Builtin::BI__sync_lock_release:
1706   case Builtin::BI__sync_lock_release_1:
1707   case Builtin::BI__sync_lock_release_2:
1708   case Builtin::BI__sync_lock_release_4:
1709   case Builtin::BI__sync_lock_release_8:
1710   case Builtin::BI__sync_lock_release_16:
1711   case Builtin::BI__sync_swap:
1712   case Builtin::BI__sync_swap_1:
1713   case Builtin::BI__sync_swap_2:
1714   case Builtin::BI__sync_swap_4:
1715   case Builtin::BI__sync_swap_8:
1716   case Builtin::BI__sync_swap_16:
1717     return SemaBuiltinAtomicOverloaded(TheCallResult);
1718   case Builtin::BI__sync_synchronize:
1719     Diag(TheCall->getBeginLoc(), diag::warn_atomic_implicit_seq_cst)
1720         << TheCall->getCallee()->getSourceRange();
1721     break;
1722   case Builtin::BI__builtin_nontemporal_load:
1723   case Builtin::BI__builtin_nontemporal_store:
1724     return SemaBuiltinNontemporalOverloaded(TheCallResult);
1725   case Builtin::BI__builtin_memcpy_inline: {
1726     clang::Expr *SizeOp = TheCall->getArg(2);
1727     // We warn about copying to or from `nullptr` pointers when `size` is
1728     // greater than 0. When `size` is value dependent we cannot evaluate its
1729     // value so we bail out.
1730     if (SizeOp->isValueDependent())
1731       break;
1732     if (!SizeOp->EvaluateKnownConstInt(Context).isZero()) {
1733       CheckNonNullArgument(*this, TheCall->getArg(0), TheCall->getExprLoc());
1734       CheckNonNullArgument(*this, TheCall->getArg(1), TheCall->getExprLoc());
1735     }
1736     break;
1737   }
1738 #define BUILTIN(ID, TYPE, ATTRS)
1739 #define ATOMIC_BUILTIN(ID, TYPE, ATTRS) \
1740   case Builtin::BI##ID: \
1741     return SemaAtomicOpsOverloaded(TheCallResult, AtomicExpr::AO##ID);
1742 #include "clang/Basic/Builtins.def"
1743   case Builtin::BI__annotation:
1744     if (SemaBuiltinMSVCAnnotation(*this, TheCall))
1745       return ExprError();
1746     break;
1747   case Builtin::BI__builtin_annotation:
1748     if (SemaBuiltinAnnotation(*this, TheCall))
1749       return ExprError();
1750     break;
1751   case Builtin::BI__builtin_addressof:
1752     if (SemaBuiltinAddressof(*this, TheCall))
1753       return ExprError();
1754     break;
1755   case Builtin::BI__builtin_is_aligned:
1756   case Builtin::BI__builtin_align_up:
1757   case Builtin::BI__builtin_align_down:
1758     if (SemaBuiltinAlignment(*this, TheCall, BuiltinID))
1759       return ExprError();
1760     break;
1761   case Builtin::BI__builtin_add_overflow:
1762   case Builtin::BI__builtin_sub_overflow:
1763   case Builtin::BI__builtin_mul_overflow:
1764     if (SemaBuiltinOverflow(*this, TheCall, BuiltinID))
1765       return ExprError();
1766     break;
1767   case Builtin::BI__builtin_operator_new:
1768   case Builtin::BI__builtin_operator_delete: {
1769     bool IsDelete = BuiltinID == Builtin::BI__builtin_operator_delete;
1770     ExprResult Res =
1771         SemaBuiltinOperatorNewDeleteOverloaded(TheCallResult, IsDelete);
1772     if (Res.isInvalid())
1773       CorrectDelayedTyposInExpr(TheCallResult.get());
1774     return Res;
1775   }
1776   case Builtin::BI__builtin_dump_struct: {
1777     // We first want to ensure we are called with 2 arguments
1778     if (checkArgCount(*this, TheCall, 2))
1779       return ExprError();
1780     // Ensure that the first argument is of type 'struct XX *'
1781     const Expr *PtrArg = TheCall->getArg(0)->IgnoreParenImpCasts();
1782     const QualType PtrArgType = PtrArg->getType();
1783     if (!PtrArgType->isPointerType() ||
1784         !PtrArgType->getPointeeType()->isRecordType()) {
1785       Diag(PtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1786           << PtrArgType << "structure pointer" << 1 << 0 << 3 << 1 << PtrArgType
1787           << "structure pointer";
1788       return ExprError();
1789     }
1790 
1791     // Ensure that the second argument is of type 'FunctionType'
1792     const Expr *FnPtrArg = TheCall->getArg(1)->IgnoreImpCasts();
1793     const QualType FnPtrArgType = FnPtrArg->getType();
1794     if (!FnPtrArgType->isPointerType()) {
1795       Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1796           << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 << 2
1797           << FnPtrArgType << "'int (*)(const char *, ...)'";
1798       return ExprError();
1799     }
1800 
1801     const auto *FuncType =
1802         FnPtrArgType->getPointeeType()->getAs<FunctionType>();
1803 
1804     if (!FuncType) {
1805       Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1806           << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 << 2
1807           << FnPtrArgType << "'int (*)(const char *, ...)'";
1808       return ExprError();
1809     }
1810 
1811     if (const auto *FT = dyn_cast<FunctionProtoType>(FuncType)) {
1812       if (!FT->getNumParams()) {
1813         Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1814             << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3
1815             << 2 << FnPtrArgType << "'int (*)(const char *, ...)'";
1816         return ExprError();
1817       }
1818       QualType PT = FT->getParamType(0);
1819       if (!FT->isVariadic() || FT->getReturnType() != Context.IntTy ||
1820           !PT->isPointerType() || !PT->getPointeeType()->isCharType() ||
1821           !PT->getPointeeType().isConstQualified()) {
1822         Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1823             << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3
1824             << 2 << FnPtrArgType << "'int (*)(const char *, ...)'";
1825         return ExprError();
1826       }
1827     }
1828 
1829     TheCall->setType(Context.IntTy);
1830     break;
1831   }
1832   case Builtin::BI__builtin_expect_with_probability: {
1833     // We first want to ensure we are called with 3 arguments
1834     if (checkArgCount(*this, TheCall, 3))
1835       return ExprError();
1836     // then check probability is constant float in range [0.0, 1.0]
1837     const Expr *ProbArg = TheCall->getArg(2);
1838     SmallVector<PartialDiagnosticAt, 8> Notes;
1839     Expr::EvalResult Eval;
1840     Eval.Diag = &Notes;
1841     if ((!ProbArg->EvaluateAsConstantExpr(Eval, Context)) ||
1842         !Eval.Val.isFloat()) {
1843       Diag(ProbArg->getBeginLoc(), diag::err_probability_not_constant_float)
1844           << ProbArg->getSourceRange();
1845       for (const PartialDiagnosticAt &PDiag : Notes)
1846         Diag(PDiag.first, PDiag.second);
1847       return ExprError();
1848     }
1849     llvm::APFloat Probability = Eval.Val.getFloat();
1850     bool LoseInfo = false;
1851     Probability.convert(llvm::APFloat::IEEEdouble(),
1852                         llvm::RoundingMode::Dynamic, &LoseInfo);
1853     if (!(Probability >= llvm::APFloat(0.0) &&
1854           Probability <= llvm::APFloat(1.0))) {
1855       Diag(ProbArg->getBeginLoc(), diag::err_probability_out_of_range)
1856           << ProbArg->getSourceRange();
1857       return ExprError();
1858     }
1859     break;
1860   }
1861   case Builtin::BI__builtin_preserve_access_index:
1862     if (SemaBuiltinPreserveAI(*this, TheCall))
1863       return ExprError();
1864     break;
1865   case Builtin::BI__builtin_call_with_static_chain:
1866     if (SemaBuiltinCallWithStaticChain(*this, TheCall))
1867       return ExprError();
1868     break;
1869   case Builtin::BI__exception_code:
1870   case Builtin::BI_exception_code:
1871     if (SemaBuiltinSEHScopeCheck(*this, TheCall, Scope::SEHExceptScope,
1872                                  diag::err_seh___except_block))
1873       return ExprError();
1874     break;
1875   case Builtin::BI__exception_info:
1876   case Builtin::BI_exception_info:
1877     if (SemaBuiltinSEHScopeCheck(*this, TheCall, Scope::SEHFilterScope,
1878                                  diag::err_seh___except_filter))
1879       return ExprError();
1880     break;
1881   case Builtin::BI__GetExceptionInfo:
1882     if (checkArgCount(*this, TheCall, 1))
1883       return ExprError();
1884 
1885     if (CheckCXXThrowOperand(
1886             TheCall->getBeginLoc(),
1887             Context.getExceptionObjectType(FDecl->getParamDecl(0)->getType()),
1888             TheCall))
1889       return ExprError();
1890 
1891     TheCall->setType(Context.VoidPtrTy);
1892     break;
1893   // OpenCL v2.0, s6.13.16 - Pipe functions
1894   case Builtin::BIread_pipe:
1895   case Builtin::BIwrite_pipe:
1896     // Since those two functions are declared with var args, we need a semantic
1897     // check for the argument.
1898     if (SemaBuiltinRWPipe(*this, TheCall))
1899       return ExprError();
1900     break;
1901   case Builtin::BIreserve_read_pipe:
1902   case Builtin::BIreserve_write_pipe:
1903   case Builtin::BIwork_group_reserve_read_pipe:
1904   case Builtin::BIwork_group_reserve_write_pipe:
1905     if (SemaBuiltinReserveRWPipe(*this, TheCall))
1906       return ExprError();
1907     break;
1908   case Builtin::BIsub_group_reserve_read_pipe:
1909   case Builtin::BIsub_group_reserve_write_pipe:
1910     if (checkOpenCLSubgroupExt(*this, TheCall) ||
1911         SemaBuiltinReserveRWPipe(*this, TheCall))
1912       return ExprError();
1913     break;
1914   case Builtin::BIcommit_read_pipe:
1915   case Builtin::BIcommit_write_pipe:
1916   case Builtin::BIwork_group_commit_read_pipe:
1917   case Builtin::BIwork_group_commit_write_pipe:
1918     if (SemaBuiltinCommitRWPipe(*this, TheCall))
1919       return ExprError();
1920     break;
1921   case Builtin::BIsub_group_commit_read_pipe:
1922   case Builtin::BIsub_group_commit_write_pipe:
1923     if (checkOpenCLSubgroupExt(*this, TheCall) ||
1924         SemaBuiltinCommitRWPipe(*this, TheCall))
1925       return ExprError();
1926     break;
1927   case Builtin::BIget_pipe_num_packets:
1928   case Builtin::BIget_pipe_max_packets:
1929     if (SemaBuiltinPipePackets(*this, TheCall))
1930       return ExprError();
1931     break;
1932   case Builtin::BIto_global:
1933   case Builtin::BIto_local:
1934   case Builtin::BIto_private:
1935     if (SemaOpenCLBuiltinToAddr(*this, BuiltinID, TheCall))
1936       return ExprError();
1937     break;
1938   // OpenCL v2.0, s6.13.17 - Enqueue kernel functions.
1939   case Builtin::BIenqueue_kernel:
1940     if (SemaOpenCLBuiltinEnqueueKernel(*this, TheCall))
1941       return ExprError();
1942     break;
1943   case Builtin::BIget_kernel_work_group_size:
1944   case Builtin::BIget_kernel_preferred_work_group_size_multiple:
1945     if (SemaOpenCLBuiltinKernelWorkGroupSize(*this, TheCall))
1946       return ExprError();
1947     break;
1948   case Builtin::BIget_kernel_max_sub_group_size_for_ndrange:
1949   case Builtin::BIget_kernel_sub_group_count_for_ndrange:
1950     if (SemaOpenCLBuiltinNDRangeAndBlock(*this, TheCall))
1951       return ExprError();
1952     break;
1953   case Builtin::BI__builtin_os_log_format:
1954     Cleanup.setExprNeedsCleanups(true);
1955     LLVM_FALLTHROUGH;
1956   case Builtin::BI__builtin_os_log_format_buffer_size:
1957     if (SemaBuiltinOSLogFormat(TheCall))
1958       return ExprError();
1959     break;
1960   case Builtin::BI__builtin_frame_address:
1961   case Builtin::BI__builtin_return_address: {
1962     if (SemaBuiltinConstantArgRange(TheCall, 0, 0, 0xFFFF))
1963       return ExprError();
1964 
1965     // -Wframe-address warning if non-zero passed to builtin
1966     // return/frame address.
1967     Expr::EvalResult Result;
1968     if (!TheCall->getArg(0)->isValueDependent() &&
1969         TheCall->getArg(0)->EvaluateAsInt(Result, getASTContext()) &&
1970         Result.Val.getInt() != 0)
1971       Diag(TheCall->getBeginLoc(), diag::warn_frame_address)
1972           << ((BuiltinID == Builtin::BI__builtin_return_address)
1973                   ? "__builtin_return_address"
1974                   : "__builtin_frame_address")
1975           << TheCall->getSourceRange();
1976     break;
1977   }
1978 
1979   case Builtin::BI__builtin_matrix_transpose:
1980     return SemaBuiltinMatrixTranspose(TheCall, TheCallResult);
1981 
1982   case Builtin::BI__builtin_matrix_column_major_load:
1983     return SemaBuiltinMatrixColumnMajorLoad(TheCall, TheCallResult);
1984 
1985   case Builtin::BI__builtin_matrix_column_major_store:
1986     return SemaBuiltinMatrixColumnMajorStore(TheCall, TheCallResult);
1987 
1988   case Builtin::BI__builtin_get_device_side_mangled_name: {
1989     auto Check = [](CallExpr *TheCall) {
1990       if (TheCall->getNumArgs() != 1)
1991         return false;
1992       auto *DRE = dyn_cast<DeclRefExpr>(TheCall->getArg(0)->IgnoreImpCasts());
1993       if (!DRE)
1994         return false;
1995       auto *D = DRE->getDecl();
1996       if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D))
1997         return false;
1998       return D->hasAttr<CUDAGlobalAttr>() || D->hasAttr<CUDADeviceAttr>() ||
1999              D->hasAttr<CUDAConstantAttr>() || D->hasAttr<HIPManagedAttr>();
2000     };
2001     if (!Check(TheCall)) {
2002       Diag(TheCall->getBeginLoc(),
2003            diag::err_hip_invalid_args_builtin_mangled_name);
2004       return ExprError();
2005     }
2006   }
2007   }
2008 
2009   // Since the target specific builtins for each arch overlap, only check those
2010   // of the arch we are compiling for.
2011   if (Context.BuiltinInfo.isTSBuiltin(BuiltinID)) {
2012     if (Context.BuiltinInfo.isAuxBuiltinID(BuiltinID)) {
2013       assert(Context.getAuxTargetInfo() &&
2014              "Aux Target Builtin, but not an aux target?");
2015 
2016       if (CheckTSBuiltinFunctionCall(
2017               *Context.getAuxTargetInfo(),
2018               Context.BuiltinInfo.getAuxBuiltinID(BuiltinID), TheCall))
2019         return ExprError();
2020     } else {
2021       if (CheckTSBuiltinFunctionCall(Context.getTargetInfo(), BuiltinID,
2022                                      TheCall))
2023         return ExprError();
2024     }
2025   }
2026 
2027   return TheCallResult;
2028 }
2029 
2030 // Get the valid immediate range for the specified NEON type code.
2031 static unsigned RFT(unsigned t, bool shift = false, bool ForceQuad = false) {
2032   NeonTypeFlags Type(t);
2033   int IsQuad = ForceQuad ? true : Type.isQuad();
2034   switch (Type.getEltType()) {
2035   case NeonTypeFlags::Int8:
2036   case NeonTypeFlags::Poly8:
2037     return shift ? 7 : (8 << IsQuad) - 1;
2038   case NeonTypeFlags::Int16:
2039   case NeonTypeFlags::Poly16:
2040     return shift ? 15 : (4 << IsQuad) - 1;
2041   case NeonTypeFlags::Int32:
2042     return shift ? 31 : (2 << IsQuad) - 1;
2043   case NeonTypeFlags::Int64:
2044   case NeonTypeFlags::Poly64:
2045     return shift ? 63 : (1 << IsQuad) - 1;
2046   case NeonTypeFlags::Poly128:
2047     return shift ? 127 : (1 << IsQuad) - 1;
2048   case NeonTypeFlags::Float16:
2049     assert(!shift && "cannot shift float types!");
2050     return (4 << IsQuad) - 1;
2051   case NeonTypeFlags::Float32:
2052     assert(!shift && "cannot shift float types!");
2053     return (2 << IsQuad) - 1;
2054   case NeonTypeFlags::Float64:
2055     assert(!shift && "cannot shift float types!");
2056     return (1 << IsQuad) - 1;
2057   case NeonTypeFlags::BFloat16:
2058     assert(!shift && "cannot shift float types!");
2059     return (4 << IsQuad) - 1;
2060   }
2061   llvm_unreachable("Invalid NeonTypeFlag!");
2062 }
2063 
2064 /// getNeonEltType - Return the QualType corresponding to the elements of
2065 /// the vector type specified by the NeonTypeFlags.  This is used to check
2066 /// the pointer arguments for Neon load/store intrinsics.
2067 static QualType getNeonEltType(NeonTypeFlags Flags, ASTContext &Context,
2068                                bool IsPolyUnsigned, bool IsInt64Long) {
2069   switch (Flags.getEltType()) {
2070   case NeonTypeFlags::Int8:
2071     return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
2072   case NeonTypeFlags::Int16:
2073     return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
2074   case NeonTypeFlags::Int32:
2075     return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
2076   case NeonTypeFlags::Int64:
2077     if (IsInt64Long)
2078       return Flags.isUnsigned() ? Context.UnsignedLongTy : Context.LongTy;
2079     else
2080       return Flags.isUnsigned() ? Context.UnsignedLongLongTy
2081                                 : Context.LongLongTy;
2082   case NeonTypeFlags::Poly8:
2083     return IsPolyUnsigned ? Context.UnsignedCharTy : Context.SignedCharTy;
2084   case NeonTypeFlags::Poly16:
2085     return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy;
2086   case NeonTypeFlags::Poly64:
2087     if (IsInt64Long)
2088       return Context.UnsignedLongTy;
2089     else
2090       return Context.UnsignedLongLongTy;
2091   case NeonTypeFlags::Poly128:
2092     break;
2093   case NeonTypeFlags::Float16:
2094     return Context.HalfTy;
2095   case NeonTypeFlags::Float32:
2096     return Context.FloatTy;
2097   case NeonTypeFlags::Float64:
2098     return Context.DoubleTy;
2099   case NeonTypeFlags::BFloat16:
2100     return Context.BFloat16Ty;
2101   }
2102   llvm_unreachable("Invalid NeonTypeFlag!");
2103 }
2104 
2105 bool Sema::CheckSVEBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
2106   // Range check SVE intrinsics that take immediate values.
2107   SmallVector<std::tuple<int,int,int>, 3> ImmChecks;
2108 
2109   switch (BuiltinID) {
2110   default:
2111     return false;
2112 #define GET_SVE_IMMEDIATE_CHECK
2113 #include "clang/Basic/arm_sve_sema_rangechecks.inc"
2114 #undef GET_SVE_IMMEDIATE_CHECK
2115   }
2116 
2117   // Perform all the immediate checks for this builtin call.
2118   bool HasError = false;
2119   for (auto &I : ImmChecks) {
2120     int ArgNum, CheckTy, ElementSizeInBits;
2121     std::tie(ArgNum, CheckTy, ElementSizeInBits) = I;
2122 
2123     typedef bool(*OptionSetCheckFnTy)(int64_t Value);
2124 
2125     // Function that checks whether the operand (ArgNum) is an immediate
2126     // that is one of the predefined values.
2127     auto CheckImmediateInSet = [&](OptionSetCheckFnTy CheckImm,
2128                                    int ErrDiag) -> bool {
2129       // We can't check the value of a dependent argument.
2130       Expr *Arg = TheCall->getArg(ArgNum);
2131       if (Arg->isTypeDependent() || Arg->isValueDependent())
2132         return false;
2133 
2134       // Check constant-ness first.
2135       llvm::APSInt Imm;
2136       if (SemaBuiltinConstantArg(TheCall, ArgNum, Imm))
2137         return true;
2138 
2139       if (!CheckImm(Imm.getSExtValue()))
2140         return Diag(TheCall->getBeginLoc(), ErrDiag) << Arg->getSourceRange();
2141       return false;
2142     };
2143 
2144     switch ((SVETypeFlags::ImmCheckType)CheckTy) {
2145     case SVETypeFlags::ImmCheck0_31:
2146       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 31))
2147         HasError = true;
2148       break;
2149     case SVETypeFlags::ImmCheck0_13:
2150       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 13))
2151         HasError = true;
2152       break;
2153     case SVETypeFlags::ImmCheck1_16:
2154       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 1, 16))
2155         HasError = true;
2156       break;
2157     case SVETypeFlags::ImmCheck0_7:
2158       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 7))
2159         HasError = true;
2160       break;
2161     case SVETypeFlags::ImmCheckExtract:
2162       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0,
2163                                       (2048 / ElementSizeInBits) - 1))
2164         HasError = true;
2165       break;
2166     case SVETypeFlags::ImmCheckShiftRight:
2167       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 1, ElementSizeInBits))
2168         HasError = true;
2169       break;
2170     case SVETypeFlags::ImmCheckShiftRightNarrow:
2171       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 1,
2172                                       ElementSizeInBits / 2))
2173         HasError = true;
2174       break;
2175     case SVETypeFlags::ImmCheckShiftLeft:
2176       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0,
2177                                       ElementSizeInBits - 1))
2178         HasError = true;
2179       break;
2180     case SVETypeFlags::ImmCheckLaneIndex:
2181       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0,
2182                                       (128 / (1 * ElementSizeInBits)) - 1))
2183         HasError = true;
2184       break;
2185     case SVETypeFlags::ImmCheckLaneIndexCompRotate:
2186       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0,
2187                                       (128 / (2 * ElementSizeInBits)) - 1))
2188         HasError = true;
2189       break;
2190     case SVETypeFlags::ImmCheckLaneIndexDot:
2191       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0,
2192                                       (128 / (4 * ElementSizeInBits)) - 1))
2193         HasError = true;
2194       break;
2195     case SVETypeFlags::ImmCheckComplexRot90_270:
2196       if (CheckImmediateInSet([](int64_t V) { return V == 90 || V == 270; },
2197                               diag::err_rotation_argument_to_cadd))
2198         HasError = true;
2199       break;
2200     case SVETypeFlags::ImmCheckComplexRotAll90:
2201       if (CheckImmediateInSet(
2202               [](int64_t V) {
2203                 return V == 0 || V == 90 || V == 180 || V == 270;
2204               },
2205               diag::err_rotation_argument_to_cmla))
2206         HasError = true;
2207       break;
2208     case SVETypeFlags::ImmCheck0_1:
2209       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 1))
2210         HasError = true;
2211       break;
2212     case SVETypeFlags::ImmCheck0_2:
2213       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 2))
2214         HasError = true;
2215       break;
2216     case SVETypeFlags::ImmCheck0_3:
2217       if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 3))
2218         HasError = true;
2219       break;
2220     }
2221   }
2222 
2223   return HasError;
2224 }
2225 
2226 bool Sema::CheckNeonBuiltinFunctionCall(const TargetInfo &TI,
2227                                         unsigned BuiltinID, CallExpr *TheCall) {
2228   llvm::APSInt Result;
2229   uint64_t mask = 0;
2230   unsigned TV = 0;
2231   int PtrArgNum = -1;
2232   bool HasConstPtr = false;
2233   switch (BuiltinID) {
2234 #define GET_NEON_OVERLOAD_CHECK
2235 #include "clang/Basic/arm_neon.inc"
2236 #include "clang/Basic/arm_fp16.inc"
2237 #undef GET_NEON_OVERLOAD_CHECK
2238   }
2239 
2240   // For NEON intrinsics which are overloaded on vector element type, validate
2241   // the immediate which specifies which variant to emit.
2242   unsigned ImmArg = TheCall->getNumArgs()-1;
2243   if (mask) {
2244     if (SemaBuiltinConstantArg(TheCall, ImmArg, Result))
2245       return true;
2246 
2247     TV = Result.getLimitedValue(64);
2248     if ((TV > 63) || (mask & (1ULL << TV)) == 0)
2249       return Diag(TheCall->getBeginLoc(), diag::err_invalid_neon_type_code)
2250              << TheCall->getArg(ImmArg)->getSourceRange();
2251   }
2252 
2253   if (PtrArgNum >= 0) {
2254     // Check that pointer arguments have the specified type.
2255     Expr *Arg = TheCall->getArg(PtrArgNum);
2256     if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg))
2257       Arg = ICE->getSubExpr();
2258     ExprResult RHS = DefaultFunctionArrayLvalueConversion(Arg);
2259     QualType RHSTy = RHS.get()->getType();
2260 
2261     llvm::Triple::ArchType Arch = TI.getTriple().getArch();
2262     bool IsPolyUnsigned = Arch == llvm::Triple::aarch64 ||
2263                           Arch == llvm::Triple::aarch64_32 ||
2264                           Arch == llvm::Triple::aarch64_be;
2265     bool IsInt64Long = TI.getInt64Type() == TargetInfo::SignedLong;
2266     QualType EltTy =
2267         getNeonEltType(NeonTypeFlags(TV), Context, IsPolyUnsigned, IsInt64Long);
2268     if (HasConstPtr)
2269       EltTy = EltTy.withConst();
2270     QualType LHSTy = Context.getPointerType(EltTy);
2271     AssignConvertType ConvTy;
2272     ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
2273     if (RHS.isInvalid())
2274       return true;
2275     if (DiagnoseAssignmentResult(ConvTy, Arg->getBeginLoc(), LHSTy, RHSTy,
2276                                  RHS.get(), AA_Assigning))
2277       return true;
2278   }
2279 
2280   // For NEON intrinsics which take an immediate value as part of the
2281   // instruction, range check them here.
2282   unsigned i = 0, l = 0, u = 0;
2283   switch (BuiltinID) {
2284   default:
2285     return false;
2286   #define GET_NEON_IMMEDIATE_CHECK
2287   #include "clang/Basic/arm_neon.inc"
2288   #include "clang/Basic/arm_fp16.inc"
2289   #undef GET_NEON_IMMEDIATE_CHECK
2290   }
2291 
2292   return SemaBuiltinConstantArgRange(TheCall, i, l, u + l);
2293 }
2294 
2295 bool Sema::CheckMVEBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
2296   switch (BuiltinID) {
2297   default:
2298     return false;
2299   #include "clang/Basic/arm_mve_builtin_sema.inc"
2300   }
2301 }
2302 
2303 bool Sema::CheckCDEBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID,
2304                                        CallExpr *TheCall) {
2305   bool Err = false;
2306   switch (BuiltinID) {
2307   default:
2308     return false;
2309 #include "clang/Basic/arm_cde_builtin_sema.inc"
2310   }
2311 
2312   if (Err)
2313     return true;
2314 
2315   return CheckARMCoprocessorImmediate(TI, TheCall->getArg(0), /*WantCDE*/ true);
2316 }
2317 
2318 bool Sema::CheckARMCoprocessorImmediate(const TargetInfo &TI,
2319                                         const Expr *CoprocArg, bool WantCDE) {
2320   if (isConstantEvaluated())
2321     return false;
2322 
2323   // We can't check the value of a dependent argument.
2324   if (CoprocArg->isTypeDependent() || CoprocArg->isValueDependent())
2325     return false;
2326 
2327   llvm::APSInt CoprocNoAP = *CoprocArg->getIntegerConstantExpr(Context);
2328   int64_t CoprocNo = CoprocNoAP.getExtValue();
2329   assert(CoprocNo >= 0 && "Coprocessor immediate must be non-negative");
2330 
2331   uint32_t CDECoprocMask = TI.getARMCDECoprocMask();
2332   bool IsCDECoproc = CoprocNo <= 7 && (CDECoprocMask & (1 << CoprocNo));
2333 
2334   if (IsCDECoproc != WantCDE)
2335     return Diag(CoprocArg->getBeginLoc(), diag::err_arm_invalid_coproc)
2336            << (int)CoprocNo << (int)WantCDE << CoprocArg->getSourceRange();
2337 
2338   return false;
2339 }
2340 
2341 bool Sema::CheckARMBuiltinExclusiveCall(unsigned BuiltinID, CallExpr *TheCall,
2342                                         unsigned MaxWidth) {
2343   assert((BuiltinID == ARM::BI__builtin_arm_ldrex ||
2344           BuiltinID == ARM::BI__builtin_arm_ldaex ||
2345           BuiltinID == ARM::BI__builtin_arm_strex ||
2346           BuiltinID == ARM::BI__builtin_arm_stlex ||
2347           BuiltinID == AArch64::BI__builtin_arm_ldrex ||
2348           BuiltinID == AArch64::BI__builtin_arm_ldaex ||
2349           BuiltinID == AArch64::BI__builtin_arm_strex ||
2350           BuiltinID == AArch64::BI__builtin_arm_stlex) &&
2351          "unexpected ARM builtin");
2352   bool IsLdrex = BuiltinID == ARM::BI__builtin_arm_ldrex ||
2353                  BuiltinID == ARM::BI__builtin_arm_ldaex ||
2354                  BuiltinID == AArch64::BI__builtin_arm_ldrex ||
2355                  BuiltinID == AArch64::BI__builtin_arm_ldaex;
2356 
2357   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
2358 
2359   // Ensure that we have the proper number of arguments.
2360   if (checkArgCount(*this, TheCall, IsLdrex ? 1 : 2))
2361     return true;
2362 
2363   // Inspect the pointer argument of the atomic builtin.  This should always be
2364   // a pointer type, whose element is an integral scalar or pointer type.
2365   // Because it is a pointer type, we don't have to worry about any implicit
2366   // casts here.
2367   Expr *PointerArg = TheCall->getArg(IsLdrex ? 0 : 1);
2368   ExprResult PointerArgRes = DefaultFunctionArrayLvalueConversion(PointerArg);
2369   if (PointerArgRes.isInvalid())
2370     return true;
2371   PointerArg = PointerArgRes.get();
2372 
2373   const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>();
2374   if (!pointerType) {
2375     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer)
2376         << PointerArg->getType() << PointerArg->getSourceRange();
2377     return true;
2378   }
2379 
2380   // ldrex takes a "const volatile T*" and strex takes a "volatile T*". Our next
2381   // task is to insert the appropriate casts into the AST. First work out just
2382   // what the appropriate type is.
2383   QualType ValType = pointerType->getPointeeType();
2384   QualType AddrType = ValType.getUnqualifiedType().withVolatile();
2385   if (IsLdrex)
2386     AddrType.addConst();
2387 
2388   // Issue a warning if the cast is dodgy.
2389   CastKind CastNeeded = CK_NoOp;
2390   if (!AddrType.isAtLeastAsQualifiedAs(ValType)) {
2391     CastNeeded = CK_BitCast;
2392     Diag(DRE->getBeginLoc(), diag::ext_typecheck_convert_discards_qualifiers)
2393         << PointerArg->getType() << Context.getPointerType(AddrType)
2394         << AA_Passing << PointerArg->getSourceRange();
2395   }
2396 
2397   // Finally, do the cast and replace the argument with the corrected version.
2398   AddrType = Context.getPointerType(AddrType);
2399   PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded);
2400   if (PointerArgRes.isInvalid())
2401     return true;
2402   PointerArg = PointerArgRes.get();
2403 
2404   TheCall->setArg(IsLdrex ? 0 : 1, PointerArg);
2405 
2406   // In general, we allow ints, floats and pointers to be loaded and stored.
2407   if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
2408       !ValType->isBlockPointerType() && !ValType->isFloatingType()) {
2409     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer_intfltptr)
2410         << PointerArg->getType() << PointerArg->getSourceRange();
2411     return true;
2412   }
2413 
2414   // But ARM doesn't have instructions to deal with 128-bit versions.
2415   if (Context.getTypeSize(ValType) > MaxWidth) {
2416     assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate");
2417     Diag(DRE->getBeginLoc(), diag::err_atomic_exclusive_builtin_pointer_size)
2418         << PointerArg->getType() << PointerArg->getSourceRange();
2419     return true;
2420   }
2421 
2422   switch (ValType.getObjCLifetime()) {
2423   case Qualifiers::OCL_None:
2424   case Qualifiers::OCL_ExplicitNone:
2425     // okay
2426     break;
2427 
2428   case Qualifiers::OCL_Weak:
2429   case Qualifiers::OCL_Strong:
2430   case Qualifiers::OCL_Autoreleasing:
2431     Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership)
2432         << ValType << PointerArg->getSourceRange();
2433     return true;
2434   }
2435 
2436   if (IsLdrex) {
2437     TheCall->setType(ValType);
2438     return false;
2439   }
2440 
2441   // Initialize the argument to be stored.
2442   ExprResult ValArg = TheCall->getArg(0);
2443   InitializedEntity Entity = InitializedEntity::InitializeParameter(
2444       Context, ValType, /*consume*/ false);
2445   ValArg = PerformCopyInitialization(Entity, SourceLocation(), ValArg);
2446   if (ValArg.isInvalid())
2447     return true;
2448   TheCall->setArg(0, ValArg.get());
2449 
2450   // __builtin_arm_strex always returns an int. It's marked as such in the .def,
2451   // but the custom checker bypasses all default analysis.
2452   TheCall->setType(Context.IntTy);
2453   return false;
2454 }
2455 
2456 bool Sema::CheckARMBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID,
2457                                        CallExpr *TheCall) {
2458   if (BuiltinID == ARM::BI__builtin_arm_ldrex ||
2459       BuiltinID == ARM::BI__builtin_arm_ldaex ||
2460       BuiltinID == ARM::BI__builtin_arm_strex ||
2461       BuiltinID == ARM::BI__builtin_arm_stlex) {
2462     return CheckARMBuiltinExclusiveCall(BuiltinID, TheCall, 64);
2463   }
2464 
2465   if (BuiltinID == ARM::BI__builtin_arm_prefetch) {
2466     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) ||
2467       SemaBuiltinConstantArgRange(TheCall, 2, 0, 1);
2468   }
2469 
2470   if (BuiltinID == ARM::BI__builtin_arm_rsr64 ||
2471       BuiltinID == ARM::BI__builtin_arm_wsr64)
2472     return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 3, false);
2473 
2474   if (BuiltinID == ARM::BI__builtin_arm_rsr ||
2475       BuiltinID == ARM::BI__builtin_arm_rsrp ||
2476       BuiltinID == ARM::BI__builtin_arm_wsr ||
2477       BuiltinID == ARM::BI__builtin_arm_wsrp)
2478     return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true);
2479 
2480   if (CheckNeonBuiltinFunctionCall(TI, BuiltinID, TheCall))
2481     return true;
2482   if (CheckMVEBuiltinFunctionCall(BuiltinID, TheCall))
2483     return true;
2484   if (CheckCDEBuiltinFunctionCall(TI, BuiltinID, TheCall))
2485     return true;
2486 
2487   // For intrinsics which take an immediate value as part of the instruction,
2488   // range check them here.
2489   // FIXME: VFP Intrinsics should error if VFP not present.
2490   switch (BuiltinID) {
2491   default: return false;
2492   case ARM::BI__builtin_arm_ssat:
2493     return SemaBuiltinConstantArgRange(TheCall, 1, 1, 32);
2494   case ARM::BI__builtin_arm_usat:
2495     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 31);
2496   case ARM::BI__builtin_arm_ssat16:
2497     return SemaBuiltinConstantArgRange(TheCall, 1, 1, 16);
2498   case ARM::BI__builtin_arm_usat16:
2499     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15);
2500   case ARM::BI__builtin_arm_vcvtr_f:
2501   case ARM::BI__builtin_arm_vcvtr_d:
2502     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1);
2503   case ARM::BI__builtin_arm_dmb:
2504   case ARM::BI__builtin_arm_dsb:
2505   case ARM::BI__builtin_arm_isb:
2506   case ARM::BI__builtin_arm_dbg:
2507     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 15);
2508   case ARM::BI__builtin_arm_cdp:
2509   case ARM::BI__builtin_arm_cdp2:
2510   case ARM::BI__builtin_arm_mcr:
2511   case ARM::BI__builtin_arm_mcr2:
2512   case ARM::BI__builtin_arm_mrc:
2513   case ARM::BI__builtin_arm_mrc2:
2514   case ARM::BI__builtin_arm_mcrr:
2515   case ARM::BI__builtin_arm_mcrr2:
2516   case ARM::BI__builtin_arm_mrrc:
2517   case ARM::BI__builtin_arm_mrrc2:
2518   case ARM::BI__builtin_arm_ldc:
2519   case ARM::BI__builtin_arm_ldcl:
2520   case ARM::BI__builtin_arm_ldc2:
2521   case ARM::BI__builtin_arm_ldc2l:
2522   case ARM::BI__builtin_arm_stc:
2523   case ARM::BI__builtin_arm_stcl:
2524   case ARM::BI__builtin_arm_stc2:
2525   case ARM::BI__builtin_arm_stc2l:
2526     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 15) ||
2527            CheckARMCoprocessorImmediate(TI, TheCall->getArg(0),
2528                                         /*WantCDE*/ false);
2529   }
2530 }
2531 
2532 bool Sema::CheckAArch64BuiltinFunctionCall(const TargetInfo &TI,
2533                                            unsigned BuiltinID,
2534                                            CallExpr *TheCall) {
2535   if (BuiltinID == AArch64::BI__builtin_arm_ldrex ||
2536       BuiltinID == AArch64::BI__builtin_arm_ldaex ||
2537       BuiltinID == AArch64::BI__builtin_arm_strex ||
2538       BuiltinID == AArch64::BI__builtin_arm_stlex) {
2539     return CheckARMBuiltinExclusiveCall(BuiltinID, TheCall, 128);
2540   }
2541 
2542   if (BuiltinID == AArch64::BI__builtin_arm_prefetch) {
2543     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) ||
2544       SemaBuiltinConstantArgRange(TheCall, 2, 0, 2) ||
2545       SemaBuiltinConstantArgRange(TheCall, 3, 0, 1) ||
2546       SemaBuiltinConstantArgRange(TheCall, 4, 0, 1);
2547   }
2548 
2549   if (BuiltinID == AArch64::BI__builtin_arm_rsr64 ||
2550       BuiltinID == AArch64::BI__builtin_arm_wsr64)
2551     return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true);
2552 
2553   // Memory Tagging Extensions (MTE) Intrinsics
2554   if (BuiltinID == AArch64::BI__builtin_arm_irg ||
2555       BuiltinID == AArch64::BI__builtin_arm_addg ||
2556       BuiltinID == AArch64::BI__builtin_arm_gmi ||
2557       BuiltinID == AArch64::BI__builtin_arm_ldg ||
2558       BuiltinID == AArch64::BI__builtin_arm_stg ||
2559       BuiltinID == AArch64::BI__builtin_arm_subp) {
2560     return SemaBuiltinARMMemoryTaggingCall(BuiltinID, TheCall);
2561   }
2562 
2563   if (BuiltinID == AArch64::BI__builtin_arm_rsr ||
2564       BuiltinID == AArch64::BI__builtin_arm_rsrp ||
2565       BuiltinID == AArch64::BI__builtin_arm_wsr ||
2566       BuiltinID == AArch64::BI__builtin_arm_wsrp)
2567     return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true);
2568 
2569   // Only check the valid encoding range. Any constant in this range would be
2570   // converted to a register of the form S1_2_C3_C4_5. Let the hardware throw
2571   // an exception for incorrect registers. This matches MSVC behavior.
2572   if (BuiltinID == AArch64::BI_ReadStatusReg ||
2573       BuiltinID == AArch64::BI_WriteStatusReg)
2574     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 0x7fff);
2575 
2576   if (BuiltinID == AArch64::BI__getReg)
2577     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31);
2578 
2579   if (CheckNeonBuiltinFunctionCall(TI, BuiltinID, TheCall))
2580     return true;
2581 
2582   if (CheckSVEBuiltinFunctionCall(BuiltinID, TheCall))
2583     return true;
2584 
2585   // For intrinsics which take an immediate value as part of the instruction,
2586   // range check them here.
2587   unsigned i = 0, l = 0, u = 0;
2588   switch (BuiltinID) {
2589   default: return false;
2590   case AArch64::BI__builtin_arm_dmb:
2591   case AArch64::BI__builtin_arm_dsb:
2592   case AArch64::BI__builtin_arm_isb: l = 0; u = 15; break;
2593   case AArch64::BI__builtin_arm_tcancel: l = 0; u = 65535; break;
2594   }
2595 
2596   return SemaBuiltinConstantArgRange(TheCall, i, l, u + l);
2597 }
2598 
2599 static bool isValidBPFPreserveFieldInfoArg(Expr *Arg) {
2600   if (Arg->getType()->getAsPlaceholderType())
2601     return false;
2602 
2603   // The first argument needs to be a record field access.
2604   // If it is an array element access, we delay decision
2605   // to BPF backend to check whether the access is a
2606   // field access or not.
2607   return (Arg->IgnoreParens()->getObjectKind() == OK_BitField ||
2608           dyn_cast<MemberExpr>(Arg->IgnoreParens()) ||
2609           dyn_cast<ArraySubscriptExpr>(Arg->IgnoreParens()));
2610 }
2611 
2612 static bool isEltOfVectorTy(ASTContext &Context, CallExpr *Call, Sema &S,
2613                             QualType VectorTy, QualType EltTy) {
2614   QualType VectorEltTy = VectorTy->castAs<VectorType>()->getElementType();
2615   if (!Context.hasSameType(VectorEltTy, EltTy)) {
2616     S.Diag(Call->getBeginLoc(), diag::err_typecheck_call_different_arg_types)
2617         << Call->getSourceRange() << VectorEltTy << EltTy;
2618     return false;
2619   }
2620   return true;
2621 }
2622 
2623 static bool isValidBPFPreserveTypeInfoArg(Expr *Arg) {
2624   QualType ArgType = Arg->getType();
2625   if (ArgType->getAsPlaceholderType())
2626     return false;
2627 
2628   // for TYPE_EXISTENCE/TYPE_SIZEOF reloc type
2629   // format:
2630   //   1. __builtin_preserve_type_info(*(<type> *)0, flag);
2631   //   2. <type> var;
2632   //      __builtin_preserve_type_info(var, flag);
2633   if (!dyn_cast<DeclRefExpr>(Arg->IgnoreParens()) &&
2634       !dyn_cast<UnaryOperator>(Arg->IgnoreParens()))
2635     return false;
2636 
2637   // Typedef type.
2638   if (ArgType->getAs<TypedefType>())
2639     return true;
2640 
2641   // Record type or Enum type.
2642   const Type *Ty = ArgType->getUnqualifiedDesugaredType();
2643   if (const auto *RT = Ty->getAs<RecordType>()) {
2644     if (!RT->getDecl()->getDeclName().isEmpty())
2645       return true;
2646   } else if (const auto *ET = Ty->getAs<EnumType>()) {
2647     if (!ET->getDecl()->getDeclName().isEmpty())
2648       return true;
2649   }
2650 
2651   return false;
2652 }
2653 
2654 static bool isValidBPFPreserveEnumValueArg(Expr *Arg) {
2655   QualType ArgType = Arg->getType();
2656   if (ArgType->getAsPlaceholderType())
2657     return false;
2658 
2659   // for ENUM_VALUE_EXISTENCE/ENUM_VALUE reloc type
2660   // format:
2661   //   __builtin_preserve_enum_value(*(<enum_type> *)<enum_value>,
2662   //                                 flag);
2663   const auto *UO = dyn_cast<UnaryOperator>(Arg->IgnoreParens());
2664   if (!UO)
2665     return false;
2666 
2667   const auto *CE = dyn_cast<CStyleCastExpr>(UO->getSubExpr());
2668   if (!CE)
2669     return false;
2670   if (CE->getCastKind() != CK_IntegralToPointer &&
2671       CE->getCastKind() != CK_NullToPointer)
2672     return false;
2673 
2674   // The integer must be from an EnumConstantDecl.
2675   const auto *DR = dyn_cast<DeclRefExpr>(CE->getSubExpr());
2676   if (!DR)
2677     return false;
2678 
2679   const EnumConstantDecl *Enumerator =
2680       dyn_cast<EnumConstantDecl>(DR->getDecl());
2681   if (!Enumerator)
2682     return false;
2683 
2684   // The type must be EnumType.
2685   const Type *Ty = ArgType->getUnqualifiedDesugaredType();
2686   const auto *ET = Ty->getAs<EnumType>();
2687   if (!ET)
2688     return false;
2689 
2690   // The enum value must be supported.
2691   for (auto *EDI : ET->getDecl()->enumerators()) {
2692     if (EDI == Enumerator)
2693       return true;
2694   }
2695 
2696   return false;
2697 }
2698 
2699 bool Sema::CheckBPFBuiltinFunctionCall(unsigned BuiltinID,
2700                                        CallExpr *TheCall) {
2701   assert((BuiltinID == BPF::BI__builtin_preserve_field_info ||
2702           BuiltinID == BPF::BI__builtin_btf_type_id ||
2703           BuiltinID == BPF::BI__builtin_preserve_type_info ||
2704           BuiltinID == BPF::BI__builtin_preserve_enum_value) &&
2705          "unexpected BPF builtin");
2706 
2707   if (checkArgCount(*this, TheCall, 2))
2708     return true;
2709 
2710   // The second argument needs to be a constant int
2711   Expr *Arg = TheCall->getArg(1);
2712   Optional<llvm::APSInt> Value = Arg->getIntegerConstantExpr(Context);
2713   diag::kind kind;
2714   if (!Value) {
2715     if (BuiltinID == BPF::BI__builtin_preserve_field_info)
2716       kind = diag::err_preserve_field_info_not_const;
2717     else if (BuiltinID == BPF::BI__builtin_btf_type_id)
2718       kind = diag::err_btf_type_id_not_const;
2719     else if (BuiltinID == BPF::BI__builtin_preserve_type_info)
2720       kind = diag::err_preserve_type_info_not_const;
2721     else
2722       kind = diag::err_preserve_enum_value_not_const;
2723     Diag(Arg->getBeginLoc(), kind) << 2 << Arg->getSourceRange();
2724     return true;
2725   }
2726 
2727   // The first argument
2728   Arg = TheCall->getArg(0);
2729   bool InvalidArg = false;
2730   bool ReturnUnsignedInt = true;
2731   if (BuiltinID == BPF::BI__builtin_preserve_field_info) {
2732     if (!isValidBPFPreserveFieldInfoArg(Arg)) {
2733       InvalidArg = true;
2734       kind = diag::err_preserve_field_info_not_field;
2735     }
2736   } else if (BuiltinID == BPF::BI__builtin_preserve_type_info) {
2737     if (!isValidBPFPreserveTypeInfoArg(Arg)) {
2738       InvalidArg = true;
2739       kind = diag::err_preserve_type_info_invalid;
2740     }
2741   } else if (BuiltinID == BPF::BI__builtin_preserve_enum_value) {
2742     if (!isValidBPFPreserveEnumValueArg(Arg)) {
2743       InvalidArg = true;
2744       kind = diag::err_preserve_enum_value_invalid;
2745     }
2746     ReturnUnsignedInt = false;
2747   } else if (BuiltinID == BPF::BI__builtin_btf_type_id) {
2748     ReturnUnsignedInt = false;
2749   }
2750 
2751   if (InvalidArg) {
2752     Diag(Arg->getBeginLoc(), kind) << 1 << Arg->getSourceRange();
2753     return true;
2754   }
2755 
2756   if (ReturnUnsignedInt)
2757     TheCall->setType(Context.UnsignedIntTy);
2758   else
2759     TheCall->setType(Context.UnsignedLongTy);
2760   return false;
2761 }
2762 
2763 bool Sema::CheckHexagonBuiltinArgument(unsigned BuiltinID, CallExpr *TheCall) {
2764   struct ArgInfo {
2765     uint8_t OpNum;
2766     bool IsSigned;
2767     uint8_t BitWidth;
2768     uint8_t Align;
2769   };
2770   struct BuiltinInfo {
2771     unsigned BuiltinID;
2772     ArgInfo Infos[2];
2773   };
2774 
2775   static BuiltinInfo Infos[] = {
2776     { Hexagon::BI__builtin_circ_ldd,                  {{ 3, true,  4,  3 }} },
2777     { Hexagon::BI__builtin_circ_ldw,                  {{ 3, true,  4,  2 }} },
2778     { Hexagon::BI__builtin_circ_ldh,                  {{ 3, true,  4,  1 }} },
2779     { Hexagon::BI__builtin_circ_lduh,                 {{ 3, true,  4,  1 }} },
2780     { Hexagon::BI__builtin_circ_ldb,                  {{ 3, true,  4,  0 }} },
2781     { Hexagon::BI__builtin_circ_ldub,                 {{ 3, true,  4,  0 }} },
2782     { Hexagon::BI__builtin_circ_std,                  {{ 3, true,  4,  3 }} },
2783     { Hexagon::BI__builtin_circ_stw,                  {{ 3, true,  4,  2 }} },
2784     { Hexagon::BI__builtin_circ_sth,                  {{ 3, true,  4,  1 }} },
2785     { Hexagon::BI__builtin_circ_sthhi,                {{ 3, true,  4,  1 }} },
2786     { Hexagon::BI__builtin_circ_stb,                  {{ 3, true,  4,  0 }} },
2787 
2788     { Hexagon::BI__builtin_HEXAGON_L2_loadrub_pci,    {{ 1, true,  4,  0 }} },
2789     { Hexagon::BI__builtin_HEXAGON_L2_loadrb_pci,     {{ 1, true,  4,  0 }} },
2790     { Hexagon::BI__builtin_HEXAGON_L2_loadruh_pci,    {{ 1, true,  4,  1 }} },
2791     { Hexagon::BI__builtin_HEXAGON_L2_loadrh_pci,     {{ 1, true,  4,  1 }} },
2792     { Hexagon::BI__builtin_HEXAGON_L2_loadri_pci,     {{ 1, true,  4,  2 }} },
2793     { Hexagon::BI__builtin_HEXAGON_L2_loadrd_pci,     {{ 1, true,  4,  3 }} },
2794     { Hexagon::BI__builtin_HEXAGON_S2_storerb_pci,    {{ 1, true,  4,  0 }} },
2795     { Hexagon::BI__builtin_HEXAGON_S2_storerh_pci,    {{ 1, true,  4,  1 }} },
2796     { Hexagon::BI__builtin_HEXAGON_S2_storerf_pci,    {{ 1, true,  4,  1 }} },
2797     { Hexagon::BI__builtin_HEXAGON_S2_storeri_pci,    {{ 1, true,  4,  2 }} },
2798     { Hexagon::BI__builtin_HEXAGON_S2_storerd_pci,    {{ 1, true,  4,  3 }} },
2799 
2800     { Hexagon::BI__builtin_HEXAGON_A2_combineii,      {{ 1, true,  8,  0 }} },
2801     { Hexagon::BI__builtin_HEXAGON_A2_tfrih,          {{ 1, false, 16, 0 }} },
2802     { Hexagon::BI__builtin_HEXAGON_A2_tfril,          {{ 1, false, 16, 0 }} },
2803     { Hexagon::BI__builtin_HEXAGON_A2_tfrpi,          {{ 0, true,  8,  0 }} },
2804     { Hexagon::BI__builtin_HEXAGON_A4_bitspliti,      {{ 1, false, 5,  0 }} },
2805     { Hexagon::BI__builtin_HEXAGON_A4_cmpbeqi,        {{ 1, false, 8,  0 }} },
2806     { Hexagon::BI__builtin_HEXAGON_A4_cmpbgti,        {{ 1, true,  8,  0 }} },
2807     { Hexagon::BI__builtin_HEXAGON_A4_cround_ri,      {{ 1, false, 5,  0 }} },
2808     { Hexagon::BI__builtin_HEXAGON_A4_round_ri,       {{ 1, false, 5,  0 }} },
2809     { Hexagon::BI__builtin_HEXAGON_A4_round_ri_sat,   {{ 1, false, 5,  0 }} },
2810     { Hexagon::BI__builtin_HEXAGON_A4_vcmpbeqi,       {{ 1, false, 8,  0 }} },
2811     { Hexagon::BI__builtin_HEXAGON_A4_vcmpbgti,       {{ 1, true,  8,  0 }} },
2812     { Hexagon::BI__builtin_HEXAGON_A4_vcmpbgtui,      {{ 1, false, 7,  0 }} },
2813     { Hexagon::BI__builtin_HEXAGON_A4_vcmpheqi,       {{ 1, true,  8,  0 }} },
2814     { Hexagon::BI__builtin_HEXAGON_A4_vcmphgti,       {{ 1, true,  8,  0 }} },
2815     { Hexagon::BI__builtin_HEXAGON_A4_vcmphgtui,      {{ 1, false, 7,  0 }} },
2816     { Hexagon::BI__builtin_HEXAGON_A4_vcmpweqi,       {{ 1, true,  8,  0 }} },
2817     { Hexagon::BI__builtin_HEXAGON_A4_vcmpwgti,       {{ 1, true,  8,  0 }} },
2818     { Hexagon::BI__builtin_HEXAGON_A4_vcmpwgtui,      {{ 1, false, 7,  0 }} },
2819     { Hexagon::BI__builtin_HEXAGON_C2_bitsclri,       {{ 1, false, 6,  0 }} },
2820     { Hexagon::BI__builtin_HEXAGON_C2_muxii,          {{ 2, true,  8,  0 }} },
2821     { Hexagon::BI__builtin_HEXAGON_C4_nbitsclri,      {{ 1, false, 6,  0 }} },
2822     { Hexagon::BI__builtin_HEXAGON_F2_dfclass,        {{ 1, false, 5,  0 }} },
2823     { Hexagon::BI__builtin_HEXAGON_F2_dfimm_n,        {{ 0, false, 10, 0 }} },
2824     { Hexagon::BI__builtin_HEXAGON_F2_dfimm_p,        {{ 0, false, 10, 0 }} },
2825     { Hexagon::BI__builtin_HEXAGON_F2_sfclass,        {{ 1, false, 5,  0 }} },
2826     { Hexagon::BI__builtin_HEXAGON_F2_sfimm_n,        {{ 0, false, 10, 0 }} },
2827     { Hexagon::BI__builtin_HEXAGON_F2_sfimm_p,        {{ 0, false, 10, 0 }} },
2828     { Hexagon::BI__builtin_HEXAGON_M4_mpyri_addi,     {{ 2, false, 6,  0 }} },
2829     { Hexagon::BI__builtin_HEXAGON_M4_mpyri_addr_u2,  {{ 1, false, 6,  2 }} },
2830     { Hexagon::BI__builtin_HEXAGON_S2_addasl_rrri,    {{ 2, false, 3,  0 }} },
2831     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_acc,    {{ 2, false, 6,  0 }} },
2832     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_and,    {{ 2, false, 6,  0 }} },
2833     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p,        {{ 1, false, 6,  0 }} },
2834     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_nac,    {{ 2, false, 6,  0 }} },
2835     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_or,     {{ 2, false, 6,  0 }} },
2836     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_xacc,   {{ 2, false, 6,  0 }} },
2837     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_acc,    {{ 2, false, 5,  0 }} },
2838     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_and,    {{ 2, false, 5,  0 }} },
2839     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r,        {{ 1, false, 5,  0 }} },
2840     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_nac,    {{ 2, false, 5,  0 }} },
2841     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_or,     {{ 2, false, 5,  0 }} },
2842     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_sat,    {{ 1, false, 5,  0 }} },
2843     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_xacc,   {{ 2, false, 5,  0 }} },
2844     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_vh,       {{ 1, false, 4,  0 }} },
2845     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_vw,       {{ 1, false, 5,  0 }} },
2846     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_acc,    {{ 2, false, 6,  0 }} },
2847     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_and,    {{ 2, false, 6,  0 }} },
2848     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p,        {{ 1, false, 6,  0 }} },
2849     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_nac,    {{ 2, false, 6,  0 }} },
2850     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_or,     {{ 2, false, 6,  0 }} },
2851     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_rnd_goodsyntax,
2852                                                       {{ 1, false, 6,  0 }} },
2853     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_rnd,    {{ 1, false, 6,  0 }} },
2854     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_acc,    {{ 2, false, 5,  0 }} },
2855     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_and,    {{ 2, false, 5,  0 }} },
2856     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r,        {{ 1, false, 5,  0 }} },
2857     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_nac,    {{ 2, false, 5,  0 }} },
2858     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_or,     {{ 2, false, 5,  0 }} },
2859     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_rnd_goodsyntax,
2860                                                       {{ 1, false, 5,  0 }} },
2861     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_rnd,    {{ 1, false, 5,  0 }} },
2862     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_svw_trun, {{ 1, false, 5,  0 }} },
2863     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_vh,       {{ 1, false, 4,  0 }} },
2864     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_vw,       {{ 1, false, 5,  0 }} },
2865     { Hexagon::BI__builtin_HEXAGON_S2_clrbit_i,       {{ 1, false, 5,  0 }} },
2866     { Hexagon::BI__builtin_HEXAGON_S2_extractu,       {{ 1, false, 5,  0 },
2867                                                        { 2, false, 5,  0 }} },
2868     { Hexagon::BI__builtin_HEXAGON_S2_extractup,      {{ 1, false, 6,  0 },
2869                                                        { 2, false, 6,  0 }} },
2870     { Hexagon::BI__builtin_HEXAGON_S2_insert,         {{ 2, false, 5,  0 },
2871                                                        { 3, false, 5,  0 }} },
2872     { Hexagon::BI__builtin_HEXAGON_S2_insertp,        {{ 2, false, 6,  0 },
2873                                                        { 3, false, 6,  0 }} },
2874     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_acc,    {{ 2, false, 6,  0 }} },
2875     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_and,    {{ 2, false, 6,  0 }} },
2876     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p,        {{ 1, false, 6,  0 }} },
2877     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_nac,    {{ 2, false, 6,  0 }} },
2878     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_or,     {{ 2, false, 6,  0 }} },
2879     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_xacc,   {{ 2, false, 6,  0 }} },
2880     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_acc,    {{ 2, false, 5,  0 }} },
2881     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_and,    {{ 2, false, 5,  0 }} },
2882     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r,        {{ 1, false, 5,  0 }} },
2883     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_nac,    {{ 2, false, 5,  0 }} },
2884     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_or,     {{ 2, false, 5,  0 }} },
2885     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_xacc,   {{ 2, false, 5,  0 }} },
2886     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_vh,       {{ 1, false, 4,  0 }} },
2887     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_vw,       {{ 1, false, 5,  0 }} },
2888     { Hexagon::BI__builtin_HEXAGON_S2_setbit_i,       {{ 1, false, 5,  0 }} },
2889     { Hexagon::BI__builtin_HEXAGON_S2_tableidxb_goodsyntax,
2890                                                       {{ 2, false, 4,  0 },
2891                                                        { 3, false, 5,  0 }} },
2892     { Hexagon::BI__builtin_HEXAGON_S2_tableidxd_goodsyntax,
2893                                                       {{ 2, false, 4,  0 },
2894                                                        { 3, false, 5,  0 }} },
2895     { Hexagon::BI__builtin_HEXAGON_S2_tableidxh_goodsyntax,
2896                                                       {{ 2, false, 4,  0 },
2897                                                        { 3, false, 5,  0 }} },
2898     { Hexagon::BI__builtin_HEXAGON_S2_tableidxw_goodsyntax,
2899                                                       {{ 2, false, 4,  0 },
2900                                                        { 3, false, 5,  0 }} },
2901     { Hexagon::BI__builtin_HEXAGON_S2_togglebit_i,    {{ 1, false, 5,  0 }} },
2902     { Hexagon::BI__builtin_HEXAGON_S2_tstbit_i,       {{ 1, false, 5,  0 }} },
2903     { Hexagon::BI__builtin_HEXAGON_S2_valignib,       {{ 2, false, 3,  0 }} },
2904     { Hexagon::BI__builtin_HEXAGON_S2_vspliceib,      {{ 2, false, 3,  0 }} },
2905     { Hexagon::BI__builtin_HEXAGON_S4_addi_asl_ri,    {{ 2, false, 5,  0 }} },
2906     { Hexagon::BI__builtin_HEXAGON_S4_addi_lsr_ri,    {{ 2, false, 5,  0 }} },
2907     { Hexagon::BI__builtin_HEXAGON_S4_andi_asl_ri,    {{ 2, false, 5,  0 }} },
2908     { Hexagon::BI__builtin_HEXAGON_S4_andi_lsr_ri,    {{ 2, false, 5,  0 }} },
2909     { Hexagon::BI__builtin_HEXAGON_S4_clbaddi,        {{ 1, true , 6,  0 }} },
2910     { Hexagon::BI__builtin_HEXAGON_S4_clbpaddi,       {{ 1, true,  6,  0 }} },
2911     { Hexagon::BI__builtin_HEXAGON_S4_extract,        {{ 1, false, 5,  0 },
2912                                                        { 2, false, 5,  0 }} },
2913     { Hexagon::BI__builtin_HEXAGON_S4_extractp,       {{ 1, false, 6,  0 },
2914                                                        { 2, false, 6,  0 }} },
2915     { Hexagon::BI__builtin_HEXAGON_S4_lsli,           {{ 0, true,  6,  0 }} },
2916     { Hexagon::BI__builtin_HEXAGON_S4_ntstbit_i,      {{ 1, false, 5,  0 }} },
2917     { Hexagon::BI__builtin_HEXAGON_S4_ori_asl_ri,     {{ 2, false, 5,  0 }} },
2918     { Hexagon::BI__builtin_HEXAGON_S4_ori_lsr_ri,     {{ 2, false, 5,  0 }} },
2919     { Hexagon::BI__builtin_HEXAGON_S4_subi_asl_ri,    {{ 2, false, 5,  0 }} },
2920     { Hexagon::BI__builtin_HEXAGON_S4_subi_lsr_ri,    {{ 2, false, 5,  0 }} },
2921     { Hexagon::BI__builtin_HEXAGON_S4_vrcrotate_acc,  {{ 3, false, 2,  0 }} },
2922     { Hexagon::BI__builtin_HEXAGON_S4_vrcrotate,      {{ 2, false, 2,  0 }} },
2923     { Hexagon::BI__builtin_HEXAGON_S5_asrhub_rnd_sat_goodsyntax,
2924                                                       {{ 1, false, 4,  0 }} },
2925     { Hexagon::BI__builtin_HEXAGON_S5_asrhub_sat,     {{ 1, false, 4,  0 }} },
2926     { Hexagon::BI__builtin_HEXAGON_S5_vasrhrnd_goodsyntax,
2927                                                       {{ 1, false, 4,  0 }} },
2928     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p,        {{ 1, false, 6,  0 }} },
2929     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_acc,    {{ 2, false, 6,  0 }} },
2930     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_and,    {{ 2, false, 6,  0 }} },
2931     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_nac,    {{ 2, false, 6,  0 }} },
2932     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_or,     {{ 2, false, 6,  0 }} },
2933     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_xacc,   {{ 2, false, 6,  0 }} },
2934     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r,        {{ 1, false, 5,  0 }} },
2935     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_acc,    {{ 2, false, 5,  0 }} },
2936     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_and,    {{ 2, false, 5,  0 }} },
2937     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_nac,    {{ 2, false, 5,  0 }} },
2938     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_or,     {{ 2, false, 5,  0 }} },
2939     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_xacc,   {{ 2, false, 5,  0 }} },
2940     { Hexagon::BI__builtin_HEXAGON_V6_valignbi,       {{ 2, false, 3,  0 }} },
2941     { Hexagon::BI__builtin_HEXAGON_V6_valignbi_128B,  {{ 2, false, 3,  0 }} },
2942     { Hexagon::BI__builtin_HEXAGON_V6_vlalignbi,      {{ 2, false, 3,  0 }} },
2943     { Hexagon::BI__builtin_HEXAGON_V6_vlalignbi_128B, {{ 2, false, 3,  0 }} },
2944     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi,      {{ 2, false, 1,  0 }} },
2945     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_128B, {{ 2, false, 1,  0 }} },
2946     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_acc,  {{ 3, false, 1,  0 }} },
2947     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_acc_128B,
2948                                                       {{ 3, false, 1,  0 }} },
2949     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi,       {{ 2, false, 1,  0 }} },
2950     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_128B,  {{ 2, false, 1,  0 }} },
2951     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_acc,   {{ 3, false, 1,  0 }} },
2952     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_acc_128B,
2953                                                       {{ 3, false, 1,  0 }} },
2954     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi,       {{ 2, false, 1,  0 }} },
2955     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_128B,  {{ 2, false, 1,  0 }} },
2956     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_acc,   {{ 3, false, 1,  0 }} },
2957     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_acc_128B,
2958                                                       {{ 3, false, 1,  0 }} },
2959   };
2960 
2961   // Use a dynamically initialized static to sort the table exactly once on
2962   // first run.
2963   static const bool SortOnce =
2964       (llvm::sort(Infos,
2965                  [](const BuiltinInfo &LHS, const BuiltinInfo &RHS) {
2966                    return LHS.BuiltinID < RHS.BuiltinID;
2967                  }),
2968        true);
2969   (void)SortOnce;
2970 
2971   const BuiltinInfo *F = llvm::partition_point(
2972       Infos, [=](const BuiltinInfo &BI) { return BI.BuiltinID < BuiltinID; });
2973   if (F == std::end(Infos) || F->BuiltinID != BuiltinID)
2974     return false;
2975 
2976   bool Error = false;
2977 
2978   for (const ArgInfo &A : F->Infos) {
2979     // Ignore empty ArgInfo elements.
2980     if (A.BitWidth == 0)
2981       continue;
2982 
2983     int32_t Min = A.IsSigned ? -(1 << (A.BitWidth - 1)) : 0;
2984     int32_t Max = (1 << (A.IsSigned ? A.BitWidth - 1 : A.BitWidth)) - 1;
2985     if (!A.Align) {
2986       Error |= SemaBuiltinConstantArgRange(TheCall, A.OpNum, Min, Max);
2987     } else {
2988       unsigned M = 1 << A.Align;
2989       Min *= M;
2990       Max *= M;
2991       Error |= SemaBuiltinConstantArgRange(TheCall, A.OpNum, Min, Max);
2992       Error |= SemaBuiltinConstantArgMultiple(TheCall, A.OpNum, M);
2993     }
2994   }
2995   return Error;
2996 }
2997 
2998 bool Sema::CheckHexagonBuiltinFunctionCall(unsigned BuiltinID,
2999                                            CallExpr *TheCall) {
3000   return CheckHexagonBuiltinArgument(BuiltinID, TheCall);
3001 }
3002 
3003 bool Sema::CheckMipsBuiltinFunctionCall(const TargetInfo &TI,
3004                                         unsigned BuiltinID, CallExpr *TheCall) {
3005   return CheckMipsBuiltinCpu(TI, BuiltinID, TheCall) ||
3006          CheckMipsBuiltinArgument(BuiltinID, TheCall);
3007 }
3008 
3009 bool Sema::CheckMipsBuiltinCpu(const TargetInfo &TI, unsigned BuiltinID,
3010                                CallExpr *TheCall) {
3011 
3012   if (Mips::BI__builtin_mips_addu_qb <= BuiltinID &&
3013       BuiltinID <= Mips::BI__builtin_mips_lwx) {
3014     if (!TI.hasFeature("dsp"))
3015       return Diag(TheCall->getBeginLoc(), diag::err_mips_builtin_requires_dsp);
3016   }
3017 
3018   if (Mips::BI__builtin_mips_absq_s_qb <= BuiltinID &&
3019       BuiltinID <= Mips::BI__builtin_mips_subuh_r_qb) {
3020     if (!TI.hasFeature("dspr2"))
3021       return Diag(TheCall->getBeginLoc(),
3022                   diag::err_mips_builtin_requires_dspr2);
3023   }
3024 
3025   if (Mips::BI__builtin_msa_add_a_b <= BuiltinID &&
3026       BuiltinID <= Mips::BI__builtin_msa_xori_b) {
3027     if (!TI.hasFeature("msa"))
3028       return Diag(TheCall->getBeginLoc(), diag::err_mips_builtin_requires_msa);
3029   }
3030 
3031   return false;
3032 }
3033 
3034 // CheckMipsBuiltinArgument - Checks the constant value passed to the
3035 // intrinsic is correct. The switch statement is ordered by DSP, MSA. The
3036 // ordering for DSP is unspecified. MSA is ordered by the data format used
3037 // by the underlying instruction i.e., df/m, df/n and then by size.
3038 //
3039 // FIXME: The size tests here should instead be tablegen'd along with the
3040 //        definitions from include/clang/Basic/BuiltinsMips.def.
3041 // FIXME: GCC is strict on signedness for some of these intrinsics, we should
3042 //        be too.
3043 bool Sema::CheckMipsBuiltinArgument(unsigned BuiltinID, CallExpr *TheCall) {
3044   unsigned i = 0, l = 0, u = 0, m = 0;
3045   switch (BuiltinID) {
3046   default: return false;
3047   case Mips::BI__builtin_mips_wrdsp: i = 1; l = 0; u = 63; break;
3048   case Mips::BI__builtin_mips_rddsp: i = 0; l = 0; u = 63; break;
3049   case Mips::BI__builtin_mips_append: i = 2; l = 0; u = 31; break;
3050   case Mips::BI__builtin_mips_balign: i = 2; l = 0; u = 3; break;
3051   case Mips::BI__builtin_mips_precr_sra_ph_w: i = 2; l = 0; u = 31; break;
3052   case Mips::BI__builtin_mips_precr_sra_r_ph_w: i = 2; l = 0; u = 31; break;
3053   case Mips::BI__builtin_mips_prepend: i = 2; l = 0; u = 31; break;
3054   // MSA intrinsics. Instructions (which the intrinsics maps to) which use the
3055   // df/m field.
3056   // These intrinsics take an unsigned 3 bit immediate.
3057   case Mips::BI__builtin_msa_bclri_b:
3058   case Mips::BI__builtin_msa_bnegi_b:
3059   case Mips::BI__builtin_msa_bseti_b:
3060   case Mips::BI__builtin_msa_sat_s_b:
3061   case Mips::BI__builtin_msa_sat_u_b:
3062   case Mips::BI__builtin_msa_slli_b:
3063   case Mips::BI__builtin_msa_srai_b:
3064   case Mips::BI__builtin_msa_srari_b:
3065   case Mips::BI__builtin_msa_srli_b:
3066   case Mips::BI__builtin_msa_srlri_b: i = 1; l = 0; u = 7; break;
3067   case Mips::BI__builtin_msa_binsli_b:
3068   case Mips::BI__builtin_msa_binsri_b: i = 2; l = 0; u = 7; break;
3069   // These intrinsics take an unsigned 4 bit immediate.
3070   case Mips::BI__builtin_msa_bclri_h:
3071   case Mips::BI__builtin_msa_bnegi_h:
3072   case Mips::BI__builtin_msa_bseti_h:
3073   case Mips::BI__builtin_msa_sat_s_h:
3074   case Mips::BI__builtin_msa_sat_u_h:
3075   case Mips::BI__builtin_msa_slli_h:
3076   case Mips::BI__builtin_msa_srai_h:
3077   case Mips::BI__builtin_msa_srari_h:
3078   case Mips::BI__builtin_msa_srli_h:
3079   case Mips::BI__builtin_msa_srlri_h: i = 1; l = 0; u = 15; break;
3080   case Mips::BI__builtin_msa_binsli_h:
3081   case Mips::BI__builtin_msa_binsri_h: i = 2; l = 0; u = 15; break;
3082   // These intrinsics take an unsigned 5 bit immediate.
3083   // The first block of intrinsics actually have an unsigned 5 bit field,
3084   // not a df/n field.
3085   case Mips::BI__builtin_msa_cfcmsa:
3086   case Mips::BI__builtin_msa_ctcmsa: i = 0; l = 0; u = 31; break;
3087   case Mips::BI__builtin_msa_clei_u_b:
3088   case Mips::BI__builtin_msa_clei_u_h:
3089   case Mips::BI__builtin_msa_clei_u_w:
3090   case Mips::BI__builtin_msa_clei_u_d:
3091   case Mips::BI__builtin_msa_clti_u_b:
3092   case Mips::BI__builtin_msa_clti_u_h:
3093   case Mips::BI__builtin_msa_clti_u_w:
3094   case Mips::BI__builtin_msa_clti_u_d:
3095   case Mips::BI__builtin_msa_maxi_u_b:
3096   case Mips::BI__builtin_msa_maxi_u_h:
3097   case Mips::BI__builtin_msa_maxi_u_w:
3098   case Mips::BI__builtin_msa_maxi_u_d:
3099   case Mips::BI__builtin_msa_mini_u_b:
3100   case Mips::BI__builtin_msa_mini_u_h:
3101   case Mips::BI__builtin_msa_mini_u_w:
3102   case Mips::BI__builtin_msa_mini_u_d:
3103   case Mips::BI__builtin_msa_addvi_b:
3104   case Mips::BI__builtin_msa_addvi_h:
3105   case Mips::BI__builtin_msa_addvi_w:
3106   case Mips::BI__builtin_msa_addvi_d:
3107   case Mips::BI__builtin_msa_bclri_w:
3108   case Mips::BI__builtin_msa_bnegi_w:
3109   case Mips::BI__builtin_msa_bseti_w:
3110   case Mips::BI__builtin_msa_sat_s_w:
3111   case Mips::BI__builtin_msa_sat_u_w:
3112   case Mips::BI__builtin_msa_slli_w:
3113   case Mips::BI__builtin_msa_srai_w:
3114   case Mips::BI__builtin_msa_srari_w:
3115   case Mips::BI__builtin_msa_srli_w:
3116   case Mips::BI__builtin_msa_srlri_w:
3117   case Mips::BI__builtin_msa_subvi_b:
3118   case Mips::BI__builtin_msa_subvi_h:
3119   case Mips::BI__builtin_msa_subvi_w:
3120   case Mips::BI__builtin_msa_subvi_d: i = 1; l = 0; u = 31; break;
3121   case Mips::BI__builtin_msa_binsli_w:
3122   case Mips::BI__builtin_msa_binsri_w: i = 2; l = 0; u = 31; break;
3123   // These intrinsics take an unsigned 6 bit immediate.
3124   case Mips::BI__builtin_msa_bclri_d:
3125   case Mips::BI__builtin_msa_bnegi_d:
3126   case Mips::BI__builtin_msa_bseti_d:
3127   case Mips::BI__builtin_msa_sat_s_d:
3128   case Mips::BI__builtin_msa_sat_u_d:
3129   case Mips::BI__builtin_msa_slli_d:
3130   case Mips::BI__builtin_msa_srai_d:
3131   case Mips::BI__builtin_msa_srari_d:
3132   case Mips::BI__builtin_msa_srli_d:
3133   case Mips::BI__builtin_msa_srlri_d: i = 1; l = 0; u = 63; break;
3134   case Mips::BI__builtin_msa_binsli_d:
3135   case Mips::BI__builtin_msa_binsri_d: i = 2; l = 0; u = 63; break;
3136   // These intrinsics take a signed 5 bit immediate.
3137   case Mips::BI__builtin_msa_ceqi_b:
3138   case Mips::BI__builtin_msa_ceqi_h:
3139   case Mips::BI__builtin_msa_ceqi_w:
3140   case Mips::BI__builtin_msa_ceqi_d:
3141   case Mips::BI__builtin_msa_clti_s_b:
3142   case Mips::BI__builtin_msa_clti_s_h:
3143   case Mips::BI__builtin_msa_clti_s_w:
3144   case Mips::BI__builtin_msa_clti_s_d:
3145   case Mips::BI__builtin_msa_clei_s_b:
3146   case Mips::BI__builtin_msa_clei_s_h:
3147   case Mips::BI__builtin_msa_clei_s_w:
3148   case Mips::BI__builtin_msa_clei_s_d:
3149   case Mips::BI__builtin_msa_maxi_s_b:
3150   case Mips::BI__builtin_msa_maxi_s_h:
3151   case Mips::BI__builtin_msa_maxi_s_w:
3152   case Mips::BI__builtin_msa_maxi_s_d:
3153   case Mips::BI__builtin_msa_mini_s_b:
3154   case Mips::BI__builtin_msa_mini_s_h:
3155   case Mips::BI__builtin_msa_mini_s_w:
3156   case Mips::BI__builtin_msa_mini_s_d: i = 1; l = -16; u = 15; break;
3157   // These intrinsics take an unsigned 8 bit immediate.
3158   case Mips::BI__builtin_msa_andi_b:
3159   case Mips::BI__builtin_msa_nori_b:
3160   case Mips::BI__builtin_msa_ori_b:
3161   case Mips::BI__builtin_msa_shf_b:
3162   case Mips::BI__builtin_msa_shf_h:
3163   case Mips::BI__builtin_msa_shf_w:
3164   case Mips::BI__builtin_msa_xori_b: i = 1; l = 0; u = 255; break;
3165   case Mips::BI__builtin_msa_bseli_b:
3166   case Mips::BI__builtin_msa_bmnzi_b:
3167   case Mips::BI__builtin_msa_bmzi_b: i = 2; l = 0; u = 255; break;
3168   // df/n format
3169   // These intrinsics take an unsigned 4 bit immediate.
3170   case Mips::BI__builtin_msa_copy_s_b:
3171   case Mips::BI__builtin_msa_copy_u_b:
3172   case Mips::BI__builtin_msa_insve_b:
3173   case Mips::BI__builtin_msa_splati_b: i = 1; l = 0; u = 15; break;
3174   case Mips::BI__builtin_msa_sldi_b: i = 2; l = 0; u = 15; break;
3175   // These intrinsics take an unsigned 3 bit immediate.
3176   case Mips::BI__builtin_msa_copy_s_h:
3177   case Mips::BI__builtin_msa_copy_u_h:
3178   case Mips::BI__builtin_msa_insve_h:
3179   case Mips::BI__builtin_msa_splati_h: i = 1; l = 0; u = 7; break;
3180   case Mips::BI__builtin_msa_sldi_h: i = 2; l = 0; u = 7; break;
3181   // These intrinsics take an unsigned 2 bit immediate.
3182   case Mips::BI__builtin_msa_copy_s_w:
3183   case Mips::BI__builtin_msa_copy_u_w:
3184   case Mips::BI__builtin_msa_insve_w:
3185   case Mips::BI__builtin_msa_splati_w: i = 1; l = 0; u = 3; break;
3186   case Mips::BI__builtin_msa_sldi_w: i = 2; l = 0; u = 3; break;
3187   // These intrinsics take an unsigned 1 bit immediate.
3188   case Mips::BI__builtin_msa_copy_s_d:
3189   case Mips::BI__builtin_msa_copy_u_d:
3190   case Mips::BI__builtin_msa_insve_d:
3191   case Mips::BI__builtin_msa_splati_d: i = 1; l = 0; u = 1; break;
3192   case Mips::BI__builtin_msa_sldi_d: i = 2; l = 0; u = 1; break;
3193   // Memory offsets and immediate loads.
3194   // These intrinsics take a signed 10 bit immediate.
3195   case Mips::BI__builtin_msa_ldi_b: i = 0; l = -128; u = 255; break;
3196   case Mips::BI__builtin_msa_ldi_h:
3197   case Mips::BI__builtin_msa_ldi_w:
3198   case Mips::BI__builtin_msa_ldi_d: i = 0; l = -512; u = 511; break;
3199   case Mips::BI__builtin_msa_ld_b: i = 1; l = -512; u = 511; m = 1; break;
3200   case Mips::BI__builtin_msa_ld_h: i = 1; l = -1024; u = 1022; m = 2; break;
3201   case Mips::BI__builtin_msa_ld_w: i = 1; l = -2048; u = 2044; m = 4; break;
3202   case Mips::BI__builtin_msa_ld_d: i = 1; l = -4096; u = 4088; m = 8; break;
3203   case Mips::BI__builtin_msa_ldr_d: i = 1; l = -4096; u = 4088; m = 8; break;
3204   case Mips::BI__builtin_msa_ldr_w: i = 1; l = -2048; u = 2044; m = 4; break;
3205   case Mips::BI__builtin_msa_st_b: i = 2; l = -512; u = 511; m = 1; break;
3206   case Mips::BI__builtin_msa_st_h: i = 2; l = -1024; u = 1022; m = 2; break;
3207   case Mips::BI__builtin_msa_st_w: i = 2; l = -2048; u = 2044; m = 4; break;
3208   case Mips::BI__builtin_msa_st_d: i = 2; l = -4096; u = 4088; m = 8; break;
3209   case Mips::BI__builtin_msa_str_d: i = 2; l = -4096; u = 4088; m = 8; break;
3210   case Mips::BI__builtin_msa_str_w: i = 2; l = -2048; u = 2044; m = 4; break;
3211   }
3212 
3213   if (!m)
3214     return SemaBuiltinConstantArgRange(TheCall, i, l, u);
3215 
3216   return SemaBuiltinConstantArgRange(TheCall, i, l, u) ||
3217          SemaBuiltinConstantArgMultiple(TheCall, i, m);
3218 }
3219 
3220 /// DecodePPCMMATypeFromStr - This decodes one PPC MMA type descriptor from Str,
3221 /// advancing the pointer over the consumed characters. The decoded type is
3222 /// returned. If the decoded type represents a constant integer with a
3223 /// constraint on its value then Mask is set to that value. The type descriptors
3224 /// used in Str are specific to PPC MMA builtins and are documented in the file
3225 /// defining the PPC builtins.
3226 static QualType DecodePPCMMATypeFromStr(ASTContext &Context, const char *&Str,
3227                                         unsigned &Mask) {
3228   bool RequireICE = false;
3229   ASTContext::GetBuiltinTypeError Error = ASTContext::GE_None;
3230   switch (*Str++) {
3231   case 'V':
3232     return Context.getVectorType(Context.UnsignedCharTy, 16,
3233                                  VectorType::VectorKind::AltiVecVector);
3234   case 'i': {
3235     char *End;
3236     unsigned size = strtoul(Str, &End, 10);
3237     assert(End != Str && "Missing constant parameter constraint");
3238     Str = End;
3239     Mask = size;
3240     return Context.IntTy;
3241   }
3242   case 'W': {
3243     char *End;
3244     unsigned size = strtoul(Str, &End, 10);
3245     assert(End != Str && "Missing PowerPC MMA type size");
3246     Str = End;
3247     QualType Type;
3248     switch (size) {
3249   #define PPC_VECTOR_TYPE(typeName, Id, size) \
3250     case size: Type = Context.Id##Ty; break;
3251   #include "clang/Basic/PPCTypes.def"
3252     default: llvm_unreachable("Invalid PowerPC MMA vector type");
3253     }
3254     bool CheckVectorArgs = false;
3255     while (!CheckVectorArgs) {
3256       switch (*Str++) {
3257       case '*':
3258         Type = Context.getPointerType(Type);
3259         break;
3260       case 'C':
3261         Type = Type.withConst();
3262         break;
3263       default:
3264         CheckVectorArgs = true;
3265         --Str;
3266         break;
3267       }
3268     }
3269     return Type;
3270   }
3271   default:
3272     return Context.DecodeTypeStr(--Str, Context, Error, RequireICE, true);
3273   }
3274 }
3275 
3276 static bool isPPC_64Builtin(unsigned BuiltinID) {
3277   // These builtins only work on PPC 64bit targets.
3278   switch (BuiltinID) {
3279   case PPC::BI__builtin_divde:
3280   case PPC::BI__builtin_divdeu:
3281   case PPC::BI__builtin_bpermd:
3282   case PPC::BI__builtin_ppc_ldarx:
3283   case PPC::BI__builtin_ppc_stdcx:
3284   case PPC::BI__builtin_ppc_tdw:
3285   case PPC::BI__builtin_ppc_trapd:
3286   case PPC::BI__builtin_ppc_cmpeqb:
3287   case PPC::BI__builtin_ppc_setb:
3288   case PPC::BI__builtin_ppc_mulhd:
3289   case PPC::BI__builtin_ppc_mulhdu:
3290   case PPC::BI__builtin_ppc_maddhd:
3291   case PPC::BI__builtin_ppc_maddhdu:
3292   case PPC::BI__builtin_ppc_maddld:
3293   case PPC::BI__builtin_ppc_load8r:
3294   case PPC::BI__builtin_ppc_store8r:
3295   case PPC::BI__builtin_ppc_insert_exp:
3296   case PPC::BI__builtin_ppc_extract_sig:
3297   case PPC::BI__builtin_ppc_addex:
3298   case PPC::BI__builtin_darn:
3299   case PPC::BI__builtin_darn_raw:
3300   case PPC::BI__builtin_ppc_compare_and_swaplp:
3301   case PPC::BI__builtin_ppc_fetch_and_addlp:
3302   case PPC::BI__builtin_ppc_fetch_and_andlp:
3303   case PPC::BI__builtin_ppc_fetch_and_orlp:
3304   case PPC::BI__builtin_ppc_fetch_and_swaplp:
3305     return true;
3306   }
3307   return false;
3308 }
3309 
3310 static bool SemaFeatureCheck(Sema &S, CallExpr *TheCall,
3311                              StringRef FeatureToCheck, unsigned DiagID,
3312                              StringRef DiagArg = "") {
3313   if (S.Context.getTargetInfo().hasFeature(FeatureToCheck))
3314     return false;
3315 
3316   if (DiagArg.empty())
3317     S.Diag(TheCall->getBeginLoc(), DiagID) << TheCall->getSourceRange();
3318   else
3319     S.Diag(TheCall->getBeginLoc(), DiagID)
3320         << DiagArg << TheCall->getSourceRange();
3321 
3322   return true;
3323 }
3324 
3325 /// Returns true if the argument consists of one contiguous run of 1s with any
3326 /// number of 0s on either side. The 1s are allowed to wrap from LSB to MSB, so
3327 /// 0x000FFF0, 0x0000FFFF, 0xFF0000FF, 0x0 are all runs. 0x0F0F0000 is not,
3328 /// since all 1s are not contiguous.
3329 bool Sema::SemaValueIsRunOfOnes(CallExpr *TheCall, unsigned ArgNum) {
3330   llvm::APSInt Result;
3331   // We can't check the value of a dependent argument.
3332   Expr *Arg = TheCall->getArg(ArgNum);
3333   if (Arg->isTypeDependent() || Arg->isValueDependent())
3334     return false;
3335 
3336   // Check constant-ness first.
3337   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
3338     return true;
3339 
3340   // Check contiguous run of 1s, 0xFF0000FF is also a run of 1s.
3341   if (Result.isShiftedMask() || (~Result).isShiftedMask())
3342     return false;
3343 
3344   return Diag(TheCall->getBeginLoc(),
3345               diag::err_argument_not_contiguous_bit_field)
3346          << ArgNum << Arg->getSourceRange();
3347 }
3348 
3349 bool Sema::CheckPPCBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID,
3350                                        CallExpr *TheCall) {
3351   unsigned i = 0, l = 0, u = 0;
3352   bool IsTarget64Bit = TI.getTypeWidth(TI.getIntPtrType()) == 64;
3353   llvm::APSInt Result;
3354 
3355   if (isPPC_64Builtin(BuiltinID) && !IsTarget64Bit)
3356     return Diag(TheCall->getBeginLoc(), diag::err_64_bit_builtin_32_bit_tgt)
3357            << TheCall->getSourceRange();
3358 
3359   switch (BuiltinID) {
3360   default: return false;
3361   case PPC::BI__builtin_altivec_crypto_vshasigmaw:
3362   case PPC::BI__builtin_altivec_crypto_vshasigmad:
3363     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) ||
3364            SemaBuiltinConstantArgRange(TheCall, 2, 0, 15);
3365   case PPC::BI__builtin_altivec_dss:
3366     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 3);
3367   case PPC::BI__builtin_tbegin:
3368   case PPC::BI__builtin_tend: i = 0; l = 0; u = 1; break;
3369   case PPC::BI__builtin_tsr: i = 0; l = 0; u = 7; break;
3370   case PPC::BI__builtin_tabortwc:
3371   case PPC::BI__builtin_tabortdc: i = 0; l = 0; u = 31; break;
3372   case PPC::BI__builtin_tabortwci:
3373   case PPC::BI__builtin_tabortdci:
3374     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31) ||
3375            SemaBuiltinConstantArgRange(TheCall, 2, 0, 31);
3376   case PPC::BI__builtin_altivec_dst:
3377   case PPC::BI__builtin_altivec_dstt:
3378   case PPC::BI__builtin_altivec_dstst:
3379   case PPC::BI__builtin_altivec_dststt:
3380     return SemaBuiltinConstantArgRange(TheCall, 2, 0, 3);
3381   case PPC::BI__builtin_vsx_xxpermdi:
3382   case PPC::BI__builtin_vsx_xxsldwi:
3383     return SemaBuiltinVSX(TheCall);
3384   case PPC::BI__builtin_divwe:
3385   case PPC::BI__builtin_divweu:
3386   case PPC::BI__builtin_divde:
3387   case PPC::BI__builtin_divdeu:
3388     return SemaFeatureCheck(*this, TheCall, "extdiv",
3389                             diag::err_ppc_builtin_only_on_arch, "7");
3390   case PPC::BI__builtin_bpermd:
3391     return SemaFeatureCheck(*this, TheCall, "bpermd",
3392                             diag::err_ppc_builtin_only_on_arch, "7");
3393   case PPC::BI__builtin_unpack_vector_int128:
3394     return SemaFeatureCheck(*this, TheCall, "vsx",
3395                             diag::err_ppc_builtin_only_on_arch, "7") ||
3396            SemaBuiltinConstantArgRange(TheCall, 1, 0, 1);
3397   case PPC::BI__builtin_pack_vector_int128:
3398     return SemaFeatureCheck(*this, TheCall, "vsx",
3399                             diag::err_ppc_builtin_only_on_arch, "7");
3400   case PPC::BI__builtin_altivec_vgnb:
3401      return SemaBuiltinConstantArgRange(TheCall, 1, 2, 7);
3402   case PPC::BI__builtin_altivec_vec_replace_elt:
3403   case PPC::BI__builtin_altivec_vec_replace_unaligned: {
3404     QualType VecTy = TheCall->getArg(0)->getType();
3405     QualType EltTy = TheCall->getArg(1)->getType();
3406     unsigned Width = Context.getIntWidth(EltTy);
3407     return SemaBuiltinConstantArgRange(TheCall, 2, 0, Width == 32 ? 12 : 8) ||
3408            !isEltOfVectorTy(Context, TheCall, *this, VecTy, EltTy);
3409   }
3410   case PPC::BI__builtin_vsx_xxeval:
3411      return SemaBuiltinConstantArgRange(TheCall, 3, 0, 255);
3412   case PPC::BI__builtin_altivec_vsldbi:
3413      return SemaBuiltinConstantArgRange(TheCall, 2, 0, 7);
3414   case PPC::BI__builtin_altivec_vsrdbi:
3415      return SemaBuiltinConstantArgRange(TheCall, 2, 0, 7);
3416   case PPC::BI__builtin_vsx_xxpermx:
3417      return SemaBuiltinConstantArgRange(TheCall, 3, 0, 7);
3418   case PPC::BI__builtin_ppc_tw:
3419   case PPC::BI__builtin_ppc_tdw:
3420     return SemaBuiltinConstantArgRange(TheCall, 2, 1, 31);
3421   case PPC::BI__builtin_ppc_cmpeqb:
3422   case PPC::BI__builtin_ppc_setb:
3423   case PPC::BI__builtin_ppc_maddhd:
3424   case PPC::BI__builtin_ppc_maddhdu:
3425   case PPC::BI__builtin_ppc_maddld:
3426     return SemaFeatureCheck(*this, TheCall, "isa-v30-instructions",
3427                             diag::err_ppc_builtin_only_on_arch, "9");
3428   case PPC::BI__builtin_ppc_cmprb:
3429     return SemaFeatureCheck(*this, TheCall, "isa-v30-instructions",
3430                             diag::err_ppc_builtin_only_on_arch, "9") ||
3431            SemaBuiltinConstantArgRange(TheCall, 0, 0, 1);
3432   // For __rlwnm, __rlwimi and __rldimi, the last parameter mask must
3433   // be a constant that represents a contiguous bit field.
3434   case PPC::BI__builtin_ppc_rlwnm:
3435     return SemaBuiltinConstantArg(TheCall, 1, Result) ||
3436            SemaValueIsRunOfOnes(TheCall, 2);
3437   case PPC::BI__builtin_ppc_rlwimi:
3438   case PPC::BI__builtin_ppc_rldimi:
3439     return SemaBuiltinConstantArg(TheCall, 2, Result) ||
3440            SemaValueIsRunOfOnes(TheCall, 3);
3441   case PPC::BI__builtin_ppc_extract_exp:
3442   case PPC::BI__builtin_ppc_extract_sig:
3443   case PPC::BI__builtin_ppc_insert_exp:
3444     return SemaFeatureCheck(*this, TheCall, "power9-vector",
3445                             diag::err_ppc_builtin_only_on_arch, "9");
3446   case PPC::BI__builtin_ppc_addex: {
3447     if (SemaFeatureCheck(*this, TheCall, "isa-v30-instructions",
3448                          diag::err_ppc_builtin_only_on_arch, "9") ||
3449         SemaBuiltinConstantArgRange(TheCall, 2, 0, 3))
3450       return true;
3451     // Output warning for reserved values 1 to 3.
3452     int ArgValue =
3453         TheCall->getArg(2)->getIntegerConstantExpr(Context)->getSExtValue();
3454     if (ArgValue != 0)
3455       Diag(TheCall->getBeginLoc(), diag::warn_argument_undefined_behaviour)
3456           << ArgValue;
3457     return false;
3458   }
3459   case PPC::BI__builtin_ppc_mtfsb0:
3460   case PPC::BI__builtin_ppc_mtfsb1:
3461     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31);
3462   case PPC::BI__builtin_ppc_mtfsf:
3463     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 255);
3464   case PPC::BI__builtin_ppc_mtfsfi:
3465     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 7) ||
3466            SemaBuiltinConstantArgRange(TheCall, 1, 0, 15);
3467   case PPC::BI__builtin_ppc_alignx:
3468     return SemaBuiltinConstantArgPower2(TheCall, 0);
3469   case PPC::BI__builtin_ppc_rdlam:
3470     return SemaValueIsRunOfOnes(TheCall, 2);
3471   case PPC::BI__builtin_ppc_icbt:
3472   case PPC::BI__builtin_ppc_sthcx:
3473   case PPC::BI__builtin_ppc_stbcx:
3474   case PPC::BI__builtin_ppc_lharx:
3475   case PPC::BI__builtin_ppc_lbarx:
3476     return SemaFeatureCheck(*this, TheCall, "isa-v207-instructions",
3477                             diag::err_ppc_builtin_only_on_arch, "8");
3478   case PPC::BI__builtin_vsx_ldrmb:
3479   case PPC::BI__builtin_vsx_strmb:
3480     return SemaFeatureCheck(*this, TheCall, "isa-v207-instructions",
3481                             diag::err_ppc_builtin_only_on_arch, "8") ||
3482            SemaBuiltinConstantArgRange(TheCall, 1, 1, 16);
3483   case PPC::BI__builtin_altivec_vcntmbb:
3484   case PPC::BI__builtin_altivec_vcntmbh:
3485   case PPC::BI__builtin_altivec_vcntmbw:
3486   case PPC::BI__builtin_altivec_vcntmbd:
3487     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1);
3488   case PPC::BI__builtin_darn:
3489   case PPC::BI__builtin_darn_raw:
3490   case PPC::BI__builtin_darn_32:
3491     return SemaFeatureCheck(*this, TheCall, "isa-v30-instructions",
3492                             diag::err_ppc_builtin_only_on_arch, "9");
3493   case PPC::BI__builtin_vsx_xxgenpcvbm:
3494   case PPC::BI__builtin_vsx_xxgenpcvhm:
3495   case PPC::BI__builtin_vsx_xxgenpcvwm:
3496   case PPC::BI__builtin_vsx_xxgenpcvdm:
3497     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 3);
3498   case PPC::BI__builtin_ppc_compare_exp_uo:
3499   case PPC::BI__builtin_ppc_compare_exp_lt:
3500   case PPC::BI__builtin_ppc_compare_exp_gt:
3501   case PPC::BI__builtin_ppc_compare_exp_eq:
3502     return SemaFeatureCheck(*this, TheCall, "isa-v30-instructions",
3503                             diag::err_ppc_builtin_only_on_arch, "9") ||
3504            SemaFeatureCheck(*this, TheCall, "vsx",
3505                             diag::err_ppc_builtin_requires_vsx);
3506   case PPC::BI__builtin_ppc_test_data_class: {
3507     // Check if the first argument of the __builtin_ppc_test_data_class call is
3508     // valid. The argument must be either a 'float' or a 'double'.
3509     QualType ArgType = TheCall->getArg(0)->getType();
3510     if (ArgType != QualType(Context.FloatTy) &&
3511         ArgType != QualType(Context.DoubleTy))
3512       return Diag(TheCall->getBeginLoc(),
3513                   diag::err_ppc_invalid_test_data_class_type);
3514     return SemaFeatureCheck(*this, TheCall, "isa-v30-instructions",
3515                             diag::err_ppc_builtin_only_on_arch, "9") ||
3516            SemaFeatureCheck(*this, TheCall, "vsx",
3517                             diag::err_ppc_builtin_requires_vsx) ||
3518            SemaBuiltinConstantArgRange(TheCall, 1, 0, 127);
3519   }
3520   case PPC::BI__builtin_ppc_load8r:
3521   case PPC::BI__builtin_ppc_store8r:
3522     return SemaFeatureCheck(*this, TheCall, "isa-v206-instructions",
3523                             diag::err_ppc_builtin_only_on_arch, "7");
3524 #define CUSTOM_BUILTIN(Name, Intr, Types, Acc)                                 \
3525   case PPC::BI__builtin_##Name:                                                \
3526     return SemaBuiltinPPCMMACall(TheCall, BuiltinID, Types);
3527 #include "clang/Basic/BuiltinsPPC.def"
3528   }
3529   return SemaBuiltinConstantArgRange(TheCall, i, l, u);
3530 }
3531 
3532 // Check if the given type is a non-pointer PPC MMA type. This function is used
3533 // in Sema to prevent invalid uses of restricted PPC MMA types.
3534 bool Sema::CheckPPCMMAType(QualType Type, SourceLocation TypeLoc) {
3535   if (Type->isPointerType() || Type->isArrayType())
3536     return false;
3537 
3538   QualType CoreType = Type.getCanonicalType().getUnqualifiedType();
3539 #define PPC_VECTOR_TYPE(Name, Id, Size) || CoreType == Context.Id##Ty
3540   if (false
3541 #include "clang/Basic/PPCTypes.def"
3542      ) {
3543     Diag(TypeLoc, diag::err_ppc_invalid_use_mma_type);
3544     return true;
3545   }
3546   return false;
3547 }
3548 
3549 bool Sema::CheckAMDGCNBuiltinFunctionCall(unsigned BuiltinID,
3550                                           CallExpr *TheCall) {
3551   // position of memory order and scope arguments in the builtin
3552   unsigned OrderIndex, ScopeIndex;
3553   switch (BuiltinID) {
3554   case AMDGPU::BI__builtin_amdgcn_atomic_inc32:
3555   case AMDGPU::BI__builtin_amdgcn_atomic_inc64:
3556   case AMDGPU::BI__builtin_amdgcn_atomic_dec32:
3557   case AMDGPU::BI__builtin_amdgcn_atomic_dec64:
3558     OrderIndex = 2;
3559     ScopeIndex = 3;
3560     break;
3561   case AMDGPU::BI__builtin_amdgcn_fence:
3562     OrderIndex = 0;
3563     ScopeIndex = 1;
3564     break;
3565   default:
3566     return false;
3567   }
3568 
3569   ExprResult Arg = TheCall->getArg(OrderIndex);
3570   auto ArgExpr = Arg.get();
3571   Expr::EvalResult ArgResult;
3572 
3573   if (!ArgExpr->EvaluateAsInt(ArgResult, Context))
3574     return Diag(ArgExpr->getExprLoc(), diag::err_typecheck_expect_int)
3575            << ArgExpr->getType();
3576   auto Ord = ArgResult.Val.getInt().getZExtValue();
3577 
3578   // Check validity of memory ordering as per C11 / C++11's memody model.
3579   // Only fence needs check. Atomic dec/inc allow all memory orders.
3580   if (!llvm::isValidAtomicOrderingCABI(Ord))
3581     return Diag(ArgExpr->getBeginLoc(),
3582                 diag::warn_atomic_op_has_invalid_memory_order)
3583            << ArgExpr->getSourceRange();
3584   switch (static_cast<llvm::AtomicOrderingCABI>(Ord)) {
3585   case llvm::AtomicOrderingCABI::relaxed:
3586   case llvm::AtomicOrderingCABI::consume:
3587     if (BuiltinID == AMDGPU::BI__builtin_amdgcn_fence)
3588       return Diag(ArgExpr->getBeginLoc(),
3589                   diag::warn_atomic_op_has_invalid_memory_order)
3590              << ArgExpr->getSourceRange();
3591     break;
3592   case llvm::AtomicOrderingCABI::acquire:
3593   case llvm::AtomicOrderingCABI::release:
3594   case llvm::AtomicOrderingCABI::acq_rel:
3595   case llvm::AtomicOrderingCABI::seq_cst:
3596     break;
3597   }
3598 
3599   Arg = TheCall->getArg(ScopeIndex);
3600   ArgExpr = Arg.get();
3601   Expr::EvalResult ArgResult1;
3602   // Check that sync scope is a constant literal
3603   if (!ArgExpr->EvaluateAsConstantExpr(ArgResult1, Context))
3604     return Diag(ArgExpr->getExprLoc(), diag::err_expr_not_string_literal)
3605            << ArgExpr->getType();
3606 
3607   return false;
3608 }
3609 
3610 bool Sema::CheckRISCVLMUL(CallExpr *TheCall, unsigned ArgNum) {
3611   llvm::APSInt Result;
3612 
3613   // We can't check the value of a dependent argument.
3614   Expr *Arg = TheCall->getArg(ArgNum);
3615   if (Arg->isTypeDependent() || Arg->isValueDependent())
3616     return false;
3617 
3618   // Check constant-ness first.
3619   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
3620     return true;
3621 
3622   int64_t Val = Result.getSExtValue();
3623   if ((Val >= 0 && Val <= 3) || (Val >= 5 && Val <= 7))
3624     return false;
3625 
3626   return Diag(TheCall->getBeginLoc(), diag::err_riscv_builtin_invalid_lmul)
3627          << Arg->getSourceRange();
3628 }
3629 
3630 bool Sema::CheckRISCVBuiltinFunctionCall(const TargetInfo &TI,
3631                                          unsigned BuiltinID,
3632                                          CallExpr *TheCall) {
3633   // CodeGenFunction can also detect this, but this gives a better error
3634   // message.
3635   bool FeatureMissing = false;
3636   SmallVector<StringRef> ReqFeatures;
3637   StringRef Features = Context.BuiltinInfo.getRequiredFeatures(BuiltinID);
3638   Features.split(ReqFeatures, ',');
3639 
3640   // Check if each required feature is included
3641   for (StringRef F : ReqFeatures) {
3642     if (TI.hasFeature(F))
3643       continue;
3644 
3645     // If the feature is 64bit, alter the string so it will print better in
3646     // the diagnostic.
3647     if (F == "64bit")
3648       F = "RV64";
3649 
3650     // Convert features like "zbr" and "experimental-zbr" to "Zbr".
3651     F.consume_front("experimental-");
3652     std::string FeatureStr = F.str();
3653     FeatureStr[0] = std::toupper(FeatureStr[0]);
3654 
3655     // Error message
3656     FeatureMissing = true;
3657     Diag(TheCall->getBeginLoc(), diag::err_riscv_builtin_requires_extension)
3658         << TheCall->getSourceRange() << StringRef(FeatureStr);
3659   }
3660 
3661   if (FeatureMissing)
3662     return true;
3663 
3664   switch (BuiltinID) {
3665   case RISCV::BI__builtin_rvv_vsetvli:
3666     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 3) ||
3667            CheckRISCVLMUL(TheCall, 2);
3668   case RISCV::BI__builtin_rvv_vsetvlimax:
3669     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 3) ||
3670            CheckRISCVLMUL(TheCall, 1);
3671   case RISCV::BI__builtin_rvv_vget_v_i8m2_i8m1:
3672   case RISCV::BI__builtin_rvv_vget_v_i16m2_i16m1:
3673   case RISCV::BI__builtin_rvv_vget_v_i32m2_i32m1:
3674   case RISCV::BI__builtin_rvv_vget_v_i64m2_i64m1:
3675   case RISCV::BI__builtin_rvv_vget_v_f32m2_f32m1:
3676   case RISCV::BI__builtin_rvv_vget_v_f64m2_f64m1:
3677   case RISCV::BI__builtin_rvv_vget_v_u8m2_u8m1:
3678   case RISCV::BI__builtin_rvv_vget_v_u16m2_u16m1:
3679   case RISCV::BI__builtin_rvv_vget_v_u32m2_u32m1:
3680   case RISCV::BI__builtin_rvv_vget_v_u64m2_u64m1:
3681   case RISCV::BI__builtin_rvv_vget_v_i8m4_i8m2:
3682   case RISCV::BI__builtin_rvv_vget_v_i16m4_i16m2:
3683   case RISCV::BI__builtin_rvv_vget_v_i32m4_i32m2:
3684   case RISCV::BI__builtin_rvv_vget_v_i64m4_i64m2:
3685   case RISCV::BI__builtin_rvv_vget_v_f32m4_f32m2:
3686   case RISCV::BI__builtin_rvv_vget_v_f64m4_f64m2:
3687   case RISCV::BI__builtin_rvv_vget_v_u8m4_u8m2:
3688   case RISCV::BI__builtin_rvv_vget_v_u16m4_u16m2:
3689   case RISCV::BI__builtin_rvv_vget_v_u32m4_u32m2:
3690   case RISCV::BI__builtin_rvv_vget_v_u64m4_u64m2:
3691   case RISCV::BI__builtin_rvv_vget_v_i8m8_i8m4:
3692   case RISCV::BI__builtin_rvv_vget_v_i16m8_i16m4:
3693   case RISCV::BI__builtin_rvv_vget_v_i32m8_i32m4:
3694   case RISCV::BI__builtin_rvv_vget_v_i64m8_i64m4:
3695   case RISCV::BI__builtin_rvv_vget_v_f32m8_f32m4:
3696   case RISCV::BI__builtin_rvv_vget_v_f64m8_f64m4:
3697   case RISCV::BI__builtin_rvv_vget_v_u8m8_u8m4:
3698   case RISCV::BI__builtin_rvv_vget_v_u16m8_u16m4:
3699   case RISCV::BI__builtin_rvv_vget_v_u32m8_u32m4:
3700   case RISCV::BI__builtin_rvv_vget_v_u64m8_u64m4:
3701     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1);
3702   case RISCV::BI__builtin_rvv_vget_v_i8m4_i8m1:
3703   case RISCV::BI__builtin_rvv_vget_v_i16m4_i16m1:
3704   case RISCV::BI__builtin_rvv_vget_v_i32m4_i32m1:
3705   case RISCV::BI__builtin_rvv_vget_v_i64m4_i64m1:
3706   case RISCV::BI__builtin_rvv_vget_v_f32m4_f32m1:
3707   case RISCV::BI__builtin_rvv_vget_v_f64m4_f64m1:
3708   case RISCV::BI__builtin_rvv_vget_v_u8m4_u8m1:
3709   case RISCV::BI__builtin_rvv_vget_v_u16m4_u16m1:
3710   case RISCV::BI__builtin_rvv_vget_v_u32m4_u32m1:
3711   case RISCV::BI__builtin_rvv_vget_v_u64m4_u64m1:
3712   case RISCV::BI__builtin_rvv_vget_v_i8m8_i8m2:
3713   case RISCV::BI__builtin_rvv_vget_v_i16m8_i16m2:
3714   case RISCV::BI__builtin_rvv_vget_v_i32m8_i32m2:
3715   case RISCV::BI__builtin_rvv_vget_v_i64m8_i64m2:
3716   case RISCV::BI__builtin_rvv_vget_v_f32m8_f32m2:
3717   case RISCV::BI__builtin_rvv_vget_v_f64m8_f64m2:
3718   case RISCV::BI__builtin_rvv_vget_v_u8m8_u8m2:
3719   case RISCV::BI__builtin_rvv_vget_v_u16m8_u16m2:
3720   case RISCV::BI__builtin_rvv_vget_v_u32m8_u32m2:
3721   case RISCV::BI__builtin_rvv_vget_v_u64m8_u64m2:
3722     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 3);
3723   case RISCV::BI__builtin_rvv_vget_v_i8m8_i8m1:
3724   case RISCV::BI__builtin_rvv_vget_v_i16m8_i16m1:
3725   case RISCV::BI__builtin_rvv_vget_v_i32m8_i32m1:
3726   case RISCV::BI__builtin_rvv_vget_v_i64m8_i64m1:
3727   case RISCV::BI__builtin_rvv_vget_v_f32m8_f32m1:
3728   case RISCV::BI__builtin_rvv_vget_v_f64m8_f64m1:
3729   case RISCV::BI__builtin_rvv_vget_v_u8m8_u8m1:
3730   case RISCV::BI__builtin_rvv_vget_v_u16m8_u16m1:
3731   case RISCV::BI__builtin_rvv_vget_v_u32m8_u32m1:
3732   case RISCV::BI__builtin_rvv_vget_v_u64m8_u64m1:
3733     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 7);
3734   case RISCV::BI__builtin_rvv_vset_v_i8m1_i8m2:
3735   case RISCV::BI__builtin_rvv_vset_v_i16m1_i16m2:
3736   case RISCV::BI__builtin_rvv_vset_v_i32m1_i32m2:
3737   case RISCV::BI__builtin_rvv_vset_v_i64m1_i64m2:
3738   case RISCV::BI__builtin_rvv_vset_v_f32m1_f32m2:
3739   case RISCV::BI__builtin_rvv_vset_v_f64m1_f64m2:
3740   case RISCV::BI__builtin_rvv_vset_v_u8m1_u8m2:
3741   case RISCV::BI__builtin_rvv_vset_v_u16m1_u16m2:
3742   case RISCV::BI__builtin_rvv_vset_v_u32m1_u32m2:
3743   case RISCV::BI__builtin_rvv_vset_v_u64m1_u64m2:
3744   case RISCV::BI__builtin_rvv_vset_v_i8m2_i8m4:
3745   case RISCV::BI__builtin_rvv_vset_v_i16m2_i16m4:
3746   case RISCV::BI__builtin_rvv_vset_v_i32m2_i32m4:
3747   case RISCV::BI__builtin_rvv_vset_v_i64m2_i64m4:
3748   case RISCV::BI__builtin_rvv_vset_v_f32m2_f32m4:
3749   case RISCV::BI__builtin_rvv_vset_v_f64m2_f64m4:
3750   case RISCV::BI__builtin_rvv_vset_v_u8m2_u8m4:
3751   case RISCV::BI__builtin_rvv_vset_v_u16m2_u16m4:
3752   case RISCV::BI__builtin_rvv_vset_v_u32m2_u32m4:
3753   case RISCV::BI__builtin_rvv_vset_v_u64m2_u64m4:
3754   case RISCV::BI__builtin_rvv_vset_v_i8m4_i8m8:
3755   case RISCV::BI__builtin_rvv_vset_v_i16m4_i16m8:
3756   case RISCV::BI__builtin_rvv_vset_v_i32m4_i32m8:
3757   case RISCV::BI__builtin_rvv_vset_v_i64m4_i64m8:
3758   case RISCV::BI__builtin_rvv_vset_v_f32m4_f32m8:
3759   case RISCV::BI__builtin_rvv_vset_v_f64m4_f64m8:
3760   case RISCV::BI__builtin_rvv_vset_v_u8m4_u8m8:
3761   case RISCV::BI__builtin_rvv_vset_v_u16m4_u16m8:
3762   case RISCV::BI__builtin_rvv_vset_v_u32m4_u32m8:
3763   case RISCV::BI__builtin_rvv_vset_v_u64m4_u64m8:
3764     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1);
3765   case RISCV::BI__builtin_rvv_vset_v_i8m1_i8m4:
3766   case RISCV::BI__builtin_rvv_vset_v_i16m1_i16m4:
3767   case RISCV::BI__builtin_rvv_vset_v_i32m1_i32m4:
3768   case RISCV::BI__builtin_rvv_vset_v_i64m1_i64m4:
3769   case RISCV::BI__builtin_rvv_vset_v_f32m1_f32m4:
3770   case RISCV::BI__builtin_rvv_vset_v_f64m1_f64m4:
3771   case RISCV::BI__builtin_rvv_vset_v_u8m1_u8m4:
3772   case RISCV::BI__builtin_rvv_vset_v_u16m1_u16m4:
3773   case RISCV::BI__builtin_rvv_vset_v_u32m1_u32m4:
3774   case RISCV::BI__builtin_rvv_vset_v_u64m1_u64m4:
3775   case RISCV::BI__builtin_rvv_vset_v_i8m2_i8m8:
3776   case RISCV::BI__builtin_rvv_vset_v_i16m2_i16m8:
3777   case RISCV::BI__builtin_rvv_vset_v_i32m2_i32m8:
3778   case RISCV::BI__builtin_rvv_vset_v_i64m2_i64m8:
3779   case RISCV::BI__builtin_rvv_vset_v_f32m2_f32m8:
3780   case RISCV::BI__builtin_rvv_vset_v_f64m2_f64m8:
3781   case RISCV::BI__builtin_rvv_vset_v_u8m2_u8m8:
3782   case RISCV::BI__builtin_rvv_vset_v_u16m2_u16m8:
3783   case RISCV::BI__builtin_rvv_vset_v_u32m2_u32m8:
3784   case RISCV::BI__builtin_rvv_vset_v_u64m2_u64m8:
3785     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 3);
3786   case RISCV::BI__builtin_rvv_vset_v_i8m1_i8m8:
3787   case RISCV::BI__builtin_rvv_vset_v_i16m1_i16m8:
3788   case RISCV::BI__builtin_rvv_vset_v_i32m1_i32m8:
3789   case RISCV::BI__builtin_rvv_vset_v_i64m1_i64m8:
3790   case RISCV::BI__builtin_rvv_vset_v_f32m1_f32m8:
3791   case RISCV::BI__builtin_rvv_vset_v_f64m1_f64m8:
3792   case RISCV::BI__builtin_rvv_vset_v_u8m1_u8m8:
3793   case RISCV::BI__builtin_rvv_vset_v_u16m1_u16m8:
3794   case RISCV::BI__builtin_rvv_vset_v_u32m1_u32m8:
3795   case RISCV::BI__builtin_rvv_vset_v_u64m1_u64m8:
3796     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 7);
3797   }
3798 
3799   return false;
3800 }
3801 
3802 bool Sema::CheckSystemZBuiltinFunctionCall(unsigned BuiltinID,
3803                                            CallExpr *TheCall) {
3804   if (BuiltinID == SystemZ::BI__builtin_tabort) {
3805     Expr *Arg = TheCall->getArg(0);
3806     if (Optional<llvm::APSInt> AbortCode = Arg->getIntegerConstantExpr(Context))
3807       if (AbortCode->getSExtValue() >= 0 && AbortCode->getSExtValue() < 256)
3808         return Diag(Arg->getBeginLoc(), diag::err_systemz_invalid_tabort_code)
3809                << Arg->getSourceRange();
3810   }
3811 
3812   // For intrinsics which take an immediate value as part of the instruction,
3813   // range check them here.
3814   unsigned i = 0, l = 0, u = 0;
3815   switch (BuiltinID) {
3816   default: return false;
3817   case SystemZ::BI__builtin_s390_lcbb: i = 1; l = 0; u = 15; break;
3818   case SystemZ::BI__builtin_s390_verimb:
3819   case SystemZ::BI__builtin_s390_verimh:
3820   case SystemZ::BI__builtin_s390_verimf:
3821   case SystemZ::BI__builtin_s390_verimg: i = 3; l = 0; u = 255; break;
3822   case SystemZ::BI__builtin_s390_vfaeb:
3823   case SystemZ::BI__builtin_s390_vfaeh:
3824   case SystemZ::BI__builtin_s390_vfaef:
3825   case SystemZ::BI__builtin_s390_vfaebs:
3826   case SystemZ::BI__builtin_s390_vfaehs:
3827   case SystemZ::BI__builtin_s390_vfaefs:
3828   case SystemZ::BI__builtin_s390_vfaezb:
3829   case SystemZ::BI__builtin_s390_vfaezh:
3830   case SystemZ::BI__builtin_s390_vfaezf:
3831   case SystemZ::BI__builtin_s390_vfaezbs:
3832   case SystemZ::BI__builtin_s390_vfaezhs:
3833   case SystemZ::BI__builtin_s390_vfaezfs: i = 2; l = 0; u = 15; break;
3834   case SystemZ::BI__builtin_s390_vfisb:
3835   case SystemZ::BI__builtin_s390_vfidb:
3836     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15) ||
3837            SemaBuiltinConstantArgRange(TheCall, 2, 0, 15);
3838   case SystemZ::BI__builtin_s390_vftcisb:
3839   case SystemZ::BI__builtin_s390_vftcidb: i = 1; l = 0; u = 4095; break;
3840   case SystemZ::BI__builtin_s390_vlbb: i = 1; l = 0; u = 15; break;
3841   case SystemZ::BI__builtin_s390_vpdi: i = 2; l = 0; u = 15; break;
3842   case SystemZ::BI__builtin_s390_vsldb: i = 2; l = 0; u = 15; break;
3843   case SystemZ::BI__builtin_s390_vstrcb:
3844   case SystemZ::BI__builtin_s390_vstrch:
3845   case SystemZ::BI__builtin_s390_vstrcf:
3846   case SystemZ::BI__builtin_s390_vstrczb:
3847   case SystemZ::BI__builtin_s390_vstrczh:
3848   case SystemZ::BI__builtin_s390_vstrczf:
3849   case SystemZ::BI__builtin_s390_vstrcbs:
3850   case SystemZ::BI__builtin_s390_vstrchs:
3851   case SystemZ::BI__builtin_s390_vstrcfs:
3852   case SystemZ::BI__builtin_s390_vstrczbs:
3853   case SystemZ::BI__builtin_s390_vstrczhs:
3854   case SystemZ::BI__builtin_s390_vstrczfs: i = 3; l = 0; u = 15; break;
3855   case SystemZ::BI__builtin_s390_vmslg: i = 3; l = 0; u = 15; break;
3856   case SystemZ::BI__builtin_s390_vfminsb:
3857   case SystemZ::BI__builtin_s390_vfmaxsb:
3858   case SystemZ::BI__builtin_s390_vfmindb:
3859   case SystemZ::BI__builtin_s390_vfmaxdb: i = 2; l = 0; u = 15; break;
3860   case SystemZ::BI__builtin_s390_vsld: i = 2; l = 0; u = 7; break;
3861   case SystemZ::BI__builtin_s390_vsrd: i = 2; l = 0; u = 7; break;
3862   case SystemZ::BI__builtin_s390_vclfnhs:
3863   case SystemZ::BI__builtin_s390_vclfnls:
3864   case SystemZ::BI__builtin_s390_vcfn:
3865   case SystemZ::BI__builtin_s390_vcnf: i = 1; l = 0; u = 15; break;
3866   case SystemZ::BI__builtin_s390_vcrnfs: i = 2; l = 0; u = 15; break;
3867   }
3868   return SemaBuiltinConstantArgRange(TheCall, i, l, u);
3869 }
3870 
3871 /// SemaBuiltinCpuSupports - Handle __builtin_cpu_supports(char *).
3872 /// This checks that the target supports __builtin_cpu_supports and
3873 /// that the string argument is constant and valid.
3874 static bool SemaBuiltinCpuSupports(Sema &S, const TargetInfo &TI,
3875                                    CallExpr *TheCall) {
3876   Expr *Arg = TheCall->getArg(0);
3877 
3878   // Check if the argument is a string literal.
3879   if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts()))
3880     return S.Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
3881            << Arg->getSourceRange();
3882 
3883   // Check the contents of the string.
3884   StringRef Feature =
3885       cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString();
3886   if (!TI.validateCpuSupports(Feature))
3887     return S.Diag(TheCall->getBeginLoc(), diag::err_invalid_cpu_supports)
3888            << Arg->getSourceRange();
3889   return false;
3890 }
3891 
3892 /// SemaBuiltinCpuIs - Handle __builtin_cpu_is(char *).
3893 /// This checks that the target supports __builtin_cpu_is and
3894 /// that the string argument is constant and valid.
3895 static bool SemaBuiltinCpuIs(Sema &S, const TargetInfo &TI, CallExpr *TheCall) {
3896   Expr *Arg = TheCall->getArg(0);
3897 
3898   // Check if the argument is a string literal.
3899   if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts()))
3900     return S.Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
3901            << Arg->getSourceRange();
3902 
3903   // Check the contents of the string.
3904   StringRef Feature =
3905       cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString();
3906   if (!TI.validateCpuIs(Feature))
3907     return S.Diag(TheCall->getBeginLoc(), diag::err_invalid_cpu_is)
3908            << Arg->getSourceRange();
3909   return false;
3910 }
3911 
3912 // Check if the rounding mode is legal.
3913 bool Sema::CheckX86BuiltinRoundingOrSAE(unsigned BuiltinID, CallExpr *TheCall) {
3914   // Indicates if this instruction has rounding control or just SAE.
3915   bool HasRC = false;
3916 
3917   unsigned ArgNum = 0;
3918   switch (BuiltinID) {
3919   default:
3920     return false;
3921   case X86::BI__builtin_ia32_vcvttsd2si32:
3922   case X86::BI__builtin_ia32_vcvttsd2si64:
3923   case X86::BI__builtin_ia32_vcvttsd2usi32:
3924   case X86::BI__builtin_ia32_vcvttsd2usi64:
3925   case X86::BI__builtin_ia32_vcvttss2si32:
3926   case X86::BI__builtin_ia32_vcvttss2si64:
3927   case X86::BI__builtin_ia32_vcvttss2usi32:
3928   case X86::BI__builtin_ia32_vcvttss2usi64:
3929   case X86::BI__builtin_ia32_vcvttsh2si32:
3930   case X86::BI__builtin_ia32_vcvttsh2si64:
3931   case X86::BI__builtin_ia32_vcvttsh2usi32:
3932   case X86::BI__builtin_ia32_vcvttsh2usi64:
3933     ArgNum = 1;
3934     break;
3935   case X86::BI__builtin_ia32_maxpd512:
3936   case X86::BI__builtin_ia32_maxps512:
3937   case X86::BI__builtin_ia32_minpd512:
3938   case X86::BI__builtin_ia32_minps512:
3939   case X86::BI__builtin_ia32_maxph512:
3940   case X86::BI__builtin_ia32_minph512:
3941     ArgNum = 2;
3942     break;
3943   case X86::BI__builtin_ia32_vcvtph2pd512_mask:
3944   case X86::BI__builtin_ia32_vcvtph2psx512_mask:
3945   case X86::BI__builtin_ia32_cvtps2pd512_mask:
3946   case X86::BI__builtin_ia32_cvttpd2dq512_mask:
3947   case X86::BI__builtin_ia32_cvttpd2qq512_mask:
3948   case X86::BI__builtin_ia32_cvttpd2udq512_mask:
3949   case X86::BI__builtin_ia32_cvttpd2uqq512_mask:
3950   case X86::BI__builtin_ia32_cvttps2dq512_mask:
3951   case X86::BI__builtin_ia32_cvttps2qq512_mask:
3952   case X86::BI__builtin_ia32_cvttps2udq512_mask:
3953   case X86::BI__builtin_ia32_cvttps2uqq512_mask:
3954   case X86::BI__builtin_ia32_vcvttph2w512_mask:
3955   case X86::BI__builtin_ia32_vcvttph2uw512_mask:
3956   case X86::BI__builtin_ia32_vcvttph2dq512_mask:
3957   case X86::BI__builtin_ia32_vcvttph2udq512_mask:
3958   case X86::BI__builtin_ia32_vcvttph2qq512_mask:
3959   case X86::BI__builtin_ia32_vcvttph2uqq512_mask:
3960   case X86::BI__builtin_ia32_exp2pd_mask:
3961   case X86::BI__builtin_ia32_exp2ps_mask:
3962   case X86::BI__builtin_ia32_getexppd512_mask:
3963   case X86::BI__builtin_ia32_getexpps512_mask:
3964   case X86::BI__builtin_ia32_getexpph512_mask:
3965   case X86::BI__builtin_ia32_rcp28pd_mask:
3966   case X86::BI__builtin_ia32_rcp28ps_mask:
3967   case X86::BI__builtin_ia32_rsqrt28pd_mask:
3968   case X86::BI__builtin_ia32_rsqrt28ps_mask:
3969   case X86::BI__builtin_ia32_vcomisd:
3970   case X86::BI__builtin_ia32_vcomiss:
3971   case X86::BI__builtin_ia32_vcomish:
3972   case X86::BI__builtin_ia32_vcvtph2ps512_mask:
3973     ArgNum = 3;
3974     break;
3975   case X86::BI__builtin_ia32_cmppd512_mask:
3976   case X86::BI__builtin_ia32_cmpps512_mask:
3977   case X86::BI__builtin_ia32_cmpsd_mask:
3978   case X86::BI__builtin_ia32_cmpss_mask:
3979   case X86::BI__builtin_ia32_cmpsh_mask:
3980   case X86::BI__builtin_ia32_vcvtsh2sd_round_mask:
3981   case X86::BI__builtin_ia32_vcvtsh2ss_round_mask:
3982   case X86::BI__builtin_ia32_cvtss2sd_round_mask:
3983   case X86::BI__builtin_ia32_getexpsd128_round_mask:
3984   case X86::BI__builtin_ia32_getexpss128_round_mask:
3985   case X86::BI__builtin_ia32_getexpsh128_round_mask:
3986   case X86::BI__builtin_ia32_getmantpd512_mask:
3987   case X86::BI__builtin_ia32_getmantps512_mask:
3988   case X86::BI__builtin_ia32_getmantph512_mask:
3989   case X86::BI__builtin_ia32_maxsd_round_mask:
3990   case X86::BI__builtin_ia32_maxss_round_mask:
3991   case X86::BI__builtin_ia32_maxsh_round_mask:
3992   case X86::BI__builtin_ia32_minsd_round_mask:
3993   case X86::BI__builtin_ia32_minss_round_mask:
3994   case X86::BI__builtin_ia32_minsh_round_mask:
3995   case X86::BI__builtin_ia32_rcp28sd_round_mask:
3996   case X86::BI__builtin_ia32_rcp28ss_round_mask:
3997   case X86::BI__builtin_ia32_reducepd512_mask:
3998   case X86::BI__builtin_ia32_reduceps512_mask:
3999   case X86::BI__builtin_ia32_reduceph512_mask:
4000   case X86::BI__builtin_ia32_rndscalepd_mask:
4001   case X86::BI__builtin_ia32_rndscaleps_mask:
4002   case X86::BI__builtin_ia32_rndscaleph_mask:
4003   case X86::BI__builtin_ia32_rsqrt28sd_round_mask:
4004   case X86::BI__builtin_ia32_rsqrt28ss_round_mask:
4005     ArgNum = 4;
4006     break;
4007   case X86::BI__builtin_ia32_fixupimmpd512_mask:
4008   case X86::BI__builtin_ia32_fixupimmpd512_maskz:
4009   case X86::BI__builtin_ia32_fixupimmps512_mask:
4010   case X86::BI__builtin_ia32_fixupimmps512_maskz:
4011   case X86::BI__builtin_ia32_fixupimmsd_mask:
4012   case X86::BI__builtin_ia32_fixupimmsd_maskz:
4013   case X86::BI__builtin_ia32_fixupimmss_mask:
4014   case X86::BI__builtin_ia32_fixupimmss_maskz:
4015   case X86::BI__builtin_ia32_getmantsd_round_mask:
4016   case X86::BI__builtin_ia32_getmantss_round_mask:
4017   case X86::BI__builtin_ia32_getmantsh_round_mask:
4018   case X86::BI__builtin_ia32_rangepd512_mask:
4019   case X86::BI__builtin_ia32_rangeps512_mask:
4020   case X86::BI__builtin_ia32_rangesd128_round_mask:
4021   case X86::BI__builtin_ia32_rangess128_round_mask:
4022   case X86::BI__builtin_ia32_reducesd_mask:
4023   case X86::BI__builtin_ia32_reducess_mask:
4024   case X86::BI__builtin_ia32_reducesh_mask:
4025   case X86::BI__builtin_ia32_rndscalesd_round_mask:
4026   case X86::BI__builtin_ia32_rndscaless_round_mask:
4027   case X86::BI__builtin_ia32_rndscalesh_round_mask:
4028     ArgNum = 5;
4029     break;
4030   case X86::BI__builtin_ia32_vcvtsd2si64:
4031   case X86::BI__builtin_ia32_vcvtsd2si32:
4032   case X86::BI__builtin_ia32_vcvtsd2usi32:
4033   case X86::BI__builtin_ia32_vcvtsd2usi64:
4034   case X86::BI__builtin_ia32_vcvtss2si32:
4035   case X86::BI__builtin_ia32_vcvtss2si64:
4036   case X86::BI__builtin_ia32_vcvtss2usi32:
4037   case X86::BI__builtin_ia32_vcvtss2usi64:
4038   case X86::BI__builtin_ia32_vcvtsh2si32:
4039   case X86::BI__builtin_ia32_vcvtsh2si64:
4040   case X86::BI__builtin_ia32_vcvtsh2usi32:
4041   case X86::BI__builtin_ia32_vcvtsh2usi64:
4042   case X86::BI__builtin_ia32_sqrtpd512:
4043   case X86::BI__builtin_ia32_sqrtps512:
4044   case X86::BI__builtin_ia32_sqrtph512:
4045     ArgNum = 1;
4046     HasRC = true;
4047     break;
4048   case X86::BI__builtin_ia32_addph512:
4049   case X86::BI__builtin_ia32_divph512:
4050   case X86::BI__builtin_ia32_mulph512:
4051   case X86::BI__builtin_ia32_subph512:
4052   case X86::BI__builtin_ia32_addpd512:
4053   case X86::BI__builtin_ia32_addps512:
4054   case X86::BI__builtin_ia32_divpd512:
4055   case X86::BI__builtin_ia32_divps512:
4056   case X86::BI__builtin_ia32_mulpd512:
4057   case X86::BI__builtin_ia32_mulps512:
4058   case X86::BI__builtin_ia32_subpd512:
4059   case X86::BI__builtin_ia32_subps512:
4060   case X86::BI__builtin_ia32_cvtsi2sd64:
4061   case X86::BI__builtin_ia32_cvtsi2ss32:
4062   case X86::BI__builtin_ia32_cvtsi2ss64:
4063   case X86::BI__builtin_ia32_cvtusi2sd64:
4064   case X86::BI__builtin_ia32_cvtusi2ss32:
4065   case X86::BI__builtin_ia32_cvtusi2ss64:
4066   case X86::BI__builtin_ia32_vcvtusi2sh:
4067   case X86::BI__builtin_ia32_vcvtusi642sh:
4068   case X86::BI__builtin_ia32_vcvtsi2sh:
4069   case X86::BI__builtin_ia32_vcvtsi642sh:
4070     ArgNum = 2;
4071     HasRC = true;
4072     break;
4073   case X86::BI__builtin_ia32_cvtdq2ps512_mask:
4074   case X86::BI__builtin_ia32_cvtudq2ps512_mask:
4075   case X86::BI__builtin_ia32_vcvtpd2ph512_mask:
4076   case X86::BI__builtin_ia32_vcvtps2phx512_mask:
4077   case X86::BI__builtin_ia32_cvtpd2ps512_mask:
4078   case X86::BI__builtin_ia32_cvtpd2dq512_mask:
4079   case X86::BI__builtin_ia32_cvtpd2qq512_mask:
4080   case X86::BI__builtin_ia32_cvtpd2udq512_mask:
4081   case X86::BI__builtin_ia32_cvtpd2uqq512_mask:
4082   case X86::BI__builtin_ia32_cvtps2dq512_mask:
4083   case X86::BI__builtin_ia32_cvtps2qq512_mask:
4084   case X86::BI__builtin_ia32_cvtps2udq512_mask:
4085   case X86::BI__builtin_ia32_cvtps2uqq512_mask:
4086   case X86::BI__builtin_ia32_cvtqq2pd512_mask:
4087   case X86::BI__builtin_ia32_cvtqq2ps512_mask:
4088   case X86::BI__builtin_ia32_cvtuqq2pd512_mask:
4089   case X86::BI__builtin_ia32_cvtuqq2ps512_mask:
4090   case X86::BI__builtin_ia32_vcvtdq2ph512_mask:
4091   case X86::BI__builtin_ia32_vcvtudq2ph512_mask:
4092   case X86::BI__builtin_ia32_vcvtw2ph512_mask:
4093   case X86::BI__builtin_ia32_vcvtuw2ph512_mask:
4094   case X86::BI__builtin_ia32_vcvtph2w512_mask:
4095   case X86::BI__builtin_ia32_vcvtph2uw512_mask:
4096   case X86::BI__builtin_ia32_vcvtph2dq512_mask:
4097   case X86::BI__builtin_ia32_vcvtph2udq512_mask:
4098   case X86::BI__builtin_ia32_vcvtph2qq512_mask:
4099   case X86::BI__builtin_ia32_vcvtph2uqq512_mask:
4100   case X86::BI__builtin_ia32_vcvtqq2ph512_mask:
4101   case X86::BI__builtin_ia32_vcvtuqq2ph512_mask:
4102     ArgNum = 3;
4103     HasRC = true;
4104     break;
4105   case X86::BI__builtin_ia32_addsh_round_mask:
4106   case X86::BI__builtin_ia32_addss_round_mask:
4107   case X86::BI__builtin_ia32_addsd_round_mask:
4108   case X86::BI__builtin_ia32_divsh_round_mask:
4109   case X86::BI__builtin_ia32_divss_round_mask:
4110   case X86::BI__builtin_ia32_divsd_round_mask:
4111   case X86::BI__builtin_ia32_mulsh_round_mask:
4112   case X86::BI__builtin_ia32_mulss_round_mask:
4113   case X86::BI__builtin_ia32_mulsd_round_mask:
4114   case X86::BI__builtin_ia32_subsh_round_mask:
4115   case X86::BI__builtin_ia32_subss_round_mask:
4116   case X86::BI__builtin_ia32_subsd_round_mask:
4117   case X86::BI__builtin_ia32_scalefph512_mask:
4118   case X86::BI__builtin_ia32_scalefpd512_mask:
4119   case X86::BI__builtin_ia32_scalefps512_mask:
4120   case X86::BI__builtin_ia32_scalefsd_round_mask:
4121   case X86::BI__builtin_ia32_scalefss_round_mask:
4122   case X86::BI__builtin_ia32_scalefsh_round_mask:
4123   case X86::BI__builtin_ia32_cvtsd2ss_round_mask:
4124   case X86::BI__builtin_ia32_vcvtss2sh_round_mask:
4125   case X86::BI__builtin_ia32_vcvtsd2sh_round_mask:
4126   case X86::BI__builtin_ia32_sqrtsd_round_mask:
4127   case X86::BI__builtin_ia32_sqrtss_round_mask:
4128   case X86::BI__builtin_ia32_sqrtsh_round_mask:
4129   case X86::BI__builtin_ia32_vfmaddsd3_mask:
4130   case X86::BI__builtin_ia32_vfmaddsd3_maskz:
4131   case X86::BI__builtin_ia32_vfmaddsd3_mask3:
4132   case X86::BI__builtin_ia32_vfmaddss3_mask:
4133   case X86::BI__builtin_ia32_vfmaddss3_maskz:
4134   case X86::BI__builtin_ia32_vfmaddss3_mask3:
4135   case X86::BI__builtin_ia32_vfmaddsh3_mask:
4136   case X86::BI__builtin_ia32_vfmaddsh3_maskz:
4137   case X86::BI__builtin_ia32_vfmaddsh3_mask3:
4138   case X86::BI__builtin_ia32_vfmaddpd512_mask:
4139   case X86::BI__builtin_ia32_vfmaddpd512_maskz:
4140   case X86::BI__builtin_ia32_vfmaddpd512_mask3:
4141   case X86::BI__builtin_ia32_vfmsubpd512_mask3:
4142   case X86::BI__builtin_ia32_vfmaddps512_mask:
4143   case X86::BI__builtin_ia32_vfmaddps512_maskz:
4144   case X86::BI__builtin_ia32_vfmaddps512_mask3:
4145   case X86::BI__builtin_ia32_vfmsubps512_mask3:
4146   case X86::BI__builtin_ia32_vfmaddph512_mask:
4147   case X86::BI__builtin_ia32_vfmaddph512_maskz:
4148   case X86::BI__builtin_ia32_vfmaddph512_mask3:
4149   case X86::BI__builtin_ia32_vfmsubph512_mask3:
4150   case X86::BI__builtin_ia32_vfmaddsubpd512_mask:
4151   case X86::BI__builtin_ia32_vfmaddsubpd512_maskz:
4152   case X86::BI__builtin_ia32_vfmaddsubpd512_mask3:
4153   case X86::BI__builtin_ia32_vfmsubaddpd512_mask3:
4154   case X86::BI__builtin_ia32_vfmaddsubps512_mask:
4155   case X86::BI__builtin_ia32_vfmaddsubps512_maskz:
4156   case X86::BI__builtin_ia32_vfmaddsubps512_mask3:
4157   case X86::BI__builtin_ia32_vfmsubaddps512_mask3:
4158   case X86::BI__builtin_ia32_vfmaddsubph512_mask:
4159   case X86::BI__builtin_ia32_vfmaddsubph512_maskz:
4160   case X86::BI__builtin_ia32_vfmaddsubph512_mask3:
4161   case X86::BI__builtin_ia32_vfmsubaddph512_mask3:
4162   case X86::BI__builtin_ia32_vfmaddcsh_mask:
4163   case X86::BI__builtin_ia32_vfmaddcsh_round_mask:
4164   case X86::BI__builtin_ia32_vfmaddcsh_round_mask3:
4165   case X86::BI__builtin_ia32_vfmaddcph512_mask:
4166   case X86::BI__builtin_ia32_vfmaddcph512_maskz:
4167   case X86::BI__builtin_ia32_vfmaddcph512_mask3:
4168   case X86::BI__builtin_ia32_vfcmaddcsh_mask:
4169   case X86::BI__builtin_ia32_vfcmaddcsh_round_mask:
4170   case X86::BI__builtin_ia32_vfcmaddcsh_round_mask3:
4171   case X86::BI__builtin_ia32_vfcmaddcph512_mask:
4172   case X86::BI__builtin_ia32_vfcmaddcph512_maskz:
4173   case X86::BI__builtin_ia32_vfcmaddcph512_mask3:
4174   case X86::BI__builtin_ia32_vfmulcsh_mask:
4175   case X86::BI__builtin_ia32_vfmulcph512_mask:
4176   case X86::BI__builtin_ia32_vfcmulcsh_mask:
4177   case X86::BI__builtin_ia32_vfcmulcph512_mask:
4178     ArgNum = 4;
4179     HasRC = true;
4180     break;
4181   }
4182 
4183   llvm::APSInt Result;
4184 
4185   // We can't check the value of a dependent argument.
4186   Expr *Arg = TheCall->getArg(ArgNum);
4187   if (Arg->isTypeDependent() || Arg->isValueDependent())
4188     return false;
4189 
4190   // Check constant-ness first.
4191   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
4192     return true;
4193 
4194   // Make sure rounding mode is either ROUND_CUR_DIRECTION or ROUND_NO_EXC bit
4195   // is set. If the intrinsic has rounding control(bits 1:0), make sure its only
4196   // combined with ROUND_NO_EXC. If the intrinsic does not have rounding
4197   // control, allow ROUND_NO_EXC and ROUND_CUR_DIRECTION together.
4198   if (Result == 4/*ROUND_CUR_DIRECTION*/ ||
4199       Result == 8/*ROUND_NO_EXC*/ ||
4200       (!HasRC && Result == 12/*ROUND_CUR_DIRECTION|ROUND_NO_EXC*/) ||
4201       (HasRC && Result.getZExtValue() >= 8 && Result.getZExtValue() <= 11))
4202     return false;
4203 
4204   return Diag(TheCall->getBeginLoc(), diag::err_x86_builtin_invalid_rounding)
4205          << Arg->getSourceRange();
4206 }
4207 
4208 // Check if the gather/scatter scale is legal.
4209 bool Sema::CheckX86BuiltinGatherScatterScale(unsigned BuiltinID,
4210                                              CallExpr *TheCall) {
4211   unsigned ArgNum = 0;
4212   switch (BuiltinID) {
4213   default:
4214     return false;
4215   case X86::BI__builtin_ia32_gatherpfdpd:
4216   case X86::BI__builtin_ia32_gatherpfdps:
4217   case X86::BI__builtin_ia32_gatherpfqpd:
4218   case X86::BI__builtin_ia32_gatherpfqps:
4219   case X86::BI__builtin_ia32_scatterpfdpd:
4220   case X86::BI__builtin_ia32_scatterpfdps:
4221   case X86::BI__builtin_ia32_scatterpfqpd:
4222   case X86::BI__builtin_ia32_scatterpfqps:
4223     ArgNum = 3;
4224     break;
4225   case X86::BI__builtin_ia32_gatherd_pd:
4226   case X86::BI__builtin_ia32_gatherd_pd256:
4227   case X86::BI__builtin_ia32_gatherq_pd:
4228   case X86::BI__builtin_ia32_gatherq_pd256:
4229   case X86::BI__builtin_ia32_gatherd_ps:
4230   case X86::BI__builtin_ia32_gatherd_ps256:
4231   case X86::BI__builtin_ia32_gatherq_ps:
4232   case X86::BI__builtin_ia32_gatherq_ps256:
4233   case X86::BI__builtin_ia32_gatherd_q:
4234   case X86::BI__builtin_ia32_gatherd_q256:
4235   case X86::BI__builtin_ia32_gatherq_q:
4236   case X86::BI__builtin_ia32_gatherq_q256:
4237   case X86::BI__builtin_ia32_gatherd_d:
4238   case X86::BI__builtin_ia32_gatherd_d256:
4239   case X86::BI__builtin_ia32_gatherq_d:
4240   case X86::BI__builtin_ia32_gatherq_d256:
4241   case X86::BI__builtin_ia32_gather3div2df:
4242   case X86::BI__builtin_ia32_gather3div2di:
4243   case X86::BI__builtin_ia32_gather3div4df:
4244   case X86::BI__builtin_ia32_gather3div4di:
4245   case X86::BI__builtin_ia32_gather3div4sf:
4246   case X86::BI__builtin_ia32_gather3div4si:
4247   case X86::BI__builtin_ia32_gather3div8sf:
4248   case X86::BI__builtin_ia32_gather3div8si:
4249   case X86::BI__builtin_ia32_gather3siv2df:
4250   case X86::BI__builtin_ia32_gather3siv2di:
4251   case X86::BI__builtin_ia32_gather3siv4df:
4252   case X86::BI__builtin_ia32_gather3siv4di:
4253   case X86::BI__builtin_ia32_gather3siv4sf:
4254   case X86::BI__builtin_ia32_gather3siv4si:
4255   case X86::BI__builtin_ia32_gather3siv8sf:
4256   case X86::BI__builtin_ia32_gather3siv8si:
4257   case X86::BI__builtin_ia32_gathersiv8df:
4258   case X86::BI__builtin_ia32_gathersiv16sf:
4259   case X86::BI__builtin_ia32_gatherdiv8df:
4260   case X86::BI__builtin_ia32_gatherdiv16sf:
4261   case X86::BI__builtin_ia32_gathersiv8di:
4262   case X86::BI__builtin_ia32_gathersiv16si:
4263   case X86::BI__builtin_ia32_gatherdiv8di:
4264   case X86::BI__builtin_ia32_gatherdiv16si:
4265   case X86::BI__builtin_ia32_scatterdiv2df:
4266   case X86::BI__builtin_ia32_scatterdiv2di:
4267   case X86::BI__builtin_ia32_scatterdiv4df:
4268   case X86::BI__builtin_ia32_scatterdiv4di:
4269   case X86::BI__builtin_ia32_scatterdiv4sf:
4270   case X86::BI__builtin_ia32_scatterdiv4si:
4271   case X86::BI__builtin_ia32_scatterdiv8sf:
4272   case X86::BI__builtin_ia32_scatterdiv8si:
4273   case X86::BI__builtin_ia32_scattersiv2df:
4274   case X86::BI__builtin_ia32_scattersiv2di:
4275   case X86::BI__builtin_ia32_scattersiv4df:
4276   case X86::BI__builtin_ia32_scattersiv4di:
4277   case X86::BI__builtin_ia32_scattersiv4sf:
4278   case X86::BI__builtin_ia32_scattersiv4si:
4279   case X86::BI__builtin_ia32_scattersiv8sf:
4280   case X86::BI__builtin_ia32_scattersiv8si:
4281   case X86::BI__builtin_ia32_scattersiv8df:
4282   case X86::BI__builtin_ia32_scattersiv16sf:
4283   case X86::BI__builtin_ia32_scatterdiv8df:
4284   case X86::BI__builtin_ia32_scatterdiv16sf:
4285   case X86::BI__builtin_ia32_scattersiv8di:
4286   case X86::BI__builtin_ia32_scattersiv16si:
4287   case X86::BI__builtin_ia32_scatterdiv8di:
4288   case X86::BI__builtin_ia32_scatterdiv16si:
4289     ArgNum = 4;
4290     break;
4291   }
4292 
4293   llvm::APSInt Result;
4294 
4295   // We can't check the value of a dependent argument.
4296   Expr *Arg = TheCall->getArg(ArgNum);
4297   if (Arg->isTypeDependent() || Arg->isValueDependent())
4298     return false;
4299 
4300   // Check constant-ness first.
4301   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
4302     return true;
4303 
4304   if (Result == 1 || Result == 2 || Result == 4 || Result == 8)
4305     return false;
4306 
4307   return Diag(TheCall->getBeginLoc(), diag::err_x86_builtin_invalid_scale)
4308          << Arg->getSourceRange();
4309 }
4310 
4311 enum { TileRegLow = 0, TileRegHigh = 7 };
4312 
4313 bool Sema::CheckX86BuiltinTileArgumentsRange(CallExpr *TheCall,
4314                                              ArrayRef<int> ArgNums) {
4315   for (int ArgNum : ArgNums) {
4316     if (SemaBuiltinConstantArgRange(TheCall, ArgNum, TileRegLow, TileRegHigh))
4317       return true;
4318   }
4319   return false;
4320 }
4321 
4322 bool Sema::CheckX86BuiltinTileDuplicate(CallExpr *TheCall,
4323                                         ArrayRef<int> ArgNums) {
4324   // Because the max number of tile register is TileRegHigh + 1, so here we use
4325   // each bit to represent the usage of them in bitset.
4326   std::bitset<TileRegHigh + 1> ArgValues;
4327   for (int ArgNum : ArgNums) {
4328     Expr *Arg = TheCall->getArg(ArgNum);
4329     if (Arg->isTypeDependent() || Arg->isValueDependent())
4330       continue;
4331 
4332     llvm::APSInt Result;
4333     if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
4334       return true;
4335     int ArgExtValue = Result.getExtValue();
4336     assert((ArgExtValue >= TileRegLow || ArgExtValue <= TileRegHigh) &&
4337            "Incorrect tile register num.");
4338     if (ArgValues.test(ArgExtValue))
4339       return Diag(TheCall->getBeginLoc(),
4340                   diag::err_x86_builtin_tile_arg_duplicate)
4341              << TheCall->getArg(ArgNum)->getSourceRange();
4342     ArgValues.set(ArgExtValue);
4343   }
4344   return false;
4345 }
4346 
4347 bool Sema::CheckX86BuiltinTileRangeAndDuplicate(CallExpr *TheCall,
4348                                                 ArrayRef<int> ArgNums) {
4349   return CheckX86BuiltinTileArgumentsRange(TheCall, ArgNums) ||
4350          CheckX86BuiltinTileDuplicate(TheCall, ArgNums);
4351 }
4352 
4353 bool Sema::CheckX86BuiltinTileArguments(unsigned BuiltinID, CallExpr *TheCall) {
4354   switch (BuiltinID) {
4355   default:
4356     return false;
4357   case X86::BI__builtin_ia32_tileloadd64:
4358   case X86::BI__builtin_ia32_tileloaddt164:
4359   case X86::BI__builtin_ia32_tilestored64:
4360   case X86::BI__builtin_ia32_tilezero:
4361     return CheckX86BuiltinTileArgumentsRange(TheCall, 0);
4362   case X86::BI__builtin_ia32_tdpbssd:
4363   case X86::BI__builtin_ia32_tdpbsud:
4364   case X86::BI__builtin_ia32_tdpbusd:
4365   case X86::BI__builtin_ia32_tdpbuud:
4366   case X86::BI__builtin_ia32_tdpbf16ps:
4367     return CheckX86BuiltinTileRangeAndDuplicate(TheCall, {0, 1, 2});
4368   }
4369 }
4370 static bool isX86_32Builtin(unsigned BuiltinID) {
4371   // These builtins only work on x86-32 targets.
4372   switch (BuiltinID) {
4373   case X86::BI__builtin_ia32_readeflags_u32:
4374   case X86::BI__builtin_ia32_writeeflags_u32:
4375     return true;
4376   }
4377 
4378   return false;
4379 }
4380 
4381 bool Sema::CheckX86BuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID,
4382                                        CallExpr *TheCall) {
4383   if (BuiltinID == X86::BI__builtin_cpu_supports)
4384     return SemaBuiltinCpuSupports(*this, TI, TheCall);
4385 
4386   if (BuiltinID == X86::BI__builtin_cpu_is)
4387     return SemaBuiltinCpuIs(*this, TI, TheCall);
4388 
4389   // Check for 32-bit only builtins on a 64-bit target.
4390   const llvm::Triple &TT = TI.getTriple();
4391   if (TT.getArch() != llvm::Triple::x86 && isX86_32Builtin(BuiltinID))
4392     return Diag(TheCall->getCallee()->getBeginLoc(),
4393                 diag::err_32_bit_builtin_64_bit_tgt);
4394 
4395   // If the intrinsic has rounding or SAE make sure its valid.
4396   if (CheckX86BuiltinRoundingOrSAE(BuiltinID, TheCall))
4397     return true;
4398 
4399   // If the intrinsic has a gather/scatter scale immediate make sure its valid.
4400   if (CheckX86BuiltinGatherScatterScale(BuiltinID, TheCall))
4401     return true;
4402 
4403   // If the intrinsic has a tile arguments, make sure they are valid.
4404   if (CheckX86BuiltinTileArguments(BuiltinID, TheCall))
4405     return true;
4406 
4407   // For intrinsics which take an immediate value as part of the instruction,
4408   // range check them here.
4409   int i = 0, l = 0, u = 0;
4410   switch (BuiltinID) {
4411   default:
4412     return false;
4413   case X86::BI__builtin_ia32_vec_ext_v2si:
4414   case X86::BI__builtin_ia32_vec_ext_v2di:
4415   case X86::BI__builtin_ia32_vextractf128_pd256:
4416   case X86::BI__builtin_ia32_vextractf128_ps256:
4417   case X86::BI__builtin_ia32_vextractf128_si256:
4418   case X86::BI__builtin_ia32_extract128i256:
4419   case X86::BI__builtin_ia32_extractf64x4_mask:
4420   case X86::BI__builtin_ia32_extracti64x4_mask:
4421   case X86::BI__builtin_ia32_extractf32x8_mask:
4422   case X86::BI__builtin_ia32_extracti32x8_mask:
4423   case X86::BI__builtin_ia32_extractf64x2_256_mask:
4424   case X86::BI__builtin_ia32_extracti64x2_256_mask:
4425   case X86::BI__builtin_ia32_extractf32x4_256_mask:
4426   case X86::BI__builtin_ia32_extracti32x4_256_mask:
4427     i = 1; l = 0; u = 1;
4428     break;
4429   case X86::BI__builtin_ia32_vec_set_v2di:
4430   case X86::BI__builtin_ia32_vinsertf128_pd256:
4431   case X86::BI__builtin_ia32_vinsertf128_ps256:
4432   case X86::BI__builtin_ia32_vinsertf128_si256:
4433   case X86::BI__builtin_ia32_insert128i256:
4434   case X86::BI__builtin_ia32_insertf32x8:
4435   case X86::BI__builtin_ia32_inserti32x8:
4436   case X86::BI__builtin_ia32_insertf64x4:
4437   case X86::BI__builtin_ia32_inserti64x4:
4438   case X86::BI__builtin_ia32_insertf64x2_256:
4439   case X86::BI__builtin_ia32_inserti64x2_256:
4440   case X86::BI__builtin_ia32_insertf32x4_256:
4441   case X86::BI__builtin_ia32_inserti32x4_256:
4442     i = 2; l = 0; u = 1;
4443     break;
4444   case X86::BI__builtin_ia32_vpermilpd:
4445   case X86::BI__builtin_ia32_vec_ext_v4hi:
4446   case X86::BI__builtin_ia32_vec_ext_v4si:
4447   case X86::BI__builtin_ia32_vec_ext_v4sf:
4448   case X86::BI__builtin_ia32_vec_ext_v4di:
4449   case X86::BI__builtin_ia32_extractf32x4_mask:
4450   case X86::BI__builtin_ia32_extracti32x4_mask:
4451   case X86::BI__builtin_ia32_extractf64x2_512_mask:
4452   case X86::BI__builtin_ia32_extracti64x2_512_mask:
4453     i = 1; l = 0; u = 3;
4454     break;
4455   case X86::BI_mm_prefetch:
4456   case X86::BI__builtin_ia32_vec_ext_v8hi:
4457   case X86::BI__builtin_ia32_vec_ext_v8si:
4458     i = 1; l = 0; u = 7;
4459     break;
4460   case X86::BI__builtin_ia32_sha1rnds4:
4461   case X86::BI__builtin_ia32_blendpd:
4462   case X86::BI__builtin_ia32_shufpd:
4463   case X86::BI__builtin_ia32_vec_set_v4hi:
4464   case X86::BI__builtin_ia32_vec_set_v4si:
4465   case X86::BI__builtin_ia32_vec_set_v4di:
4466   case X86::BI__builtin_ia32_shuf_f32x4_256:
4467   case X86::BI__builtin_ia32_shuf_f64x2_256:
4468   case X86::BI__builtin_ia32_shuf_i32x4_256:
4469   case X86::BI__builtin_ia32_shuf_i64x2_256:
4470   case X86::BI__builtin_ia32_insertf64x2_512:
4471   case X86::BI__builtin_ia32_inserti64x2_512:
4472   case X86::BI__builtin_ia32_insertf32x4:
4473   case X86::BI__builtin_ia32_inserti32x4:
4474     i = 2; l = 0; u = 3;
4475     break;
4476   case X86::BI__builtin_ia32_vpermil2pd:
4477   case X86::BI__builtin_ia32_vpermil2pd256:
4478   case X86::BI__builtin_ia32_vpermil2ps:
4479   case X86::BI__builtin_ia32_vpermil2ps256:
4480     i = 3; l = 0; u = 3;
4481     break;
4482   case X86::BI__builtin_ia32_cmpb128_mask:
4483   case X86::BI__builtin_ia32_cmpw128_mask:
4484   case X86::BI__builtin_ia32_cmpd128_mask:
4485   case X86::BI__builtin_ia32_cmpq128_mask:
4486   case X86::BI__builtin_ia32_cmpb256_mask:
4487   case X86::BI__builtin_ia32_cmpw256_mask:
4488   case X86::BI__builtin_ia32_cmpd256_mask:
4489   case X86::BI__builtin_ia32_cmpq256_mask:
4490   case X86::BI__builtin_ia32_cmpb512_mask:
4491   case X86::BI__builtin_ia32_cmpw512_mask:
4492   case X86::BI__builtin_ia32_cmpd512_mask:
4493   case X86::BI__builtin_ia32_cmpq512_mask:
4494   case X86::BI__builtin_ia32_ucmpb128_mask:
4495   case X86::BI__builtin_ia32_ucmpw128_mask:
4496   case X86::BI__builtin_ia32_ucmpd128_mask:
4497   case X86::BI__builtin_ia32_ucmpq128_mask:
4498   case X86::BI__builtin_ia32_ucmpb256_mask:
4499   case X86::BI__builtin_ia32_ucmpw256_mask:
4500   case X86::BI__builtin_ia32_ucmpd256_mask:
4501   case X86::BI__builtin_ia32_ucmpq256_mask:
4502   case X86::BI__builtin_ia32_ucmpb512_mask:
4503   case X86::BI__builtin_ia32_ucmpw512_mask:
4504   case X86::BI__builtin_ia32_ucmpd512_mask:
4505   case X86::BI__builtin_ia32_ucmpq512_mask:
4506   case X86::BI__builtin_ia32_vpcomub:
4507   case X86::BI__builtin_ia32_vpcomuw:
4508   case X86::BI__builtin_ia32_vpcomud:
4509   case X86::BI__builtin_ia32_vpcomuq:
4510   case X86::BI__builtin_ia32_vpcomb:
4511   case X86::BI__builtin_ia32_vpcomw:
4512   case X86::BI__builtin_ia32_vpcomd:
4513   case X86::BI__builtin_ia32_vpcomq:
4514   case X86::BI__builtin_ia32_vec_set_v8hi:
4515   case X86::BI__builtin_ia32_vec_set_v8si:
4516     i = 2; l = 0; u = 7;
4517     break;
4518   case X86::BI__builtin_ia32_vpermilpd256:
4519   case X86::BI__builtin_ia32_roundps:
4520   case X86::BI__builtin_ia32_roundpd:
4521   case X86::BI__builtin_ia32_roundps256:
4522   case X86::BI__builtin_ia32_roundpd256:
4523   case X86::BI__builtin_ia32_getmantpd128_mask:
4524   case X86::BI__builtin_ia32_getmantpd256_mask:
4525   case X86::BI__builtin_ia32_getmantps128_mask:
4526   case X86::BI__builtin_ia32_getmantps256_mask:
4527   case X86::BI__builtin_ia32_getmantpd512_mask:
4528   case X86::BI__builtin_ia32_getmantps512_mask:
4529   case X86::BI__builtin_ia32_getmantph128_mask:
4530   case X86::BI__builtin_ia32_getmantph256_mask:
4531   case X86::BI__builtin_ia32_getmantph512_mask:
4532   case X86::BI__builtin_ia32_vec_ext_v16qi:
4533   case X86::BI__builtin_ia32_vec_ext_v16hi:
4534     i = 1; l = 0; u = 15;
4535     break;
4536   case X86::BI__builtin_ia32_pblendd128:
4537   case X86::BI__builtin_ia32_blendps:
4538   case X86::BI__builtin_ia32_blendpd256:
4539   case X86::BI__builtin_ia32_shufpd256:
4540   case X86::BI__builtin_ia32_roundss:
4541   case X86::BI__builtin_ia32_roundsd:
4542   case X86::BI__builtin_ia32_rangepd128_mask:
4543   case X86::BI__builtin_ia32_rangepd256_mask:
4544   case X86::BI__builtin_ia32_rangepd512_mask:
4545   case X86::BI__builtin_ia32_rangeps128_mask:
4546   case X86::BI__builtin_ia32_rangeps256_mask:
4547   case X86::BI__builtin_ia32_rangeps512_mask:
4548   case X86::BI__builtin_ia32_getmantsd_round_mask:
4549   case X86::BI__builtin_ia32_getmantss_round_mask:
4550   case X86::BI__builtin_ia32_getmantsh_round_mask:
4551   case X86::BI__builtin_ia32_vec_set_v16qi:
4552   case X86::BI__builtin_ia32_vec_set_v16hi:
4553     i = 2; l = 0; u = 15;
4554     break;
4555   case X86::BI__builtin_ia32_vec_ext_v32qi:
4556     i = 1; l = 0; u = 31;
4557     break;
4558   case X86::BI__builtin_ia32_cmpps:
4559   case X86::BI__builtin_ia32_cmpss:
4560   case X86::BI__builtin_ia32_cmppd:
4561   case X86::BI__builtin_ia32_cmpsd:
4562   case X86::BI__builtin_ia32_cmpps256:
4563   case X86::BI__builtin_ia32_cmppd256:
4564   case X86::BI__builtin_ia32_cmpps128_mask:
4565   case X86::BI__builtin_ia32_cmppd128_mask:
4566   case X86::BI__builtin_ia32_cmpps256_mask:
4567   case X86::BI__builtin_ia32_cmppd256_mask:
4568   case X86::BI__builtin_ia32_cmpps512_mask:
4569   case X86::BI__builtin_ia32_cmppd512_mask:
4570   case X86::BI__builtin_ia32_cmpsd_mask:
4571   case X86::BI__builtin_ia32_cmpss_mask:
4572   case X86::BI__builtin_ia32_vec_set_v32qi:
4573     i = 2; l = 0; u = 31;
4574     break;
4575   case X86::BI__builtin_ia32_permdf256:
4576   case X86::BI__builtin_ia32_permdi256:
4577   case X86::BI__builtin_ia32_permdf512:
4578   case X86::BI__builtin_ia32_permdi512:
4579   case X86::BI__builtin_ia32_vpermilps:
4580   case X86::BI__builtin_ia32_vpermilps256:
4581   case X86::BI__builtin_ia32_vpermilpd512:
4582   case X86::BI__builtin_ia32_vpermilps512:
4583   case X86::BI__builtin_ia32_pshufd:
4584   case X86::BI__builtin_ia32_pshufd256:
4585   case X86::BI__builtin_ia32_pshufd512:
4586   case X86::BI__builtin_ia32_pshufhw:
4587   case X86::BI__builtin_ia32_pshufhw256:
4588   case X86::BI__builtin_ia32_pshufhw512:
4589   case X86::BI__builtin_ia32_pshuflw:
4590   case X86::BI__builtin_ia32_pshuflw256:
4591   case X86::BI__builtin_ia32_pshuflw512:
4592   case X86::BI__builtin_ia32_vcvtps2ph:
4593   case X86::BI__builtin_ia32_vcvtps2ph_mask:
4594   case X86::BI__builtin_ia32_vcvtps2ph256:
4595   case X86::BI__builtin_ia32_vcvtps2ph256_mask:
4596   case X86::BI__builtin_ia32_vcvtps2ph512_mask:
4597   case X86::BI__builtin_ia32_rndscaleps_128_mask:
4598   case X86::BI__builtin_ia32_rndscalepd_128_mask:
4599   case X86::BI__builtin_ia32_rndscaleps_256_mask:
4600   case X86::BI__builtin_ia32_rndscalepd_256_mask:
4601   case X86::BI__builtin_ia32_rndscaleps_mask:
4602   case X86::BI__builtin_ia32_rndscalepd_mask:
4603   case X86::BI__builtin_ia32_rndscaleph_mask:
4604   case X86::BI__builtin_ia32_reducepd128_mask:
4605   case X86::BI__builtin_ia32_reducepd256_mask:
4606   case X86::BI__builtin_ia32_reducepd512_mask:
4607   case X86::BI__builtin_ia32_reduceps128_mask:
4608   case X86::BI__builtin_ia32_reduceps256_mask:
4609   case X86::BI__builtin_ia32_reduceps512_mask:
4610   case X86::BI__builtin_ia32_reduceph128_mask:
4611   case X86::BI__builtin_ia32_reduceph256_mask:
4612   case X86::BI__builtin_ia32_reduceph512_mask:
4613   case X86::BI__builtin_ia32_prold512:
4614   case X86::BI__builtin_ia32_prolq512:
4615   case X86::BI__builtin_ia32_prold128:
4616   case X86::BI__builtin_ia32_prold256:
4617   case X86::BI__builtin_ia32_prolq128:
4618   case X86::BI__builtin_ia32_prolq256:
4619   case X86::BI__builtin_ia32_prord512:
4620   case X86::BI__builtin_ia32_prorq512:
4621   case X86::BI__builtin_ia32_prord128:
4622   case X86::BI__builtin_ia32_prord256:
4623   case X86::BI__builtin_ia32_prorq128:
4624   case X86::BI__builtin_ia32_prorq256:
4625   case X86::BI__builtin_ia32_fpclasspd128_mask:
4626   case X86::BI__builtin_ia32_fpclasspd256_mask:
4627   case X86::BI__builtin_ia32_fpclassps128_mask:
4628   case X86::BI__builtin_ia32_fpclassps256_mask:
4629   case X86::BI__builtin_ia32_fpclassps512_mask:
4630   case X86::BI__builtin_ia32_fpclasspd512_mask:
4631   case X86::BI__builtin_ia32_fpclassph128_mask:
4632   case X86::BI__builtin_ia32_fpclassph256_mask:
4633   case X86::BI__builtin_ia32_fpclassph512_mask:
4634   case X86::BI__builtin_ia32_fpclasssd_mask:
4635   case X86::BI__builtin_ia32_fpclassss_mask:
4636   case X86::BI__builtin_ia32_fpclasssh_mask:
4637   case X86::BI__builtin_ia32_pslldqi128_byteshift:
4638   case X86::BI__builtin_ia32_pslldqi256_byteshift:
4639   case X86::BI__builtin_ia32_pslldqi512_byteshift:
4640   case X86::BI__builtin_ia32_psrldqi128_byteshift:
4641   case X86::BI__builtin_ia32_psrldqi256_byteshift:
4642   case X86::BI__builtin_ia32_psrldqi512_byteshift:
4643   case X86::BI__builtin_ia32_kshiftliqi:
4644   case X86::BI__builtin_ia32_kshiftlihi:
4645   case X86::BI__builtin_ia32_kshiftlisi:
4646   case X86::BI__builtin_ia32_kshiftlidi:
4647   case X86::BI__builtin_ia32_kshiftriqi:
4648   case X86::BI__builtin_ia32_kshiftrihi:
4649   case X86::BI__builtin_ia32_kshiftrisi:
4650   case X86::BI__builtin_ia32_kshiftridi:
4651     i = 1; l = 0; u = 255;
4652     break;
4653   case X86::BI__builtin_ia32_vperm2f128_pd256:
4654   case X86::BI__builtin_ia32_vperm2f128_ps256:
4655   case X86::BI__builtin_ia32_vperm2f128_si256:
4656   case X86::BI__builtin_ia32_permti256:
4657   case X86::BI__builtin_ia32_pblendw128:
4658   case X86::BI__builtin_ia32_pblendw256:
4659   case X86::BI__builtin_ia32_blendps256:
4660   case X86::BI__builtin_ia32_pblendd256:
4661   case X86::BI__builtin_ia32_palignr128:
4662   case X86::BI__builtin_ia32_palignr256:
4663   case X86::BI__builtin_ia32_palignr512:
4664   case X86::BI__builtin_ia32_alignq512:
4665   case X86::BI__builtin_ia32_alignd512:
4666   case X86::BI__builtin_ia32_alignd128:
4667   case X86::BI__builtin_ia32_alignd256:
4668   case X86::BI__builtin_ia32_alignq128:
4669   case X86::BI__builtin_ia32_alignq256:
4670   case X86::BI__builtin_ia32_vcomisd:
4671   case X86::BI__builtin_ia32_vcomiss:
4672   case X86::BI__builtin_ia32_shuf_f32x4:
4673   case X86::BI__builtin_ia32_shuf_f64x2:
4674   case X86::BI__builtin_ia32_shuf_i32x4:
4675   case X86::BI__builtin_ia32_shuf_i64x2:
4676   case X86::BI__builtin_ia32_shufpd512:
4677   case X86::BI__builtin_ia32_shufps:
4678   case X86::BI__builtin_ia32_shufps256:
4679   case X86::BI__builtin_ia32_shufps512:
4680   case X86::BI__builtin_ia32_dbpsadbw128:
4681   case X86::BI__builtin_ia32_dbpsadbw256:
4682   case X86::BI__builtin_ia32_dbpsadbw512:
4683   case X86::BI__builtin_ia32_vpshldd128:
4684   case X86::BI__builtin_ia32_vpshldd256:
4685   case X86::BI__builtin_ia32_vpshldd512:
4686   case X86::BI__builtin_ia32_vpshldq128:
4687   case X86::BI__builtin_ia32_vpshldq256:
4688   case X86::BI__builtin_ia32_vpshldq512:
4689   case X86::BI__builtin_ia32_vpshldw128:
4690   case X86::BI__builtin_ia32_vpshldw256:
4691   case X86::BI__builtin_ia32_vpshldw512:
4692   case X86::BI__builtin_ia32_vpshrdd128:
4693   case X86::BI__builtin_ia32_vpshrdd256:
4694   case X86::BI__builtin_ia32_vpshrdd512:
4695   case X86::BI__builtin_ia32_vpshrdq128:
4696   case X86::BI__builtin_ia32_vpshrdq256:
4697   case X86::BI__builtin_ia32_vpshrdq512:
4698   case X86::BI__builtin_ia32_vpshrdw128:
4699   case X86::BI__builtin_ia32_vpshrdw256:
4700   case X86::BI__builtin_ia32_vpshrdw512:
4701     i = 2; l = 0; u = 255;
4702     break;
4703   case X86::BI__builtin_ia32_fixupimmpd512_mask:
4704   case X86::BI__builtin_ia32_fixupimmpd512_maskz:
4705   case X86::BI__builtin_ia32_fixupimmps512_mask:
4706   case X86::BI__builtin_ia32_fixupimmps512_maskz:
4707   case X86::BI__builtin_ia32_fixupimmsd_mask:
4708   case X86::BI__builtin_ia32_fixupimmsd_maskz:
4709   case X86::BI__builtin_ia32_fixupimmss_mask:
4710   case X86::BI__builtin_ia32_fixupimmss_maskz:
4711   case X86::BI__builtin_ia32_fixupimmpd128_mask:
4712   case X86::BI__builtin_ia32_fixupimmpd128_maskz:
4713   case X86::BI__builtin_ia32_fixupimmpd256_mask:
4714   case X86::BI__builtin_ia32_fixupimmpd256_maskz:
4715   case X86::BI__builtin_ia32_fixupimmps128_mask:
4716   case X86::BI__builtin_ia32_fixupimmps128_maskz:
4717   case X86::BI__builtin_ia32_fixupimmps256_mask:
4718   case X86::BI__builtin_ia32_fixupimmps256_maskz:
4719   case X86::BI__builtin_ia32_pternlogd512_mask:
4720   case X86::BI__builtin_ia32_pternlogd512_maskz:
4721   case X86::BI__builtin_ia32_pternlogq512_mask:
4722   case X86::BI__builtin_ia32_pternlogq512_maskz:
4723   case X86::BI__builtin_ia32_pternlogd128_mask:
4724   case X86::BI__builtin_ia32_pternlogd128_maskz:
4725   case X86::BI__builtin_ia32_pternlogd256_mask:
4726   case X86::BI__builtin_ia32_pternlogd256_maskz:
4727   case X86::BI__builtin_ia32_pternlogq128_mask:
4728   case X86::BI__builtin_ia32_pternlogq128_maskz:
4729   case X86::BI__builtin_ia32_pternlogq256_mask:
4730   case X86::BI__builtin_ia32_pternlogq256_maskz:
4731     i = 3; l = 0; u = 255;
4732     break;
4733   case X86::BI__builtin_ia32_gatherpfdpd:
4734   case X86::BI__builtin_ia32_gatherpfdps:
4735   case X86::BI__builtin_ia32_gatherpfqpd:
4736   case X86::BI__builtin_ia32_gatherpfqps:
4737   case X86::BI__builtin_ia32_scatterpfdpd:
4738   case X86::BI__builtin_ia32_scatterpfdps:
4739   case X86::BI__builtin_ia32_scatterpfqpd:
4740   case X86::BI__builtin_ia32_scatterpfqps:
4741     i = 4; l = 2; u = 3;
4742     break;
4743   case X86::BI__builtin_ia32_reducesd_mask:
4744   case X86::BI__builtin_ia32_reducess_mask:
4745   case X86::BI__builtin_ia32_rndscalesd_round_mask:
4746   case X86::BI__builtin_ia32_rndscaless_round_mask:
4747   case X86::BI__builtin_ia32_rndscalesh_round_mask:
4748   case X86::BI__builtin_ia32_reducesh_mask:
4749     i = 4; l = 0; u = 255;
4750     break;
4751   }
4752 
4753   // Note that we don't force a hard error on the range check here, allowing
4754   // template-generated or macro-generated dead code to potentially have out-of-
4755   // range values. These need to code generate, but don't need to necessarily
4756   // make any sense. We use a warning that defaults to an error.
4757   return SemaBuiltinConstantArgRange(TheCall, i, l, u, /*RangeIsError*/ false);
4758 }
4759 
4760 /// Given a FunctionDecl's FormatAttr, attempts to populate the FomatStringInfo
4761 /// parameter with the FormatAttr's correct format_idx and firstDataArg.
4762 /// Returns true when the format fits the function and the FormatStringInfo has
4763 /// been populated.
4764 bool Sema::getFormatStringInfo(const FormatAttr *Format, bool IsCXXMember,
4765                                FormatStringInfo *FSI) {
4766   FSI->HasVAListArg = Format->getFirstArg() == 0;
4767   FSI->FormatIdx = Format->getFormatIdx() - 1;
4768   FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1;
4769 
4770   // The way the format attribute works in GCC, the implicit this argument
4771   // of member functions is counted. However, it doesn't appear in our own
4772   // lists, so decrement format_idx in that case.
4773   if (IsCXXMember) {
4774     if(FSI->FormatIdx == 0)
4775       return false;
4776     --FSI->FormatIdx;
4777     if (FSI->FirstDataArg != 0)
4778       --FSI->FirstDataArg;
4779   }
4780   return true;
4781 }
4782 
4783 /// Checks if a the given expression evaluates to null.
4784 ///
4785 /// Returns true if the value evaluates to null.
4786 static bool CheckNonNullExpr(Sema &S, const Expr *Expr) {
4787   // If the expression has non-null type, it doesn't evaluate to null.
4788   if (auto nullability
4789         = Expr->IgnoreImplicit()->getType()->getNullability(S.Context)) {
4790     if (*nullability == NullabilityKind::NonNull)
4791       return false;
4792   }
4793 
4794   // As a special case, transparent unions initialized with zero are
4795   // considered null for the purposes of the nonnull attribute.
4796   if (const RecordType *UT = Expr->getType()->getAsUnionType()) {
4797     if (UT->getDecl()->hasAttr<TransparentUnionAttr>())
4798       if (const CompoundLiteralExpr *CLE =
4799           dyn_cast<CompoundLiteralExpr>(Expr))
4800         if (const InitListExpr *ILE =
4801             dyn_cast<InitListExpr>(CLE->getInitializer()))
4802           Expr = ILE->getInit(0);
4803   }
4804 
4805   bool Result;
4806   return (!Expr->isValueDependent() &&
4807           Expr->EvaluateAsBooleanCondition(Result, S.Context) &&
4808           !Result);
4809 }
4810 
4811 static void CheckNonNullArgument(Sema &S,
4812                                  const Expr *ArgExpr,
4813                                  SourceLocation CallSiteLoc) {
4814   if (CheckNonNullExpr(S, ArgExpr))
4815     S.DiagRuntimeBehavior(CallSiteLoc, ArgExpr,
4816                           S.PDiag(diag::warn_null_arg)
4817                               << ArgExpr->getSourceRange());
4818 }
4819 
4820 bool Sema::GetFormatNSStringIdx(const FormatAttr *Format, unsigned &Idx) {
4821   FormatStringInfo FSI;
4822   if ((GetFormatStringType(Format) == FST_NSString) &&
4823       getFormatStringInfo(Format, false, &FSI)) {
4824     Idx = FSI.FormatIdx;
4825     return true;
4826   }
4827   return false;
4828 }
4829 
4830 /// Diagnose use of %s directive in an NSString which is being passed
4831 /// as formatting string to formatting method.
4832 static void
4833 DiagnoseCStringFormatDirectiveInCFAPI(Sema &S,
4834                                         const NamedDecl *FDecl,
4835                                         Expr **Args,
4836                                         unsigned NumArgs) {
4837   unsigned Idx = 0;
4838   bool Format = false;
4839   ObjCStringFormatFamily SFFamily = FDecl->getObjCFStringFormattingFamily();
4840   if (SFFamily == ObjCStringFormatFamily::SFF_CFString) {
4841     Idx = 2;
4842     Format = true;
4843   }
4844   else
4845     for (const auto *I : FDecl->specific_attrs<FormatAttr>()) {
4846       if (S.GetFormatNSStringIdx(I, Idx)) {
4847         Format = true;
4848         break;
4849       }
4850     }
4851   if (!Format || NumArgs <= Idx)
4852     return;
4853   const Expr *FormatExpr = Args[Idx];
4854   if (const CStyleCastExpr *CSCE = dyn_cast<CStyleCastExpr>(FormatExpr))
4855     FormatExpr = CSCE->getSubExpr();
4856   const StringLiteral *FormatString;
4857   if (const ObjCStringLiteral *OSL =
4858       dyn_cast<ObjCStringLiteral>(FormatExpr->IgnoreParenImpCasts()))
4859     FormatString = OSL->getString();
4860   else
4861     FormatString = dyn_cast<StringLiteral>(FormatExpr->IgnoreParenImpCasts());
4862   if (!FormatString)
4863     return;
4864   if (S.FormatStringHasSArg(FormatString)) {
4865     S.Diag(FormatExpr->getExprLoc(), diag::warn_objc_cdirective_format_string)
4866       << "%s" << 1 << 1;
4867     S.Diag(FDecl->getLocation(), diag::note_entity_declared_at)
4868       << FDecl->getDeclName();
4869   }
4870 }
4871 
4872 /// Determine whether the given type has a non-null nullability annotation.
4873 static bool isNonNullType(ASTContext &ctx, QualType type) {
4874   if (auto nullability = type->getNullability(ctx))
4875     return *nullability == NullabilityKind::NonNull;
4876 
4877   return false;
4878 }
4879 
4880 static void CheckNonNullArguments(Sema &S,
4881                                   const NamedDecl *FDecl,
4882                                   const FunctionProtoType *Proto,
4883                                   ArrayRef<const Expr *> Args,
4884                                   SourceLocation CallSiteLoc) {
4885   assert((FDecl || Proto) && "Need a function declaration or prototype");
4886 
4887   // Already checked by by constant evaluator.
4888   if (S.isConstantEvaluated())
4889     return;
4890   // Check the attributes attached to the method/function itself.
4891   llvm::SmallBitVector NonNullArgs;
4892   if (FDecl) {
4893     // Handle the nonnull attribute on the function/method declaration itself.
4894     for (const auto *NonNull : FDecl->specific_attrs<NonNullAttr>()) {
4895       if (!NonNull->args_size()) {
4896         // Easy case: all pointer arguments are nonnull.
4897         for (const auto *Arg : Args)
4898           if (S.isValidPointerAttrType(Arg->getType()))
4899             CheckNonNullArgument(S, Arg, CallSiteLoc);
4900         return;
4901       }
4902 
4903       for (const ParamIdx &Idx : NonNull->args()) {
4904         unsigned IdxAST = Idx.getASTIndex();
4905         if (IdxAST >= Args.size())
4906           continue;
4907         if (NonNullArgs.empty())
4908           NonNullArgs.resize(Args.size());
4909         NonNullArgs.set(IdxAST);
4910       }
4911     }
4912   }
4913 
4914   if (FDecl && (isa<FunctionDecl>(FDecl) || isa<ObjCMethodDecl>(FDecl))) {
4915     // Handle the nonnull attribute on the parameters of the
4916     // function/method.
4917     ArrayRef<ParmVarDecl*> parms;
4918     if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(FDecl))
4919       parms = FD->parameters();
4920     else
4921       parms = cast<ObjCMethodDecl>(FDecl)->parameters();
4922 
4923     unsigned ParamIndex = 0;
4924     for (ArrayRef<ParmVarDecl*>::iterator I = parms.begin(), E = parms.end();
4925          I != E; ++I, ++ParamIndex) {
4926       const ParmVarDecl *PVD = *I;
4927       if (PVD->hasAttr<NonNullAttr>() ||
4928           isNonNullType(S.Context, PVD->getType())) {
4929         if (NonNullArgs.empty())
4930           NonNullArgs.resize(Args.size());
4931 
4932         NonNullArgs.set(ParamIndex);
4933       }
4934     }
4935   } else {
4936     // If we have a non-function, non-method declaration but no
4937     // function prototype, try to dig out the function prototype.
4938     if (!Proto) {
4939       if (const ValueDecl *VD = dyn_cast<ValueDecl>(FDecl)) {
4940         QualType type = VD->getType().getNonReferenceType();
4941         if (auto pointerType = type->getAs<PointerType>())
4942           type = pointerType->getPointeeType();
4943         else if (auto blockType = type->getAs<BlockPointerType>())
4944           type = blockType->getPointeeType();
4945         // FIXME: data member pointers?
4946 
4947         // Dig out the function prototype, if there is one.
4948         Proto = type->getAs<FunctionProtoType>();
4949       }
4950     }
4951 
4952     // Fill in non-null argument information from the nullability
4953     // information on the parameter types (if we have them).
4954     if (Proto) {
4955       unsigned Index = 0;
4956       for (auto paramType : Proto->getParamTypes()) {
4957         if (isNonNullType(S.Context, paramType)) {
4958           if (NonNullArgs.empty())
4959             NonNullArgs.resize(Args.size());
4960 
4961           NonNullArgs.set(Index);
4962         }
4963 
4964         ++Index;
4965       }
4966     }
4967   }
4968 
4969   // Check for non-null arguments.
4970   for (unsigned ArgIndex = 0, ArgIndexEnd = NonNullArgs.size();
4971        ArgIndex != ArgIndexEnd; ++ArgIndex) {
4972     if (NonNullArgs[ArgIndex])
4973       CheckNonNullArgument(S, Args[ArgIndex], CallSiteLoc);
4974   }
4975 }
4976 
4977 /// Warn if a pointer or reference argument passed to a function points to an
4978 /// object that is less aligned than the parameter. This can happen when
4979 /// creating a typedef with a lower alignment than the original type and then
4980 /// calling functions defined in terms of the original type.
4981 void Sema::CheckArgAlignment(SourceLocation Loc, NamedDecl *FDecl,
4982                              StringRef ParamName, QualType ArgTy,
4983                              QualType ParamTy) {
4984 
4985   // If a function accepts a pointer or reference type
4986   if (!ParamTy->isPointerType() && !ParamTy->isReferenceType())
4987     return;
4988 
4989   // If the parameter is a pointer type, get the pointee type for the
4990   // argument too. If the parameter is a reference type, don't try to get
4991   // the pointee type for the argument.
4992   if (ParamTy->isPointerType())
4993     ArgTy = ArgTy->getPointeeType();
4994 
4995   // Remove reference or pointer
4996   ParamTy = ParamTy->getPointeeType();
4997 
4998   // Find expected alignment, and the actual alignment of the passed object.
4999   // getTypeAlignInChars requires complete types
5000   if (ArgTy.isNull() || ParamTy->isIncompleteType() ||
5001       ArgTy->isIncompleteType() || ParamTy->isUndeducedType() ||
5002       ArgTy->isUndeducedType())
5003     return;
5004 
5005   CharUnits ParamAlign = Context.getTypeAlignInChars(ParamTy);
5006   CharUnits ArgAlign = Context.getTypeAlignInChars(ArgTy);
5007 
5008   // If the argument is less aligned than the parameter, there is a
5009   // potential alignment issue.
5010   if (ArgAlign < ParamAlign)
5011     Diag(Loc, diag::warn_param_mismatched_alignment)
5012         << (int)ArgAlign.getQuantity() << (int)ParamAlign.getQuantity()
5013         << ParamName << FDecl;
5014 }
5015 
5016 /// Handles the checks for format strings, non-POD arguments to vararg
5017 /// functions, NULL arguments passed to non-NULL parameters, and diagnose_if
5018 /// attributes.
5019 void Sema::checkCall(NamedDecl *FDecl, const FunctionProtoType *Proto,
5020                      const Expr *ThisArg, ArrayRef<const Expr *> Args,
5021                      bool IsMemberFunction, SourceLocation Loc,
5022                      SourceRange Range, VariadicCallType CallType) {
5023   // FIXME: We should check as much as we can in the template definition.
5024   if (CurContext->isDependentContext())
5025     return;
5026 
5027   // Printf and scanf checking.
5028   llvm::SmallBitVector CheckedVarArgs;
5029   if (FDecl) {
5030     for (const auto *I : FDecl->specific_attrs<FormatAttr>()) {
5031       // Only create vector if there are format attributes.
5032       CheckedVarArgs.resize(Args.size());
5033 
5034       CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range,
5035                            CheckedVarArgs);
5036     }
5037   }
5038 
5039   // Refuse POD arguments that weren't caught by the format string
5040   // checks above.
5041   auto *FD = dyn_cast_or_null<FunctionDecl>(FDecl);
5042   if (CallType != VariadicDoesNotApply &&
5043       (!FD || FD->getBuiltinID() != Builtin::BI__noop)) {
5044     unsigned NumParams = Proto ? Proto->getNumParams()
5045                        : FDecl && isa<FunctionDecl>(FDecl)
5046                            ? cast<FunctionDecl>(FDecl)->getNumParams()
5047                        : FDecl && isa<ObjCMethodDecl>(FDecl)
5048                            ? cast<ObjCMethodDecl>(FDecl)->param_size()
5049                        : 0;
5050 
5051     for (unsigned ArgIdx = NumParams; ArgIdx < Args.size(); ++ArgIdx) {
5052       // Args[ArgIdx] can be null in malformed code.
5053       if (const Expr *Arg = Args[ArgIdx]) {
5054         if (CheckedVarArgs.empty() || !CheckedVarArgs[ArgIdx])
5055           checkVariadicArgument(Arg, CallType);
5056       }
5057     }
5058   }
5059 
5060   if (FDecl || Proto) {
5061     CheckNonNullArguments(*this, FDecl, Proto, Args, Loc);
5062 
5063     // Type safety checking.
5064     if (FDecl) {
5065       for (const auto *I : FDecl->specific_attrs<ArgumentWithTypeTagAttr>())
5066         CheckArgumentWithTypeTag(I, Args, Loc);
5067     }
5068   }
5069 
5070   // Check that passed arguments match the alignment of original arguments.
5071   // Try to get the missing prototype from the declaration.
5072   if (!Proto && FDecl) {
5073     const auto *FT = FDecl->getFunctionType();
5074     if (isa_and_nonnull<FunctionProtoType>(FT))
5075       Proto = cast<FunctionProtoType>(FDecl->getFunctionType());
5076   }
5077   if (Proto) {
5078     // For variadic functions, we may have more args than parameters.
5079     // For some K&R functions, we may have less args than parameters.
5080     const auto N = std::min<unsigned>(Proto->getNumParams(), Args.size());
5081     for (unsigned ArgIdx = 0; ArgIdx < N; ++ArgIdx) {
5082       // Args[ArgIdx] can be null in malformed code.
5083       if (const Expr *Arg = Args[ArgIdx]) {
5084         if (Arg->containsErrors())
5085           continue;
5086 
5087         QualType ParamTy = Proto->getParamType(ArgIdx);
5088         QualType ArgTy = Arg->getType();
5089         CheckArgAlignment(Arg->getExprLoc(), FDecl, std::to_string(ArgIdx + 1),
5090                           ArgTy, ParamTy);
5091       }
5092     }
5093   }
5094 
5095   if (FDecl && FDecl->hasAttr<AllocAlignAttr>()) {
5096     auto *AA = FDecl->getAttr<AllocAlignAttr>();
5097     const Expr *Arg = Args[AA->getParamIndex().getASTIndex()];
5098     if (!Arg->isValueDependent()) {
5099       Expr::EvalResult Align;
5100       if (Arg->EvaluateAsInt(Align, Context)) {
5101         const llvm::APSInt &I = Align.Val.getInt();
5102         if (!I.isPowerOf2())
5103           Diag(Arg->getExprLoc(), diag::warn_alignment_not_power_of_two)
5104               << Arg->getSourceRange();
5105 
5106         if (I > Sema::MaximumAlignment)
5107           Diag(Arg->getExprLoc(), diag::warn_assume_aligned_too_great)
5108               << Arg->getSourceRange() << Sema::MaximumAlignment;
5109       }
5110     }
5111   }
5112 
5113   if (FD)
5114     diagnoseArgDependentDiagnoseIfAttrs(FD, ThisArg, Args, Loc);
5115 }
5116 
5117 /// CheckConstructorCall - Check a constructor call for correctness and safety
5118 /// properties not enforced by the C type system.
5119 void Sema::CheckConstructorCall(FunctionDecl *FDecl, QualType ThisType,
5120                                 ArrayRef<const Expr *> Args,
5121                                 const FunctionProtoType *Proto,
5122                                 SourceLocation Loc) {
5123   VariadicCallType CallType =
5124       Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
5125 
5126   auto *Ctor = cast<CXXConstructorDecl>(FDecl);
5127   CheckArgAlignment(Loc, FDecl, "'this'", Context.getPointerType(ThisType),
5128                     Context.getPointerType(Ctor->getThisObjectType()));
5129 
5130   checkCall(FDecl, Proto, /*ThisArg=*/nullptr, Args, /*IsMemberFunction=*/true,
5131             Loc, SourceRange(), CallType);
5132 }
5133 
5134 /// CheckFunctionCall - Check a direct function call for various correctness
5135 /// and safety properties not strictly enforced by the C type system.
5136 bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall,
5137                              const FunctionProtoType *Proto) {
5138   bool IsMemberOperatorCall = isa<CXXOperatorCallExpr>(TheCall) &&
5139                               isa<CXXMethodDecl>(FDecl);
5140   bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) ||
5141                           IsMemberOperatorCall;
5142   VariadicCallType CallType = getVariadicCallType(FDecl, Proto,
5143                                                   TheCall->getCallee());
5144   Expr** Args = TheCall->getArgs();
5145   unsigned NumArgs = TheCall->getNumArgs();
5146 
5147   Expr *ImplicitThis = nullptr;
5148   if (IsMemberOperatorCall) {
5149     // If this is a call to a member operator, hide the first argument
5150     // from checkCall.
5151     // FIXME: Our choice of AST representation here is less than ideal.
5152     ImplicitThis = Args[0];
5153     ++Args;
5154     --NumArgs;
5155   } else if (IsMemberFunction)
5156     ImplicitThis =
5157         cast<CXXMemberCallExpr>(TheCall)->getImplicitObjectArgument();
5158 
5159   if (ImplicitThis) {
5160     // ImplicitThis may or may not be a pointer, depending on whether . or -> is
5161     // used.
5162     QualType ThisType = ImplicitThis->getType();
5163     if (!ThisType->isPointerType()) {
5164       assert(!ThisType->isReferenceType());
5165       ThisType = Context.getPointerType(ThisType);
5166     }
5167 
5168     QualType ThisTypeFromDecl =
5169         Context.getPointerType(cast<CXXMethodDecl>(FDecl)->getThisObjectType());
5170 
5171     CheckArgAlignment(TheCall->getRParenLoc(), FDecl, "'this'", ThisType,
5172                       ThisTypeFromDecl);
5173   }
5174 
5175   checkCall(FDecl, Proto, ImplicitThis, llvm::makeArrayRef(Args, NumArgs),
5176             IsMemberFunction, TheCall->getRParenLoc(),
5177             TheCall->getCallee()->getSourceRange(), CallType);
5178 
5179   IdentifierInfo *FnInfo = FDecl->getIdentifier();
5180   // None of the checks below are needed for functions that don't have
5181   // simple names (e.g., C++ conversion functions).
5182   if (!FnInfo)
5183     return false;
5184 
5185   CheckTCBEnforcement(TheCall, FDecl);
5186 
5187   CheckAbsoluteValueFunction(TheCall, FDecl);
5188   CheckMaxUnsignedZero(TheCall, FDecl);
5189 
5190   if (getLangOpts().ObjC)
5191     DiagnoseCStringFormatDirectiveInCFAPI(*this, FDecl, Args, NumArgs);
5192 
5193   unsigned CMId = FDecl->getMemoryFunctionKind();
5194 
5195   // Handle memory setting and copying functions.
5196   switch (CMId) {
5197   case 0:
5198     return false;
5199   case Builtin::BIstrlcpy: // fallthrough
5200   case Builtin::BIstrlcat:
5201     CheckStrlcpycatArguments(TheCall, FnInfo);
5202     break;
5203   case Builtin::BIstrncat:
5204     CheckStrncatArguments(TheCall, FnInfo);
5205     break;
5206   case Builtin::BIfree:
5207     CheckFreeArguments(TheCall);
5208     break;
5209   default:
5210     CheckMemaccessArguments(TheCall, CMId, FnInfo);
5211   }
5212 
5213   return false;
5214 }
5215 
5216 bool Sema::CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation lbrac,
5217                                ArrayRef<const Expr *> Args) {
5218   VariadicCallType CallType =
5219       Method->isVariadic() ? VariadicMethod : VariadicDoesNotApply;
5220 
5221   checkCall(Method, nullptr, /*ThisArg=*/nullptr, Args,
5222             /*IsMemberFunction=*/false, lbrac, Method->getSourceRange(),
5223             CallType);
5224 
5225   return false;
5226 }
5227 
5228 bool Sema::CheckPointerCall(NamedDecl *NDecl, CallExpr *TheCall,
5229                             const FunctionProtoType *Proto) {
5230   QualType Ty;
5231   if (const auto *V = dyn_cast<VarDecl>(NDecl))
5232     Ty = V->getType().getNonReferenceType();
5233   else if (const auto *F = dyn_cast<FieldDecl>(NDecl))
5234     Ty = F->getType().getNonReferenceType();
5235   else
5236     return false;
5237 
5238   if (!Ty->isBlockPointerType() && !Ty->isFunctionPointerType() &&
5239       !Ty->isFunctionProtoType())
5240     return false;
5241 
5242   VariadicCallType CallType;
5243   if (!Proto || !Proto->isVariadic()) {
5244     CallType = VariadicDoesNotApply;
5245   } else if (Ty->isBlockPointerType()) {
5246     CallType = VariadicBlock;
5247   } else { // Ty->isFunctionPointerType()
5248     CallType = VariadicFunction;
5249   }
5250 
5251   checkCall(NDecl, Proto, /*ThisArg=*/nullptr,
5252             llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()),
5253             /*IsMemberFunction=*/false, TheCall->getRParenLoc(),
5254             TheCall->getCallee()->getSourceRange(), CallType);
5255 
5256   return false;
5257 }
5258 
5259 /// Checks function calls when a FunctionDecl or a NamedDecl is not available,
5260 /// such as function pointers returned from functions.
5261 bool Sema::CheckOtherCall(CallExpr *TheCall, const FunctionProtoType *Proto) {
5262   VariadicCallType CallType = getVariadicCallType(/*FDecl=*/nullptr, Proto,
5263                                                   TheCall->getCallee());
5264   checkCall(/*FDecl=*/nullptr, Proto, /*ThisArg=*/nullptr,
5265             llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()),
5266             /*IsMemberFunction=*/false, TheCall->getRParenLoc(),
5267             TheCall->getCallee()->getSourceRange(), CallType);
5268 
5269   return false;
5270 }
5271 
5272 static bool isValidOrderingForOp(int64_t Ordering, AtomicExpr::AtomicOp Op) {
5273   if (!llvm::isValidAtomicOrderingCABI(Ordering))
5274     return false;
5275 
5276   auto OrderingCABI = (llvm::AtomicOrderingCABI)Ordering;
5277   switch (Op) {
5278   case AtomicExpr::AO__c11_atomic_init:
5279   case AtomicExpr::AO__opencl_atomic_init:
5280     llvm_unreachable("There is no ordering argument for an init");
5281 
5282   case AtomicExpr::AO__c11_atomic_load:
5283   case AtomicExpr::AO__opencl_atomic_load:
5284   case AtomicExpr::AO__atomic_load_n:
5285   case AtomicExpr::AO__atomic_load:
5286     return OrderingCABI != llvm::AtomicOrderingCABI::release &&
5287            OrderingCABI != llvm::AtomicOrderingCABI::acq_rel;
5288 
5289   case AtomicExpr::AO__c11_atomic_store:
5290   case AtomicExpr::AO__opencl_atomic_store:
5291   case AtomicExpr::AO__atomic_store:
5292   case AtomicExpr::AO__atomic_store_n:
5293     return OrderingCABI != llvm::AtomicOrderingCABI::consume &&
5294            OrderingCABI != llvm::AtomicOrderingCABI::acquire &&
5295            OrderingCABI != llvm::AtomicOrderingCABI::acq_rel;
5296 
5297   default:
5298     return true;
5299   }
5300 }
5301 
5302 ExprResult Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult,
5303                                          AtomicExpr::AtomicOp Op) {
5304   CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
5305   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
5306   MultiExprArg Args{TheCall->getArgs(), TheCall->getNumArgs()};
5307   return BuildAtomicExpr({TheCall->getBeginLoc(), TheCall->getEndLoc()},
5308                          DRE->getSourceRange(), TheCall->getRParenLoc(), Args,
5309                          Op);
5310 }
5311 
5312 ExprResult Sema::BuildAtomicExpr(SourceRange CallRange, SourceRange ExprRange,
5313                                  SourceLocation RParenLoc, MultiExprArg Args,
5314                                  AtomicExpr::AtomicOp Op,
5315                                  AtomicArgumentOrder ArgOrder) {
5316   // All the non-OpenCL operations take one of the following forms.
5317   // The OpenCL operations take the __c11 forms with one extra argument for
5318   // synchronization scope.
5319   enum {
5320     // C    __c11_atomic_init(A *, C)
5321     Init,
5322 
5323     // C    __c11_atomic_load(A *, int)
5324     Load,
5325 
5326     // void __atomic_load(A *, CP, int)
5327     LoadCopy,
5328 
5329     // void __atomic_store(A *, CP, int)
5330     Copy,
5331 
5332     // C    __c11_atomic_add(A *, M, int)
5333     Arithmetic,
5334 
5335     // C    __atomic_exchange_n(A *, CP, int)
5336     Xchg,
5337 
5338     // void __atomic_exchange(A *, C *, CP, int)
5339     GNUXchg,
5340 
5341     // bool __c11_atomic_compare_exchange_strong(A *, C *, CP, int, int)
5342     C11CmpXchg,
5343 
5344     // bool __atomic_compare_exchange(A *, C *, CP, bool, int, int)
5345     GNUCmpXchg
5346   } Form = Init;
5347 
5348   const unsigned NumForm = GNUCmpXchg + 1;
5349   const unsigned NumArgs[] = { 2, 2, 3, 3, 3, 3, 4, 5, 6 };
5350   const unsigned NumVals[] = { 1, 0, 1, 1, 1, 1, 2, 2, 3 };
5351   // where:
5352   //   C is an appropriate type,
5353   //   A is volatile _Atomic(C) for __c11 builtins and is C for GNU builtins,
5354   //   CP is C for __c11 builtins and GNU _n builtins and is C * otherwise,
5355   //   M is C if C is an integer, and ptrdiff_t if C is a pointer, and
5356   //   the int parameters are for orderings.
5357 
5358   static_assert(sizeof(NumArgs)/sizeof(NumArgs[0]) == NumForm
5359       && sizeof(NumVals)/sizeof(NumVals[0]) == NumForm,
5360       "need to update code for modified forms");
5361   static_assert(AtomicExpr::AO__c11_atomic_init == 0 &&
5362                     AtomicExpr::AO__c11_atomic_fetch_min + 1 ==
5363                         AtomicExpr::AO__atomic_load,
5364                 "need to update code for modified C11 atomics");
5365   bool IsOpenCL = Op >= AtomicExpr::AO__opencl_atomic_init &&
5366                   Op <= AtomicExpr::AO__opencl_atomic_fetch_max;
5367   bool IsC11 = (Op >= AtomicExpr::AO__c11_atomic_init &&
5368                Op <= AtomicExpr::AO__c11_atomic_fetch_min) ||
5369                IsOpenCL;
5370   bool IsN = Op == AtomicExpr::AO__atomic_load_n ||
5371              Op == AtomicExpr::AO__atomic_store_n ||
5372              Op == AtomicExpr::AO__atomic_exchange_n ||
5373              Op == AtomicExpr::AO__atomic_compare_exchange_n;
5374   bool IsAddSub = false;
5375 
5376   switch (Op) {
5377   case AtomicExpr::AO__c11_atomic_init:
5378   case AtomicExpr::AO__opencl_atomic_init:
5379     Form = Init;
5380     break;
5381 
5382   case AtomicExpr::AO__c11_atomic_load:
5383   case AtomicExpr::AO__opencl_atomic_load:
5384   case AtomicExpr::AO__atomic_load_n:
5385     Form = Load;
5386     break;
5387 
5388   case AtomicExpr::AO__atomic_load:
5389     Form = LoadCopy;
5390     break;
5391 
5392   case AtomicExpr::AO__c11_atomic_store:
5393   case AtomicExpr::AO__opencl_atomic_store:
5394   case AtomicExpr::AO__atomic_store:
5395   case AtomicExpr::AO__atomic_store_n:
5396     Form = Copy;
5397     break;
5398 
5399   case AtomicExpr::AO__c11_atomic_fetch_add:
5400   case AtomicExpr::AO__c11_atomic_fetch_sub:
5401   case AtomicExpr::AO__opencl_atomic_fetch_add:
5402   case AtomicExpr::AO__opencl_atomic_fetch_sub:
5403   case AtomicExpr::AO__atomic_fetch_add:
5404   case AtomicExpr::AO__atomic_fetch_sub:
5405   case AtomicExpr::AO__atomic_add_fetch:
5406   case AtomicExpr::AO__atomic_sub_fetch:
5407     IsAddSub = true;
5408     Form = Arithmetic;
5409     break;
5410   case AtomicExpr::AO__c11_atomic_fetch_and:
5411   case AtomicExpr::AO__c11_atomic_fetch_or:
5412   case AtomicExpr::AO__c11_atomic_fetch_xor:
5413   case AtomicExpr::AO__opencl_atomic_fetch_and:
5414   case AtomicExpr::AO__opencl_atomic_fetch_or:
5415   case AtomicExpr::AO__opencl_atomic_fetch_xor:
5416   case AtomicExpr::AO__atomic_fetch_and:
5417   case AtomicExpr::AO__atomic_fetch_or:
5418   case AtomicExpr::AO__atomic_fetch_xor:
5419   case AtomicExpr::AO__atomic_fetch_nand:
5420   case AtomicExpr::AO__atomic_and_fetch:
5421   case AtomicExpr::AO__atomic_or_fetch:
5422   case AtomicExpr::AO__atomic_xor_fetch:
5423   case AtomicExpr::AO__atomic_nand_fetch:
5424     Form = Arithmetic;
5425     break;
5426   case AtomicExpr::AO__c11_atomic_fetch_min:
5427   case AtomicExpr::AO__c11_atomic_fetch_max:
5428   case AtomicExpr::AO__opencl_atomic_fetch_min:
5429   case AtomicExpr::AO__opencl_atomic_fetch_max:
5430   case AtomicExpr::AO__atomic_min_fetch:
5431   case AtomicExpr::AO__atomic_max_fetch:
5432   case AtomicExpr::AO__atomic_fetch_min:
5433   case AtomicExpr::AO__atomic_fetch_max:
5434     Form = Arithmetic;
5435     break;
5436 
5437   case AtomicExpr::AO__c11_atomic_exchange:
5438   case AtomicExpr::AO__opencl_atomic_exchange:
5439   case AtomicExpr::AO__atomic_exchange_n:
5440     Form = Xchg;
5441     break;
5442 
5443   case AtomicExpr::AO__atomic_exchange:
5444     Form = GNUXchg;
5445     break;
5446 
5447   case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
5448   case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
5449   case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
5450   case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
5451     Form = C11CmpXchg;
5452     break;
5453 
5454   case AtomicExpr::AO__atomic_compare_exchange:
5455   case AtomicExpr::AO__atomic_compare_exchange_n:
5456     Form = GNUCmpXchg;
5457     break;
5458   }
5459 
5460   unsigned AdjustedNumArgs = NumArgs[Form];
5461   if (IsOpenCL && Op != AtomicExpr::AO__opencl_atomic_init)
5462     ++AdjustedNumArgs;
5463   // Check we have the right number of arguments.
5464   if (Args.size() < AdjustedNumArgs) {
5465     Diag(CallRange.getEnd(), diag::err_typecheck_call_too_few_args)
5466         << 0 << AdjustedNumArgs << static_cast<unsigned>(Args.size())
5467         << ExprRange;
5468     return ExprError();
5469   } else if (Args.size() > AdjustedNumArgs) {
5470     Diag(Args[AdjustedNumArgs]->getBeginLoc(),
5471          diag::err_typecheck_call_too_many_args)
5472         << 0 << AdjustedNumArgs << static_cast<unsigned>(Args.size())
5473         << ExprRange;
5474     return ExprError();
5475   }
5476 
5477   // Inspect the first argument of the atomic operation.
5478   Expr *Ptr = Args[0];
5479   ExprResult ConvertedPtr = DefaultFunctionArrayLvalueConversion(Ptr);
5480   if (ConvertedPtr.isInvalid())
5481     return ExprError();
5482 
5483   Ptr = ConvertedPtr.get();
5484   const PointerType *pointerType = Ptr->getType()->getAs<PointerType>();
5485   if (!pointerType) {
5486     Diag(ExprRange.getBegin(), diag::err_atomic_builtin_must_be_pointer)
5487         << Ptr->getType() << Ptr->getSourceRange();
5488     return ExprError();
5489   }
5490 
5491   // For a __c11 builtin, this should be a pointer to an _Atomic type.
5492   QualType AtomTy = pointerType->getPointeeType(); // 'A'
5493   QualType ValType = AtomTy; // 'C'
5494   if (IsC11) {
5495     if (!AtomTy->isAtomicType()) {
5496       Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_atomic)
5497           << Ptr->getType() << Ptr->getSourceRange();
5498       return ExprError();
5499     }
5500     if ((Form != Load && Form != LoadCopy && AtomTy.isConstQualified()) ||
5501         AtomTy.getAddressSpace() == LangAS::opencl_constant) {
5502       Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_non_const_atomic)
5503           << (AtomTy.isConstQualified() ? 0 : 1) << Ptr->getType()
5504           << Ptr->getSourceRange();
5505       return ExprError();
5506     }
5507     ValType = AtomTy->castAs<AtomicType>()->getValueType();
5508   } else if (Form != Load && Form != LoadCopy) {
5509     if (ValType.isConstQualified()) {
5510       Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_non_const_pointer)
5511           << Ptr->getType() << Ptr->getSourceRange();
5512       return ExprError();
5513     }
5514   }
5515 
5516   // For an arithmetic operation, the implied arithmetic must be well-formed.
5517   if (Form == Arithmetic) {
5518     // gcc does not enforce these rules for GNU atomics, but we do so for
5519     // sanity.
5520     auto IsAllowedValueType = [&](QualType ValType) {
5521       if (ValType->isIntegerType())
5522         return true;
5523       if (ValType->isPointerType())
5524         return true;
5525       if (!ValType->isFloatingType())
5526         return false;
5527       // LLVM Parser does not allow atomicrmw with x86_fp80 type.
5528       if (ValType->isSpecificBuiltinType(BuiltinType::LongDouble) &&
5529           &Context.getTargetInfo().getLongDoubleFormat() ==
5530               &llvm::APFloat::x87DoubleExtended())
5531         return false;
5532       return true;
5533     };
5534     if (IsAddSub && !IsAllowedValueType(ValType)) {
5535       Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_atomic_int_ptr_or_fp)
5536           << IsC11 << Ptr->getType() << Ptr->getSourceRange();
5537       return ExprError();
5538     }
5539     if (!IsAddSub && !ValType->isIntegerType()) {
5540       Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_atomic_int)
5541           << IsC11 << Ptr->getType() << Ptr->getSourceRange();
5542       return ExprError();
5543     }
5544     if (IsC11 && ValType->isPointerType() &&
5545         RequireCompleteType(Ptr->getBeginLoc(), ValType->getPointeeType(),
5546                             diag::err_incomplete_type)) {
5547       return ExprError();
5548     }
5549   } else if (IsN && !ValType->isIntegerType() && !ValType->isPointerType()) {
5550     // For __atomic_*_n operations, the value type must be a scalar integral or
5551     // pointer type which is 1, 2, 4, 8 or 16 bytes in length.
5552     Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_atomic_int_or_ptr)
5553         << IsC11 << Ptr->getType() << Ptr->getSourceRange();
5554     return ExprError();
5555   }
5556 
5557   if (!IsC11 && !AtomTy.isTriviallyCopyableType(Context) &&
5558       !AtomTy->isScalarType()) {
5559     // For GNU atomics, require a trivially-copyable type. This is not part of
5560     // the GNU atomics specification, but we enforce it for sanity.
5561     Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_trivial_copy)
5562         << Ptr->getType() << Ptr->getSourceRange();
5563     return ExprError();
5564   }
5565 
5566   switch (ValType.getObjCLifetime()) {
5567   case Qualifiers::OCL_None:
5568   case Qualifiers::OCL_ExplicitNone:
5569     // okay
5570     break;
5571 
5572   case Qualifiers::OCL_Weak:
5573   case Qualifiers::OCL_Strong:
5574   case Qualifiers::OCL_Autoreleasing:
5575     // FIXME: Can this happen? By this point, ValType should be known
5576     // to be trivially copyable.
5577     Diag(ExprRange.getBegin(), diag::err_arc_atomic_ownership)
5578         << ValType << Ptr->getSourceRange();
5579     return ExprError();
5580   }
5581 
5582   // All atomic operations have an overload which takes a pointer to a volatile
5583   // 'A'.  We shouldn't let the volatile-ness of the pointee-type inject itself
5584   // into the result or the other operands. Similarly atomic_load takes a
5585   // pointer to a const 'A'.
5586   ValType.removeLocalVolatile();
5587   ValType.removeLocalConst();
5588   QualType ResultType = ValType;
5589   if (Form == Copy || Form == LoadCopy || Form == GNUXchg ||
5590       Form == Init)
5591     ResultType = Context.VoidTy;
5592   else if (Form == C11CmpXchg || Form == GNUCmpXchg)
5593     ResultType = Context.BoolTy;
5594 
5595   // The type of a parameter passed 'by value'. In the GNU atomics, such
5596   // arguments are actually passed as pointers.
5597   QualType ByValType = ValType; // 'CP'
5598   bool IsPassedByAddress = false;
5599   if (!IsC11 && !IsN) {
5600     ByValType = Ptr->getType();
5601     IsPassedByAddress = true;
5602   }
5603 
5604   SmallVector<Expr *, 5> APIOrderedArgs;
5605   if (ArgOrder == Sema::AtomicArgumentOrder::AST) {
5606     APIOrderedArgs.push_back(Args[0]);
5607     switch (Form) {
5608     case Init:
5609     case Load:
5610       APIOrderedArgs.push_back(Args[1]); // Val1/Order
5611       break;
5612     case LoadCopy:
5613     case Copy:
5614     case Arithmetic:
5615     case Xchg:
5616       APIOrderedArgs.push_back(Args[2]); // Val1
5617       APIOrderedArgs.push_back(Args[1]); // Order
5618       break;
5619     case GNUXchg:
5620       APIOrderedArgs.push_back(Args[2]); // Val1
5621       APIOrderedArgs.push_back(Args[3]); // Val2
5622       APIOrderedArgs.push_back(Args[1]); // Order
5623       break;
5624     case C11CmpXchg:
5625       APIOrderedArgs.push_back(Args[2]); // Val1
5626       APIOrderedArgs.push_back(Args[4]); // Val2
5627       APIOrderedArgs.push_back(Args[1]); // Order
5628       APIOrderedArgs.push_back(Args[3]); // OrderFail
5629       break;
5630     case GNUCmpXchg:
5631       APIOrderedArgs.push_back(Args[2]); // Val1
5632       APIOrderedArgs.push_back(Args[4]); // Val2
5633       APIOrderedArgs.push_back(Args[5]); // Weak
5634       APIOrderedArgs.push_back(Args[1]); // Order
5635       APIOrderedArgs.push_back(Args[3]); // OrderFail
5636       break;
5637     }
5638   } else
5639     APIOrderedArgs.append(Args.begin(), Args.end());
5640 
5641   // The first argument's non-CV pointer type is used to deduce the type of
5642   // subsequent arguments, except for:
5643   //  - weak flag (always converted to bool)
5644   //  - memory order (always converted to int)
5645   //  - scope  (always converted to int)
5646   for (unsigned i = 0; i != APIOrderedArgs.size(); ++i) {
5647     QualType Ty;
5648     if (i < NumVals[Form] + 1) {
5649       switch (i) {
5650       case 0:
5651         // The first argument is always a pointer. It has a fixed type.
5652         // It is always dereferenced, a nullptr is undefined.
5653         CheckNonNullArgument(*this, APIOrderedArgs[i], ExprRange.getBegin());
5654         // Nothing else to do: we already know all we want about this pointer.
5655         continue;
5656       case 1:
5657         // The second argument is the non-atomic operand. For arithmetic, this
5658         // is always passed by value, and for a compare_exchange it is always
5659         // passed by address. For the rest, GNU uses by-address and C11 uses
5660         // by-value.
5661         assert(Form != Load);
5662         if (Form == Arithmetic && ValType->isPointerType())
5663           Ty = Context.getPointerDiffType();
5664         else if (Form == Init || Form == Arithmetic)
5665           Ty = ValType;
5666         else if (Form == Copy || Form == Xchg) {
5667           if (IsPassedByAddress) {
5668             // The value pointer is always dereferenced, a nullptr is undefined.
5669             CheckNonNullArgument(*this, APIOrderedArgs[i],
5670                                  ExprRange.getBegin());
5671           }
5672           Ty = ByValType;
5673         } else {
5674           Expr *ValArg = APIOrderedArgs[i];
5675           // The value pointer is always dereferenced, a nullptr is undefined.
5676           CheckNonNullArgument(*this, ValArg, ExprRange.getBegin());
5677           LangAS AS = LangAS::Default;
5678           // Keep address space of non-atomic pointer type.
5679           if (const PointerType *PtrTy =
5680                   ValArg->getType()->getAs<PointerType>()) {
5681             AS = PtrTy->getPointeeType().getAddressSpace();
5682           }
5683           Ty = Context.getPointerType(
5684               Context.getAddrSpaceQualType(ValType.getUnqualifiedType(), AS));
5685         }
5686         break;
5687       case 2:
5688         // The third argument to compare_exchange / GNU exchange is the desired
5689         // value, either by-value (for the C11 and *_n variant) or as a pointer.
5690         if (IsPassedByAddress)
5691           CheckNonNullArgument(*this, APIOrderedArgs[i], ExprRange.getBegin());
5692         Ty = ByValType;
5693         break;
5694       case 3:
5695         // The fourth argument to GNU compare_exchange is a 'weak' flag.
5696         Ty = Context.BoolTy;
5697         break;
5698       }
5699     } else {
5700       // The order(s) and scope are always converted to int.
5701       Ty = Context.IntTy;
5702     }
5703 
5704     InitializedEntity Entity =
5705         InitializedEntity::InitializeParameter(Context, Ty, false);
5706     ExprResult Arg = APIOrderedArgs[i];
5707     Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
5708     if (Arg.isInvalid())
5709       return true;
5710     APIOrderedArgs[i] = Arg.get();
5711   }
5712 
5713   // Permute the arguments into a 'consistent' order.
5714   SmallVector<Expr*, 5> SubExprs;
5715   SubExprs.push_back(Ptr);
5716   switch (Form) {
5717   case Init:
5718     // Note, AtomicExpr::getVal1() has a special case for this atomic.
5719     SubExprs.push_back(APIOrderedArgs[1]); // Val1
5720     break;
5721   case Load:
5722     SubExprs.push_back(APIOrderedArgs[1]); // Order
5723     break;
5724   case LoadCopy:
5725   case Copy:
5726   case Arithmetic:
5727   case Xchg:
5728     SubExprs.push_back(APIOrderedArgs[2]); // Order
5729     SubExprs.push_back(APIOrderedArgs[1]); // Val1
5730     break;
5731   case GNUXchg:
5732     // Note, AtomicExpr::getVal2() has a special case for this atomic.
5733     SubExprs.push_back(APIOrderedArgs[3]); // Order
5734     SubExprs.push_back(APIOrderedArgs[1]); // Val1
5735     SubExprs.push_back(APIOrderedArgs[2]); // Val2
5736     break;
5737   case C11CmpXchg:
5738     SubExprs.push_back(APIOrderedArgs[3]); // Order
5739     SubExprs.push_back(APIOrderedArgs[1]); // Val1
5740     SubExprs.push_back(APIOrderedArgs[4]); // OrderFail
5741     SubExprs.push_back(APIOrderedArgs[2]); // Val2
5742     break;
5743   case GNUCmpXchg:
5744     SubExprs.push_back(APIOrderedArgs[4]); // Order
5745     SubExprs.push_back(APIOrderedArgs[1]); // Val1
5746     SubExprs.push_back(APIOrderedArgs[5]); // OrderFail
5747     SubExprs.push_back(APIOrderedArgs[2]); // Val2
5748     SubExprs.push_back(APIOrderedArgs[3]); // Weak
5749     break;
5750   }
5751 
5752   if (SubExprs.size() >= 2 && Form != Init) {
5753     if (Optional<llvm::APSInt> Result =
5754             SubExprs[1]->getIntegerConstantExpr(Context))
5755       if (!isValidOrderingForOp(Result->getSExtValue(), Op))
5756         Diag(SubExprs[1]->getBeginLoc(),
5757              diag::warn_atomic_op_has_invalid_memory_order)
5758             << SubExprs[1]->getSourceRange();
5759   }
5760 
5761   if (auto ScopeModel = AtomicExpr::getScopeModel(Op)) {
5762     auto *Scope = Args[Args.size() - 1];
5763     if (Optional<llvm::APSInt> Result =
5764             Scope->getIntegerConstantExpr(Context)) {
5765       if (!ScopeModel->isValid(Result->getZExtValue()))
5766         Diag(Scope->getBeginLoc(), diag::err_atomic_op_has_invalid_synch_scope)
5767             << Scope->getSourceRange();
5768     }
5769     SubExprs.push_back(Scope);
5770   }
5771 
5772   AtomicExpr *AE = new (Context)
5773       AtomicExpr(ExprRange.getBegin(), SubExprs, ResultType, Op, RParenLoc);
5774 
5775   if ((Op == AtomicExpr::AO__c11_atomic_load ||
5776        Op == AtomicExpr::AO__c11_atomic_store ||
5777        Op == AtomicExpr::AO__opencl_atomic_load ||
5778        Op == AtomicExpr::AO__opencl_atomic_store ) &&
5779       Context.AtomicUsesUnsupportedLibcall(AE))
5780     Diag(AE->getBeginLoc(), diag::err_atomic_load_store_uses_lib)
5781         << ((Op == AtomicExpr::AO__c11_atomic_load ||
5782              Op == AtomicExpr::AO__opencl_atomic_load)
5783                 ? 0
5784                 : 1);
5785 
5786   if (ValType->isExtIntType()) {
5787     Diag(Ptr->getExprLoc(), diag::err_atomic_builtin_ext_int_prohibit);
5788     return ExprError();
5789   }
5790 
5791   return AE;
5792 }
5793 
5794 /// checkBuiltinArgument - Given a call to a builtin function, perform
5795 /// normal type-checking on the given argument, updating the call in
5796 /// place.  This is useful when a builtin function requires custom
5797 /// type-checking for some of its arguments but not necessarily all of
5798 /// them.
5799 ///
5800 /// Returns true on error.
5801 static bool checkBuiltinArgument(Sema &S, CallExpr *E, unsigned ArgIndex) {
5802   FunctionDecl *Fn = E->getDirectCallee();
5803   assert(Fn && "builtin call without direct callee!");
5804 
5805   ParmVarDecl *Param = Fn->getParamDecl(ArgIndex);
5806   InitializedEntity Entity =
5807     InitializedEntity::InitializeParameter(S.Context, Param);
5808 
5809   ExprResult Arg = E->getArg(0);
5810   Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
5811   if (Arg.isInvalid())
5812     return true;
5813 
5814   E->setArg(ArgIndex, Arg.get());
5815   return false;
5816 }
5817 
5818 /// We have a call to a function like __sync_fetch_and_add, which is an
5819 /// overloaded function based on the pointer type of its first argument.
5820 /// The main BuildCallExpr routines have already promoted the types of
5821 /// arguments because all of these calls are prototyped as void(...).
5822 ///
5823 /// This function goes through and does final semantic checking for these
5824 /// builtins, as well as generating any warnings.
5825 ExprResult
5826 Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
5827   CallExpr *TheCall = static_cast<CallExpr *>(TheCallResult.get());
5828   Expr *Callee = TheCall->getCallee();
5829   DeclRefExpr *DRE = cast<DeclRefExpr>(Callee->IgnoreParenCasts());
5830   FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
5831 
5832   // Ensure that we have at least one argument to do type inference from.
5833   if (TheCall->getNumArgs() < 1) {
5834     Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
5835         << 0 << 1 << TheCall->getNumArgs() << Callee->getSourceRange();
5836     return ExprError();
5837   }
5838 
5839   // Inspect the first argument of the atomic builtin.  This should always be
5840   // a pointer type, whose element is an integral scalar or pointer type.
5841   // Because it is a pointer type, we don't have to worry about any implicit
5842   // casts here.
5843   // FIXME: We don't allow floating point scalars as input.
5844   Expr *FirstArg = TheCall->getArg(0);
5845   ExprResult FirstArgResult = DefaultFunctionArrayLvalueConversion(FirstArg);
5846   if (FirstArgResult.isInvalid())
5847     return ExprError();
5848   FirstArg = FirstArgResult.get();
5849   TheCall->setArg(0, FirstArg);
5850 
5851   const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>();
5852   if (!pointerType) {
5853     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer)
5854         << FirstArg->getType() << FirstArg->getSourceRange();
5855     return ExprError();
5856   }
5857 
5858   QualType ValType = pointerType->getPointeeType();
5859   if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
5860       !ValType->isBlockPointerType()) {
5861     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer_intptr)
5862         << FirstArg->getType() << FirstArg->getSourceRange();
5863     return ExprError();
5864   }
5865 
5866   if (ValType.isConstQualified()) {
5867     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_cannot_be_const)
5868         << FirstArg->getType() << FirstArg->getSourceRange();
5869     return ExprError();
5870   }
5871 
5872   switch (ValType.getObjCLifetime()) {
5873   case Qualifiers::OCL_None:
5874   case Qualifiers::OCL_ExplicitNone:
5875     // okay
5876     break;
5877 
5878   case Qualifiers::OCL_Weak:
5879   case Qualifiers::OCL_Strong:
5880   case Qualifiers::OCL_Autoreleasing:
5881     Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership)
5882         << ValType << FirstArg->getSourceRange();
5883     return ExprError();
5884   }
5885 
5886   // Strip any qualifiers off ValType.
5887   ValType = ValType.getUnqualifiedType();
5888 
5889   // The majority of builtins return a value, but a few have special return
5890   // types, so allow them to override appropriately below.
5891   QualType ResultType = ValType;
5892 
5893   // We need to figure out which concrete builtin this maps onto.  For example,
5894   // __sync_fetch_and_add with a 2 byte object turns into
5895   // __sync_fetch_and_add_2.
5896 #define BUILTIN_ROW(x) \
5897   { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
5898     Builtin::BI##x##_8, Builtin::BI##x##_16 }
5899 
5900   static const unsigned BuiltinIndices[][5] = {
5901     BUILTIN_ROW(__sync_fetch_and_add),
5902     BUILTIN_ROW(__sync_fetch_and_sub),
5903     BUILTIN_ROW(__sync_fetch_and_or),
5904     BUILTIN_ROW(__sync_fetch_and_and),
5905     BUILTIN_ROW(__sync_fetch_and_xor),
5906     BUILTIN_ROW(__sync_fetch_and_nand),
5907 
5908     BUILTIN_ROW(__sync_add_and_fetch),
5909     BUILTIN_ROW(__sync_sub_and_fetch),
5910     BUILTIN_ROW(__sync_and_and_fetch),
5911     BUILTIN_ROW(__sync_or_and_fetch),
5912     BUILTIN_ROW(__sync_xor_and_fetch),
5913     BUILTIN_ROW(__sync_nand_and_fetch),
5914 
5915     BUILTIN_ROW(__sync_val_compare_and_swap),
5916     BUILTIN_ROW(__sync_bool_compare_and_swap),
5917     BUILTIN_ROW(__sync_lock_test_and_set),
5918     BUILTIN_ROW(__sync_lock_release),
5919     BUILTIN_ROW(__sync_swap)
5920   };
5921 #undef BUILTIN_ROW
5922 
5923   // Determine the index of the size.
5924   unsigned SizeIndex;
5925   switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
5926   case 1: SizeIndex = 0; break;
5927   case 2: SizeIndex = 1; break;
5928   case 4: SizeIndex = 2; break;
5929   case 8: SizeIndex = 3; break;
5930   case 16: SizeIndex = 4; break;
5931   default:
5932     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_pointer_size)
5933         << FirstArg->getType() << FirstArg->getSourceRange();
5934     return ExprError();
5935   }
5936 
5937   // Each of these builtins has one pointer argument, followed by some number of
5938   // values (0, 1 or 2) followed by a potentially empty varags list of stuff
5939   // that we ignore.  Find out which row of BuiltinIndices to read from as well
5940   // as the number of fixed args.
5941   unsigned BuiltinID = FDecl->getBuiltinID();
5942   unsigned BuiltinIndex, NumFixed = 1;
5943   bool WarnAboutSemanticsChange = false;
5944   switch (BuiltinID) {
5945   default: llvm_unreachable("Unknown overloaded atomic builtin!");
5946   case Builtin::BI__sync_fetch_and_add:
5947   case Builtin::BI__sync_fetch_and_add_1:
5948   case Builtin::BI__sync_fetch_and_add_2:
5949   case Builtin::BI__sync_fetch_and_add_4:
5950   case Builtin::BI__sync_fetch_and_add_8:
5951   case Builtin::BI__sync_fetch_and_add_16:
5952     BuiltinIndex = 0;
5953     break;
5954 
5955   case Builtin::BI__sync_fetch_and_sub:
5956   case Builtin::BI__sync_fetch_and_sub_1:
5957   case Builtin::BI__sync_fetch_and_sub_2:
5958   case Builtin::BI__sync_fetch_and_sub_4:
5959   case Builtin::BI__sync_fetch_and_sub_8:
5960   case Builtin::BI__sync_fetch_and_sub_16:
5961     BuiltinIndex = 1;
5962     break;
5963 
5964   case Builtin::BI__sync_fetch_and_or:
5965   case Builtin::BI__sync_fetch_and_or_1:
5966   case Builtin::BI__sync_fetch_and_or_2:
5967   case Builtin::BI__sync_fetch_and_or_4:
5968   case Builtin::BI__sync_fetch_and_or_8:
5969   case Builtin::BI__sync_fetch_and_or_16:
5970     BuiltinIndex = 2;
5971     break;
5972 
5973   case Builtin::BI__sync_fetch_and_and:
5974   case Builtin::BI__sync_fetch_and_and_1:
5975   case Builtin::BI__sync_fetch_and_and_2:
5976   case Builtin::BI__sync_fetch_and_and_4:
5977   case Builtin::BI__sync_fetch_and_and_8:
5978   case Builtin::BI__sync_fetch_and_and_16:
5979     BuiltinIndex = 3;
5980     break;
5981 
5982   case Builtin::BI__sync_fetch_and_xor:
5983   case Builtin::BI__sync_fetch_and_xor_1:
5984   case Builtin::BI__sync_fetch_and_xor_2:
5985   case Builtin::BI__sync_fetch_and_xor_4:
5986   case Builtin::BI__sync_fetch_and_xor_8:
5987   case Builtin::BI__sync_fetch_and_xor_16:
5988     BuiltinIndex = 4;
5989     break;
5990 
5991   case Builtin::BI__sync_fetch_and_nand:
5992   case Builtin::BI__sync_fetch_and_nand_1:
5993   case Builtin::BI__sync_fetch_and_nand_2:
5994   case Builtin::BI__sync_fetch_and_nand_4:
5995   case Builtin::BI__sync_fetch_and_nand_8:
5996   case Builtin::BI__sync_fetch_and_nand_16:
5997     BuiltinIndex = 5;
5998     WarnAboutSemanticsChange = true;
5999     break;
6000 
6001   case Builtin::BI__sync_add_and_fetch:
6002   case Builtin::BI__sync_add_and_fetch_1:
6003   case Builtin::BI__sync_add_and_fetch_2:
6004   case Builtin::BI__sync_add_and_fetch_4:
6005   case Builtin::BI__sync_add_and_fetch_8:
6006   case Builtin::BI__sync_add_and_fetch_16:
6007     BuiltinIndex = 6;
6008     break;
6009 
6010   case Builtin::BI__sync_sub_and_fetch:
6011   case Builtin::BI__sync_sub_and_fetch_1:
6012   case Builtin::BI__sync_sub_and_fetch_2:
6013   case Builtin::BI__sync_sub_and_fetch_4:
6014   case Builtin::BI__sync_sub_and_fetch_8:
6015   case Builtin::BI__sync_sub_and_fetch_16:
6016     BuiltinIndex = 7;
6017     break;
6018 
6019   case Builtin::BI__sync_and_and_fetch:
6020   case Builtin::BI__sync_and_and_fetch_1:
6021   case Builtin::BI__sync_and_and_fetch_2:
6022   case Builtin::BI__sync_and_and_fetch_4:
6023   case Builtin::BI__sync_and_and_fetch_8:
6024   case Builtin::BI__sync_and_and_fetch_16:
6025     BuiltinIndex = 8;
6026     break;
6027 
6028   case Builtin::BI__sync_or_and_fetch:
6029   case Builtin::BI__sync_or_and_fetch_1:
6030   case Builtin::BI__sync_or_and_fetch_2:
6031   case Builtin::BI__sync_or_and_fetch_4:
6032   case Builtin::BI__sync_or_and_fetch_8:
6033   case Builtin::BI__sync_or_and_fetch_16:
6034     BuiltinIndex = 9;
6035     break;
6036 
6037   case Builtin::BI__sync_xor_and_fetch:
6038   case Builtin::BI__sync_xor_and_fetch_1:
6039   case Builtin::BI__sync_xor_and_fetch_2:
6040   case Builtin::BI__sync_xor_and_fetch_4:
6041   case Builtin::BI__sync_xor_and_fetch_8:
6042   case Builtin::BI__sync_xor_and_fetch_16:
6043     BuiltinIndex = 10;
6044     break;
6045 
6046   case Builtin::BI__sync_nand_and_fetch:
6047   case Builtin::BI__sync_nand_and_fetch_1:
6048   case Builtin::BI__sync_nand_and_fetch_2:
6049   case Builtin::BI__sync_nand_and_fetch_4:
6050   case Builtin::BI__sync_nand_and_fetch_8:
6051   case Builtin::BI__sync_nand_and_fetch_16:
6052     BuiltinIndex = 11;
6053     WarnAboutSemanticsChange = true;
6054     break;
6055 
6056   case Builtin::BI__sync_val_compare_and_swap:
6057   case Builtin::BI__sync_val_compare_and_swap_1:
6058   case Builtin::BI__sync_val_compare_and_swap_2:
6059   case Builtin::BI__sync_val_compare_and_swap_4:
6060   case Builtin::BI__sync_val_compare_and_swap_8:
6061   case Builtin::BI__sync_val_compare_and_swap_16:
6062     BuiltinIndex = 12;
6063     NumFixed = 2;
6064     break;
6065 
6066   case Builtin::BI__sync_bool_compare_and_swap:
6067   case Builtin::BI__sync_bool_compare_and_swap_1:
6068   case Builtin::BI__sync_bool_compare_and_swap_2:
6069   case Builtin::BI__sync_bool_compare_and_swap_4:
6070   case Builtin::BI__sync_bool_compare_and_swap_8:
6071   case Builtin::BI__sync_bool_compare_and_swap_16:
6072     BuiltinIndex = 13;
6073     NumFixed = 2;
6074     ResultType = Context.BoolTy;
6075     break;
6076 
6077   case Builtin::BI__sync_lock_test_and_set:
6078   case Builtin::BI__sync_lock_test_and_set_1:
6079   case Builtin::BI__sync_lock_test_and_set_2:
6080   case Builtin::BI__sync_lock_test_and_set_4:
6081   case Builtin::BI__sync_lock_test_and_set_8:
6082   case Builtin::BI__sync_lock_test_and_set_16:
6083     BuiltinIndex = 14;
6084     break;
6085 
6086   case Builtin::BI__sync_lock_release:
6087   case Builtin::BI__sync_lock_release_1:
6088   case Builtin::BI__sync_lock_release_2:
6089   case Builtin::BI__sync_lock_release_4:
6090   case Builtin::BI__sync_lock_release_8:
6091   case Builtin::BI__sync_lock_release_16:
6092     BuiltinIndex = 15;
6093     NumFixed = 0;
6094     ResultType = Context.VoidTy;
6095     break;
6096 
6097   case Builtin::BI__sync_swap:
6098   case Builtin::BI__sync_swap_1:
6099   case Builtin::BI__sync_swap_2:
6100   case Builtin::BI__sync_swap_4:
6101   case Builtin::BI__sync_swap_8:
6102   case Builtin::BI__sync_swap_16:
6103     BuiltinIndex = 16;
6104     break;
6105   }
6106 
6107   // Now that we know how many fixed arguments we expect, first check that we
6108   // have at least that many.
6109   if (TheCall->getNumArgs() < 1+NumFixed) {
6110     Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
6111         << 0 << 1 + NumFixed << TheCall->getNumArgs()
6112         << Callee->getSourceRange();
6113     return ExprError();
6114   }
6115 
6116   Diag(TheCall->getEndLoc(), diag::warn_atomic_implicit_seq_cst)
6117       << Callee->getSourceRange();
6118 
6119   if (WarnAboutSemanticsChange) {
6120     Diag(TheCall->getEndLoc(), diag::warn_sync_fetch_and_nand_semantics_change)
6121         << Callee->getSourceRange();
6122   }
6123 
6124   // Get the decl for the concrete builtin from this, we can tell what the
6125   // concrete integer type we should convert to is.
6126   unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
6127   const char *NewBuiltinName = Context.BuiltinInfo.getName(NewBuiltinID);
6128   FunctionDecl *NewBuiltinDecl;
6129   if (NewBuiltinID == BuiltinID)
6130     NewBuiltinDecl = FDecl;
6131   else {
6132     // Perform builtin lookup to avoid redeclaring it.
6133     DeclarationName DN(&Context.Idents.get(NewBuiltinName));
6134     LookupResult Res(*this, DN, DRE->getBeginLoc(), LookupOrdinaryName);
6135     LookupName(Res, TUScope, /*AllowBuiltinCreation=*/true);
6136     assert(Res.getFoundDecl());
6137     NewBuiltinDecl = dyn_cast<FunctionDecl>(Res.getFoundDecl());
6138     if (!NewBuiltinDecl)
6139       return ExprError();
6140   }
6141 
6142   // The first argument --- the pointer --- has a fixed type; we
6143   // deduce the types of the rest of the arguments accordingly.  Walk
6144   // the remaining arguments, converting them to the deduced value type.
6145   for (unsigned i = 0; i != NumFixed; ++i) {
6146     ExprResult Arg = TheCall->getArg(i+1);
6147 
6148     // GCC does an implicit conversion to the pointer or integer ValType.  This
6149     // can fail in some cases (1i -> int**), check for this error case now.
6150     // Initialize the argument.
6151     InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
6152                                                    ValType, /*consume*/ false);
6153     Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
6154     if (Arg.isInvalid())
6155       return ExprError();
6156 
6157     // Okay, we have something that *can* be converted to the right type.  Check
6158     // to see if there is a potentially weird extension going on here.  This can
6159     // happen when you do an atomic operation on something like an char* and
6160     // pass in 42.  The 42 gets converted to char.  This is even more strange
6161     // for things like 45.123 -> char, etc.
6162     // FIXME: Do this check.
6163     TheCall->setArg(i+1, Arg.get());
6164   }
6165 
6166   // Create a new DeclRefExpr to refer to the new decl.
6167   DeclRefExpr *NewDRE = DeclRefExpr::Create(
6168       Context, DRE->getQualifierLoc(), SourceLocation(), NewBuiltinDecl,
6169       /*enclosing*/ false, DRE->getLocation(), Context.BuiltinFnTy,
6170       DRE->getValueKind(), nullptr, nullptr, DRE->isNonOdrUse());
6171 
6172   // Set the callee in the CallExpr.
6173   // FIXME: This loses syntactic information.
6174   QualType CalleePtrTy = Context.getPointerType(NewBuiltinDecl->getType());
6175   ExprResult PromotedCall = ImpCastExprToType(NewDRE, CalleePtrTy,
6176                                               CK_BuiltinFnToFnPtr);
6177   TheCall->setCallee(PromotedCall.get());
6178 
6179   // Change the result type of the call to match the original value type. This
6180   // is arbitrary, but the codegen for these builtins ins design to handle it
6181   // gracefully.
6182   TheCall->setType(ResultType);
6183 
6184   // Prohibit use of _ExtInt with atomic builtins.
6185   // The arguments would have already been converted to the first argument's
6186   // type, so only need to check the first argument.
6187   const auto *ExtIntValType = ValType->getAs<ExtIntType>();
6188   if (ExtIntValType && !llvm::isPowerOf2_64(ExtIntValType->getNumBits())) {
6189     Diag(FirstArg->getExprLoc(), diag::err_atomic_builtin_ext_int_size);
6190     return ExprError();
6191   }
6192 
6193   return TheCallResult;
6194 }
6195 
6196 /// SemaBuiltinNontemporalOverloaded - We have a call to
6197 /// __builtin_nontemporal_store or __builtin_nontemporal_load, which is an
6198 /// overloaded function based on the pointer type of its last argument.
6199 ///
6200 /// This function goes through and does final semantic checking for these
6201 /// builtins.
6202 ExprResult Sema::SemaBuiltinNontemporalOverloaded(ExprResult TheCallResult) {
6203   CallExpr *TheCall = (CallExpr *)TheCallResult.get();
6204   DeclRefExpr *DRE =
6205       cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
6206   FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
6207   unsigned BuiltinID = FDecl->getBuiltinID();
6208   assert((BuiltinID == Builtin::BI__builtin_nontemporal_store ||
6209           BuiltinID == Builtin::BI__builtin_nontemporal_load) &&
6210          "Unexpected nontemporal load/store builtin!");
6211   bool isStore = BuiltinID == Builtin::BI__builtin_nontemporal_store;
6212   unsigned numArgs = isStore ? 2 : 1;
6213 
6214   // Ensure that we have the proper number of arguments.
6215   if (checkArgCount(*this, TheCall, numArgs))
6216     return ExprError();
6217 
6218   // Inspect the last argument of the nontemporal builtin.  This should always
6219   // be a pointer type, from which we imply the type of the memory access.
6220   // Because it is a pointer type, we don't have to worry about any implicit
6221   // casts here.
6222   Expr *PointerArg = TheCall->getArg(numArgs - 1);
6223   ExprResult PointerArgResult =
6224       DefaultFunctionArrayLvalueConversion(PointerArg);
6225 
6226   if (PointerArgResult.isInvalid())
6227     return ExprError();
6228   PointerArg = PointerArgResult.get();
6229   TheCall->setArg(numArgs - 1, PointerArg);
6230 
6231   const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>();
6232   if (!pointerType) {
6233     Diag(DRE->getBeginLoc(), diag::err_nontemporal_builtin_must_be_pointer)
6234         << PointerArg->getType() << PointerArg->getSourceRange();
6235     return ExprError();
6236   }
6237 
6238   QualType ValType = pointerType->getPointeeType();
6239 
6240   // Strip any qualifiers off ValType.
6241   ValType = ValType.getUnqualifiedType();
6242   if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
6243       !ValType->isBlockPointerType() && !ValType->isFloatingType() &&
6244       !ValType->isVectorType()) {
6245     Diag(DRE->getBeginLoc(),
6246          diag::err_nontemporal_builtin_must_be_pointer_intfltptr_or_vector)
6247         << PointerArg->getType() << PointerArg->getSourceRange();
6248     return ExprError();
6249   }
6250 
6251   if (!isStore) {
6252     TheCall->setType(ValType);
6253     return TheCallResult;
6254   }
6255 
6256   ExprResult ValArg = TheCall->getArg(0);
6257   InitializedEntity Entity = InitializedEntity::InitializeParameter(
6258       Context, ValType, /*consume*/ false);
6259   ValArg = PerformCopyInitialization(Entity, SourceLocation(), ValArg);
6260   if (ValArg.isInvalid())
6261     return ExprError();
6262 
6263   TheCall->setArg(0, ValArg.get());
6264   TheCall->setType(Context.VoidTy);
6265   return TheCallResult;
6266 }
6267 
6268 /// CheckObjCString - Checks that the argument to the builtin
6269 /// CFString constructor is correct
6270 /// Note: It might also make sense to do the UTF-16 conversion here (would
6271 /// simplify the backend).
6272 bool Sema::CheckObjCString(Expr *Arg) {
6273   Arg = Arg->IgnoreParenCasts();
6274   StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
6275 
6276   if (!Literal || !Literal->isAscii()) {
6277     Diag(Arg->getBeginLoc(), diag::err_cfstring_literal_not_string_constant)
6278         << Arg->getSourceRange();
6279     return true;
6280   }
6281 
6282   if (Literal->containsNonAsciiOrNull()) {
6283     StringRef String = Literal->getString();
6284     unsigned NumBytes = String.size();
6285     SmallVector<llvm::UTF16, 128> ToBuf(NumBytes);
6286     const llvm::UTF8 *FromPtr = (const llvm::UTF8 *)String.data();
6287     llvm::UTF16 *ToPtr = &ToBuf[0];
6288 
6289     llvm::ConversionResult Result =
6290         llvm::ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, &ToPtr,
6291                                  ToPtr + NumBytes, llvm::strictConversion);
6292     // Check for conversion failure.
6293     if (Result != llvm::conversionOK)
6294       Diag(Arg->getBeginLoc(), diag::warn_cfstring_truncated)
6295           << Arg->getSourceRange();
6296   }
6297   return false;
6298 }
6299 
6300 /// CheckObjCString - Checks that the format string argument to the os_log()
6301 /// and os_trace() functions is correct, and converts it to const char *.
6302 ExprResult Sema::CheckOSLogFormatStringArg(Expr *Arg) {
6303   Arg = Arg->IgnoreParenCasts();
6304   auto *Literal = dyn_cast<StringLiteral>(Arg);
6305   if (!Literal) {
6306     if (auto *ObjcLiteral = dyn_cast<ObjCStringLiteral>(Arg)) {
6307       Literal = ObjcLiteral->getString();
6308     }
6309   }
6310 
6311   if (!Literal || (!Literal->isAscii() && !Literal->isUTF8())) {
6312     return ExprError(
6313         Diag(Arg->getBeginLoc(), diag::err_os_log_format_not_string_constant)
6314         << Arg->getSourceRange());
6315   }
6316 
6317   ExprResult Result(Literal);
6318   QualType ResultTy = Context.getPointerType(Context.CharTy.withConst());
6319   InitializedEntity Entity =
6320       InitializedEntity::InitializeParameter(Context, ResultTy, false);
6321   Result = PerformCopyInitialization(Entity, SourceLocation(), Result);
6322   return Result;
6323 }
6324 
6325 /// Check that the user is calling the appropriate va_start builtin for the
6326 /// target and calling convention.
6327 static bool checkVAStartABI(Sema &S, unsigned BuiltinID, Expr *Fn) {
6328   const llvm::Triple &TT = S.Context.getTargetInfo().getTriple();
6329   bool IsX64 = TT.getArch() == llvm::Triple::x86_64;
6330   bool IsAArch64 = (TT.getArch() == llvm::Triple::aarch64 ||
6331                     TT.getArch() == llvm::Triple::aarch64_32);
6332   bool IsWindows = TT.isOSWindows();
6333   bool IsMSVAStart = BuiltinID == Builtin::BI__builtin_ms_va_start;
6334   if (IsX64 || IsAArch64) {
6335     CallingConv CC = CC_C;
6336     if (const FunctionDecl *FD = S.getCurFunctionDecl())
6337       CC = FD->getType()->castAs<FunctionType>()->getCallConv();
6338     if (IsMSVAStart) {
6339       // Don't allow this in System V ABI functions.
6340       if (CC == CC_X86_64SysV || (!IsWindows && CC != CC_Win64))
6341         return S.Diag(Fn->getBeginLoc(),
6342                       diag::err_ms_va_start_used_in_sysv_function);
6343     } else {
6344       // On x86-64/AArch64 Unix, don't allow this in Win64 ABI functions.
6345       // On x64 Windows, don't allow this in System V ABI functions.
6346       // (Yes, that means there's no corresponding way to support variadic
6347       // System V ABI functions on Windows.)
6348       if ((IsWindows && CC == CC_X86_64SysV) ||
6349           (!IsWindows && CC == CC_Win64))
6350         return S.Diag(Fn->getBeginLoc(),
6351                       diag::err_va_start_used_in_wrong_abi_function)
6352                << !IsWindows;
6353     }
6354     return false;
6355   }
6356 
6357   if (IsMSVAStart)
6358     return S.Diag(Fn->getBeginLoc(), diag::err_builtin_x64_aarch64_only);
6359   return false;
6360 }
6361 
6362 static bool checkVAStartIsInVariadicFunction(Sema &S, Expr *Fn,
6363                                              ParmVarDecl **LastParam = nullptr) {
6364   // Determine whether the current function, block, or obj-c method is variadic
6365   // and get its parameter list.
6366   bool IsVariadic = false;
6367   ArrayRef<ParmVarDecl *> Params;
6368   DeclContext *Caller = S.CurContext;
6369   if (auto *Block = dyn_cast<BlockDecl>(Caller)) {
6370     IsVariadic = Block->isVariadic();
6371     Params = Block->parameters();
6372   } else if (auto *FD = dyn_cast<FunctionDecl>(Caller)) {
6373     IsVariadic = FD->isVariadic();
6374     Params = FD->parameters();
6375   } else if (auto *MD = dyn_cast<ObjCMethodDecl>(Caller)) {
6376     IsVariadic = MD->isVariadic();
6377     // FIXME: This isn't correct for methods (results in bogus warning).
6378     Params = MD->parameters();
6379   } else if (isa<CapturedDecl>(Caller)) {
6380     // We don't support va_start in a CapturedDecl.
6381     S.Diag(Fn->getBeginLoc(), diag::err_va_start_captured_stmt);
6382     return true;
6383   } else {
6384     // This must be some other declcontext that parses exprs.
6385     S.Diag(Fn->getBeginLoc(), diag::err_va_start_outside_function);
6386     return true;
6387   }
6388 
6389   if (!IsVariadic) {
6390     S.Diag(Fn->getBeginLoc(), diag::err_va_start_fixed_function);
6391     return true;
6392   }
6393 
6394   if (LastParam)
6395     *LastParam = Params.empty() ? nullptr : Params.back();
6396 
6397   return false;
6398 }
6399 
6400 /// Check the arguments to '__builtin_va_start' or '__builtin_ms_va_start'
6401 /// for validity.  Emit an error and return true on failure; return false
6402 /// on success.
6403 bool Sema::SemaBuiltinVAStart(unsigned BuiltinID, CallExpr *TheCall) {
6404   Expr *Fn = TheCall->getCallee();
6405 
6406   if (checkVAStartABI(*this, BuiltinID, Fn))
6407     return true;
6408 
6409   if (checkArgCount(*this, TheCall, 2))
6410     return true;
6411 
6412   // Type-check the first argument normally.
6413   if (checkBuiltinArgument(*this, TheCall, 0))
6414     return true;
6415 
6416   // Check that the current function is variadic, and get its last parameter.
6417   ParmVarDecl *LastParam;
6418   if (checkVAStartIsInVariadicFunction(*this, Fn, &LastParam))
6419     return true;
6420 
6421   // Verify that the second argument to the builtin is the last argument of the
6422   // current function or method.
6423   bool SecondArgIsLastNamedArgument = false;
6424   const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
6425 
6426   // These are valid if SecondArgIsLastNamedArgument is false after the next
6427   // block.
6428   QualType Type;
6429   SourceLocation ParamLoc;
6430   bool IsCRegister = false;
6431 
6432   if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
6433     if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
6434       SecondArgIsLastNamedArgument = PV == LastParam;
6435 
6436       Type = PV->getType();
6437       ParamLoc = PV->getLocation();
6438       IsCRegister =
6439           PV->getStorageClass() == SC_Register && !getLangOpts().CPlusPlus;
6440     }
6441   }
6442 
6443   if (!SecondArgIsLastNamedArgument)
6444     Diag(TheCall->getArg(1)->getBeginLoc(),
6445          diag::warn_second_arg_of_va_start_not_last_named_param);
6446   else if (IsCRegister || Type->isReferenceType() ||
6447            Type->isSpecificBuiltinType(BuiltinType::Float) || [=] {
6448              // Promotable integers are UB, but enumerations need a bit of
6449              // extra checking to see what their promotable type actually is.
6450              if (!Type->isPromotableIntegerType())
6451                return false;
6452              if (!Type->isEnumeralType())
6453                return true;
6454              const EnumDecl *ED = Type->castAs<EnumType>()->getDecl();
6455              return !(ED &&
6456                       Context.typesAreCompatible(ED->getPromotionType(), Type));
6457            }()) {
6458     unsigned Reason = 0;
6459     if (Type->isReferenceType())  Reason = 1;
6460     else if (IsCRegister)         Reason = 2;
6461     Diag(Arg->getBeginLoc(), diag::warn_va_start_type_is_undefined) << Reason;
6462     Diag(ParamLoc, diag::note_parameter_type) << Type;
6463   }
6464 
6465   TheCall->setType(Context.VoidTy);
6466   return false;
6467 }
6468 
6469 bool Sema::SemaBuiltinVAStartARMMicrosoft(CallExpr *Call) {
6470   auto IsSuitablyTypedFormatArgument = [this](const Expr *Arg) -> bool {
6471     const LangOptions &LO = getLangOpts();
6472 
6473     if (LO.CPlusPlus)
6474       return Arg->getType()
6475                  .getCanonicalType()
6476                  .getTypePtr()
6477                  ->getPointeeType()
6478                  .withoutLocalFastQualifiers() == Context.CharTy;
6479 
6480     // In C, allow aliasing through `char *`, this is required for AArch64 at
6481     // least.
6482     return true;
6483   };
6484 
6485   // void __va_start(va_list *ap, const char *named_addr, size_t slot_size,
6486   //                 const char *named_addr);
6487 
6488   Expr *Func = Call->getCallee();
6489 
6490   if (Call->getNumArgs() < 3)
6491     return Diag(Call->getEndLoc(),
6492                 diag::err_typecheck_call_too_few_args_at_least)
6493            << 0 /*function call*/ << 3 << Call->getNumArgs();
6494 
6495   // Type-check the first argument normally.
6496   if (checkBuiltinArgument(*this, Call, 0))
6497     return true;
6498 
6499   // Check that the current function is variadic.
6500   if (checkVAStartIsInVariadicFunction(*this, Func))
6501     return true;
6502 
6503   // __va_start on Windows does not validate the parameter qualifiers
6504 
6505   const Expr *Arg1 = Call->getArg(1)->IgnoreParens();
6506   const Type *Arg1Ty = Arg1->getType().getCanonicalType().getTypePtr();
6507 
6508   const Expr *Arg2 = Call->getArg(2)->IgnoreParens();
6509   const Type *Arg2Ty = Arg2->getType().getCanonicalType().getTypePtr();
6510 
6511   const QualType &ConstCharPtrTy =
6512       Context.getPointerType(Context.CharTy.withConst());
6513   if (!Arg1Ty->isPointerType() || !IsSuitablyTypedFormatArgument(Arg1))
6514     Diag(Arg1->getBeginLoc(), diag::err_typecheck_convert_incompatible)
6515         << Arg1->getType() << ConstCharPtrTy << 1 /* different class */
6516         << 0                                      /* qualifier difference */
6517         << 3                                      /* parameter mismatch */
6518         << 2 << Arg1->getType() << ConstCharPtrTy;
6519 
6520   const QualType SizeTy = Context.getSizeType();
6521   if (Arg2Ty->getCanonicalTypeInternal().withoutLocalFastQualifiers() != SizeTy)
6522     Diag(Arg2->getBeginLoc(), diag::err_typecheck_convert_incompatible)
6523         << Arg2->getType() << SizeTy << 1 /* different class */
6524         << 0                              /* qualifier difference */
6525         << 3                              /* parameter mismatch */
6526         << 3 << Arg2->getType() << SizeTy;
6527 
6528   return false;
6529 }
6530 
6531 /// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
6532 /// friends.  This is declared to take (...), so we have to check everything.
6533 bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
6534   if (checkArgCount(*this, TheCall, 2))
6535     return true;
6536 
6537   ExprResult OrigArg0 = TheCall->getArg(0);
6538   ExprResult OrigArg1 = TheCall->getArg(1);
6539 
6540   // Do standard promotions between the two arguments, returning their common
6541   // type.
6542   QualType Res = UsualArithmeticConversions(
6543       OrigArg0, OrigArg1, TheCall->getExprLoc(), ACK_Comparison);
6544   if (OrigArg0.isInvalid() || OrigArg1.isInvalid())
6545     return true;
6546 
6547   // Make sure any conversions are pushed back into the call; this is
6548   // type safe since unordered compare builtins are declared as "_Bool
6549   // foo(...)".
6550   TheCall->setArg(0, OrigArg0.get());
6551   TheCall->setArg(1, OrigArg1.get());
6552 
6553   if (OrigArg0.get()->isTypeDependent() || OrigArg1.get()->isTypeDependent())
6554     return false;
6555 
6556   // If the common type isn't a real floating type, then the arguments were
6557   // invalid for this operation.
6558   if (Res.isNull() || !Res->isRealFloatingType())
6559     return Diag(OrigArg0.get()->getBeginLoc(),
6560                 diag::err_typecheck_call_invalid_ordered_compare)
6561            << OrigArg0.get()->getType() << OrigArg1.get()->getType()
6562            << SourceRange(OrigArg0.get()->getBeginLoc(),
6563                           OrigArg1.get()->getEndLoc());
6564 
6565   return false;
6566 }
6567 
6568 /// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
6569 /// __builtin_isnan and friends.  This is declared to take (...), so we have
6570 /// to check everything. We expect the last argument to be a floating point
6571 /// value.
6572 bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
6573   if (checkArgCount(*this, TheCall, NumArgs))
6574     return true;
6575 
6576   // __builtin_fpclassify is the only case where NumArgs != 1, so we can count
6577   // on all preceding parameters just being int.  Try all of those.
6578   for (unsigned i = 0; i < NumArgs - 1; ++i) {
6579     Expr *Arg = TheCall->getArg(i);
6580 
6581     if (Arg->isTypeDependent())
6582       return false;
6583 
6584     ExprResult Res = PerformImplicitConversion(Arg, Context.IntTy, AA_Passing);
6585 
6586     if (Res.isInvalid())
6587       return true;
6588     TheCall->setArg(i, Res.get());
6589   }
6590 
6591   Expr *OrigArg = TheCall->getArg(NumArgs-1);
6592 
6593   if (OrigArg->isTypeDependent())
6594     return false;
6595 
6596   // Usual Unary Conversions will convert half to float, which we want for
6597   // machines that use fp16 conversion intrinsics. Else, we wnat to leave the
6598   // type how it is, but do normal L->Rvalue conversions.
6599   if (Context.getTargetInfo().useFP16ConversionIntrinsics())
6600     OrigArg = UsualUnaryConversions(OrigArg).get();
6601   else
6602     OrigArg = DefaultFunctionArrayLvalueConversion(OrigArg).get();
6603   TheCall->setArg(NumArgs - 1, OrigArg);
6604 
6605   // This operation requires a non-_Complex floating-point number.
6606   if (!OrigArg->getType()->isRealFloatingType())
6607     return Diag(OrigArg->getBeginLoc(),
6608                 diag::err_typecheck_call_invalid_unary_fp)
6609            << OrigArg->getType() << OrigArg->getSourceRange();
6610 
6611   return false;
6612 }
6613 
6614 /// Perform semantic analysis for a call to __builtin_complex.
6615 bool Sema::SemaBuiltinComplex(CallExpr *TheCall) {
6616   if (checkArgCount(*this, TheCall, 2))
6617     return true;
6618 
6619   bool Dependent = false;
6620   for (unsigned I = 0; I != 2; ++I) {
6621     Expr *Arg = TheCall->getArg(I);
6622     QualType T = Arg->getType();
6623     if (T->isDependentType()) {
6624       Dependent = true;
6625       continue;
6626     }
6627 
6628     // Despite supporting _Complex int, GCC requires a real floating point type
6629     // for the operands of __builtin_complex.
6630     if (!T->isRealFloatingType()) {
6631       return Diag(Arg->getBeginLoc(), diag::err_typecheck_call_requires_real_fp)
6632              << Arg->getType() << Arg->getSourceRange();
6633     }
6634 
6635     ExprResult Converted = DefaultLvalueConversion(Arg);
6636     if (Converted.isInvalid())
6637       return true;
6638     TheCall->setArg(I, Converted.get());
6639   }
6640 
6641   if (Dependent) {
6642     TheCall->setType(Context.DependentTy);
6643     return false;
6644   }
6645 
6646   Expr *Real = TheCall->getArg(0);
6647   Expr *Imag = TheCall->getArg(1);
6648   if (!Context.hasSameType(Real->getType(), Imag->getType())) {
6649     return Diag(Real->getBeginLoc(),
6650                 diag::err_typecheck_call_different_arg_types)
6651            << Real->getType() << Imag->getType()
6652            << Real->getSourceRange() << Imag->getSourceRange();
6653   }
6654 
6655   // We don't allow _Complex _Float16 nor _Complex __fp16 as type specifiers;
6656   // don't allow this builtin to form those types either.
6657   // FIXME: Should we allow these types?
6658   if (Real->getType()->isFloat16Type())
6659     return Diag(TheCall->getBeginLoc(), diag::err_invalid_complex_spec)
6660            << "_Float16";
6661   if (Real->getType()->isHalfType())
6662     return Diag(TheCall->getBeginLoc(), diag::err_invalid_complex_spec)
6663            << "half";
6664 
6665   TheCall->setType(Context.getComplexType(Real->getType()));
6666   return false;
6667 }
6668 
6669 // Customized Sema Checking for VSX builtins that have the following signature:
6670 // vector [...] builtinName(vector [...], vector [...], const int);
6671 // Which takes the same type of vectors (any legal vector type) for the first
6672 // two arguments and takes compile time constant for the third argument.
6673 // Example builtins are :
6674 // vector double vec_xxpermdi(vector double, vector double, int);
6675 // vector short vec_xxsldwi(vector short, vector short, int);
6676 bool Sema::SemaBuiltinVSX(CallExpr *TheCall) {
6677   unsigned ExpectedNumArgs = 3;
6678   if (checkArgCount(*this, TheCall, ExpectedNumArgs))
6679     return true;
6680 
6681   // Check the third argument is a compile time constant
6682   if (!TheCall->getArg(2)->isIntegerConstantExpr(Context))
6683     return Diag(TheCall->getBeginLoc(),
6684                 diag::err_vsx_builtin_nonconstant_argument)
6685            << 3 /* argument index */ << TheCall->getDirectCallee()
6686            << SourceRange(TheCall->getArg(2)->getBeginLoc(),
6687                           TheCall->getArg(2)->getEndLoc());
6688 
6689   QualType Arg1Ty = TheCall->getArg(0)->getType();
6690   QualType Arg2Ty = TheCall->getArg(1)->getType();
6691 
6692   // Check the type of argument 1 and argument 2 are vectors.
6693   SourceLocation BuiltinLoc = TheCall->getBeginLoc();
6694   if ((!Arg1Ty->isVectorType() && !Arg1Ty->isDependentType()) ||
6695       (!Arg2Ty->isVectorType() && !Arg2Ty->isDependentType())) {
6696     return Diag(BuiltinLoc, diag::err_vec_builtin_non_vector)
6697            << TheCall->getDirectCallee()
6698            << SourceRange(TheCall->getArg(0)->getBeginLoc(),
6699                           TheCall->getArg(1)->getEndLoc());
6700   }
6701 
6702   // Check the first two arguments are the same type.
6703   if (!Context.hasSameUnqualifiedType(Arg1Ty, Arg2Ty)) {
6704     return Diag(BuiltinLoc, diag::err_vec_builtin_incompatible_vector)
6705            << TheCall->getDirectCallee()
6706            << SourceRange(TheCall->getArg(0)->getBeginLoc(),
6707                           TheCall->getArg(1)->getEndLoc());
6708   }
6709 
6710   // When default clang type checking is turned off and the customized type
6711   // checking is used, the returning type of the function must be explicitly
6712   // set. Otherwise it is _Bool by default.
6713   TheCall->setType(Arg1Ty);
6714 
6715   return false;
6716 }
6717 
6718 /// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
6719 // This is declared to take (...), so we have to check everything.
6720 ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
6721   if (TheCall->getNumArgs() < 2)
6722     return ExprError(Diag(TheCall->getEndLoc(),
6723                           diag::err_typecheck_call_too_few_args_at_least)
6724                      << 0 /*function call*/ << 2 << TheCall->getNumArgs()
6725                      << TheCall->getSourceRange());
6726 
6727   // Determine which of the following types of shufflevector we're checking:
6728   // 1) unary, vector mask: (lhs, mask)
6729   // 2) binary, scalar mask: (lhs, rhs, index, ..., index)
6730   QualType resType = TheCall->getArg(0)->getType();
6731   unsigned numElements = 0;
6732 
6733   if (!TheCall->getArg(0)->isTypeDependent() &&
6734       !TheCall->getArg(1)->isTypeDependent()) {
6735     QualType LHSType = TheCall->getArg(0)->getType();
6736     QualType RHSType = TheCall->getArg(1)->getType();
6737 
6738     if (!LHSType->isVectorType() || !RHSType->isVectorType())
6739       return ExprError(
6740           Diag(TheCall->getBeginLoc(), diag::err_vec_builtin_non_vector)
6741           << TheCall->getDirectCallee()
6742           << SourceRange(TheCall->getArg(0)->getBeginLoc(),
6743                          TheCall->getArg(1)->getEndLoc()));
6744 
6745     numElements = LHSType->castAs<VectorType>()->getNumElements();
6746     unsigned numResElements = TheCall->getNumArgs() - 2;
6747 
6748     // Check to see if we have a call with 2 vector arguments, the unary shuffle
6749     // with mask.  If so, verify that RHS is an integer vector type with the
6750     // same number of elts as lhs.
6751     if (TheCall->getNumArgs() == 2) {
6752       if (!RHSType->hasIntegerRepresentation() ||
6753           RHSType->castAs<VectorType>()->getNumElements() != numElements)
6754         return ExprError(Diag(TheCall->getBeginLoc(),
6755                               diag::err_vec_builtin_incompatible_vector)
6756                          << TheCall->getDirectCallee()
6757                          << SourceRange(TheCall->getArg(1)->getBeginLoc(),
6758                                         TheCall->getArg(1)->getEndLoc()));
6759     } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
6760       return ExprError(Diag(TheCall->getBeginLoc(),
6761                             diag::err_vec_builtin_incompatible_vector)
6762                        << TheCall->getDirectCallee()
6763                        << SourceRange(TheCall->getArg(0)->getBeginLoc(),
6764                                       TheCall->getArg(1)->getEndLoc()));
6765     } else if (numElements != numResElements) {
6766       QualType eltType = LHSType->castAs<VectorType>()->getElementType();
6767       resType = Context.getVectorType(eltType, numResElements,
6768                                       VectorType::GenericVector);
6769     }
6770   }
6771 
6772   for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
6773     if (TheCall->getArg(i)->isTypeDependent() ||
6774         TheCall->getArg(i)->isValueDependent())
6775       continue;
6776 
6777     Optional<llvm::APSInt> Result;
6778     if (!(Result = TheCall->getArg(i)->getIntegerConstantExpr(Context)))
6779       return ExprError(Diag(TheCall->getBeginLoc(),
6780                             diag::err_shufflevector_nonconstant_argument)
6781                        << TheCall->getArg(i)->getSourceRange());
6782 
6783     // Allow -1 which will be translated to undef in the IR.
6784     if (Result->isSigned() && Result->isAllOnes())
6785       continue;
6786 
6787     if (Result->getActiveBits() > 64 ||
6788         Result->getZExtValue() >= numElements * 2)
6789       return ExprError(Diag(TheCall->getBeginLoc(),
6790                             diag::err_shufflevector_argument_too_large)
6791                        << TheCall->getArg(i)->getSourceRange());
6792   }
6793 
6794   SmallVector<Expr*, 32> exprs;
6795 
6796   for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
6797     exprs.push_back(TheCall->getArg(i));
6798     TheCall->setArg(i, nullptr);
6799   }
6800 
6801   return new (Context) ShuffleVectorExpr(Context, exprs, resType,
6802                                          TheCall->getCallee()->getBeginLoc(),
6803                                          TheCall->getRParenLoc());
6804 }
6805 
6806 /// SemaConvertVectorExpr - Handle __builtin_convertvector
6807 ExprResult Sema::SemaConvertVectorExpr(Expr *E, TypeSourceInfo *TInfo,
6808                                        SourceLocation BuiltinLoc,
6809                                        SourceLocation RParenLoc) {
6810   ExprValueKind VK = VK_PRValue;
6811   ExprObjectKind OK = OK_Ordinary;
6812   QualType DstTy = TInfo->getType();
6813   QualType SrcTy = E->getType();
6814 
6815   if (!SrcTy->isVectorType() && !SrcTy->isDependentType())
6816     return ExprError(Diag(BuiltinLoc,
6817                           diag::err_convertvector_non_vector)
6818                      << E->getSourceRange());
6819   if (!DstTy->isVectorType() && !DstTy->isDependentType())
6820     return ExprError(Diag(BuiltinLoc,
6821                           diag::err_convertvector_non_vector_type));
6822 
6823   if (!SrcTy->isDependentType() && !DstTy->isDependentType()) {
6824     unsigned SrcElts = SrcTy->castAs<VectorType>()->getNumElements();
6825     unsigned DstElts = DstTy->castAs<VectorType>()->getNumElements();
6826     if (SrcElts != DstElts)
6827       return ExprError(Diag(BuiltinLoc,
6828                             diag::err_convertvector_incompatible_vector)
6829                        << E->getSourceRange());
6830   }
6831 
6832   return new (Context)
6833       ConvertVectorExpr(E, TInfo, DstTy, VK, OK, BuiltinLoc, RParenLoc);
6834 }
6835 
6836 /// SemaBuiltinPrefetch - Handle __builtin_prefetch.
6837 // This is declared to take (const void*, ...) and can take two
6838 // optional constant int args.
6839 bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
6840   unsigned NumArgs = TheCall->getNumArgs();
6841 
6842   if (NumArgs > 3)
6843     return Diag(TheCall->getEndLoc(),
6844                 diag::err_typecheck_call_too_many_args_at_most)
6845            << 0 /*function call*/ << 3 << NumArgs << TheCall->getSourceRange();
6846 
6847   // Argument 0 is checked for us and the remaining arguments must be
6848   // constant integers.
6849   for (unsigned i = 1; i != NumArgs; ++i)
6850     if (SemaBuiltinConstantArgRange(TheCall, i, 0, i == 1 ? 1 : 3))
6851       return true;
6852 
6853   return false;
6854 }
6855 
6856 /// SemaBuiltinArithmeticFence - Handle __arithmetic_fence.
6857 bool Sema::SemaBuiltinArithmeticFence(CallExpr *TheCall) {
6858   if (!Context.getTargetInfo().checkArithmeticFenceSupported())
6859     return Diag(TheCall->getBeginLoc(), diag::err_builtin_target_unsupported)
6860            << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc());
6861   if (checkArgCount(*this, TheCall, 1))
6862     return true;
6863   Expr *Arg = TheCall->getArg(0);
6864   if (Arg->isInstantiationDependent())
6865     return false;
6866 
6867   QualType ArgTy = Arg->getType();
6868   if (!ArgTy->hasFloatingRepresentation())
6869     return Diag(TheCall->getEndLoc(), diag::err_typecheck_expect_flt_or_vector)
6870            << ArgTy;
6871   if (Arg->isLValue()) {
6872     ExprResult FirstArg = DefaultLvalueConversion(Arg);
6873     TheCall->setArg(0, FirstArg.get());
6874   }
6875   TheCall->setType(TheCall->getArg(0)->getType());
6876   return false;
6877 }
6878 
6879 /// SemaBuiltinAssume - Handle __assume (MS Extension).
6880 // __assume does not evaluate its arguments, and should warn if its argument
6881 // has side effects.
6882 bool Sema::SemaBuiltinAssume(CallExpr *TheCall) {
6883   Expr *Arg = TheCall->getArg(0);
6884   if (Arg->isInstantiationDependent()) return false;
6885 
6886   if (Arg->HasSideEffects(Context))
6887     Diag(Arg->getBeginLoc(), diag::warn_assume_side_effects)
6888         << Arg->getSourceRange()
6889         << cast<FunctionDecl>(TheCall->getCalleeDecl())->getIdentifier();
6890 
6891   return false;
6892 }
6893 
6894 /// Handle __builtin_alloca_with_align. This is declared
6895 /// as (size_t, size_t) where the second size_t must be a power of 2 greater
6896 /// than 8.
6897 bool Sema::SemaBuiltinAllocaWithAlign(CallExpr *TheCall) {
6898   // The alignment must be a constant integer.
6899   Expr *Arg = TheCall->getArg(1);
6900 
6901   // We can't check the value of a dependent argument.
6902   if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
6903     if (const auto *UE =
6904             dyn_cast<UnaryExprOrTypeTraitExpr>(Arg->IgnoreParenImpCasts()))
6905       if (UE->getKind() == UETT_AlignOf ||
6906           UE->getKind() == UETT_PreferredAlignOf)
6907         Diag(TheCall->getBeginLoc(), diag::warn_alloca_align_alignof)
6908             << Arg->getSourceRange();
6909 
6910     llvm::APSInt Result = Arg->EvaluateKnownConstInt(Context);
6911 
6912     if (!Result.isPowerOf2())
6913       return Diag(TheCall->getBeginLoc(), diag::err_alignment_not_power_of_two)
6914              << Arg->getSourceRange();
6915 
6916     if (Result < Context.getCharWidth())
6917       return Diag(TheCall->getBeginLoc(), diag::err_alignment_too_small)
6918              << (unsigned)Context.getCharWidth() << Arg->getSourceRange();
6919 
6920     if (Result > std::numeric_limits<int32_t>::max())
6921       return Diag(TheCall->getBeginLoc(), diag::err_alignment_too_big)
6922              << std::numeric_limits<int32_t>::max() << Arg->getSourceRange();
6923   }
6924 
6925   return false;
6926 }
6927 
6928 /// Handle __builtin_assume_aligned. This is declared
6929 /// as (const void*, size_t, ...) and can take one optional constant int arg.
6930 bool Sema::SemaBuiltinAssumeAligned(CallExpr *TheCall) {
6931   unsigned NumArgs = TheCall->getNumArgs();
6932 
6933   if (NumArgs > 3)
6934     return Diag(TheCall->getEndLoc(),
6935                 diag::err_typecheck_call_too_many_args_at_most)
6936            << 0 /*function call*/ << 3 << NumArgs << TheCall->getSourceRange();
6937 
6938   // The alignment must be a constant integer.
6939   Expr *Arg = TheCall->getArg(1);
6940 
6941   // We can't check the value of a dependent argument.
6942   if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
6943     llvm::APSInt Result;
6944     if (SemaBuiltinConstantArg(TheCall, 1, Result))
6945       return true;
6946 
6947     if (!Result.isPowerOf2())
6948       return Diag(TheCall->getBeginLoc(), diag::err_alignment_not_power_of_two)
6949              << Arg->getSourceRange();
6950 
6951     if (Result > Sema::MaximumAlignment)
6952       Diag(TheCall->getBeginLoc(), diag::warn_assume_aligned_too_great)
6953           << Arg->getSourceRange() << Sema::MaximumAlignment;
6954   }
6955 
6956   if (NumArgs > 2) {
6957     ExprResult Arg(TheCall->getArg(2));
6958     InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
6959       Context.getSizeType(), false);
6960     Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
6961     if (Arg.isInvalid()) return true;
6962     TheCall->setArg(2, Arg.get());
6963   }
6964 
6965   return false;
6966 }
6967 
6968 bool Sema::SemaBuiltinOSLogFormat(CallExpr *TheCall) {
6969   unsigned BuiltinID =
6970       cast<FunctionDecl>(TheCall->getCalleeDecl())->getBuiltinID();
6971   bool IsSizeCall = BuiltinID == Builtin::BI__builtin_os_log_format_buffer_size;
6972 
6973   unsigned NumArgs = TheCall->getNumArgs();
6974   unsigned NumRequiredArgs = IsSizeCall ? 1 : 2;
6975   if (NumArgs < NumRequiredArgs) {
6976     return Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
6977            << 0 /* function call */ << NumRequiredArgs << NumArgs
6978            << TheCall->getSourceRange();
6979   }
6980   if (NumArgs >= NumRequiredArgs + 0x100) {
6981     return Diag(TheCall->getEndLoc(),
6982                 diag::err_typecheck_call_too_many_args_at_most)
6983            << 0 /* function call */ << (NumRequiredArgs + 0xff) << NumArgs
6984            << TheCall->getSourceRange();
6985   }
6986   unsigned i = 0;
6987 
6988   // For formatting call, check buffer arg.
6989   if (!IsSizeCall) {
6990     ExprResult Arg(TheCall->getArg(i));
6991     InitializedEntity Entity = InitializedEntity::InitializeParameter(
6992         Context, Context.VoidPtrTy, false);
6993     Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
6994     if (Arg.isInvalid())
6995       return true;
6996     TheCall->setArg(i, Arg.get());
6997     i++;
6998   }
6999 
7000   // Check string literal arg.
7001   unsigned FormatIdx = i;
7002   {
7003     ExprResult Arg = CheckOSLogFormatStringArg(TheCall->getArg(i));
7004     if (Arg.isInvalid())
7005       return true;
7006     TheCall->setArg(i, Arg.get());
7007     i++;
7008   }
7009 
7010   // Make sure variadic args are scalar.
7011   unsigned FirstDataArg = i;
7012   while (i < NumArgs) {
7013     ExprResult Arg = DefaultVariadicArgumentPromotion(
7014         TheCall->getArg(i), VariadicFunction, nullptr);
7015     if (Arg.isInvalid())
7016       return true;
7017     CharUnits ArgSize = Context.getTypeSizeInChars(Arg.get()->getType());
7018     if (ArgSize.getQuantity() >= 0x100) {
7019       return Diag(Arg.get()->getEndLoc(), diag::err_os_log_argument_too_big)
7020              << i << (int)ArgSize.getQuantity() << 0xff
7021              << TheCall->getSourceRange();
7022     }
7023     TheCall->setArg(i, Arg.get());
7024     i++;
7025   }
7026 
7027   // Check formatting specifiers. NOTE: We're only doing this for the non-size
7028   // call to avoid duplicate diagnostics.
7029   if (!IsSizeCall) {
7030     llvm::SmallBitVector CheckedVarArgs(NumArgs, false);
7031     ArrayRef<const Expr *> Args(TheCall->getArgs(), TheCall->getNumArgs());
7032     bool Success = CheckFormatArguments(
7033         Args, /*HasVAListArg*/ false, FormatIdx, FirstDataArg, FST_OSLog,
7034         VariadicFunction, TheCall->getBeginLoc(), SourceRange(),
7035         CheckedVarArgs);
7036     if (!Success)
7037       return true;
7038   }
7039 
7040   if (IsSizeCall) {
7041     TheCall->setType(Context.getSizeType());
7042   } else {
7043     TheCall->setType(Context.VoidPtrTy);
7044   }
7045   return false;
7046 }
7047 
7048 /// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
7049 /// TheCall is a constant expression.
7050 bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
7051                                   llvm::APSInt &Result) {
7052   Expr *Arg = TheCall->getArg(ArgNum);
7053   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
7054   FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
7055 
7056   if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
7057 
7058   Optional<llvm::APSInt> R;
7059   if (!(R = Arg->getIntegerConstantExpr(Context)))
7060     return Diag(TheCall->getBeginLoc(), diag::err_constant_integer_arg_type)
7061            << FDecl->getDeclName() << Arg->getSourceRange();
7062   Result = *R;
7063   return false;
7064 }
7065 
7066 /// SemaBuiltinConstantArgRange - Handle a check if argument ArgNum of CallExpr
7067 /// TheCall is a constant expression in the range [Low, High].
7068 bool Sema::SemaBuiltinConstantArgRange(CallExpr *TheCall, int ArgNum,
7069                                        int Low, int High, bool RangeIsError) {
7070   if (isConstantEvaluated())
7071     return false;
7072   llvm::APSInt Result;
7073 
7074   // We can't check the value of a dependent argument.
7075   Expr *Arg = TheCall->getArg(ArgNum);
7076   if (Arg->isTypeDependent() || Arg->isValueDependent())
7077     return false;
7078 
7079   // Check constant-ness first.
7080   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
7081     return true;
7082 
7083   if (Result.getSExtValue() < Low || Result.getSExtValue() > High) {
7084     if (RangeIsError)
7085       return Diag(TheCall->getBeginLoc(), diag::err_argument_invalid_range)
7086              << toString(Result, 10) << Low << High << Arg->getSourceRange();
7087     else
7088       // Defer the warning until we know if the code will be emitted so that
7089       // dead code can ignore this.
7090       DiagRuntimeBehavior(TheCall->getBeginLoc(), TheCall,
7091                           PDiag(diag::warn_argument_invalid_range)
7092                               << toString(Result, 10) << Low << High
7093                               << Arg->getSourceRange());
7094   }
7095 
7096   return false;
7097 }
7098 
7099 /// SemaBuiltinConstantArgMultiple - Handle a check if argument ArgNum of CallExpr
7100 /// TheCall is a constant expression is a multiple of Num..
7101 bool Sema::SemaBuiltinConstantArgMultiple(CallExpr *TheCall, int ArgNum,
7102                                           unsigned Num) {
7103   llvm::APSInt Result;
7104 
7105   // We can't check the value of a dependent argument.
7106   Expr *Arg = TheCall->getArg(ArgNum);
7107   if (Arg->isTypeDependent() || Arg->isValueDependent())
7108     return false;
7109 
7110   // Check constant-ness first.
7111   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
7112     return true;
7113 
7114   if (Result.getSExtValue() % Num != 0)
7115     return Diag(TheCall->getBeginLoc(), diag::err_argument_not_multiple)
7116            << Num << Arg->getSourceRange();
7117 
7118   return false;
7119 }
7120 
7121 /// SemaBuiltinConstantArgPower2 - Check if argument ArgNum of TheCall is a
7122 /// constant expression representing a power of 2.
7123 bool Sema::SemaBuiltinConstantArgPower2(CallExpr *TheCall, int ArgNum) {
7124   llvm::APSInt Result;
7125 
7126   // We can't check the value of a dependent argument.
7127   Expr *Arg = TheCall->getArg(ArgNum);
7128   if (Arg->isTypeDependent() || Arg->isValueDependent())
7129     return false;
7130 
7131   // Check constant-ness first.
7132   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
7133     return true;
7134 
7135   // Bit-twiddling to test for a power of 2: for x > 0, x & (x-1) is zero if
7136   // and only if x is a power of 2.
7137   if (Result.isStrictlyPositive() && (Result & (Result - 1)) == 0)
7138     return false;
7139 
7140   return Diag(TheCall->getBeginLoc(), diag::err_argument_not_power_of_2)
7141          << Arg->getSourceRange();
7142 }
7143 
7144 static bool IsShiftedByte(llvm::APSInt Value) {
7145   if (Value.isNegative())
7146     return false;
7147 
7148   // Check if it's a shifted byte, by shifting it down
7149   while (true) {
7150     // If the value fits in the bottom byte, the check passes.
7151     if (Value < 0x100)
7152       return true;
7153 
7154     // Otherwise, if the value has _any_ bits in the bottom byte, the check
7155     // fails.
7156     if ((Value & 0xFF) != 0)
7157       return false;
7158 
7159     // If the bottom 8 bits are all 0, but something above that is nonzero,
7160     // then shifting the value right by 8 bits won't affect whether it's a
7161     // shifted byte or not. So do that, and go round again.
7162     Value >>= 8;
7163   }
7164 }
7165 
7166 /// SemaBuiltinConstantArgShiftedByte - Check if argument ArgNum of TheCall is
7167 /// a constant expression representing an arbitrary byte value shifted left by
7168 /// a multiple of 8 bits.
7169 bool Sema::SemaBuiltinConstantArgShiftedByte(CallExpr *TheCall, int ArgNum,
7170                                              unsigned ArgBits) {
7171   llvm::APSInt Result;
7172 
7173   // We can't check the value of a dependent argument.
7174   Expr *Arg = TheCall->getArg(ArgNum);
7175   if (Arg->isTypeDependent() || Arg->isValueDependent())
7176     return false;
7177 
7178   // Check constant-ness first.
7179   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
7180     return true;
7181 
7182   // Truncate to the given size.
7183   Result = Result.getLoBits(ArgBits);
7184   Result.setIsUnsigned(true);
7185 
7186   if (IsShiftedByte(Result))
7187     return false;
7188 
7189   return Diag(TheCall->getBeginLoc(), diag::err_argument_not_shifted_byte)
7190          << Arg->getSourceRange();
7191 }
7192 
7193 /// SemaBuiltinConstantArgShiftedByteOr0xFF - Check if argument ArgNum of
7194 /// TheCall is a constant expression representing either a shifted byte value,
7195 /// or a value of the form 0x??FF (i.e. a member of the arithmetic progression
7196 /// 0x00FF, 0x01FF, ..., 0xFFFF). This strange range check is needed for some
7197 /// Arm MVE intrinsics.
7198 bool Sema::SemaBuiltinConstantArgShiftedByteOrXXFF(CallExpr *TheCall,
7199                                                    int ArgNum,
7200                                                    unsigned ArgBits) {
7201   llvm::APSInt Result;
7202 
7203   // We can't check the value of a dependent argument.
7204   Expr *Arg = TheCall->getArg(ArgNum);
7205   if (Arg->isTypeDependent() || Arg->isValueDependent())
7206     return false;
7207 
7208   // Check constant-ness first.
7209   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
7210     return true;
7211 
7212   // Truncate to the given size.
7213   Result = Result.getLoBits(ArgBits);
7214   Result.setIsUnsigned(true);
7215 
7216   // Check to see if it's in either of the required forms.
7217   if (IsShiftedByte(Result) ||
7218       (Result > 0 && Result < 0x10000 && (Result & 0xFF) == 0xFF))
7219     return false;
7220 
7221   return Diag(TheCall->getBeginLoc(),
7222               diag::err_argument_not_shifted_byte_or_xxff)
7223          << Arg->getSourceRange();
7224 }
7225 
7226 /// SemaBuiltinARMMemoryTaggingCall - Handle calls of memory tagging extensions
7227 bool Sema::SemaBuiltinARMMemoryTaggingCall(unsigned BuiltinID, CallExpr *TheCall) {
7228   if (BuiltinID == AArch64::BI__builtin_arm_irg) {
7229     if (checkArgCount(*this, TheCall, 2))
7230       return true;
7231     Expr *Arg0 = TheCall->getArg(0);
7232     Expr *Arg1 = TheCall->getArg(1);
7233 
7234     ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0);
7235     if (FirstArg.isInvalid())
7236       return true;
7237     QualType FirstArgType = FirstArg.get()->getType();
7238     if (!FirstArgType->isAnyPointerType())
7239       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer)
7240                << "first" << FirstArgType << Arg0->getSourceRange();
7241     TheCall->setArg(0, FirstArg.get());
7242 
7243     ExprResult SecArg = DefaultLvalueConversion(Arg1);
7244     if (SecArg.isInvalid())
7245       return true;
7246     QualType SecArgType = SecArg.get()->getType();
7247     if (!SecArgType->isIntegerType())
7248       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_integer)
7249                << "second" << SecArgType << Arg1->getSourceRange();
7250 
7251     // Derive the return type from the pointer argument.
7252     TheCall->setType(FirstArgType);
7253     return false;
7254   }
7255 
7256   if (BuiltinID == AArch64::BI__builtin_arm_addg) {
7257     if (checkArgCount(*this, TheCall, 2))
7258       return true;
7259 
7260     Expr *Arg0 = TheCall->getArg(0);
7261     ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0);
7262     if (FirstArg.isInvalid())
7263       return true;
7264     QualType FirstArgType = FirstArg.get()->getType();
7265     if (!FirstArgType->isAnyPointerType())
7266       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer)
7267                << "first" << FirstArgType << Arg0->getSourceRange();
7268     TheCall->setArg(0, FirstArg.get());
7269 
7270     // Derive the return type from the pointer argument.
7271     TheCall->setType(FirstArgType);
7272 
7273     // Second arg must be an constant in range [0,15]
7274     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15);
7275   }
7276 
7277   if (BuiltinID == AArch64::BI__builtin_arm_gmi) {
7278     if (checkArgCount(*this, TheCall, 2))
7279       return true;
7280     Expr *Arg0 = TheCall->getArg(0);
7281     Expr *Arg1 = TheCall->getArg(1);
7282 
7283     ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0);
7284     if (FirstArg.isInvalid())
7285       return true;
7286     QualType FirstArgType = FirstArg.get()->getType();
7287     if (!FirstArgType->isAnyPointerType())
7288       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer)
7289                << "first" << FirstArgType << Arg0->getSourceRange();
7290 
7291     QualType SecArgType = Arg1->getType();
7292     if (!SecArgType->isIntegerType())
7293       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_integer)
7294                << "second" << SecArgType << Arg1->getSourceRange();
7295     TheCall->setType(Context.IntTy);
7296     return false;
7297   }
7298 
7299   if (BuiltinID == AArch64::BI__builtin_arm_ldg ||
7300       BuiltinID == AArch64::BI__builtin_arm_stg) {
7301     if (checkArgCount(*this, TheCall, 1))
7302       return true;
7303     Expr *Arg0 = TheCall->getArg(0);
7304     ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0);
7305     if (FirstArg.isInvalid())
7306       return true;
7307 
7308     QualType FirstArgType = FirstArg.get()->getType();
7309     if (!FirstArgType->isAnyPointerType())
7310       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer)
7311                << "first" << FirstArgType << Arg0->getSourceRange();
7312     TheCall->setArg(0, FirstArg.get());
7313 
7314     // Derive the return type from the pointer argument.
7315     if (BuiltinID == AArch64::BI__builtin_arm_ldg)
7316       TheCall->setType(FirstArgType);
7317     return false;
7318   }
7319 
7320   if (BuiltinID == AArch64::BI__builtin_arm_subp) {
7321     Expr *ArgA = TheCall->getArg(0);
7322     Expr *ArgB = TheCall->getArg(1);
7323 
7324     ExprResult ArgExprA = DefaultFunctionArrayLvalueConversion(ArgA);
7325     ExprResult ArgExprB = DefaultFunctionArrayLvalueConversion(ArgB);
7326 
7327     if (ArgExprA.isInvalid() || ArgExprB.isInvalid())
7328       return true;
7329 
7330     QualType ArgTypeA = ArgExprA.get()->getType();
7331     QualType ArgTypeB = ArgExprB.get()->getType();
7332 
7333     auto isNull = [&] (Expr *E) -> bool {
7334       return E->isNullPointerConstant(
7335                         Context, Expr::NPC_ValueDependentIsNotNull); };
7336 
7337     // argument should be either a pointer or null
7338     if (!ArgTypeA->isAnyPointerType() && !isNull(ArgA))
7339       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_null_or_pointer)
7340         << "first" << ArgTypeA << ArgA->getSourceRange();
7341 
7342     if (!ArgTypeB->isAnyPointerType() && !isNull(ArgB))
7343       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_null_or_pointer)
7344         << "second" << ArgTypeB << ArgB->getSourceRange();
7345 
7346     // Ensure Pointee types are compatible
7347     if (ArgTypeA->isAnyPointerType() && !isNull(ArgA) &&
7348         ArgTypeB->isAnyPointerType() && !isNull(ArgB)) {
7349       QualType pointeeA = ArgTypeA->getPointeeType();
7350       QualType pointeeB = ArgTypeB->getPointeeType();
7351       if (!Context.typesAreCompatible(
7352              Context.getCanonicalType(pointeeA).getUnqualifiedType(),
7353              Context.getCanonicalType(pointeeB).getUnqualifiedType())) {
7354         return Diag(TheCall->getBeginLoc(), diag::err_typecheck_sub_ptr_compatible)
7355           << ArgTypeA <<  ArgTypeB << ArgA->getSourceRange()
7356           << ArgB->getSourceRange();
7357       }
7358     }
7359 
7360     // at least one argument should be pointer type
7361     if (!ArgTypeA->isAnyPointerType() && !ArgTypeB->isAnyPointerType())
7362       return Diag(TheCall->getBeginLoc(), diag::err_memtag_any2arg_pointer)
7363         <<  ArgTypeA << ArgTypeB << ArgA->getSourceRange();
7364 
7365     if (isNull(ArgA)) // adopt type of the other pointer
7366       ArgExprA = ImpCastExprToType(ArgExprA.get(), ArgTypeB, CK_NullToPointer);
7367 
7368     if (isNull(ArgB))
7369       ArgExprB = ImpCastExprToType(ArgExprB.get(), ArgTypeA, CK_NullToPointer);
7370 
7371     TheCall->setArg(0, ArgExprA.get());
7372     TheCall->setArg(1, ArgExprB.get());
7373     TheCall->setType(Context.LongLongTy);
7374     return false;
7375   }
7376   assert(false && "Unhandled ARM MTE intrinsic");
7377   return true;
7378 }
7379 
7380 /// SemaBuiltinARMSpecialReg - Handle a check if argument ArgNum of CallExpr
7381 /// TheCall is an ARM/AArch64 special register string literal.
7382 bool Sema::SemaBuiltinARMSpecialReg(unsigned BuiltinID, CallExpr *TheCall,
7383                                     int ArgNum, unsigned ExpectedFieldNum,
7384                                     bool AllowName) {
7385   bool IsARMBuiltin = BuiltinID == ARM::BI__builtin_arm_rsr64 ||
7386                       BuiltinID == ARM::BI__builtin_arm_wsr64 ||
7387                       BuiltinID == ARM::BI__builtin_arm_rsr ||
7388                       BuiltinID == ARM::BI__builtin_arm_rsrp ||
7389                       BuiltinID == ARM::BI__builtin_arm_wsr ||
7390                       BuiltinID == ARM::BI__builtin_arm_wsrp;
7391   bool IsAArch64Builtin = BuiltinID == AArch64::BI__builtin_arm_rsr64 ||
7392                           BuiltinID == AArch64::BI__builtin_arm_wsr64 ||
7393                           BuiltinID == AArch64::BI__builtin_arm_rsr ||
7394                           BuiltinID == AArch64::BI__builtin_arm_rsrp ||
7395                           BuiltinID == AArch64::BI__builtin_arm_wsr ||
7396                           BuiltinID == AArch64::BI__builtin_arm_wsrp;
7397   assert((IsARMBuiltin || IsAArch64Builtin) && "Unexpected ARM builtin.");
7398 
7399   // We can't check the value of a dependent argument.
7400   Expr *Arg = TheCall->getArg(ArgNum);
7401   if (Arg->isTypeDependent() || Arg->isValueDependent())
7402     return false;
7403 
7404   // Check if the argument is a string literal.
7405   if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts()))
7406     return Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
7407            << Arg->getSourceRange();
7408 
7409   // Check the type of special register given.
7410   StringRef Reg = cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString();
7411   SmallVector<StringRef, 6> Fields;
7412   Reg.split(Fields, ":");
7413 
7414   if (Fields.size() != ExpectedFieldNum && !(AllowName && Fields.size() == 1))
7415     return Diag(TheCall->getBeginLoc(), diag::err_arm_invalid_specialreg)
7416            << Arg->getSourceRange();
7417 
7418   // If the string is the name of a register then we cannot check that it is
7419   // valid here but if the string is of one the forms described in ACLE then we
7420   // can check that the supplied fields are integers and within the valid
7421   // ranges.
7422   if (Fields.size() > 1) {
7423     bool FiveFields = Fields.size() == 5;
7424 
7425     bool ValidString = true;
7426     if (IsARMBuiltin) {
7427       ValidString &= Fields[0].startswith_insensitive("cp") ||
7428                      Fields[0].startswith_insensitive("p");
7429       if (ValidString)
7430         Fields[0] = Fields[0].drop_front(
7431             Fields[0].startswith_insensitive("cp") ? 2 : 1);
7432 
7433       ValidString &= Fields[2].startswith_insensitive("c");
7434       if (ValidString)
7435         Fields[2] = Fields[2].drop_front(1);
7436 
7437       if (FiveFields) {
7438         ValidString &= Fields[3].startswith_insensitive("c");
7439         if (ValidString)
7440           Fields[3] = Fields[3].drop_front(1);
7441       }
7442     }
7443 
7444     SmallVector<int, 5> Ranges;
7445     if (FiveFields)
7446       Ranges.append({IsAArch64Builtin ? 1 : 15, 7, 15, 15, 7});
7447     else
7448       Ranges.append({15, 7, 15});
7449 
7450     for (unsigned i=0; i<Fields.size(); ++i) {
7451       int IntField;
7452       ValidString &= !Fields[i].getAsInteger(10, IntField);
7453       ValidString &= (IntField >= 0 && IntField <= Ranges[i]);
7454     }
7455 
7456     if (!ValidString)
7457       return Diag(TheCall->getBeginLoc(), diag::err_arm_invalid_specialreg)
7458              << Arg->getSourceRange();
7459   } else if (IsAArch64Builtin && Fields.size() == 1) {
7460     // If the register name is one of those that appear in the condition below
7461     // and the special register builtin being used is one of the write builtins,
7462     // then we require that the argument provided for writing to the register
7463     // is an integer constant expression. This is because it will be lowered to
7464     // an MSR (immediate) instruction, so we need to know the immediate at
7465     // compile time.
7466     if (TheCall->getNumArgs() != 2)
7467       return false;
7468 
7469     std::string RegLower = Reg.lower();
7470     if (RegLower != "spsel" && RegLower != "daifset" && RegLower != "daifclr" &&
7471         RegLower != "pan" && RegLower != "uao")
7472       return false;
7473 
7474     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15);
7475   }
7476 
7477   return false;
7478 }
7479 
7480 /// SemaBuiltinPPCMMACall - Check the call to a PPC MMA builtin for validity.
7481 /// Emit an error and return true on failure; return false on success.
7482 /// TypeStr is a string containing the type descriptor of the value returned by
7483 /// the builtin and the descriptors of the expected type of the arguments.
7484 bool Sema::SemaBuiltinPPCMMACall(CallExpr *TheCall, unsigned BuiltinID,
7485                                  const char *TypeStr) {
7486 
7487   assert((TypeStr[0] != '\0') &&
7488          "Invalid types in PPC MMA builtin declaration");
7489 
7490   switch (BuiltinID) {
7491   default:
7492     // This function is called in CheckPPCBuiltinFunctionCall where the
7493     // BuiltinID is guaranteed to be an MMA or pair vector memop builtin, here
7494     // we are isolating the pair vector memop builtins that can be used with mma
7495     // off so the default case is every builtin that requires mma and paired
7496     // vector memops.
7497     if (SemaFeatureCheck(*this, TheCall, "paired-vector-memops",
7498                          diag::err_ppc_builtin_only_on_arch, "10") ||
7499         SemaFeatureCheck(*this, TheCall, "mma",
7500                          diag::err_ppc_builtin_only_on_arch, "10"))
7501       return true;
7502     break;
7503   case PPC::BI__builtin_vsx_lxvp:
7504   case PPC::BI__builtin_vsx_stxvp:
7505   case PPC::BI__builtin_vsx_assemble_pair:
7506   case PPC::BI__builtin_vsx_disassemble_pair:
7507     if (SemaFeatureCheck(*this, TheCall, "paired-vector-memops",
7508                          diag::err_ppc_builtin_only_on_arch, "10"))
7509       return true;
7510     break;
7511   }
7512 
7513   unsigned Mask = 0;
7514   unsigned ArgNum = 0;
7515 
7516   // The first type in TypeStr is the type of the value returned by the
7517   // builtin. So we first read that type and change the type of TheCall.
7518   QualType type = DecodePPCMMATypeFromStr(Context, TypeStr, Mask);
7519   TheCall->setType(type);
7520 
7521   while (*TypeStr != '\0') {
7522     Mask = 0;
7523     QualType ExpectedType = DecodePPCMMATypeFromStr(Context, TypeStr, Mask);
7524     if (ArgNum >= TheCall->getNumArgs()) {
7525       ArgNum++;
7526       break;
7527     }
7528 
7529     Expr *Arg = TheCall->getArg(ArgNum);
7530     QualType ArgType = Arg->getType();
7531 
7532     if ((ExpectedType->isVoidPointerType() && !ArgType->isPointerType()) ||
7533         (!ExpectedType->isVoidPointerType() &&
7534            ArgType.getCanonicalType() != ExpectedType))
7535       return Diag(Arg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
7536              << ArgType << ExpectedType << 1 << 0 << 0;
7537 
7538     // If the value of the Mask is not 0, we have a constraint in the size of
7539     // the integer argument so here we ensure the argument is a constant that
7540     // is in the valid range.
7541     if (Mask != 0 &&
7542         SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, Mask, true))
7543       return true;
7544 
7545     ArgNum++;
7546   }
7547 
7548   // In case we exited early from the previous loop, there are other types to
7549   // read from TypeStr. So we need to read them all to ensure we have the right
7550   // number of arguments in TheCall and if it is not the case, to display a
7551   // better error message.
7552   while (*TypeStr != '\0') {
7553     (void) DecodePPCMMATypeFromStr(Context, TypeStr, Mask);
7554     ArgNum++;
7555   }
7556   if (checkArgCount(*this, TheCall, ArgNum))
7557     return true;
7558 
7559   return false;
7560 }
7561 
7562 /// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
7563 /// This checks that the target supports __builtin_longjmp and
7564 /// that val is a constant 1.
7565 bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
7566   if (!Context.getTargetInfo().hasSjLjLowering())
7567     return Diag(TheCall->getBeginLoc(), diag::err_builtin_longjmp_unsupported)
7568            << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc());
7569 
7570   Expr *Arg = TheCall->getArg(1);
7571   llvm::APSInt Result;
7572 
7573   // TODO: This is less than ideal. Overload this to take a value.
7574   if (SemaBuiltinConstantArg(TheCall, 1, Result))
7575     return true;
7576 
7577   if (Result != 1)
7578     return Diag(TheCall->getBeginLoc(), diag::err_builtin_longjmp_invalid_val)
7579            << SourceRange(Arg->getBeginLoc(), Arg->getEndLoc());
7580 
7581   return false;
7582 }
7583 
7584 /// SemaBuiltinSetjmp - Handle __builtin_setjmp(void *env[5]).
7585 /// This checks that the target supports __builtin_setjmp.
7586 bool Sema::SemaBuiltinSetjmp(CallExpr *TheCall) {
7587   if (!Context.getTargetInfo().hasSjLjLowering())
7588     return Diag(TheCall->getBeginLoc(), diag::err_builtin_setjmp_unsupported)
7589            << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc());
7590   return false;
7591 }
7592 
7593 namespace {
7594 
7595 class UncoveredArgHandler {
7596   enum { Unknown = -1, AllCovered = -2 };
7597 
7598   signed FirstUncoveredArg = Unknown;
7599   SmallVector<const Expr *, 4> DiagnosticExprs;
7600 
7601 public:
7602   UncoveredArgHandler() = default;
7603 
7604   bool hasUncoveredArg() const {
7605     return (FirstUncoveredArg >= 0);
7606   }
7607 
7608   unsigned getUncoveredArg() const {
7609     assert(hasUncoveredArg() && "no uncovered argument");
7610     return FirstUncoveredArg;
7611   }
7612 
7613   void setAllCovered() {
7614     // A string has been found with all arguments covered, so clear out
7615     // the diagnostics.
7616     DiagnosticExprs.clear();
7617     FirstUncoveredArg = AllCovered;
7618   }
7619 
7620   void Update(signed NewFirstUncoveredArg, const Expr *StrExpr) {
7621     assert(NewFirstUncoveredArg >= 0 && "Outside range");
7622 
7623     // Don't update if a previous string covers all arguments.
7624     if (FirstUncoveredArg == AllCovered)
7625       return;
7626 
7627     // UncoveredArgHandler tracks the highest uncovered argument index
7628     // and with it all the strings that match this index.
7629     if (NewFirstUncoveredArg == FirstUncoveredArg)
7630       DiagnosticExprs.push_back(StrExpr);
7631     else if (NewFirstUncoveredArg > FirstUncoveredArg) {
7632       DiagnosticExprs.clear();
7633       DiagnosticExprs.push_back(StrExpr);
7634       FirstUncoveredArg = NewFirstUncoveredArg;
7635     }
7636   }
7637 
7638   void Diagnose(Sema &S, bool IsFunctionCall, const Expr *ArgExpr);
7639 };
7640 
7641 enum StringLiteralCheckType {
7642   SLCT_NotALiteral,
7643   SLCT_UncheckedLiteral,
7644   SLCT_CheckedLiteral
7645 };
7646 
7647 } // namespace
7648 
7649 static void sumOffsets(llvm::APSInt &Offset, llvm::APSInt Addend,
7650                                      BinaryOperatorKind BinOpKind,
7651                                      bool AddendIsRight) {
7652   unsigned BitWidth = Offset.getBitWidth();
7653   unsigned AddendBitWidth = Addend.getBitWidth();
7654   // There might be negative interim results.
7655   if (Addend.isUnsigned()) {
7656     Addend = Addend.zext(++AddendBitWidth);
7657     Addend.setIsSigned(true);
7658   }
7659   // Adjust the bit width of the APSInts.
7660   if (AddendBitWidth > BitWidth) {
7661     Offset = Offset.sext(AddendBitWidth);
7662     BitWidth = AddendBitWidth;
7663   } else if (BitWidth > AddendBitWidth) {
7664     Addend = Addend.sext(BitWidth);
7665   }
7666 
7667   bool Ov = false;
7668   llvm::APSInt ResOffset = Offset;
7669   if (BinOpKind == BO_Add)
7670     ResOffset = Offset.sadd_ov(Addend, Ov);
7671   else {
7672     assert(AddendIsRight && BinOpKind == BO_Sub &&
7673            "operator must be add or sub with addend on the right");
7674     ResOffset = Offset.ssub_ov(Addend, Ov);
7675   }
7676 
7677   // We add an offset to a pointer here so we should support an offset as big as
7678   // possible.
7679   if (Ov) {
7680     assert(BitWidth <= std::numeric_limits<unsigned>::max() / 2 &&
7681            "index (intermediate) result too big");
7682     Offset = Offset.sext(2 * BitWidth);
7683     sumOffsets(Offset, Addend, BinOpKind, AddendIsRight);
7684     return;
7685   }
7686 
7687   Offset = ResOffset;
7688 }
7689 
7690 namespace {
7691 
7692 // This is a wrapper class around StringLiteral to support offsetted string
7693 // literals as format strings. It takes the offset into account when returning
7694 // the string and its length or the source locations to display notes correctly.
7695 class FormatStringLiteral {
7696   const StringLiteral *FExpr;
7697   int64_t Offset;
7698 
7699  public:
7700   FormatStringLiteral(const StringLiteral *fexpr, int64_t Offset = 0)
7701       : FExpr(fexpr), Offset(Offset) {}
7702 
7703   StringRef getString() const {
7704     return FExpr->getString().drop_front(Offset);
7705   }
7706 
7707   unsigned getByteLength() const {
7708     return FExpr->getByteLength() - getCharByteWidth() * Offset;
7709   }
7710 
7711   unsigned getLength() const { return FExpr->getLength() - Offset; }
7712   unsigned getCharByteWidth() const { return FExpr->getCharByteWidth(); }
7713 
7714   StringLiteral::StringKind getKind() const { return FExpr->getKind(); }
7715 
7716   QualType getType() const { return FExpr->getType(); }
7717 
7718   bool isAscii() const { return FExpr->isAscii(); }
7719   bool isWide() const { return FExpr->isWide(); }
7720   bool isUTF8() const { return FExpr->isUTF8(); }
7721   bool isUTF16() const { return FExpr->isUTF16(); }
7722   bool isUTF32() const { return FExpr->isUTF32(); }
7723   bool isPascal() const { return FExpr->isPascal(); }
7724 
7725   SourceLocation getLocationOfByte(
7726       unsigned ByteNo, const SourceManager &SM, const LangOptions &Features,
7727       const TargetInfo &Target, unsigned *StartToken = nullptr,
7728       unsigned *StartTokenByteOffset = nullptr) const {
7729     return FExpr->getLocationOfByte(ByteNo + Offset, SM, Features, Target,
7730                                     StartToken, StartTokenByteOffset);
7731   }
7732 
7733   SourceLocation getBeginLoc() const LLVM_READONLY {
7734     return FExpr->getBeginLoc().getLocWithOffset(Offset);
7735   }
7736 
7737   SourceLocation getEndLoc() const LLVM_READONLY { return FExpr->getEndLoc(); }
7738 };
7739 
7740 }  // namespace
7741 
7742 static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr,
7743                               const Expr *OrigFormatExpr,
7744                               ArrayRef<const Expr *> Args,
7745                               bool HasVAListArg, unsigned format_idx,
7746                               unsigned firstDataArg,
7747                               Sema::FormatStringType Type,
7748                               bool inFunctionCall,
7749                               Sema::VariadicCallType CallType,
7750                               llvm::SmallBitVector &CheckedVarArgs,
7751                               UncoveredArgHandler &UncoveredArg,
7752                               bool IgnoreStringsWithoutSpecifiers);
7753 
7754 // Determine if an expression is a string literal or constant string.
7755 // If this function returns false on the arguments to a function expecting a
7756 // format string, we will usually need to emit a warning.
7757 // True string literals are then checked by CheckFormatString.
7758 static StringLiteralCheckType
7759 checkFormatStringExpr(Sema &S, const Expr *E, ArrayRef<const Expr *> Args,
7760                       bool HasVAListArg, unsigned format_idx,
7761                       unsigned firstDataArg, Sema::FormatStringType Type,
7762                       Sema::VariadicCallType CallType, bool InFunctionCall,
7763                       llvm::SmallBitVector &CheckedVarArgs,
7764                       UncoveredArgHandler &UncoveredArg,
7765                       llvm::APSInt Offset,
7766                       bool IgnoreStringsWithoutSpecifiers = false) {
7767   if (S.isConstantEvaluated())
7768     return SLCT_NotALiteral;
7769  tryAgain:
7770   assert(Offset.isSigned() && "invalid offset");
7771 
7772   if (E->isTypeDependent() || E->isValueDependent())
7773     return SLCT_NotALiteral;
7774 
7775   E = E->IgnoreParenCasts();
7776 
7777   if (E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull))
7778     // Technically -Wformat-nonliteral does not warn about this case.
7779     // The behavior of printf and friends in this case is implementation
7780     // dependent.  Ideally if the format string cannot be null then
7781     // it should have a 'nonnull' attribute in the function prototype.
7782     return SLCT_UncheckedLiteral;
7783 
7784   switch (E->getStmtClass()) {
7785   case Stmt::BinaryConditionalOperatorClass:
7786   case Stmt::ConditionalOperatorClass: {
7787     // The expression is a literal if both sub-expressions were, and it was
7788     // completely checked only if both sub-expressions were checked.
7789     const AbstractConditionalOperator *C =
7790         cast<AbstractConditionalOperator>(E);
7791 
7792     // Determine whether it is necessary to check both sub-expressions, for
7793     // example, because the condition expression is a constant that can be
7794     // evaluated at compile time.
7795     bool CheckLeft = true, CheckRight = true;
7796 
7797     bool Cond;
7798     if (C->getCond()->EvaluateAsBooleanCondition(Cond, S.getASTContext(),
7799                                                  S.isConstantEvaluated())) {
7800       if (Cond)
7801         CheckRight = false;
7802       else
7803         CheckLeft = false;
7804     }
7805 
7806     // We need to maintain the offsets for the right and the left hand side
7807     // separately to check if every possible indexed expression is a valid
7808     // string literal. They might have different offsets for different string
7809     // literals in the end.
7810     StringLiteralCheckType Left;
7811     if (!CheckLeft)
7812       Left = SLCT_UncheckedLiteral;
7813     else {
7814       Left = checkFormatStringExpr(S, C->getTrueExpr(), Args,
7815                                    HasVAListArg, format_idx, firstDataArg,
7816                                    Type, CallType, InFunctionCall,
7817                                    CheckedVarArgs, UncoveredArg, Offset,
7818                                    IgnoreStringsWithoutSpecifiers);
7819       if (Left == SLCT_NotALiteral || !CheckRight) {
7820         return Left;
7821       }
7822     }
7823 
7824     StringLiteralCheckType Right = checkFormatStringExpr(
7825         S, C->getFalseExpr(), Args, HasVAListArg, format_idx, firstDataArg,
7826         Type, CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
7827         IgnoreStringsWithoutSpecifiers);
7828 
7829     return (CheckLeft && Left < Right) ? Left : Right;
7830   }
7831 
7832   case Stmt::ImplicitCastExprClass:
7833     E = cast<ImplicitCastExpr>(E)->getSubExpr();
7834     goto tryAgain;
7835 
7836   case Stmt::OpaqueValueExprClass:
7837     if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) {
7838       E = src;
7839       goto tryAgain;
7840     }
7841     return SLCT_NotALiteral;
7842 
7843   case Stmt::PredefinedExprClass:
7844     // While __func__, etc., are technically not string literals, they
7845     // cannot contain format specifiers and thus are not a security
7846     // liability.
7847     return SLCT_UncheckedLiteral;
7848 
7849   case Stmt::DeclRefExprClass: {
7850     const DeclRefExpr *DR = cast<DeclRefExpr>(E);
7851 
7852     // As an exception, do not flag errors for variables binding to
7853     // const string literals.
7854     if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
7855       bool isConstant = false;
7856       QualType T = DR->getType();
7857 
7858       if (const ArrayType *AT = S.Context.getAsArrayType(T)) {
7859         isConstant = AT->getElementType().isConstant(S.Context);
7860       } else if (const PointerType *PT = T->getAs<PointerType>()) {
7861         isConstant = T.isConstant(S.Context) &&
7862                      PT->getPointeeType().isConstant(S.Context);
7863       } else if (T->isObjCObjectPointerType()) {
7864         // In ObjC, there is usually no "const ObjectPointer" type,
7865         // so don't check if the pointee type is constant.
7866         isConstant = T.isConstant(S.Context);
7867       }
7868 
7869       if (isConstant) {
7870         if (const Expr *Init = VD->getAnyInitializer()) {
7871           // Look through initializers like const char c[] = { "foo" }
7872           if (const InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) {
7873             if (InitList->isStringLiteralInit())
7874               Init = InitList->getInit(0)->IgnoreParenImpCasts();
7875           }
7876           return checkFormatStringExpr(S, Init, Args,
7877                                        HasVAListArg, format_idx,
7878                                        firstDataArg, Type, CallType,
7879                                        /*InFunctionCall*/ false, CheckedVarArgs,
7880                                        UncoveredArg, Offset);
7881         }
7882       }
7883 
7884       // For vprintf* functions (i.e., HasVAListArg==true), we add a
7885       // special check to see if the format string is a function parameter
7886       // of the function calling the printf function.  If the function
7887       // has an attribute indicating it is a printf-like function, then we
7888       // should suppress warnings concerning non-literals being used in a call
7889       // to a vprintf function.  For example:
7890       //
7891       // void
7892       // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
7893       //      va_list ap;
7894       //      va_start(ap, fmt);
7895       //      vprintf(fmt, ap);  // Do NOT emit a warning about "fmt".
7896       //      ...
7897       // }
7898       if (HasVAListArg) {
7899         if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(VD)) {
7900           if (const NamedDecl *ND = dyn_cast<NamedDecl>(PV->getDeclContext())) {
7901             int PVIndex = PV->getFunctionScopeIndex() + 1;
7902             for (const auto *PVFormat : ND->specific_attrs<FormatAttr>()) {
7903               // adjust for implicit parameter
7904               if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
7905                 if (MD->isInstance())
7906                   ++PVIndex;
7907               // We also check if the formats are compatible.
7908               // We can't pass a 'scanf' string to a 'printf' function.
7909               if (PVIndex == PVFormat->getFormatIdx() &&
7910                   Type == S.GetFormatStringType(PVFormat))
7911                 return SLCT_UncheckedLiteral;
7912             }
7913           }
7914         }
7915       }
7916     }
7917 
7918     return SLCT_NotALiteral;
7919   }
7920 
7921   case Stmt::CallExprClass:
7922   case Stmt::CXXMemberCallExprClass: {
7923     const CallExpr *CE = cast<CallExpr>(E);
7924     if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
7925       bool IsFirst = true;
7926       StringLiteralCheckType CommonResult;
7927       for (const auto *FA : ND->specific_attrs<FormatArgAttr>()) {
7928         const Expr *Arg = CE->getArg(FA->getFormatIdx().getASTIndex());
7929         StringLiteralCheckType Result = checkFormatStringExpr(
7930             S, Arg, Args, HasVAListArg, format_idx, firstDataArg, Type,
7931             CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
7932             IgnoreStringsWithoutSpecifiers);
7933         if (IsFirst) {
7934           CommonResult = Result;
7935           IsFirst = false;
7936         }
7937       }
7938       if (!IsFirst)
7939         return CommonResult;
7940 
7941       if (const auto *FD = dyn_cast<FunctionDecl>(ND)) {
7942         unsigned BuiltinID = FD->getBuiltinID();
7943         if (BuiltinID == Builtin::BI__builtin___CFStringMakeConstantString ||
7944             BuiltinID == Builtin::BI__builtin___NSStringMakeConstantString) {
7945           const Expr *Arg = CE->getArg(0);
7946           return checkFormatStringExpr(S, Arg, Args,
7947                                        HasVAListArg, format_idx,
7948                                        firstDataArg, Type, CallType,
7949                                        InFunctionCall, CheckedVarArgs,
7950                                        UncoveredArg, Offset,
7951                                        IgnoreStringsWithoutSpecifiers);
7952         }
7953       }
7954     }
7955 
7956     return SLCT_NotALiteral;
7957   }
7958   case Stmt::ObjCMessageExprClass: {
7959     const auto *ME = cast<ObjCMessageExpr>(E);
7960     if (const auto *MD = ME->getMethodDecl()) {
7961       if (const auto *FA = MD->getAttr<FormatArgAttr>()) {
7962         // As a special case heuristic, if we're using the method -[NSBundle
7963         // localizedStringForKey:value:table:], ignore any key strings that lack
7964         // format specifiers. The idea is that if the key doesn't have any
7965         // format specifiers then its probably just a key to map to the
7966         // localized strings. If it does have format specifiers though, then its
7967         // likely that the text of the key is the format string in the
7968         // programmer's language, and should be checked.
7969         const ObjCInterfaceDecl *IFace;
7970         if (MD->isInstanceMethod() && (IFace = MD->getClassInterface()) &&
7971             IFace->getIdentifier()->isStr("NSBundle") &&
7972             MD->getSelector().isKeywordSelector(
7973                 {"localizedStringForKey", "value", "table"})) {
7974           IgnoreStringsWithoutSpecifiers = true;
7975         }
7976 
7977         const Expr *Arg = ME->getArg(FA->getFormatIdx().getASTIndex());
7978         return checkFormatStringExpr(
7979             S, Arg, Args, HasVAListArg, format_idx, firstDataArg, Type,
7980             CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
7981             IgnoreStringsWithoutSpecifiers);
7982       }
7983     }
7984 
7985     return SLCT_NotALiteral;
7986   }
7987   case Stmt::ObjCStringLiteralClass:
7988   case Stmt::StringLiteralClass: {
7989     const StringLiteral *StrE = nullptr;
7990 
7991     if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
7992       StrE = ObjCFExpr->getString();
7993     else
7994       StrE = cast<StringLiteral>(E);
7995 
7996     if (StrE) {
7997       if (Offset.isNegative() || Offset > StrE->getLength()) {
7998         // TODO: It would be better to have an explicit warning for out of
7999         // bounds literals.
8000         return SLCT_NotALiteral;
8001       }
8002       FormatStringLiteral FStr(StrE, Offset.sextOrTrunc(64).getSExtValue());
8003       CheckFormatString(S, &FStr, E, Args, HasVAListArg, format_idx,
8004                         firstDataArg, Type, InFunctionCall, CallType,
8005                         CheckedVarArgs, UncoveredArg,
8006                         IgnoreStringsWithoutSpecifiers);
8007       return SLCT_CheckedLiteral;
8008     }
8009 
8010     return SLCT_NotALiteral;
8011   }
8012   case Stmt::BinaryOperatorClass: {
8013     const BinaryOperator *BinOp = cast<BinaryOperator>(E);
8014 
8015     // A string literal + an int offset is still a string literal.
8016     if (BinOp->isAdditiveOp()) {
8017       Expr::EvalResult LResult, RResult;
8018 
8019       bool LIsInt = BinOp->getLHS()->EvaluateAsInt(
8020           LResult, S.Context, Expr::SE_NoSideEffects, S.isConstantEvaluated());
8021       bool RIsInt = BinOp->getRHS()->EvaluateAsInt(
8022           RResult, S.Context, Expr::SE_NoSideEffects, S.isConstantEvaluated());
8023 
8024       if (LIsInt != RIsInt) {
8025         BinaryOperatorKind BinOpKind = BinOp->getOpcode();
8026 
8027         if (LIsInt) {
8028           if (BinOpKind == BO_Add) {
8029             sumOffsets(Offset, LResult.Val.getInt(), BinOpKind, RIsInt);
8030             E = BinOp->getRHS();
8031             goto tryAgain;
8032           }
8033         } else {
8034           sumOffsets(Offset, RResult.Val.getInt(), BinOpKind, RIsInt);
8035           E = BinOp->getLHS();
8036           goto tryAgain;
8037         }
8038       }
8039     }
8040 
8041     return SLCT_NotALiteral;
8042   }
8043   case Stmt::UnaryOperatorClass: {
8044     const UnaryOperator *UnaOp = cast<UnaryOperator>(E);
8045     auto ASE = dyn_cast<ArraySubscriptExpr>(UnaOp->getSubExpr());
8046     if (UnaOp->getOpcode() == UO_AddrOf && ASE) {
8047       Expr::EvalResult IndexResult;
8048       if (ASE->getRHS()->EvaluateAsInt(IndexResult, S.Context,
8049                                        Expr::SE_NoSideEffects,
8050                                        S.isConstantEvaluated())) {
8051         sumOffsets(Offset, IndexResult.Val.getInt(), BO_Add,
8052                    /*RHS is int*/ true);
8053         E = ASE->getBase();
8054         goto tryAgain;
8055       }
8056     }
8057 
8058     return SLCT_NotALiteral;
8059   }
8060 
8061   default:
8062     return SLCT_NotALiteral;
8063   }
8064 }
8065 
8066 Sema::FormatStringType Sema::GetFormatStringType(const FormatAttr *Format) {
8067   return llvm::StringSwitch<FormatStringType>(Format->getType()->getName())
8068       .Case("scanf", FST_Scanf)
8069       .Cases("printf", "printf0", FST_Printf)
8070       .Cases("NSString", "CFString", FST_NSString)
8071       .Case("strftime", FST_Strftime)
8072       .Case("strfmon", FST_Strfmon)
8073       .Cases("kprintf", "cmn_err", "vcmn_err", "zcmn_err", FST_Kprintf)
8074       .Case("freebsd_kprintf", FST_FreeBSDKPrintf)
8075       .Case("os_trace", FST_OSLog)
8076       .Case("os_log", FST_OSLog)
8077       .Default(FST_Unknown);
8078 }
8079 
8080 /// CheckFormatArguments - Check calls to printf and scanf (and similar
8081 /// functions) for correct use of format strings.
8082 /// Returns true if a format string has been fully checked.
8083 bool Sema::CheckFormatArguments(const FormatAttr *Format,
8084                                 ArrayRef<const Expr *> Args,
8085                                 bool IsCXXMember,
8086                                 VariadicCallType CallType,
8087                                 SourceLocation Loc, SourceRange Range,
8088                                 llvm::SmallBitVector &CheckedVarArgs) {
8089   FormatStringInfo FSI;
8090   if (getFormatStringInfo(Format, IsCXXMember, &FSI))
8091     return CheckFormatArguments(Args, FSI.HasVAListArg, FSI.FormatIdx,
8092                                 FSI.FirstDataArg, GetFormatStringType(Format),
8093                                 CallType, Loc, Range, CheckedVarArgs);
8094   return false;
8095 }
8096 
8097 bool Sema::CheckFormatArguments(ArrayRef<const Expr *> Args,
8098                                 bool HasVAListArg, unsigned format_idx,
8099                                 unsigned firstDataArg, FormatStringType Type,
8100                                 VariadicCallType CallType,
8101                                 SourceLocation Loc, SourceRange Range,
8102                                 llvm::SmallBitVector &CheckedVarArgs) {
8103   // CHECK: printf/scanf-like function is called with no format string.
8104   if (format_idx >= Args.size()) {
8105     Diag(Loc, diag::warn_missing_format_string) << Range;
8106     return false;
8107   }
8108 
8109   const Expr *OrigFormatExpr = Args[format_idx]->IgnoreParenCasts();
8110 
8111   // CHECK: format string is not a string literal.
8112   //
8113   // Dynamically generated format strings are difficult to
8114   // automatically vet at compile time.  Requiring that format strings
8115   // are string literals: (1) permits the checking of format strings by
8116   // the compiler and thereby (2) can practically remove the source of
8117   // many format string exploits.
8118 
8119   // Format string can be either ObjC string (e.g. @"%d") or
8120   // C string (e.g. "%d")
8121   // ObjC string uses the same format specifiers as C string, so we can use
8122   // the same format string checking logic for both ObjC and C strings.
8123   UncoveredArgHandler UncoveredArg;
8124   StringLiteralCheckType CT =
8125       checkFormatStringExpr(*this, OrigFormatExpr, Args, HasVAListArg,
8126                             format_idx, firstDataArg, Type, CallType,
8127                             /*IsFunctionCall*/ true, CheckedVarArgs,
8128                             UncoveredArg,
8129                             /*no string offset*/ llvm::APSInt(64, false) = 0);
8130 
8131   // Generate a diagnostic where an uncovered argument is detected.
8132   if (UncoveredArg.hasUncoveredArg()) {
8133     unsigned ArgIdx = UncoveredArg.getUncoveredArg() + firstDataArg;
8134     assert(ArgIdx < Args.size() && "ArgIdx outside bounds");
8135     UncoveredArg.Diagnose(*this, /*IsFunctionCall*/true, Args[ArgIdx]);
8136   }
8137 
8138   if (CT != SLCT_NotALiteral)
8139     // Literal format string found, check done!
8140     return CT == SLCT_CheckedLiteral;
8141 
8142   // Strftime is particular as it always uses a single 'time' argument,
8143   // so it is safe to pass a non-literal string.
8144   if (Type == FST_Strftime)
8145     return false;
8146 
8147   // Do not emit diag when the string param is a macro expansion and the
8148   // format is either NSString or CFString. This is a hack to prevent
8149   // diag when using the NSLocalizedString and CFCopyLocalizedString macros
8150   // which are usually used in place of NS and CF string literals.
8151   SourceLocation FormatLoc = Args[format_idx]->getBeginLoc();
8152   if (Type == FST_NSString && SourceMgr.isInSystemMacro(FormatLoc))
8153     return false;
8154 
8155   // If there are no arguments specified, warn with -Wformat-security, otherwise
8156   // warn only with -Wformat-nonliteral.
8157   if (Args.size() == firstDataArg) {
8158     Diag(FormatLoc, diag::warn_format_nonliteral_noargs)
8159       << OrigFormatExpr->getSourceRange();
8160     switch (Type) {
8161     default:
8162       break;
8163     case FST_Kprintf:
8164     case FST_FreeBSDKPrintf:
8165     case FST_Printf:
8166       Diag(FormatLoc, diag::note_format_security_fixit)
8167         << FixItHint::CreateInsertion(FormatLoc, "\"%s\", ");
8168       break;
8169     case FST_NSString:
8170       Diag(FormatLoc, diag::note_format_security_fixit)
8171         << FixItHint::CreateInsertion(FormatLoc, "@\"%@\", ");
8172       break;
8173     }
8174   } else {
8175     Diag(FormatLoc, diag::warn_format_nonliteral)
8176       << OrigFormatExpr->getSourceRange();
8177   }
8178   return false;
8179 }
8180 
8181 namespace {
8182 
8183 class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
8184 protected:
8185   Sema &S;
8186   const FormatStringLiteral *FExpr;
8187   const Expr *OrigFormatExpr;
8188   const Sema::FormatStringType FSType;
8189   const unsigned FirstDataArg;
8190   const unsigned NumDataArgs;
8191   const char *Beg; // Start of format string.
8192   const bool HasVAListArg;
8193   ArrayRef<const Expr *> Args;
8194   unsigned FormatIdx;
8195   llvm::SmallBitVector CoveredArgs;
8196   bool usesPositionalArgs = false;
8197   bool atFirstArg = true;
8198   bool inFunctionCall;
8199   Sema::VariadicCallType CallType;
8200   llvm::SmallBitVector &CheckedVarArgs;
8201   UncoveredArgHandler &UncoveredArg;
8202 
8203 public:
8204   CheckFormatHandler(Sema &s, const FormatStringLiteral *fexpr,
8205                      const Expr *origFormatExpr,
8206                      const Sema::FormatStringType type, unsigned firstDataArg,
8207                      unsigned numDataArgs, const char *beg, bool hasVAListArg,
8208                      ArrayRef<const Expr *> Args, unsigned formatIdx,
8209                      bool inFunctionCall, Sema::VariadicCallType callType,
8210                      llvm::SmallBitVector &CheckedVarArgs,
8211                      UncoveredArgHandler &UncoveredArg)
8212       : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr), FSType(type),
8213         FirstDataArg(firstDataArg), NumDataArgs(numDataArgs), Beg(beg),
8214         HasVAListArg(hasVAListArg), Args(Args), FormatIdx(formatIdx),
8215         inFunctionCall(inFunctionCall), CallType(callType),
8216         CheckedVarArgs(CheckedVarArgs), UncoveredArg(UncoveredArg) {
8217     CoveredArgs.resize(numDataArgs);
8218     CoveredArgs.reset();
8219   }
8220 
8221   void DoneProcessing();
8222 
8223   void HandleIncompleteSpecifier(const char *startSpecifier,
8224                                  unsigned specifierLen) override;
8225 
8226   void HandleInvalidLengthModifier(
8227                            const analyze_format_string::FormatSpecifier &FS,
8228                            const analyze_format_string::ConversionSpecifier &CS,
8229                            const char *startSpecifier, unsigned specifierLen,
8230                            unsigned DiagID);
8231 
8232   void HandleNonStandardLengthModifier(
8233                     const analyze_format_string::FormatSpecifier &FS,
8234                     const char *startSpecifier, unsigned specifierLen);
8235 
8236   void HandleNonStandardConversionSpecifier(
8237                     const analyze_format_string::ConversionSpecifier &CS,
8238                     const char *startSpecifier, unsigned specifierLen);
8239 
8240   void HandlePosition(const char *startPos, unsigned posLen) override;
8241 
8242   void HandleInvalidPosition(const char *startSpecifier,
8243                              unsigned specifierLen,
8244                              analyze_format_string::PositionContext p) override;
8245 
8246   void HandleZeroPosition(const char *startPos, unsigned posLen) override;
8247 
8248   void HandleNullChar(const char *nullCharacter) override;
8249 
8250   template <typename Range>
8251   static void
8252   EmitFormatDiagnostic(Sema &S, bool inFunctionCall, const Expr *ArgumentExpr,
8253                        const PartialDiagnostic &PDiag, SourceLocation StringLoc,
8254                        bool IsStringLocation, Range StringRange,
8255                        ArrayRef<FixItHint> Fixit = None);
8256 
8257 protected:
8258   bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
8259                                         const char *startSpec,
8260                                         unsigned specifierLen,
8261                                         const char *csStart, unsigned csLen);
8262 
8263   void HandlePositionalNonpositionalArgs(SourceLocation Loc,
8264                                          const char *startSpec,
8265                                          unsigned specifierLen);
8266 
8267   SourceRange getFormatStringRange();
8268   CharSourceRange getSpecifierRange(const char *startSpecifier,
8269                                     unsigned specifierLen);
8270   SourceLocation getLocationOfByte(const char *x);
8271 
8272   const Expr *getDataArg(unsigned i) const;
8273 
8274   bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
8275                     const analyze_format_string::ConversionSpecifier &CS,
8276                     const char *startSpecifier, unsigned specifierLen,
8277                     unsigned argIndex);
8278 
8279   template <typename Range>
8280   void EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation StringLoc,
8281                             bool IsStringLocation, Range StringRange,
8282                             ArrayRef<FixItHint> Fixit = None);
8283 };
8284 
8285 } // namespace
8286 
8287 SourceRange CheckFormatHandler::getFormatStringRange() {
8288   return OrigFormatExpr->getSourceRange();
8289 }
8290 
8291 CharSourceRange CheckFormatHandler::
8292 getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
8293   SourceLocation Start = getLocationOfByte(startSpecifier);
8294   SourceLocation End   = getLocationOfByte(startSpecifier + specifierLen - 1);
8295 
8296   // Advance the end SourceLocation by one due to half-open ranges.
8297   End = End.getLocWithOffset(1);
8298 
8299   return CharSourceRange::getCharRange(Start, End);
8300 }
8301 
8302 SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
8303   return FExpr->getLocationOfByte(x - Beg, S.getSourceManager(),
8304                                   S.getLangOpts(), S.Context.getTargetInfo());
8305 }
8306 
8307 void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
8308                                                    unsigned specifierLen){
8309   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_incomplete_specifier),
8310                        getLocationOfByte(startSpecifier),
8311                        /*IsStringLocation*/true,
8312                        getSpecifierRange(startSpecifier, specifierLen));
8313 }
8314 
8315 void CheckFormatHandler::HandleInvalidLengthModifier(
8316     const analyze_format_string::FormatSpecifier &FS,
8317     const analyze_format_string::ConversionSpecifier &CS,
8318     const char *startSpecifier, unsigned specifierLen, unsigned DiagID) {
8319   using namespace analyze_format_string;
8320 
8321   const LengthModifier &LM = FS.getLengthModifier();
8322   CharSourceRange LMRange = getSpecifierRange(LM.getStart(), LM.getLength());
8323 
8324   // See if we know how to fix this length modifier.
8325   Optional<LengthModifier> FixedLM = FS.getCorrectedLengthModifier();
8326   if (FixedLM) {
8327     EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(),
8328                          getLocationOfByte(LM.getStart()),
8329                          /*IsStringLocation*/true,
8330                          getSpecifierRange(startSpecifier, specifierLen));
8331 
8332     S.Diag(getLocationOfByte(LM.getStart()), diag::note_format_fix_specifier)
8333       << FixedLM->toString()
8334       << FixItHint::CreateReplacement(LMRange, FixedLM->toString());
8335 
8336   } else {
8337     FixItHint Hint;
8338     if (DiagID == diag::warn_format_nonsensical_length)
8339       Hint = FixItHint::CreateRemoval(LMRange);
8340 
8341     EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(),
8342                          getLocationOfByte(LM.getStart()),
8343                          /*IsStringLocation*/true,
8344                          getSpecifierRange(startSpecifier, specifierLen),
8345                          Hint);
8346   }
8347 }
8348 
8349 void CheckFormatHandler::HandleNonStandardLengthModifier(
8350     const analyze_format_string::FormatSpecifier &FS,
8351     const char *startSpecifier, unsigned specifierLen) {
8352   using namespace analyze_format_string;
8353 
8354   const LengthModifier &LM = FS.getLengthModifier();
8355   CharSourceRange LMRange = getSpecifierRange(LM.getStart(), LM.getLength());
8356 
8357   // See if we know how to fix this length modifier.
8358   Optional<LengthModifier> FixedLM = FS.getCorrectedLengthModifier();
8359   if (FixedLM) {
8360     EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard)
8361                            << LM.toString() << 0,
8362                          getLocationOfByte(LM.getStart()),
8363                          /*IsStringLocation*/true,
8364                          getSpecifierRange(startSpecifier, specifierLen));
8365 
8366     S.Diag(getLocationOfByte(LM.getStart()), diag::note_format_fix_specifier)
8367       << FixedLM->toString()
8368       << FixItHint::CreateReplacement(LMRange, FixedLM->toString());
8369 
8370   } else {
8371     EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard)
8372                            << LM.toString() << 0,
8373                          getLocationOfByte(LM.getStart()),
8374                          /*IsStringLocation*/true,
8375                          getSpecifierRange(startSpecifier, specifierLen));
8376   }
8377 }
8378 
8379 void CheckFormatHandler::HandleNonStandardConversionSpecifier(
8380     const analyze_format_string::ConversionSpecifier &CS,
8381     const char *startSpecifier, unsigned specifierLen) {
8382   using namespace analyze_format_string;
8383 
8384   // See if we know how to fix this conversion specifier.
8385   Optional<ConversionSpecifier> FixedCS = CS.getStandardSpecifier();
8386   if (FixedCS) {
8387     EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard)
8388                           << CS.toString() << /*conversion specifier*/1,
8389                          getLocationOfByte(CS.getStart()),
8390                          /*IsStringLocation*/true,
8391                          getSpecifierRange(startSpecifier, specifierLen));
8392 
8393     CharSourceRange CSRange = getSpecifierRange(CS.getStart(), CS.getLength());
8394     S.Diag(getLocationOfByte(CS.getStart()), diag::note_format_fix_specifier)
8395       << FixedCS->toString()
8396       << FixItHint::CreateReplacement(CSRange, FixedCS->toString());
8397   } else {
8398     EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard)
8399                           << CS.toString() << /*conversion specifier*/1,
8400                          getLocationOfByte(CS.getStart()),
8401                          /*IsStringLocation*/true,
8402                          getSpecifierRange(startSpecifier, specifierLen));
8403   }
8404 }
8405 
8406 void CheckFormatHandler::HandlePosition(const char *startPos,
8407                                         unsigned posLen) {
8408   EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard_positional_arg),
8409                                getLocationOfByte(startPos),
8410                                /*IsStringLocation*/true,
8411                                getSpecifierRange(startPos, posLen));
8412 }
8413 
8414 void
8415 CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
8416                                      analyze_format_string::PositionContext p) {
8417   EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_positional_specifier)
8418                          << (unsigned) p,
8419                        getLocationOfByte(startPos), /*IsStringLocation*/true,
8420                        getSpecifierRange(startPos, posLen));
8421 }
8422 
8423 void CheckFormatHandler::HandleZeroPosition(const char *startPos,
8424                                             unsigned posLen) {
8425   EmitFormatDiagnostic(S.PDiag(diag::warn_format_zero_positional_specifier),
8426                                getLocationOfByte(startPos),
8427                                /*IsStringLocation*/true,
8428                                getSpecifierRange(startPos, posLen));
8429 }
8430 
8431 void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
8432   if (!isa<ObjCStringLiteral>(OrigFormatExpr)) {
8433     // The presence of a null character is likely an error.
8434     EmitFormatDiagnostic(
8435       S.PDiag(diag::warn_printf_format_string_contains_null_char),
8436       getLocationOfByte(nullCharacter), /*IsStringLocation*/true,
8437       getFormatStringRange());
8438   }
8439 }
8440 
8441 // Note that this may return NULL if there was an error parsing or building
8442 // one of the argument expressions.
8443 const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
8444   return Args[FirstDataArg + i];
8445 }
8446 
8447 void CheckFormatHandler::DoneProcessing() {
8448   // Does the number of data arguments exceed the number of
8449   // format conversions in the format string?
8450   if (!HasVAListArg) {
8451       // Find any arguments that weren't covered.
8452     CoveredArgs.flip();
8453     signed notCoveredArg = CoveredArgs.find_first();
8454     if (notCoveredArg >= 0) {
8455       assert((unsigned)notCoveredArg < NumDataArgs);
8456       UncoveredArg.Update(notCoveredArg, OrigFormatExpr);
8457     } else {
8458       UncoveredArg.setAllCovered();
8459     }
8460   }
8461 }
8462 
8463 void UncoveredArgHandler::Diagnose(Sema &S, bool IsFunctionCall,
8464                                    const Expr *ArgExpr) {
8465   assert(hasUncoveredArg() && DiagnosticExprs.size() > 0 &&
8466          "Invalid state");
8467 
8468   if (!ArgExpr)
8469     return;
8470 
8471   SourceLocation Loc = ArgExpr->getBeginLoc();
8472 
8473   if (S.getSourceManager().isInSystemMacro(Loc))
8474     return;
8475 
8476   PartialDiagnostic PDiag = S.PDiag(diag::warn_printf_data_arg_not_used);
8477   for (auto E : DiagnosticExprs)
8478     PDiag << E->getSourceRange();
8479 
8480   CheckFormatHandler::EmitFormatDiagnostic(
8481                                   S, IsFunctionCall, DiagnosticExprs[0],
8482                                   PDiag, Loc, /*IsStringLocation*/false,
8483                                   DiagnosticExprs[0]->getSourceRange());
8484 }
8485 
8486 bool
8487 CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
8488                                                      SourceLocation Loc,
8489                                                      const char *startSpec,
8490                                                      unsigned specifierLen,
8491                                                      const char *csStart,
8492                                                      unsigned csLen) {
8493   bool keepGoing = true;
8494   if (argIndex < NumDataArgs) {
8495     // Consider the argument coverered, even though the specifier doesn't
8496     // make sense.
8497     CoveredArgs.set(argIndex);
8498   }
8499   else {
8500     // If argIndex exceeds the number of data arguments we
8501     // don't issue a warning because that is just a cascade of warnings (and
8502     // they may have intended '%%' anyway). We don't want to continue processing
8503     // the format string after this point, however, as we will like just get
8504     // gibberish when trying to match arguments.
8505     keepGoing = false;
8506   }
8507 
8508   StringRef Specifier(csStart, csLen);
8509 
8510   // If the specifier in non-printable, it could be the first byte of a UTF-8
8511   // sequence. In that case, print the UTF-8 code point. If not, print the byte
8512   // hex value.
8513   std::string CodePointStr;
8514   if (!llvm::sys::locale::isPrint(*csStart)) {
8515     llvm::UTF32 CodePoint;
8516     const llvm::UTF8 **B = reinterpret_cast<const llvm::UTF8 **>(&csStart);
8517     const llvm::UTF8 *E =
8518         reinterpret_cast<const llvm::UTF8 *>(csStart + csLen);
8519     llvm::ConversionResult Result =
8520         llvm::convertUTF8Sequence(B, E, &CodePoint, llvm::strictConversion);
8521 
8522     if (Result != llvm::conversionOK) {
8523       unsigned char FirstChar = *csStart;
8524       CodePoint = (llvm::UTF32)FirstChar;
8525     }
8526 
8527     llvm::raw_string_ostream OS(CodePointStr);
8528     if (CodePoint < 256)
8529       OS << "\\x" << llvm::format("%02x", CodePoint);
8530     else if (CodePoint <= 0xFFFF)
8531       OS << "\\u" << llvm::format("%04x", CodePoint);
8532     else
8533       OS << "\\U" << llvm::format("%08x", CodePoint);
8534     OS.flush();
8535     Specifier = CodePointStr;
8536   }
8537 
8538   EmitFormatDiagnostic(
8539       S.PDiag(diag::warn_format_invalid_conversion) << Specifier, Loc,
8540       /*IsStringLocation*/ true, getSpecifierRange(startSpec, specifierLen));
8541 
8542   return keepGoing;
8543 }
8544 
8545 void
8546 CheckFormatHandler::HandlePositionalNonpositionalArgs(SourceLocation Loc,
8547                                                       const char *startSpec,
8548                                                       unsigned specifierLen) {
8549   EmitFormatDiagnostic(
8550     S.PDiag(diag::warn_format_mix_positional_nonpositional_args),
8551     Loc, /*isStringLoc*/true, getSpecifierRange(startSpec, specifierLen));
8552 }
8553 
8554 bool
8555 CheckFormatHandler::CheckNumArgs(
8556   const analyze_format_string::FormatSpecifier &FS,
8557   const analyze_format_string::ConversionSpecifier &CS,
8558   const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
8559 
8560   if (argIndex >= NumDataArgs) {
8561     PartialDiagnostic PDiag = FS.usesPositionalArg()
8562       ? (S.PDiag(diag::warn_printf_positional_arg_exceeds_data_args)
8563            << (argIndex+1) << NumDataArgs)
8564       : S.PDiag(diag::warn_printf_insufficient_data_args);
8565     EmitFormatDiagnostic(
8566       PDiag, getLocationOfByte(CS.getStart()), /*IsStringLocation*/true,
8567       getSpecifierRange(startSpecifier, specifierLen));
8568 
8569     // Since more arguments than conversion tokens are given, by extension
8570     // all arguments are covered, so mark this as so.
8571     UncoveredArg.setAllCovered();
8572     return false;
8573   }
8574   return true;
8575 }
8576 
8577 template<typename Range>
8578 void CheckFormatHandler::EmitFormatDiagnostic(PartialDiagnostic PDiag,
8579                                               SourceLocation Loc,
8580                                               bool IsStringLocation,
8581                                               Range StringRange,
8582                                               ArrayRef<FixItHint> FixIt) {
8583   EmitFormatDiagnostic(S, inFunctionCall, Args[FormatIdx], PDiag,
8584                        Loc, IsStringLocation, StringRange, FixIt);
8585 }
8586 
8587 /// If the format string is not within the function call, emit a note
8588 /// so that the function call and string are in diagnostic messages.
8589 ///
8590 /// \param InFunctionCall if true, the format string is within the function
8591 /// call and only one diagnostic message will be produced.  Otherwise, an
8592 /// extra note will be emitted pointing to location of the format string.
8593 ///
8594 /// \param ArgumentExpr the expression that is passed as the format string
8595 /// argument in the function call.  Used for getting locations when two
8596 /// diagnostics are emitted.
8597 ///
8598 /// \param PDiag the callee should already have provided any strings for the
8599 /// diagnostic message.  This function only adds locations and fixits
8600 /// to diagnostics.
8601 ///
8602 /// \param Loc primary location for diagnostic.  If two diagnostics are
8603 /// required, one will be at Loc and a new SourceLocation will be created for
8604 /// the other one.
8605 ///
8606 /// \param IsStringLocation if true, Loc points to the format string should be
8607 /// used for the note.  Otherwise, Loc points to the argument list and will
8608 /// be used with PDiag.
8609 ///
8610 /// \param StringRange some or all of the string to highlight.  This is
8611 /// templated so it can accept either a CharSourceRange or a SourceRange.
8612 ///
8613 /// \param FixIt optional fix it hint for the format string.
8614 template <typename Range>
8615 void CheckFormatHandler::EmitFormatDiagnostic(
8616     Sema &S, bool InFunctionCall, const Expr *ArgumentExpr,
8617     const PartialDiagnostic &PDiag, SourceLocation Loc, bool IsStringLocation,
8618     Range StringRange, ArrayRef<FixItHint> FixIt) {
8619   if (InFunctionCall) {
8620     const Sema::SemaDiagnosticBuilder &D = S.Diag(Loc, PDiag);
8621     D << StringRange;
8622     D << FixIt;
8623   } else {
8624     S.Diag(IsStringLocation ? ArgumentExpr->getExprLoc() : Loc, PDiag)
8625       << ArgumentExpr->getSourceRange();
8626 
8627     const Sema::SemaDiagnosticBuilder &Note =
8628       S.Diag(IsStringLocation ? Loc : StringRange.getBegin(),
8629              diag::note_format_string_defined);
8630 
8631     Note << StringRange;
8632     Note << FixIt;
8633   }
8634 }
8635 
8636 //===--- CHECK: Printf format string checking ------------------------------===//
8637 
8638 namespace {
8639 
8640 class CheckPrintfHandler : public CheckFormatHandler {
8641 public:
8642   CheckPrintfHandler(Sema &s, const FormatStringLiteral *fexpr,
8643                      const Expr *origFormatExpr,
8644                      const Sema::FormatStringType type, unsigned firstDataArg,
8645                      unsigned numDataArgs, bool isObjC, const char *beg,
8646                      bool hasVAListArg, ArrayRef<const Expr *> Args,
8647                      unsigned formatIdx, bool inFunctionCall,
8648                      Sema::VariadicCallType CallType,
8649                      llvm::SmallBitVector &CheckedVarArgs,
8650                      UncoveredArgHandler &UncoveredArg)
8651       : CheckFormatHandler(s, fexpr, origFormatExpr, type, firstDataArg,
8652                            numDataArgs, beg, hasVAListArg, Args, formatIdx,
8653                            inFunctionCall, CallType, CheckedVarArgs,
8654                            UncoveredArg) {}
8655 
8656   bool isObjCContext() const { return FSType == Sema::FST_NSString; }
8657 
8658   /// Returns true if '%@' specifiers are allowed in the format string.
8659   bool allowsObjCArg() const {
8660     return FSType == Sema::FST_NSString || FSType == Sema::FST_OSLog ||
8661            FSType == Sema::FST_OSTrace;
8662   }
8663 
8664   bool HandleInvalidPrintfConversionSpecifier(
8665                                       const analyze_printf::PrintfSpecifier &FS,
8666                                       const char *startSpecifier,
8667                                       unsigned specifierLen) override;
8668 
8669   void handleInvalidMaskType(StringRef MaskType) override;
8670 
8671   bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
8672                              const char *startSpecifier,
8673                              unsigned specifierLen) override;
8674   bool checkFormatExpr(const analyze_printf::PrintfSpecifier &FS,
8675                        const char *StartSpecifier,
8676                        unsigned SpecifierLen,
8677                        const Expr *E);
8678 
8679   bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
8680                     const char *startSpecifier, unsigned specifierLen);
8681   void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
8682                            const analyze_printf::OptionalAmount &Amt,
8683                            unsigned type,
8684                            const char *startSpecifier, unsigned specifierLen);
8685   void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
8686                   const analyze_printf::OptionalFlag &flag,
8687                   const char *startSpecifier, unsigned specifierLen);
8688   void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
8689                          const analyze_printf::OptionalFlag &ignoredFlag,
8690                          const analyze_printf::OptionalFlag &flag,
8691                          const char *startSpecifier, unsigned specifierLen);
8692   bool checkForCStrMembers(const analyze_printf::ArgType &AT,
8693                            const Expr *E);
8694 
8695   void HandleEmptyObjCModifierFlag(const char *startFlag,
8696                                    unsigned flagLen) override;
8697 
8698   void HandleInvalidObjCModifierFlag(const char *startFlag,
8699                                             unsigned flagLen) override;
8700 
8701   void HandleObjCFlagsWithNonObjCConversion(const char *flagsStart,
8702                                            const char *flagsEnd,
8703                                            const char *conversionPosition)
8704                                              override;
8705 };
8706 
8707 } // namespace
8708 
8709 bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
8710                                       const analyze_printf::PrintfSpecifier &FS,
8711                                       const char *startSpecifier,
8712                                       unsigned specifierLen) {
8713   const analyze_printf::PrintfConversionSpecifier &CS =
8714     FS.getConversionSpecifier();
8715 
8716   return HandleInvalidConversionSpecifier(FS.getArgIndex(),
8717                                           getLocationOfByte(CS.getStart()),
8718                                           startSpecifier, specifierLen,
8719                                           CS.getStart(), CS.getLength());
8720 }
8721 
8722 void CheckPrintfHandler::handleInvalidMaskType(StringRef MaskType) {
8723   S.Diag(getLocationOfByte(MaskType.data()), diag::err_invalid_mask_type_size);
8724 }
8725 
8726 bool CheckPrintfHandler::HandleAmount(
8727                                const analyze_format_string::OptionalAmount &Amt,
8728                                unsigned k, const char *startSpecifier,
8729                                unsigned specifierLen) {
8730   if (Amt.hasDataArgument()) {
8731     if (!HasVAListArg) {
8732       unsigned argIndex = Amt.getArgIndex();
8733       if (argIndex >= NumDataArgs) {
8734         EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_missing_arg)
8735                                << k,
8736                              getLocationOfByte(Amt.getStart()),
8737                              /*IsStringLocation*/true,
8738                              getSpecifierRange(startSpecifier, specifierLen));
8739         // Don't do any more checking.  We will just emit
8740         // spurious errors.
8741         return false;
8742       }
8743 
8744       // Type check the data argument.  It should be an 'int'.
8745       // Although not in conformance with C99, we also allow the argument to be
8746       // an 'unsigned int' as that is a reasonably safe case.  GCC also
8747       // doesn't emit a warning for that case.
8748       CoveredArgs.set(argIndex);
8749       const Expr *Arg = getDataArg(argIndex);
8750       if (!Arg)
8751         return false;
8752 
8753       QualType T = Arg->getType();
8754 
8755       const analyze_printf::ArgType &AT = Amt.getArgType(S.Context);
8756       assert(AT.isValid());
8757 
8758       if (!AT.matchesType(S.Context, T)) {
8759         EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_wrong_type)
8760                                << k << AT.getRepresentativeTypeName(S.Context)
8761                                << T << Arg->getSourceRange(),
8762                              getLocationOfByte(Amt.getStart()),
8763                              /*IsStringLocation*/true,
8764                              getSpecifierRange(startSpecifier, specifierLen));
8765         // Don't do any more checking.  We will just emit
8766         // spurious errors.
8767         return false;
8768       }
8769     }
8770   }
8771   return true;
8772 }
8773 
8774 void CheckPrintfHandler::HandleInvalidAmount(
8775                                       const analyze_printf::PrintfSpecifier &FS,
8776                                       const analyze_printf::OptionalAmount &Amt,
8777                                       unsigned type,
8778                                       const char *startSpecifier,
8779                                       unsigned specifierLen) {
8780   const analyze_printf::PrintfConversionSpecifier &CS =
8781     FS.getConversionSpecifier();
8782 
8783   FixItHint fixit =
8784     Amt.getHowSpecified() == analyze_printf::OptionalAmount::Constant
8785       ? FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
8786                                  Amt.getConstantLength()))
8787       : FixItHint();
8788 
8789   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_optional_amount)
8790                          << type << CS.toString(),
8791                        getLocationOfByte(Amt.getStart()),
8792                        /*IsStringLocation*/true,
8793                        getSpecifierRange(startSpecifier, specifierLen),
8794                        fixit);
8795 }
8796 
8797 void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
8798                                     const analyze_printf::OptionalFlag &flag,
8799                                     const char *startSpecifier,
8800                                     unsigned specifierLen) {
8801   // Warn about pointless flag with a fixit removal.
8802   const analyze_printf::PrintfConversionSpecifier &CS =
8803     FS.getConversionSpecifier();
8804   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_flag)
8805                          << flag.toString() << CS.toString(),
8806                        getLocationOfByte(flag.getPosition()),
8807                        /*IsStringLocation*/true,
8808                        getSpecifierRange(startSpecifier, specifierLen),
8809                        FixItHint::CreateRemoval(
8810                          getSpecifierRange(flag.getPosition(), 1)));
8811 }
8812 
8813 void CheckPrintfHandler::HandleIgnoredFlag(
8814                                 const analyze_printf::PrintfSpecifier &FS,
8815                                 const analyze_printf::OptionalFlag &ignoredFlag,
8816                                 const analyze_printf::OptionalFlag &flag,
8817                                 const char *startSpecifier,
8818                                 unsigned specifierLen) {
8819   // Warn about ignored flag with a fixit removal.
8820   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_ignored_flag)
8821                          << ignoredFlag.toString() << flag.toString(),
8822                        getLocationOfByte(ignoredFlag.getPosition()),
8823                        /*IsStringLocation*/true,
8824                        getSpecifierRange(startSpecifier, specifierLen),
8825                        FixItHint::CreateRemoval(
8826                          getSpecifierRange(ignoredFlag.getPosition(), 1)));
8827 }
8828 
8829 void CheckPrintfHandler::HandleEmptyObjCModifierFlag(const char *startFlag,
8830                                                      unsigned flagLen) {
8831   // Warn about an empty flag.
8832   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_empty_objc_flag),
8833                        getLocationOfByte(startFlag),
8834                        /*IsStringLocation*/true,
8835                        getSpecifierRange(startFlag, flagLen));
8836 }
8837 
8838 void CheckPrintfHandler::HandleInvalidObjCModifierFlag(const char *startFlag,
8839                                                        unsigned flagLen) {
8840   // Warn about an invalid flag.
8841   auto Range = getSpecifierRange(startFlag, flagLen);
8842   StringRef flag(startFlag, flagLen);
8843   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_invalid_objc_flag) << flag,
8844                       getLocationOfByte(startFlag),
8845                       /*IsStringLocation*/true,
8846                       Range, FixItHint::CreateRemoval(Range));
8847 }
8848 
8849 void CheckPrintfHandler::HandleObjCFlagsWithNonObjCConversion(
8850     const char *flagsStart, const char *flagsEnd, const char *conversionPosition) {
8851     // Warn about using '[...]' without a '@' conversion.
8852     auto Range = getSpecifierRange(flagsStart, flagsEnd - flagsStart + 1);
8853     auto diag = diag::warn_printf_ObjCflags_without_ObjCConversion;
8854     EmitFormatDiagnostic(S.PDiag(diag) << StringRef(conversionPosition, 1),
8855                          getLocationOfByte(conversionPosition),
8856                          /*IsStringLocation*/true,
8857                          Range, FixItHint::CreateRemoval(Range));
8858 }
8859 
8860 // Determines if the specified is a C++ class or struct containing
8861 // a member with the specified name and kind (e.g. a CXXMethodDecl named
8862 // "c_str()").
8863 template<typename MemberKind>
8864 static llvm::SmallPtrSet<MemberKind*, 1>
8865 CXXRecordMembersNamed(StringRef Name, Sema &S, QualType Ty) {
8866   const RecordType *RT = Ty->getAs<RecordType>();
8867   llvm::SmallPtrSet<MemberKind*, 1> Results;
8868 
8869   if (!RT)
8870     return Results;
8871   const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
8872   if (!RD || !RD->getDefinition())
8873     return Results;
8874 
8875   LookupResult R(S, &S.Context.Idents.get(Name), SourceLocation(),
8876                  Sema::LookupMemberName);
8877   R.suppressDiagnostics();
8878 
8879   // We just need to include all members of the right kind turned up by the
8880   // filter, at this point.
8881   if (S.LookupQualifiedName(R, RT->getDecl()))
8882     for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
8883       NamedDecl *decl = (*I)->getUnderlyingDecl();
8884       if (MemberKind *FK = dyn_cast<MemberKind>(decl))
8885         Results.insert(FK);
8886     }
8887   return Results;
8888 }
8889 
8890 /// Check if we could call '.c_str()' on an object.
8891 ///
8892 /// FIXME: This returns the wrong results in some cases (if cv-qualifiers don't
8893 /// allow the call, or if it would be ambiguous).
8894 bool Sema::hasCStrMethod(const Expr *E) {
8895   using MethodSet = llvm::SmallPtrSet<CXXMethodDecl *, 1>;
8896 
8897   MethodSet Results =
8898       CXXRecordMembersNamed<CXXMethodDecl>("c_str", *this, E->getType());
8899   for (MethodSet::iterator MI = Results.begin(), ME = Results.end();
8900        MI != ME; ++MI)
8901     if ((*MI)->getMinRequiredArguments() == 0)
8902       return true;
8903   return false;
8904 }
8905 
8906 // Check if a (w)string was passed when a (w)char* was needed, and offer a
8907 // better diagnostic if so. AT is assumed to be valid.
8908 // Returns true when a c_str() conversion method is found.
8909 bool CheckPrintfHandler::checkForCStrMembers(
8910     const analyze_printf::ArgType &AT, const Expr *E) {
8911   using MethodSet = llvm::SmallPtrSet<CXXMethodDecl *, 1>;
8912 
8913   MethodSet Results =
8914       CXXRecordMembersNamed<CXXMethodDecl>("c_str", S, E->getType());
8915 
8916   for (MethodSet::iterator MI = Results.begin(), ME = Results.end();
8917        MI != ME; ++MI) {
8918     const CXXMethodDecl *Method = *MI;
8919     if (Method->getMinRequiredArguments() == 0 &&
8920         AT.matchesType(S.Context, Method->getReturnType())) {
8921       // FIXME: Suggest parens if the expression needs them.
8922       SourceLocation EndLoc = S.getLocForEndOfToken(E->getEndLoc());
8923       S.Diag(E->getBeginLoc(), diag::note_printf_c_str)
8924           << "c_str()" << FixItHint::CreateInsertion(EndLoc, ".c_str()");
8925       return true;
8926     }
8927   }
8928 
8929   return false;
8930 }
8931 
8932 bool
8933 CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
8934                                             &FS,
8935                                           const char *startSpecifier,
8936                                           unsigned specifierLen) {
8937   using namespace analyze_format_string;
8938   using namespace analyze_printf;
8939 
8940   const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
8941 
8942   if (FS.consumesDataArgument()) {
8943     if (atFirstArg) {
8944         atFirstArg = false;
8945         usesPositionalArgs = FS.usesPositionalArg();
8946     }
8947     else if (usesPositionalArgs != FS.usesPositionalArg()) {
8948       HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
8949                                         startSpecifier, specifierLen);
8950       return false;
8951     }
8952   }
8953 
8954   // First check if the field width, precision, and conversion specifier
8955   // have matching data arguments.
8956   if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
8957                     startSpecifier, specifierLen)) {
8958     return false;
8959   }
8960 
8961   if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
8962                     startSpecifier, specifierLen)) {
8963     return false;
8964   }
8965 
8966   if (!CS.consumesDataArgument()) {
8967     // FIXME: Technically specifying a precision or field width here
8968     // makes no sense.  Worth issuing a warning at some point.
8969     return true;
8970   }
8971 
8972   // Consume the argument.
8973   unsigned argIndex = FS.getArgIndex();
8974   if (argIndex < NumDataArgs) {
8975     // The check to see if the argIndex is valid will come later.
8976     // We set the bit here because we may exit early from this
8977     // function if we encounter some other error.
8978     CoveredArgs.set(argIndex);
8979   }
8980 
8981   // FreeBSD kernel extensions.
8982   if (CS.getKind() == ConversionSpecifier::FreeBSDbArg ||
8983       CS.getKind() == ConversionSpecifier::FreeBSDDArg) {
8984     // We need at least two arguments.
8985     if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex + 1))
8986       return false;
8987 
8988     // Claim the second argument.
8989     CoveredArgs.set(argIndex + 1);
8990 
8991     // Type check the first argument (int for %b, pointer for %D)
8992     const Expr *Ex = getDataArg(argIndex);
8993     const analyze_printf::ArgType &AT =
8994       (CS.getKind() == ConversionSpecifier::FreeBSDbArg) ?
8995         ArgType(S.Context.IntTy) : ArgType::CPointerTy;
8996     if (AT.isValid() && !AT.matchesType(S.Context, Ex->getType()))
8997       EmitFormatDiagnostic(
8998           S.PDiag(diag::warn_format_conversion_argument_type_mismatch)
8999               << AT.getRepresentativeTypeName(S.Context) << Ex->getType()
9000               << false << Ex->getSourceRange(),
9001           Ex->getBeginLoc(), /*IsStringLocation*/ false,
9002           getSpecifierRange(startSpecifier, specifierLen));
9003 
9004     // Type check the second argument (char * for both %b and %D)
9005     Ex = getDataArg(argIndex + 1);
9006     const analyze_printf::ArgType &AT2 = ArgType::CStrTy;
9007     if (AT2.isValid() && !AT2.matchesType(S.Context, Ex->getType()))
9008       EmitFormatDiagnostic(
9009           S.PDiag(diag::warn_format_conversion_argument_type_mismatch)
9010               << AT2.getRepresentativeTypeName(S.Context) << Ex->getType()
9011               << false << Ex->getSourceRange(),
9012           Ex->getBeginLoc(), /*IsStringLocation*/ false,
9013           getSpecifierRange(startSpecifier, specifierLen));
9014 
9015      return true;
9016   }
9017 
9018   // Check for using an Objective-C specific conversion specifier
9019   // in a non-ObjC literal.
9020   if (!allowsObjCArg() && CS.isObjCArg()) {
9021     return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
9022                                                   specifierLen);
9023   }
9024 
9025   // %P can only be used with os_log.
9026   if (FSType != Sema::FST_OSLog && CS.getKind() == ConversionSpecifier::PArg) {
9027     return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
9028                                                   specifierLen);
9029   }
9030 
9031   // %n is not allowed with os_log.
9032   if (FSType == Sema::FST_OSLog && CS.getKind() == ConversionSpecifier::nArg) {
9033     EmitFormatDiagnostic(S.PDiag(diag::warn_os_log_format_narg),
9034                          getLocationOfByte(CS.getStart()),
9035                          /*IsStringLocation*/ false,
9036                          getSpecifierRange(startSpecifier, specifierLen));
9037 
9038     return true;
9039   }
9040 
9041   // Only scalars are allowed for os_trace.
9042   if (FSType == Sema::FST_OSTrace &&
9043       (CS.getKind() == ConversionSpecifier::PArg ||
9044        CS.getKind() == ConversionSpecifier::sArg ||
9045        CS.getKind() == ConversionSpecifier::ObjCObjArg)) {
9046     return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
9047                                                   specifierLen);
9048   }
9049 
9050   // Check for use of public/private annotation outside of os_log().
9051   if (FSType != Sema::FST_OSLog) {
9052     if (FS.isPublic().isSet()) {
9053       EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_annotation)
9054                                << "public",
9055                            getLocationOfByte(FS.isPublic().getPosition()),
9056                            /*IsStringLocation*/ false,
9057                            getSpecifierRange(startSpecifier, specifierLen));
9058     }
9059     if (FS.isPrivate().isSet()) {
9060       EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_annotation)
9061                                << "private",
9062                            getLocationOfByte(FS.isPrivate().getPosition()),
9063                            /*IsStringLocation*/ false,
9064                            getSpecifierRange(startSpecifier, specifierLen));
9065     }
9066   }
9067 
9068   // Check for invalid use of field width
9069   if (!FS.hasValidFieldWidth()) {
9070     HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
9071         startSpecifier, specifierLen);
9072   }
9073 
9074   // Check for invalid use of precision
9075   if (!FS.hasValidPrecision()) {
9076     HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
9077         startSpecifier, specifierLen);
9078   }
9079 
9080   // Precision is mandatory for %P specifier.
9081   if (CS.getKind() == ConversionSpecifier::PArg &&
9082       FS.getPrecision().getHowSpecified() == OptionalAmount::NotSpecified) {
9083     EmitFormatDiagnostic(S.PDiag(diag::warn_format_P_no_precision),
9084                          getLocationOfByte(startSpecifier),
9085                          /*IsStringLocation*/ false,
9086                          getSpecifierRange(startSpecifier, specifierLen));
9087   }
9088 
9089   // Check each flag does not conflict with any other component.
9090   if (!FS.hasValidThousandsGroupingPrefix())
9091     HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen);
9092   if (!FS.hasValidLeadingZeros())
9093     HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
9094   if (!FS.hasValidPlusPrefix())
9095     HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
9096   if (!FS.hasValidSpacePrefix())
9097     HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
9098   if (!FS.hasValidAlternativeForm())
9099     HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
9100   if (!FS.hasValidLeftJustified())
9101     HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
9102 
9103   // Check that flags are not ignored by another flag
9104   if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
9105     HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
9106         startSpecifier, specifierLen);
9107   if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
9108     HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
9109             startSpecifier, specifierLen);
9110 
9111   // Check the length modifier is valid with the given conversion specifier.
9112   if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(),
9113                                  S.getLangOpts()))
9114     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
9115                                 diag::warn_format_nonsensical_length);
9116   else if (!FS.hasStandardLengthModifier())
9117     HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen);
9118   else if (!FS.hasStandardLengthConversionCombination())
9119     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
9120                                 diag::warn_format_non_standard_conversion_spec);
9121 
9122   if (!FS.hasStandardConversionSpecifier(S.getLangOpts()))
9123     HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen);
9124 
9125   // The remaining checks depend on the data arguments.
9126   if (HasVAListArg)
9127     return true;
9128 
9129   if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
9130     return false;
9131 
9132   const Expr *Arg = getDataArg(argIndex);
9133   if (!Arg)
9134     return true;
9135 
9136   return checkFormatExpr(FS, startSpecifier, specifierLen, Arg);
9137 }
9138 
9139 static bool requiresParensToAddCast(const Expr *E) {
9140   // FIXME: We should have a general way to reason about operator
9141   // precedence and whether parens are actually needed here.
9142   // Take care of a few common cases where they aren't.
9143   const Expr *Inside = E->IgnoreImpCasts();
9144   if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(Inside))
9145     Inside = POE->getSyntacticForm()->IgnoreImpCasts();
9146 
9147   switch (Inside->getStmtClass()) {
9148   case Stmt::ArraySubscriptExprClass:
9149   case Stmt::CallExprClass:
9150   case Stmt::CharacterLiteralClass:
9151   case Stmt::CXXBoolLiteralExprClass:
9152   case Stmt::DeclRefExprClass:
9153   case Stmt::FloatingLiteralClass:
9154   case Stmt::IntegerLiteralClass:
9155   case Stmt::MemberExprClass:
9156   case Stmt::ObjCArrayLiteralClass:
9157   case Stmt::ObjCBoolLiteralExprClass:
9158   case Stmt::ObjCBoxedExprClass:
9159   case Stmt::ObjCDictionaryLiteralClass:
9160   case Stmt::ObjCEncodeExprClass:
9161   case Stmt::ObjCIvarRefExprClass:
9162   case Stmt::ObjCMessageExprClass:
9163   case Stmt::ObjCPropertyRefExprClass:
9164   case Stmt::ObjCStringLiteralClass:
9165   case Stmt::ObjCSubscriptRefExprClass:
9166   case Stmt::ParenExprClass:
9167   case Stmt::StringLiteralClass:
9168   case Stmt::UnaryOperatorClass:
9169     return false;
9170   default:
9171     return true;
9172   }
9173 }
9174 
9175 static std::pair<QualType, StringRef>
9176 shouldNotPrintDirectly(const ASTContext &Context,
9177                        QualType IntendedTy,
9178                        const Expr *E) {
9179   // Use a 'while' to peel off layers of typedefs.
9180   QualType TyTy = IntendedTy;
9181   while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) {
9182     StringRef Name = UserTy->getDecl()->getName();
9183     QualType CastTy = llvm::StringSwitch<QualType>(Name)
9184       .Case("CFIndex", Context.getNSIntegerType())
9185       .Case("NSInteger", Context.getNSIntegerType())
9186       .Case("NSUInteger", Context.getNSUIntegerType())
9187       .Case("SInt32", Context.IntTy)
9188       .Case("UInt32", Context.UnsignedIntTy)
9189       .Default(QualType());
9190 
9191     if (!CastTy.isNull())
9192       return std::make_pair(CastTy, Name);
9193 
9194     TyTy = UserTy->desugar();
9195   }
9196 
9197   // Strip parens if necessary.
9198   if (const ParenExpr *PE = dyn_cast<ParenExpr>(E))
9199     return shouldNotPrintDirectly(Context,
9200                                   PE->getSubExpr()->getType(),
9201                                   PE->getSubExpr());
9202 
9203   // If this is a conditional expression, then its result type is constructed
9204   // via usual arithmetic conversions and thus there might be no necessary
9205   // typedef sugar there.  Recurse to operands to check for NSInteger &
9206   // Co. usage condition.
9207   if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
9208     QualType TrueTy, FalseTy;
9209     StringRef TrueName, FalseName;
9210 
9211     std::tie(TrueTy, TrueName) =
9212       shouldNotPrintDirectly(Context,
9213                              CO->getTrueExpr()->getType(),
9214                              CO->getTrueExpr());
9215     std::tie(FalseTy, FalseName) =
9216       shouldNotPrintDirectly(Context,
9217                              CO->getFalseExpr()->getType(),
9218                              CO->getFalseExpr());
9219 
9220     if (TrueTy == FalseTy)
9221       return std::make_pair(TrueTy, TrueName);
9222     else if (TrueTy.isNull())
9223       return std::make_pair(FalseTy, FalseName);
9224     else if (FalseTy.isNull())
9225       return std::make_pair(TrueTy, TrueName);
9226   }
9227 
9228   return std::make_pair(QualType(), StringRef());
9229 }
9230 
9231 /// Return true if \p ICE is an implicit argument promotion of an arithmetic
9232 /// type. Bit-field 'promotions' from a higher ranked type to a lower ranked
9233 /// type do not count.
9234 static bool
9235 isArithmeticArgumentPromotion(Sema &S, const ImplicitCastExpr *ICE) {
9236   QualType From = ICE->getSubExpr()->getType();
9237   QualType To = ICE->getType();
9238   // It's an integer promotion if the destination type is the promoted
9239   // source type.
9240   if (ICE->getCastKind() == CK_IntegralCast &&
9241       From->isPromotableIntegerType() &&
9242       S.Context.getPromotedIntegerType(From) == To)
9243     return true;
9244   // Look through vector types, since we do default argument promotion for
9245   // those in OpenCL.
9246   if (const auto *VecTy = From->getAs<ExtVectorType>())
9247     From = VecTy->getElementType();
9248   if (const auto *VecTy = To->getAs<ExtVectorType>())
9249     To = VecTy->getElementType();
9250   // It's a floating promotion if the source type is a lower rank.
9251   return ICE->getCastKind() == CK_FloatingCast &&
9252          S.Context.getFloatingTypeOrder(From, To) < 0;
9253 }
9254 
9255 bool
9256 CheckPrintfHandler::checkFormatExpr(const analyze_printf::PrintfSpecifier &FS,
9257                                     const char *StartSpecifier,
9258                                     unsigned SpecifierLen,
9259                                     const Expr *E) {
9260   using namespace analyze_format_string;
9261   using namespace analyze_printf;
9262 
9263   // Now type check the data expression that matches the
9264   // format specifier.
9265   const analyze_printf::ArgType &AT = FS.getArgType(S.Context, isObjCContext());
9266   if (!AT.isValid())
9267     return true;
9268 
9269   QualType ExprTy = E->getType();
9270   while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) {
9271     ExprTy = TET->getUnderlyingExpr()->getType();
9272   }
9273 
9274   // Diagnose attempts to print a boolean value as a character. Unlike other
9275   // -Wformat diagnostics, this is fine from a type perspective, but it still
9276   // doesn't make sense.
9277   if (FS.getConversionSpecifier().getKind() == ConversionSpecifier::cArg &&
9278       E->isKnownToHaveBooleanValue()) {
9279     const CharSourceRange &CSR =
9280         getSpecifierRange(StartSpecifier, SpecifierLen);
9281     SmallString<4> FSString;
9282     llvm::raw_svector_ostream os(FSString);
9283     FS.toString(os);
9284     EmitFormatDiagnostic(S.PDiag(diag::warn_format_bool_as_character)
9285                              << FSString,
9286                          E->getExprLoc(), false, CSR);
9287     return true;
9288   }
9289 
9290   analyze_printf::ArgType::MatchKind Match = AT.matchesType(S.Context, ExprTy);
9291   if (Match == analyze_printf::ArgType::Match)
9292     return true;
9293 
9294   // Look through argument promotions for our error message's reported type.
9295   // This includes the integral and floating promotions, but excludes array
9296   // and function pointer decay (seeing that an argument intended to be a
9297   // string has type 'char [6]' is probably more confusing than 'char *') and
9298   // certain bitfield promotions (bitfields can be 'demoted' to a lesser type).
9299   if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
9300     if (isArithmeticArgumentPromotion(S, ICE)) {
9301       E = ICE->getSubExpr();
9302       ExprTy = E->getType();
9303 
9304       // Check if we didn't match because of an implicit cast from a 'char'
9305       // or 'short' to an 'int'.  This is done because printf is a varargs
9306       // function.
9307       if (ICE->getType() == S.Context.IntTy ||
9308           ICE->getType() == S.Context.UnsignedIntTy) {
9309         // All further checking is done on the subexpression
9310         const analyze_printf::ArgType::MatchKind ImplicitMatch =
9311             AT.matchesType(S.Context, ExprTy);
9312         if (ImplicitMatch == analyze_printf::ArgType::Match)
9313           return true;
9314         if (ImplicitMatch == ArgType::NoMatchPedantic ||
9315             ImplicitMatch == ArgType::NoMatchTypeConfusion)
9316           Match = ImplicitMatch;
9317       }
9318     }
9319   } else if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E)) {
9320     // Special case for 'a', which has type 'int' in C.
9321     // Note, however, that we do /not/ want to treat multibyte constants like
9322     // 'MooV' as characters! This form is deprecated but still exists. In
9323     // addition, don't treat expressions as of type 'char' if one byte length
9324     // modifier is provided.
9325     if (ExprTy == S.Context.IntTy &&
9326         FS.getLengthModifier().getKind() != LengthModifier::AsChar)
9327       if (llvm::isUIntN(S.Context.getCharWidth(), CL->getValue()))
9328         ExprTy = S.Context.CharTy;
9329   }
9330 
9331   // Look through enums to their underlying type.
9332   bool IsEnum = false;
9333   if (auto EnumTy = ExprTy->getAs<EnumType>()) {
9334     ExprTy = EnumTy->getDecl()->getIntegerType();
9335     IsEnum = true;
9336   }
9337 
9338   // %C in an Objective-C context prints a unichar, not a wchar_t.
9339   // If the argument is an integer of some kind, believe the %C and suggest
9340   // a cast instead of changing the conversion specifier.
9341   QualType IntendedTy = ExprTy;
9342   if (isObjCContext() &&
9343       FS.getConversionSpecifier().getKind() == ConversionSpecifier::CArg) {
9344     if (ExprTy->isIntegralOrUnscopedEnumerationType() &&
9345         !ExprTy->isCharType()) {
9346       // 'unichar' is defined as a typedef of unsigned short, but we should
9347       // prefer using the typedef if it is visible.
9348       IntendedTy = S.Context.UnsignedShortTy;
9349 
9350       // While we are here, check if the value is an IntegerLiteral that happens
9351       // to be within the valid range.
9352       if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) {
9353         const llvm::APInt &V = IL->getValue();
9354         if (V.getActiveBits() <= S.Context.getTypeSize(IntendedTy))
9355           return true;
9356       }
9357 
9358       LookupResult Result(S, &S.Context.Idents.get("unichar"), E->getBeginLoc(),
9359                           Sema::LookupOrdinaryName);
9360       if (S.LookupName(Result, S.getCurScope())) {
9361         NamedDecl *ND = Result.getFoundDecl();
9362         if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(ND))
9363           if (TD->getUnderlyingType() == IntendedTy)
9364             IntendedTy = S.Context.getTypedefType(TD);
9365       }
9366     }
9367   }
9368 
9369   // Special-case some of Darwin's platform-independence types by suggesting
9370   // casts to primitive types that are known to be large enough.
9371   bool ShouldNotPrintDirectly = false; StringRef CastTyName;
9372   if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
9373     QualType CastTy;
9374     std::tie(CastTy, CastTyName) = shouldNotPrintDirectly(S.Context, IntendedTy, E);
9375     if (!CastTy.isNull()) {
9376       // %zi/%zu and %td/%tu are OK to use for NSInteger/NSUInteger of type int
9377       // (long in ASTContext). Only complain to pedants.
9378       if ((CastTyName == "NSInteger" || CastTyName == "NSUInteger") &&
9379           (AT.isSizeT() || AT.isPtrdiffT()) &&
9380           AT.matchesType(S.Context, CastTy))
9381         Match = ArgType::NoMatchPedantic;
9382       IntendedTy = CastTy;
9383       ShouldNotPrintDirectly = true;
9384     }
9385   }
9386 
9387   // We may be able to offer a FixItHint if it is a supported type.
9388   PrintfSpecifier fixedFS = FS;
9389   bool Success =
9390       fixedFS.fixType(IntendedTy, S.getLangOpts(), S.Context, isObjCContext());
9391 
9392   if (Success) {
9393     // Get the fix string from the fixed format specifier
9394     SmallString<16> buf;
9395     llvm::raw_svector_ostream os(buf);
9396     fixedFS.toString(os);
9397 
9398     CharSourceRange SpecRange = getSpecifierRange(StartSpecifier, SpecifierLen);
9399 
9400     if (IntendedTy == ExprTy && !ShouldNotPrintDirectly) {
9401       unsigned Diag;
9402       switch (Match) {
9403       case ArgType::Match: llvm_unreachable("expected non-matching");
9404       case ArgType::NoMatchPedantic:
9405         Diag = diag::warn_format_conversion_argument_type_mismatch_pedantic;
9406         break;
9407       case ArgType::NoMatchTypeConfusion:
9408         Diag = diag::warn_format_conversion_argument_type_mismatch_confusion;
9409         break;
9410       case ArgType::NoMatch:
9411         Diag = diag::warn_format_conversion_argument_type_mismatch;
9412         break;
9413       }
9414 
9415       // In this case, the specifier is wrong and should be changed to match
9416       // the argument.
9417       EmitFormatDiagnostic(S.PDiag(Diag)
9418                                << AT.getRepresentativeTypeName(S.Context)
9419                                << IntendedTy << IsEnum << E->getSourceRange(),
9420                            E->getBeginLoc(),
9421                            /*IsStringLocation*/ false, SpecRange,
9422                            FixItHint::CreateReplacement(SpecRange, os.str()));
9423     } else {
9424       // The canonical type for formatting this value is different from the
9425       // actual type of the expression. (This occurs, for example, with Darwin's
9426       // NSInteger on 32-bit platforms, where it is typedef'd as 'int', but
9427       // should be printed as 'long' for 64-bit compatibility.)
9428       // Rather than emitting a normal format/argument mismatch, we want to
9429       // add a cast to the recommended type (and correct the format string
9430       // if necessary).
9431       SmallString<16> CastBuf;
9432       llvm::raw_svector_ostream CastFix(CastBuf);
9433       CastFix << "(";
9434       IntendedTy.print(CastFix, S.Context.getPrintingPolicy());
9435       CastFix << ")";
9436 
9437       SmallVector<FixItHint,4> Hints;
9438       if (!AT.matchesType(S.Context, IntendedTy) || ShouldNotPrintDirectly)
9439         Hints.push_back(FixItHint::CreateReplacement(SpecRange, os.str()));
9440 
9441       if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) {
9442         // If there's already a cast present, just replace it.
9443         SourceRange CastRange(CCast->getLParenLoc(), CCast->getRParenLoc());
9444         Hints.push_back(FixItHint::CreateReplacement(CastRange, CastFix.str()));
9445 
9446       } else if (!requiresParensToAddCast(E)) {
9447         // If the expression has high enough precedence,
9448         // just write the C-style cast.
9449         Hints.push_back(
9450             FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str()));
9451       } else {
9452         // Otherwise, add parens around the expression as well as the cast.
9453         CastFix << "(";
9454         Hints.push_back(
9455             FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str()));
9456 
9457         SourceLocation After = S.getLocForEndOfToken(E->getEndLoc());
9458         Hints.push_back(FixItHint::CreateInsertion(After, ")"));
9459       }
9460 
9461       if (ShouldNotPrintDirectly) {
9462         // The expression has a type that should not be printed directly.
9463         // We extract the name from the typedef because we don't want to show
9464         // the underlying type in the diagnostic.
9465         StringRef Name;
9466         if (const TypedefType *TypedefTy = dyn_cast<TypedefType>(ExprTy))
9467           Name = TypedefTy->getDecl()->getName();
9468         else
9469           Name = CastTyName;
9470         unsigned Diag = Match == ArgType::NoMatchPedantic
9471                             ? diag::warn_format_argument_needs_cast_pedantic
9472                             : diag::warn_format_argument_needs_cast;
9473         EmitFormatDiagnostic(S.PDiag(Diag) << Name << IntendedTy << IsEnum
9474                                            << E->getSourceRange(),
9475                              E->getBeginLoc(), /*IsStringLocation=*/false,
9476                              SpecRange, Hints);
9477       } else {
9478         // In this case, the expression could be printed using a different
9479         // specifier, but we've decided that the specifier is probably correct
9480         // and we should cast instead. Just use the normal warning message.
9481         EmitFormatDiagnostic(
9482             S.PDiag(diag::warn_format_conversion_argument_type_mismatch)
9483                 << AT.getRepresentativeTypeName(S.Context) << ExprTy << IsEnum
9484                 << E->getSourceRange(),
9485             E->getBeginLoc(), /*IsStringLocation*/ false, SpecRange, Hints);
9486       }
9487     }
9488   } else {
9489     const CharSourceRange &CSR = getSpecifierRange(StartSpecifier,
9490                                                    SpecifierLen);
9491     // Since the warning for passing non-POD types to variadic functions
9492     // was deferred until now, we emit a warning for non-POD
9493     // arguments here.
9494     switch (S.isValidVarArgType(ExprTy)) {
9495     case Sema::VAK_Valid:
9496     case Sema::VAK_ValidInCXX11: {
9497       unsigned Diag;
9498       switch (Match) {
9499       case ArgType::Match: llvm_unreachable("expected non-matching");
9500       case ArgType::NoMatchPedantic:
9501         Diag = diag::warn_format_conversion_argument_type_mismatch_pedantic;
9502         break;
9503       case ArgType::NoMatchTypeConfusion:
9504         Diag = diag::warn_format_conversion_argument_type_mismatch_confusion;
9505         break;
9506       case ArgType::NoMatch:
9507         Diag = diag::warn_format_conversion_argument_type_mismatch;
9508         break;
9509       }
9510 
9511       EmitFormatDiagnostic(
9512           S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context) << ExprTy
9513                         << IsEnum << CSR << E->getSourceRange(),
9514           E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
9515       break;
9516     }
9517     case Sema::VAK_Undefined:
9518     case Sema::VAK_MSVCUndefined:
9519       EmitFormatDiagnostic(S.PDiag(diag::warn_non_pod_vararg_with_format_string)
9520                                << S.getLangOpts().CPlusPlus11 << ExprTy
9521                                << CallType
9522                                << AT.getRepresentativeTypeName(S.Context) << CSR
9523                                << E->getSourceRange(),
9524                            E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
9525       checkForCStrMembers(AT, E);
9526       break;
9527 
9528     case Sema::VAK_Invalid:
9529       if (ExprTy->isObjCObjectType())
9530         EmitFormatDiagnostic(
9531             S.PDiag(diag::err_cannot_pass_objc_interface_to_vararg_format)
9532                 << S.getLangOpts().CPlusPlus11 << ExprTy << CallType
9533                 << AT.getRepresentativeTypeName(S.Context) << CSR
9534                 << E->getSourceRange(),
9535             E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
9536       else
9537         // FIXME: If this is an initializer list, suggest removing the braces
9538         // or inserting a cast to the target type.
9539         S.Diag(E->getBeginLoc(), diag::err_cannot_pass_to_vararg_format)
9540             << isa<InitListExpr>(E) << ExprTy << CallType
9541             << AT.getRepresentativeTypeName(S.Context) << E->getSourceRange();
9542       break;
9543     }
9544 
9545     assert(FirstDataArg + FS.getArgIndex() < CheckedVarArgs.size() &&
9546            "format string specifier index out of range");
9547     CheckedVarArgs[FirstDataArg + FS.getArgIndex()] = true;
9548   }
9549 
9550   return true;
9551 }
9552 
9553 //===--- CHECK: Scanf format string checking ------------------------------===//
9554 
9555 namespace {
9556 
9557 class CheckScanfHandler : public CheckFormatHandler {
9558 public:
9559   CheckScanfHandler(Sema &s, const FormatStringLiteral *fexpr,
9560                     const Expr *origFormatExpr, Sema::FormatStringType type,
9561                     unsigned firstDataArg, unsigned numDataArgs,
9562                     const char *beg, bool hasVAListArg,
9563                     ArrayRef<const Expr *> Args, unsigned formatIdx,
9564                     bool inFunctionCall, Sema::VariadicCallType CallType,
9565                     llvm::SmallBitVector &CheckedVarArgs,
9566                     UncoveredArgHandler &UncoveredArg)
9567       : CheckFormatHandler(s, fexpr, origFormatExpr, type, firstDataArg,
9568                            numDataArgs, beg, hasVAListArg, Args, formatIdx,
9569                            inFunctionCall, CallType, CheckedVarArgs,
9570                            UncoveredArg) {}
9571 
9572   bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
9573                             const char *startSpecifier,
9574                             unsigned specifierLen) override;
9575 
9576   bool HandleInvalidScanfConversionSpecifier(
9577           const analyze_scanf::ScanfSpecifier &FS,
9578           const char *startSpecifier,
9579           unsigned specifierLen) override;
9580 
9581   void HandleIncompleteScanList(const char *start, const char *end) override;
9582 };
9583 
9584 } // namespace
9585 
9586 void CheckScanfHandler::HandleIncompleteScanList(const char *start,
9587                                                  const char *end) {
9588   EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete),
9589                        getLocationOfByte(end), /*IsStringLocation*/true,
9590                        getSpecifierRange(start, end - start));
9591 }
9592 
9593 bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
9594                                         const analyze_scanf::ScanfSpecifier &FS,
9595                                         const char *startSpecifier,
9596                                         unsigned specifierLen) {
9597   const analyze_scanf::ScanfConversionSpecifier &CS =
9598     FS.getConversionSpecifier();
9599 
9600   return HandleInvalidConversionSpecifier(FS.getArgIndex(),
9601                                           getLocationOfByte(CS.getStart()),
9602                                           startSpecifier, specifierLen,
9603                                           CS.getStart(), CS.getLength());
9604 }
9605 
9606 bool CheckScanfHandler::HandleScanfSpecifier(
9607                                        const analyze_scanf::ScanfSpecifier &FS,
9608                                        const char *startSpecifier,
9609                                        unsigned specifierLen) {
9610   using namespace analyze_scanf;
9611   using namespace analyze_format_string;
9612 
9613   const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
9614 
9615   // Handle case where '%' and '*' don't consume an argument.  These shouldn't
9616   // be used to decide if we are using positional arguments consistently.
9617   if (FS.consumesDataArgument()) {
9618     if (atFirstArg) {
9619       atFirstArg = false;
9620       usesPositionalArgs = FS.usesPositionalArg();
9621     }
9622     else if (usesPositionalArgs != FS.usesPositionalArg()) {
9623       HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
9624                                         startSpecifier, specifierLen);
9625       return false;
9626     }
9627   }
9628 
9629   // Check if the field with is non-zero.
9630   const OptionalAmount &Amt = FS.getFieldWidth();
9631   if (Amt.getHowSpecified() == OptionalAmount::Constant) {
9632     if (Amt.getConstantAmount() == 0) {
9633       const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
9634                                                    Amt.getConstantLength());
9635       EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width),
9636                            getLocationOfByte(Amt.getStart()),
9637                            /*IsStringLocation*/true, R,
9638                            FixItHint::CreateRemoval(R));
9639     }
9640   }
9641 
9642   if (!FS.consumesDataArgument()) {
9643     // FIXME: Technically specifying a precision or field width here
9644     // makes no sense.  Worth issuing a warning at some point.
9645     return true;
9646   }
9647 
9648   // Consume the argument.
9649   unsigned argIndex = FS.getArgIndex();
9650   if (argIndex < NumDataArgs) {
9651       // The check to see if the argIndex is valid will come later.
9652       // We set the bit here because we may exit early from this
9653       // function if we encounter some other error.
9654     CoveredArgs.set(argIndex);
9655   }
9656 
9657   // Check the length modifier is valid with the given conversion specifier.
9658   if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(),
9659                                  S.getLangOpts()))
9660     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
9661                                 diag::warn_format_nonsensical_length);
9662   else if (!FS.hasStandardLengthModifier())
9663     HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen);
9664   else if (!FS.hasStandardLengthConversionCombination())
9665     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
9666                                 diag::warn_format_non_standard_conversion_spec);
9667 
9668   if (!FS.hasStandardConversionSpecifier(S.getLangOpts()))
9669     HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen);
9670 
9671   // The remaining checks depend on the data arguments.
9672   if (HasVAListArg)
9673     return true;
9674 
9675   if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
9676     return false;
9677 
9678   // Check that the argument type matches the format specifier.
9679   const Expr *Ex = getDataArg(argIndex);
9680   if (!Ex)
9681     return true;
9682 
9683   const analyze_format_string::ArgType &AT = FS.getArgType(S.Context);
9684 
9685   if (!AT.isValid()) {
9686     return true;
9687   }
9688 
9689   analyze_format_string::ArgType::MatchKind Match =
9690       AT.matchesType(S.Context, Ex->getType());
9691   bool Pedantic = Match == analyze_format_string::ArgType::NoMatchPedantic;
9692   if (Match == analyze_format_string::ArgType::Match)
9693     return true;
9694 
9695   ScanfSpecifier fixedFS = FS;
9696   bool Success = fixedFS.fixType(Ex->getType(), Ex->IgnoreImpCasts()->getType(),
9697                                  S.getLangOpts(), S.Context);
9698 
9699   unsigned Diag =
9700       Pedantic ? diag::warn_format_conversion_argument_type_mismatch_pedantic
9701                : diag::warn_format_conversion_argument_type_mismatch;
9702 
9703   if (Success) {
9704     // Get the fix string from the fixed format specifier.
9705     SmallString<128> buf;
9706     llvm::raw_svector_ostream os(buf);
9707     fixedFS.toString(os);
9708 
9709     EmitFormatDiagnostic(
9710         S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context)
9711                       << Ex->getType() << false << Ex->getSourceRange(),
9712         Ex->getBeginLoc(),
9713         /*IsStringLocation*/ false,
9714         getSpecifierRange(startSpecifier, specifierLen),
9715         FixItHint::CreateReplacement(
9716             getSpecifierRange(startSpecifier, specifierLen), os.str()));
9717   } else {
9718     EmitFormatDiagnostic(S.PDiag(Diag)
9719                              << AT.getRepresentativeTypeName(S.Context)
9720                              << Ex->getType() << false << Ex->getSourceRange(),
9721                          Ex->getBeginLoc(),
9722                          /*IsStringLocation*/ false,
9723                          getSpecifierRange(startSpecifier, specifierLen));
9724   }
9725 
9726   return true;
9727 }
9728 
9729 static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr,
9730                               const Expr *OrigFormatExpr,
9731                               ArrayRef<const Expr *> Args,
9732                               bool HasVAListArg, unsigned format_idx,
9733                               unsigned firstDataArg,
9734                               Sema::FormatStringType Type,
9735                               bool inFunctionCall,
9736                               Sema::VariadicCallType CallType,
9737                               llvm::SmallBitVector &CheckedVarArgs,
9738                               UncoveredArgHandler &UncoveredArg,
9739                               bool IgnoreStringsWithoutSpecifiers) {
9740   // CHECK: is the format string a wide literal?
9741   if (!FExpr->isAscii() && !FExpr->isUTF8()) {
9742     CheckFormatHandler::EmitFormatDiagnostic(
9743         S, inFunctionCall, Args[format_idx],
9744         S.PDiag(diag::warn_format_string_is_wide_literal), FExpr->getBeginLoc(),
9745         /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange());
9746     return;
9747   }
9748 
9749   // Str - The format string.  NOTE: this is NOT null-terminated!
9750   StringRef StrRef = FExpr->getString();
9751   const char *Str = StrRef.data();
9752   // Account for cases where the string literal is truncated in a declaration.
9753   const ConstantArrayType *T =
9754     S.Context.getAsConstantArrayType(FExpr->getType());
9755   assert(T && "String literal not of constant array type!");
9756   size_t TypeSize = T->getSize().getZExtValue();
9757   size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
9758   const unsigned numDataArgs = Args.size() - firstDataArg;
9759 
9760   if (IgnoreStringsWithoutSpecifiers &&
9761       !analyze_format_string::parseFormatStringHasFormattingSpecifiers(
9762           Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo()))
9763     return;
9764 
9765   // Emit a warning if the string literal is truncated and does not contain an
9766   // embedded null character.
9767   if (TypeSize <= StrRef.size() &&
9768       StrRef.substr(0, TypeSize).find('\0') == StringRef::npos) {
9769     CheckFormatHandler::EmitFormatDiagnostic(
9770         S, inFunctionCall, Args[format_idx],
9771         S.PDiag(diag::warn_printf_format_string_not_null_terminated),
9772         FExpr->getBeginLoc(),
9773         /*IsStringLocation=*/true, OrigFormatExpr->getSourceRange());
9774     return;
9775   }
9776 
9777   // CHECK: empty format string?
9778   if (StrLen == 0 && numDataArgs > 0) {
9779     CheckFormatHandler::EmitFormatDiagnostic(
9780         S, inFunctionCall, Args[format_idx],
9781         S.PDiag(diag::warn_empty_format_string), FExpr->getBeginLoc(),
9782         /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange());
9783     return;
9784   }
9785 
9786   if (Type == Sema::FST_Printf || Type == Sema::FST_NSString ||
9787       Type == Sema::FST_FreeBSDKPrintf || Type == Sema::FST_OSLog ||
9788       Type == Sema::FST_OSTrace) {
9789     CheckPrintfHandler H(
9790         S, FExpr, OrigFormatExpr, Type, firstDataArg, numDataArgs,
9791         (Type == Sema::FST_NSString || Type == Sema::FST_OSTrace), Str,
9792         HasVAListArg, Args, format_idx, inFunctionCall, CallType,
9793         CheckedVarArgs, UncoveredArg);
9794 
9795     if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
9796                                                   S.getLangOpts(),
9797                                                   S.Context.getTargetInfo(),
9798                                             Type == Sema::FST_FreeBSDKPrintf))
9799       H.DoneProcessing();
9800   } else if (Type == Sema::FST_Scanf) {
9801     CheckScanfHandler H(S, FExpr, OrigFormatExpr, Type, firstDataArg,
9802                         numDataArgs, Str, HasVAListArg, Args, format_idx,
9803                         inFunctionCall, CallType, CheckedVarArgs, UncoveredArg);
9804 
9805     if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
9806                                                  S.getLangOpts(),
9807                                                  S.Context.getTargetInfo()))
9808       H.DoneProcessing();
9809   } // TODO: handle other formats
9810 }
9811 
9812 bool Sema::FormatStringHasSArg(const StringLiteral *FExpr) {
9813   // Str - The format string.  NOTE: this is NOT null-terminated!
9814   StringRef StrRef = FExpr->getString();
9815   const char *Str = StrRef.data();
9816   // Account for cases where the string literal is truncated in a declaration.
9817   const ConstantArrayType *T = Context.getAsConstantArrayType(FExpr->getType());
9818   assert(T && "String literal not of constant array type!");
9819   size_t TypeSize = T->getSize().getZExtValue();
9820   size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
9821   return analyze_format_string::ParseFormatStringHasSArg(Str, Str + StrLen,
9822                                                          getLangOpts(),
9823                                                          Context.getTargetInfo());
9824 }
9825 
9826 //===--- CHECK: Warn on use of wrong absolute value function. -------------===//
9827 
9828 // Returns the related absolute value function that is larger, of 0 if one
9829 // does not exist.
9830 static unsigned getLargerAbsoluteValueFunction(unsigned AbsFunction) {
9831   switch (AbsFunction) {
9832   default:
9833     return 0;
9834 
9835   case Builtin::BI__builtin_abs:
9836     return Builtin::BI__builtin_labs;
9837   case Builtin::BI__builtin_labs:
9838     return Builtin::BI__builtin_llabs;
9839   case Builtin::BI__builtin_llabs:
9840     return 0;
9841 
9842   case Builtin::BI__builtin_fabsf:
9843     return Builtin::BI__builtin_fabs;
9844   case Builtin::BI__builtin_fabs:
9845     return Builtin::BI__builtin_fabsl;
9846   case Builtin::BI__builtin_fabsl:
9847     return 0;
9848 
9849   case Builtin::BI__builtin_cabsf:
9850     return Builtin::BI__builtin_cabs;
9851   case Builtin::BI__builtin_cabs:
9852     return Builtin::BI__builtin_cabsl;
9853   case Builtin::BI__builtin_cabsl:
9854     return 0;
9855 
9856   case Builtin::BIabs:
9857     return Builtin::BIlabs;
9858   case Builtin::BIlabs:
9859     return Builtin::BIllabs;
9860   case Builtin::BIllabs:
9861     return 0;
9862 
9863   case Builtin::BIfabsf:
9864     return Builtin::BIfabs;
9865   case Builtin::BIfabs:
9866     return Builtin::BIfabsl;
9867   case Builtin::BIfabsl:
9868     return 0;
9869 
9870   case Builtin::BIcabsf:
9871    return Builtin::BIcabs;
9872   case Builtin::BIcabs:
9873     return Builtin::BIcabsl;
9874   case Builtin::BIcabsl:
9875     return 0;
9876   }
9877 }
9878 
9879 // Returns the argument type of the absolute value function.
9880 static QualType getAbsoluteValueArgumentType(ASTContext &Context,
9881                                              unsigned AbsType) {
9882   if (AbsType == 0)
9883     return QualType();
9884 
9885   ASTContext::GetBuiltinTypeError Error = ASTContext::GE_None;
9886   QualType BuiltinType = Context.GetBuiltinType(AbsType, Error);
9887   if (Error != ASTContext::GE_None)
9888     return QualType();
9889 
9890   const FunctionProtoType *FT = BuiltinType->getAs<FunctionProtoType>();
9891   if (!FT)
9892     return QualType();
9893 
9894   if (FT->getNumParams() != 1)
9895     return QualType();
9896 
9897   return FT->getParamType(0);
9898 }
9899 
9900 // Returns the best absolute value function, or zero, based on type and
9901 // current absolute value function.
9902 static unsigned getBestAbsFunction(ASTContext &Context, QualType ArgType,
9903                                    unsigned AbsFunctionKind) {
9904   unsigned BestKind = 0;
9905   uint64_t ArgSize = Context.getTypeSize(ArgType);
9906   for (unsigned Kind = AbsFunctionKind; Kind != 0;
9907        Kind = getLargerAbsoluteValueFunction(Kind)) {
9908     QualType ParamType = getAbsoluteValueArgumentType(Context, Kind);
9909     if (Context.getTypeSize(ParamType) >= ArgSize) {
9910       if (BestKind == 0)
9911         BestKind = Kind;
9912       else if (Context.hasSameType(ParamType, ArgType)) {
9913         BestKind = Kind;
9914         break;
9915       }
9916     }
9917   }
9918   return BestKind;
9919 }
9920 
9921 enum AbsoluteValueKind {
9922   AVK_Integer,
9923   AVK_Floating,
9924   AVK_Complex
9925 };
9926 
9927 static AbsoluteValueKind getAbsoluteValueKind(QualType T) {
9928   if (T->isIntegralOrEnumerationType())
9929     return AVK_Integer;
9930   if (T->isRealFloatingType())
9931     return AVK_Floating;
9932   if (T->isAnyComplexType())
9933     return AVK_Complex;
9934 
9935   llvm_unreachable("Type not integer, floating, or complex");
9936 }
9937 
9938 // Changes the absolute value function to a different type.  Preserves whether
9939 // the function is a builtin.
9940 static unsigned changeAbsFunction(unsigned AbsKind,
9941                                   AbsoluteValueKind ValueKind) {
9942   switch (ValueKind) {
9943   case AVK_Integer:
9944     switch (AbsKind) {
9945     default:
9946       return 0;
9947     case Builtin::BI__builtin_fabsf:
9948     case Builtin::BI__builtin_fabs:
9949     case Builtin::BI__builtin_fabsl:
9950     case Builtin::BI__builtin_cabsf:
9951     case Builtin::BI__builtin_cabs:
9952     case Builtin::BI__builtin_cabsl:
9953       return Builtin::BI__builtin_abs;
9954     case Builtin::BIfabsf:
9955     case Builtin::BIfabs:
9956     case Builtin::BIfabsl:
9957     case Builtin::BIcabsf:
9958     case Builtin::BIcabs:
9959     case Builtin::BIcabsl:
9960       return Builtin::BIabs;
9961     }
9962   case AVK_Floating:
9963     switch (AbsKind) {
9964     default:
9965       return 0;
9966     case Builtin::BI__builtin_abs:
9967     case Builtin::BI__builtin_labs:
9968     case Builtin::BI__builtin_llabs:
9969     case Builtin::BI__builtin_cabsf:
9970     case Builtin::BI__builtin_cabs:
9971     case Builtin::BI__builtin_cabsl:
9972       return Builtin::BI__builtin_fabsf;
9973     case Builtin::BIabs:
9974     case Builtin::BIlabs:
9975     case Builtin::BIllabs:
9976     case Builtin::BIcabsf:
9977     case Builtin::BIcabs:
9978     case Builtin::BIcabsl:
9979       return Builtin::BIfabsf;
9980     }
9981   case AVK_Complex:
9982     switch (AbsKind) {
9983     default:
9984       return 0;
9985     case Builtin::BI__builtin_abs:
9986     case Builtin::BI__builtin_labs:
9987     case Builtin::BI__builtin_llabs:
9988     case Builtin::BI__builtin_fabsf:
9989     case Builtin::BI__builtin_fabs:
9990     case Builtin::BI__builtin_fabsl:
9991       return Builtin::BI__builtin_cabsf;
9992     case Builtin::BIabs:
9993     case Builtin::BIlabs:
9994     case Builtin::BIllabs:
9995     case Builtin::BIfabsf:
9996     case Builtin::BIfabs:
9997     case Builtin::BIfabsl:
9998       return Builtin::BIcabsf;
9999     }
10000   }
10001   llvm_unreachable("Unable to convert function");
10002 }
10003 
10004 static unsigned getAbsoluteValueFunctionKind(const FunctionDecl *FDecl) {
10005   const IdentifierInfo *FnInfo = FDecl->getIdentifier();
10006   if (!FnInfo)
10007     return 0;
10008 
10009   switch (FDecl->getBuiltinID()) {
10010   default:
10011     return 0;
10012   case Builtin::BI__builtin_abs:
10013   case Builtin::BI__builtin_fabs:
10014   case Builtin::BI__builtin_fabsf:
10015   case Builtin::BI__builtin_fabsl:
10016   case Builtin::BI__builtin_labs:
10017   case Builtin::BI__builtin_llabs:
10018   case Builtin::BI__builtin_cabs:
10019   case Builtin::BI__builtin_cabsf:
10020   case Builtin::BI__builtin_cabsl:
10021   case Builtin::BIabs:
10022   case Builtin::BIlabs:
10023   case Builtin::BIllabs:
10024   case Builtin::BIfabs:
10025   case Builtin::BIfabsf:
10026   case Builtin::BIfabsl:
10027   case Builtin::BIcabs:
10028   case Builtin::BIcabsf:
10029   case Builtin::BIcabsl:
10030     return FDecl->getBuiltinID();
10031   }
10032   llvm_unreachable("Unknown Builtin type");
10033 }
10034 
10035 // If the replacement is valid, emit a note with replacement function.
10036 // Additionally, suggest including the proper header if not already included.
10037 static void emitReplacement(Sema &S, SourceLocation Loc, SourceRange Range,
10038                             unsigned AbsKind, QualType ArgType) {
10039   bool EmitHeaderHint = true;
10040   const char *HeaderName = nullptr;
10041   const char *FunctionName = nullptr;
10042   if (S.getLangOpts().CPlusPlus && !ArgType->isAnyComplexType()) {
10043     FunctionName = "std::abs";
10044     if (ArgType->isIntegralOrEnumerationType()) {
10045       HeaderName = "cstdlib";
10046     } else if (ArgType->isRealFloatingType()) {
10047       HeaderName = "cmath";
10048     } else {
10049       llvm_unreachable("Invalid Type");
10050     }
10051 
10052     // Lookup all std::abs
10053     if (NamespaceDecl *Std = S.getStdNamespace()) {
10054       LookupResult R(S, &S.Context.Idents.get("abs"), Loc, Sema::LookupAnyName);
10055       R.suppressDiagnostics();
10056       S.LookupQualifiedName(R, Std);
10057 
10058       for (const auto *I : R) {
10059         const FunctionDecl *FDecl = nullptr;
10060         if (const UsingShadowDecl *UsingD = dyn_cast<UsingShadowDecl>(I)) {
10061           FDecl = dyn_cast<FunctionDecl>(UsingD->getTargetDecl());
10062         } else {
10063           FDecl = dyn_cast<FunctionDecl>(I);
10064         }
10065         if (!FDecl)
10066           continue;
10067 
10068         // Found std::abs(), check that they are the right ones.
10069         if (FDecl->getNumParams() != 1)
10070           continue;
10071 
10072         // Check that the parameter type can handle the argument.
10073         QualType ParamType = FDecl->getParamDecl(0)->getType();
10074         if (getAbsoluteValueKind(ArgType) == getAbsoluteValueKind(ParamType) &&
10075             S.Context.getTypeSize(ArgType) <=
10076                 S.Context.getTypeSize(ParamType)) {
10077           // Found a function, don't need the header hint.
10078           EmitHeaderHint = false;
10079           break;
10080         }
10081       }
10082     }
10083   } else {
10084     FunctionName = S.Context.BuiltinInfo.getName(AbsKind);
10085     HeaderName = S.Context.BuiltinInfo.getHeaderName(AbsKind);
10086 
10087     if (HeaderName) {
10088       DeclarationName DN(&S.Context.Idents.get(FunctionName));
10089       LookupResult R(S, DN, Loc, Sema::LookupAnyName);
10090       R.suppressDiagnostics();
10091       S.LookupName(R, S.getCurScope());
10092 
10093       if (R.isSingleResult()) {
10094         FunctionDecl *FD = dyn_cast<FunctionDecl>(R.getFoundDecl());
10095         if (FD && FD->getBuiltinID() == AbsKind) {
10096           EmitHeaderHint = false;
10097         } else {
10098           return;
10099         }
10100       } else if (!R.empty()) {
10101         return;
10102       }
10103     }
10104   }
10105 
10106   S.Diag(Loc, diag::note_replace_abs_function)
10107       << FunctionName << FixItHint::CreateReplacement(Range, FunctionName);
10108 
10109   if (!HeaderName)
10110     return;
10111 
10112   if (!EmitHeaderHint)
10113     return;
10114 
10115   S.Diag(Loc, diag::note_include_header_or_declare) << HeaderName
10116                                                     << FunctionName;
10117 }
10118 
10119 template <std::size_t StrLen>
10120 static bool IsStdFunction(const FunctionDecl *FDecl,
10121                           const char (&Str)[StrLen]) {
10122   if (!FDecl)
10123     return false;
10124   if (!FDecl->getIdentifier() || !FDecl->getIdentifier()->isStr(Str))
10125     return false;
10126   if (!FDecl->isInStdNamespace())
10127     return false;
10128 
10129   return true;
10130 }
10131 
10132 // Warn when using the wrong abs() function.
10133 void Sema::CheckAbsoluteValueFunction(const CallExpr *Call,
10134                                       const FunctionDecl *FDecl) {
10135   if (Call->getNumArgs() != 1)
10136     return;
10137 
10138   unsigned AbsKind = getAbsoluteValueFunctionKind(FDecl);
10139   bool IsStdAbs = IsStdFunction(FDecl, "abs");
10140   if (AbsKind == 0 && !IsStdAbs)
10141     return;
10142 
10143   QualType ArgType = Call->getArg(0)->IgnoreParenImpCasts()->getType();
10144   QualType ParamType = Call->getArg(0)->getType();
10145 
10146   // Unsigned types cannot be negative.  Suggest removing the absolute value
10147   // function call.
10148   if (ArgType->isUnsignedIntegerType()) {
10149     const char *FunctionName =
10150         IsStdAbs ? "std::abs" : Context.BuiltinInfo.getName(AbsKind);
10151     Diag(Call->getExprLoc(), diag::warn_unsigned_abs) << ArgType << ParamType;
10152     Diag(Call->getExprLoc(), diag::note_remove_abs)
10153         << FunctionName
10154         << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange());
10155     return;
10156   }
10157 
10158   // Taking the absolute value of a pointer is very suspicious, they probably
10159   // wanted to index into an array, dereference a pointer, call a function, etc.
10160   if (ArgType->isPointerType() || ArgType->canDecayToPointerType()) {
10161     unsigned DiagType = 0;
10162     if (ArgType->isFunctionType())
10163       DiagType = 1;
10164     else if (ArgType->isArrayType())
10165       DiagType = 2;
10166 
10167     Diag(Call->getExprLoc(), diag::warn_pointer_abs) << DiagType << ArgType;
10168     return;
10169   }
10170 
10171   // std::abs has overloads which prevent most of the absolute value problems
10172   // from occurring.
10173   if (IsStdAbs)
10174     return;
10175 
10176   AbsoluteValueKind ArgValueKind = getAbsoluteValueKind(ArgType);
10177   AbsoluteValueKind ParamValueKind = getAbsoluteValueKind(ParamType);
10178 
10179   // The argument and parameter are the same kind.  Check if they are the right
10180   // size.
10181   if (ArgValueKind == ParamValueKind) {
10182     if (Context.getTypeSize(ArgType) <= Context.getTypeSize(ParamType))
10183       return;
10184 
10185     unsigned NewAbsKind = getBestAbsFunction(Context, ArgType, AbsKind);
10186     Diag(Call->getExprLoc(), diag::warn_abs_too_small)
10187         << FDecl << ArgType << ParamType;
10188 
10189     if (NewAbsKind == 0)
10190       return;
10191 
10192     emitReplacement(*this, Call->getExprLoc(),
10193                     Call->getCallee()->getSourceRange(), NewAbsKind, ArgType);
10194     return;
10195   }
10196 
10197   // ArgValueKind != ParamValueKind
10198   // The wrong type of absolute value function was used.  Attempt to find the
10199   // proper one.
10200   unsigned NewAbsKind = changeAbsFunction(AbsKind, ArgValueKind);
10201   NewAbsKind = getBestAbsFunction(Context, ArgType, NewAbsKind);
10202   if (NewAbsKind == 0)
10203     return;
10204 
10205   Diag(Call->getExprLoc(), diag::warn_wrong_absolute_value_type)
10206       << FDecl << ParamValueKind << ArgValueKind;
10207 
10208   emitReplacement(*this, Call->getExprLoc(),
10209                   Call->getCallee()->getSourceRange(), NewAbsKind, ArgType);
10210 }
10211 
10212 //===--- CHECK: Warn on use of std::max and unsigned zero. r---------------===//
10213 void Sema::CheckMaxUnsignedZero(const CallExpr *Call,
10214                                 const FunctionDecl *FDecl) {
10215   if (!Call || !FDecl) return;
10216 
10217   // Ignore template specializations and macros.
10218   if (inTemplateInstantiation()) return;
10219   if (Call->getExprLoc().isMacroID()) return;
10220 
10221   // Only care about the one template argument, two function parameter std::max
10222   if (Call->getNumArgs() != 2) return;
10223   if (!IsStdFunction(FDecl, "max")) return;
10224   const auto * ArgList = FDecl->getTemplateSpecializationArgs();
10225   if (!ArgList) return;
10226   if (ArgList->size() != 1) return;
10227 
10228   // Check that template type argument is unsigned integer.
10229   const auto& TA = ArgList->get(0);
10230   if (TA.getKind() != TemplateArgument::Type) return;
10231   QualType ArgType = TA.getAsType();
10232   if (!ArgType->isUnsignedIntegerType()) return;
10233 
10234   // See if either argument is a literal zero.
10235   auto IsLiteralZeroArg = [](const Expr* E) -> bool {
10236     const auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E);
10237     if (!MTE) return false;
10238     const auto *Num = dyn_cast<IntegerLiteral>(MTE->getSubExpr());
10239     if (!Num) return false;
10240     if (Num->getValue() != 0) return false;
10241     return true;
10242   };
10243 
10244   const Expr *FirstArg = Call->getArg(0);
10245   const Expr *SecondArg = Call->getArg(1);
10246   const bool IsFirstArgZero = IsLiteralZeroArg(FirstArg);
10247   const bool IsSecondArgZero = IsLiteralZeroArg(SecondArg);
10248 
10249   // Only warn when exactly one argument is zero.
10250   if (IsFirstArgZero == IsSecondArgZero) return;
10251 
10252   SourceRange FirstRange = FirstArg->getSourceRange();
10253   SourceRange SecondRange = SecondArg->getSourceRange();
10254 
10255   SourceRange ZeroRange = IsFirstArgZero ? FirstRange : SecondRange;
10256 
10257   Diag(Call->getExprLoc(), diag::warn_max_unsigned_zero)
10258       << IsFirstArgZero << Call->getCallee()->getSourceRange() << ZeroRange;
10259 
10260   // Deduce what parts to remove so that "std::max(0u, foo)" becomes "(foo)".
10261   SourceRange RemovalRange;
10262   if (IsFirstArgZero) {
10263     RemovalRange = SourceRange(FirstRange.getBegin(),
10264                                SecondRange.getBegin().getLocWithOffset(-1));
10265   } else {
10266     RemovalRange = SourceRange(getLocForEndOfToken(FirstRange.getEnd()),
10267                                SecondRange.getEnd());
10268   }
10269 
10270   Diag(Call->getExprLoc(), diag::note_remove_max_call)
10271         << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange())
10272         << FixItHint::CreateRemoval(RemovalRange);
10273 }
10274 
10275 //===--- CHECK: Standard memory functions ---------------------------------===//
10276 
10277 /// Takes the expression passed to the size_t parameter of functions
10278 /// such as memcmp, strncat, etc and warns if it's a comparison.
10279 ///
10280 /// This is to catch typos like `if (memcmp(&a, &b, sizeof(a) > 0))`.
10281 static bool CheckMemorySizeofForComparison(Sema &S, const Expr *E,
10282                                            IdentifierInfo *FnName,
10283                                            SourceLocation FnLoc,
10284                                            SourceLocation RParenLoc) {
10285   const BinaryOperator *Size = dyn_cast<BinaryOperator>(E);
10286   if (!Size)
10287     return false;
10288 
10289   // if E is binop and op is <=>, >, <, >=, <=, ==, &&, ||:
10290   if (!Size->isComparisonOp() && !Size->isLogicalOp())
10291     return false;
10292 
10293   SourceRange SizeRange = Size->getSourceRange();
10294   S.Diag(Size->getOperatorLoc(), diag::warn_memsize_comparison)
10295       << SizeRange << FnName;
10296   S.Diag(FnLoc, diag::note_memsize_comparison_paren)
10297       << FnName
10298       << FixItHint::CreateInsertion(
10299              S.getLocForEndOfToken(Size->getLHS()->getEndLoc()), ")")
10300       << FixItHint::CreateRemoval(RParenLoc);
10301   S.Diag(SizeRange.getBegin(), diag::note_memsize_comparison_cast_silence)
10302       << FixItHint::CreateInsertion(SizeRange.getBegin(), "(size_t)(")
10303       << FixItHint::CreateInsertion(S.getLocForEndOfToken(SizeRange.getEnd()),
10304                                     ")");
10305 
10306   return true;
10307 }
10308 
10309 /// Determine whether the given type is or contains a dynamic class type
10310 /// (e.g., whether it has a vtable).
10311 static const CXXRecordDecl *getContainedDynamicClass(QualType T,
10312                                                      bool &IsContained) {
10313   // Look through array types while ignoring qualifiers.
10314   const Type *Ty = T->getBaseElementTypeUnsafe();
10315   IsContained = false;
10316 
10317   const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
10318   RD = RD ? RD->getDefinition() : nullptr;
10319   if (!RD || RD->isInvalidDecl())
10320     return nullptr;
10321 
10322   if (RD->isDynamicClass())
10323     return RD;
10324 
10325   // Check all the fields.  If any bases were dynamic, the class is dynamic.
10326   // It's impossible for a class to transitively contain itself by value, so
10327   // infinite recursion is impossible.
10328   for (auto *FD : RD->fields()) {
10329     bool SubContained;
10330     if (const CXXRecordDecl *ContainedRD =
10331             getContainedDynamicClass(FD->getType(), SubContained)) {
10332       IsContained = true;
10333       return ContainedRD;
10334     }
10335   }
10336 
10337   return nullptr;
10338 }
10339 
10340 static const UnaryExprOrTypeTraitExpr *getAsSizeOfExpr(const Expr *E) {
10341   if (const auto *Unary = dyn_cast<UnaryExprOrTypeTraitExpr>(E))
10342     if (Unary->getKind() == UETT_SizeOf)
10343       return Unary;
10344   return nullptr;
10345 }
10346 
10347 /// If E is a sizeof expression, returns its argument expression,
10348 /// otherwise returns NULL.
10349 static const Expr *getSizeOfExprArg(const Expr *E) {
10350   if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E))
10351     if (!SizeOf->isArgumentType())
10352       return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
10353   return nullptr;
10354 }
10355 
10356 /// If E is a sizeof expression, returns its argument type.
10357 static QualType getSizeOfArgType(const Expr *E) {
10358   if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E))
10359     return SizeOf->getTypeOfArgument();
10360   return QualType();
10361 }
10362 
10363 namespace {
10364 
10365 struct SearchNonTrivialToInitializeField
10366     : DefaultInitializedTypeVisitor<SearchNonTrivialToInitializeField> {
10367   using Super =
10368       DefaultInitializedTypeVisitor<SearchNonTrivialToInitializeField>;
10369 
10370   SearchNonTrivialToInitializeField(const Expr *E, Sema &S) : E(E), S(S) {}
10371 
10372   void visitWithKind(QualType::PrimitiveDefaultInitializeKind PDIK, QualType FT,
10373                      SourceLocation SL) {
10374     if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
10375       asDerived().visitArray(PDIK, AT, SL);
10376       return;
10377     }
10378 
10379     Super::visitWithKind(PDIK, FT, SL);
10380   }
10381 
10382   void visitARCStrong(QualType FT, SourceLocation SL) {
10383     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 1);
10384   }
10385   void visitARCWeak(QualType FT, SourceLocation SL) {
10386     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 1);
10387   }
10388   void visitStruct(QualType FT, SourceLocation SL) {
10389     for (const FieldDecl *FD : FT->castAs<RecordType>()->getDecl()->fields())
10390       visit(FD->getType(), FD->getLocation());
10391   }
10392   void visitArray(QualType::PrimitiveDefaultInitializeKind PDIK,
10393                   const ArrayType *AT, SourceLocation SL) {
10394     visit(getContext().getBaseElementType(AT), SL);
10395   }
10396   void visitTrivial(QualType FT, SourceLocation SL) {}
10397 
10398   static void diag(QualType RT, const Expr *E, Sema &S) {
10399     SearchNonTrivialToInitializeField(E, S).visitStruct(RT, SourceLocation());
10400   }
10401 
10402   ASTContext &getContext() { return S.getASTContext(); }
10403 
10404   const Expr *E;
10405   Sema &S;
10406 };
10407 
10408 struct SearchNonTrivialToCopyField
10409     : CopiedTypeVisitor<SearchNonTrivialToCopyField, false> {
10410   using Super = CopiedTypeVisitor<SearchNonTrivialToCopyField, false>;
10411 
10412   SearchNonTrivialToCopyField(const Expr *E, Sema &S) : E(E), S(S) {}
10413 
10414   void visitWithKind(QualType::PrimitiveCopyKind PCK, QualType FT,
10415                      SourceLocation SL) {
10416     if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
10417       asDerived().visitArray(PCK, AT, SL);
10418       return;
10419     }
10420 
10421     Super::visitWithKind(PCK, FT, SL);
10422   }
10423 
10424   void visitARCStrong(QualType FT, SourceLocation SL) {
10425     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 0);
10426   }
10427   void visitARCWeak(QualType FT, SourceLocation SL) {
10428     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 0);
10429   }
10430   void visitStruct(QualType FT, SourceLocation SL) {
10431     for (const FieldDecl *FD : FT->castAs<RecordType>()->getDecl()->fields())
10432       visit(FD->getType(), FD->getLocation());
10433   }
10434   void visitArray(QualType::PrimitiveCopyKind PCK, const ArrayType *AT,
10435                   SourceLocation SL) {
10436     visit(getContext().getBaseElementType(AT), SL);
10437   }
10438   void preVisit(QualType::PrimitiveCopyKind PCK, QualType FT,
10439                 SourceLocation SL) {}
10440   void visitTrivial(QualType FT, SourceLocation SL) {}
10441   void visitVolatileTrivial(QualType FT, SourceLocation SL) {}
10442 
10443   static void diag(QualType RT, const Expr *E, Sema &S) {
10444     SearchNonTrivialToCopyField(E, S).visitStruct(RT, SourceLocation());
10445   }
10446 
10447   ASTContext &getContext() { return S.getASTContext(); }
10448 
10449   const Expr *E;
10450   Sema &S;
10451 };
10452 
10453 }
10454 
10455 /// Detect if \c SizeofExpr is likely to calculate the sizeof an object.
10456 static bool doesExprLikelyComputeSize(const Expr *SizeofExpr) {
10457   SizeofExpr = SizeofExpr->IgnoreParenImpCasts();
10458 
10459   if (const auto *BO = dyn_cast<BinaryOperator>(SizeofExpr)) {
10460     if (BO->getOpcode() != BO_Mul && BO->getOpcode() != BO_Add)
10461       return false;
10462 
10463     return doesExprLikelyComputeSize(BO->getLHS()) ||
10464            doesExprLikelyComputeSize(BO->getRHS());
10465   }
10466 
10467   return getAsSizeOfExpr(SizeofExpr) != nullptr;
10468 }
10469 
10470 /// Check if the ArgLoc originated from a macro passed to the call at CallLoc.
10471 ///
10472 /// \code
10473 ///   #define MACRO 0
10474 ///   foo(MACRO);
10475 ///   foo(0);
10476 /// \endcode
10477 ///
10478 /// This should return true for the first call to foo, but not for the second
10479 /// (regardless of whether foo is a macro or function).
10480 static bool isArgumentExpandedFromMacro(SourceManager &SM,
10481                                         SourceLocation CallLoc,
10482                                         SourceLocation ArgLoc) {
10483   if (!CallLoc.isMacroID())
10484     return SM.getFileID(CallLoc) != SM.getFileID(ArgLoc);
10485 
10486   return SM.getFileID(SM.getImmediateMacroCallerLoc(CallLoc)) !=
10487          SM.getFileID(SM.getImmediateMacroCallerLoc(ArgLoc));
10488 }
10489 
10490 /// Diagnose cases like 'memset(buf, sizeof(buf), 0)', which should have the
10491 /// last two arguments transposed.
10492 static void CheckMemaccessSize(Sema &S, unsigned BId, const CallExpr *Call) {
10493   if (BId != Builtin::BImemset && BId != Builtin::BIbzero)
10494     return;
10495 
10496   const Expr *SizeArg =
10497     Call->getArg(BId == Builtin::BImemset ? 2 : 1)->IgnoreImpCasts();
10498 
10499   auto isLiteralZero = [](const Expr *E) {
10500     return isa<IntegerLiteral>(E) && cast<IntegerLiteral>(E)->getValue() == 0;
10501   };
10502 
10503   // If we're memsetting or bzeroing 0 bytes, then this is likely an error.
10504   SourceLocation CallLoc = Call->getRParenLoc();
10505   SourceManager &SM = S.getSourceManager();
10506   if (isLiteralZero(SizeArg) &&
10507       !isArgumentExpandedFromMacro(SM, CallLoc, SizeArg->getExprLoc())) {
10508 
10509     SourceLocation DiagLoc = SizeArg->getExprLoc();
10510 
10511     // Some platforms #define bzero to __builtin_memset. See if this is the
10512     // case, and if so, emit a better diagnostic.
10513     if (BId == Builtin::BIbzero ||
10514         (CallLoc.isMacroID() && Lexer::getImmediateMacroName(
10515                                     CallLoc, SM, S.getLangOpts()) == "bzero")) {
10516       S.Diag(DiagLoc, diag::warn_suspicious_bzero_size);
10517       S.Diag(DiagLoc, diag::note_suspicious_bzero_size_silence);
10518     } else if (!isLiteralZero(Call->getArg(1)->IgnoreImpCasts())) {
10519       S.Diag(DiagLoc, diag::warn_suspicious_sizeof_memset) << 0;
10520       S.Diag(DiagLoc, diag::note_suspicious_sizeof_memset_silence) << 0;
10521     }
10522     return;
10523   }
10524 
10525   // If the second argument to a memset is a sizeof expression and the third
10526   // isn't, this is also likely an error. This should catch
10527   // 'memset(buf, sizeof(buf), 0xff)'.
10528   if (BId == Builtin::BImemset &&
10529       doesExprLikelyComputeSize(Call->getArg(1)) &&
10530       !doesExprLikelyComputeSize(Call->getArg(2))) {
10531     SourceLocation DiagLoc = Call->getArg(1)->getExprLoc();
10532     S.Diag(DiagLoc, diag::warn_suspicious_sizeof_memset) << 1;
10533     S.Diag(DiagLoc, diag::note_suspicious_sizeof_memset_silence) << 1;
10534     return;
10535   }
10536 }
10537 
10538 /// Check for dangerous or invalid arguments to memset().
10539 ///
10540 /// This issues warnings on known problematic, dangerous or unspecified
10541 /// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp'
10542 /// function calls.
10543 ///
10544 /// \param Call The call expression to diagnose.
10545 void Sema::CheckMemaccessArguments(const CallExpr *Call,
10546                                    unsigned BId,
10547                                    IdentifierInfo *FnName) {
10548   assert(BId != 0);
10549 
10550   // It is possible to have a non-standard definition of memset.  Validate
10551   // we have enough arguments, and if not, abort further checking.
10552   unsigned ExpectedNumArgs =
10553       (BId == Builtin::BIstrndup || BId == Builtin::BIbzero ? 2 : 3);
10554   if (Call->getNumArgs() < ExpectedNumArgs)
10555     return;
10556 
10557   unsigned LastArg = (BId == Builtin::BImemset || BId == Builtin::BIbzero ||
10558                       BId == Builtin::BIstrndup ? 1 : 2);
10559   unsigned LenArg =
10560       (BId == Builtin::BIbzero || BId == Builtin::BIstrndup ? 1 : 2);
10561   const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts();
10562 
10563   if (CheckMemorySizeofForComparison(*this, LenExpr, FnName,
10564                                      Call->getBeginLoc(), Call->getRParenLoc()))
10565     return;
10566 
10567   // Catch cases like 'memset(buf, sizeof(buf), 0)'.
10568   CheckMemaccessSize(*this, BId, Call);
10569 
10570   // We have special checking when the length is a sizeof expression.
10571   QualType SizeOfArgTy = getSizeOfArgType(LenExpr);
10572   const Expr *SizeOfArg = getSizeOfExprArg(LenExpr);
10573   llvm::FoldingSetNodeID SizeOfArgID;
10574 
10575   // Although widely used, 'bzero' is not a standard function. Be more strict
10576   // with the argument types before allowing diagnostics and only allow the
10577   // form bzero(ptr, sizeof(...)).
10578   QualType FirstArgTy = Call->getArg(0)->IgnoreParenImpCasts()->getType();
10579   if (BId == Builtin::BIbzero && !FirstArgTy->getAs<PointerType>())
10580     return;
10581 
10582   for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
10583     const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
10584     SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
10585 
10586     QualType DestTy = Dest->getType();
10587     QualType PointeeTy;
10588     if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
10589       PointeeTy = DestPtrTy->getPointeeType();
10590 
10591       // Never warn about void type pointers. This can be used to suppress
10592       // false positives.
10593       if (PointeeTy->isVoidType())
10594         continue;
10595 
10596       // Catch "memset(p, 0, sizeof(p))" -- needs to be sizeof(*p). Do this by
10597       // actually comparing the expressions for equality. Because computing the
10598       // expression IDs can be expensive, we only do this if the diagnostic is
10599       // enabled.
10600       if (SizeOfArg &&
10601           !Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess,
10602                            SizeOfArg->getExprLoc())) {
10603         // We only compute IDs for expressions if the warning is enabled, and
10604         // cache the sizeof arg's ID.
10605         if (SizeOfArgID == llvm::FoldingSetNodeID())
10606           SizeOfArg->Profile(SizeOfArgID, Context, true);
10607         llvm::FoldingSetNodeID DestID;
10608         Dest->Profile(DestID, Context, true);
10609         if (DestID == SizeOfArgID) {
10610           // TODO: For strncpy() and friends, this could suggest sizeof(dst)
10611           //       over sizeof(src) as well.
10612           unsigned ActionIdx = 0; // Default is to suggest dereferencing.
10613           StringRef ReadableName = FnName->getName();
10614 
10615           if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest))
10616             if (UnaryOp->getOpcode() == UO_AddrOf)
10617               ActionIdx = 1; // If its an address-of operator, just remove it.
10618           if (!PointeeTy->isIncompleteType() &&
10619               (Context.getTypeSize(PointeeTy) == Context.getCharWidth()))
10620             ActionIdx = 2; // If the pointee's size is sizeof(char),
10621                            // suggest an explicit length.
10622 
10623           // If the function is defined as a builtin macro, do not show macro
10624           // expansion.
10625           SourceLocation SL = SizeOfArg->getExprLoc();
10626           SourceRange DSR = Dest->getSourceRange();
10627           SourceRange SSR = SizeOfArg->getSourceRange();
10628           SourceManager &SM = getSourceManager();
10629 
10630           if (SM.isMacroArgExpansion(SL)) {
10631             ReadableName = Lexer::getImmediateMacroName(SL, SM, LangOpts);
10632             SL = SM.getSpellingLoc(SL);
10633             DSR = SourceRange(SM.getSpellingLoc(DSR.getBegin()),
10634                              SM.getSpellingLoc(DSR.getEnd()));
10635             SSR = SourceRange(SM.getSpellingLoc(SSR.getBegin()),
10636                              SM.getSpellingLoc(SSR.getEnd()));
10637           }
10638 
10639           DiagRuntimeBehavior(SL, SizeOfArg,
10640                               PDiag(diag::warn_sizeof_pointer_expr_memaccess)
10641                                 << ReadableName
10642                                 << PointeeTy
10643                                 << DestTy
10644                                 << DSR
10645                                 << SSR);
10646           DiagRuntimeBehavior(SL, SizeOfArg,
10647                          PDiag(diag::warn_sizeof_pointer_expr_memaccess_note)
10648                                 << ActionIdx
10649                                 << SSR);
10650 
10651           break;
10652         }
10653       }
10654 
10655       // Also check for cases where the sizeof argument is the exact same
10656       // type as the memory argument, and where it points to a user-defined
10657       // record type.
10658       if (SizeOfArgTy != QualType()) {
10659         if (PointeeTy->isRecordType() &&
10660             Context.typesAreCompatible(SizeOfArgTy, DestTy)) {
10661           DiagRuntimeBehavior(LenExpr->getExprLoc(), Dest,
10662                               PDiag(diag::warn_sizeof_pointer_type_memaccess)
10663                                 << FnName << SizeOfArgTy << ArgIdx
10664                                 << PointeeTy << Dest->getSourceRange()
10665                                 << LenExpr->getSourceRange());
10666           break;
10667         }
10668       }
10669     } else if (DestTy->isArrayType()) {
10670       PointeeTy = DestTy;
10671     }
10672 
10673     if (PointeeTy == QualType())
10674       continue;
10675 
10676     // Always complain about dynamic classes.
10677     bool IsContained;
10678     if (const CXXRecordDecl *ContainedRD =
10679             getContainedDynamicClass(PointeeTy, IsContained)) {
10680 
10681       unsigned OperationType = 0;
10682       const bool IsCmp = BId == Builtin::BImemcmp || BId == Builtin::BIbcmp;
10683       // "overwritten" if we're warning about the destination for any call
10684       // but memcmp; otherwise a verb appropriate to the call.
10685       if (ArgIdx != 0 || IsCmp) {
10686         if (BId == Builtin::BImemcpy)
10687           OperationType = 1;
10688         else if(BId == Builtin::BImemmove)
10689           OperationType = 2;
10690         else if (IsCmp)
10691           OperationType = 3;
10692       }
10693 
10694       DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
10695                           PDiag(diag::warn_dyn_class_memaccess)
10696                               << (IsCmp ? ArgIdx + 2 : ArgIdx) << FnName
10697                               << IsContained << ContainedRD << OperationType
10698                               << Call->getCallee()->getSourceRange());
10699     } else if (PointeeTy.hasNonTrivialObjCLifetime() &&
10700              BId != Builtin::BImemset)
10701       DiagRuntimeBehavior(
10702         Dest->getExprLoc(), Dest,
10703         PDiag(diag::warn_arc_object_memaccess)
10704           << ArgIdx << FnName << PointeeTy
10705           << Call->getCallee()->getSourceRange());
10706     else if (const auto *RT = PointeeTy->getAs<RecordType>()) {
10707       if ((BId == Builtin::BImemset || BId == Builtin::BIbzero) &&
10708           RT->getDecl()->isNonTrivialToPrimitiveDefaultInitialize()) {
10709         DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
10710                             PDiag(diag::warn_cstruct_memaccess)
10711                                 << ArgIdx << FnName << PointeeTy << 0);
10712         SearchNonTrivialToInitializeField::diag(PointeeTy, Dest, *this);
10713       } else if ((BId == Builtin::BImemcpy || BId == Builtin::BImemmove) &&
10714                  RT->getDecl()->isNonTrivialToPrimitiveCopy()) {
10715         DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
10716                             PDiag(diag::warn_cstruct_memaccess)
10717                                 << ArgIdx << FnName << PointeeTy << 1);
10718         SearchNonTrivialToCopyField::diag(PointeeTy, Dest, *this);
10719       } else {
10720         continue;
10721       }
10722     } else
10723       continue;
10724 
10725     DiagRuntimeBehavior(
10726       Dest->getExprLoc(), Dest,
10727       PDiag(diag::note_bad_memaccess_silence)
10728         << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
10729     break;
10730   }
10731 }
10732 
10733 // A little helper routine: ignore addition and subtraction of integer literals.
10734 // This intentionally does not ignore all integer constant expressions because
10735 // we don't want to remove sizeof().
10736 static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) {
10737   Ex = Ex->IgnoreParenCasts();
10738 
10739   while (true) {
10740     const BinaryOperator * BO = dyn_cast<BinaryOperator>(Ex);
10741     if (!BO || !BO->isAdditiveOp())
10742       break;
10743 
10744     const Expr *RHS = BO->getRHS()->IgnoreParenCasts();
10745     const Expr *LHS = BO->getLHS()->IgnoreParenCasts();
10746 
10747     if (isa<IntegerLiteral>(RHS))
10748       Ex = LHS;
10749     else if (isa<IntegerLiteral>(LHS))
10750       Ex = RHS;
10751     else
10752       break;
10753   }
10754 
10755   return Ex;
10756 }
10757 
10758 static bool isConstantSizeArrayWithMoreThanOneElement(QualType Ty,
10759                                                       ASTContext &Context) {
10760   // Only handle constant-sized or VLAs, but not flexible members.
10761   if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(Ty)) {
10762     // Only issue the FIXIT for arrays of size > 1.
10763     if (CAT->getSize().getSExtValue() <= 1)
10764       return false;
10765   } else if (!Ty->isVariableArrayType()) {
10766     return false;
10767   }
10768   return true;
10769 }
10770 
10771 // Warn if the user has made the 'size' argument to strlcpy or strlcat
10772 // be the size of the source, instead of the destination.
10773 void Sema::CheckStrlcpycatArguments(const CallExpr *Call,
10774                                     IdentifierInfo *FnName) {
10775 
10776   // Don't crash if the user has the wrong number of arguments
10777   unsigned NumArgs = Call->getNumArgs();
10778   if ((NumArgs != 3) && (NumArgs != 4))
10779     return;
10780 
10781   const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context);
10782   const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context);
10783   const Expr *CompareWithSrc = nullptr;
10784 
10785   if (CheckMemorySizeofForComparison(*this, SizeArg, FnName,
10786                                      Call->getBeginLoc(), Call->getRParenLoc()))
10787     return;
10788 
10789   // Look for 'strlcpy(dst, x, sizeof(x))'
10790   if (const Expr *Ex = getSizeOfExprArg(SizeArg))
10791     CompareWithSrc = Ex;
10792   else {
10793     // Look for 'strlcpy(dst, x, strlen(x))'
10794     if (const CallExpr *SizeCall = dyn_cast<CallExpr>(SizeArg)) {
10795       if (SizeCall->getBuiltinCallee() == Builtin::BIstrlen &&
10796           SizeCall->getNumArgs() == 1)
10797         CompareWithSrc = ignoreLiteralAdditions(SizeCall->getArg(0), Context);
10798     }
10799   }
10800 
10801   if (!CompareWithSrc)
10802     return;
10803 
10804   // Determine if the argument to sizeof/strlen is equal to the source
10805   // argument.  In principle there's all kinds of things you could do
10806   // here, for instance creating an == expression and evaluating it with
10807   // EvaluateAsBooleanCondition, but this uses a more direct technique:
10808   const DeclRefExpr *SrcArgDRE = dyn_cast<DeclRefExpr>(SrcArg);
10809   if (!SrcArgDRE)
10810     return;
10811 
10812   const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc);
10813   if (!CompareWithSrcDRE ||
10814       SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl())
10815     return;
10816 
10817   const Expr *OriginalSizeArg = Call->getArg(2);
10818   Diag(CompareWithSrcDRE->getBeginLoc(), diag::warn_strlcpycat_wrong_size)
10819       << OriginalSizeArg->getSourceRange() << FnName;
10820 
10821   // Output a FIXIT hint if the destination is an array (rather than a
10822   // pointer to an array).  This could be enhanced to handle some
10823   // pointers if we know the actual size, like if DstArg is 'array+2'
10824   // we could say 'sizeof(array)-2'.
10825   const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts();
10826   if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context))
10827     return;
10828 
10829   SmallString<128> sizeString;
10830   llvm::raw_svector_ostream OS(sizeString);
10831   OS << "sizeof(";
10832   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
10833   OS << ")";
10834 
10835   Diag(OriginalSizeArg->getBeginLoc(), diag::note_strlcpycat_wrong_size)
10836       << FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(),
10837                                       OS.str());
10838 }
10839 
10840 /// Check if two expressions refer to the same declaration.
10841 static bool referToTheSameDecl(const Expr *E1, const Expr *E2) {
10842   if (const DeclRefExpr *D1 = dyn_cast_or_null<DeclRefExpr>(E1))
10843     if (const DeclRefExpr *D2 = dyn_cast_or_null<DeclRefExpr>(E2))
10844       return D1->getDecl() == D2->getDecl();
10845   return false;
10846 }
10847 
10848 static const Expr *getStrlenExprArg(const Expr *E) {
10849   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
10850     const FunctionDecl *FD = CE->getDirectCallee();
10851     if (!FD || FD->getMemoryFunctionKind() != Builtin::BIstrlen)
10852       return nullptr;
10853     return CE->getArg(0)->IgnoreParenCasts();
10854   }
10855   return nullptr;
10856 }
10857 
10858 // Warn on anti-patterns as the 'size' argument to strncat.
10859 // The correct size argument should look like following:
10860 //   strncat(dst, src, sizeof(dst) - strlen(dest) - 1);
10861 void Sema::CheckStrncatArguments(const CallExpr *CE,
10862                                  IdentifierInfo *FnName) {
10863   // Don't crash if the user has the wrong number of arguments.
10864   if (CE->getNumArgs() < 3)
10865     return;
10866   const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts();
10867   const Expr *SrcArg = CE->getArg(1)->IgnoreParenCasts();
10868   const Expr *LenArg = CE->getArg(2)->IgnoreParenCasts();
10869 
10870   if (CheckMemorySizeofForComparison(*this, LenArg, FnName, CE->getBeginLoc(),
10871                                      CE->getRParenLoc()))
10872     return;
10873 
10874   // Identify common expressions, which are wrongly used as the size argument
10875   // to strncat and may lead to buffer overflows.
10876   unsigned PatternType = 0;
10877   if (const Expr *SizeOfArg = getSizeOfExprArg(LenArg)) {
10878     // - sizeof(dst)
10879     if (referToTheSameDecl(SizeOfArg, DstArg))
10880       PatternType = 1;
10881     // - sizeof(src)
10882     else if (referToTheSameDecl(SizeOfArg, SrcArg))
10883       PatternType = 2;
10884   } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(LenArg)) {
10885     if (BE->getOpcode() == BO_Sub) {
10886       const Expr *L = BE->getLHS()->IgnoreParenCasts();
10887       const Expr *R = BE->getRHS()->IgnoreParenCasts();
10888       // - sizeof(dst) - strlen(dst)
10889       if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) &&
10890           referToTheSameDecl(DstArg, getStrlenExprArg(R)))
10891         PatternType = 1;
10892       // - sizeof(src) - (anything)
10893       else if (referToTheSameDecl(SrcArg, getSizeOfExprArg(L)))
10894         PatternType = 2;
10895     }
10896   }
10897 
10898   if (PatternType == 0)
10899     return;
10900 
10901   // Generate the diagnostic.
10902   SourceLocation SL = LenArg->getBeginLoc();
10903   SourceRange SR = LenArg->getSourceRange();
10904   SourceManager &SM = getSourceManager();
10905 
10906   // If the function is defined as a builtin macro, do not show macro expansion.
10907   if (SM.isMacroArgExpansion(SL)) {
10908     SL = SM.getSpellingLoc(SL);
10909     SR = SourceRange(SM.getSpellingLoc(SR.getBegin()),
10910                      SM.getSpellingLoc(SR.getEnd()));
10911   }
10912 
10913   // Check if the destination is an array (rather than a pointer to an array).
10914   QualType DstTy = DstArg->getType();
10915   bool isKnownSizeArray = isConstantSizeArrayWithMoreThanOneElement(DstTy,
10916                                                                     Context);
10917   if (!isKnownSizeArray) {
10918     if (PatternType == 1)
10919       Diag(SL, diag::warn_strncat_wrong_size) << SR;
10920     else
10921       Diag(SL, diag::warn_strncat_src_size) << SR;
10922     return;
10923   }
10924 
10925   if (PatternType == 1)
10926     Diag(SL, diag::warn_strncat_large_size) << SR;
10927   else
10928     Diag(SL, diag::warn_strncat_src_size) << SR;
10929 
10930   SmallString<128> sizeString;
10931   llvm::raw_svector_ostream OS(sizeString);
10932   OS << "sizeof(";
10933   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
10934   OS << ") - ";
10935   OS << "strlen(";
10936   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
10937   OS << ") - 1";
10938 
10939   Diag(SL, diag::note_strncat_wrong_size)
10940     << FixItHint::CreateReplacement(SR, OS.str());
10941 }
10942 
10943 namespace {
10944 void CheckFreeArgumentsOnLvalue(Sema &S, const std::string &CalleeName,
10945                                 const UnaryOperator *UnaryExpr, const Decl *D) {
10946   if (isa<FieldDecl, FunctionDecl, VarDecl>(D)) {
10947     S.Diag(UnaryExpr->getBeginLoc(), diag::warn_free_nonheap_object)
10948         << CalleeName << 0 /*object: */ << cast<NamedDecl>(D);
10949     return;
10950   }
10951 }
10952 
10953 void CheckFreeArgumentsAddressof(Sema &S, const std::string &CalleeName,
10954                                  const UnaryOperator *UnaryExpr) {
10955   if (const auto *Lvalue = dyn_cast<DeclRefExpr>(UnaryExpr->getSubExpr())) {
10956     const Decl *D = Lvalue->getDecl();
10957     if (isa<DeclaratorDecl>(D))
10958       if (!dyn_cast<DeclaratorDecl>(D)->getType()->isReferenceType())
10959         return CheckFreeArgumentsOnLvalue(S, CalleeName, UnaryExpr, D);
10960   }
10961 
10962   if (const auto *Lvalue = dyn_cast<MemberExpr>(UnaryExpr->getSubExpr()))
10963     return CheckFreeArgumentsOnLvalue(S, CalleeName, UnaryExpr,
10964                                       Lvalue->getMemberDecl());
10965 }
10966 
10967 void CheckFreeArgumentsPlus(Sema &S, const std::string &CalleeName,
10968                             const UnaryOperator *UnaryExpr) {
10969   const auto *Lambda = dyn_cast<LambdaExpr>(
10970       UnaryExpr->getSubExpr()->IgnoreImplicitAsWritten()->IgnoreParens());
10971   if (!Lambda)
10972     return;
10973 
10974   S.Diag(Lambda->getBeginLoc(), diag::warn_free_nonheap_object)
10975       << CalleeName << 2 /*object: lambda expression*/;
10976 }
10977 
10978 void CheckFreeArgumentsStackArray(Sema &S, const std::string &CalleeName,
10979                                   const DeclRefExpr *Lvalue) {
10980   const auto *Var = dyn_cast<VarDecl>(Lvalue->getDecl());
10981   if (Var == nullptr)
10982     return;
10983 
10984   S.Diag(Lvalue->getBeginLoc(), diag::warn_free_nonheap_object)
10985       << CalleeName << 0 /*object: */ << Var;
10986 }
10987 
10988 void CheckFreeArgumentsCast(Sema &S, const std::string &CalleeName,
10989                             const CastExpr *Cast) {
10990   SmallString<128> SizeString;
10991   llvm::raw_svector_ostream OS(SizeString);
10992 
10993   clang::CastKind Kind = Cast->getCastKind();
10994   if (Kind == clang::CK_BitCast &&
10995       !Cast->getSubExpr()->getType()->isFunctionPointerType())
10996     return;
10997   if (Kind == clang::CK_IntegralToPointer &&
10998       !isa<IntegerLiteral>(
10999           Cast->getSubExpr()->IgnoreParenImpCasts()->IgnoreParens()))
11000     return;
11001 
11002   switch (Cast->getCastKind()) {
11003   case clang::CK_BitCast:
11004   case clang::CK_IntegralToPointer:
11005   case clang::CK_FunctionToPointerDecay:
11006     OS << '\'';
11007     Cast->printPretty(OS, nullptr, S.getPrintingPolicy());
11008     OS << '\'';
11009     break;
11010   default:
11011     return;
11012   }
11013 
11014   S.Diag(Cast->getBeginLoc(), diag::warn_free_nonheap_object)
11015       << CalleeName << 0 /*object: */ << OS.str();
11016 }
11017 } // namespace
11018 
11019 /// Alerts the user that they are attempting to free a non-malloc'd object.
11020 void Sema::CheckFreeArguments(const CallExpr *E) {
11021   const std::string CalleeName =
11022       dyn_cast<FunctionDecl>(E->getCalleeDecl())->getQualifiedNameAsString();
11023 
11024   { // Prefer something that doesn't involve a cast to make things simpler.
11025     const Expr *Arg = E->getArg(0)->IgnoreParenCasts();
11026     if (const auto *UnaryExpr = dyn_cast<UnaryOperator>(Arg))
11027       switch (UnaryExpr->getOpcode()) {
11028       case UnaryOperator::Opcode::UO_AddrOf:
11029         return CheckFreeArgumentsAddressof(*this, CalleeName, UnaryExpr);
11030       case UnaryOperator::Opcode::UO_Plus:
11031         return CheckFreeArgumentsPlus(*this, CalleeName, UnaryExpr);
11032       default:
11033         break;
11034       }
11035 
11036     if (const auto *Lvalue = dyn_cast<DeclRefExpr>(Arg))
11037       if (Lvalue->getType()->isArrayType())
11038         return CheckFreeArgumentsStackArray(*this, CalleeName, Lvalue);
11039 
11040     if (const auto *Label = dyn_cast<AddrLabelExpr>(Arg)) {
11041       Diag(Label->getBeginLoc(), diag::warn_free_nonheap_object)
11042           << CalleeName << 0 /*object: */ << Label->getLabel()->getIdentifier();
11043       return;
11044     }
11045 
11046     if (isa<BlockExpr>(Arg)) {
11047       Diag(Arg->getBeginLoc(), diag::warn_free_nonheap_object)
11048           << CalleeName << 1 /*object: block*/;
11049       return;
11050     }
11051   }
11052   // Maybe the cast was important, check after the other cases.
11053   if (const auto *Cast = dyn_cast<CastExpr>(E->getArg(0)))
11054     return CheckFreeArgumentsCast(*this, CalleeName, Cast);
11055 }
11056 
11057 void
11058 Sema::CheckReturnValExpr(Expr *RetValExp, QualType lhsType,
11059                          SourceLocation ReturnLoc,
11060                          bool isObjCMethod,
11061                          const AttrVec *Attrs,
11062                          const FunctionDecl *FD) {
11063   // Check if the return value is null but should not be.
11064   if (((Attrs && hasSpecificAttr<ReturnsNonNullAttr>(*Attrs)) ||
11065        (!isObjCMethod && isNonNullType(Context, lhsType))) &&
11066       CheckNonNullExpr(*this, RetValExp))
11067     Diag(ReturnLoc, diag::warn_null_ret)
11068       << (isObjCMethod ? 1 : 0) << RetValExp->getSourceRange();
11069 
11070   // C++11 [basic.stc.dynamic.allocation]p4:
11071   //   If an allocation function declared with a non-throwing
11072   //   exception-specification fails to allocate storage, it shall return
11073   //   a null pointer. Any other allocation function that fails to allocate
11074   //   storage shall indicate failure only by throwing an exception [...]
11075   if (FD) {
11076     OverloadedOperatorKind Op = FD->getOverloadedOperator();
11077     if (Op == OO_New || Op == OO_Array_New) {
11078       const FunctionProtoType *Proto
11079         = FD->getType()->castAs<FunctionProtoType>();
11080       if (!Proto->isNothrow(/*ResultIfDependent*/true) &&
11081           CheckNonNullExpr(*this, RetValExp))
11082         Diag(ReturnLoc, diag::warn_operator_new_returns_null)
11083           << FD << getLangOpts().CPlusPlus11;
11084     }
11085   }
11086 
11087   // PPC MMA non-pointer types are not allowed as return type. Checking the type
11088   // here prevent the user from using a PPC MMA type as trailing return type.
11089   if (Context.getTargetInfo().getTriple().isPPC64())
11090     CheckPPCMMAType(RetValExp->getType(), ReturnLoc);
11091 }
11092 
11093 //===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
11094 
11095 /// Check for comparisons of floating point operands using != and ==.
11096 /// Issue a warning if these are no self-comparisons, as they are not likely
11097 /// to do what the programmer intended.
11098 void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) {
11099   Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts();
11100   Expr* RightExprSansParen = RHS->IgnoreParenImpCasts();
11101 
11102   // Special case: check for x == x (which is OK).
11103   // Do not emit warnings for such cases.
11104   if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
11105     if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
11106       if (DRL->getDecl() == DRR->getDecl())
11107         return;
11108 
11109   // Special case: check for comparisons against literals that can be exactly
11110   //  represented by APFloat.  In such cases, do not emit a warning.  This
11111   //  is a heuristic: often comparison against such literals are used to
11112   //  detect if a value in a variable has not changed.  This clearly can
11113   //  lead to false negatives.
11114   if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
11115     if (FLL->isExact())
11116       return;
11117   } else
11118     if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen))
11119       if (FLR->isExact())
11120         return;
11121 
11122   // Check for comparisons with builtin types.
11123   if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
11124     if (CL->getBuiltinCallee())
11125       return;
11126 
11127   if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
11128     if (CR->getBuiltinCallee())
11129       return;
11130 
11131   // Emit the diagnostic.
11132   Diag(Loc, diag::warn_floatingpoint_eq)
11133     << LHS->getSourceRange() << RHS->getSourceRange();
11134 }
11135 
11136 //===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
11137 //===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
11138 
11139 namespace {
11140 
11141 /// Structure recording the 'active' range of an integer-valued
11142 /// expression.
11143 struct IntRange {
11144   /// The number of bits active in the int. Note that this includes exactly one
11145   /// sign bit if !NonNegative.
11146   unsigned Width;
11147 
11148   /// True if the int is known not to have negative values. If so, all leading
11149   /// bits before Width are known zero, otherwise they are known to be the
11150   /// same as the MSB within Width.
11151   bool NonNegative;
11152 
11153   IntRange(unsigned Width, bool NonNegative)
11154       : Width(Width), NonNegative(NonNegative) {}
11155 
11156   /// Number of bits excluding the sign bit.
11157   unsigned valueBits() const {
11158     return NonNegative ? Width : Width - 1;
11159   }
11160 
11161   /// Returns the range of the bool type.
11162   static IntRange forBoolType() {
11163     return IntRange(1, true);
11164   }
11165 
11166   /// Returns the range of an opaque value of the given integral type.
11167   static IntRange forValueOfType(ASTContext &C, QualType T) {
11168     return forValueOfCanonicalType(C,
11169                           T->getCanonicalTypeInternal().getTypePtr());
11170   }
11171 
11172   /// Returns the range of an opaque value of a canonical integral type.
11173   static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
11174     assert(T->isCanonicalUnqualified());
11175 
11176     if (const VectorType *VT = dyn_cast<VectorType>(T))
11177       T = VT->getElementType().getTypePtr();
11178     if (const ComplexType *CT = dyn_cast<ComplexType>(T))
11179       T = CT->getElementType().getTypePtr();
11180     if (const AtomicType *AT = dyn_cast<AtomicType>(T))
11181       T = AT->getValueType().getTypePtr();
11182 
11183     if (!C.getLangOpts().CPlusPlus) {
11184       // For enum types in C code, use the underlying datatype.
11185       if (const EnumType *ET = dyn_cast<EnumType>(T))
11186         T = ET->getDecl()->getIntegerType().getDesugaredType(C).getTypePtr();
11187     } else if (const EnumType *ET = dyn_cast<EnumType>(T)) {
11188       // For enum types in C++, use the known bit width of the enumerators.
11189       EnumDecl *Enum = ET->getDecl();
11190       // In C++11, enums can have a fixed underlying type. Use this type to
11191       // compute the range.
11192       if (Enum->isFixed()) {
11193         return IntRange(C.getIntWidth(QualType(T, 0)),
11194                         !ET->isSignedIntegerOrEnumerationType());
11195       }
11196 
11197       unsigned NumPositive = Enum->getNumPositiveBits();
11198       unsigned NumNegative = Enum->getNumNegativeBits();
11199 
11200       if (NumNegative == 0)
11201         return IntRange(NumPositive, true/*NonNegative*/);
11202       else
11203         return IntRange(std::max(NumPositive + 1, NumNegative),
11204                         false/*NonNegative*/);
11205     }
11206 
11207     if (const auto *EIT = dyn_cast<ExtIntType>(T))
11208       return IntRange(EIT->getNumBits(), EIT->isUnsigned());
11209 
11210     const BuiltinType *BT = cast<BuiltinType>(T);
11211     assert(BT->isInteger());
11212 
11213     return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
11214   }
11215 
11216   /// Returns the "target" range of a canonical integral type, i.e.
11217   /// the range of values expressible in the type.
11218   ///
11219   /// This matches forValueOfCanonicalType except that enums have the
11220   /// full range of their type, not the range of their enumerators.
11221   static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) {
11222     assert(T->isCanonicalUnqualified());
11223 
11224     if (const VectorType *VT = dyn_cast<VectorType>(T))
11225       T = VT->getElementType().getTypePtr();
11226     if (const ComplexType *CT = dyn_cast<ComplexType>(T))
11227       T = CT->getElementType().getTypePtr();
11228     if (const AtomicType *AT = dyn_cast<AtomicType>(T))
11229       T = AT->getValueType().getTypePtr();
11230     if (const EnumType *ET = dyn_cast<EnumType>(T))
11231       T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr();
11232 
11233     if (const auto *EIT = dyn_cast<ExtIntType>(T))
11234       return IntRange(EIT->getNumBits(), EIT->isUnsigned());
11235 
11236     const BuiltinType *BT = cast<BuiltinType>(T);
11237     assert(BT->isInteger());
11238 
11239     return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
11240   }
11241 
11242   /// Returns the supremum of two ranges: i.e. their conservative merge.
11243   static IntRange join(IntRange L, IntRange R) {
11244     bool Unsigned = L.NonNegative && R.NonNegative;
11245     return IntRange(std::max(L.valueBits(), R.valueBits()) + !Unsigned,
11246                     L.NonNegative && R.NonNegative);
11247   }
11248 
11249   /// Return the range of a bitwise-AND of the two ranges.
11250   static IntRange bit_and(IntRange L, IntRange R) {
11251     unsigned Bits = std::max(L.Width, R.Width);
11252     bool NonNegative = false;
11253     if (L.NonNegative) {
11254       Bits = std::min(Bits, L.Width);
11255       NonNegative = true;
11256     }
11257     if (R.NonNegative) {
11258       Bits = std::min(Bits, R.Width);
11259       NonNegative = true;
11260     }
11261     return IntRange(Bits, NonNegative);
11262   }
11263 
11264   /// Return the range of a sum of the two ranges.
11265   static IntRange sum(IntRange L, IntRange R) {
11266     bool Unsigned = L.NonNegative && R.NonNegative;
11267     return IntRange(std::max(L.valueBits(), R.valueBits()) + 1 + !Unsigned,
11268                     Unsigned);
11269   }
11270 
11271   /// Return the range of a difference of the two ranges.
11272   static IntRange difference(IntRange L, IntRange R) {
11273     // We need a 1-bit-wider range if:
11274     //   1) LHS can be negative: least value can be reduced.
11275     //   2) RHS can be negative: greatest value can be increased.
11276     bool CanWiden = !L.NonNegative || !R.NonNegative;
11277     bool Unsigned = L.NonNegative && R.Width == 0;
11278     return IntRange(std::max(L.valueBits(), R.valueBits()) + CanWiden +
11279                         !Unsigned,
11280                     Unsigned);
11281   }
11282 
11283   /// Return the range of a product of the two ranges.
11284   static IntRange product(IntRange L, IntRange R) {
11285     // If both LHS and RHS can be negative, we can form
11286     //   -2^L * -2^R = 2^(L + R)
11287     // which requires L + R + 1 value bits to represent.
11288     bool CanWiden = !L.NonNegative && !R.NonNegative;
11289     bool Unsigned = L.NonNegative && R.NonNegative;
11290     return IntRange(L.valueBits() + R.valueBits() + CanWiden + !Unsigned,
11291                     Unsigned);
11292   }
11293 
11294   /// Return the range of a remainder operation between the two ranges.
11295   static IntRange rem(IntRange L, IntRange R) {
11296     // The result of a remainder can't be larger than the result of
11297     // either side. The sign of the result is the sign of the LHS.
11298     bool Unsigned = L.NonNegative;
11299     return IntRange(std::min(L.valueBits(), R.valueBits()) + !Unsigned,
11300                     Unsigned);
11301   }
11302 };
11303 
11304 } // namespace
11305 
11306 static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value,
11307                               unsigned MaxWidth) {
11308   if (value.isSigned() && value.isNegative())
11309     return IntRange(value.getMinSignedBits(), false);
11310 
11311   if (value.getBitWidth() > MaxWidth)
11312     value = value.trunc(MaxWidth);
11313 
11314   // isNonNegative() just checks the sign bit without considering
11315   // signedness.
11316   return IntRange(value.getActiveBits(), true);
11317 }
11318 
11319 static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
11320                               unsigned MaxWidth) {
11321   if (result.isInt())
11322     return GetValueRange(C, result.getInt(), MaxWidth);
11323 
11324   if (result.isVector()) {
11325     IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
11326     for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
11327       IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
11328       R = IntRange::join(R, El);
11329     }
11330     return R;
11331   }
11332 
11333   if (result.isComplexInt()) {
11334     IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
11335     IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
11336     return IntRange::join(R, I);
11337   }
11338 
11339   // This can happen with lossless casts to intptr_t of "based" lvalues.
11340   // Assume it might use arbitrary bits.
11341   // FIXME: The only reason we need to pass the type in here is to get
11342   // the sign right on this one case.  It would be nice if APValue
11343   // preserved this.
11344   assert(result.isLValue() || result.isAddrLabelDiff());
11345   return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
11346 }
11347 
11348 static QualType GetExprType(const Expr *E) {
11349   QualType Ty = E->getType();
11350   if (const AtomicType *AtomicRHS = Ty->getAs<AtomicType>())
11351     Ty = AtomicRHS->getValueType();
11352   return Ty;
11353 }
11354 
11355 /// Pseudo-evaluate the given integer expression, estimating the
11356 /// range of values it might take.
11357 ///
11358 /// \param MaxWidth The width to which the value will be truncated.
11359 /// \param Approximate If \c true, return a likely range for the result: in
11360 ///        particular, assume that arithmetic on narrower types doesn't leave
11361 ///        those types. If \c false, return a range including all possible
11362 ///        result values.
11363 static IntRange GetExprRange(ASTContext &C, const Expr *E, unsigned MaxWidth,
11364                              bool InConstantContext, bool Approximate) {
11365   E = E->IgnoreParens();
11366 
11367   // Try a full evaluation first.
11368   Expr::EvalResult result;
11369   if (E->EvaluateAsRValue(result, C, InConstantContext))
11370     return GetValueRange(C, result.Val, GetExprType(E), MaxWidth);
11371 
11372   // I think we only want to look through implicit casts here; if the
11373   // user has an explicit widening cast, we should treat the value as
11374   // being of the new, wider type.
11375   if (const auto *CE = dyn_cast<ImplicitCastExpr>(E)) {
11376     if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue)
11377       return GetExprRange(C, CE->getSubExpr(), MaxWidth, InConstantContext,
11378                           Approximate);
11379 
11380     IntRange OutputTypeRange = IntRange::forValueOfType(C, GetExprType(CE));
11381 
11382     bool isIntegerCast = CE->getCastKind() == CK_IntegralCast ||
11383                          CE->getCastKind() == CK_BooleanToSignedIntegral;
11384 
11385     // Assume that non-integer casts can span the full range of the type.
11386     if (!isIntegerCast)
11387       return OutputTypeRange;
11388 
11389     IntRange SubRange = GetExprRange(C, CE->getSubExpr(),
11390                                      std::min(MaxWidth, OutputTypeRange.Width),
11391                                      InConstantContext, Approximate);
11392 
11393     // Bail out if the subexpr's range is as wide as the cast type.
11394     if (SubRange.Width >= OutputTypeRange.Width)
11395       return OutputTypeRange;
11396 
11397     // Otherwise, we take the smaller width, and we're non-negative if
11398     // either the output type or the subexpr is.
11399     return IntRange(SubRange.Width,
11400                     SubRange.NonNegative || OutputTypeRange.NonNegative);
11401   }
11402 
11403   if (const auto *CO = dyn_cast<ConditionalOperator>(E)) {
11404     // If we can fold the condition, just take that operand.
11405     bool CondResult;
11406     if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
11407       return GetExprRange(C,
11408                           CondResult ? CO->getTrueExpr() : CO->getFalseExpr(),
11409                           MaxWidth, InConstantContext, Approximate);
11410 
11411     // Otherwise, conservatively merge.
11412     // GetExprRange requires an integer expression, but a throw expression
11413     // results in a void type.
11414     Expr *E = CO->getTrueExpr();
11415     IntRange L = E->getType()->isVoidType()
11416                      ? IntRange{0, true}
11417                      : GetExprRange(C, E, MaxWidth, InConstantContext, Approximate);
11418     E = CO->getFalseExpr();
11419     IntRange R = E->getType()->isVoidType()
11420                      ? IntRange{0, true}
11421                      : GetExprRange(C, E, MaxWidth, InConstantContext, Approximate);
11422     return IntRange::join(L, R);
11423   }
11424 
11425   if (const auto *BO = dyn_cast<BinaryOperator>(E)) {
11426     IntRange (*Combine)(IntRange, IntRange) = IntRange::join;
11427 
11428     switch (BO->getOpcode()) {
11429     case BO_Cmp:
11430       llvm_unreachable("builtin <=> should have class type");
11431 
11432     // Boolean-valued operations are single-bit and positive.
11433     case BO_LAnd:
11434     case BO_LOr:
11435     case BO_LT:
11436     case BO_GT:
11437     case BO_LE:
11438     case BO_GE:
11439     case BO_EQ:
11440     case BO_NE:
11441       return IntRange::forBoolType();
11442 
11443     // The type of the assignments is the type of the LHS, so the RHS
11444     // is not necessarily the same type.
11445     case BO_MulAssign:
11446     case BO_DivAssign:
11447     case BO_RemAssign:
11448     case BO_AddAssign:
11449     case BO_SubAssign:
11450     case BO_XorAssign:
11451     case BO_OrAssign:
11452       // TODO: bitfields?
11453       return IntRange::forValueOfType(C, GetExprType(E));
11454 
11455     // Simple assignments just pass through the RHS, which will have
11456     // been coerced to the LHS type.
11457     case BO_Assign:
11458       // TODO: bitfields?
11459       return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext,
11460                           Approximate);
11461 
11462     // Operations with opaque sources are black-listed.
11463     case BO_PtrMemD:
11464     case BO_PtrMemI:
11465       return IntRange::forValueOfType(C, GetExprType(E));
11466 
11467     // Bitwise-and uses the *infinum* of the two source ranges.
11468     case BO_And:
11469     case BO_AndAssign:
11470       Combine = IntRange::bit_and;
11471       break;
11472 
11473     // Left shift gets black-listed based on a judgement call.
11474     case BO_Shl:
11475       // ...except that we want to treat '1 << (blah)' as logically
11476       // positive.  It's an important idiom.
11477       if (IntegerLiteral *I
11478             = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
11479         if (I->getValue() == 1) {
11480           IntRange R = IntRange::forValueOfType(C, GetExprType(E));
11481           return IntRange(R.Width, /*NonNegative*/ true);
11482         }
11483       }
11484       LLVM_FALLTHROUGH;
11485 
11486     case BO_ShlAssign:
11487       return IntRange::forValueOfType(C, GetExprType(E));
11488 
11489     // Right shift by a constant can narrow its left argument.
11490     case BO_Shr:
11491     case BO_ShrAssign: {
11492       IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext,
11493                                 Approximate);
11494 
11495       // If the shift amount is a positive constant, drop the width by
11496       // that much.
11497       if (Optional<llvm::APSInt> shift =
11498               BO->getRHS()->getIntegerConstantExpr(C)) {
11499         if (shift->isNonNegative()) {
11500           unsigned zext = shift->getZExtValue();
11501           if (zext >= L.Width)
11502             L.Width = (L.NonNegative ? 0 : 1);
11503           else
11504             L.Width -= zext;
11505         }
11506       }
11507 
11508       return L;
11509     }
11510 
11511     // Comma acts as its right operand.
11512     case BO_Comma:
11513       return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext,
11514                           Approximate);
11515 
11516     case BO_Add:
11517       if (!Approximate)
11518         Combine = IntRange::sum;
11519       break;
11520 
11521     case BO_Sub:
11522       if (BO->getLHS()->getType()->isPointerType())
11523         return IntRange::forValueOfType(C, GetExprType(E));
11524       if (!Approximate)
11525         Combine = IntRange::difference;
11526       break;
11527 
11528     case BO_Mul:
11529       if (!Approximate)
11530         Combine = IntRange::product;
11531       break;
11532 
11533     // The width of a division result is mostly determined by the size
11534     // of the LHS.
11535     case BO_Div: {
11536       // Don't 'pre-truncate' the operands.
11537       unsigned opWidth = C.getIntWidth(GetExprType(E));
11538       IntRange L = GetExprRange(C, BO->getLHS(), opWidth, InConstantContext,
11539                                 Approximate);
11540 
11541       // If the divisor is constant, use that.
11542       if (Optional<llvm::APSInt> divisor =
11543               BO->getRHS()->getIntegerConstantExpr(C)) {
11544         unsigned log2 = divisor->logBase2(); // floor(log_2(divisor))
11545         if (log2 >= L.Width)
11546           L.Width = (L.NonNegative ? 0 : 1);
11547         else
11548           L.Width = std::min(L.Width - log2, MaxWidth);
11549         return L;
11550       }
11551 
11552       // Otherwise, just use the LHS's width.
11553       // FIXME: This is wrong if the LHS could be its minimal value and the RHS
11554       // could be -1.
11555       IntRange R = GetExprRange(C, BO->getRHS(), opWidth, InConstantContext,
11556                                 Approximate);
11557       return IntRange(L.Width, L.NonNegative && R.NonNegative);
11558     }
11559 
11560     case BO_Rem:
11561       Combine = IntRange::rem;
11562       break;
11563 
11564     // The default behavior is okay for these.
11565     case BO_Xor:
11566     case BO_Or:
11567       break;
11568     }
11569 
11570     // Combine the two ranges, but limit the result to the type in which we
11571     // performed the computation.
11572     QualType T = GetExprType(E);
11573     unsigned opWidth = C.getIntWidth(T);
11574     IntRange L =
11575         GetExprRange(C, BO->getLHS(), opWidth, InConstantContext, Approximate);
11576     IntRange R =
11577         GetExprRange(C, BO->getRHS(), opWidth, InConstantContext, Approximate);
11578     IntRange C = Combine(L, R);
11579     C.NonNegative |= T->isUnsignedIntegerOrEnumerationType();
11580     C.Width = std::min(C.Width, MaxWidth);
11581     return C;
11582   }
11583 
11584   if (const auto *UO = dyn_cast<UnaryOperator>(E)) {
11585     switch (UO->getOpcode()) {
11586     // Boolean-valued operations are white-listed.
11587     case UO_LNot:
11588       return IntRange::forBoolType();
11589 
11590     // Operations with opaque sources are black-listed.
11591     case UO_Deref:
11592     case UO_AddrOf: // should be impossible
11593       return IntRange::forValueOfType(C, GetExprType(E));
11594 
11595     default:
11596       return GetExprRange(C, UO->getSubExpr(), MaxWidth, InConstantContext,
11597                           Approximate);
11598     }
11599   }
11600 
11601   if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
11602     return GetExprRange(C, OVE->getSourceExpr(), MaxWidth, InConstantContext,
11603                         Approximate);
11604 
11605   if (const auto *BitField = E->getSourceBitField())
11606     return IntRange(BitField->getBitWidthValue(C),
11607                     BitField->getType()->isUnsignedIntegerOrEnumerationType());
11608 
11609   return IntRange::forValueOfType(C, GetExprType(E));
11610 }
11611 
11612 static IntRange GetExprRange(ASTContext &C, const Expr *E,
11613                              bool InConstantContext, bool Approximate) {
11614   return GetExprRange(C, E, C.getIntWidth(GetExprType(E)), InConstantContext,
11615                       Approximate);
11616 }
11617 
11618 /// Checks whether the given value, which currently has the given
11619 /// source semantics, has the same value when coerced through the
11620 /// target semantics.
11621 static bool IsSameFloatAfterCast(const llvm::APFloat &value,
11622                                  const llvm::fltSemantics &Src,
11623                                  const llvm::fltSemantics &Tgt) {
11624   llvm::APFloat truncated = value;
11625 
11626   bool ignored;
11627   truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
11628   truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
11629 
11630   return truncated.bitwiseIsEqual(value);
11631 }
11632 
11633 /// Checks whether the given value, which currently has the given
11634 /// source semantics, has the same value when coerced through the
11635 /// target semantics.
11636 ///
11637 /// The value might be a vector of floats (or a complex number).
11638 static bool IsSameFloatAfterCast(const APValue &value,
11639                                  const llvm::fltSemantics &Src,
11640                                  const llvm::fltSemantics &Tgt) {
11641   if (value.isFloat())
11642     return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
11643 
11644   if (value.isVector()) {
11645     for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
11646       if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
11647         return false;
11648     return true;
11649   }
11650 
11651   assert(value.isComplexFloat());
11652   return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
11653           IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
11654 }
11655 
11656 static void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC,
11657                                        bool IsListInit = false);
11658 
11659 static bool IsEnumConstOrFromMacro(Sema &S, Expr *E) {
11660   // Suppress cases where we are comparing against an enum constant.
11661   if (const DeclRefExpr *DR =
11662       dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
11663     if (isa<EnumConstantDecl>(DR->getDecl()))
11664       return true;
11665 
11666   // Suppress cases where the value is expanded from a macro, unless that macro
11667   // is how a language represents a boolean literal. This is the case in both C
11668   // and Objective-C.
11669   SourceLocation BeginLoc = E->getBeginLoc();
11670   if (BeginLoc.isMacroID()) {
11671     StringRef MacroName = Lexer::getImmediateMacroName(
11672         BeginLoc, S.getSourceManager(), S.getLangOpts());
11673     return MacroName != "YES" && MacroName != "NO" &&
11674            MacroName != "true" && MacroName != "false";
11675   }
11676 
11677   return false;
11678 }
11679 
11680 static bool isKnownToHaveUnsignedValue(Expr *E) {
11681   return E->getType()->isIntegerType() &&
11682          (!E->getType()->isSignedIntegerType() ||
11683           !E->IgnoreParenImpCasts()->getType()->isSignedIntegerType());
11684 }
11685 
11686 namespace {
11687 /// The promoted range of values of a type. In general this has the
11688 /// following structure:
11689 ///
11690 ///     |-----------| . . . |-----------|
11691 ///     ^           ^       ^           ^
11692 ///    Min       HoleMin  HoleMax      Max
11693 ///
11694 /// ... where there is only a hole if a signed type is promoted to unsigned
11695 /// (in which case Min and Max are the smallest and largest representable
11696 /// values).
11697 struct PromotedRange {
11698   // Min, or HoleMax if there is a hole.
11699   llvm::APSInt PromotedMin;
11700   // Max, or HoleMin if there is a hole.
11701   llvm::APSInt PromotedMax;
11702 
11703   PromotedRange(IntRange R, unsigned BitWidth, bool Unsigned) {
11704     if (R.Width == 0)
11705       PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned);
11706     else if (R.Width >= BitWidth && !Unsigned) {
11707       // Promotion made the type *narrower*. This happens when promoting
11708       // a < 32-bit unsigned / <= 32-bit signed bit-field to 'signed int'.
11709       // Treat all values of 'signed int' as being in range for now.
11710       PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned);
11711       PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned);
11712     } else {
11713       PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative)
11714                         .extOrTrunc(BitWidth);
11715       PromotedMin.setIsUnsigned(Unsigned);
11716 
11717       PromotedMax = llvm::APSInt::getMaxValue(R.Width, R.NonNegative)
11718                         .extOrTrunc(BitWidth);
11719       PromotedMax.setIsUnsigned(Unsigned);
11720     }
11721   }
11722 
11723   // Determine whether this range is contiguous (has no hole).
11724   bool isContiguous() const { return PromotedMin <= PromotedMax; }
11725 
11726   // Where a constant value is within the range.
11727   enum ComparisonResult {
11728     LT = 0x1,
11729     LE = 0x2,
11730     GT = 0x4,
11731     GE = 0x8,
11732     EQ = 0x10,
11733     NE = 0x20,
11734     InRangeFlag = 0x40,
11735 
11736     Less = LE | LT | NE,
11737     Min = LE | InRangeFlag,
11738     InRange = InRangeFlag,
11739     Max = GE | InRangeFlag,
11740     Greater = GE | GT | NE,
11741 
11742     OnlyValue = LE | GE | EQ | InRangeFlag,
11743     InHole = NE
11744   };
11745 
11746   ComparisonResult compare(const llvm::APSInt &Value) const {
11747     assert(Value.getBitWidth() == PromotedMin.getBitWidth() &&
11748            Value.isUnsigned() == PromotedMin.isUnsigned());
11749     if (!isContiguous()) {
11750       assert(Value.isUnsigned() && "discontiguous range for signed compare");
11751       if (Value.isMinValue()) return Min;
11752       if (Value.isMaxValue()) return Max;
11753       if (Value >= PromotedMin) return InRange;
11754       if (Value <= PromotedMax) return InRange;
11755       return InHole;
11756     }
11757 
11758     switch (llvm::APSInt::compareValues(Value, PromotedMin)) {
11759     case -1: return Less;
11760     case 0: return PromotedMin == PromotedMax ? OnlyValue : Min;
11761     case 1:
11762       switch (llvm::APSInt::compareValues(Value, PromotedMax)) {
11763       case -1: return InRange;
11764       case 0: return Max;
11765       case 1: return Greater;
11766       }
11767     }
11768 
11769     llvm_unreachable("impossible compare result");
11770   }
11771 
11772   static llvm::Optional<StringRef>
11773   constantValue(BinaryOperatorKind Op, ComparisonResult R, bool ConstantOnRHS) {
11774     if (Op == BO_Cmp) {
11775       ComparisonResult LTFlag = LT, GTFlag = GT;
11776       if (ConstantOnRHS) std::swap(LTFlag, GTFlag);
11777 
11778       if (R & EQ) return StringRef("'std::strong_ordering::equal'");
11779       if (R & LTFlag) return StringRef("'std::strong_ordering::less'");
11780       if (R & GTFlag) return StringRef("'std::strong_ordering::greater'");
11781       return llvm::None;
11782     }
11783 
11784     ComparisonResult TrueFlag, FalseFlag;
11785     if (Op == BO_EQ) {
11786       TrueFlag = EQ;
11787       FalseFlag = NE;
11788     } else if (Op == BO_NE) {
11789       TrueFlag = NE;
11790       FalseFlag = EQ;
11791     } else {
11792       if ((Op == BO_LT || Op == BO_GE) ^ ConstantOnRHS) {
11793         TrueFlag = LT;
11794         FalseFlag = GE;
11795       } else {
11796         TrueFlag = GT;
11797         FalseFlag = LE;
11798       }
11799       if (Op == BO_GE || Op == BO_LE)
11800         std::swap(TrueFlag, FalseFlag);
11801     }
11802     if (R & TrueFlag)
11803       return StringRef("true");
11804     if (R & FalseFlag)
11805       return StringRef("false");
11806     return llvm::None;
11807   }
11808 };
11809 }
11810 
11811 static bool HasEnumType(Expr *E) {
11812   // Strip off implicit integral promotions.
11813   while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
11814     if (ICE->getCastKind() != CK_IntegralCast &&
11815         ICE->getCastKind() != CK_NoOp)
11816       break;
11817     E = ICE->getSubExpr();
11818   }
11819 
11820   return E->getType()->isEnumeralType();
11821 }
11822 
11823 static int classifyConstantValue(Expr *Constant) {
11824   // The values of this enumeration are used in the diagnostics
11825   // diag::warn_out_of_range_compare and diag::warn_tautological_bool_compare.
11826   enum ConstantValueKind {
11827     Miscellaneous = 0,
11828     LiteralTrue,
11829     LiteralFalse
11830   };
11831   if (auto *BL = dyn_cast<CXXBoolLiteralExpr>(Constant))
11832     return BL->getValue() ? ConstantValueKind::LiteralTrue
11833                           : ConstantValueKind::LiteralFalse;
11834   return ConstantValueKind::Miscellaneous;
11835 }
11836 
11837 static bool CheckTautologicalComparison(Sema &S, BinaryOperator *E,
11838                                         Expr *Constant, Expr *Other,
11839                                         const llvm::APSInt &Value,
11840                                         bool RhsConstant) {
11841   if (S.inTemplateInstantiation())
11842     return false;
11843 
11844   Expr *OriginalOther = Other;
11845 
11846   Constant = Constant->IgnoreParenImpCasts();
11847   Other = Other->IgnoreParenImpCasts();
11848 
11849   // Suppress warnings on tautological comparisons between values of the same
11850   // enumeration type. There are only two ways we could warn on this:
11851   //  - If the constant is outside the range of representable values of
11852   //    the enumeration. In such a case, we should warn about the cast
11853   //    to enumeration type, not about the comparison.
11854   //  - If the constant is the maximum / minimum in-range value. For an
11855   //    enumeratin type, such comparisons can be meaningful and useful.
11856   if (Constant->getType()->isEnumeralType() &&
11857       S.Context.hasSameUnqualifiedType(Constant->getType(), Other->getType()))
11858     return false;
11859 
11860   IntRange OtherValueRange = GetExprRange(
11861       S.Context, Other, S.isConstantEvaluated(), /*Approximate*/ false);
11862 
11863   QualType OtherT = Other->getType();
11864   if (const auto *AT = OtherT->getAs<AtomicType>())
11865     OtherT = AT->getValueType();
11866   IntRange OtherTypeRange = IntRange::forValueOfType(S.Context, OtherT);
11867 
11868   // Special case for ObjC BOOL on targets where its a typedef for a signed char
11869   // (Namely, macOS). FIXME: IntRange::forValueOfType should do this.
11870   bool IsObjCSignedCharBool = S.getLangOpts().ObjC &&
11871                               S.NSAPIObj->isObjCBOOLType(OtherT) &&
11872                               OtherT->isSpecificBuiltinType(BuiltinType::SChar);
11873 
11874   // Whether we're treating Other as being a bool because of the form of
11875   // expression despite it having another type (typically 'int' in C).
11876   bool OtherIsBooleanDespiteType =
11877       !OtherT->isBooleanType() && Other->isKnownToHaveBooleanValue();
11878   if (OtherIsBooleanDespiteType || IsObjCSignedCharBool)
11879     OtherTypeRange = OtherValueRange = IntRange::forBoolType();
11880 
11881   // Check if all values in the range of possible values of this expression
11882   // lead to the same comparison outcome.
11883   PromotedRange OtherPromotedValueRange(OtherValueRange, Value.getBitWidth(),
11884                                         Value.isUnsigned());
11885   auto Cmp = OtherPromotedValueRange.compare(Value);
11886   auto Result = PromotedRange::constantValue(E->getOpcode(), Cmp, RhsConstant);
11887   if (!Result)
11888     return false;
11889 
11890   // Also consider the range determined by the type alone. This allows us to
11891   // classify the warning under the proper diagnostic group.
11892   bool TautologicalTypeCompare = false;
11893   {
11894     PromotedRange OtherPromotedTypeRange(OtherTypeRange, Value.getBitWidth(),
11895                                          Value.isUnsigned());
11896     auto TypeCmp = OtherPromotedTypeRange.compare(Value);
11897     if (auto TypeResult = PromotedRange::constantValue(E->getOpcode(), TypeCmp,
11898                                                        RhsConstant)) {
11899       TautologicalTypeCompare = true;
11900       Cmp = TypeCmp;
11901       Result = TypeResult;
11902     }
11903   }
11904 
11905   // Don't warn if the non-constant operand actually always evaluates to the
11906   // same value.
11907   if (!TautologicalTypeCompare && OtherValueRange.Width == 0)
11908     return false;
11909 
11910   // Suppress the diagnostic for an in-range comparison if the constant comes
11911   // from a macro or enumerator. We don't want to diagnose
11912   //
11913   //   some_long_value <= INT_MAX
11914   //
11915   // when sizeof(int) == sizeof(long).
11916   bool InRange = Cmp & PromotedRange::InRangeFlag;
11917   if (InRange && IsEnumConstOrFromMacro(S, Constant))
11918     return false;
11919 
11920   // A comparison of an unsigned bit-field against 0 is really a type problem,
11921   // even though at the type level the bit-field might promote to 'signed int'.
11922   if (Other->refersToBitField() && InRange && Value == 0 &&
11923       Other->getType()->isUnsignedIntegerOrEnumerationType())
11924     TautologicalTypeCompare = true;
11925 
11926   // If this is a comparison to an enum constant, include that
11927   // constant in the diagnostic.
11928   const EnumConstantDecl *ED = nullptr;
11929   if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Constant))
11930     ED = dyn_cast<EnumConstantDecl>(DR->getDecl());
11931 
11932   // Should be enough for uint128 (39 decimal digits)
11933   SmallString<64> PrettySourceValue;
11934   llvm::raw_svector_ostream OS(PrettySourceValue);
11935   if (ED) {
11936     OS << '\'' << *ED << "' (" << Value << ")";
11937   } else if (auto *BL = dyn_cast<ObjCBoolLiteralExpr>(
11938                Constant->IgnoreParenImpCasts())) {
11939     OS << (BL->getValue() ? "YES" : "NO");
11940   } else {
11941     OS << Value;
11942   }
11943 
11944   if (!TautologicalTypeCompare) {
11945     S.Diag(E->getOperatorLoc(), diag::warn_tautological_compare_value_range)
11946         << RhsConstant << OtherValueRange.Width << OtherValueRange.NonNegative
11947         << E->getOpcodeStr() << OS.str() << *Result
11948         << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
11949     return true;
11950   }
11951 
11952   if (IsObjCSignedCharBool) {
11953     S.DiagRuntimeBehavior(E->getOperatorLoc(), E,
11954                           S.PDiag(diag::warn_tautological_compare_objc_bool)
11955                               << OS.str() << *Result);
11956     return true;
11957   }
11958 
11959   // FIXME: We use a somewhat different formatting for the in-range cases and
11960   // cases involving boolean values for historical reasons. We should pick a
11961   // consistent way of presenting these diagnostics.
11962   if (!InRange || Other->isKnownToHaveBooleanValue()) {
11963 
11964     S.DiagRuntimeBehavior(
11965         E->getOperatorLoc(), E,
11966         S.PDiag(!InRange ? diag::warn_out_of_range_compare
11967                          : diag::warn_tautological_bool_compare)
11968             << OS.str() << classifyConstantValue(Constant) << OtherT
11969             << OtherIsBooleanDespiteType << *Result
11970             << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange());
11971   } else {
11972     bool IsCharTy = OtherT.withoutLocalFastQualifiers() == S.Context.CharTy;
11973     unsigned Diag =
11974         (isKnownToHaveUnsignedValue(OriginalOther) && Value == 0)
11975             ? (HasEnumType(OriginalOther)
11976                    ? diag::warn_unsigned_enum_always_true_comparison
11977                    : IsCharTy ? diag::warn_unsigned_char_always_true_comparison
11978                               : diag::warn_unsigned_always_true_comparison)
11979             : diag::warn_tautological_constant_compare;
11980 
11981     S.Diag(E->getOperatorLoc(), Diag)
11982         << RhsConstant << OtherT << E->getOpcodeStr() << OS.str() << *Result
11983         << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
11984   }
11985 
11986   return true;
11987 }
11988 
11989 /// Analyze the operands of the given comparison.  Implements the
11990 /// fallback case from AnalyzeComparison.
11991 static void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
11992   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
11993   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
11994 }
11995 
11996 /// Implements -Wsign-compare.
11997 ///
11998 /// \param E the binary operator to check for warnings
11999 static void AnalyzeComparison(Sema &S, BinaryOperator *E) {
12000   // The type the comparison is being performed in.
12001   QualType T = E->getLHS()->getType();
12002 
12003   // Only analyze comparison operators where both sides have been converted to
12004   // the same type.
12005   if (!S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType()))
12006     return AnalyzeImpConvsInComparison(S, E);
12007 
12008   // Don't analyze value-dependent comparisons directly.
12009   if (E->isValueDependent())
12010     return AnalyzeImpConvsInComparison(S, E);
12011 
12012   Expr *LHS = E->getLHS();
12013   Expr *RHS = E->getRHS();
12014 
12015   if (T->isIntegralType(S.Context)) {
12016     Optional<llvm::APSInt> RHSValue = RHS->getIntegerConstantExpr(S.Context);
12017     Optional<llvm::APSInt> LHSValue = LHS->getIntegerConstantExpr(S.Context);
12018 
12019     // We don't care about expressions whose result is a constant.
12020     if (RHSValue && LHSValue)
12021       return AnalyzeImpConvsInComparison(S, E);
12022 
12023     // We only care about expressions where just one side is literal
12024     if ((bool)RHSValue ^ (bool)LHSValue) {
12025       // Is the constant on the RHS or LHS?
12026       const bool RhsConstant = (bool)RHSValue;
12027       Expr *Const = RhsConstant ? RHS : LHS;
12028       Expr *Other = RhsConstant ? LHS : RHS;
12029       const llvm::APSInt &Value = RhsConstant ? *RHSValue : *LHSValue;
12030 
12031       // Check whether an integer constant comparison results in a value
12032       // of 'true' or 'false'.
12033       if (CheckTautologicalComparison(S, E, Const, Other, Value, RhsConstant))
12034         return AnalyzeImpConvsInComparison(S, E);
12035     }
12036   }
12037 
12038   if (!T->hasUnsignedIntegerRepresentation()) {
12039     // We don't do anything special if this isn't an unsigned integral
12040     // comparison:  we're only interested in integral comparisons, and
12041     // signed comparisons only happen in cases we don't care to warn about.
12042     return AnalyzeImpConvsInComparison(S, E);
12043   }
12044 
12045   LHS = LHS->IgnoreParenImpCasts();
12046   RHS = RHS->IgnoreParenImpCasts();
12047 
12048   if (!S.getLangOpts().CPlusPlus) {
12049     // Avoid warning about comparison of integers with different signs when
12050     // RHS/LHS has a `typeof(E)` type whose sign is different from the sign of
12051     // the type of `E`.
12052     if (const auto *TET = dyn_cast<TypeOfExprType>(LHS->getType()))
12053       LHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts();
12054     if (const auto *TET = dyn_cast<TypeOfExprType>(RHS->getType()))
12055       RHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts();
12056   }
12057 
12058   // Check to see if one of the (unmodified) operands is of different
12059   // signedness.
12060   Expr *signedOperand, *unsignedOperand;
12061   if (LHS->getType()->hasSignedIntegerRepresentation()) {
12062     assert(!RHS->getType()->hasSignedIntegerRepresentation() &&
12063            "unsigned comparison between two signed integer expressions?");
12064     signedOperand = LHS;
12065     unsignedOperand = RHS;
12066   } else if (RHS->getType()->hasSignedIntegerRepresentation()) {
12067     signedOperand = RHS;
12068     unsignedOperand = LHS;
12069   } else {
12070     return AnalyzeImpConvsInComparison(S, E);
12071   }
12072 
12073   // Otherwise, calculate the effective range of the signed operand.
12074   IntRange signedRange = GetExprRange(
12075       S.Context, signedOperand, S.isConstantEvaluated(), /*Approximate*/ true);
12076 
12077   // Go ahead and analyze implicit conversions in the operands.  Note
12078   // that we skip the implicit conversions on both sides.
12079   AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc());
12080   AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc());
12081 
12082   // If the signed range is non-negative, -Wsign-compare won't fire.
12083   if (signedRange.NonNegative)
12084     return;
12085 
12086   // For (in)equality comparisons, if the unsigned operand is a
12087   // constant which cannot collide with a overflowed signed operand,
12088   // then reinterpreting the signed operand as unsigned will not
12089   // change the result of the comparison.
12090   if (E->isEqualityOp()) {
12091     unsigned comparisonWidth = S.Context.getIntWidth(T);
12092     IntRange unsignedRange =
12093         GetExprRange(S.Context, unsignedOperand, S.isConstantEvaluated(),
12094                      /*Approximate*/ true);
12095 
12096     // We should never be unable to prove that the unsigned operand is
12097     // non-negative.
12098     assert(unsignedRange.NonNegative && "unsigned range includes negative?");
12099 
12100     if (unsignedRange.Width < comparisonWidth)
12101       return;
12102   }
12103 
12104   S.DiagRuntimeBehavior(E->getOperatorLoc(), E,
12105                         S.PDiag(diag::warn_mixed_sign_comparison)
12106                             << LHS->getType() << RHS->getType()
12107                             << LHS->getSourceRange() << RHS->getSourceRange());
12108 }
12109 
12110 /// Analyzes an attempt to assign the given value to a bitfield.
12111 ///
12112 /// Returns true if there was something fishy about the attempt.
12113 static bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
12114                                       SourceLocation InitLoc) {
12115   assert(Bitfield->isBitField());
12116   if (Bitfield->isInvalidDecl())
12117     return false;
12118 
12119   // White-list bool bitfields.
12120   QualType BitfieldType = Bitfield->getType();
12121   if (BitfieldType->isBooleanType())
12122      return false;
12123 
12124   if (BitfieldType->isEnumeralType()) {
12125     EnumDecl *BitfieldEnumDecl = BitfieldType->castAs<EnumType>()->getDecl();
12126     // If the underlying enum type was not explicitly specified as an unsigned
12127     // type and the enum contain only positive values, MSVC++ will cause an
12128     // inconsistency by storing this as a signed type.
12129     if (S.getLangOpts().CPlusPlus11 &&
12130         !BitfieldEnumDecl->getIntegerTypeSourceInfo() &&
12131         BitfieldEnumDecl->getNumPositiveBits() > 0 &&
12132         BitfieldEnumDecl->getNumNegativeBits() == 0) {
12133       S.Diag(InitLoc, diag::warn_no_underlying_type_specified_for_enum_bitfield)
12134           << BitfieldEnumDecl;
12135     }
12136   }
12137 
12138   if (Bitfield->getType()->isBooleanType())
12139     return false;
12140 
12141   // Ignore value- or type-dependent expressions.
12142   if (Bitfield->getBitWidth()->isValueDependent() ||
12143       Bitfield->getBitWidth()->isTypeDependent() ||
12144       Init->isValueDependent() ||
12145       Init->isTypeDependent())
12146     return false;
12147 
12148   Expr *OriginalInit = Init->IgnoreParenImpCasts();
12149   unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
12150 
12151   Expr::EvalResult Result;
12152   if (!OriginalInit->EvaluateAsInt(Result, S.Context,
12153                                    Expr::SE_AllowSideEffects)) {
12154     // The RHS is not constant.  If the RHS has an enum type, make sure the
12155     // bitfield is wide enough to hold all the values of the enum without
12156     // truncation.
12157     if (const auto *EnumTy = OriginalInit->getType()->getAs<EnumType>()) {
12158       EnumDecl *ED = EnumTy->getDecl();
12159       bool SignedBitfield = BitfieldType->isSignedIntegerType();
12160 
12161       // Enum types are implicitly signed on Windows, so check if there are any
12162       // negative enumerators to see if the enum was intended to be signed or
12163       // not.
12164       bool SignedEnum = ED->getNumNegativeBits() > 0;
12165 
12166       // Check for surprising sign changes when assigning enum values to a
12167       // bitfield of different signedness.  If the bitfield is signed and we
12168       // have exactly the right number of bits to store this unsigned enum,
12169       // suggest changing the enum to an unsigned type. This typically happens
12170       // on Windows where unfixed enums always use an underlying type of 'int'.
12171       unsigned DiagID = 0;
12172       if (SignedEnum && !SignedBitfield) {
12173         DiagID = diag::warn_unsigned_bitfield_assigned_signed_enum;
12174       } else if (SignedBitfield && !SignedEnum &&
12175                  ED->getNumPositiveBits() == FieldWidth) {
12176         DiagID = diag::warn_signed_bitfield_enum_conversion;
12177       }
12178 
12179       if (DiagID) {
12180         S.Diag(InitLoc, DiagID) << Bitfield << ED;
12181         TypeSourceInfo *TSI = Bitfield->getTypeSourceInfo();
12182         SourceRange TypeRange =
12183             TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange();
12184         S.Diag(Bitfield->getTypeSpecStartLoc(), diag::note_change_bitfield_sign)
12185             << SignedEnum << TypeRange;
12186       }
12187 
12188       // Compute the required bitwidth. If the enum has negative values, we need
12189       // one more bit than the normal number of positive bits to represent the
12190       // sign bit.
12191       unsigned BitsNeeded = SignedEnum ? std::max(ED->getNumPositiveBits() + 1,
12192                                                   ED->getNumNegativeBits())
12193                                        : ED->getNumPositiveBits();
12194 
12195       // Check the bitwidth.
12196       if (BitsNeeded > FieldWidth) {
12197         Expr *WidthExpr = Bitfield->getBitWidth();
12198         S.Diag(InitLoc, diag::warn_bitfield_too_small_for_enum)
12199             << Bitfield << ED;
12200         S.Diag(WidthExpr->getExprLoc(), diag::note_widen_bitfield)
12201             << BitsNeeded << ED << WidthExpr->getSourceRange();
12202       }
12203     }
12204 
12205     return false;
12206   }
12207 
12208   llvm::APSInt Value = Result.Val.getInt();
12209 
12210   unsigned OriginalWidth = Value.getBitWidth();
12211 
12212   if (!Value.isSigned() || Value.isNegative())
12213     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(OriginalInit))
12214       if (UO->getOpcode() == UO_Minus || UO->getOpcode() == UO_Not)
12215         OriginalWidth = Value.getMinSignedBits();
12216 
12217   if (OriginalWidth <= FieldWidth)
12218     return false;
12219 
12220   // Compute the value which the bitfield will contain.
12221   llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
12222   TruncatedValue.setIsSigned(BitfieldType->isSignedIntegerType());
12223 
12224   // Check whether the stored value is equal to the original value.
12225   TruncatedValue = TruncatedValue.extend(OriginalWidth);
12226   if (llvm::APSInt::isSameValue(Value, TruncatedValue))
12227     return false;
12228 
12229   // Special-case bitfields of width 1: booleans are naturally 0/1, and
12230   // therefore don't strictly fit into a signed bitfield of width 1.
12231   if (FieldWidth == 1 && Value == 1)
12232     return false;
12233 
12234   std::string PrettyValue = toString(Value, 10);
12235   std::string PrettyTrunc = toString(TruncatedValue, 10);
12236 
12237   S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant)
12238     << PrettyValue << PrettyTrunc << OriginalInit->getType()
12239     << Init->getSourceRange();
12240 
12241   return true;
12242 }
12243 
12244 /// Analyze the given simple or compound assignment for warning-worthy
12245 /// operations.
12246 static void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
12247   // Just recurse on the LHS.
12248   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
12249 
12250   // We want to recurse on the RHS as normal unless we're assigning to
12251   // a bitfield.
12252   if (FieldDecl *Bitfield = E->getLHS()->getSourceBitField()) {
12253     if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
12254                                   E->getOperatorLoc())) {
12255       // Recurse, ignoring any implicit conversions on the RHS.
12256       return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
12257                                         E->getOperatorLoc());
12258     }
12259   }
12260 
12261   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
12262 
12263   // Diagnose implicitly sequentially-consistent atomic assignment.
12264   if (E->getLHS()->getType()->isAtomicType())
12265     S.Diag(E->getRHS()->getBeginLoc(), diag::warn_atomic_implicit_seq_cst);
12266 }
12267 
12268 /// Diagnose an implicit cast;  purely a helper for CheckImplicitConversion.
12269 static void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
12270                             SourceLocation CContext, unsigned diag,
12271                             bool pruneControlFlow = false) {
12272   if (pruneControlFlow) {
12273     S.DiagRuntimeBehavior(E->getExprLoc(), E,
12274                           S.PDiag(diag)
12275                               << SourceType << T << E->getSourceRange()
12276                               << SourceRange(CContext));
12277     return;
12278   }
12279   S.Diag(E->getExprLoc(), diag)
12280     << SourceType << T << E->getSourceRange() << SourceRange(CContext);
12281 }
12282 
12283 /// Diagnose an implicit cast;  purely a helper for CheckImplicitConversion.
12284 static void DiagnoseImpCast(Sema &S, Expr *E, QualType T,
12285                             SourceLocation CContext,
12286                             unsigned diag, bool pruneControlFlow = false) {
12287   DiagnoseImpCast(S, E, E->getType(), T, CContext, diag, pruneControlFlow);
12288 }
12289 
12290 static bool isObjCSignedCharBool(Sema &S, QualType Ty) {
12291   return Ty->isSpecificBuiltinType(BuiltinType::SChar) &&
12292       S.getLangOpts().ObjC && S.NSAPIObj->isObjCBOOLType(Ty);
12293 }
12294 
12295 static void adornObjCBoolConversionDiagWithTernaryFixit(
12296     Sema &S, Expr *SourceExpr, const Sema::SemaDiagnosticBuilder &Builder) {
12297   Expr *Ignored = SourceExpr->IgnoreImplicit();
12298   if (const auto *OVE = dyn_cast<OpaqueValueExpr>(Ignored))
12299     Ignored = OVE->getSourceExpr();
12300   bool NeedsParens = isa<AbstractConditionalOperator>(Ignored) ||
12301                      isa<BinaryOperator>(Ignored) ||
12302                      isa<CXXOperatorCallExpr>(Ignored);
12303   SourceLocation EndLoc = S.getLocForEndOfToken(SourceExpr->getEndLoc());
12304   if (NeedsParens)
12305     Builder << FixItHint::CreateInsertion(SourceExpr->getBeginLoc(), "(")
12306             << FixItHint::CreateInsertion(EndLoc, ")");
12307   Builder << FixItHint::CreateInsertion(EndLoc, " ? YES : NO");
12308 }
12309 
12310 /// Diagnose an implicit cast from a floating point value to an integer value.
12311 static void DiagnoseFloatingImpCast(Sema &S, Expr *E, QualType T,
12312                                     SourceLocation CContext) {
12313   const bool IsBool = T->isSpecificBuiltinType(BuiltinType::Bool);
12314   const bool PruneWarnings = S.inTemplateInstantiation();
12315 
12316   Expr *InnerE = E->IgnoreParenImpCasts();
12317   // We also want to warn on, e.g., "int i = -1.234"
12318   if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE))
12319     if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus)
12320       InnerE = UOp->getSubExpr()->IgnoreParenImpCasts();
12321 
12322   const bool IsLiteral =
12323       isa<FloatingLiteral>(E) || isa<FloatingLiteral>(InnerE);
12324 
12325   llvm::APFloat Value(0.0);
12326   bool IsConstant =
12327     E->EvaluateAsFloat(Value, S.Context, Expr::SE_AllowSideEffects);
12328   if (!IsConstant) {
12329     if (isObjCSignedCharBool(S, T)) {
12330       return adornObjCBoolConversionDiagWithTernaryFixit(
12331           S, E,
12332           S.Diag(CContext, diag::warn_impcast_float_to_objc_signed_char_bool)
12333               << E->getType());
12334     }
12335 
12336     return DiagnoseImpCast(S, E, T, CContext,
12337                            diag::warn_impcast_float_integer, PruneWarnings);
12338   }
12339 
12340   bool isExact = false;
12341 
12342   llvm::APSInt IntegerValue(S.Context.getIntWidth(T),
12343                             T->hasUnsignedIntegerRepresentation());
12344   llvm::APFloat::opStatus Result = Value.convertToInteger(
12345       IntegerValue, llvm::APFloat::rmTowardZero, &isExact);
12346 
12347   // FIXME: Force the precision of the source value down so we don't print
12348   // digits which are usually useless (we don't really care here if we
12349   // truncate a digit by accident in edge cases).  Ideally, APFloat::toString
12350   // would automatically print the shortest representation, but it's a bit
12351   // tricky to implement.
12352   SmallString<16> PrettySourceValue;
12353   unsigned precision = llvm::APFloat::semanticsPrecision(Value.getSemantics());
12354   precision = (precision * 59 + 195) / 196;
12355   Value.toString(PrettySourceValue, precision);
12356 
12357   if (isObjCSignedCharBool(S, T) && IntegerValue != 0 && IntegerValue != 1) {
12358     return adornObjCBoolConversionDiagWithTernaryFixit(
12359         S, E,
12360         S.Diag(CContext, diag::warn_impcast_constant_value_to_objc_bool)
12361             << PrettySourceValue);
12362   }
12363 
12364   if (Result == llvm::APFloat::opOK && isExact) {
12365     if (IsLiteral) return;
12366     return DiagnoseImpCast(S, E, T, CContext, diag::warn_impcast_float_integer,
12367                            PruneWarnings);
12368   }
12369 
12370   // Conversion of a floating-point value to a non-bool integer where the
12371   // integral part cannot be represented by the integer type is undefined.
12372   if (!IsBool && Result == llvm::APFloat::opInvalidOp)
12373     return DiagnoseImpCast(
12374         S, E, T, CContext,
12375         IsLiteral ? diag::warn_impcast_literal_float_to_integer_out_of_range
12376                   : diag::warn_impcast_float_to_integer_out_of_range,
12377         PruneWarnings);
12378 
12379   unsigned DiagID = 0;
12380   if (IsLiteral) {
12381     // Warn on floating point literal to integer.
12382     DiagID = diag::warn_impcast_literal_float_to_integer;
12383   } else if (IntegerValue == 0) {
12384     if (Value.isZero()) {  // Skip -0.0 to 0 conversion.
12385       return DiagnoseImpCast(S, E, T, CContext,
12386                              diag::warn_impcast_float_integer, PruneWarnings);
12387     }
12388     // Warn on non-zero to zero conversion.
12389     DiagID = diag::warn_impcast_float_to_integer_zero;
12390   } else {
12391     if (IntegerValue.isUnsigned()) {
12392       if (!IntegerValue.isMaxValue()) {
12393         return DiagnoseImpCast(S, E, T, CContext,
12394                                diag::warn_impcast_float_integer, PruneWarnings);
12395       }
12396     } else {  // IntegerValue.isSigned()
12397       if (!IntegerValue.isMaxSignedValue() &&
12398           !IntegerValue.isMinSignedValue()) {
12399         return DiagnoseImpCast(S, E, T, CContext,
12400                                diag::warn_impcast_float_integer, PruneWarnings);
12401       }
12402     }
12403     // Warn on evaluatable floating point expression to integer conversion.
12404     DiagID = diag::warn_impcast_float_to_integer;
12405   }
12406 
12407   SmallString<16> PrettyTargetValue;
12408   if (IsBool)
12409     PrettyTargetValue = Value.isZero() ? "false" : "true";
12410   else
12411     IntegerValue.toString(PrettyTargetValue);
12412 
12413   if (PruneWarnings) {
12414     S.DiagRuntimeBehavior(E->getExprLoc(), E,
12415                           S.PDiag(DiagID)
12416                               << E->getType() << T.getUnqualifiedType()
12417                               << PrettySourceValue << PrettyTargetValue
12418                               << E->getSourceRange() << SourceRange(CContext));
12419   } else {
12420     S.Diag(E->getExprLoc(), DiagID)
12421         << E->getType() << T.getUnqualifiedType() << PrettySourceValue
12422         << PrettyTargetValue << E->getSourceRange() << SourceRange(CContext);
12423   }
12424 }
12425 
12426 /// Analyze the given compound assignment for the possible losing of
12427 /// floating-point precision.
12428 static void AnalyzeCompoundAssignment(Sema &S, BinaryOperator *E) {
12429   assert(isa<CompoundAssignOperator>(E) &&
12430          "Must be compound assignment operation");
12431   // Recurse on the LHS and RHS in here
12432   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
12433   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
12434 
12435   if (E->getLHS()->getType()->isAtomicType())
12436     S.Diag(E->getOperatorLoc(), diag::warn_atomic_implicit_seq_cst);
12437 
12438   // Now check the outermost expression
12439   const auto *ResultBT = E->getLHS()->getType()->getAs<BuiltinType>();
12440   const auto *RBT = cast<CompoundAssignOperator>(E)
12441                         ->getComputationResultType()
12442                         ->getAs<BuiltinType>();
12443 
12444   // The below checks assume source is floating point.
12445   if (!ResultBT || !RBT || !RBT->isFloatingPoint()) return;
12446 
12447   // If source is floating point but target is an integer.
12448   if (ResultBT->isInteger())
12449     return DiagnoseImpCast(S, E, E->getRHS()->getType(), E->getLHS()->getType(),
12450                            E->getExprLoc(), diag::warn_impcast_float_integer);
12451 
12452   if (!ResultBT->isFloatingPoint())
12453     return;
12454 
12455   // If both source and target are floating points, warn about losing precision.
12456   int Order = S.getASTContext().getFloatingTypeSemanticOrder(
12457       QualType(ResultBT, 0), QualType(RBT, 0));
12458   if (Order < 0 && !S.SourceMgr.isInSystemMacro(E->getOperatorLoc()))
12459     // warn about dropping FP rank.
12460     DiagnoseImpCast(S, E->getRHS(), E->getLHS()->getType(), E->getOperatorLoc(),
12461                     diag::warn_impcast_float_result_precision);
12462 }
12463 
12464 static std::string PrettyPrintInRange(const llvm::APSInt &Value,
12465                                       IntRange Range) {
12466   if (!Range.Width) return "0";
12467 
12468   llvm::APSInt ValueInRange = Value;
12469   ValueInRange.setIsSigned(!Range.NonNegative);
12470   ValueInRange = ValueInRange.trunc(Range.Width);
12471   return toString(ValueInRange, 10);
12472 }
12473 
12474 static bool IsImplicitBoolFloatConversion(Sema &S, Expr *Ex, bool ToBool) {
12475   if (!isa<ImplicitCastExpr>(Ex))
12476     return false;
12477 
12478   Expr *InnerE = Ex->IgnoreParenImpCasts();
12479   const Type *Target = S.Context.getCanonicalType(Ex->getType()).getTypePtr();
12480   const Type *Source =
12481     S.Context.getCanonicalType(InnerE->getType()).getTypePtr();
12482   if (Target->isDependentType())
12483     return false;
12484 
12485   const BuiltinType *FloatCandidateBT =
12486     dyn_cast<BuiltinType>(ToBool ? Source : Target);
12487   const Type *BoolCandidateType = ToBool ? Target : Source;
12488 
12489   return (BoolCandidateType->isSpecificBuiltinType(BuiltinType::Bool) &&
12490           FloatCandidateBT && (FloatCandidateBT->isFloatingPoint()));
12491 }
12492 
12493 static void CheckImplicitArgumentConversions(Sema &S, CallExpr *TheCall,
12494                                              SourceLocation CC) {
12495   unsigned NumArgs = TheCall->getNumArgs();
12496   for (unsigned i = 0; i < NumArgs; ++i) {
12497     Expr *CurrA = TheCall->getArg(i);
12498     if (!IsImplicitBoolFloatConversion(S, CurrA, true))
12499       continue;
12500 
12501     bool IsSwapped = ((i > 0) &&
12502         IsImplicitBoolFloatConversion(S, TheCall->getArg(i - 1), false));
12503     IsSwapped |= ((i < (NumArgs - 1)) &&
12504         IsImplicitBoolFloatConversion(S, TheCall->getArg(i + 1), false));
12505     if (IsSwapped) {
12506       // Warn on this floating-point to bool conversion.
12507       DiagnoseImpCast(S, CurrA->IgnoreParenImpCasts(),
12508                       CurrA->getType(), CC,
12509                       diag::warn_impcast_floating_point_to_bool);
12510     }
12511   }
12512 }
12513 
12514 static void DiagnoseNullConversion(Sema &S, Expr *E, QualType T,
12515                                    SourceLocation CC) {
12516   if (S.Diags.isIgnored(diag::warn_impcast_null_pointer_to_integer,
12517                         E->getExprLoc()))
12518     return;
12519 
12520   // Don't warn on functions which have return type nullptr_t.
12521   if (isa<CallExpr>(E))
12522     return;
12523 
12524   // Check for NULL (GNUNull) or nullptr (CXX11_nullptr).
12525   const Expr::NullPointerConstantKind NullKind =
12526       E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull);
12527   if (NullKind != Expr::NPCK_GNUNull && NullKind != Expr::NPCK_CXX11_nullptr)
12528     return;
12529 
12530   // Return if target type is a safe conversion.
12531   if (T->isAnyPointerType() || T->isBlockPointerType() ||
12532       T->isMemberPointerType() || !T->isScalarType() || T->isNullPtrType())
12533     return;
12534 
12535   SourceLocation Loc = E->getSourceRange().getBegin();
12536 
12537   // Venture through the macro stacks to get to the source of macro arguments.
12538   // The new location is a better location than the complete location that was
12539   // passed in.
12540   Loc = S.SourceMgr.getTopMacroCallerLoc(Loc);
12541   CC = S.SourceMgr.getTopMacroCallerLoc(CC);
12542 
12543   // __null is usually wrapped in a macro.  Go up a macro if that is the case.
12544   if (NullKind == Expr::NPCK_GNUNull && Loc.isMacroID()) {
12545     StringRef MacroName = Lexer::getImmediateMacroNameForDiagnostics(
12546         Loc, S.SourceMgr, S.getLangOpts());
12547     if (MacroName == "NULL")
12548       Loc = S.SourceMgr.getImmediateExpansionRange(Loc).getBegin();
12549   }
12550 
12551   // Only warn if the null and context location are in the same macro expansion.
12552   if (S.SourceMgr.getFileID(Loc) != S.SourceMgr.getFileID(CC))
12553     return;
12554 
12555   S.Diag(Loc, diag::warn_impcast_null_pointer_to_integer)
12556       << (NullKind == Expr::NPCK_CXX11_nullptr) << T << SourceRange(CC)
12557       << FixItHint::CreateReplacement(Loc,
12558                                       S.getFixItZeroLiteralForType(T, Loc));
12559 }
12560 
12561 static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
12562                                   ObjCArrayLiteral *ArrayLiteral);
12563 
12564 static void
12565 checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
12566                            ObjCDictionaryLiteral *DictionaryLiteral);
12567 
12568 /// Check a single element within a collection literal against the
12569 /// target element type.
12570 static void checkObjCCollectionLiteralElement(Sema &S,
12571                                               QualType TargetElementType,
12572                                               Expr *Element,
12573                                               unsigned ElementKind) {
12574   // Skip a bitcast to 'id' or qualified 'id'.
12575   if (auto ICE = dyn_cast<ImplicitCastExpr>(Element)) {
12576     if (ICE->getCastKind() == CK_BitCast &&
12577         ICE->getSubExpr()->getType()->getAs<ObjCObjectPointerType>())
12578       Element = ICE->getSubExpr();
12579   }
12580 
12581   QualType ElementType = Element->getType();
12582   ExprResult ElementResult(Element);
12583   if (ElementType->getAs<ObjCObjectPointerType>() &&
12584       S.CheckSingleAssignmentConstraints(TargetElementType,
12585                                          ElementResult,
12586                                          false, false)
12587         != Sema::Compatible) {
12588     S.Diag(Element->getBeginLoc(), diag::warn_objc_collection_literal_element)
12589         << ElementType << ElementKind << TargetElementType
12590         << Element->getSourceRange();
12591   }
12592 
12593   if (auto ArrayLiteral = dyn_cast<ObjCArrayLiteral>(Element))
12594     checkObjCArrayLiteral(S, TargetElementType, ArrayLiteral);
12595   else if (auto DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(Element))
12596     checkObjCDictionaryLiteral(S, TargetElementType, DictionaryLiteral);
12597 }
12598 
12599 /// Check an Objective-C array literal being converted to the given
12600 /// target type.
12601 static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
12602                                   ObjCArrayLiteral *ArrayLiteral) {
12603   if (!S.NSArrayDecl)
12604     return;
12605 
12606   const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>();
12607   if (!TargetObjCPtr)
12608     return;
12609 
12610   if (TargetObjCPtr->isUnspecialized() ||
12611       TargetObjCPtr->getInterfaceDecl()->getCanonicalDecl()
12612         != S.NSArrayDecl->getCanonicalDecl())
12613     return;
12614 
12615   auto TypeArgs = TargetObjCPtr->getTypeArgs();
12616   if (TypeArgs.size() != 1)
12617     return;
12618 
12619   QualType TargetElementType = TypeArgs[0];
12620   for (unsigned I = 0, N = ArrayLiteral->getNumElements(); I != N; ++I) {
12621     checkObjCCollectionLiteralElement(S, TargetElementType,
12622                                       ArrayLiteral->getElement(I),
12623                                       0);
12624   }
12625 }
12626 
12627 /// Check an Objective-C dictionary literal being converted to the given
12628 /// target type.
12629 static void
12630 checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
12631                            ObjCDictionaryLiteral *DictionaryLiteral) {
12632   if (!S.NSDictionaryDecl)
12633     return;
12634 
12635   const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>();
12636   if (!TargetObjCPtr)
12637     return;
12638 
12639   if (TargetObjCPtr->isUnspecialized() ||
12640       TargetObjCPtr->getInterfaceDecl()->getCanonicalDecl()
12641         != S.NSDictionaryDecl->getCanonicalDecl())
12642     return;
12643 
12644   auto TypeArgs = TargetObjCPtr->getTypeArgs();
12645   if (TypeArgs.size() != 2)
12646     return;
12647 
12648   QualType TargetKeyType = TypeArgs[0];
12649   QualType TargetObjectType = TypeArgs[1];
12650   for (unsigned I = 0, N = DictionaryLiteral->getNumElements(); I != N; ++I) {
12651     auto Element = DictionaryLiteral->getKeyValueElement(I);
12652     checkObjCCollectionLiteralElement(S, TargetKeyType, Element.Key, 1);
12653     checkObjCCollectionLiteralElement(S, TargetObjectType, Element.Value, 2);
12654   }
12655 }
12656 
12657 // Helper function to filter out cases for constant width constant conversion.
12658 // Don't warn on char array initialization or for non-decimal values.
12659 static bool isSameWidthConstantConversion(Sema &S, Expr *E, QualType T,
12660                                           SourceLocation CC) {
12661   // If initializing from a constant, and the constant starts with '0',
12662   // then it is a binary, octal, or hexadecimal.  Allow these constants
12663   // to fill all the bits, even if there is a sign change.
12664   if (auto *IntLit = dyn_cast<IntegerLiteral>(E->IgnoreParenImpCasts())) {
12665     const char FirstLiteralCharacter =
12666         S.getSourceManager().getCharacterData(IntLit->getBeginLoc())[0];
12667     if (FirstLiteralCharacter == '0')
12668       return false;
12669   }
12670 
12671   // If the CC location points to a '{', and the type is char, then assume
12672   // assume it is an array initialization.
12673   if (CC.isValid() && T->isCharType()) {
12674     const char FirstContextCharacter =
12675         S.getSourceManager().getCharacterData(CC)[0];
12676     if (FirstContextCharacter == '{')
12677       return false;
12678   }
12679 
12680   return true;
12681 }
12682 
12683 static const IntegerLiteral *getIntegerLiteral(Expr *E) {
12684   const auto *IL = dyn_cast<IntegerLiteral>(E);
12685   if (!IL) {
12686     if (auto *UO = dyn_cast<UnaryOperator>(E)) {
12687       if (UO->getOpcode() == UO_Minus)
12688         return dyn_cast<IntegerLiteral>(UO->getSubExpr());
12689     }
12690   }
12691 
12692   return IL;
12693 }
12694 
12695 static void DiagnoseIntInBoolContext(Sema &S, Expr *E) {
12696   E = E->IgnoreParenImpCasts();
12697   SourceLocation ExprLoc = E->getExprLoc();
12698 
12699   if (const auto *BO = dyn_cast<BinaryOperator>(E)) {
12700     BinaryOperator::Opcode Opc = BO->getOpcode();
12701     Expr::EvalResult Result;
12702     // Do not diagnose unsigned shifts.
12703     if (Opc == BO_Shl) {
12704       const auto *LHS = getIntegerLiteral(BO->getLHS());
12705       const auto *RHS = getIntegerLiteral(BO->getRHS());
12706       if (LHS && LHS->getValue() == 0)
12707         S.Diag(ExprLoc, diag::warn_left_shift_always) << 0;
12708       else if (!E->isValueDependent() && LHS && RHS &&
12709                RHS->getValue().isNonNegative() &&
12710                E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects))
12711         S.Diag(ExprLoc, diag::warn_left_shift_always)
12712             << (Result.Val.getInt() != 0);
12713       else if (E->getType()->isSignedIntegerType())
12714         S.Diag(ExprLoc, diag::warn_left_shift_in_bool_context) << E;
12715     }
12716   }
12717 
12718   if (const auto *CO = dyn_cast<ConditionalOperator>(E)) {
12719     const auto *LHS = getIntegerLiteral(CO->getTrueExpr());
12720     const auto *RHS = getIntegerLiteral(CO->getFalseExpr());
12721     if (!LHS || !RHS)
12722       return;
12723     if ((LHS->getValue() == 0 || LHS->getValue() == 1) &&
12724         (RHS->getValue() == 0 || RHS->getValue() == 1))
12725       // Do not diagnose common idioms.
12726       return;
12727     if (LHS->getValue() != 0 && RHS->getValue() != 0)
12728       S.Diag(ExprLoc, diag::warn_integer_constants_in_conditional_always_true);
12729   }
12730 }
12731 
12732 static void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
12733                                     SourceLocation CC,
12734                                     bool *ICContext = nullptr,
12735                                     bool IsListInit = false) {
12736   if (E->isTypeDependent() || E->isValueDependent()) return;
12737 
12738   const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
12739   const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
12740   if (Source == Target) return;
12741   if (Target->isDependentType()) return;
12742 
12743   // If the conversion context location is invalid don't complain. We also
12744   // don't want to emit a warning if the issue occurs from the expansion of
12745   // a system macro. The problem is that 'getSpellingLoc()' is slow, so we
12746   // delay this check as long as possible. Once we detect we are in that
12747   // scenario, we just return.
12748   if (CC.isInvalid())
12749     return;
12750 
12751   if (Source->isAtomicType())
12752     S.Diag(E->getExprLoc(), diag::warn_atomic_implicit_seq_cst);
12753 
12754   // Diagnose implicit casts to bool.
12755   if (Target->isSpecificBuiltinType(BuiltinType::Bool)) {
12756     if (isa<StringLiteral>(E))
12757       // Warn on string literal to bool.  Checks for string literals in logical
12758       // and expressions, for instance, assert(0 && "error here"), are
12759       // prevented by a check in AnalyzeImplicitConversions().
12760       return DiagnoseImpCast(S, E, T, CC,
12761                              diag::warn_impcast_string_literal_to_bool);
12762     if (isa<ObjCStringLiteral>(E) || isa<ObjCArrayLiteral>(E) ||
12763         isa<ObjCDictionaryLiteral>(E) || isa<ObjCBoxedExpr>(E)) {
12764       // This covers the literal expressions that evaluate to Objective-C
12765       // objects.
12766       return DiagnoseImpCast(S, E, T, CC,
12767                              diag::warn_impcast_objective_c_literal_to_bool);
12768     }
12769     if (Source->isPointerType() || Source->canDecayToPointerType()) {
12770       // Warn on pointer to bool conversion that is always true.
12771       S.DiagnoseAlwaysNonNullPointer(E, Expr::NPCK_NotNull, /*IsEqual*/ false,
12772                                      SourceRange(CC));
12773     }
12774   }
12775 
12776   // If the we're converting a constant to an ObjC BOOL on a platform where BOOL
12777   // is a typedef for signed char (macOS), then that constant value has to be 1
12778   // or 0.
12779   if (isObjCSignedCharBool(S, T) && Source->isIntegralType(S.Context)) {
12780     Expr::EvalResult Result;
12781     if (E->EvaluateAsInt(Result, S.getASTContext(),
12782                          Expr::SE_AllowSideEffects)) {
12783       if (Result.Val.getInt() != 1 && Result.Val.getInt() != 0) {
12784         adornObjCBoolConversionDiagWithTernaryFixit(
12785             S, E,
12786             S.Diag(CC, diag::warn_impcast_constant_value_to_objc_bool)
12787                 << toString(Result.Val.getInt(), 10));
12788       }
12789       return;
12790     }
12791   }
12792 
12793   // Check implicit casts from Objective-C collection literals to specialized
12794   // collection types, e.g., NSArray<NSString *> *.
12795   if (auto *ArrayLiteral = dyn_cast<ObjCArrayLiteral>(E))
12796     checkObjCArrayLiteral(S, QualType(Target, 0), ArrayLiteral);
12797   else if (auto *DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(E))
12798     checkObjCDictionaryLiteral(S, QualType(Target, 0), DictionaryLiteral);
12799 
12800   // Strip vector types.
12801   if (isa<VectorType>(Source)) {
12802     if (Target->isVLSTBuiltinType() &&
12803         (S.Context.areCompatibleSveTypes(QualType(Target, 0),
12804                                          QualType(Source, 0)) ||
12805          S.Context.areLaxCompatibleSveTypes(QualType(Target, 0),
12806                                             QualType(Source, 0))))
12807       return;
12808 
12809     if (!isa<VectorType>(Target)) {
12810       if (S.SourceMgr.isInSystemMacro(CC))
12811         return;
12812       return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
12813     }
12814 
12815     // If the vector cast is cast between two vectors of the same size, it is
12816     // a bitcast, not a conversion.
12817     if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
12818       return;
12819 
12820     Source = cast<VectorType>(Source)->getElementType().getTypePtr();
12821     Target = cast<VectorType>(Target)->getElementType().getTypePtr();
12822   }
12823   if (auto VecTy = dyn_cast<VectorType>(Target))
12824     Target = VecTy->getElementType().getTypePtr();
12825 
12826   // Strip complex types.
12827   if (isa<ComplexType>(Source)) {
12828     if (!isa<ComplexType>(Target)) {
12829       if (S.SourceMgr.isInSystemMacro(CC) || Target->isBooleanType())
12830         return;
12831 
12832       return DiagnoseImpCast(S, E, T, CC,
12833                              S.getLangOpts().CPlusPlus
12834                                  ? diag::err_impcast_complex_scalar
12835                                  : diag::warn_impcast_complex_scalar);
12836     }
12837 
12838     Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
12839     Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
12840   }
12841 
12842   const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
12843   const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
12844 
12845   // If the source is floating point...
12846   if (SourceBT && SourceBT->isFloatingPoint()) {
12847     // ...and the target is floating point...
12848     if (TargetBT && TargetBT->isFloatingPoint()) {
12849       // ...then warn if we're dropping FP rank.
12850 
12851       int Order = S.getASTContext().getFloatingTypeSemanticOrder(
12852           QualType(SourceBT, 0), QualType(TargetBT, 0));
12853       if (Order > 0) {
12854         // Don't warn about float constants that are precisely
12855         // representable in the target type.
12856         Expr::EvalResult result;
12857         if (E->EvaluateAsRValue(result, S.Context)) {
12858           // Value might be a float, a float vector, or a float complex.
12859           if (IsSameFloatAfterCast(result.Val,
12860                    S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
12861                    S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
12862             return;
12863         }
12864 
12865         if (S.SourceMgr.isInSystemMacro(CC))
12866           return;
12867 
12868         DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
12869       }
12870       // ... or possibly if we're increasing rank, too
12871       else if (Order < 0) {
12872         if (S.SourceMgr.isInSystemMacro(CC))
12873           return;
12874 
12875         DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_double_promotion);
12876       }
12877       return;
12878     }
12879 
12880     // If the target is integral, always warn.
12881     if (TargetBT && TargetBT->isInteger()) {
12882       if (S.SourceMgr.isInSystemMacro(CC))
12883         return;
12884 
12885       DiagnoseFloatingImpCast(S, E, T, CC);
12886     }
12887 
12888     // Detect the case where a call result is converted from floating-point to
12889     // to bool, and the final argument to the call is converted from bool, to
12890     // discover this typo:
12891     //
12892     //    bool b = fabs(x < 1.0);  // should be "bool b = fabs(x) < 1.0;"
12893     //
12894     // FIXME: This is an incredibly special case; is there some more general
12895     // way to detect this class of misplaced-parentheses bug?
12896     if (Target->isBooleanType() && isa<CallExpr>(E)) {
12897       // Check last argument of function call to see if it is an
12898       // implicit cast from a type matching the type the result
12899       // is being cast to.
12900       CallExpr *CEx = cast<CallExpr>(E);
12901       if (unsigned NumArgs = CEx->getNumArgs()) {
12902         Expr *LastA = CEx->getArg(NumArgs - 1);
12903         Expr *InnerE = LastA->IgnoreParenImpCasts();
12904         if (isa<ImplicitCastExpr>(LastA) &&
12905             InnerE->getType()->isBooleanType()) {
12906           // Warn on this floating-point to bool conversion
12907           DiagnoseImpCast(S, E, T, CC,
12908                           diag::warn_impcast_floating_point_to_bool);
12909         }
12910       }
12911     }
12912     return;
12913   }
12914 
12915   // Valid casts involving fixed point types should be accounted for here.
12916   if (Source->isFixedPointType()) {
12917     if (Target->isUnsaturatedFixedPointType()) {
12918       Expr::EvalResult Result;
12919       if (E->EvaluateAsFixedPoint(Result, S.Context, Expr::SE_AllowSideEffects,
12920                                   S.isConstantEvaluated())) {
12921         llvm::APFixedPoint Value = Result.Val.getFixedPoint();
12922         llvm::APFixedPoint MaxVal = S.Context.getFixedPointMax(T);
12923         llvm::APFixedPoint MinVal = S.Context.getFixedPointMin(T);
12924         if (Value > MaxVal || Value < MinVal) {
12925           S.DiagRuntimeBehavior(E->getExprLoc(), E,
12926                                 S.PDiag(diag::warn_impcast_fixed_point_range)
12927                                     << Value.toString() << T
12928                                     << E->getSourceRange()
12929                                     << clang::SourceRange(CC));
12930           return;
12931         }
12932       }
12933     } else if (Target->isIntegerType()) {
12934       Expr::EvalResult Result;
12935       if (!S.isConstantEvaluated() &&
12936           E->EvaluateAsFixedPoint(Result, S.Context,
12937                                   Expr::SE_AllowSideEffects)) {
12938         llvm::APFixedPoint FXResult = Result.Val.getFixedPoint();
12939 
12940         bool Overflowed;
12941         llvm::APSInt IntResult = FXResult.convertToInt(
12942             S.Context.getIntWidth(T),
12943             Target->isSignedIntegerOrEnumerationType(), &Overflowed);
12944 
12945         if (Overflowed) {
12946           S.DiagRuntimeBehavior(E->getExprLoc(), E,
12947                                 S.PDiag(diag::warn_impcast_fixed_point_range)
12948                                     << FXResult.toString() << T
12949                                     << E->getSourceRange()
12950                                     << clang::SourceRange(CC));
12951           return;
12952         }
12953       }
12954     }
12955   } else if (Target->isUnsaturatedFixedPointType()) {
12956     if (Source->isIntegerType()) {
12957       Expr::EvalResult Result;
12958       if (!S.isConstantEvaluated() &&
12959           E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects)) {
12960         llvm::APSInt Value = Result.Val.getInt();
12961 
12962         bool Overflowed;
12963         llvm::APFixedPoint IntResult = llvm::APFixedPoint::getFromIntValue(
12964             Value, S.Context.getFixedPointSemantics(T), &Overflowed);
12965 
12966         if (Overflowed) {
12967           S.DiagRuntimeBehavior(E->getExprLoc(), E,
12968                                 S.PDiag(diag::warn_impcast_fixed_point_range)
12969                                     << toString(Value, /*Radix=*/10) << T
12970                                     << E->getSourceRange()
12971                                     << clang::SourceRange(CC));
12972           return;
12973         }
12974       }
12975     }
12976   }
12977 
12978   // If we are casting an integer type to a floating point type without
12979   // initialization-list syntax, we might lose accuracy if the floating
12980   // point type has a narrower significand than the integer type.
12981   if (SourceBT && TargetBT && SourceBT->isIntegerType() &&
12982       TargetBT->isFloatingType() && !IsListInit) {
12983     // Determine the number of precision bits in the source integer type.
12984     IntRange SourceRange = GetExprRange(S.Context, E, S.isConstantEvaluated(),
12985                                         /*Approximate*/ true);
12986     unsigned int SourcePrecision = SourceRange.Width;
12987 
12988     // Determine the number of precision bits in the
12989     // target floating point type.
12990     unsigned int TargetPrecision = llvm::APFloatBase::semanticsPrecision(
12991         S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)));
12992 
12993     if (SourcePrecision > 0 && TargetPrecision > 0 &&
12994         SourcePrecision > TargetPrecision) {
12995 
12996       if (Optional<llvm::APSInt> SourceInt =
12997               E->getIntegerConstantExpr(S.Context)) {
12998         // If the source integer is a constant, convert it to the target
12999         // floating point type. Issue a warning if the value changes
13000         // during the whole conversion.
13001         llvm::APFloat TargetFloatValue(
13002             S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)));
13003         llvm::APFloat::opStatus ConversionStatus =
13004             TargetFloatValue.convertFromAPInt(
13005                 *SourceInt, SourceBT->isSignedInteger(),
13006                 llvm::APFloat::rmNearestTiesToEven);
13007 
13008         if (ConversionStatus != llvm::APFloat::opOK) {
13009           SmallString<32> PrettySourceValue;
13010           SourceInt->toString(PrettySourceValue, 10);
13011           SmallString<32> PrettyTargetValue;
13012           TargetFloatValue.toString(PrettyTargetValue, TargetPrecision);
13013 
13014           S.DiagRuntimeBehavior(
13015               E->getExprLoc(), E,
13016               S.PDiag(diag::warn_impcast_integer_float_precision_constant)
13017                   << PrettySourceValue << PrettyTargetValue << E->getType() << T
13018                   << E->getSourceRange() << clang::SourceRange(CC));
13019         }
13020       } else {
13021         // Otherwise, the implicit conversion may lose precision.
13022         DiagnoseImpCast(S, E, T, CC,
13023                         diag::warn_impcast_integer_float_precision);
13024       }
13025     }
13026   }
13027 
13028   DiagnoseNullConversion(S, E, T, CC);
13029 
13030   S.DiscardMisalignedMemberAddress(Target, E);
13031 
13032   if (Target->isBooleanType())
13033     DiagnoseIntInBoolContext(S, E);
13034 
13035   if (!Source->isIntegerType() || !Target->isIntegerType())
13036     return;
13037 
13038   // TODO: remove this early return once the false positives for constant->bool
13039   // in templates, macros, etc, are reduced or removed.
13040   if (Target->isSpecificBuiltinType(BuiltinType::Bool))
13041     return;
13042 
13043   if (isObjCSignedCharBool(S, T) && !Source->isCharType() &&
13044       !E->isKnownToHaveBooleanValue(/*Semantic=*/false)) {
13045     return adornObjCBoolConversionDiagWithTernaryFixit(
13046         S, E,
13047         S.Diag(CC, diag::warn_impcast_int_to_objc_signed_char_bool)
13048             << E->getType());
13049   }
13050 
13051   IntRange SourceTypeRange =
13052       IntRange::forTargetOfCanonicalType(S.Context, Source);
13053   IntRange LikelySourceRange =
13054       GetExprRange(S.Context, E, S.isConstantEvaluated(), /*Approximate*/ true);
13055   IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
13056 
13057   if (LikelySourceRange.Width > TargetRange.Width) {
13058     // If the source is a constant, use a default-on diagnostic.
13059     // TODO: this should happen for bitfield stores, too.
13060     Expr::EvalResult Result;
13061     if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects,
13062                          S.isConstantEvaluated())) {
13063       llvm::APSInt Value(32);
13064       Value = Result.Val.getInt();
13065 
13066       if (S.SourceMgr.isInSystemMacro(CC))
13067         return;
13068 
13069       std::string PrettySourceValue = toString(Value, 10);
13070       std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
13071 
13072       S.DiagRuntimeBehavior(
13073           E->getExprLoc(), E,
13074           S.PDiag(diag::warn_impcast_integer_precision_constant)
13075               << PrettySourceValue << PrettyTargetValue << E->getType() << T
13076               << E->getSourceRange() << SourceRange(CC));
13077       return;
13078     }
13079 
13080     // People want to build with -Wshorten-64-to-32 and not -Wconversion.
13081     if (S.SourceMgr.isInSystemMacro(CC))
13082       return;
13083 
13084     if (TargetRange.Width == 32 && S.Context.getIntWidth(E->getType()) == 64)
13085       return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32,
13086                              /* pruneControlFlow */ true);
13087     return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
13088   }
13089 
13090   if (TargetRange.Width > SourceTypeRange.Width) {
13091     if (auto *UO = dyn_cast<UnaryOperator>(E))
13092       if (UO->getOpcode() == UO_Minus)
13093         if (Source->isUnsignedIntegerType()) {
13094           if (Target->isUnsignedIntegerType())
13095             return DiagnoseImpCast(S, E, T, CC,
13096                                    diag::warn_impcast_high_order_zero_bits);
13097           if (Target->isSignedIntegerType())
13098             return DiagnoseImpCast(S, E, T, CC,
13099                                    diag::warn_impcast_nonnegative_result);
13100         }
13101   }
13102 
13103   if (TargetRange.Width == LikelySourceRange.Width &&
13104       !TargetRange.NonNegative && LikelySourceRange.NonNegative &&
13105       Source->isSignedIntegerType()) {
13106     // Warn when doing a signed to signed conversion, warn if the positive
13107     // source value is exactly the width of the target type, which will
13108     // cause a negative value to be stored.
13109 
13110     Expr::EvalResult Result;
13111     if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects) &&
13112         !S.SourceMgr.isInSystemMacro(CC)) {
13113       llvm::APSInt Value = Result.Val.getInt();
13114       if (isSameWidthConstantConversion(S, E, T, CC)) {
13115         std::string PrettySourceValue = toString(Value, 10);
13116         std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
13117 
13118         S.DiagRuntimeBehavior(
13119             E->getExprLoc(), E,
13120             S.PDiag(diag::warn_impcast_integer_precision_constant)
13121                 << PrettySourceValue << PrettyTargetValue << E->getType() << T
13122                 << E->getSourceRange() << SourceRange(CC));
13123         return;
13124       }
13125     }
13126 
13127     // Fall through for non-constants to give a sign conversion warning.
13128   }
13129 
13130   if ((TargetRange.NonNegative && !LikelySourceRange.NonNegative) ||
13131       (!TargetRange.NonNegative && LikelySourceRange.NonNegative &&
13132        LikelySourceRange.Width == TargetRange.Width)) {
13133     if (S.SourceMgr.isInSystemMacro(CC))
13134       return;
13135 
13136     unsigned DiagID = diag::warn_impcast_integer_sign;
13137 
13138     // Traditionally, gcc has warned about this under -Wsign-compare.
13139     // We also want to warn about it in -Wconversion.
13140     // So if -Wconversion is off, use a completely identical diagnostic
13141     // in the sign-compare group.
13142     // The conditional-checking code will
13143     if (ICContext) {
13144       DiagID = diag::warn_impcast_integer_sign_conditional;
13145       *ICContext = true;
13146     }
13147 
13148     return DiagnoseImpCast(S, E, T, CC, DiagID);
13149   }
13150 
13151   // Diagnose conversions between different enumeration types.
13152   // In C, we pretend that the type of an EnumConstantDecl is its enumeration
13153   // type, to give us better diagnostics.
13154   QualType SourceType = E->getType();
13155   if (!S.getLangOpts().CPlusPlus) {
13156     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
13157       if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
13158         EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
13159         SourceType = S.Context.getTypeDeclType(Enum);
13160         Source = S.Context.getCanonicalType(SourceType).getTypePtr();
13161       }
13162   }
13163 
13164   if (const EnumType *SourceEnum = Source->getAs<EnumType>())
13165     if (const EnumType *TargetEnum = Target->getAs<EnumType>())
13166       if (SourceEnum->getDecl()->hasNameForLinkage() &&
13167           TargetEnum->getDecl()->hasNameForLinkage() &&
13168           SourceEnum != TargetEnum) {
13169         if (S.SourceMgr.isInSystemMacro(CC))
13170           return;
13171 
13172         return DiagnoseImpCast(S, E, SourceType, T, CC,
13173                                diag::warn_impcast_different_enum_types);
13174       }
13175 }
13176 
13177 static void CheckConditionalOperator(Sema &S, AbstractConditionalOperator *E,
13178                                      SourceLocation CC, QualType T);
13179 
13180 static void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
13181                                     SourceLocation CC, bool &ICContext) {
13182   E = E->IgnoreParenImpCasts();
13183 
13184   if (auto *CO = dyn_cast<AbstractConditionalOperator>(E))
13185     return CheckConditionalOperator(S, CO, CC, T);
13186 
13187   AnalyzeImplicitConversions(S, E, CC);
13188   if (E->getType() != T)
13189     return CheckImplicitConversion(S, E, T, CC, &ICContext);
13190 }
13191 
13192 static void CheckConditionalOperator(Sema &S, AbstractConditionalOperator *E,
13193                                      SourceLocation CC, QualType T) {
13194   AnalyzeImplicitConversions(S, E->getCond(), E->getQuestionLoc());
13195 
13196   Expr *TrueExpr = E->getTrueExpr();
13197   if (auto *BCO = dyn_cast<BinaryConditionalOperator>(E))
13198     TrueExpr = BCO->getCommon();
13199 
13200   bool Suspicious = false;
13201   CheckConditionalOperand(S, TrueExpr, T, CC, Suspicious);
13202   CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
13203 
13204   if (T->isBooleanType())
13205     DiagnoseIntInBoolContext(S, E);
13206 
13207   // If -Wconversion would have warned about either of the candidates
13208   // for a signedness conversion to the context type...
13209   if (!Suspicious) return;
13210 
13211   // ...but it's currently ignored...
13212   if (!S.Diags.isIgnored(diag::warn_impcast_integer_sign_conditional, CC))
13213     return;
13214 
13215   // ...then check whether it would have warned about either of the
13216   // candidates for a signedness conversion to the condition type.
13217   if (E->getType() == T) return;
13218 
13219   Suspicious = false;
13220   CheckImplicitConversion(S, TrueExpr->IgnoreParenImpCasts(),
13221                           E->getType(), CC, &Suspicious);
13222   if (!Suspicious)
13223     CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
13224                             E->getType(), CC, &Suspicious);
13225 }
13226 
13227 /// Check conversion of given expression to boolean.
13228 /// Input argument E is a logical expression.
13229 static void CheckBoolLikeConversion(Sema &S, Expr *E, SourceLocation CC) {
13230   if (S.getLangOpts().Bool)
13231     return;
13232   if (E->IgnoreParenImpCasts()->getType()->isAtomicType())
13233     return;
13234   CheckImplicitConversion(S, E->IgnoreParenImpCasts(), S.Context.BoolTy, CC);
13235 }
13236 
13237 namespace {
13238 struct AnalyzeImplicitConversionsWorkItem {
13239   Expr *E;
13240   SourceLocation CC;
13241   bool IsListInit;
13242 };
13243 }
13244 
13245 /// Data recursive variant of AnalyzeImplicitConversions. Subexpressions
13246 /// that should be visited are added to WorkList.
13247 static void AnalyzeImplicitConversions(
13248     Sema &S, AnalyzeImplicitConversionsWorkItem Item,
13249     llvm::SmallVectorImpl<AnalyzeImplicitConversionsWorkItem> &WorkList) {
13250   Expr *OrigE = Item.E;
13251   SourceLocation CC = Item.CC;
13252 
13253   QualType T = OrigE->getType();
13254   Expr *E = OrigE->IgnoreParenImpCasts();
13255 
13256   // Propagate whether we are in a C++ list initialization expression.
13257   // If so, we do not issue warnings for implicit int-float conversion
13258   // precision loss, because C++11 narrowing already handles it.
13259   bool IsListInit = Item.IsListInit ||
13260                     (isa<InitListExpr>(OrigE) && S.getLangOpts().CPlusPlus);
13261 
13262   if (E->isTypeDependent() || E->isValueDependent())
13263     return;
13264 
13265   Expr *SourceExpr = E;
13266   // Examine, but don't traverse into the source expression of an
13267   // OpaqueValueExpr, since it may have multiple parents and we don't want to
13268   // emit duplicate diagnostics. Its fine to examine the form or attempt to
13269   // evaluate it in the context of checking the specific conversion to T though.
13270   if (auto *OVE = dyn_cast<OpaqueValueExpr>(E))
13271     if (auto *Src = OVE->getSourceExpr())
13272       SourceExpr = Src;
13273 
13274   if (const auto *UO = dyn_cast<UnaryOperator>(SourceExpr))
13275     if (UO->getOpcode() == UO_Not &&
13276         UO->getSubExpr()->isKnownToHaveBooleanValue())
13277       S.Diag(UO->getBeginLoc(), diag::warn_bitwise_negation_bool)
13278           << OrigE->getSourceRange() << T->isBooleanType()
13279           << FixItHint::CreateReplacement(UO->getBeginLoc(), "!");
13280 
13281   if (const auto *BO = dyn_cast<BinaryOperator>(SourceExpr))
13282     if ((BO->getOpcode() == BO_And || BO->getOpcode() == BO_Or) &&
13283         BO->getLHS()->isKnownToHaveBooleanValue() &&
13284         BO->getRHS()->isKnownToHaveBooleanValue() &&
13285         BO->getLHS()->HasSideEffects(S.Context) &&
13286         BO->getRHS()->HasSideEffects(S.Context)) {
13287       S.Diag(BO->getBeginLoc(), diag::warn_bitwise_instead_of_logical)
13288           << (BO->getOpcode() == BO_And ? "&" : "|") << OrigE->getSourceRange()
13289           << FixItHint::CreateReplacement(
13290                  BO->getOperatorLoc(),
13291                  (BO->getOpcode() == BO_And ? "&&" : "||"));
13292       S.Diag(BO->getBeginLoc(), diag::note_cast_operand_to_int);
13293     }
13294 
13295   // For conditional operators, we analyze the arguments as if they
13296   // were being fed directly into the output.
13297   if (auto *CO = dyn_cast<AbstractConditionalOperator>(SourceExpr)) {
13298     CheckConditionalOperator(S, CO, CC, T);
13299     return;
13300   }
13301 
13302   // Check implicit argument conversions for function calls.
13303   if (CallExpr *Call = dyn_cast<CallExpr>(SourceExpr))
13304     CheckImplicitArgumentConversions(S, Call, CC);
13305 
13306   // Go ahead and check any implicit conversions we might have skipped.
13307   // The non-canonical typecheck is just an optimization;
13308   // CheckImplicitConversion will filter out dead implicit conversions.
13309   if (SourceExpr->getType() != T)
13310     CheckImplicitConversion(S, SourceExpr, T, CC, nullptr, IsListInit);
13311 
13312   // Now continue drilling into this expression.
13313 
13314   if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) {
13315     // The bound subexpressions in a PseudoObjectExpr are not reachable
13316     // as transitive children.
13317     // FIXME: Use a more uniform representation for this.
13318     for (auto *SE : POE->semantics())
13319       if (auto *OVE = dyn_cast<OpaqueValueExpr>(SE))
13320         WorkList.push_back({OVE->getSourceExpr(), CC, IsListInit});
13321   }
13322 
13323   // Skip past explicit casts.
13324   if (auto *CE = dyn_cast<ExplicitCastExpr>(E)) {
13325     E = CE->getSubExpr()->IgnoreParenImpCasts();
13326     if (!CE->getType()->isVoidType() && E->getType()->isAtomicType())
13327       S.Diag(E->getBeginLoc(), diag::warn_atomic_implicit_seq_cst);
13328     WorkList.push_back({E, CC, IsListInit});
13329     return;
13330   }
13331 
13332   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
13333     // Do a somewhat different check with comparison operators.
13334     if (BO->isComparisonOp())
13335       return AnalyzeComparison(S, BO);
13336 
13337     // And with simple assignments.
13338     if (BO->getOpcode() == BO_Assign)
13339       return AnalyzeAssignment(S, BO);
13340     // And with compound assignments.
13341     if (BO->isAssignmentOp())
13342       return AnalyzeCompoundAssignment(S, BO);
13343   }
13344 
13345   // These break the otherwise-useful invariant below.  Fortunately,
13346   // we don't really need to recurse into them, because any internal
13347   // expressions should have been analyzed already when they were
13348   // built into statements.
13349   if (isa<StmtExpr>(E)) return;
13350 
13351   // Don't descend into unevaluated contexts.
13352   if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
13353 
13354   // Now just recurse over the expression's children.
13355   CC = E->getExprLoc();
13356   BinaryOperator *BO = dyn_cast<BinaryOperator>(E);
13357   bool IsLogicalAndOperator = BO && BO->getOpcode() == BO_LAnd;
13358   for (Stmt *SubStmt : E->children()) {
13359     Expr *ChildExpr = dyn_cast_or_null<Expr>(SubStmt);
13360     if (!ChildExpr)
13361       continue;
13362 
13363     if (IsLogicalAndOperator &&
13364         isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts()))
13365       // Ignore checking string literals that are in logical and operators.
13366       // This is a common pattern for asserts.
13367       continue;
13368     WorkList.push_back({ChildExpr, CC, IsListInit});
13369   }
13370 
13371   if (BO && BO->isLogicalOp()) {
13372     Expr *SubExpr = BO->getLHS()->IgnoreParenImpCasts();
13373     if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr))
13374       ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc());
13375 
13376     SubExpr = BO->getRHS()->IgnoreParenImpCasts();
13377     if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr))
13378       ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc());
13379   }
13380 
13381   if (const UnaryOperator *U = dyn_cast<UnaryOperator>(E)) {
13382     if (U->getOpcode() == UO_LNot) {
13383       ::CheckBoolLikeConversion(S, U->getSubExpr(), CC);
13384     } else if (U->getOpcode() != UO_AddrOf) {
13385       if (U->getSubExpr()->getType()->isAtomicType())
13386         S.Diag(U->getSubExpr()->getBeginLoc(),
13387                diag::warn_atomic_implicit_seq_cst);
13388     }
13389   }
13390 }
13391 
13392 /// AnalyzeImplicitConversions - Find and report any interesting
13393 /// implicit conversions in the given expression.  There are a couple
13394 /// of competing diagnostics here, -Wconversion and -Wsign-compare.
13395 static void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC,
13396                                        bool IsListInit/*= false*/) {
13397   llvm::SmallVector<AnalyzeImplicitConversionsWorkItem, 16> WorkList;
13398   WorkList.push_back({OrigE, CC, IsListInit});
13399   while (!WorkList.empty())
13400     AnalyzeImplicitConversions(S, WorkList.pop_back_val(), WorkList);
13401 }
13402 
13403 /// Diagnose integer type and any valid implicit conversion to it.
13404 static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E, const QualType &IntT) {
13405   // Taking into account implicit conversions,
13406   // allow any integer.
13407   if (!E->getType()->isIntegerType()) {
13408     S.Diag(E->getBeginLoc(),
13409            diag::err_opencl_enqueue_kernel_invalid_local_size_type);
13410     return true;
13411   }
13412   // Potentially emit standard warnings for implicit conversions if enabled
13413   // using -Wconversion.
13414   CheckImplicitConversion(S, E, IntT, E->getBeginLoc());
13415   return false;
13416 }
13417 
13418 // Helper function for Sema::DiagnoseAlwaysNonNullPointer.
13419 // Returns true when emitting a warning about taking the address of a reference.
13420 static bool CheckForReference(Sema &SemaRef, const Expr *E,
13421                               const PartialDiagnostic &PD) {
13422   E = E->IgnoreParenImpCasts();
13423 
13424   const FunctionDecl *FD = nullptr;
13425 
13426   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
13427     if (!DRE->getDecl()->getType()->isReferenceType())
13428       return false;
13429   } else if (const MemberExpr *M = dyn_cast<MemberExpr>(E)) {
13430     if (!M->getMemberDecl()->getType()->isReferenceType())
13431       return false;
13432   } else if (const CallExpr *Call = dyn_cast<CallExpr>(E)) {
13433     if (!Call->getCallReturnType(SemaRef.Context)->isReferenceType())
13434       return false;
13435     FD = Call->getDirectCallee();
13436   } else {
13437     return false;
13438   }
13439 
13440   SemaRef.Diag(E->getExprLoc(), PD);
13441 
13442   // If possible, point to location of function.
13443   if (FD) {
13444     SemaRef.Diag(FD->getLocation(), diag::note_reference_is_return_value) << FD;
13445   }
13446 
13447   return true;
13448 }
13449 
13450 // Returns true if the SourceLocation is expanded from any macro body.
13451 // Returns false if the SourceLocation is invalid, is from not in a macro
13452 // expansion, or is from expanded from a top-level macro argument.
13453 static bool IsInAnyMacroBody(const SourceManager &SM, SourceLocation Loc) {
13454   if (Loc.isInvalid())
13455     return false;
13456 
13457   while (Loc.isMacroID()) {
13458     if (SM.isMacroBodyExpansion(Loc))
13459       return true;
13460     Loc = SM.getImmediateMacroCallerLoc(Loc);
13461   }
13462 
13463   return false;
13464 }
13465 
13466 /// Diagnose pointers that are always non-null.
13467 /// \param E the expression containing the pointer
13468 /// \param NullKind NPCK_NotNull if E is a cast to bool, otherwise, E is
13469 /// compared to a null pointer
13470 /// \param IsEqual True when the comparison is equal to a null pointer
13471 /// \param Range Extra SourceRange to highlight in the diagnostic
13472 void Sema::DiagnoseAlwaysNonNullPointer(Expr *E,
13473                                         Expr::NullPointerConstantKind NullKind,
13474                                         bool IsEqual, SourceRange Range) {
13475   if (!E)
13476     return;
13477 
13478   // Don't warn inside macros.
13479   if (E->getExprLoc().isMacroID()) {
13480     const SourceManager &SM = getSourceManager();
13481     if (IsInAnyMacroBody(SM, E->getExprLoc()) ||
13482         IsInAnyMacroBody(SM, Range.getBegin()))
13483       return;
13484   }
13485   E = E->IgnoreImpCasts();
13486 
13487   const bool IsCompare = NullKind != Expr::NPCK_NotNull;
13488 
13489   if (isa<CXXThisExpr>(E)) {
13490     unsigned DiagID = IsCompare ? diag::warn_this_null_compare
13491                                 : diag::warn_this_bool_conversion;
13492     Diag(E->getExprLoc(), DiagID) << E->getSourceRange() << Range << IsEqual;
13493     return;
13494   }
13495 
13496   bool IsAddressOf = false;
13497 
13498   if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
13499     if (UO->getOpcode() != UO_AddrOf)
13500       return;
13501     IsAddressOf = true;
13502     E = UO->getSubExpr();
13503   }
13504 
13505   if (IsAddressOf) {
13506     unsigned DiagID = IsCompare
13507                           ? diag::warn_address_of_reference_null_compare
13508                           : diag::warn_address_of_reference_bool_conversion;
13509     PartialDiagnostic PD = PDiag(DiagID) << E->getSourceRange() << Range
13510                                          << IsEqual;
13511     if (CheckForReference(*this, E, PD)) {
13512       return;
13513     }
13514   }
13515 
13516   auto ComplainAboutNonnullParamOrCall = [&](const Attr *NonnullAttr) {
13517     bool IsParam = isa<NonNullAttr>(NonnullAttr);
13518     std::string Str;
13519     llvm::raw_string_ostream S(Str);
13520     E->printPretty(S, nullptr, getPrintingPolicy());
13521     unsigned DiagID = IsCompare ? diag::warn_nonnull_expr_compare
13522                                 : diag::warn_cast_nonnull_to_bool;
13523     Diag(E->getExprLoc(), DiagID) << IsParam << S.str()
13524       << E->getSourceRange() << Range << IsEqual;
13525     Diag(NonnullAttr->getLocation(), diag::note_declared_nonnull) << IsParam;
13526   };
13527 
13528   // If we have a CallExpr that is tagged with returns_nonnull, we can complain.
13529   if (auto *Call = dyn_cast<CallExpr>(E->IgnoreParenImpCasts())) {
13530     if (auto *Callee = Call->getDirectCallee()) {
13531       if (const Attr *A = Callee->getAttr<ReturnsNonNullAttr>()) {
13532         ComplainAboutNonnullParamOrCall(A);
13533         return;
13534       }
13535     }
13536   }
13537 
13538   // Expect to find a single Decl.  Skip anything more complicated.
13539   ValueDecl *D = nullptr;
13540   if (DeclRefExpr *R = dyn_cast<DeclRefExpr>(E)) {
13541     D = R->getDecl();
13542   } else if (MemberExpr *M = dyn_cast<MemberExpr>(E)) {
13543     D = M->getMemberDecl();
13544   }
13545 
13546   // Weak Decls can be null.
13547   if (!D || D->isWeak())
13548     return;
13549 
13550   // Check for parameter decl with nonnull attribute
13551   if (const auto* PV = dyn_cast<ParmVarDecl>(D)) {
13552     if (getCurFunction() &&
13553         !getCurFunction()->ModifiedNonNullParams.count(PV)) {
13554       if (const Attr *A = PV->getAttr<NonNullAttr>()) {
13555         ComplainAboutNonnullParamOrCall(A);
13556         return;
13557       }
13558 
13559       if (const auto *FD = dyn_cast<FunctionDecl>(PV->getDeclContext())) {
13560         // Skip function template not specialized yet.
13561         if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
13562           return;
13563         auto ParamIter = llvm::find(FD->parameters(), PV);
13564         assert(ParamIter != FD->param_end());
13565         unsigned ParamNo = std::distance(FD->param_begin(), ParamIter);
13566 
13567         for (const auto *NonNull : FD->specific_attrs<NonNullAttr>()) {
13568           if (!NonNull->args_size()) {
13569               ComplainAboutNonnullParamOrCall(NonNull);
13570               return;
13571           }
13572 
13573           for (const ParamIdx &ArgNo : NonNull->args()) {
13574             if (ArgNo.getASTIndex() == ParamNo) {
13575               ComplainAboutNonnullParamOrCall(NonNull);
13576               return;
13577             }
13578           }
13579         }
13580       }
13581     }
13582   }
13583 
13584   QualType T = D->getType();
13585   const bool IsArray = T->isArrayType();
13586   const bool IsFunction = T->isFunctionType();
13587 
13588   // Address of function is used to silence the function warning.
13589   if (IsAddressOf && IsFunction) {
13590     return;
13591   }
13592 
13593   // Found nothing.
13594   if (!IsAddressOf && !IsFunction && !IsArray)
13595     return;
13596 
13597   // Pretty print the expression for the diagnostic.
13598   std::string Str;
13599   llvm::raw_string_ostream S(Str);
13600   E->printPretty(S, nullptr, getPrintingPolicy());
13601 
13602   unsigned DiagID = IsCompare ? diag::warn_null_pointer_compare
13603                               : diag::warn_impcast_pointer_to_bool;
13604   enum {
13605     AddressOf,
13606     FunctionPointer,
13607     ArrayPointer
13608   } DiagType;
13609   if (IsAddressOf)
13610     DiagType = AddressOf;
13611   else if (IsFunction)
13612     DiagType = FunctionPointer;
13613   else if (IsArray)
13614     DiagType = ArrayPointer;
13615   else
13616     llvm_unreachable("Could not determine diagnostic.");
13617   Diag(E->getExprLoc(), DiagID) << DiagType << S.str() << E->getSourceRange()
13618                                 << Range << IsEqual;
13619 
13620   if (!IsFunction)
13621     return;
13622 
13623   // Suggest '&' to silence the function warning.
13624   Diag(E->getExprLoc(), diag::note_function_warning_silence)
13625       << FixItHint::CreateInsertion(E->getBeginLoc(), "&");
13626 
13627   // Check to see if '()' fixit should be emitted.
13628   QualType ReturnType;
13629   UnresolvedSet<4> NonTemplateOverloads;
13630   tryExprAsCall(*E, ReturnType, NonTemplateOverloads);
13631   if (ReturnType.isNull())
13632     return;
13633 
13634   if (IsCompare) {
13635     // There are two cases here.  If there is null constant, the only suggest
13636     // for a pointer return type.  If the null is 0, then suggest if the return
13637     // type is a pointer or an integer type.
13638     if (!ReturnType->isPointerType()) {
13639       if (NullKind == Expr::NPCK_ZeroExpression ||
13640           NullKind == Expr::NPCK_ZeroLiteral) {
13641         if (!ReturnType->isIntegerType())
13642           return;
13643       } else {
13644         return;
13645       }
13646     }
13647   } else { // !IsCompare
13648     // For function to bool, only suggest if the function pointer has bool
13649     // return type.
13650     if (!ReturnType->isSpecificBuiltinType(BuiltinType::Bool))
13651       return;
13652   }
13653   Diag(E->getExprLoc(), diag::note_function_to_function_call)
13654       << FixItHint::CreateInsertion(getLocForEndOfToken(E->getEndLoc()), "()");
13655 }
13656 
13657 /// Diagnoses "dangerous" implicit conversions within the given
13658 /// expression (which is a full expression).  Implements -Wconversion
13659 /// and -Wsign-compare.
13660 ///
13661 /// \param CC the "context" location of the implicit conversion, i.e.
13662 ///   the most location of the syntactic entity requiring the implicit
13663 ///   conversion
13664 void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
13665   // Don't diagnose in unevaluated contexts.
13666   if (isUnevaluatedContext())
13667     return;
13668 
13669   // Don't diagnose for value- or type-dependent expressions.
13670   if (E->isTypeDependent() || E->isValueDependent())
13671     return;
13672 
13673   // Check for array bounds violations in cases where the check isn't triggered
13674   // elsewhere for other Expr types (like BinaryOperators), e.g. when an
13675   // ArraySubscriptExpr is on the RHS of a variable initialization.
13676   CheckArrayAccess(E);
13677 
13678   // This is not the right CC for (e.g.) a variable initialization.
13679   AnalyzeImplicitConversions(*this, E, CC);
13680 }
13681 
13682 /// CheckBoolLikeConversion - Check conversion of given expression to boolean.
13683 /// Input argument E is a logical expression.
13684 void Sema::CheckBoolLikeConversion(Expr *E, SourceLocation CC) {
13685   ::CheckBoolLikeConversion(*this, E, CC);
13686 }
13687 
13688 /// Diagnose when expression is an integer constant expression and its evaluation
13689 /// results in integer overflow
13690 void Sema::CheckForIntOverflow (Expr *E) {
13691   // Use a work list to deal with nested struct initializers.
13692   SmallVector<Expr *, 2> Exprs(1, E);
13693 
13694   do {
13695     Expr *OriginalE = Exprs.pop_back_val();
13696     Expr *E = OriginalE->IgnoreParenCasts();
13697 
13698     if (isa<BinaryOperator>(E)) {
13699       E->EvaluateForOverflow(Context);
13700       continue;
13701     }
13702 
13703     if (auto InitList = dyn_cast<InitListExpr>(OriginalE))
13704       Exprs.append(InitList->inits().begin(), InitList->inits().end());
13705     else if (isa<ObjCBoxedExpr>(OriginalE))
13706       E->EvaluateForOverflow(Context);
13707     else if (auto Call = dyn_cast<CallExpr>(E))
13708       Exprs.append(Call->arg_begin(), Call->arg_end());
13709     else if (auto Message = dyn_cast<ObjCMessageExpr>(E))
13710       Exprs.append(Message->arg_begin(), Message->arg_end());
13711   } while (!Exprs.empty());
13712 }
13713 
13714 namespace {
13715 
13716 /// Visitor for expressions which looks for unsequenced operations on the
13717 /// same object.
13718 class SequenceChecker : public ConstEvaluatedExprVisitor<SequenceChecker> {
13719   using Base = ConstEvaluatedExprVisitor<SequenceChecker>;
13720 
13721   /// A tree of sequenced regions within an expression. Two regions are
13722   /// unsequenced if one is an ancestor or a descendent of the other. When we
13723   /// finish processing an expression with sequencing, such as a comma
13724   /// expression, we fold its tree nodes into its parent, since they are
13725   /// unsequenced with respect to nodes we will visit later.
13726   class SequenceTree {
13727     struct Value {
13728       explicit Value(unsigned Parent) : Parent(Parent), Merged(false) {}
13729       unsigned Parent : 31;
13730       unsigned Merged : 1;
13731     };
13732     SmallVector<Value, 8> Values;
13733 
13734   public:
13735     /// A region within an expression which may be sequenced with respect
13736     /// to some other region.
13737     class Seq {
13738       friend class SequenceTree;
13739 
13740       unsigned Index;
13741 
13742       explicit Seq(unsigned N) : Index(N) {}
13743 
13744     public:
13745       Seq() : Index(0) {}
13746     };
13747 
13748     SequenceTree() { Values.push_back(Value(0)); }
13749     Seq root() const { return Seq(0); }
13750 
13751     /// Create a new sequence of operations, which is an unsequenced
13752     /// subset of \p Parent. This sequence of operations is sequenced with
13753     /// respect to other children of \p Parent.
13754     Seq allocate(Seq Parent) {
13755       Values.push_back(Value(Parent.Index));
13756       return Seq(Values.size() - 1);
13757     }
13758 
13759     /// Merge a sequence of operations into its parent.
13760     void merge(Seq S) {
13761       Values[S.Index].Merged = true;
13762     }
13763 
13764     /// Determine whether two operations are unsequenced. This operation
13765     /// is asymmetric: \p Cur should be the more recent sequence, and \p Old
13766     /// should have been merged into its parent as appropriate.
13767     bool isUnsequenced(Seq Cur, Seq Old) {
13768       unsigned C = representative(Cur.Index);
13769       unsigned Target = representative(Old.Index);
13770       while (C >= Target) {
13771         if (C == Target)
13772           return true;
13773         C = Values[C].Parent;
13774       }
13775       return false;
13776     }
13777 
13778   private:
13779     /// Pick a representative for a sequence.
13780     unsigned representative(unsigned K) {
13781       if (Values[K].Merged)
13782         // Perform path compression as we go.
13783         return Values[K].Parent = representative(Values[K].Parent);
13784       return K;
13785     }
13786   };
13787 
13788   /// An object for which we can track unsequenced uses.
13789   using Object = const NamedDecl *;
13790 
13791   /// Different flavors of object usage which we track. We only track the
13792   /// least-sequenced usage of each kind.
13793   enum UsageKind {
13794     /// A read of an object. Multiple unsequenced reads are OK.
13795     UK_Use,
13796 
13797     /// A modification of an object which is sequenced before the value
13798     /// computation of the expression, such as ++n in C++.
13799     UK_ModAsValue,
13800 
13801     /// A modification of an object which is not sequenced before the value
13802     /// computation of the expression, such as n++.
13803     UK_ModAsSideEffect,
13804 
13805     UK_Count = UK_ModAsSideEffect + 1
13806   };
13807 
13808   /// Bundle together a sequencing region and the expression corresponding
13809   /// to a specific usage. One Usage is stored for each usage kind in UsageInfo.
13810   struct Usage {
13811     const Expr *UsageExpr;
13812     SequenceTree::Seq Seq;
13813 
13814     Usage() : UsageExpr(nullptr), Seq() {}
13815   };
13816 
13817   struct UsageInfo {
13818     Usage Uses[UK_Count];
13819 
13820     /// Have we issued a diagnostic for this object already?
13821     bool Diagnosed;
13822 
13823     UsageInfo() : Uses(), Diagnosed(false) {}
13824   };
13825   using UsageInfoMap = llvm::SmallDenseMap<Object, UsageInfo, 16>;
13826 
13827   Sema &SemaRef;
13828 
13829   /// Sequenced regions within the expression.
13830   SequenceTree Tree;
13831 
13832   /// Declaration modifications and references which we have seen.
13833   UsageInfoMap UsageMap;
13834 
13835   /// The region we are currently within.
13836   SequenceTree::Seq Region;
13837 
13838   /// Filled in with declarations which were modified as a side-effect
13839   /// (that is, post-increment operations).
13840   SmallVectorImpl<std::pair<Object, Usage>> *ModAsSideEffect = nullptr;
13841 
13842   /// Expressions to check later. We defer checking these to reduce
13843   /// stack usage.
13844   SmallVectorImpl<const Expr *> &WorkList;
13845 
13846   /// RAII object wrapping the visitation of a sequenced subexpression of an
13847   /// expression. At the end of this process, the side-effects of the evaluation
13848   /// become sequenced with respect to the value computation of the result, so
13849   /// we downgrade any UK_ModAsSideEffect within the evaluation to
13850   /// UK_ModAsValue.
13851   struct SequencedSubexpression {
13852     SequencedSubexpression(SequenceChecker &Self)
13853       : Self(Self), OldModAsSideEffect(Self.ModAsSideEffect) {
13854       Self.ModAsSideEffect = &ModAsSideEffect;
13855     }
13856 
13857     ~SequencedSubexpression() {
13858       for (const std::pair<Object, Usage> &M : llvm::reverse(ModAsSideEffect)) {
13859         // Add a new usage with usage kind UK_ModAsValue, and then restore
13860         // the previous usage with UK_ModAsSideEffect (thus clearing it if
13861         // the previous one was empty).
13862         UsageInfo &UI = Self.UsageMap[M.first];
13863         auto &SideEffectUsage = UI.Uses[UK_ModAsSideEffect];
13864         Self.addUsage(M.first, UI, SideEffectUsage.UsageExpr, UK_ModAsValue);
13865         SideEffectUsage = M.second;
13866       }
13867       Self.ModAsSideEffect = OldModAsSideEffect;
13868     }
13869 
13870     SequenceChecker &Self;
13871     SmallVector<std::pair<Object, Usage>, 4> ModAsSideEffect;
13872     SmallVectorImpl<std::pair<Object, Usage>> *OldModAsSideEffect;
13873   };
13874 
13875   /// RAII object wrapping the visitation of a subexpression which we might
13876   /// choose to evaluate as a constant. If any subexpression is evaluated and
13877   /// found to be non-constant, this allows us to suppress the evaluation of
13878   /// the outer expression.
13879   class EvaluationTracker {
13880   public:
13881     EvaluationTracker(SequenceChecker &Self)
13882         : Self(Self), Prev(Self.EvalTracker) {
13883       Self.EvalTracker = this;
13884     }
13885 
13886     ~EvaluationTracker() {
13887       Self.EvalTracker = Prev;
13888       if (Prev)
13889         Prev->EvalOK &= EvalOK;
13890     }
13891 
13892     bool evaluate(const Expr *E, bool &Result) {
13893       if (!EvalOK || E->isValueDependent())
13894         return false;
13895       EvalOK = E->EvaluateAsBooleanCondition(
13896           Result, Self.SemaRef.Context, Self.SemaRef.isConstantEvaluated());
13897       return EvalOK;
13898     }
13899 
13900   private:
13901     SequenceChecker &Self;
13902     EvaluationTracker *Prev;
13903     bool EvalOK = true;
13904   } *EvalTracker = nullptr;
13905 
13906   /// Find the object which is produced by the specified expression,
13907   /// if any.
13908   Object getObject(const Expr *E, bool Mod) const {
13909     E = E->IgnoreParenCasts();
13910     if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
13911       if (Mod && (UO->getOpcode() == UO_PreInc || UO->getOpcode() == UO_PreDec))
13912         return getObject(UO->getSubExpr(), Mod);
13913     } else if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
13914       if (BO->getOpcode() == BO_Comma)
13915         return getObject(BO->getRHS(), Mod);
13916       if (Mod && BO->isAssignmentOp())
13917         return getObject(BO->getLHS(), Mod);
13918     } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
13919       // FIXME: Check for more interesting cases, like "x.n = ++x.n".
13920       if (isa<CXXThisExpr>(ME->getBase()->IgnoreParenCasts()))
13921         return ME->getMemberDecl();
13922     } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
13923       // FIXME: If this is a reference, map through to its value.
13924       return DRE->getDecl();
13925     return nullptr;
13926   }
13927 
13928   /// Note that an object \p O was modified or used by an expression
13929   /// \p UsageExpr with usage kind \p UK. \p UI is the \p UsageInfo for
13930   /// the object \p O as obtained via the \p UsageMap.
13931   void addUsage(Object O, UsageInfo &UI, const Expr *UsageExpr, UsageKind UK) {
13932     // Get the old usage for the given object and usage kind.
13933     Usage &U = UI.Uses[UK];
13934     if (!U.UsageExpr || !Tree.isUnsequenced(Region, U.Seq)) {
13935       // If we have a modification as side effect and are in a sequenced
13936       // subexpression, save the old Usage so that we can restore it later
13937       // in SequencedSubexpression::~SequencedSubexpression.
13938       if (UK == UK_ModAsSideEffect && ModAsSideEffect)
13939         ModAsSideEffect->push_back(std::make_pair(O, U));
13940       // Then record the new usage with the current sequencing region.
13941       U.UsageExpr = UsageExpr;
13942       U.Seq = Region;
13943     }
13944   }
13945 
13946   /// Check whether a modification or use of an object \p O in an expression
13947   /// \p UsageExpr conflicts with a prior usage of kind \p OtherKind. \p UI is
13948   /// the \p UsageInfo for the object \p O as obtained via the \p UsageMap.
13949   /// \p IsModMod is true when we are checking for a mod-mod unsequenced
13950   /// usage and false we are checking for a mod-use unsequenced usage.
13951   void checkUsage(Object O, UsageInfo &UI, const Expr *UsageExpr,
13952                   UsageKind OtherKind, bool IsModMod) {
13953     if (UI.Diagnosed)
13954       return;
13955 
13956     const Usage &U = UI.Uses[OtherKind];
13957     if (!U.UsageExpr || !Tree.isUnsequenced(Region, U.Seq))
13958       return;
13959 
13960     const Expr *Mod = U.UsageExpr;
13961     const Expr *ModOrUse = UsageExpr;
13962     if (OtherKind == UK_Use)
13963       std::swap(Mod, ModOrUse);
13964 
13965     SemaRef.DiagRuntimeBehavior(
13966         Mod->getExprLoc(), {Mod, ModOrUse},
13967         SemaRef.PDiag(IsModMod ? diag::warn_unsequenced_mod_mod
13968                                : diag::warn_unsequenced_mod_use)
13969             << O << SourceRange(ModOrUse->getExprLoc()));
13970     UI.Diagnosed = true;
13971   }
13972 
13973   // A note on note{Pre, Post}{Use, Mod}:
13974   //
13975   // (It helps to follow the algorithm with an expression such as
13976   //  "((++k)++, k) = k" or "k = (k++, k++)". Both contain unsequenced
13977   //  operations before C++17 and both are well-defined in C++17).
13978   //
13979   // When visiting a node which uses/modify an object we first call notePreUse
13980   // or notePreMod before visiting its sub-expression(s). At this point the
13981   // children of the current node have not yet been visited and so the eventual
13982   // uses/modifications resulting from the children of the current node have not
13983   // been recorded yet.
13984   //
13985   // We then visit the children of the current node. After that notePostUse or
13986   // notePostMod is called. These will 1) detect an unsequenced modification
13987   // as side effect (as in "k++ + k") and 2) add a new usage with the
13988   // appropriate usage kind.
13989   //
13990   // We also have to be careful that some operation sequences modification as
13991   // side effect as well (for example: || or ,). To account for this we wrap
13992   // the visitation of such a sub-expression (for example: the LHS of || or ,)
13993   // with SequencedSubexpression. SequencedSubexpression is an RAII object
13994   // which record usages which are modifications as side effect, and then
13995   // downgrade them (or more accurately restore the previous usage which was a
13996   // modification as side effect) when exiting the scope of the sequenced
13997   // subexpression.
13998 
13999   void notePreUse(Object O, const Expr *UseExpr) {
14000     UsageInfo &UI = UsageMap[O];
14001     // Uses conflict with other modifications.
14002     checkUsage(O, UI, UseExpr, /*OtherKind=*/UK_ModAsValue, /*IsModMod=*/false);
14003   }
14004 
14005   void notePostUse(Object O, const Expr *UseExpr) {
14006     UsageInfo &UI = UsageMap[O];
14007     checkUsage(O, UI, UseExpr, /*OtherKind=*/UK_ModAsSideEffect,
14008                /*IsModMod=*/false);
14009     addUsage(O, UI, UseExpr, /*UsageKind=*/UK_Use);
14010   }
14011 
14012   void notePreMod(Object O, const Expr *ModExpr) {
14013     UsageInfo &UI = UsageMap[O];
14014     // Modifications conflict with other modifications and with uses.
14015     checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_ModAsValue, /*IsModMod=*/true);
14016     checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_Use, /*IsModMod=*/false);
14017   }
14018 
14019   void notePostMod(Object O, const Expr *ModExpr, UsageKind UK) {
14020     UsageInfo &UI = UsageMap[O];
14021     checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_ModAsSideEffect,
14022                /*IsModMod=*/true);
14023     addUsage(O, UI, ModExpr, /*UsageKind=*/UK);
14024   }
14025 
14026 public:
14027   SequenceChecker(Sema &S, const Expr *E,
14028                   SmallVectorImpl<const Expr *> &WorkList)
14029       : Base(S.Context), SemaRef(S), Region(Tree.root()), WorkList(WorkList) {
14030     Visit(E);
14031     // Silence a -Wunused-private-field since WorkList is now unused.
14032     // TODO: Evaluate if it can be used, and if not remove it.
14033     (void)this->WorkList;
14034   }
14035 
14036   void VisitStmt(const Stmt *S) {
14037     // Skip all statements which aren't expressions for now.
14038   }
14039 
14040   void VisitExpr(const Expr *E) {
14041     // By default, just recurse to evaluated subexpressions.
14042     Base::VisitStmt(E);
14043   }
14044 
14045   void VisitCastExpr(const CastExpr *E) {
14046     Object O = Object();
14047     if (E->getCastKind() == CK_LValueToRValue)
14048       O = getObject(E->getSubExpr(), false);
14049 
14050     if (O)
14051       notePreUse(O, E);
14052     VisitExpr(E);
14053     if (O)
14054       notePostUse(O, E);
14055   }
14056 
14057   void VisitSequencedExpressions(const Expr *SequencedBefore,
14058                                  const Expr *SequencedAfter) {
14059     SequenceTree::Seq BeforeRegion = Tree.allocate(Region);
14060     SequenceTree::Seq AfterRegion = Tree.allocate(Region);
14061     SequenceTree::Seq OldRegion = Region;
14062 
14063     {
14064       SequencedSubexpression SeqBefore(*this);
14065       Region = BeforeRegion;
14066       Visit(SequencedBefore);
14067     }
14068 
14069     Region = AfterRegion;
14070     Visit(SequencedAfter);
14071 
14072     Region = OldRegion;
14073 
14074     Tree.merge(BeforeRegion);
14075     Tree.merge(AfterRegion);
14076   }
14077 
14078   void VisitArraySubscriptExpr(const ArraySubscriptExpr *ASE) {
14079     // C++17 [expr.sub]p1:
14080     //   The expression E1[E2] is identical (by definition) to *((E1)+(E2)). The
14081     //   expression E1 is sequenced before the expression E2.
14082     if (SemaRef.getLangOpts().CPlusPlus17)
14083       VisitSequencedExpressions(ASE->getLHS(), ASE->getRHS());
14084     else {
14085       Visit(ASE->getLHS());
14086       Visit(ASE->getRHS());
14087     }
14088   }
14089 
14090   void VisitBinPtrMemD(const BinaryOperator *BO) { VisitBinPtrMem(BO); }
14091   void VisitBinPtrMemI(const BinaryOperator *BO) { VisitBinPtrMem(BO); }
14092   void VisitBinPtrMem(const BinaryOperator *BO) {
14093     // C++17 [expr.mptr.oper]p4:
14094     //  Abbreviating pm-expression.*cast-expression as E1.*E2, [...]
14095     //  the expression E1 is sequenced before the expression E2.
14096     if (SemaRef.getLangOpts().CPlusPlus17)
14097       VisitSequencedExpressions(BO->getLHS(), BO->getRHS());
14098     else {
14099       Visit(BO->getLHS());
14100       Visit(BO->getRHS());
14101     }
14102   }
14103 
14104   void VisitBinShl(const BinaryOperator *BO) { VisitBinShlShr(BO); }
14105   void VisitBinShr(const BinaryOperator *BO) { VisitBinShlShr(BO); }
14106   void VisitBinShlShr(const BinaryOperator *BO) {
14107     // C++17 [expr.shift]p4:
14108     //  The expression E1 is sequenced before the expression E2.
14109     if (SemaRef.getLangOpts().CPlusPlus17)
14110       VisitSequencedExpressions(BO->getLHS(), BO->getRHS());
14111     else {
14112       Visit(BO->getLHS());
14113       Visit(BO->getRHS());
14114     }
14115   }
14116 
14117   void VisitBinComma(const BinaryOperator *BO) {
14118     // C++11 [expr.comma]p1:
14119     //   Every value computation and side effect associated with the left
14120     //   expression is sequenced before every value computation and side
14121     //   effect associated with the right expression.
14122     VisitSequencedExpressions(BO->getLHS(), BO->getRHS());
14123   }
14124 
14125   void VisitBinAssign(const BinaryOperator *BO) {
14126     SequenceTree::Seq RHSRegion;
14127     SequenceTree::Seq LHSRegion;
14128     if (SemaRef.getLangOpts().CPlusPlus17) {
14129       RHSRegion = Tree.allocate(Region);
14130       LHSRegion = Tree.allocate(Region);
14131     } else {
14132       RHSRegion = Region;
14133       LHSRegion = Region;
14134     }
14135     SequenceTree::Seq OldRegion = Region;
14136 
14137     // C++11 [expr.ass]p1:
14138     //  [...] the assignment is sequenced after the value computation
14139     //  of the right and left operands, [...]
14140     //
14141     // so check it before inspecting the operands and update the
14142     // map afterwards.
14143     Object O = getObject(BO->getLHS(), /*Mod=*/true);
14144     if (O)
14145       notePreMod(O, BO);
14146 
14147     if (SemaRef.getLangOpts().CPlusPlus17) {
14148       // C++17 [expr.ass]p1:
14149       //  [...] The right operand is sequenced before the left operand. [...]
14150       {
14151         SequencedSubexpression SeqBefore(*this);
14152         Region = RHSRegion;
14153         Visit(BO->getRHS());
14154       }
14155 
14156       Region = LHSRegion;
14157       Visit(BO->getLHS());
14158 
14159       if (O && isa<CompoundAssignOperator>(BO))
14160         notePostUse(O, BO);
14161 
14162     } else {
14163       // C++11 does not specify any sequencing between the LHS and RHS.
14164       Region = LHSRegion;
14165       Visit(BO->getLHS());
14166 
14167       if (O && isa<CompoundAssignOperator>(BO))
14168         notePostUse(O, BO);
14169 
14170       Region = RHSRegion;
14171       Visit(BO->getRHS());
14172     }
14173 
14174     // C++11 [expr.ass]p1:
14175     //  the assignment is sequenced [...] before the value computation of the
14176     //  assignment expression.
14177     // C11 6.5.16/3 has no such rule.
14178     Region = OldRegion;
14179     if (O)
14180       notePostMod(O, BO,
14181                   SemaRef.getLangOpts().CPlusPlus ? UK_ModAsValue
14182                                                   : UK_ModAsSideEffect);
14183     if (SemaRef.getLangOpts().CPlusPlus17) {
14184       Tree.merge(RHSRegion);
14185       Tree.merge(LHSRegion);
14186     }
14187   }
14188 
14189   void VisitCompoundAssignOperator(const CompoundAssignOperator *CAO) {
14190     VisitBinAssign(CAO);
14191   }
14192 
14193   void VisitUnaryPreInc(const UnaryOperator *UO) { VisitUnaryPreIncDec(UO); }
14194   void VisitUnaryPreDec(const UnaryOperator *UO) { VisitUnaryPreIncDec(UO); }
14195   void VisitUnaryPreIncDec(const UnaryOperator *UO) {
14196     Object O = getObject(UO->getSubExpr(), true);
14197     if (!O)
14198       return VisitExpr(UO);
14199 
14200     notePreMod(O, UO);
14201     Visit(UO->getSubExpr());
14202     // C++11 [expr.pre.incr]p1:
14203     //   the expression ++x is equivalent to x+=1
14204     notePostMod(O, UO,
14205                 SemaRef.getLangOpts().CPlusPlus ? UK_ModAsValue
14206                                                 : UK_ModAsSideEffect);
14207   }
14208 
14209   void VisitUnaryPostInc(const UnaryOperator *UO) { VisitUnaryPostIncDec(UO); }
14210   void VisitUnaryPostDec(const UnaryOperator *UO) { VisitUnaryPostIncDec(UO); }
14211   void VisitUnaryPostIncDec(const UnaryOperator *UO) {
14212     Object O = getObject(UO->getSubExpr(), true);
14213     if (!O)
14214       return VisitExpr(UO);
14215 
14216     notePreMod(O, UO);
14217     Visit(UO->getSubExpr());
14218     notePostMod(O, UO, UK_ModAsSideEffect);
14219   }
14220 
14221   void VisitBinLOr(const BinaryOperator *BO) {
14222     // C++11 [expr.log.or]p2:
14223     //  If the second expression is evaluated, every value computation and
14224     //  side effect associated with the first expression is sequenced before
14225     //  every value computation and side effect associated with the
14226     //  second expression.
14227     SequenceTree::Seq LHSRegion = Tree.allocate(Region);
14228     SequenceTree::Seq RHSRegion = Tree.allocate(Region);
14229     SequenceTree::Seq OldRegion = Region;
14230 
14231     EvaluationTracker Eval(*this);
14232     {
14233       SequencedSubexpression Sequenced(*this);
14234       Region = LHSRegion;
14235       Visit(BO->getLHS());
14236     }
14237 
14238     // C++11 [expr.log.or]p1:
14239     //  [...] the second operand is not evaluated if the first operand
14240     //  evaluates to true.
14241     bool EvalResult = false;
14242     bool EvalOK = Eval.evaluate(BO->getLHS(), EvalResult);
14243     bool ShouldVisitRHS = !EvalOK || (EvalOK && !EvalResult);
14244     if (ShouldVisitRHS) {
14245       Region = RHSRegion;
14246       Visit(BO->getRHS());
14247     }
14248 
14249     Region = OldRegion;
14250     Tree.merge(LHSRegion);
14251     Tree.merge(RHSRegion);
14252   }
14253 
14254   void VisitBinLAnd(const BinaryOperator *BO) {
14255     // C++11 [expr.log.and]p2:
14256     //  If the second expression is evaluated, every value computation and
14257     //  side effect associated with the first expression is sequenced before
14258     //  every value computation and side effect associated with the
14259     //  second expression.
14260     SequenceTree::Seq LHSRegion = Tree.allocate(Region);
14261     SequenceTree::Seq RHSRegion = Tree.allocate(Region);
14262     SequenceTree::Seq OldRegion = Region;
14263 
14264     EvaluationTracker Eval(*this);
14265     {
14266       SequencedSubexpression Sequenced(*this);
14267       Region = LHSRegion;
14268       Visit(BO->getLHS());
14269     }
14270 
14271     // C++11 [expr.log.and]p1:
14272     //  [...] the second operand is not evaluated if the first operand is false.
14273     bool EvalResult = false;
14274     bool EvalOK = Eval.evaluate(BO->getLHS(), EvalResult);
14275     bool ShouldVisitRHS = !EvalOK || (EvalOK && EvalResult);
14276     if (ShouldVisitRHS) {
14277       Region = RHSRegion;
14278       Visit(BO->getRHS());
14279     }
14280 
14281     Region = OldRegion;
14282     Tree.merge(LHSRegion);
14283     Tree.merge(RHSRegion);
14284   }
14285 
14286   void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO) {
14287     // C++11 [expr.cond]p1:
14288     //  [...] Every value computation and side effect associated with the first
14289     //  expression is sequenced before every value computation and side effect
14290     //  associated with the second or third expression.
14291     SequenceTree::Seq ConditionRegion = Tree.allocate(Region);
14292 
14293     // No sequencing is specified between the true and false expression.
14294     // However since exactly one of both is going to be evaluated we can
14295     // consider them to be sequenced. This is needed to avoid warning on
14296     // something like "x ? y+= 1 : y += 2;" in the case where we will visit
14297     // both the true and false expressions because we can't evaluate x.
14298     // This will still allow us to detect an expression like (pre C++17)
14299     // "(x ? y += 1 : y += 2) = y".
14300     //
14301     // We don't wrap the visitation of the true and false expression with
14302     // SequencedSubexpression because we don't want to downgrade modifications
14303     // as side effect in the true and false expressions after the visition
14304     // is done. (for example in the expression "(x ? y++ : y++) + y" we should
14305     // not warn between the two "y++", but we should warn between the "y++"
14306     // and the "y".
14307     SequenceTree::Seq TrueRegion = Tree.allocate(Region);
14308     SequenceTree::Seq FalseRegion = Tree.allocate(Region);
14309     SequenceTree::Seq OldRegion = Region;
14310 
14311     EvaluationTracker Eval(*this);
14312     {
14313       SequencedSubexpression Sequenced(*this);
14314       Region = ConditionRegion;
14315       Visit(CO->getCond());
14316     }
14317 
14318     // C++11 [expr.cond]p1:
14319     // [...] The first expression is contextually converted to bool (Clause 4).
14320     // It is evaluated and if it is true, the result of the conditional
14321     // expression is the value of the second expression, otherwise that of the
14322     // third expression. Only one of the second and third expressions is
14323     // evaluated. [...]
14324     bool EvalResult = false;
14325     bool EvalOK = Eval.evaluate(CO->getCond(), EvalResult);
14326     bool ShouldVisitTrueExpr = !EvalOK || (EvalOK && EvalResult);
14327     bool ShouldVisitFalseExpr = !EvalOK || (EvalOK && !EvalResult);
14328     if (ShouldVisitTrueExpr) {
14329       Region = TrueRegion;
14330       Visit(CO->getTrueExpr());
14331     }
14332     if (ShouldVisitFalseExpr) {
14333       Region = FalseRegion;
14334       Visit(CO->getFalseExpr());
14335     }
14336 
14337     Region = OldRegion;
14338     Tree.merge(ConditionRegion);
14339     Tree.merge(TrueRegion);
14340     Tree.merge(FalseRegion);
14341   }
14342 
14343   void VisitCallExpr(const CallExpr *CE) {
14344     // FIXME: CXXNewExpr and CXXDeleteExpr implicitly call functions.
14345 
14346     if (CE->isUnevaluatedBuiltinCall(Context))
14347       return;
14348 
14349     // C++11 [intro.execution]p15:
14350     //   When calling a function [...], every value computation and side effect
14351     //   associated with any argument expression, or with the postfix expression
14352     //   designating the called function, is sequenced before execution of every
14353     //   expression or statement in the body of the function [and thus before
14354     //   the value computation of its result].
14355     SequencedSubexpression Sequenced(*this);
14356     SemaRef.runWithSufficientStackSpace(CE->getExprLoc(), [&] {
14357       // C++17 [expr.call]p5
14358       //   The postfix-expression is sequenced before each expression in the
14359       //   expression-list and any default argument. [...]
14360       SequenceTree::Seq CalleeRegion;
14361       SequenceTree::Seq OtherRegion;
14362       if (SemaRef.getLangOpts().CPlusPlus17) {
14363         CalleeRegion = Tree.allocate(Region);
14364         OtherRegion = Tree.allocate(Region);
14365       } else {
14366         CalleeRegion = Region;
14367         OtherRegion = Region;
14368       }
14369       SequenceTree::Seq OldRegion = Region;
14370 
14371       // Visit the callee expression first.
14372       Region = CalleeRegion;
14373       if (SemaRef.getLangOpts().CPlusPlus17) {
14374         SequencedSubexpression Sequenced(*this);
14375         Visit(CE->getCallee());
14376       } else {
14377         Visit(CE->getCallee());
14378       }
14379 
14380       // Then visit the argument expressions.
14381       Region = OtherRegion;
14382       for (const Expr *Argument : CE->arguments())
14383         Visit(Argument);
14384 
14385       Region = OldRegion;
14386       if (SemaRef.getLangOpts().CPlusPlus17) {
14387         Tree.merge(CalleeRegion);
14388         Tree.merge(OtherRegion);
14389       }
14390     });
14391   }
14392 
14393   void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *CXXOCE) {
14394     // C++17 [over.match.oper]p2:
14395     //   [...] the operator notation is first transformed to the equivalent
14396     //   function-call notation as summarized in Table 12 (where @ denotes one
14397     //   of the operators covered in the specified subclause). However, the
14398     //   operands are sequenced in the order prescribed for the built-in
14399     //   operator (Clause 8).
14400     //
14401     // From the above only overloaded binary operators and overloaded call
14402     // operators have sequencing rules in C++17 that we need to handle
14403     // separately.
14404     if (!SemaRef.getLangOpts().CPlusPlus17 ||
14405         (CXXOCE->getNumArgs() != 2 && CXXOCE->getOperator() != OO_Call))
14406       return VisitCallExpr(CXXOCE);
14407 
14408     enum {
14409       NoSequencing,
14410       LHSBeforeRHS,
14411       RHSBeforeLHS,
14412       LHSBeforeRest
14413     } SequencingKind;
14414     switch (CXXOCE->getOperator()) {
14415     case OO_Equal:
14416     case OO_PlusEqual:
14417     case OO_MinusEqual:
14418     case OO_StarEqual:
14419     case OO_SlashEqual:
14420     case OO_PercentEqual:
14421     case OO_CaretEqual:
14422     case OO_AmpEqual:
14423     case OO_PipeEqual:
14424     case OO_LessLessEqual:
14425     case OO_GreaterGreaterEqual:
14426       SequencingKind = RHSBeforeLHS;
14427       break;
14428 
14429     case OO_LessLess:
14430     case OO_GreaterGreater:
14431     case OO_AmpAmp:
14432     case OO_PipePipe:
14433     case OO_Comma:
14434     case OO_ArrowStar:
14435     case OO_Subscript:
14436       SequencingKind = LHSBeforeRHS;
14437       break;
14438 
14439     case OO_Call:
14440       SequencingKind = LHSBeforeRest;
14441       break;
14442 
14443     default:
14444       SequencingKind = NoSequencing;
14445       break;
14446     }
14447 
14448     if (SequencingKind == NoSequencing)
14449       return VisitCallExpr(CXXOCE);
14450 
14451     // This is a call, so all subexpressions are sequenced before the result.
14452     SequencedSubexpression Sequenced(*this);
14453 
14454     SemaRef.runWithSufficientStackSpace(CXXOCE->getExprLoc(), [&] {
14455       assert(SemaRef.getLangOpts().CPlusPlus17 &&
14456              "Should only get there with C++17 and above!");
14457       assert((CXXOCE->getNumArgs() == 2 || CXXOCE->getOperator() == OO_Call) &&
14458              "Should only get there with an overloaded binary operator"
14459              " or an overloaded call operator!");
14460 
14461       if (SequencingKind == LHSBeforeRest) {
14462         assert(CXXOCE->getOperator() == OO_Call &&
14463                "We should only have an overloaded call operator here!");
14464 
14465         // This is very similar to VisitCallExpr, except that we only have the
14466         // C++17 case. The postfix-expression is the first argument of the
14467         // CXXOperatorCallExpr. The expressions in the expression-list, if any,
14468         // are in the following arguments.
14469         //
14470         // Note that we intentionally do not visit the callee expression since
14471         // it is just a decayed reference to a function.
14472         SequenceTree::Seq PostfixExprRegion = Tree.allocate(Region);
14473         SequenceTree::Seq ArgsRegion = Tree.allocate(Region);
14474         SequenceTree::Seq OldRegion = Region;
14475 
14476         assert(CXXOCE->getNumArgs() >= 1 &&
14477                "An overloaded call operator must have at least one argument"
14478                " for the postfix-expression!");
14479         const Expr *PostfixExpr = CXXOCE->getArgs()[0];
14480         llvm::ArrayRef<const Expr *> Args(CXXOCE->getArgs() + 1,
14481                                           CXXOCE->getNumArgs() - 1);
14482 
14483         // Visit the postfix-expression first.
14484         {
14485           Region = PostfixExprRegion;
14486           SequencedSubexpression Sequenced(*this);
14487           Visit(PostfixExpr);
14488         }
14489 
14490         // Then visit the argument expressions.
14491         Region = ArgsRegion;
14492         for (const Expr *Arg : Args)
14493           Visit(Arg);
14494 
14495         Region = OldRegion;
14496         Tree.merge(PostfixExprRegion);
14497         Tree.merge(ArgsRegion);
14498       } else {
14499         assert(CXXOCE->getNumArgs() == 2 &&
14500                "Should only have two arguments here!");
14501         assert((SequencingKind == LHSBeforeRHS ||
14502                 SequencingKind == RHSBeforeLHS) &&
14503                "Unexpected sequencing kind!");
14504 
14505         // We do not visit the callee expression since it is just a decayed
14506         // reference to a function.
14507         const Expr *E1 = CXXOCE->getArg(0);
14508         const Expr *E2 = CXXOCE->getArg(1);
14509         if (SequencingKind == RHSBeforeLHS)
14510           std::swap(E1, E2);
14511 
14512         return VisitSequencedExpressions(E1, E2);
14513       }
14514     });
14515   }
14516 
14517   void VisitCXXConstructExpr(const CXXConstructExpr *CCE) {
14518     // This is a call, so all subexpressions are sequenced before the result.
14519     SequencedSubexpression Sequenced(*this);
14520 
14521     if (!CCE->isListInitialization())
14522       return VisitExpr(CCE);
14523 
14524     // In C++11, list initializations are sequenced.
14525     SmallVector<SequenceTree::Seq, 32> Elts;
14526     SequenceTree::Seq Parent = Region;
14527     for (CXXConstructExpr::const_arg_iterator I = CCE->arg_begin(),
14528                                               E = CCE->arg_end();
14529          I != E; ++I) {
14530       Region = Tree.allocate(Parent);
14531       Elts.push_back(Region);
14532       Visit(*I);
14533     }
14534 
14535     // Forget that the initializers are sequenced.
14536     Region = Parent;
14537     for (unsigned I = 0; I < Elts.size(); ++I)
14538       Tree.merge(Elts[I]);
14539   }
14540 
14541   void VisitInitListExpr(const InitListExpr *ILE) {
14542     if (!SemaRef.getLangOpts().CPlusPlus11)
14543       return VisitExpr(ILE);
14544 
14545     // In C++11, list initializations are sequenced.
14546     SmallVector<SequenceTree::Seq, 32> Elts;
14547     SequenceTree::Seq Parent = Region;
14548     for (unsigned I = 0; I < ILE->getNumInits(); ++I) {
14549       const Expr *E = ILE->getInit(I);
14550       if (!E)
14551         continue;
14552       Region = Tree.allocate(Parent);
14553       Elts.push_back(Region);
14554       Visit(E);
14555     }
14556 
14557     // Forget that the initializers are sequenced.
14558     Region = Parent;
14559     for (unsigned I = 0; I < Elts.size(); ++I)
14560       Tree.merge(Elts[I]);
14561   }
14562 };
14563 
14564 } // namespace
14565 
14566 void Sema::CheckUnsequencedOperations(const Expr *E) {
14567   SmallVector<const Expr *, 8> WorkList;
14568   WorkList.push_back(E);
14569   while (!WorkList.empty()) {
14570     const Expr *Item = WorkList.pop_back_val();
14571     SequenceChecker(*this, Item, WorkList);
14572   }
14573 }
14574 
14575 void Sema::CheckCompletedExpr(Expr *E, SourceLocation CheckLoc,
14576                               bool IsConstexpr) {
14577   llvm::SaveAndRestore<bool> ConstantContext(
14578       isConstantEvaluatedOverride, IsConstexpr || isa<ConstantExpr>(E));
14579   CheckImplicitConversions(E, CheckLoc);
14580   if (!E->isInstantiationDependent())
14581     CheckUnsequencedOperations(E);
14582   if (!IsConstexpr && !E->isValueDependent())
14583     CheckForIntOverflow(E);
14584   DiagnoseMisalignedMembers();
14585 }
14586 
14587 void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
14588                                        FieldDecl *BitField,
14589                                        Expr *Init) {
14590   (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
14591 }
14592 
14593 static void diagnoseArrayStarInParamType(Sema &S, QualType PType,
14594                                          SourceLocation Loc) {
14595   if (!PType->isVariablyModifiedType())
14596     return;
14597   if (const auto *PointerTy = dyn_cast<PointerType>(PType)) {
14598     diagnoseArrayStarInParamType(S, PointerTy->getPointeeType(), Loc);
14599     return;
14600   }
14601   if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) {
14602     diagnoseArrayStarInParamType(S, ReferenceTy->getPointeeType(), Loc);
14603     return;
14604   }
14605   if (const auto *ParenTy = dyn_cast<ParenType>(PType)) {
14606     diagnoseArrayStarInParamType(S, ParenTy->getInnerType(), Loc);
14607     return;
14608   }
14609 
14610   const ArrayType *AT = S.Context.getAsArrayType(PType);
14611   if (!AT)
14612     return;
14613 
14614   if (AT->getSizeModifier() != ArrayType::Star) {
14615     diagnoseArrayStarInParamType(S, AT->getElementType(), Loc);
14616     return;
14617   }
14618 
14619   S.Diag(Loc, diag::err_array_star_in_function_definition);
14620 }
14621 
14622 /// CheckParmsForFunctionDef - Check that the parameters of the given
14623 /// function are appropriate for the definition of a function. This
14624 /// takes care of any checks that cannot be performed on the
14625 /// declaration itself, e.g., that the types of each of the function
14626 /// parameters are complete.
14627 bool Sema::CheckParmsForFunctionDef(ArrayRef<ParmVarDecl *> Parameters,
14628                                     bool CheckParameterNames) {
14629   bool HasInvalidParm = false;
14630   for (ParmVarDecl *Param : Parameters) {
14631     // C99 6.7.5.3p4: the parameters in a parameter type list in a
14632     // function declarator that is part of a function definition of
14633     // that function shall not have incomplete type.
14634     //
14635     // This is also C++ [dcl.fct]p6.
14636     if (!Param->isInvalidDecl() &&
14637         RequireCompleteType(Param->getLocation(), Param->getType(),
14638                             diag::err_typecheck_decl_incomplete_type)) {
14639       Param->setInvalidDecl();
14640       HasInvalidParm = true;
14641     }
14642 
14643     // C99 6.9.1p5: If the declarator includes a parameter type list, the
14644     // declaration of each parameter shall include an identifier.
14645     if (CheckParameterNames && Param->getIdentifier() == nullptr &&
14646         !Param->isImplicit() && !getLangOpts().CPlusPlus) {
14647       // Diagnose this as an extension in C17 and earlier.
14648       if (!getLangOpts().C2x)
14649         Diag(Param->getLocation(), diag::ext_parameter_name_omitted_c2x);
14650     }
14651 
14652     // C99 6.7.5.3p12:
14653     //   If the function declarator is not part of a definition of that
14654     //   function, parameters may have incomplete type and may use the [*]
14655     //   notation in their sequences of declarator specifiers to specify
14656     //   variable length array types.
14657     QualType PType = Param->getOriginalType();
14658     // FIXME: This diagnostic should point the '[*]' if source-location
14659     // information is added for it.
14660     diagnoseArrayStarInParamType(*this, PType, Param->getLocation());
14661 
14662     // If the parameter is a c++ class type and it has to be destructed in the
14663     // callee function, declare the destructor so that it can be called by the
14664     // callee function. Do not perform any direct access check on the dtor here.
14665     if (!Param->isInvalidDecl()) {
14666       if (CXXRecordDecl *ClassDecl = Param->getType()->getAsCXXRecordDecl()) {
14667         if (!ClassDecl->isInvalidDecl() &&
14668             !ClassDecl->hasIrrelevantDestructor() &&
14669             !ClassDecl->isDependentContext() &&
14670             ClassDecl->isParamDestroyedInCallee()) {
14671           CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
14672           MarkFunctionReferenced(Param->getLocation(), Destructor);
14673           DiagnoseUseOfDecl(Destructor, Param->getLocation());
14674         }
14675       }
14676     }
14677 
14678     // Parameters with the pass_object_size attribute only need to be marked
14679     // constant at function definitions. Because we lack information about
14680     // whether we're on a declaration or definition when we're instantiating the
14681     // attribute, we need to check for constness here.
14682     if (const auto *Attr = Param->getAttr<PassObjectSizeAttr>())
14683       if (!Param->getType().isConstQualified())
14684         Diag(Param->getLocation(), diag::err_attribute_pointers_only)
14685             << Attr->getSpelling() << 1;
14686 
14687     // Check for parameter names shadowing fields from the class.
14688     if (LangOpts.CPlusPlus && !Param->isInvalidDecl()) {
14689       // The owning context for the parameter should be the function, but we
14690       // want to see if this function's declaration context is a record.
14691       DeclContext *DC = Param->getDeclContext();
14692       if (DC && DC->isFunctionOrMethod()) {
14693         if (auto *RD = dyn_cast<CXXRecordDecl>(DC->getParent()))
14694           CheckShadowInheritedFields(Param->getLocation(), Param->getDeclName(),
14695                                      RD, /*DeclIsField*/ false);
14696       }
14697     }
14698   }
14699 
14700   return HasInvalidParm;
14701 }
14702 
14703 Optional<std::pair<CharUnits, CharUnits>>
14704 static getBaseAlignmentAndOffsetFromPtr(const Expr *E, ASTContext &Ctx);
14705 
14706 /// Compute the alignment and offset of the base class object given the
14707 /// derived-to-base cast expression and the alignment and offset of the derived
14708 /// class object.
14709 static std::pair<CharUnits, CharUnits>
14710 getDerivedToBaseAlignmentAndOffset(const CastExpr *CE, QualType DerivedType,
14711                                    CharUnits BaseAlignment, CharUnits Offset,
14712                                    ASTContext &Ctx) {
14713   for (auto PathI = CE->path_begin(), PathE = CE->path_end(); PathI != PathE;
14714        ++PathI) {
14715     const CXXBaseSpecifier *Base = *PathI;
14716     const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl();
14717     if (Base->isVirtual()) {
14718       // The complete object may have a lower alignment than the non-virtual
14719       // alignment of the base, in which case the base may be misaligned. Choose
14720       // the smaller of the non-virtual alignment and BaseAlignment, which is a
14721       // conservative lower bound of the complete object alignment.
14722       CharUnits NonVirtualAlignment =
14723           Ctx.getASTRecordLayout(BaseDecl).getNonVirtualAlignment();
14724       BaseAlignment = std::min(BaseAlignment, NonVirtualAlignment);
14725       Offset = CharUnits::Zero();
14726     } else {
14727       const ASTRecordLayout &RL =
14728           Ctx.getASTRecordLayout(DerivedType->getAsCXXRecordDecl());
14729       Offset += RL.getBaseClassOffset(BaseDecl);
14730     }
14731     DerivedType = Base->getType();
14732   }
14733 
14734   return std::make_pair(BaseAlignment, Offset);
14735 }
14736 
14737 /// Compute the alignment and offset of a binary additive operator.
14738 static Optional<std::pair<CharUnits, CharUnits>>
14739 getAlignmentAndOffsetFromBinAddOrSub(const Expr *PtrE, const Expr *IntE,
14740                                      bool IsSub, ASTContext &Ctx) {
14741   QualType PointeeType = PtrE->getType()->getPointeeType();
14742 
14743   if (!PointeeType->isConstantSizeType())
14744     return llvm::None;
14745 
14746   auto P = getBaseAlignmentAndOffsetFromPtr(PtrE, Ctx);
14747 
14748   if (!P)
14749     return llvm::None;
14750 
14751   CharUnits EltSize = Ctx.getTypeSizeInChars(PointeeType);
14752   if (Optional<llvm::APSInt> IdxRes = IntE->getIntegerConstantExpr(Ctx)) {
14753     CharUnits Offset = EltSize * IdxRes->getExtValue();
14754     if (IsSub)
14755       Offset = -Offset;
14756     return std::make_pair(P->first, P->second + Offset);
14757   }
14758 
14759   // If the integer expression isn't a constant expression, compute the lower
14760   // bound of the alignment using the alignment and offset of the pointer
14761   // expression and the element size.
14762   return std::make_pair(
14763       P->first.alignmentAtOffset(P->second).alignmentAtOffset(EltSize),
14764       CharUnits::Zero());
14765 }
14766 
14767 /// This helper function takes an lvalue expression and returns the alignment of
14768 /// a VarDecl and a constant offset from the VarDecl.
14769 Optional<std::pair<CharUnits, CharUnits>>
14770 static getBaseAlignmentAndOffsetFromLValue(const Expr *E, ASTContext &Ctx) {
14771   E = E->IgnoreParens();
14772   switch (E->getStmtClass()) {
14773   default:
14774     break;
14775   case Stmt::CStyleCastExprClass:
14776   case Stmt::CXXStaticCastExprClass:
14777   case Stmt::ImplicitCastExprClass: {
14778     auto *CE = cast<CastExpr>(E);
14779     const Expr *From = CE->getSubExpr();
14780     switch (CE->getCastKind()) {
14781     default:
14782       break;
14783     case CK_NoOp:
14784       return getBaseAlignmentAndOffsetFromLValue(From, Ctx);
14785     case CK_UncheckedDerivedToBase:
14786     case CK_DerivedToBase: {
14787       auto P = getBaseAlignmentAndOffsetFromLValue(From, Ctx);
14788       if (!P)
14789         break;
14790       return getDerivedToBaseAlignmentAndOffset(CE, From->getType(), P->first,
14791                                                 P->second, Ctx);
14792     }
14793     }
14794     break;
14795   }
14796   case Stmt::ArraySubscriptExprClass: {
14797     auto *ASE = cast<ArraySubscriptExpr>(E);
14798     return getAlignmentAndOffsetFromBinAddOrSub(ASE->getBase(), ASE->getIdx(),
14799                                                 false, Ctx);
14800   }
14801   case Stmt::DeclRefExprClass: {
14802     if (auto *VD = dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) {
14803       // FIXME: If VD is captured by copy or is an escaping __block variable,
14804       // use the alignment of VD's type.
14805       if (!VD->getType()->isReferenceType())
14806         return std::make_pair(Ctx.getDeclAlign(VD), CharUnits::Zero());
14807       if (VD->hasInit())
14808         return getBaseAlignmentAndOffsetFromLValue(VD->getInit(), Ctx);
14809     }
14810     break;
14811   }
14812   case Stmt::MemberExprClass: {
14813     auto *ME = cast<MemberExpr>(E);
14814     auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl());
14815     if (!FD || FD->getType()->isReferenceType() ||
14816         FD->getParent()->isInvalidDecl())
14817       break;
14818     Optional<std::pair<CharUnits, CharUnits>> P;
14819     if (ME->isArrow())
14820       P = getBaseAlignmentAndOffsetFromPtr(ME->getBase(), Ctx);
14821     else
14822       P = getBaseAlignmentAndOffsetFromLValue(ME->getBase(), Ctx);
14823     if (!P)
14824       break;
14825     const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(FD->getParent());
14826     uint64_t Offset = Layout.getFieldOffset(FD->getFieldIndex());
14827     return std::make_pair(P->first,
14828                           P->second + CharUnits::fromQuantity(Offset));
14829   }
14830   case Stmt::UnaryOperatorClass: {
14831     auto *UO = cast<UnaryOperator>(E);
14832     switch (UO->getOpcode()) {
14833     default:
14834       break;
14835     case UO_Deref:
14836       return getBaseAlignmentAndOffsetFromPtr(UO->getSubExpr(), Ctx);
14837     }
14838     break;
14839   }
14840   case Stmt::BinaryOperatorClass: {
14841     auto *BO = cast<BinaryOperator>(E);
14842     auto Opcode = BO->getOpcode();
14843     switch (Opcode) {
14844     default:
14845       break;
14846     case BO_Comma:
14847       return getBaseAlignmentAndOffsetFromLValue(BO->getRHS(), Ctx);
14848     }
14849     break;
14850   }
14851   }
14852   return llvm::None;
14853 }
14854 
14855 /// This helper function takes a pointer expression and returns the alignment of
14856 /// a VarDecl and a constant offset from the VarDecl.
14857 Optional<std::pair<CharUnits, CharUnits>>
14858 static getBaseAlignmentAndOffsetFromPtr(const Expr *E, ASTContext &Ctx) {
14859   E = E->IgnoreParens();
14860   switch (E->getStmtClass()) {
14861   default:
14862     break;
14863   case Stmt::CStyleCastExprClass:
14864   case Stmt::CXXStaticCastExprClass:
14865   case Stmt::ImplicitCastExprClass: {
14866     auto *CE = cast<CastExpr>(E);
14867     const Expr *From = CE->getSubExpr();
14868     switch (CE->getCastKind()) {
14869     default:
14870       break;
14871     case CK_NoOp:
14872       return getBaseAlignmentAndOffsetFromPtr(From, Ctx);
14873     case CK_ArrayToPointerDecay:
14874       return getBaseAlignmentAndOffsetFromLValue(From, Ctx);
14875     case CK_UncheckedDerivedToBase:
14876     case CK_DerivedToBase: {
14877       auto P = getBaseAlignmentAndOffsetFromPtr(From, Ctx);
14878       if (!P)
14879         break;
14880       return getDerivedToBaseAlignmentAndOffset(
14881           CE, From->getType()->getPointeeType(), P->first, P->second, Ctx);
14882     }
14883     }
14884     break;
14885   }
14886   case Stmt::CXXThisExprClass: {
14887     auto *RD = E->getType()->getPointeeType()->getAsCXXRecordDecl();
14888     CharUnits Alignment = Ctx.getASTRecordLayout(RD).getNonVirtualAlignment();
14889     return std::make_pair(Alignment, CharUnits::Zero());
14890   }
14891   case Stmt::UnaryOperatorClass: {
14892     auto *UO = cast<UnaryOperator>(E);
14893     if (UO->getOpcode() == UO_AddrOf)
14894       return getBaseAlignmentAndOffsetFromLValue(UO->getSubExpr(), Ctx);
14895     break;
14896   }
14897   case Stmt::BinaryOperatorClass: {
14898     auto *BO = cast<BinaryOperator>(E);
14899     auto Opcode = BO->getOpcode();
14900     switch (Opcode) {
14901     default:
14902       break;
14903     case BO_Add:
14904     case BO_Sub: {
14905       const Expr *LHS = BO->getLHS(), *RHS = BO->getRHS();
14906       if (Opcode == BO_Add && !RHS->getType()->isIntegralOrEnumerationType())
14907         std::swap(LHS, RHS);
14908       return getAlignmentAndOffsetFromBinAddOrSub(LHS, RHS, Opcode == BO_Sub,
14909                                                   Ctx);
14910     }
14911     case BO_Comma:
14912       return getBaseAlignmentAndOffsetFromPtr(BO->getRHS(), Ctx);
14913     }
14914     break;
14915   }
14916   }
14917   return llvm::None;
14918 }
14919 
14920 static CharUnits getPresumedAlignmentOfPointer(const Expr *E, Sema &S) {
14921   // See if we can compute the alignment of a VarDecl and an offset from it.
14922   Optional<std::pair<CharUnits, CharUnits>> P =
14923       getBaseAlignmentAndOffsetFromPtr(E, S.Context);
14924 
14925   if (P)
14926     return P->first.alignmentAtOffset(P->second);
14927 
14928   // If that failed, return the type's alignment.
14929   return S.Context.getTypeAlignInChars(E->getType()->getPointeeType());
14930 }
14931 
14932 /// CheckCastAlign - Implements -Wcast-align, which warns when a
14933 /// pointer cast increases the alignment requirements.
14934 void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
14935   // This is actually a lot of work to potentially be doing on every
14936   // cast; don't do it if we're ignoring -Wcast_align (as is the default).
14937   if (getDiagnostics().isIgnored(diag::warn_cast_align, TRange.getBegin()))
14938     return;
14939 
14940   // Ignore dependent types.
14941   if (T->isDependentType() || Op->getType()->isDependentType())
14942     return;
14943 
14944   // Require that the destination be a pointer type.
14945   const PointerType *DestPtr = T->getAs<PointerType>();
14946   if (!DestPtr) return;
14947 
14948   // If the destination has alignment 1, we're done.
14949   QualType DestPointee = DestPtr->getPointeeType();
14950   if (DestPointee->isIncompleteType()) return;
14951   CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
14952   if (DestAlign.isOne()) return;
14953 
14954   // Require that the source be a pointer type.
14955   const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
14956   if (!SrcPtr) return;
14957   QualType SrcPointee = SrcPtr->getPointeeType();
14958 
14959   // Explicitly allow casts from cv void*.  We already implicitly
14960   // allowed casts to cv void*, since they have alignment 1.
14961   // Also allow casts involving incomplete types, which implicitly
14962   // includes 'void'.
14963   if (SrcPointee->isIncompleteType()) return;
14964 
14965   CharUnits SrcAlign = getPresumedAlignmentOfPointer(Op, *this);
14966 
14967   if (SrcAlign >= DestAlign) return;
14968 
14969   Diag(TRange.getBegin(), diag::warn_cast_align)
14970     << Op->getType() << T
14971     << static_cast<unsigned>(SrcAlign.getQuantity())
14972     << static_cast<unsigned>(DestAlign.getQuantity())
14973     << TRange << Op->getSourceRange();
14974 }
14975 
14976 /// Check whether this array fits the idiom of a size-one tail padded
14977 /// array member of a struct.
14978 ///
14979 /// We avoid emitting out-of-bounds access warnings for such arrays as they are
14980 /// commonly used to emulate flexible arrays in C89 code.
14981 static bool IsTailPaddedMemberArray(Sema &S, const llvm::APInt &Size,
14982                                     const NamedDecl *ND) {
14983   if (Size != 1 || !ND) return false;
14984 
14985   const FieldDecl *FD = dyn_cast<FieldDecl>(ND);
14986   if (!FD) return false;
14987 
14988   // Don't consider sizes resulting from macro expansions or template argument
14989   // substitution to form C89 tail-padded arrays.
14990 
14991   TypeSourceInfo *TInfo = FD->getTypeSourceInfo();
14992   while (TInfo) {
14993     TypeLoc TL = TInfo->getTypeLoc();
14994     // Look through typedefs.
14995     if (TypedefTypeLoc TTL = TL.getAs<TypedefTypeLoc>()) {
14996       const TypedefNameDecl *TDL = TTL.getTypedefNameDecl();
14997       TInfo = TDL->getTypeSourceInfo();
14998       continue;
14999     }
15000     if (ConstantArrayTypeLoc CTL = TL.getAs<ConstantArrayTypeLoc>()) {
15001       const Expr *SizeExpr = dyn_cast<IntegerLiteral>(CTL.getSizeExpr());
15002       if (!SizeExpr || SizeExpr->getExprLoc().isMacroID())
15003         return false;
15004     }
15005     break;
15006   }
15007 
15008   const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext());
15009   if (!RD) return false;
15010   if (RD->isUnion()) return false;
15011   if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
15012     if (!CRD->isStandardLayout()) return false;
15013   }
15014 
15015   // See if this is the last field decl in the record.
15016   const Decl *D = FD;
15017   while ((D = D->getNextDeclInContext()))
15018     if (isa<FieldDecl>(D))
15019       return false;
15020   return true;
15021 }
15022 
15023 void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
15024                             const ArraySubscriptExpr *ASE,
15025                             bool AllowOnePastEnd, bool IndexNegated) {
15026   // Already diagnosed by the constant evaluator.
15027   if (isConstantEvaluated())
15028     return;
15029 
15030   IndexExpr = IndexExpr->IgnoreParenImpCasts();
15031   if (IndexExpr->isValueDependent())
15032     return;
15033 
15034   const Type *EffectiveType =
15035       BaseExpr->getType()->getPointeeOrArrayElementType();
15036   BaseExpr = BaseExpr->IgnoreParenCasts();
15037   const ConstantArrayType *ArrayTy =
15038       Context.getAsConstantArrayType(BaseExpr->getType());
15039 
15040   const Type *BaseType =
15041       ArrayTy == nullptr ? nullptr : ArrayTy->getElementType().getTypePtr();
15042   bool IsUnboundedArray = (BaseType == nullptr);
15043   if (EffectiveType->isDependentType() ||
15044       (!IsUnboundedArray && BaseType->isDependentType()))
15045     return;
15046 
15047   Expr::EvalResult Result;
15048   if (!IndexExpr->EvaluateAsInt(Result, Context, Expr::SE_AllowSideEffects))
15049     return;
15050 
15051   llvm::APSInt index = Result.Val.getInt();
15052   if (IndexNegated) {
15053     index.setIsUnsigned(false);
15054     index = -index;
15055   }
15056 
15057   const NamedDecl *ND = nullptr;
15058   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
15059     ND = DRE->getDecl();
15060   if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
15061     ND = ME->getMemberDecl();
15062 
15063   if (IsUnboundedArray) {
15064     if (index.isUnsigned() || !index.isNegative()) {
15065       const auto &ASTC = getASTContext();
15066       unsigned AddrBits =
15067           ASTC.getTargetInfo().getPointerWidth(ASTC.getTargetAddressSpace(
15068               EffectiveType->getCanonicalTypeInternal()));
15069       if (index.getBitWidth() < AddrBits)
15070         index = index.zext(AddrBits);
15071       Optional<CharUnits> ElemCharUnits =
15072           ASTC.getTypeSizeInCharsIfKnown(EffectiveType);
15073       // PR50741 - If EffectiveType has unknown size (e.g., if it's a void
15074       // pointer) bounds-checking isn't meaningful.
15075       if (!ElemCharUnits)
15076         return;
15077       llvm::APInt ElemBytes(index.getBitWidth(), ElemCharUnits->getQuantity());
15078       // If index has more active bits than address space, we already know
15079       // we have a bounds violation to warn about.  Otherwise, compute
15080       // address of (index + 1)th element, and warn about bounds violation
15081       // only if that address exceeds address space.
15082       if (index.getActiveBits() <= AddrBits) {
15083         bool Overflow;
15084         llvm::APInt Product(index);
15085         Product += 1;
15086         Product = Product.umul_ov(ElemBytes, Overflow);
15087         if (!Overflow && Product.getActiveBits() <= AddrBits)
15088           return;
15089       }
15090 
15091       // Need to compute max possible elements in address space, since that
15092       // is included in diag message.
15093       llvm::APInt MaxElems = llvm::APInt::getMaxValue(AddrBits);
15094       MaxElems = MaxElems.zext(std::max(AddrBits + 1, ElemBytes.getBitWidth()));
15095       MaxElems += 1;
15096       ElemBytes = ElemBytes.zextOrTrunc(MaxElems.getBitWidth());
15097       MaxElems = MaxElems.udiv(ElemBytes);
15098 
15099       unsigned DiagID =
15100           ASE ? diag::warn_array_index_exceeds_max_addressable_bounds
15101               : diag::warn_ptr_arith_exceeds_max_addressable_bounds;
15102 
15103       // Diag message shows element size in bits and in "bytes" (platform-
15104       // dependent CharUnits)
15105       DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
15106                           PDiag(DiagID)
15107                               << toString(index, 10, true) << AddrBits
15108                               << (unsigned)ASTC.toBits(*ElemCharUnits)
15109                               << toString(ElemBytes, 10, false)
15110                               << toString(MaxElems, 10, false)
15111                               << (unsigned)MaxElems.getLimitedValue(~0U)
15112                               << IndexExpr->getSourceRange());
15113 
15114       if (!ND) {
15115         // Try harder to find a NamedDecl to point at in the note.
15116         while (const auto *ASE = dyn_cast<ArraySubscriptExpr>(BaseExpr))
15117           BaseExpr = ASE->getBase()->IgnoreParenCasts();
15118         if (const auto *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
15119           ND = DRE->getDecl();
15120         if (const auto *ME = dyn_cast<MemberExpr>(BaseExpr))
15121           ND = ME->getMemberDecl();
15122       }
15123 
15124       if (ND)
15125         DiagRuntimeBehavior(ND->getBeginLoc(), BaseExpr,
15126                             PDiag(diag::note_array_declared_here) << ND);
15127     }
15128     return;
15129   }
15130 
15131   if (index.isUnsigned() || !index.isNegative()) {
15132     // It is possible that the type of the base expression after
15133     // IgnoreParenCasts is incomplete, even though the type of the base
15134     // expression before IgnoreParenCasts is complete (see PR39746 for an
15135     // example). In this case we have no information about whether the array
15136     // access exceeds the array bounds. However we can still diagnose an array
15137     // access which precedes the array bounds.
15138     if (BaseType->isIncompleteType())
15139       return;
15140 
15141     llvm::APInt size = ArrayTy->getSize();
15142     if (!size.isStrictlyPositive())
15143       return;
15144 
15145     if (BaseType != EffectiveType) {
15146       // Make sure we're comparing apples to apples when comparing index to size
15147       uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType);
15148       uint64_t array_typesize = Context.getTypeSize(BaseType);
15149       // Handle ptrarith_typesize being zero, such as when casting to void*
15150       if (!ptrarith_typesize) ptrarith_typesize = 1;
15151       if (ptrarith_typesize != array_typesize) {
15152         // There's a cast to a different size type involved
15153         uint64_t ratio = array_typesize / ptrarith_typesize;
15154         // TODO: Be smarter about handling cases where array_typesize is not a
15155         // multiple of ptrarith_typesize
15156         if (ptrarith_typesize * ratio == array_typesize)
15157           size *= llvm::APInt(size.getBitWidth(), ratio);
15158       }
15159     }
15160 
15161     if (size.getBitWidth() > index.getBitWidth())
15162       index = index.zext(size.getBitWidth());
15163     else if (size.getBitWidth() < index.getBitWidth())
15164       size = size.zext(index.getBitWidth());
15165 
15166     // For array subscripting the index must be less than size, but for pointer
15167     // arithmetic also allow the index (offset) to be equal to size since
15168     // computing the next address after the end of the array is legal and
15169     // commonly done e.g. in C++ iterators and range-based for loops.
15170     if (AllowOnePastEnd ? index.ule(size) : index.ult(size))
15171       return;
15172 
15173     // Also don't warn for arrays of size 1 which are members of some
15174     // structure. These are often used to approximate flexible arrays in C89
15175     // code.
15176     if (IsTailPaddedMemberArray(*this, size, ND))
15177       return;
15178 
15179     // Suppress the warning if the subscript expression (as identified by the
15180     // ']' location) and the index expression are both from macro expansions
15181     // within a system header.
15182     if (ASE) {
15183       SourceLocation RBracketLoc = SourceMgr.getSpellingLoc(
15184           ASE->getRBracketLoc());
15185       if (SourceMgr.isInSystemHeader(RBracketLoc)) {
15186         SourceLocation IndexLoc =
15187             SourceMgr.getSpellingLoc(IndexExpr->getBeginLoc());
15188         if (SourceMgr.isWrittenInSameFile(RBracketLoc, IndexLoc))
15189           return;
15190       }
15191     }
15192 
15193     unsigned DiagID = ASE ? diag::warn_array_index_exceeds_bounds
15194                           : diag::warn_ptr_arith_exceeds_bounds;
15195 
15196     DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
15197                         PDiag(DiagID) << toString(index, 10, true)
15198                                       << toString(size, 10, true)
15199                                       << (unsigned)size.getLimitedValue(~0U)
15200                                       << IndexExpr->getSourceRange());
15201   } else {
15202     unsigned DiagID = diag::warn_array_index_precedes_bounds;
15203     if (!ASE) {
15204       DiagID = diag::warn_ptr_arith_precedes_bounds;
15205       if (index.isNegative()) index = -index;
15206     }
15207 
15208     DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
15209                         PDiag(DiagID) << toString(index, 10, true)
15210                                       << IndexExpr->getSourceRange());
15211   }
15212 
15213   if (!ND) {
15214     // Try harder to find a NamedDecl to point at in the note.
15215     while (const auto *ASE = dyn_cast<ArraySubscriptExpr>(BaseExpr))
15216       BaseExpr = ASE->getBase()->IgnoreParenCasts();
15217     if (const auto *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
15218       ND = DRE->getDecl();
15219     if (const auto *ME = dyn_cast<MemberExpr>(BaseExpr))
15220       ND = ME->getMemberDecl();
15221   }
15222 
15223   if (ND)
15224     DiagRuntimeBehavior(ND->getBeginLoc(), BaseExpr,
15225                         PDiag(diag::note_array_declared_here) << ND);
15226 }
15227 
15228 void Sema::CheckArrayAccess(const Expr *expr) {
15229   int AllowOnePastEnd = 0;
15230   while (expr) {
15231     expr = expr->IgnoreParenImpCasts();
15232     switch (expr->getStmtClass()) {
15233       case Stmt::ArraySubscriptExprClass: {
15234         const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
15235         CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE,
15236                          AllowOnePastEnd > 0);
15237         expr = ASE->getBase();
15238         break;
15239       }
15240       case Stmt::MemberExprClass: {
15241         expr = cast<MemberExpr>(expr)->getBase();
15242         break;
15243       }
15244       case Stmt::OMPArraySectionExprClass: {
15245         const OMPArraySectionExpr *ASE = cast<OMPArraySectionExpr>(expr);
15246         if (ASE->getLowerBound())
15247           CheckArrayAccess(ASE->getBase(), ASE->getLowerBound(),
15248                            /*ASE=*/nullptr, AllowOnePastEnd > 0);
15249         return;
15250       }
15251       case Stmt::UnaryOperatorClass: {
15252         // Only unwrap the * and & unary operators
15253         const UnaryOperator *UO = cast<UnaryOperator>(expr);
15254         expr = UO->getSubExpr();
15255         switch (UO->getOpcode()) {
15256           case UO_AddrOf:
15257             AllowOnePastEnd++;
15258             break;
15259           case UO_Deref:
15260             AllowOnePastEnd--;
15261             break;
15262           default:
15263             return;
15264         }
15265         break;
15266       }
15267       case Stmt::ConditionalOperatorClass: {
15268         const ConditionalOperator *cond = cast<ConditionalOperator>(expr);
15269         if (const Expr *lhs = cond->getLHS())
15270           CheckArrayAccess(lhs);
15271         if (const Expr *rhs = cond->getRHS())
15272           CheckArrayAccess(rhs);
15273         return;
15274       }
15275       case Stmt::CXXOperatorCallExprClass: {
15276         const auto *OCE = cast<CXXOperatorCallExpr>(expr);
15277         for (const auto *Arg : OCE->arguments())
15278           CheckArrayAccess(Arg);
15279         return;
15280       }
15281       default:
15282         return;
15283     }
15284   }
15285 }
15286 
15287 //===--- CHECK: Objective-C retain cycles ----------------------------------//
15288 
15289 namespace {
15290 
15291 struct RetainCycleOwner {
15292   VarDecl *Variable = nullptr;
15293   SourceRange Range;
15294   SourceLocation Loc;
15295   bool Indirect = false;
15296 
15297   RetainCycleOwner() = default;
15298 
15299   void setLocsFrom(Expr *e) {
15300     Loc = e->getExprLoc();
15301     Range = e->getSourceRange();
15302   }
15303 };
15304 
15305 } // namespace
15306 
15307 /// Consider whether capturing the given variable can possibly lead to
15308 /// a retain cycle.
15309 static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) {
15310   // In ARC, it's captured strongly iff the variable has __strong
15311   // lifetime.  In MRR, it's captured strongly if the variable is
15312   // __block and has an appropriate type.
15313   if (var->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
15314     return false;
15315 
15316   owner.Variable = var;
15317   if (ref)
15318     owner.setLocsFrom(ref);
15319   return true;
15320 }
15321 
15322 static bool findRetainCycleOwner(Sema &S, Expr *e, RetainCycleOwner &owner) {
15323   while (true) {
15324     e = e->IgnoreParens();
15325     if (CastExpr *cast = dyn_cast<CastExpr>(e)) {
15326       switch (cast->getCastKind()) {
15327       case CK_BitCast:
15328       case CK_LValueBitCast:
15329       case CK_LValueToRValue:
15330       case CK_ARCReclaimReturnedObject:
15331         e = cast->getSubExpr();
15332         continue;
15333 
15334       default:
15335         return false;
15336       }
15337     }
15338 
15339     if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) {
15340       ObjCIvarDecl *ivar = ref->getDecl();
15341       if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
15342         return false;
15343 
15344       // Try to find a retain cycle in the base.
15345       if (!findRetainCycleOwner(S, ref->getBase(), owner))
15346         return false;
15347 
15348       if (ref->isFreeIvar()) owner.setLocsFrom(ref);
15349       owner.Indirect = true;
15350       return true;
15351     }
15352 
15353     if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) {
15354       VarDecl *var = dyn_cast<VarDecl>(ref->getDecl());
15355       if (!var) return false;
15356       return considerVariable(var, ref, owner);
15357     }
15358 
15359     if (MemberExpr *member = dyn_cast<MemberExpr>(e)) {
15360       if (member->isArrow()) return false;
15361 
15362       // Don't count this as an indirect ownership.
15363       e = member->getBase();
15364       continue;
15365     }
15366 
15367     if (PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) {
15368       // Only pay attention to pseudo-objects on property references.
15369       ObjCPropertyRefExpr *pre
15370         = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm()
15371                                               ->IgnoreParens());
15372       if (!pre) return false;
15373       if (pre->isImplicitProperty()) return false;
15374       ObjCPropertyDecl *property = pre->getExplicitProperty();
15375       if (!property->isRetaining() &&
15376           !(property->getPropertyIvarDecl() &&
15377             property->getPropertyIvarDecl()->getType()
15378               .getObjCLifetime() == Qualifiers::OCL_Strong))
15379           return false;
15380 
15381       owner.Indirect = true;
15382       if (pre->isSuperReceiver()) {
15383         owner.Variable = S.getCurMethodDecl()->getSelfDecl();
15384         if (!owner.Variable)
15385           return false;
15386         owner.Loc = pre->getLocation();
15387         owner.Range = pre->getSourceRange();
15388         return true;
15389       }
15390       e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase())
15391                               ->getSourceExpr());
15392       continue;
15393     }
15394 
15395     // Array ivars?
15396 
15397     return false;
15398   }
15399 }
15400 
15401 namespace {
15402 
15403   struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> {
15404     ASTContext &Context;
15405     VarDecl *Variable;
15406     Expr *Capturer = nullptr;
15407     bool VarWillBeReased = false;
15408 
15409     FindCaptureVisitor(ASTContext &Context, VarDecl *variable)
15410         : EvaluatedExprVisitor<FindCaptureVisitor>(Context),
15411           Context(Context), Variable(variable) {}
15412 
15413     void VisitDeclRefExpr(DeclRefExpr *ref) {
15414       if (ref->getDecl() == Variable && !Capturer)
15415         Capturer = ref;
15416     }
15417 
15418     void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) {
15419       if (Capturer) return;
15420       Visit(ref->getBase());
15421       if (Capturer && ref->isFreeIvar())
15422         Capturer = ref;
15423     }
15424 
15425     void VisitBlockExpr(BlockExpr *block) {
15426       // Look inside nested blocks
15427       if (block->getBlockDecl()->capturesVariable(Variable))
15428         Visit(block->getBlockDecl()->getBody());
15429     }
15430 
15431     void VisitOpaqueValueExpr(OpaqueValueExpr *OVE) {
15432       if (Capturer) return;
15433       if (OVE->getSourceExpr())
15434         Visit(OVE->getSourceExpr());
15435     }
15436 
15437     void VisitBinaryOperator(BinaryOperator *BinOp) {
15438       if (!Variable || VarWillBeReased || BinOp->getOpcode() != BO_Assign)
15439         return;
15440       Expr *LHS = BinOp->getLHS();
15441       if (const DeclRefExpr *DRE = dyn_cast_or_null<DeclRefExpr>(LHS)) {
15442         if (DRE->getDecl() != Variable)
15443           return;
15444         if (Expr *RHS = BinOp->getRHS()) {
15445           RHS = RHS->IgnoreParenCasts();
15446           Optional<llvm::APSInt> Value;
15447           VarWillBeReased =
15448               (RHS && (Value = RHS->getIntegerConstantExpr(Context)) &&
15449                *Value == 0);
15450         }
15451       }
15452     }
15453   };
15454 
15455 } // namespace
15456 
15457 /// Check whether the given argument is a block which captures a
15458 /// variable.
15459 static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) {
15460   assert(owner.Variable && owner.Loc.isValid());
15461 
15462   e = e->IgnoreParenCasts();
15463 
15464   // Look through [^{...} copy] and Block_copy(^{...}).
15465   if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(e)) {
15466     Selector Cmd = ME->getSelector();
15467     if (Cmd.isUnarySelector() && Cmd.getNameForSlot(0) == "copy") {
15468       e = ME->getInstanceReceiver();
15469       if (!e)
15470         return nullptr;
15471       e = e->IgnoreParenCasts();
15472     }
15473   } else if (CallExpr *CE = dyn_cast<CallExpr>(e)) {
15474     if (CE->getNumArgs() == 1) {
15475       FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl());
15476       if (Fn) {
15477         const IdentifierInfo *FnI = Fn->getIdentifier();
15478         if (FnI && FnI->isStr("_Block_copy")) {
15479           e = CE->getArg(0)->IgnoreParenCasts();
15480         }
15481       }
15482     }
15483   }
15484 
15485   BlockExpr *block = dyn_cast<BlockExpr>(e);
15486   if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable))
15487     return nullptr;
15488 
15489   FindCaptureVisitor visitor(S.Context, owner.Variable);
15490   visitor.Visit(block->getBlockDecl()->getBody());
15491   return visitor.VarWillBeReased ? nullptr : visitor.Capturer;
15492 }
15493 
15494 static void diagnoseRetainCycle(Sema &S, Expr *capturer,
15495                                 RetainCycleOwner &owner) {
15496   assert(capturer);
15497   assert(owner.Variable && owner.Loc.isValid());
15498 
15499   S.Diag(capturer->getExprLoc(), diag::warn_arc_retain_cycle)
15500     << owner.Variable << capturer->getSourceRange();
15501   S.Diag(owner.Loc, diag::note_arc_retain_cycle_owner)
15502     << owner.Indirect << owner.Range;
15503 }
15504 
15505 /// Check for a keyword selector that starts with the word 'add' or
15506 /// 'set'.
15507 static bool isSetterLikeSelector(Selector sel) {
15508   if (sel.isUnarySelector()) return false;
15509 
15510   StringRef str = sel.getNameForSlot(0);
15511   while (!str.empty() && str.front() == '_') str = str.substr(1);
15512   if (str.startswith("set"))
15513     str = str.substr(3);
15514   else if (str.startswith("add")) {
15515     // Specially allow 'addOperationWithBlock:'.
15516     if (sel.getNumArgs() == 1 && str.startswith("addOperationWithBlock"))
15517       return false;
15518     str = str.substr(3);
15519   }
15520   else
15521     return false;
15522 
15523   if (str.empty()) return true;
15524   return !isLowercase(str.front());
15525 }
15526 
15527 static Optional<int> GetNSMutableArrayArgumentIndex(Sema &S,
15528                                                     ObjCMessageExpr *Message) {
15529   bool IsMutableArray = S.NSAPIObj->isSubclassOfNSClass(
15530                                                 Message->getReceiverInterface(),
15531                                                 NSAPI::ClassId_NSMutableArray);
15532   if (!IsMutableArray) {
15533     return None;
15534   }
15535 
15536   Selector Sel = Message->getSelector();
15537 
15538   Optional<NSAPI::NSArrayMethodKind> MKOpt =
15539     S.NSAPIObj->getNSArrayMethodKind(Sel);
15540   if (!MKOpt) {
15541     return None;
15542   }
15543 
15544   NSAPI::NSArrayMethodKind MK = *MKOpt;
15545 
15546   switch (MK) {
15547     case NSAPI::NSMutableArr_addObject:
15548     case NSAPI::NSMutableArr_insertObjectAtIndex:
15549     case NSAPI::NSMutableArr_setObjectAtIndexedSubscript:
15550       return 0;
15551     case NSAPI::NSMutableArr_replaceObjectAtIndex:
15552       return 1;
15553 
15554     default:
15555       return None;
15556   }
15557 
15558   return None;
15559 }
15560 
15561 static
15562 Optional<int> GetNSMutableDictionaryArgumentIndex(Sema &S,
15563                                                   ObjCMessageExpr *Message) {
15564   bool IsMutableDictionary = S.NSAPIObj->isSubclassOfNSClass(
15565                                             Message->getReceiverInterface(),
15566                                             NSAPI::ClassId_NSMutableDictionary);
15567   if (!IsMutableDictionary) {
15568     return None;
15569   }
15570 
15571   Selector Sel = Message->getSelector();
15572 
15573   Optional<NSAPI::NSDictionaryMethodKind> MKOpt =
15574     S.NSAPIObj->getNSDictionaryMethodKind(Sel);
15575   if (!MKOpt) {
15576     return None;
15577   }
15578 
15579   NSAPI::NSDictionaryMethodKind MK = *MKOpt;
15580 
15581   switch (MK) {
15582     case NSAPI::NSMutableDict_setObjectForKey:
15583     case NSAPI::NSMutableDict_setValueForKey:
15584     case NSAPI::NSMutableDict_setObjectForKeyedSubscript:
15585       return 0;
15586 
15587     default:
15588       return None;
15589   }
15590 
15591   return None;
15592 }
15593 
15594 static Optional<int> GetNSSetArgumentIndex(Sema &S, ObjCMessageExpr *Message) {
15595   bool IsMutableSet = S.NSAPIObj->isSubclassOfNSClass(
15596                                                 Message->getReceiverInterface(),
15597                                                 NSAPI::ClassId_NSMutableSet);
15598 
15599   bool IsMutableOrderedSet = S.NSAPIObj->isSubclassOfNSClass(
15600                                             Message->getReceiverInterface(),
15601                                             NSAPI::ClassId_NSMutableOrderedSet);
15602   if (!IsMutableSet && !IsMutableOrderedSet) {
15603     return None;
15604   }
15605 
15606   Selector Sel = Message->getSelector();
15607 
15608   Optional<NSAPI::NSSetMethodKind> MKOpt = S.NSAPIObj->getNSSetMethodKind(Sel);
15609   if (!MKOpt) {
15610     return None;
15611   }
15612 
15613   NSAPI::NSSetMethodKind MK = *MKOpt;
15614 
15615   switch (MK) {
15616     case NSAPI::NSMutableSet_addObject:
15617     case NSAPI::NSOrderedSet_setObjectAtIndex:
15618     case NSAPI::NSOrderedSet_setObjectAtIndexedSubscript:
15619     case NSAPI::NSOrderedSet_insertObjectAtIndex:
15620       return 0;
15621     case NSAPI::NSOrderedSet_replaceObjectAtIndexWithObject:
15622       return 1;
15623   }
15624 
15625   return None;
15626 }
15627 
15628 void Sema::CheckObjCCircularContainer(ObjCMessageExpr *Message) {
15629   if (!Message->isInstanceMessage()) {
15630     return;
15631   }
15632 
15633   Optional<int> ArgOpt;
15634 
15635   if (!(ArgOpt = GetNSMutableArrayArgumentIndex(*this, Message)) &&
15636       !(ArgOpt = GetNSMutableDictionaryArgumentIndex(*this, Message)) &&
15637       !(ArgOpt = GetNSSetArgumentIndex(*this, Message))) {
15638     return;
15639   }
15640 
15641   int ArgIndex = *ArgOpt;
15642 
15643   Expr *Arg = Message->getArg(ArgIndex)->IgnoreImpCasts();
15644   if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Arg)) {
15645     Arg = OE->getSourceExpr()->IgnoreImpCasts();
15646   }
15647 
15648   if (Message->getReceiverKind() == ObjCMessageExpr::SuperInstance) {
15649     if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) {
15650       if (ArgRE->isObjCSelfExpr()) {
15651         Diag(Message->getSourceRange().getBegin(),
15652              diag::warn_objc_circular_container)
15653           << ArgRE->getDecl() << StringRef("'super'");
15654       }
15655     }
15656   } else {
15657     Expr *Receiver = Message->getInstanceReceiver()->IgnoreImpCasts();
15658 
15659     if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Receiver)) {
15660       Receiver = OE->getSourceExpr()->IgnoreImpCasts();
15661     }
15662 
15663     if (DeclRefExpr *ReceiverRE = dyn_cast<DeclRefExpr>(Receiver)) {
15664       if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) {
15665         if (ReceiverRE->getDecl() == ArgRE->getDecl()) {
15666           ValueDecl *Decl = ReceiverRE->getDecl();
15667           Diag(Message->getSourceRange().getBegin(),
15668                diag::warn_objc_circular_container)
15669             << Decl << Decl;
15670           if (!ArgRE->isObjCSelfExpr()) {
15671             Diag(Decl->getLocation(),
15672                  diag::note_objc_circular_container_declared_here)
15673               << Decl;
15674           }
15675         }
15676       }
15677     } else if (ObjCIvarRefExpr *IvarRE = dyn_cast<ObjCIvarRefExpr>(Receiver)) {
15678       if (ObjCIvarRefExpr *IvarArgRE = dyn_cast<ObjCIvarRefExpr>(Arg)) {
15679         if (IvarRE->getDecl() == IvarArgRE->getDecl()) {
15680           ObjCIvarDecl *Decl = IvarRE->getDecl();
15681           Diag(Message->getSourceRange().getBegin(),
15682                diag::warn_objc_circular_container)
15683             << Decl << Decl;
15684           Diag(Decl->getLocation(),
15685                diag::note_objc_circular_container_declared_here)
15686             << Decl;
15687         }
15688       }
15689     }
15690   }
15691 }
15692 
15693 /// Check a message send to see if it's likely to cause a retain cycle.
15694 void Sema::checkRetainCycles(ObjCMessageExpr *msg) {
15695   // Only check instance methods whose selector looks like a setter.
15696   if (!msg->isInstanceMessage() || !isSetterLikeSelector(msg->getSelector()))
15697     return;
15698 
15699   // Try to find a variable that the receiver is strongly owned by.
15700   RetainCycleOwner owner;
15701   if (msg->getReceiverKind() == ObjCMessageExpr::Instance) {
15702     if (!findRetainCycleOwner(*this, msg->getInstanceReceiver(), owner))
15703       return;
15704   } else {
15705     assert(msg->getReceiverKind() == ObjCMessageExpr::SuperInstance);
15706     owner.Variable = getCurMethodDecl()->getSelfDecl();
15707     owner.Loc = msg->getSuperLoc();
15708     owner.Range = msg->getSuperLoc();
15709   }
15710 
15711   // Check whether the receiver is captured by any of the arguments.
15712   const ObjCMethodDecl *MD = msg->getMethodDecl();
15713   for (unsigned i = 0, e = msg->getNumArgs(); i != e; ++i) {
15714     if (Expr *capturer = findCapturingExpr(*this, msg->getArg(i), owner)) {
15715       // noescape blocks should not be retained by the method.
15716       if (MD && MD->parameters()[i]->hasAttr<NoEscapeAttr>())
15717         continue;
15718       return diagnoseRetainCycle(*this, capturer, owner);
15719     }
15720   }
15721 }
15722 
15723 /// Check a property assign to see if it's likely to cause a retain cycle.
15724 void Sema::checkRetainCycles(Expr *receiver, Expr *argument) {
15725   RetainCycleOwner owner;
15726   if (!findRetainCycleOwner(*this, receiver, owner))
15727     return;
15728 
15729   if (Expr *capturer = findCapturingExpr(*this, argument, owner))
15730     diagnoseRetainCycle(*this, capturer, owner);
15731 }
15732 
15733 void Sema::checkRetainCycles(VarDecl *Var, Expr *Init) {
15734   RetainCycleOwner Owner;
15735   if (!considerVariable(Var, /*DeclRefExpr=*/nullptr, Owner))
15736     return;
15737 
15738   // Because we don't have an expression for the variable, we have to set the
15739   // location explicitly here.
15740   Owner.Loc = Var->getLocation();
15741   Owner.Range = Var->getSourceRange();
15742 
15743   if (Expr *Capturer = findCapturingExpr(*this, Init, Owner))
15744     diagnoseRetainCycle(*this, Capturer, Owner);
15745 }
15746 
15747 static bool checkUnsafeAssignLiteral(Sema &S, SourceLocation Loc,
15748                                      Expr *RHS, bool isProperty) {
15749   // Check if RHS is an Objective-C object literal, which also can get
15750   // immediately zapped in a weak reference.  Note that we explicitly
15751   // allow ObjCStringLiterals, since those are designed to never really die.
15752   RHS = RHS->IgnoreParenImpCasts();
15753 
15754   // This enum needs to match with the 'select' in
15755   // warn_objc_arc_literal_assign (off-by-1).
15756   Sema::ObjCLiteralKind Kind = S.CheckLiteralKind(RHS);
15757   if (Kind == Sema::LK_String || Kind == Sema::LK_None)
15758     return false;
15759 
15760   S.Diag(Loc, diag::warn_arc_literal_assign)
15761     << (unsigned) Kind
15762     << (isProperty ? 0 : 1)
15763     << RHS->getSourceRange();
15764 
15765   return true;
15766 }
15767 
15768 static bool checkUnsafeAssignObject(Sema &S, SourceLocation Loc,
15769                                     Qualifiers::ObjCLifetime LT,
15770                                     Expr *RHS, bool isProperty) {
15771   // Strip off any implicit cast added to get to the one ARC-specific.
15772   while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
15773     if (cast->getCastKind() == CK_ARCConsumeObject) {
15774       S.Diag(Loc, diag::warn_arc_retained_assign)
15775         << (LT == Qualifiers::OCL_ExplicitNone)
15776         << (isProperty ? 0 : 1)
15777         << RHS->getSourceRange();
15778       return true;
15779     }
15780     RHS = cast->getSubExpr();
15781   }
15782 
15783   if (LT == Qualifiers::OCL_Weak &&
15784       checkUnsafeAssignLiteral(S, Loc, RHS, isProperty))
15785     return true;
15786 
15787   return false;
15788 }
15789 
15790 bool Sema::checkUnsafeAssigns(SourceLocation Loc,
15791                               QualType LHS, Expr *RHS) {
15792   Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime();
15793 
15794   if (LT != Qualifiers::OCL_Weak && LT != Qualifiers::OCL_ExplicitNone)
15795     return false;
15796 
15797   if (checkUnsafeAssignObject(*this, Loc, LT, RHS, false))
15798     return true;
15799 
15800   return false;
15801 }
15802 
15803 void Sema::checkUnsafeExprAssigns(SourceLocation Loc,
15804                               Expr *LHS, Expr *RHS) {
15805   QualType LHSType;
15806   // PropertyRef on LHS type need be directly obtained from
15807   // its declaration as it has a PseudoType.
15808   ObjCPropertyRefExpr *PRE
15809     = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens());
15810   if (PRE && !PRE->isImplicitProperty()) {
15811     const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
15812     if (PD)
15813       LHSType = PD->getType();
15814   }
15815 
15816   if (LHSType.isNull())
15817     LHSType = LHS->getType();
15818 
15819   Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime();
15820 
15821   if (LT == Qualifiers::OCL_Weak) {
15822     if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc))
15823       getCurFunction()->markSafeWeakUse(LHS);
15824   }
15825 
15826   if (checkUnsafeAssigns(Loc, LHSType, RHS))
15827     return;
15828 
15829   // FIXME. Check for other life times.
15830   if (LT != Qualifiers::OCL_None)
15831     return;
15832 
15833   if (PRE) {
15834     if (PRE->isImplicitProperty())
15835       return;
15836     const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
15837     if (!PD)
15838       return;
15839 
15840     unsigned Attributes = PD->getPropertyAttributes();
15841     if (Attributes & ObjCPropertyAttribute::kind_assign) {
15842       // when 'assign' attribute was not explicitly specified
15843       // by user, ignore it and rely on property type itself
15844       // for lifetime info.
15845       unsigned AsWrittenAttr = PD->getPropertyAttributesAsWritten();
15846       if (!(AsWrittenAttr & ObjCPropertyAttribute::kind_assign) &&
15847           LHSType->isObjCRetainableType())
15848         return;
15849 
15850       while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
15851         if (cast->getCastKind() == CK_ARCConsumeObject) {
15852           Diag(Loc, diag::warn_arc_retained_property_assign)
15853           << RHS->getSourceRange();
15854           return;
15855         }
15856         RHS = cast->getSubExpr();
15857       }
15858     } else if (Attributes & ObjCPropertyAttribute::kind_weak) {
15859       if (checkUnsafeAssignObject(*this, Loc, Qualifiers::OCL_Weak, RHS, true))
15860         return;
15861     }
15862   }
15863 }
15864 
15865 //===--- CHECK: Empty statement body (-Wempty-body) ---------------------===//
15866 
15867 static bool ShouldDiagnoseEmptyStmtBody(const SourceManager &SourceMgr,
15868                                         SourceLocation StmtLoc,
15869                                         const NullStmt *Body) {
15870   // Do not warn if the body is a macro that expands to nothing, e.g:
15871   //
15872   // #define CALL(x)
15873   // if (condition)
15874   //   CALL(0);
15875   if (Body->hasLeadingEmptyMacro())
15876     return false;
15877 
15878   // Get line numbers of statement and body.
15879   bool StmtLineInvalid;
15880   unsigned StmtLine = SourceMgr.getPresumedLineNumber(StmtLoc,
15881                                                       &StmtLineInvalid);
15882   if (StmtLineInvalid)
15883     return false;
15884 
15885   bool BodyLineInvalid;
15886   unsigned BodyLine = SourceMgr.getSpellingLineNumber(Body->getSemiLoc(),
15887                                                       &BodyLineInvalid);
15888   if (BodyLineInvalid)
15889     return false;
15890 
15891   // Warn if null statement and body are on the same line.
15892   if (StmtLine != BodyLine)
15893     return false;
15894 
15895   return true;
15896 }
15897 
15898 void Sema::DiagnoseEmptyStmtBody(SourceLocation StmtLoc,
15899                                  const Stmt *Body,
15900                                  unsigned DiagID) {
15901   // Since this is a syntactic check, don't emit diagnostic for template
15902   // instantiations, this just adds noise.
15903   if (CurrentInstantiationScope)
15904     return;
15905 
15906   // The body should be a null statement.
15907   const NullStmt *NBody = dyn_cast<NullStmt>(Body);
15908   if (!NBody)
15909     return;
15910 
15911   // Do the usual checks.
15912   if (!ShouldDiagnoseEmptyStmtBody(SourceMgr, StmtLoc, NBody))
15913     return;
15914 
15915   Diag(NBody->getSemiLoc(), DiagID);
15916   Diag(NBody->getSemiLoc(), diag::note_empty_body_on_separate_line);
15917 }
15918 
15919 void Sema::DiagnoseEmptyLoopBody(const Stmt *S,
15920                                  const Stmt *PossibleBody) {
15921   assert(!CurrentInstantiationScope); // Ensured by caller
15922 
15923   SourceLocation StmtLoc;
15924   const Stmt *Body;
15925   unsigned DiagID;
15926   if (const ForStmt *FS = dyn_cast<ForStmt>(S)) {
15927     StmtLoc = FS->getRParenLoc();
15928     Body = FS->getBody();
15929     DiagID = diag::warn_empty_for_body;
15930   } else if (const WhileStmt *WS = dyn_cast<WhileStmt>(S)) {
15931     StmtLoc = WS->getCond()->getSourceRange().getEnd();
15932     Body = WS->getBody();
15933     DiagID = diag::warn_empty_while_body;
15934   } else
15935     return; // Neither `for' nor `while'.
15936 
15937   // The body should be a null statement.
15938   const NullStmt *NBody = dyn_cast<NullStmt>(Body);
15939   if (!NBody)
15940     return;
15941 
15942   // Skip expensive checks if diagnostic is disabled.
15943   if (Diags.isIgnored(DiagID, NBody->getSemiLoc()))
15944     return;
15945 
15946   // Do the usual checks.
15947   if (!ShouldDiagnoseEmptyStmtBody(SourceMgr, StmtLoc, NBody))
15948     return;
15949 
15950   // `for(...);' and `while(...);' are popular idioms, so in order to keep
15951   // noise level low, emit diagnostics only if for/while is followed by a
15952   // CompoundStmt, e.g.:
15953   //    for (int i = 0; i < n; i++);
15954   //    {
15955   //      a(i);
15956   //    }
15957   // or if for/while is followed by a statement with more indentation
15958   // than for/while itself:
15959   //    for (int i = 0; i < n; i++);
15960   //      a(i);
15961   bool ProbableTypo = isa<CompoundStmt>(PossibleBody);
15962   if (!ProbableTypo) {
15963     bool BodyColInvalid;
15964     unsigned BodyCol = SourceMgr.getPresumedColumnNumber(
15965         PossibleBody->getBeginLoc(), &BodyColInvalid);
15966     if (BodyColInvalid)
15967       return;
15968 
15969     bool StmtColInvalid;
15970     unsigned StmtCol =
15971         SourceMgr.getPresumedColumnNumber(S->getBeginLoc(), &StmtColInvalid);
15972     if (StmtColInvalid)
15973       return;
15974 
15975     if (BodyCol > StmtCol)
15976       ProbableTypo = true;
15977   }
15978 
15979   if (ProbableTypo) {
15980     Diag(NBody->getSemiLoc(), DiagID);
15981     Diag(NBody->getSemiLoc(), diag::note_empty_body_on_separate_line);
15982   }
15983 }
15984 
15985 //===--- CHECK: Warn on self move with std::move. -------------------------===//
15986 
15987 /// DiagnoseSelfMove - Emits a warning if a value is moved to itself.
15988 void Sema::DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr,
15989                              SourceLocation OpLoc) {
15990   if (Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess, OpLoc))
15991     return;
15992 
15993   if (inTemplateInstantiation())
15994     return;
15995 
15996   // Strip parens and casts away.
15997   LHSExpr = LHSExpr->IgnoreParenImpCasts();
15998   RHSExpr = RHSExpr->IgnoreParenImpCasts();
15999 
16000   // Check for a call expression
16001   const CallExpr *CE = dyn_cast<CallExpr>(RHSExpr);
16002   if (!CE || CE->getNumArgs() != 1)
16003     return;
16004 
16005   // Check for a call to std::move
16006   if (!CE->isCallToStdMove())
16007     return;
16008 
16009   // Get argument from std::move
16010   RHSExpr = CE->getArg(0);
16011 
16012   const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
16013   const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
16014 
16015   // Two DeclRefExpr's, check that the decls are the same.
16016   if (LHSDeclRef && RHSDeclRef) {
16017     if (!LHSDeclRef->getDecl() || !RHSDeclRef->getDecl())
16018       return;
16019     if (LHSDeclRef->getDecl()->getCanonicalDecl() !=
16020         RHSDeclRef->getDecl()->getCanonicalDecl())
16021       return;
16022 
16023     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
16024                                         << LHSExpr->getSourceRange()
16025                                         << RHSExpr->getSourceRange();
16026     return;
16027   }
16028 
16029   // Member variables require a different approach to check for self moves.
16030   // MemberExpr's are the same if every nested MemberExpr refers to the same
16031   // Decl and that the base Expr's are DeclRefExpr's with the same Decl or
16032   // the base Expr's are CXXThisExpr's.
16033   const Expr *LHSBase = LHSExpr;
16034   const Expr *RHSBase = RHSExpr;
16035   const MemberExpr *LHSME = dyn_cast<MemberExpr>(LHSExpr);
16036   const MemberExpr *RHSME = dyn_cast<MemberExpr>(RHSExpr);
16037   if (!LHSME || !RHSME)
16038     return;
16039 
16040   while (LHSME && RHSME) {
16041     if (LHSME->getMemberDecl()->getCanonicalDecl() !=
16042         RHSME->getMemberDecl()->getCanonicalDecl())
16043       return;
16044 
16045     LHSBase = LHSME->getBase();
16046     RHSBase = RHSME->getBase();
16047     LHSME = dyn_cast<MemberExpr>(LHSBase);
16048     RHSME = dyn_cast<MemberExpr>(RHSBase);
16049   }
16050 
16051   LHSDeclRef = dyn_cast<DeclRefExpr>(LHSBase);
16052   RHSDeclRef = dyn_cast<DeclRefExpr>(RHSBase);
16053   if (LHSDeclRef && RHSDeclRef) {
16054     if (!LHSDeclRef->getDecl() || !RHSDeclRef->getDecl())
16055       return;
16056     if (LHSDeclRef->getDecl()->getCanonicalDecl() !=
16057         RHSDeclRef->getDecl()->getCanonicalDecl())
16058       return;
16059 
16060     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
16061                                         << LHSExpr->getSourceRange()
16062                                         << RHSExpr->getSourceRange();
16063     return;
16064   }
16065 
16066   if (isa<CXXThisExpr>(LHSBase) && isa<CXXThisExpr>(RHSBase))
16067     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
16068                                         << LHSExpr->getSourceRange()
16069                                         << RHSExpr->getSourceRange();
16070 }
16071 
16072 //===--- Layout compatibility ----------------------------------------------//
16073 
16074 static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2);
16075 
16076 /// Check if two enumeration types are layout-compatible.
16077 static bool isLayoutCompatible(ASTContext &C, EnumDecl *ED1, EnumDecl *ED2) {
16078   // C++11 [dcl.enum] p8:
16079   // Two enumeration types are layout-compatible if they have the same
16080   // underlying type.
16081   return ED1->isComplete() && ED2->isComplete() &&
16082          C.hasSameType(ED1->getIntegerType(), ED2->getIntegerType());
16083 }
16084 
16085 /// Check if two fields are layout-compatible.
16086 static bool isLayoutCompatible(ASTContext &C, FieldDecl *Field1,
16087                                FieldDecl *Field2) {
16088   if (!isLayoutCompatible(C, Field1->getType(), Field2->getType()))
16089     return false;
16090 
16091   if (Field1->isBitField() != Field2->isBitField())
16092     return false;
16093 
16094   if (Field1->isBitField()) {
16095     // Make sure that the bit-fields are the same length.
16096     unsigned Bits1 = Field1->getBitWidthValue(C);
16097     unsigned Bits2 = Field2->getBitWidthValue(C);
16098 
16099     if (Bits1 != Bits2)
16100       return false;
16101   }
16102 
16103   return true;
16104 }
16105 
16106 /// Check if two standard-layout structs are layout-compatible.
16107 /// (C++11 [class.mem] p17)
16108 static bool isLayoutCompatibleStruct(ASTContext &C, RecordDecl *RD1,
16109                                      RecordDecl *RD2) {
16110   // If both records are C++ classes, check that base classes match.
16111   if (const CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(RD1)) {
16112     // If one of records is a CXXRecordDecl we are in C++ mode,
16113     // thus the other one is a CXXRecordDecl, too.
16114     const CXXRecordDecl *D2CXX = cast<CXXRecordDecl>(RD2);
16115     // Check number of base classes.
16116     if (D1CXX->getNumBases() != D2CXX->getNumBases())
16117       return false;
16118 
16119     // Check the base classes.
16120     for (CXXRecordDecl::base_class_const_iterator
16121                Base1 = D1CXX->bases_begin(),
16122            BaseEnd1 = D1CXX->bases_end(),
16123               Base2 = D2CXX->bases_begin();
16124          Base1 != BaseEnd1;
16125          ++Base1, ++Base2) {
16126       if (!isLayoutCompatible(C, Base1->getType(), Base2->getType()))
16127         return false;
16128     }
16129   } else if (const CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(RD2)) {
16130     // If only RD2 is a C++ class, it should have zero base classes.
16131     if (D2CXX->getNumBases() > 0)
16132       return false;
16133   }
16134 
16135   // Check the fields.
16136   RecordDecl::field_iterator Field2 = RD2->field_begin(),
16137                              Field2End = RD2->field_end(),
16138                              Field1 = RD1->field_begin(),
16139                              Field1End = RD1->field_end();
16140   for ( ; Field1 != Field1End && Field2 != Field2End; ++Field1, ++Field2) {
16141     if (!isLayoutCompatible(C, *Field1, *Field2))
16142       return false;
16143   }
16144   if (Field1 != Field1End || Field2 != Field2End)
16145     return false;
16146 
16147   return true;
16148 }
16149 
16150 /// Check if two standard-layout unions are layout-compatible.
16151 /// (C++11 [class.mem] p18)
16152 static bool isLayoutCompatibleUnion(ASTContext &C, RecordDecl *RD1,
16153                                     RecordDecl *RD2) {
16154   llvm::SmallPtrSet<FieldDecl *, 8> UnmatchedFields;
16155   for (auto *Field2 : RD2->fields())
16156     UnmatchedFields.insert(Field2);
16157 
16158   for (auto *Field1 : RD1->fields()) {
16159     llvm::SmallPtrSet<FieldDecl *, 8>::iterator
16160         I = UnmatchedFields.begin(),
16161         E = UnmatchedFields.end();
16162 
16163     for ( ; I != E; ++I) {
16164       if (isLayoutCompatible(C, Field1, *I)) {
16165         bool Result = UnmatchedFields.erase(*I);
16166         (void) Result;
16167         assert(Result);
16168         break;
16169       }
16170     }
16171     if (I == E)
16172       return false;
16173   }
16174 
16175   return UnmatchedFields.empty();
16176 }
16177 
16178 static bool isLayoutCompatible(ASTContext &C, RecordDecl *RD1,
16179                                RecordDecl *RD2) {
16180   if (RD1->isUnion() != RD2->isUnion())
16181     return false;
16182 
16183   if (RD1->isUnion())
16184     return isLayoutCompatibleUnion(C, RD1, RD2);
16185   else
16186     return isLayoutCompatibleStruct(C, RD1, RD2);
16187 }
16188 
16189 /// Check if two types are layout-compatible in C++11 sense.
16190 static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2) {
16191   if (T1.isNull() || T2.isNull())
16192     return false;
16193 
16194   // C++11 [basic.types] p11:
16195   // If two types T1 and T2 are the same type, then T1 and T2 are
16196   // layout-compatible types.
16197   if (C.hasSameType(T1, T2))
16198     return true;
16199 
16200   T1 = T1.getCanonicalType().getUnqualifiedType();
16201   T2 = T2.getCanonicalType().getUnqualifiedType();
16202 
16203   const Type::TypeClass TC1 = T1->getTypeClass();
16204   const Type::TypeClass TC2 = T2->getTypeClass();
16205 
16206   if (TC1 != TC2)
16207     return false;
16208 
16209   if (TC1 == Type::Enum) {
16210     return isLayoutCompatible(C,
16211                               cast<EnumType>(T1)->getDecl(),
16212                               cast<EnumType>(T2)->getDecl());
16213   } else if (TC1 == Type::Record) {
16214     if (!T1->isStandardLayoutType() || !T2->isStandardLayoutType())
16215       return false;
16216 
16217     return isLayoutCompatible(C,
16218                               cast<RecordType>(T1)->getDecl(),
16219                               cast<RecordType>(T2)->getDecl());
16220   }
16221 
16222   return false;
16223 }
16224 
16225 //===--- CHECK: pointer_with_type_tag attribute: datatypes should match ----//
16226 
16227 /// Given a type tag expression find the type tag itself.
16228 ///
16229 /// \param TypeExpr Type tag expression, as it appears in user's code.
16230 ///
16231 /// \param VD Declaration of an identifier that appears in a type tag.
16232 ///
16233 /// \param MagicValue Type tag magic value.
16234 ///
16235 /// \param isConstantEvaluated whether the evalaution should be performed in
16236 
16237 /// constant context.
16238 static bool FindTypeTagExpr(const Expr *TypeExpr, const ASTContext &Ctx,
16239                             const ValueDecl **VD, uint64_t *MagicValue,
16240                             bool isConstantEvaluated) {
16241   while(true) {
16242     if (!TypeExpr)
16243       return false;
16244 
16245     TypeExpr = TypeExpr->IgnoreParenImpCasts()->IgnoreParenCasts();
16246 
16247     switch (TypeExpr->getStmtClass()) {
16248     case Stmt::UnaryOperatorClass: {
16249       const UnaryOperator *UO = cast<UnaryOperator>(TypeExpr);
16250       if (UO->getOpcode() == UO_AddrOf || UO->getOpcode() == UO_Deref) {
16251         TypeExpr = UO->getSubExpr();
16252         continue;
16253       }
16254       return false;
16255     }
16256 
16257     case Stmt::DeclRefExprClass: {
16258       const DeclRefExpr *DRE = cast<DeclRefExpr>(TypeExpr);
16259       *VD = DRE->getDecl();
16260       return true;
16261     }
16262 
16263     case Stmt::IntegerLiteralClass: {
16264       const IntegerLiteral *IL = cast<IntegerLiteral>(TypeExpr);
16265       llvm::APInt MagicValueAPInt = IL->getValue();
16266       if (MagicValueAPInt.getActiveBits() <= 64) {
16267         *MagicValue = MagicValueAPInt.getZExtValue();
16268         return true;
16269       } else
16270         return false;
16271     }
16272 
16273     case Stmt::BinaryConditionalOperatorClass:
16274     case Stmt::ConditionalOperatorClass: {
16275       const AbstractConditionalOperator *ACO =
16276           cast<AbstractConditionalOperator>(TypeExpr);
16277       bool Result;
16278       if (ACO->getCond()->EvaluateAsBooleanCondition(Result, Ctx,
16279                                                      isConstantEvaluated)) {
16280         if (Result)
16281           TypeExpr = ACO->getTrueExpr();
16282         else
16283           TypeExpr = ACO->getFalseExpr();
16284         continue;
16285       }
16286       return false;
16287     }
16288 
16289     case Stmt::BinaryOperatorClass: {
16290       const BinaryOperator *BO = cast<BinaryOperator>(TypeExpr);
16291       if (BO->getOpcode() == BO_Comma) {
16292         TypeExpr = BO->getRHS();
16293         continue;
16294       }
16295       return false;
16296     }
16297 
16298     default:
16299       return false;
16300     }
16301   }
16302 }
16303 
16304 /// Retrieve the C type corresponding to type tag TypeExpr.
16305 ///
16306 /// \param TypeExpr Expression that specifies a type tag.
16307 ///
16308 /// \param MagicValues Registered magic values.
16309 ///
16310 /// \param FoundWrongKind Set to true if a type tag was found, but of a wrong
16311 ///        kind.
16312 ///
16313 /// \param TypeInfo Information about the corresponding C type.
16314 ///
16315 /// \param isConstantEvaluated whether the evalaution should be performed in
16316 /// constant context.
16317 ///
16318 /// \returns true if the corresponding C type was found.
16319 static bool GetMatchingCType(
16320     const IdentifierInfo *ArgumentKind, const Expr *TypeExpr,
16321     const ASTContext &Ctx,
16322     const llvm::DenseMap<Sema::TypeTagMagicValue, Sema::TypeTagData>
16323         *MagicValues,
16324     bool &FoundWrongKind, Sema::TypeTagData &TypeInfo,
16325     bool isConstantEvaluated) {
16326   FoundWrongKind = false;
16327 
16328   // Variable declaration that has type_tag_for_datatype attribute.
16329   const ValueDecl *VD = nullptr;
16330 
16331   uint64_t MagicValue;
16332 
16333   if (!FindTypeTagExpr(TypeExpr, Ctx, &VD, &MagicValue, isConstantEvaluated))
16334     return false;
16335 
16336   if (VD) {
16337     if (TypeTagForDatatypeAttr *I = VD->getAttr<TypeTagForDatatypeAttr>()) {
16338       if (I->getArgumentKind() != ArgumentKind) {
16339         FoundWrongKind = true;
16340         return false;
16341       }
16342       TypeInfo.Type = I->getMatchingCType();
16343       TypeInfo.LayoutCompatible = I->getLayoutCompatible();
16344       TypeInfo.MustBeNull = I->getMustBeNull();
16345       return true;
16346     }
16347     return false;
16348   }
16349 
16350   if (!MagicValues)
16351     return false;
16352 
16353   llvm::DenseMap<Sema::TypeTagMagicValue,
16354                  Sema::TypeTagData>::const_iterator I =
16355       MagicValues->find(std::make_pair(ArgumentKind, MagicValue));
16356   if (I == MagicValues->end())
16357     return false;
16358 
16359   TypeInfo = I->second;
16360   return true;
16361 }
16362 
16363 void Sema::RegisterTypeTagForDatatype(const IdentifierInfo *ArgumentKind,
16364                                       uint64_t MagicValue, QualType Type,
16365                                       bool LayoutCompatible,
16366                                       bool MustBeNull) {
16367   if (!TypeTagForDatatypeMagicValues)
16368     TypeTagForDatatypeMagicValues.reset(
16369         new llvm::DenseMap<TypeTagMagicValue, TypeTagData>);
16370 
16371   TypeTagMagicValue Magic(ArgumentKind, MagicValue);
16372   (*TypeTagForDatatypeMagicValues)[Magic] =
16373       TypeTagData(Type, LayoutCompatible, MustBeNull);
16374 }
16375 
16376 static bool IsSameCharType(QualType T1, QualType T2) {
16377   const BuiltinType *BT1 = T1->getAs<BuiltinType>();
16378   if (!BT1)
16379     return false;
16380 
16381   const BuiltinType *BT2 = T2->getAs<BuiltinType>();
16382   if (!BT2)
16383     return false;
16384 
16385   BuiltinType::Kind T1Kind = BT1->getKind();
16386   BuiltinType::Kind T2Kind = BT2->getKind();
16387 
16388   return (T1Kind == BuiltinType::SChar  && T2Kind == BuiltinType::Char_S) ||
16389          (T1Kind == BuiltinType::UChar  && T2Kind == BuiltinType::Char_U) ||
16390          (T1Kind == BuiltinType::Char_U && T2Kind == BuiltinType::UChar) ||
16391          (T1Kind == BuiltinType::Char_S && T2Kind == BuiltinType::SChar);
16392 }
16393 
16394 void Sema::CheckArgumentWithTypeTag(const ArgumentWithTypeTagAttr *Attr,
16395                                     const ArrayRef<const Expr *> ExprArgs,
16396                                     SourceLocation CallSiteLoc) {
16397   const IdentifierInfo *ArgumentKind = Attr->getArgumentKind();
16398   bool IsPointerAttr = Attr->getIsPointer();
16399 
16400   // Retrieve the argument representing the 'type_tag'.
16401   unsigned TypeTagIdxAST = Attr->getTypeTagIdx().getASTIndex();
16402   if (TypeTagIdxAST >= ExprArgs.size()) {
16403     Diag(CallSiteLoc, diag::err_tag_index_out_of_range)
16404         << 0 << Attr->getTypeTagIdx().getSourceIndex();
16405     return;
16406   }
16407   const Expr *TypeTagExpr = ExprArgs[TypeTagIdxAST];
16408   bool FoundWrongKind;
16409   TypeTagData TypeInfo;
16410   if (!GetMatchingCType(ArgumentKind, TypeTagExpr, Context,
16411                         TypeTagForDatatypeMagicValues.get(), FoundWrongKind,
16412                         TypeInfo, isConstantEvaluated())) {
16413     if (FoundWrongKind)
16414       Diag(TypeTagExpr->getExprLoc(),
16415            diag::warn_type_tag_for_datatype_wrong_kind)
16416         << TypeTagExpr->getSourceRange();
16417     return;
16418   }
16419 
16420   // Retrieve the argument representing the 'arg_idx'.
16421   unsigned ArgumentIdxAST = Attr->getArgumentIdx().getASTIndex();
16422   if (ArgumentIdxAST >= ExprArgs.size()) {
16423     Diag(CallSiteLoc, diag::err_tag_index_out_of_range)
16424         << 1 << Attr->getArgumentIdx().getSourceIndex();
16425     return;
16426   }
16427   const Expr *ArgumentExpr = ExprArgs[ArgumentIdxAST];
16428   if (IsPointerAttr) {
16429     // Skip implicit cast of pointer to `void *' (as a function argument).
16430     if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgumentExpr))
16431       if (ICE->getType()->isVoidPointerType() &&
16432           ICE->getCastKind() == CK_BitCast)
16433         ArgumentExpr = ICE->getSubExpr();
16434   }
16435   QualType ArgumentType = ArgumentExpr->getType();
16436 
16437   // Passing a `void*' pointer shouldn't trigger a warning.
16438   if (IsPointerAttr && ArgumentType->isVoidPointerType())
16439     return;
16440 
16441   if (TypeInfo.MustBeNull) {
16442     // Type tag with matching void type requires a null pointer.
16443     if (!ArgumentExpr->isNullPointerConstant(Context,
16444                                              Expr::NPC_ValueDependentIsNotNull)) {
16445       Diag(ArgumentExpr->getExprLoc(),
16446            diag::warn_type_safety_null_pointer_required)
16447           << ArgumentKind->getName()
16448           << ArgumentExpr->getSourceRange()
16449           << TypeTagExpr->getSourceRange();
16450     }
16451     return;
16452   }
16453 
16454   QualType RequiredType = TypeInfo.Type;
16455   if (IsPointerAttr)
16456     RequiredType = Context.getPointerType(RequiredType);
16457 
16458   bool mismatch = false;
16459   if (!TypeInfo.LayoutCompatible) {
16460     mismatch = !Context.hasSameType(ArgumentType, RequiredType);
16461 
16462     // C++11 [basic.fundamental] p1:
16463     // Plain char, signed char, and unsigned char are three distinct types.
16464     //
16465     // But we treat plain `char' as equivalent to `signed char' or `unsigned
16466     // char' depending on the current char signedness mode.
16467     if (mismatch)
16468       if ((IsPointerAttr && IsSameCharType(ArgumentType->getPointeeType(),
16469                                            RequiredType->getPointeeType())) ||
16470           (!IsPointerAttr && IsSameCharType(ArgumentType, RequiredType)))
16471         mismatch = false;
16472   } else
16473     if (IsPointerAttr)
16474       mismatch = !isLayoutCompatible(Context,
16475                                      ArgumentType->getPointeeType(),
16476                                      RequiredType->getPointeeType());
16477     else
16478       mismatch = !isLayoutCompatible(Context, ArgumentType, RequiredType);
16479 
16480   if (mismatch)
16481     Diag(ArgumentExpr->getExprLoc(), diag::warn_type_safety_type_mismatch)
16482         << ArgumentType << ArgumentKind
16483         << TypeInfo.LayoutCompatible << RequiredType
16484         << ArgumentExpr->getSourceRange()
16485         << TypeTagExpr->getSourceRange();
16486 }
16487 
16488 void Sema::AddPotentialMisalignedMembers(Expr *E, RecordDecl *RD, ValueDecl *MD,
16489                                          CharUnits Alignment) {
16490   MisalignedMembers.emplace_back(E, RD, MD, Alignment);
16491 }
16492 
16493 void Sema::DiagnoseMisalignedMembers() {
16494   for (MisalignedMember &m : MisalignedMembers) {
16495     const NamedDecl *ND = m.RD;
16496     if (ND->getName().empty()) {
16497       if (const TypedefNameDecl *TD = m.RD->getTypedefNameForAnonDecl())
16498         ND = TD;
16499     }
16500     Diag(m.E->getBeginLoc(), diag::warn_taking_address_of_packed_member)
16501         << m.MD << ND << m.E->getSourceRange();
16502   }
16503   MisalignedMembers.clear();
16504 }
16505 
16506 void Sema::DiscardMisalignedMemberAddress(const Type *T, Expr *E) {
16507   E = E->IgnoreParens();
16508   if (!T->isPointerType() && !T->isIntegerType())
16509     return;
16510   if (isa<UnaryOperator>(E) &&
16511       cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf) {
16512     auto *Op = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens();
16513     if (isa<MemberExpr>(Op)) {
16514       auto MA = llvm::find(MisalignedMembers, MisalignedMember(Op));
16515       if (MA != MisalignedMembers.end() &&
16516           (T->isIntegerType() ||
16517            (T->isPointerType() && (T->getPointeeType()->isIncompleteType() ||
16518                                    Context.getTypeAlignInChars(
16519                                        T->getPointeeType()) <= MA->Alignment))))
16520         MisalignedMembers.erase(MA);
16521     }
16522   }
16523 }
16524 
16525 void Sema::RefersToMemberWithReducedAlignment(
16526     Expr *E,
16527     llvm::function_ref<void(Expr *, RecordDecl *, FieldDecl *, CharUnits)>
16528         Action) {
16529   const auto *ME = dyn_cast<MemberExpr>(E);
16530   if (!ME)
16531     return;
16532 
16533   // No need to check expressions with an __unaligned-qualified type.
16534   if (E->getType().getQualifiers().hasUnaligned())
16535     return;
16536 
16537   // For a chain of MemberExpr like "a.b.c.d" this list
16538   // will keep FieldDecl's like [d, c, b].
16539   SmallVector<FieldDecl *, 4> ReverseMemberChain;
16540   const MemberExpr *TopME = nullptr;
16541   bool AnyIsPacked = false;
16542   do {
16543     QualType BaseType = ME->getBase()->getType();
16544     if (BaseType->isDependentType())
16545       return;
16546     if (ME->isArrow())
16547       BaseType = BaseType->getPointeeType();
16548     RecordDecl *RD = BaseType->castAs<RecordType>()->getDecl();
16549     if (RD->isInvalidDecl())
16550       return;
16551 
16552     ValueDecl *MD = ME->getMemberDecl();
16553     auto *FD = dyn_cast<FieldDecl>(MD);
16554     // We do not care about non-data members.
16555     if (!FD || FD->isInvalidDecl())
16556       return;
16557 
16558     AnyIsPacked =
16559         AnyIsPacked || (RD->hasAttr<PackedAttr>() || MD->hasAttr<PackedAttr>());
16560     ReverseMemberChain.push_back(FD);
16561 
16562     TopME = ME;
16563     ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParens());
16564   } while (ME);
16565   assert(TopME && "We did not compute a topmost MemberExpr!");
16566 
16567   // Not the scope of this diagnostic.
16568   if (!AnyIsPacked)
16569     return;
16570 
16571   const Expr *TopBase = TopME->getBase()->IgnoreParenImpCasts();
16572   const auto *DRE = dyn_cast<DeclRefExpr>(TopBase);
16573   // TODO: The innermost base of the member expression may be too complicated.
16574   // For now, just disregard these cases. This is left for future
16575   // improvement.
16576   if (!DRE && !isa<CXXThisExpr>(TopBase))
16577       return;
16578 
16579   // Alignment expected by the whole expression.
16580   CharUnits ExpectedAlignment = Context.getTypeAlignInChars(E->getType());
16581 
16582   // No need to do anything else with this case.
16583   if (ExpectedAlignment.isOne())
16584     return;
16585 
16586   // Synthesize offset of the whole access.
16587   CharUnits Offset;
16588   for (auto I = ReverseMemberChain.rbegin(); I != ReverseMemberChain.rend();
16589        I++) {
16590     Offset += Context.toCharUnitsFromBits(Context.getFieldOffset(*I));
16591   }
16592 
16593   // Compute the CompleteObjectAlignment as the alignment of the whole chain.
16594   CharUnits CompleteObjectAlignment = Context.getTypeAlignInChars(
16595       ReverseMemberChain.back()->getParent()->getTypeForDecl());
16596 
16597   // The base expression of the innermost MemberExpr may give
16598   // stronger guarantees than the class containing the member.
16599   if (DRE && !TopME->isArrow()) {
16600     const ValueDecl *VD = DRE->getDecl();
16601     if (!VD->getType()->isReferenceType())
16602       CompleteObjectAlignment =
16603           std::max(CompleteObjectAlignment, Context.getDeclAlign(VD));
16604   }
16605 
16606   // Check if the synthesized offset fulfills the alignment.
16607   if (Offset % ExpectedAlignment != 0 ||
16608       // It may fulfill the offset it but the effective alignment may still be
16609       // lower than the expected expression alignment.
16610       CompleteObjectAlignment < ExpectedAlignment) {
16611     // If this happens, we want to determine a sensible culprit of this.
16612     // Intuitively, watching the chain of member expressions from right to
16613     // left, we start with the required alignment (as required by the field
16614     // type) but some packed attribute in that chain has reduced the alignment.
16615     // It may happen that another packed structure increases it again. But if
16616     // we are here such increase has not been enough. So pointing the first
16617     // FieldDecl that either is packed or else its RecordDecl is,
16618     // seems reasonable.
16619     FieldDecl *FD = nullptr;
16620     CharUnits Alignment;
16621     for (FieldDecl *FDI : ReverseMemberChain) {
16622       if (FDI->hasAttr<PackedAttr>() ||
16623           FDI->getParent()->hasAttr<PackedAttr>()) {
16624         FD = FDI;
16625         Alignment = std::min(
16626             Context.getTypeAlignInChars(FD->getType()),
16627             Context.getTypeAlignInChars(FD->getParent()->getTypeForDecl()));
16628         break;
16629       }
16630     }
16631     assert(FD && "We did not find a packed FieldDecl!");
16632     Action(E, FD->getParent(), FD, Alignment);
16633   }
16634 }
16635 
16636 void Sema::CheckAddressOfPackedMember(Expr *rhs) {
16637   using namespace std::placeholders;
16638 
16639   RefersToMemberWithReducedAlignment(
16640       rhs, std::bind(&Sema::AddPotentialMisalignedMembers, std::ref(*this), _1,
16641                      _2, _3, _4));
16642 }
16643 
16644 ExprResult Sema::SemaBuiltinMatrixTranspose(CallExpr *TheCall,
16645                                             ExprResult CallResult) {
16646   if (checkArgCount(*this, TheCall, 1))
16647     return ExprError();
16648 
16649   ExprResult MatrixArg = DefaultLvalueConversion(TheCall->getArg(0));
16650   if (MatrixArg.isInvalid())
16651     return MatrixArg;
16652   Expr *Matrix = MatrixArg.get();
16653 
16654   auto *MType = Matrix->getType()->getAs<ConstantMatrixType>();
16655   if (!MType) {
16656     Diag(Matrix->getBeginLoc(), diag::err_builtin_matrix_arg);
16657     return ExprError();
16658   }
16659 
16660   // Create returned matrix type by swapping rows and columns of the argument
16661   // matrix type.
16662   QualType ResultType = Context.getConstantMatrixType(
16663       MType->getElementType(), MType->getNumColumns(), MType->getNumRows());
16664 
16665   // Change the return type to the type of the returned matrix.
16666   TheCall->setType(ResultType);
16667 
16668   // Update call argument to use the possibly converted matrix argument.
16669   TheCall->setArg(0, Matrix);
16670   return CallResult;
16671 }
16672 
16673 // Get and verify the matrix dimensions.
16674 static llvm::Optional<unsigned>
16675 getAndVerifyMatrixDimension(Expr *Expr, StringRef Name, Sema &S) {
16676   SourceLocation ErrorPos;
16677   Optional<llvm::APSInt> Value =
16678       Expr->getIntegerConstantExpr(S.Context, &ErrorPos);
16679   if (!Value) {
16680     S.Diag(Expr->getBeginLoc(), diag::err_builtin_matrix_scalar_unsigned_arg)
16681         << Name;
16682     return {};
16683   }
16684   uint64_t Dim = Value->getZExtValue();
16685   if (!ConstantMatrixType::isDimensionValid(Dim)) {
16686     S.Diag(Expr->getBeginLoc(), diag::err_builtin_matrix_invalid_dimension)
16687         << Name << ConstantMatrixType::getMaxElementsPerDimension();
16688     return {};
16689   }
16690   return Dim;
16691 }
16692 
16693 ExprResult Sema::SemaBuiltinMatrixColumnMajorLoad(CallExpr *TheCall,
16694                                                   ExprResult CallResult) {
16695   if (!getLangOpts().MatrixTypes) {
16696     Diag(TheCall->getBeginLoc(), diag::err_builtin_matrix_disabled);
16697     return ExprError();
16698   }
16699 
16700   if (checkArgCount(*this, TheCall, 4))
16701     return ExprError();
16702 
16703   unsigned PtrArgIdx = 0;
16704   Expr *PtrExpr = TheCall->getArg(PtrArgIdx);
16705   Expr *RowsExpr = TheCall->getArg(1);
16706   Expr *ColumnsExpr = TheCall->getArg(2);
16707   Expr *StrideExpr = TheCall->getArg(3);
16708 
16709   bool ArgError = false;
16710 
16711   // Check pointer argument.
16712   {
16713     ExprResult PtrConv = DefaultFunctionArrayLvalueConversion(PtrExpr);
16714     if (PtrConv.isInvalid())
16715       return PtrConv;
16716     PtrExpr = PtrConv.get();
16717     TheCall->setArg(0, PtrExpr);
16718     if (PtrExpr->isTypeDependent()) {
16719       TheCall->setType(Context.DependentTy);
16720       return TheCall;
16721     }
16722   }
16723 
16724   auto *PtrTy = PtrExpr->getType()->getAs<PointerType>();
16725   QualType ElementTy;
16726   if (!PtrTy) {
16727     Diag(PtrExpr->getBeginLoc(), diag::err_builtin_matrix_pointer_arg)
16728         << PtrArgIdx + 1;
16729     ArgError = true;
16730   } else {
16731     ElementTy = PtrTy->getPointeeType().getUnqualifiedType();
16732 
16733     if (!ConstantMatrixType::isValidElementType(ElementTy)) {
16734       Diag(PtrExpr->getBeginLoc(), diag::err_builtin_matrix_pointer_arg)
16735           << PtrArgIdx + 1;
16736       ArgError = true;
16737     }
16738   }
16739 
16740   // Apply default Lvalue conversions and convert the expression to size_t.
16741   auto ApplyArgumentConversions = [this](Expr *E) {
16742     ExprResult Conv = DefaultLvalueConversion(E);
16743     if (Conv.isInvalid())
16744       return Conv;
16745 
16746     return tryConvertExprToType(Conv.get(), Context.getSizeType());
16747   };
16748 
16749   // Apply conversion to row and column expressions.
16750   ExprResult RowsConv = ApplyArgumentConversions(RowsExpr);
16751   if (!RowsConv.isInvalid()) {
16752     RowsExpr = RowsConv.get();
16753     TheCall->setArg(1, RowsExpr);
16754   } else
16755     RowsExpr = nullptr;
16756 
16757   ExprResult ColumnsConv = ApplyArgumentConversions(ColumnsExpr);
16758   if (!ColumnsConv.isInvalid()) {
16759     ColumnsExpr = ColumnsConv.get();
16760     TheCall->setArg(2, ColumnsExpr);
16761   } else
16762     ColumnsExpr = nullptr;
16763 
16764   // If any any part of the result matrix type is still pending, just use
16765   // Context.DependentTy, until all parts are resolved.
16766   if ((RowsExpr && RowsExpr->isTypeDependent()) ||
16767       (ColumnsExpr && ColumnsExpr->isTypeDependent())) {
16768     TheCall->setType(Context.DependentTy);
16769     return CallResult;
16770   }
16771 
16772   // Check row and column dimensions.
16773   llvm::Optional<unsigned> MaybeRows;
16774   if (RowsExpr)
16775     MaybeRows = getAndVerifyMatrixDimension(RowsExpr, "row", *this);
16776 
16777   llvm::Optional<unsigned> MaybeColumns;
16778   if (ColumnsExpr)
16779     MaybeColumns = getAndVerifyMatrixDimension(ColumnsExpr, "column", *this);
16780 
16781   // Check stride argument.
16782   ExprResult StrideConv = ApplyArgumentConversions(StrideExpr);
16783   if (StrideConv.isInvalid())
16784     return ExprError();
16785   StrideExpr = StrideConv.get();
16786   TheCall->setArg(3, StrideExpr);
16787 
16788   if (MaybeRows) {
16789     if (Optional<llvm::APSInt> Value =
16790             StrideExpr->getIntegerConstantExpr(Context)) {
16791       uint64_t Stride = Value->getZExtValue();
16792       if (Stride < *MaybeRows) {
16793         Diag(StrideExpr->getBeginLoc(),
16794              diag::err_builtin_matrix_stride_too_small);
16795         ArgError = true;
16796       }
16797     }
16798   }
16799 
16800   if (ArgError || !MaybeRows || !MaybeColumns)
16801     return ExprError();
16802 
16803   TheCall->setType(
16804       Context.getConstantMatrixType(ElementTy, *MaybeRows, *MaybeColumns));
16805   return CallResult;
16806 }
16807 
16808 ExprResult Sema::SemaBuiltinMatrixColumnMajorStore(CallExpr *TheCall,
16809                                                    ExprResult CallResult) {
16810   if (checkArgCount(*this, TheCall, 3))
16811     return ExprError();
16812 
16813   unsigned PtrArgIdx = 1;
16814   Expr *MatrixExpr = TheCall->getArg(0);
16815   Expr *PtrExpr = TheCall->getArg(PtrArgIdx);
16816   Expr *StrideExpr = TheCall->getArg(2);
16817 
16818   bool ArgError = false;
16819 
16820   {
16821     ExprResult MatrixConv = DefaultLvalueConversion(MatrixExpr);
16822     if (MatrixConv.isInvalid())
16823       return MatrixConv;
16824     MatrixExpr = MatrixConv.get();
16825     TheCall->setArg(0, MatrixExpr);
16826   }
16827   if (MatrixExpr->isTypeDependent()) {
16828     TheCall->setType(Context.DependentTy);
16829     return TheCall;
16830   }
16831 
16832   auto *MatrixTy = MatrixExpr->getType()->getAs<ConstantMatrixType>();
16833   if (!MatrixTy) {
16834     Diag(MatrixExpr->getBeginLoc(), diag::err_builtin_matrix_arg) << 0;
16835     ArgError = true;
16836   }
16837 
16838   {
16839     ExprResult PtrConv = DefaultFunctionArrayLvalueConversion(PtrExpr);
16840     if (PtrConv.isInvalid())
16841       return PtrConv;
16842     PtrExpr = PtrConv.get();
16843     TheCall->setArg(1, PtrExpr);
16844     if (PtrExpr->isTypeDependent()) {
16845       TheCall->setType(Context.DependentTy);
16846       return TheCall;
16847     }
16848   }
16849 
16850   // Check pointer argument.
16851   auto *PtrTy = PtrExpr->getType()->getAs<PointerType>();
16852   if (!PtrTy) {
16853     Diag(PtrExpr->getBeginLoc(), diag::err_builtin_matrix_pointer_arg)
16854         << PtrArgIdx + 1;
16855     ArgError = true;
16856   } else {
16857     QualType ElementTy = PtrTy->getPointeeType();
16858     if (ElementTy.isConstQualified()) {
16859       Diag(PtrExpr->getBeginLoc(), diag::err_builtin_matrix_store_to_const);
16860       ArgError = true;
16861     }
16862     ElementTy = ElementTy.getUnqualifiedType().getCanonicalType();
16863     if (MatrixTy &&
16864         !Context.hasSameType(ElementTy, MatrixTy->getElementType())) {
16865       Diag(PtrExpr->getBeginLoc(),
16866            diag::err_builtin_matrix_pointer_arg_mismatch)
16867           << ElementTy << MatrixTy->getElementType();
16868       ArgError = true;
16869     }
16870   }
16871 
16872   // Apply default Lvalue conversions and convert the stride expression to
16873   // size_t.
16874   {
16875     ExprResult StrideConv = DefaultLvalueConversion(StrideExpr);
16876     if (StrideConv.isInvalid())
16877       return StrideConv;
16878 
16879     StrideConv = tryConvertExprToType(StrideConv.get(), Context.getSizeType());
16880     if (StrideConv.isInvalid())
16881       return StrideConv;
16882     StrideExpr = StrideConv.get();
16883     TheCall->setArg(2, StrideExpr);
16884   }
16885 
16886   // Check stride argument.
16887   if (MatrixTy) {
16888     if (Optional<llvm::APSInt> Value =
16889             StrideExpr->getIntegerConstantExpr(Context)) {
16890       uint64_t Stride = Value->getZExtValue();
16891       if (Stride < MatrixTy->getNumRows()) {
16892         Diag(StrideExpr->getBeginLoc(),
16893              diag::err_builtin_matrix_stride_too_small);
16894         ArgError = true;
16895       }
16896     }
16897   }
16898 
16899   if (ArgError)
16900     return ExprError();
16901 
16902   return CallResult;
16903 }
16904 
16905 /// \brief Enforce the bounds of a TCB
16906 /// CheckTCBEnforcement - Enforces that every function in a named TCB only
16907 /// directly calls other functions in the same TCB as marked by the enforce_tcb
16908 /// and enforce_tcb_leaf attributes.
16909 void Sema::CheckTCBEnforcement(const CallExpr *TheCall,
16910                                const FunctionDecl *Callee) {
16911   const FunctionDecl *Caller = getCurFunctionDecl();
16912 
16913   // Calls to builtins are not enforced.
16914   if (!Caller || !Caller->hasAttr<EnforceTCBAttr>() ||
16915       Callee->getBuiltinID() != 0)
16916     return;
16917 
16918   // Search through the enforce_tcb and enforce_tcb_leaf attributes to find
16919   // all TCBs the callee is a part of.
16920   llvm::StringSet<> CalleeTCBs;
16921   for_each(Callee->specific_attrs<EnforceTCBAttr>(),
16922            [&](const auto *A) { CalleeTCBs.insert(A->getTCBName()); });
16923   for_each(Callee->specific_attrs<EnforceTCBLeafAttr>(),
16924            [&](const auto *A) { CalleeTCBs.insert(A->getTCBName()); });
16925 
16926   // Go through the TCBs the caller is a part of and emit warnings if Caller
16927   // is in a TCB that the Callee is not.
16928   for_each(
16929       Caller->specific_attrs<EnforceTCBAttr>(),
16930       [&](const auto *A) {
16931         StringRef CallerTCB = A->getTCBName();
16932         if (CalleeTCBs.count(CallerTCB) == 0) {
16933           this->Diag(TheCall->getExprLoc(),
16934                      diag::warn_tcb_enforcement_violation) << Callee
16935                                                            << CallerTCB;
16936         }
16937       });
16938 }
16939