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/Stmt.h"
34 #include "clang/AST/TemplateBase.h"
35 #include "clang/AST/Type.h"
36 #include "clang/AST/TypeLoc.h"
37 #include "clang/AST/UnresolvedSet.h"
38 #include "clang/Basic/AddressSpaces.h"
39 #include "clang/Basic/CharInfo.h"
40 #include "clang/Basic/Diagnostic.h"
41 #include "clang/Basic/IdentifierTable.h"
42 #include "clang/Basic/LLVM.h"
43 #include "clang/Basic/LangOptions.h"
44 #include "clang/Basic/OpenCLOptions.h"
45 #include "clang/Basic/OperatorKinds.h"
46 #include "clang/Basic/PartialDiagnostic.h"
47 #include "clang/Basic/SourceLocation.h"
48 #include "clang/Basic/SourceManager.h"
49 #include "clang/Basic/Specifiers.h"
50 #include "clang/Basic/SyncScope.h"
51 #include "clang/Basic/TargetBuiltins.h"
52 #include "clang/Basic/TargetCXXABI.h"
53 #include "clang/Basic/TargetInfo.h"
54 #include "clang/Basic/TypeTraits.h"
55 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
56 #include "clang/Sema/Initialization.h"
57 #include "clang/Sema/Lookup.h"
58 #include "clang/Sema/Ownership.h"
59 #include "clang/Sema/Scope.h"
60 #include "clang/Sema/ScopeInfo.h"
61 #include "clang/Sema/Sema.h"
62 #include "clang/Sema/SemaInternal.h"
63 #include "llvm/ADT/APFloat.h"
64 #include "llvm/ADT/APInt.h"
65 #include "llvm/ADT/APSInt.h"
66 #include "llvm/ADT/ArrayRef.h"
67 #include "llvm/ADT/DenseMap.h"
68 #include "llvm/ADT/FoldingSet.h"
69 #include "llvm/ADT/None.h"
70 #include "llvm/ADT/Optional.h"
71 #include "llvm/ADT/STLExtras.h"
72 #include "llvm/ADT/SmallBitVector.h"
73 #include "llvm/ADT/SmallPtrSet.h"
74 #include "llvm/ADT/SmallString.h"
75 #include "llvm/ADT/SmallVector.h"
76 #include "llvm/ADT/StringRef.h"
77 #include "llvm/ADT/StringSwitch.h"
78 #include "llvm/ADT/Triple.h"
79 #include "llvm/Support/AtomicOrdering.h"
80 #include "llvm/Support/Casting.h"
81 #include "llvm/Support/Compiler.h"
82 #include "llvm/Support/ConvertUTF.h"
83 #include "llvm/Support/ErrorHandling.h"
84 #include "llvm/Support/Format.h"
85 #include "llvm/Support/Locale.h"
86 #include "llvm/Support/MathExtras.h"
87 #include "llvm/Support/SaveAndRestore.h"
88 #include "llvm/Support/raw_ostream.h"
89 #include <algorithm>
90 #include <cassert>
91 #include <cstddef>
92 #include <cstdint>
93 #include <functional>
94 #include <limits>
95 #include <string>
96 #include <tuple>
97 #include <utility>
98 
99 using namespace clang;
100 using namespace sema;
101 
102 SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
103                                                     unsigned ByteNo) const {
104   return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts,
105                                Context.getTargetInfo());
106 }
107 
108 /// Checks that a call expression's argument count is the desired number.
109 /// This is useful when doing custom type-checking.  Returns true on error.
110 static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
111   unsigned argCount = call->getNumArgs();
112   if (argCount == desiredArgCount) return false;
113 
114   if (argCount < desiredArgCount)
115     return S.Diag(call->getEndLoc(), diag::err_typecheck_call_too_few_args)
116            << 0 /*function call*/ << desiredArgCount << argCount
117            << call->getSourceRange();
118 
119   // Highlight all the excess arguments.
120   SourceRange range(call->getArg(desiredArgCount)->getBeginLoc(),
121                     call->getArg(argCount - 1)->getEndLoc());
122 
123   return S.Diag(range.getBegin(), diag::err_typecheck_call_too_many_args)
124     << 0 /*function call*/ << desiredArgCount << argCount
125     << call->getArg(1)->getSourceRange();
126 }
127 
128 /// Check that the first argument to __builtin_annotation is an integer
129 /// and the second argument is a non-wide string literal.
130 static bool SemaBuiltinAnnotation(Sema &S, CallExpr *TheCall) {
131   if (checkArgCount(S, TheCall, 2))
132     return true;
133 
134   // First argument should be an integer.
135   Expr *ValArg = TheCall->getArg(0);
136   QualType Ty = ValArg->getType();
137   if (!Ty->isIntegerType()) {
138     S.Diag(ValArg->getBeginLoc(), diag::err_builtin_annotation_first_arg)
139         << ValArg->getSourceRange();
140     return true;
141   }
142 
143   // Second argument should be a constant string.
144   Expr *StrArg = TheCall->getArg(1)->IgnoreParenCasts();
145   StringLiteral *Literal = dyn_cast<StringLiteral>(StrArg);
146   if (!Literal || !Literal->isAscii()) {
147     S.Diag(StrArg->getBeginLoc(), diag::err_builtin_annotation_second_arg)
148         << StrArg->getSourceRange();
149     return true;
150   }
151 
152   TheCall->setType(Ty);
153   return false;
154 }
155 
156 static bool SemaBuiltinMSVCAnnotation(Sema &S, CallExpr *TheCall) {
157   // We need at least one argument.
158   if (TheCall->getNumArgs() < 1) {
159     S.Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
160         << 0 << 1 << TheCall->getNumArgs()
161         << TheCall->getCallee()->getSourceRange();
162     return true;
163   }
164 
165   // All arguments should be wide string literals.
166   for (Expr *Arg : TheCall->arguments()) {
167     auto *Literal = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts());
168     if (!Literal || !Literal->isWide()) {
169       S.Diag(Arg->getBeginLoc(), diag::err_msvc_annotation_wide_str)
170           << Arg->getSourceRange();
171       return true;
172     }
173   }
174 
175   return false;
176 }
177 
178 /// Check that the argument to __builtin_addressof is a glvalue, and set the
179 /// result type to the corresponding pointer type.
180 static bool SemaBuiltinAddressof(Sema &S, CallExpr *TheCall) {
181   if (checkArgCount(S, TheCall, 1))
182     return true;
183 
184   ExprResult Arg(TheCall->getArg(0));
185   QualType ResultType = S.CheckAddressOfOperand(Arg, TheCall->getBeginLoc());
186   if (ResultType.isNull())
187     return true;
188 
189   TheCall->setArg(0, Arg.get());
190   TheCall->setType(ResultType);
191   return false;
192 }
193 
194 /// Check the number of arguments, and set the result type to
195 /// the argument type.
196 static bool SemaBuiltinPreserveAI(Sema &S, CallExpr *TheCall) {
197   if (checkArgCount(S, TheCall, 1))
198     return true;
199 
200   TheCall->setType(TheCall->getArg(0)->getType());
201   return false;
202 }
203 
204 static bool SemaBuiltinOverflow(Sema &S, CallExpr *TheCall) {
205   if (checkArgCount(S, TheCall, 3))
206     return true;
207 
208   // First two arguments should be integers.
209   for (unsigned I = 0; I < 2; ++I) {
210     ExprResult Arg = TheCall->getArg(I);
211     QualType Ty = Arg.get()->getType();
212     if (!Ty->isIntegerType()) {
213       S.Diag(Arg.get()->getBeginLoc(), diag::err_overflow_builtin_must_be_int)
214           << Ty << Arg.get()->getSourceRange();
215       return true;
216     }
217     InitializedEntity Entity = InitializedEntity::InitializeParameter(
218         S.getASTContext(), Ty, /*consume*/ false);
219     Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
220     if (Arg.isInvalid())
221       return true;
222     TheCall->setArg(I, Arg.get());
223   }
224 
225   // Third argument should be a pointer to a non-const integer.
226   // IRGen correctly handles volatile, restrict, and address spaces, and
227   // the other qualifiers aren't possible.
228   {
229     ExprResult Arg = TheCall->getArg(2);
230     QualType Ty = Arg.get()->getType();
231     const auto *PtrTy = Ty->getAs<PointerType>();
232     if (!(PtrTy && PtrTy->getPointeeType()->isIntegerType() &&
233           !PtrTy->getPointeeType().isConstQualified())) {
234       S.Diag(Arg.get()->getBeginLoc(),
235              diag::err_overflow_builtin_must_be_ptr_int)
236           << Ty << Arg.get()->getSourceRange();
237       return true;
238     }
239     InitializedEntity Entity = InitializedEntity::InitializeParameter(
240         S.getASTContext(), Ty, /*consume*/ false);
241     Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
242     if (Arg.isInvalid())
243       return true;
244     TheCall->setArg(2, Arg.get());
245   }
246   return false;
247 }
248 
249 static bool SemaBuiltinCallWithStaticChain(Sema &S, CallExpr *BuiltinCall) {
250   if (checkArgCount(S, BuiltinCall, 2))
251     return true;
252 
253   SourceLocation BuiltinLoc = BuiltinCall->getBeginLoc();
254   Expr *Builtin = BuiltinCall->getCallee()->IgnoreImpCasts();
255   Expr *Call = BuiltinCall->getArg(0);
256   Expr *Chain = BuiltinCall->getArg(1);
257 
258   if (Call->getStmtClass() != Stmt::CallExprClass) {
259     S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_not_call)
260         << Call->getSourceRange();
261     return true;
262   }
263 
264   auto CE = cast<CallExpr>(Call);
265   if (CE->getCallee()->getType()->isBlockPointerType()) {
266     S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_block_call)
267         << Call->getSourceRange();
268     return true;
269   }
270 
271   const Decl *TargetDecl = CE->getCalleeDecl();
272   if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl))
273     if (FD->getBuiltinID()) {
274       S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_builtin_call)
275           << Call->getSourceRange();
276       return true;
277     }
278 
279   if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens())) {
280     S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_pdtor_call)
281         << Call->getSourceRange();
282     return true;
283   }
284 
285   ExprResult ChainResult = S.UsualUnaryConversions(Chain);
286   if (ChainResult.isInvalid())
287     return true;
288   if (!ChainResult.get()->getType()->isPointerType()) {
289     S.Diag(BuiltinLoc, diag::err_second_argument_to_cwsc_not_pointer)
290         << Chain->getSourceRange();
291     return true;
292   }
293 
294   QualType ReturnTy = CE->getCallReturnType(S.Context);
295   QualType ArgTys[2] = { ReturnTy, ChainResult.get()->getType() };
296   QualType BuiltinTy = S.Context.getFunctionType(
297       ReturnTy, ArgTys, FunctionProtoType::ExtProtoInfo());
298   QualType BuiltinPtrTy = S.Context.getPointerType(BuiltinTy);
299 
300   Builtin =
301       S.ImpCastExprToType(Builtin, BuiltinPtrTy, CK_BuiltinFnToFnPtr).get();
302 
303   BuiltinCall->setType(CE->getType());
304   BuiltinCall->setValueKind(CE->getValueKind());
305   BuiltinCall->setObjectKind(CE->getObjectKind());
306   BuiltinCall->setCallee(Builtin);
307   BuiltinCall->setArg(1, ChainResult.get());
308 
309   return false;
310 }
311 
312 /// Check a call to BuiltinID for buffer overflows. If BuiltinID is a
313 /// __builtin_*_chk function, then use the object size argument specified in the
314 /// source. Otherwise, infer the object size using __builtin_object_size.
315 void Sema::checkFortifiedBuiltinMemoryFunction(FunctionDecl *FD,
316                                                CallExpr *TheCall) {
317   // FIXME: There are some more useful checks we could be doing here:
318   //  - Analyze the format string of sprintf to see how much of buffer is used.
319   //  - Evaluate strlen of strcpy arguments, use as object size.
320 
321   if (TheCall->isValueDependent() || TheCall->isTypeDependent() ||
322       isConstantEvaluated())
323     return;
324 
325   unsigned BuiltinID = FD->getBuiltinID(/*ConsiderWrappers=*/true);
326   if (!BuiltinID)
327     return;
328 
329   unsigned DiagID = 0;
330   bool IsChkVariant = false;
331   unsigned SizeIndex, ObjectIndex;
332   switch (BuiltinID) {
333   default:
334     return;
335   case Builtin::BI__builtin___memcpy_chk:
336   case Builtin::BI__builtin___memmove_chk:
337   case Builtin::BI__builtin___memset_chk:
338   case Builtin::BI__builtin___strlcat_chk:
339   case Builtin::BI__builtin___strlcpy_chk:
340   case Builtin::BI__builtin___strncat_chk:
341   case Builtin::BI__builtin___strncpy_chk:
342   case Builtin::BI__builtin___stpncpy_chk:
343   case Builtin::BI__builtin___memccpy_chk: {
344     DiagID = diag::warn_builtin_chk_overflow;
345     IsChkVariant = true;
346     SizeIndex = TheCall->getNumArgs() - 2;
347     ObjectIndex = TheCall->getNumArgs() - 1;
348     break;
349   }
350 
351   case Builtin::BI__builtin___snprintf_chk:
352   case Builtin::BI__builtin___vsnprintf_chk: {
353     DiagID = diag::warn_builtin_chk_overflow;
354     IsChkVariant = true;
355     SizeIndex = 1;
356     ObjectIndex = 3;
357     break;
358   }
359 
360   case Builtin::BIstrncat:
361   case Builtin::BI__builtin_strncat:
362   case Builtin::BIstrncpy:
363   case Builtin::BI__builtin_strncpy:
364   case Builtin::BIstpncpy:
365   case Builtin::BI__builtin_stpncpy: {
366     // Whether these functions overflow depends on the runtime strlen of the
367     // string, not just the buffer size, so emitting the "always overflow"
368     // diagnostic isn't quite right. We should still diagnose passing a buffer
369     // size larger than the destination buffer though; this is a runtime abort
370     // in _FORTIFY_SOURCE mode, and is quite suspicious otherwise.
371     DiagID = diag::warn_fortify_source_size_mismatch;
372     SizeIndex = TheCall->getNumArgs() - 1;
373     ObjectIndex = 0;
374     break;
375   }
376 
377   case Builtin::BImemcpy:
378   case Builtin::BI__builtin_memcpy:
379   case Builtin::BImemmove:
380   case Builtin::BI__builtin_memmove:
381   case Builtin::BImemset:
382   case Builtin::BI__builtin_memset: {
383     DiagID = diag::warn_fortify_source_overflow;
384     SizeIndex = TheCall->getNumArgs() - 1;
385     ObjectIndex = 0;
386     break;
387   }
388   case Builtin::BIsnprintf:
389   case Builtin::BI__builtin_snprintf:
390   case Builtin::BIvsnprintf:
391   case Builtin::BI__builtin_vsnprintf: {
392     DiagID = diag::warn_fortify_source_size_mismatch;
393     SizeIndex = 1;
394     ObjectIndex = 0;
395     break;
396   }
397   }
398 
399   llvm::APSInt ObjectSize;
400   // For __builtin___*_chk, the object size is explicitly provided by the caller
401   // (usually using __builtin_object_size). Use that value to check this call.
402   if (IsChkVariant) {
403     Expr::EvalResult Result;
404     Expr *SizeArg = TheCall->getArg(ObjectIndex);
405     if (!SizeArg->EvaluateAsInt(Result, getASTContext()))
406       return;
407     ObjectSize = Result.Val.getInt();
408 
409   // Otherwise, try to evaluate an imaginary call to __builtin_object_size.
410   } else {
411     // If the parameter has a pass_object_size attribute, then we should use its
412     // (potentially) more strict checking mode. Otherwise, conservatively assume
413     // type 0.
414     int BOSType = 0;
415     if (const auto *POS =
416             FD->getParamDecl(ObjectIndex)->getAttr<PassObjectSizeAttr>())
417       BOSType = POS->getType();
418 
419     Expr *ObjArg = TheCall->getArg(ObjectIndex);
420     uint64_t Result;
421     if (!ObjArg->tryEvaluateObjectSize(Result, getASTContext(), BOSType))
422       return;
423     // Get the object size in the target's size_t width.
424     const TargetInfo &TI = getASTContext().getTargetInfo();
425     unsigned SizeTypeWidth = TI.getTypeWidth(TI.getSizeType());
426     ObjectSize = llvm::APSInt::getUnsigned(Result).extOrTrunc(SizeTypeWidth);
427   }
428 
429   // Evaluate the number of bytes of the object that this call will use.
430   Expr::EvalResult Result;
431   Expr *UsedSizeArg = TheCall->getArg(SizeIndex);
432   if (!UsedSizeArg->EvaluateAsInt(Result, getASTContext()))
433     return;
434   llvm::APSInt UsedSize = Result.Val.getInt();
435 
436   if (UsedSize.ule(ObjectSize))
437     return;
438 
439   StringRef FunctionName = getASTContext().BuiltinInfo.getName(BuiltinID);
440   // Skim off the details of whichever builtin was called to produce a better
441   // diagnostic, as it's unlikley that the user wrote the __builtin explicitly.
442   if (IsChkVariant) {
443     FunctionName = FunctionName.drop_front(std::strlen("__builtin___"));
444     FunctionName = FunctionName.drop_back(std::strlen("_chk"));
445   } else if (FunctionName.startswith("__builtin_")) {
446     FunctionName = FunctionName.drop_front(std::strlen("__builtin_"));
447   }
448 
449   DiagRuntimeBehavior(TheCall->getBeginLoc(), TheCall,
450                       PDiag(DiagID)
451                           << FunctionName << ObjectSize.toString(/*Radix=*/10)
452                           << UsedSize.toString(/*Radix=*/10));
453 }
454 
455 static bool SemaBuiltinSEHScopeCheck(Sema &SemaRef, CallExpr *TheCall,
456                                      Scope::ScopeFlags NeededScopeFlags,
457                                      unsigned DiagID) {
458   // Scopes aren't available during instantiation. Fortunately, builtin
459   // functions cannot be template args so they cannot be formed through template
460   // instantiation. Therefore checking once during the parse is sufficient.
461   if (SemaRef.inTemplateInstantiation())
462     return false;
463 
464   Scope *S = SemaRef.getCurScope();
465   while (S && !S->isSEHExceptScope())
466     S = S->getParent();
467   if (!S || !(S->getFlags() & NeededScopeFlags)) {
468     auto *DRE = cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
469     SemaRef.Diag(TheCall->getExprLoc(), DiagID)
470         << DRE->getDecl()->getIdentifier();
471     return true;
472   }
473 
474   return false;
475 }
476 
477 static inline bool isBlockPointer(Expr *Arg) {
478   return Arg->getType()->isBlockPointerType();
479 }
480 
481 /// OpenCL C v2.0, s6.13.17.2 - Checks that the block parameters are all local
482 /// void*, which is a requirement of device side enqueue.
483 static bool checkOpenCLBlockArgs(Sema &S, Expr *BlockArg) {
484   const BlockPointerType *BPT =
485       cast<BlockPointerType>(BlockArg->getType().getCanonicalType());
486   ArrayRef<QualType> Params =
487       BPT->getPointeeType()->getAs<FunctionProtoType>()->getParamTypes();
488   unsigned ArgCounter = 0;
489   bool IllegalParams = false;
490   // Iterate through the block parameters until either one is found that is not
491   // a local void*, or the block is valid.
492   for (ArrayRef<QualType>::iterator I = Params.begin(), E = Params.end();
493        I != E; ++I, ++ArgCounter) {
494     if (!(*I)->isPointerType() || !(*I)->getPointeeType()->isVoidType() ||
495         (*I)->getPointeeType().getQualifiers().getAddressSpace() !=
496             LangAS::opencl_local) {
497       // Get the location of the error. If a block literal has been passed
498       // (BlockExpr) then we can point straight to the offending argument,
499       // else we just point to the variable reference.
500       SourceLocation ErrorLoc;
501       if (isa<BlockExpr>(BlockArg)) {
502         BlockDecl *BD = cast<BlockExpr>(BlockArg)->getBlockDecl();
503         ErrorLoc = BD->getParamDecl(ArgCounter)->getBeginLoc();
504       } else if (isa<DeclRefExpr>(BlockArg)) {
505         ErrorLoc = cast<DeclRefExpr>(BlockArg)->getBeginLoc();
506       }
507       S.Diag(ErrorLoc,
508              diag::err_opencl_enqueue_kernel_blocks_non_local_void_args);
509       IllegalParams = true;
510     }
511   }
512 
513   return IllegalParams;
514 }
515 
516 static bool checkOpenCLSubgroupExt(Sema &S, CallExpr *Call) {
517   if (!S.getOpenCLOptions().isEnabled("cl_khr_subgroups")) {
518     S.Diag(Call->getBeginLoc(), diag::err_opencl_requires_extension)
519         << 1 << Call->getDirectCallee() << "cl_khr_subgroups";
520     return true;
521   }
522   return false;
523 }
524 
525 static bool SemaOpenCLBuiltinNDRangeAndBlock(Sema &S, CallExpr *TheCall) {
526   if (checkArgCount(S, TheCall, 2))
527     return true;
528 
529   if (checkOpenCLSubgroupExt(S, TheCall))
530     return true;
531 
532   // First argument is an ndrange_t type.
533   Expr *NDRangeArg = TheCall->getArg(0);
534   if (NDRangeArg->getType().getUnqualifiedType().getAsString() != "ndrange_t") {
535     S.Diag(NDRangeArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
536         << TheCall->getDirectCallee() << "'ndrange_t'";
537     return true;
538   }
539 
540   Expr *BlockArg = TheCall->getArg(1);
541   if (!isBlockPointer(BlockArg)) {
542     S.Diag(BlockArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
543         << TheCall->getDirectCallee() << "block";
544     return true;
545   }
546   return checkOpenCLBlockArgs(S, BlockArg);
547 }
548 
549 /// OpenCL C v2.0, s6.13.17.6 - Check the argument to the
550 /// get_kernel_work_group_size
551 /// and get_kernel_preferred_work_group_size_multiple builtin functions.
552 static bool SemaOpenCLBuiltinKernelWorkGroupSize(Sema &S, CallExpr *TheCall) {
553   if (checkArgCount(S, TheCall, 1))
554     return true;
555 
556   Expr *BlockArg = TheCall->getArg(0);
557   if (!isBlockPointer(BlockArg)) {
558     S.Diag(BlockArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
559         << TheCall->getDirectCallee() << "block";
560     return true;
561   }
562   return checkOpenCLBlockArgs(S, BlockArg);
563 }
564 
565 /// Diagnose integer type and any valid implicit conversion to it.
566 static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E,
567                                       const QualType &IntType);
568 
569 static bool checkOpenCLEnqueueLocalSizeArgs(Sema &S, CallExpr *TheCall,
570                                             unsigned Start, unsigned End) {
571   bool IllegalParams = false;
572   for (unsigned I = Start; I <= End; ++I)
573     IllegalParams |= checkOpenCLEnqueueIntType(S, TheCall->getArg(I),
574                                               S.Context.getSizeType());
575   return IllegalParams;
576 }
577 
578 /// OpenCL v2.0, s6.13.17.1 - Check that sizes are provided for all
579 /// 'local void*' parameter of passed block.
580 static bool checkOpenCLEnqueueVariadicArgs(Sema &S, CallExpr *TheCall,
581                                            Expr *BlockArg,
582                                            unsigned NumNonVarArgs) {
583   const BlockPointerType *BPT =
584       cast<BlockPointerType>(BlockArg->getType().getCanonicalType());
585   unsigned NumBlockParams =
586       BPT->getPointeeType()->getAs<FunctionProtoType>()->getNumParams();
587   unsigned TotalNumArgs = TheCall->getNumArgs();
588 
589   // For each argument passed to the block, a corresponding uint needs to
590   // be passed to describe the size of the local memory.
591   if (TotalNumArgs != NumBlockParams + NumNonVarArgs) {
592     S.Diag(TheCall->getBeginLoc(),
593            diag::err_opencl_enqueue_kernel_local_size_args);
594     return true;
595   }
596 
597   // Check that the sizes of the local memory are specified by integers.
598   return checkOpenCLEnqueueLocalSizeArgs(S, TheCall, NumNonVarArgs,
599                                          TotalNumArgs - 1);
600 }
601 
602 /// OpenCL C v2.0, s6.13.17 - Enqueue kernel function contains four different
603 /// overload formats specified in Table 6.13.17.1.
604 /// int enqueue_kernel(queue_t queue,
605 ///                    kernel_enqueue_flags_t flags,
606 ///                    const ndrange_t ndrange,
607 ///                    void (^block)(void))
608 /// int enqueue_kernel(queue_t queue,
609 ///                    kernel_enqueue_flags_t flags,
610 ///                    const ndrange_t ndrange,
611 ///                    uint num_events_in_wait_list,
612 ///                    clk_event_t *event_wait_list,
613 ///                    clk_event_t *event_ret,
614 ///                    void (^block)(void))
615 /// int enqueue_kernel(queue_t queue,
616 ///                    kernel_enqueue_flags_t flags,
617 ///                    const ndrange_t ndrange,
618 ///                    void (^block)(local void*, ...),
619 ///                    uint size0, ...)
620 /// int enqueue_kernel(queue_t queue,
621 ///                    kernel_enqueue_flags_t flags,
622 ///                    const ndrange_t ndrange,
623 ///                    uint num_events_in_wait_list,
624 ///                    clk_event_t *event_wait_list,
625 ///                    clk_event_t *event_ret,
626 ///                    void (^block)(local void*, ...),
627 ///                    uint size0, ...)
628 static bool SemaOpenCLBuiltinEnqueueKernel(Sema &S, CallExpr *TheCall) {
629   unsigned NumArgs = TheCall->getNumArgs();
630 
631   if (NumArgs < 4) {
632     S.Diag(TheCall->getBeginLoc(), diag::err_typecheck_call_too_few_args);
633     return true;
634   }
635 
636   Expr *Arg0 = TheCall->getArg(0);
637   Expr *Arg1 = TheCall->getArg(1);
638   Expr *Arg2 = TheCall->getArg(2);
639   Expr *Arg3 = TheCall->getArg(3);
640 
641   // First argument always needs to be a queue_t type.
642   if (!Arg0->getType()->isQueueT()) {
643     S.Diag(TheCall->getArg(0)->getBeginLoc(),
644            diag::err_opencl_builtin_expected_type)
645         << TheCall->getDirectCallee() << S.Context.OCLQueueTy;
646     return true;
647   }
648 
649   // Second argument always needs to be a kernel_enqueue_flags_t enum value.
650   if (!Arg1->getType()->isIntegerType()) {
651     S.Diag(TheCall->getArg(1)->getBeginLoc(),
652            diag::err_opencl_builtin_expected_type)
653         << TheCall->getDirectCallee() << "'kernel_enqueue_flags_t' (i.e. uint)";
654     return true;
655   }
656 
657   // Third argument is always an ndrange_t type.
658   if (Arg2->getType().getUnqualifiedType().getAsString() != "ndrange_t") {
659     S.Diag(TheCall->getArg(2)->getBeginLoc(),
660            diag::err_opencl_builtin_expected_type)
661         << TheCall->getDirectCallee() << "'ndrange_t'";
662     return true;
663   }
664 
665   // With four arguments, there is only one form that the function could be
666   // called in: no events and no variable arguments.
667   if (NumArgs == 4) {
668     // check that the last argument is the right block type.
669     if (!isBlockPointer(Arg3)) {
670       S.Diag(Arg3->getBeginLoc(), diag::err_opencl_builtin_expected_type)
671           << TheCall->getDirectCallee() << "block";
672       return true;
673     }
674     // we have a block type, check the prototype
675     const BlockPointerType *BPT =
676         cast<BlockPointerType>(Arg3->getType().getCanonicalType());
677     if (BPT->getPointeeType()->getAs<FunctionProtoType>()->getNumParams() > 0) {
678       S.Diag(Arg3->getBeginLoc(),
679              diag::err_opencl_enqueue_kernel_blocks_no_args);
680       return true;
681     }
682     return false;
683   }
684   // we can have block + varargs.
685   if (isBlockPointer(Arg3))
686     return (checkOpenCLBlockArgs(S, Arg3) ||
687             checkOpenCLEnqueueVariadicArgs(S, TheCall, Arg3, 4));
688   // last two cases with either exactly 7 args or 7 args and varargs.
689   if (NumArgs >= 7) {
690     // check common block argument.
691     Expr *Arg6 = TheCall->getArg(6);
692     if (!isBlockPointer(Arg6)) {
693       S.Diag(Arg6->getBeginLoc(), diag::err_opencl_builtin_expected_type)
694           << TheCall->getDirectCallee() << "block";
695       return true;
696     }
697     if (checkOpenCLBlockArgs(S, Arg6))
698       return true;
699 
700     // Forth argument has to be any integer type.
701     if (!Arg3->getType()->isIntegerType()) {
702       S.Diag(TheCall->getArg(3)->getBeginLoc(),
703              diag::err_opencl_builtin_expected_type)
704           << TheCall->getDirectCallee() << "integer";
705       return true;
706     }
707     // check remaining common arguments.
708     Expr *Arg4 = TheCall->getArg(4);
709     Expr *Arg5 = TheCall->getArg(5);
710 
711     // Fifth argument is always passed as a pointer to clk_event_t.
712     if (!Arg4->isNullPointerConstant(S.Context,
713                                      Expr::NPC_ValueDependentIsNotNull) &&
714         !Arg4->getType()->getPointeeOrArrayElementType()->isClkEventT()) {
715       S.Diag(TheCall->getArg(4)->getBeginLoc(),
716              diag::err_opencl_builtin_expected_type)
717           << TheCall->getDirectCallee()
718           << S.Context.getPointerType(S.Context.OCLClkEventTy);
719       return true;
720     }
721 
722     // Sixth argument is always passed as a pointer to clk_event_t.
723     if (!Arg5->isNullPointerConstant(S.Context,
724                                      Expr::NPC_ValueDependentIsNotNull) &&
725         !(Arg5->getType()->isPointerType() &&
726           Arg5->getType()->getPointeeType()->isClkEventT())) {
727       S.Diag(TheCall->getArg(5)->getBeginLoc(),
728              diag::err_opencl_builtin_expected_type)
729           << TheCall->getDirectCallee()
730           << S.Context.getPointerType(S.Context.OCLClkEventTy);
731       return true;
732     }
733 
734     if (NumArgs == 7)
735       return false;
736 
737     return checkOpenCLEnqueueVariadicArgs(S, TheCall, Arg6, 7);
738   }
739 
740   // None of the specific case has been detected, give generic error
741   S.Diag(TheCall->getBeginLoc(),
742          diag::err_opencl_enqueue_kernel_incorrect_args);
743   return true;
744 }
745 
746 /// Returns OpenCL access qual.
747 static OpenCLAccessAttr *getOpenCLArgAccess(const Decl *D) {
748     return D->getAttr<OpenCLAccessAttr>();
749 }
750 
751 /// Returns true if pipe element type is different from the pointer.
752 static bool checkOpenCLPipeArg(Sema &S, CallExpr *Call) {
753   const Expr *Arg0 = Call->getArg(0);
754   // First argument type should always be pipe.
755   if (!Arg0->getType()->isPipeType()) {
756     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg)
757         << Call->getDirectCallee() << Arg0->getSourceRange();
758     return true;
759   }
760   OpenCLAccessAttr *AccessQual =
761       getOpenCLArgAccess(cast<DeclRefExpr>(Arg0)->getDecl());
762   // Validates the access qualifier is compatible with the call.
763   // OpenCL v2.0 s6.13.16 - The access qualifiers for pipe should only be
764   // read_only and write_only, and assumed to be read_only if no qualifier is
765   // specified.
766   switch (Call->getDirectCallee()->getBuiltinID()) {
767   case Builtin::BIread_pipe:
768   case Builtin::BIreserve_read_pipe:
769   case Builtin::BIcommit_read_pipe:
770   case Builtin::BIwork_group_reserve_read_pipe:
771   case Builtin::BIsub_group_reserve_read_pipe:
772   case Builtin::BIwork_group_commit_read_pipe:
773   case Builtin::BIsub_group_commit_read_pipe:
774     if (!(!AccessQual || AccessQual->isReadOnly())) {
775       S.Diag(Arg0->getBeginLoc(),
776              diag::err_opencl_builtin_pipe_invalid_access_modifier)
777           << "read_only" << Arg0->getSourceRange();
778       return true;
779     }
780     break;
781   case Builtin::BIwrite_pipe:
782   case Builtin::BIreserve_write_pipe:
783   case Builtin::BIcommit_write_pipe:
784   case Builtin::BIwork_group_reserve_write_pipe:
785   case Builtin::BIsub_group_reserve_write_pipe:
786   case Builtin::BIwork_group_commit_write_pipe:
787   case Builtin::BIsub_group_commit_write_pipe:
788     if (!(AccessQual && AccessQual->isWriteOnly())) {
789       S.Diag(Arg0->getBeginLoc(),
790              diag::err_opencl_builtin_pipe_invalid_access_modifier)
791           << "write_only" << Arg0->getSourceRange();
792       return true;
793     }
794     break;
795   default:
796     break;
797   }
798   return false;
799 }
800 
801 /// Returns true if pipe element type is different from the pointer.
802 static bool checkOpenCLPipePacketType(Sema &S, CallExpr *Call, unsigned Idx) {
803   const Expr *Arg0 = Call->getArg(0);
804   const Expr *ArgIdx = Call->getArg(Idx);
805   const PipeType *PipeTy = cast<PipeType>(Arg0->getType());
806   const QualType EltTy = PipeTy->getElementType();
807   const PointerType *ArgTy = ArgIdx->getType()->getAs<PointerType>();
808   // The Idx argument should be a pointer and the type of the pointer and
809   // the type of pipe element should also be the same.
810   if (!ArgTy ||
811       !S.Context.hasSameType(
812           EltTy, ArgTy->getPointeeType()->getCanonicalTypeInternal())) {
813     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
814         << Call->getDirectCallee() << S.Context.getPointerType(EltTy)
815         << ArgIdx->getType() << ArgIdx->getSourceRange();
816     return true;
817   }
818   return false;
819 }
820 
821 // Performs semantic analysis for the read/write_pipe call.
822 // \param S Reference to the semantic analyzer.
823 // \param Call A pointer to the builtin call.
824 // \return True if a semantic error has been found, false otherwise.
825 static bool SemaBuiltinRWPipe(Sema &S, CallExpr *Call) {
826   // OpenCL v2.0 s6.13.16.2 - The built-in read/write
827   // functions have two forms.
828   switch (Call->getNumArgs()) {
829   case 2:
830     if (checkOpenCLPipeArg(S, Call))
831       return true;
832     // The call with 2 arguments should be
833     // read/write_pipe(pipe T, T*).
834     // Check packet type T.
835     if (checkOpenCLPipePacketType(S, Call, 1))
836       return true;
837     break;
838 
839   case 4: {
840     if (checkOpenCLPipeArg(S, Call))
841       return true;
842     // The call with 4 arguments should be
843     // read/write_pipe(pipe T, reserve_id_t, uint, T*).
844     // Check reserve_id_t.
845     if (!Call->getArg(1)->getType()->isReserveIDT()) {
846       S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
847           << Call->getDirectCallee() << S.Context.OCLReserveIDTy
848           << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange();
849       return true;
850     }
851 
852     // Check the index.
853     const Expr *Arg2 = Call->getArg(2);
854     if (!Arg2->getType()->isIntegerType() &&
855         !Arg2->getType()->isUnsignedIntegerType()) {
856       S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
857           << Call->getDirectCallee() << S.Context.UnsignedIntTy
858           << Arg2->getType() << Arg2->getSourceRange();
859       return true;
860     }
861 
862     // Check packet type T.
863     if (checkOpenCLPipePacketType(S, Call, 3))
864       return true;
865   } break;
866   default:
867     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_arg_num)
868         << Call->getDirectCallee() << Call->getSourceRange();
869     return true;
870   }
871 
872   return false;
873 }
874 
875 // Performs a semantic analysis on the {work_group_/sub_group_
876 //        /_}reserve_{read/write}_pipe
877 // \param S Reference to the semantic analyzer.
878 // \param Call The call to the builtin function to be analyzed.
879 // \return True if a semantic error was found, false otherwise.
880 static bool SemaBuiltinReserveRWPipe(Sema &S, CallExpr *Call) {
881   if (checkArgCount(S, Call, 2))
882     return true;
883 
884   if (checkOpenCLPipeArg(S, Call))
885     return true;
886 
887   // Check the reserve size.
888   if (!Call->getArg(1)->getType()->isIntegerType() &&
889       !Call->getArg(1)->getType()->isUnsignedIntegerType()) {
890     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
891         << Call->getDirectCallee() << S.Context.UnsignedIntTy
892         << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange();
893     return true;
894   }
895 
896   // Since return type of reserve_read/write_pipe built-in function is
897   // reserve_id_t, which is not defined in the builtin def file , we used int
898   // as return type and need to override the return type of these functions.
899   Call->setType(S.Context.OCLReserveIDTy);
900 
901   return false;
902 }
903 
904 // Performs a semantic analysis on {work_group_/sub_group_
905 //        /_}commit_{read/write}_pipe
906 // \param S Reference to the semantic analyzer.
907 // \param Call The call to the builtin function to be analyzed.
908 // \return True if a semantic error was found, false otherwise.
909 static bool SemaBuiltinCommitRWPipe(Sema &S, CallExpr *Call) {
910   if (checkArgCount(S, Call, 2))
911     return true;
912 
913   if (checkOpenCLPipeArg(S, Call))
914     return true;
915 
916   // Check reserve_id_t.
917   if (!Call->getArg(1)->getType()->isReserveIDT()) {
918     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
919         << Call->getDirectCallee() << S.Context.OCLReserveIDTy
920         << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange();
921     return true;
922   }
923 
924   return false;
925 }
926 
927 // Performs a semantic analysis on the call to built-in Pipe
928 //        Query Functions.
929 // \param S Reference to the semantic analyzer.
930 // \param Call The call to the builtin function to be analyzed.
931 // \return True if a semantic error was found, false otherwise.
932 static bool SemaBuiltinPipePackets(Sema &S, CallExpr *Call) {
933   if (checkArgCount(S, Call, 1))
934     return true;
935 
936   if (!Call->getArg(0)->getType()->isPipeType()) {
937     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg)
938         << Call->getDirectCallee() << Call->getArg(0)->getSourceRange();
939     return true;
940   }
941 
942   return false;
943 }
944 
945 // OpenCL v2.0 s6.13.9 - Address space qualifier functions.
946 // Performs semantic analysis for the to_global/local/private call.
947 // \param S Reference to the semantic analyzer.
948 // \param BuiltinID ID of the builtin function.
949 // \param Call A pointer to the builtin call.
950 // \return True if a semantic error has been found, false otherwise.
951 static bool SemaOpenCLBuiltinToAddr(Sema &S, unsigned BuiltinID,
952                                     CallExpr *Call) {
953   if (Call->getNumArgs() != 1) {
954     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_to_addr_arg_num)
955         << Call->getDirectCallee() << Call->getSourceRange();
956     return true;
957   }
958 
959   auto RT = Call->getArg(0)->getType();
960   if (!RT->isPointerType() || RT->getPointeeType()
961       .getAddressSpace() == LangAS::opencl_constant) {
962     S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_to_addr_invalid_arg)
963         << Call->getArg(0) << Call->getDirectCallee() << Call->getSourceRange();
964     return true;
965   }
966 
967   if (RT->getPointeeType().getAddressSpace() != LangAS::opencl_generic) {
968     S.Diag(Call->getArg(0)->getBeginLoc(),
969            diag::warn_opencl_generic_address_space_arg)
970         << Call->getDirectCallee()->getNameInfo().getAsString()
971         << Call->getArg(0)->getSourceRange();
972   }
973 
974   RT = RT->getPointeeType();
975   auto Qual = RT.getQualifiers();
976   switch (BuiltinID) {
977   case Builtin::BIto_global:
978     Qual.setAddressSpace(LangAS::opencl_global);
979     break;
980   case Builtin::BIto_local:
981     Qual.setAddressSpace(LangAS::opencl_local);
982     break;
983   case Builtin::BIto_private:
984     Qual.setAddressSpace(LangAS::opencl_private);
985     break;
986   default:
987     llvm_unreachable("Invalid builtin function");
988   }
989   Call->setType(S.Context.getPointerType(S.Context.getQualifiedType(
990       RT.getUnqualifiedType(), Qual)));
991 
992   return false;
993 }
994 
995 static ExprResult SemaBuiltinLaunder(Sema &S, CallExpr *TheCall) {
996   if (checkArgCount(S, TheCall, 1))
997     return ExprError();
998 
999   // Compute __builtin_launder's parameter type from the argument.
1000   // The parameter type is:
1001   //  * The type of the argument if it's not an array or function type,
1002   //  Otherwise,
1003   //  * The decayed argument type.
1004   QualType ParamTy = [&]() {
1005     QualType ArgTy = TheCall->getArg(0)->getType();
1006     if (const ArrayType *Ty = ArgTy->getAsArrayTypeUnsafe())
1007       return S.Context.getPointerType(Ty->getElementType());
1008     if (ArgTy->isFunctionType()) {
1009       return S.Context.getPointerType(ArgTy);
1010     }
1011     return ArgTy;
1012   }();
1013 
1014   TheCall->setType(ParamTy);
1015 
1016   auto DiagSelect = [&]() -> llvm::Optional<unsigned> {
1017     if (!ParamTy->isPointerType())
1018       return 0;
1019     if (ParamTy->isFunctionPointerType())
1020       return 1;
1021     if (ParamTy->isVoidPointerType())
1022       return 2;
1023     return llvm::Optional<unsigned>{};
1024   }();
1025   if (DiagSelect.hasValue()) {
1026     S.Diag(TheCall->getBeginLoc(), diag::err_builtin_launder_invalid_arg)
1027         << DiagSelect.getValue() << TheCall->getSourceRange();
1028     return ExprError();
1029   }
1030 
1031   // We either have an incomplete class type, or we have a class template
1032   // whose instantiation has not been forced. Example:
1033   //
1034   //   template <class T> struct Foo { T value; };
1035   //   Foo<int> *p = nullptr;
1036   //   auto *d = __builtin_launder(p);
1037   if (S.RequireCompleteType(TheCall->getBeginLoc(), ParamTy->getPointeeType(),
1038                             diag::err_incomplete_type))
1039     return ExprError();
1040 
1041   assert(ParamTy->getPointeeType()->isObjectType() &&
1042          "Unhandled non-object pointer case");
1043 
1044   InitializedEntity Entity =
1045       InitializedEntity::InitializeParameter(S.Context, ParamTy, false);
1046   ExprResult Arg =
1047       S.PerformCopyInitialization(Entity, SourceLocation(), TheCall->getArg(0));
1048   if (Arg.isInvalid())
1049     return ExprError();
1050   TheCall->setArg(0, Arg.get());
1051 
1052   return TheCall;
1053 }
1054 
1055 // Emit an error and return true if the current architecture is not in the list
1056 // of supported architectures.
1057 static bool
1058 CheckBuiltinTargetSupport(Sema &S, unsigned BuiltinID, CallExpr *TheCall,
1059                           ArrayRef<llvm::Triple::ArchType> SupportedArchs) {
1060   llvm::Triple::ArchType CurArch =
1061       S.getASTContext().getTargetInfo().getTriple().getArch();
1062   if (llvm::is_contained(SupportedArchs, CurArch))
1063     return false;
1064   S.Diag(TheCall->getBeginLoc(), diag::err_builtin_target_unsupported)
1065       << TheCall->getSourceRange();
1066   return true;
1067 }
1068 
1069 ExprResult
1070 Sema::CheckBuiltinFunctionCall(FunctionDecl *FDecl, unsigned BuiltinID,
1071                                CallExpr *TheCall) {
1072   ExprResult TheCallResult(TheCall);
1073 
1074   // Find out if any arguments are required to be integer constant expressions.
1075   unsigned ICEArguments = 0;
1076   ASTContext::GetBuiltinTypeError Error;
1077   Context.GetBuiltinType(BuiltinID, Error, &ICEArguments);
1078   if (Error != ASTContext::GE_None)
1079     ICEArguments = 0;  // Don't diagnose previously diagnosed errors.
1080 
1081   // If any arguments are required to be ICE's, check and diagnose.
1082   for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) {
1083     // Skip arguments not required to be ICE's.
1084     if ((ICEArguments & (1 << ArgNo)) == 0) continue;
1085 
1086     llvm::APSInt Result;
1087     if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
1088       return true;
1089     ICEArguments &= ~(1 << ArgNo);
1090   }
1091 
1092   switch (BuiltinID) {
1093   case Builtin::BI__builtin___CFStringMakeConstantString:
1094     assert(TheCall->getNumArgs() == 1 &&
1095            "Wrong # arguments to builtin CFStringMakeConstantString");
1096     if (CheckObjCString(TheCall->getArg(0)))
1097       return ExprError();
1098     break;
1099   case Builtin::BI__builtin_ms_va_start:
1100   case Builtin::BI__builtin_stdarg_start:
1101   case Builtin::BI__builtin_va_start:
1102     if (SemaBuiltinVAStart(BuiltinID, TheCall))
1103       return ExprError();
1104     break;
1105   case Builtin::BI__va_start: {
1106     switch (Context.getTargetInfo().getTriple().getArch()) {
1107     case llvm::Triple::aarch64:
1108     case llvm::Triple::arm:
1109     case llvm::Triple::thumb:
1110       if (SemaBuiltinVAStartARMMicrosoft(TheCall))
1111         return ExprError();
1112       break;
1113     default:
1114       if (SemaBuiltinVAStart(BuiltinID, TheCall))
1115         return ExprError();
1116       break;
1117     }
1118     break;
1119   }
1120 
1121   // The acquire, release, and no fence variants are ARM and AArch64 only.
1122   case Builtin::BI_interlockedbittestandset_acq:
1123   case Builtin::BI_interlockedbittestandset_rel:
1124   case Builtin::BI_interlockedbittestandset_nf:
1125   case Builtin::BI_interlockedbittestandreset_acq:
1126   case Builtin::BI_interlockedbittestandreset_rel:
1127   case Builtin::BI_interlockedbittestandreset_nf:
1128     if (CheckBuiltinTargetSupport(
1129             *this, BuiltinID, TheCall,
1130             {llvm::Triple::arm, llvm::Triple::thumb, llvm::Triple::aarch64}))
1131       return ExprError();
1132     break;
1133 
1134   // The 64-bit bittest variants are x64, ARM, and AArch64 only.
1135   case Builtin::BI_bittest64:
1136   case Builtin::BI_bittestandcomplement64:
1137   case Builtin::BI_bittestandreset64:
1138   case Builtin::BI_bittestandset64:
1139   case Builtin::BI_interlockedbittestandreset64:
1140   case Builtin::BI_interlockedbittestandset64:
1141     if (CheckBuiltinTargetSupport(*this, BuiltinID, TheCall,
1142                                   {llvm::Triple::x86_64, llvm::Triple::arm,
1143                                    llvm::Triple::thumb, llvm::Triple::aarch64}))
1144       return ExprError();
1145     break;
1146 
1147   case Builtin::BI__builtin_isgreater:
1148   case Builtin::BI__builtin_isgreaterequal:
1149   case Builtin::BI__builtin_isless:
1150   case Builtin::BI__builtin_islessequal:
1151   case Builtin::BI__builtin_islessgreater:
1152   case Builtin::BI__builtin_isunordered:
1153     if (SemaBuiltinUnorderedCompare(TheCall))
1154       return ExprError();
1155     break;
1156   case Builtin::BI__builtin_fpclassify:
1157     if (SemaBuiltinFPClassification(TheCall, 6))
1158       return ExprError();
1159     break;
1160   case Builtin::BI__builtin_isfinite:
1161   case Builtin::BI__builtin_isinf:
1162   case Builtin::BI__builtin_isinf_sign:
1163   case Builtin::BI__builtin_isnan:
1164   case Builtin::BI__builtin_isnormal:
1165   case Builtin::BI__builtin_signbit:
1166   case Builtin::BI__builtin_signbitf:
1167   case Builtin::BI__builtin_signbitl:
1168     if (SemaBuiltinFPClassification(TheCall, 1))
1169       return ExprError();
1170     break;
1171   case Builtin::BI__builtin_shufflevector:
1172     return SemaBuiltinShuffleVector(TheCall);
1173     // TheCall will be freed by the smart pointer here, but that's fine, since
1174     // SemaBuiltinShuffleVector guts it, but then doesn't release it.
1175   case Builtin::BI__builtin_prefetch:
1176     if (SemaBuiltinPrefetch(TheCall))
1177       return ExprError();
1178     break;
1179   case Builtin::BI__builtin_alloca_with_align:
1180     if (SemaBuiltinAllocaWithAlign(TheCall))
1181       return ExprError();
1182     LLVM_FALLTHROUGH;
1183   case Builtin::BI__builtin_alloca:
1184     Diag(TheCall->getBeginLoc(), diag::warn_alloca)
1185         << TheCall->getDirectCallee();
1186     break;
1187   case Builtin::BI__assume:
1188   case Builtin::BI__builtin_assume:
1189     if (SemaBuiltinAssume(TheCall))
1190       return ExprError();
1191     break;
1192   case Builtin::BI__builtin_assume_aligned:
1193     if (SemaBuiltinAssumeAligned(TheCall))
1194       return ExprError();
1195     break;
1196   case Builtin::BI__builtin_dynamic_object_size:
1197   case Builtin::BI__builtin_object_size:
1198     if (SemaBuiltinConstantArgRange(TheCall, 1, 0, 3))
1199       return ExprError();
1200     break;
1201   case Builtin::BI__builtin_longjmp:
1202     if (SemaBuiltinLongjmp(TheCall))
1203       return ExprError();
1204     break;
1205   case Builtin::BI__builtin_setjmp:
1206     if (SemaBuiltinSetjmp(TheCall))
1207       return ExprError();
1208     break;
1209   case Builtin::BI_setjmp:
1210   case Builtin::BI_setjmpex:
1211     if (checkArgCount(*this, TheCall, 1))
1212       return true;
1213     break;
1214   case Builtin::BI__builtin_classify_type:
1215     if (checkArgCount(*this, TheCall, 1)) return true;
1216     TheCall->setType(Context.IntTy);
1217     break;
1218   case Builtin::BI__builtin_constant_p: {
1219     if (checkArgCount(*this, TheCall, 1)) return true;
1220     ExprResult Arg = DefaultFunctionArrayLvalueConversion(TheCall->getArg(0));
1221     if (Arg.isInvalid()) return true;
1222     TheCall->setArg(0, Arg.get());
1223     TheCall->setType(Context.IntTy);
1224     break;
1225   }
1226   case Builtin::BI__builtin_launder:
1227     return SemaBuiltinLaunder(*this, TheCall);
1228   case Builtin::BI__sync_fetch_and_add:
1229   case Builtin::BI__sync_fetch_and_add_1:
1230   case Builtin::BI__sync_fetch_and_add_2:
1231   case Builtin::BI__sync_fetch_and_add_4:
1232   case Builtin::BI__sync_fetch_and_add_8:
1233   case Builtin::BI__sync_fetch_and_add_16:
1234   case Builtin::BI__sync_fetch_and_sub:
1235   case Builtin::BI__sync_fetch_and_sub_1:
1236   case Builtin::BI__sync_fetch_and_sub_2:
1237   case Builtin::BI__sync_fetch_and_sub_4:
1238   case Builtin::BI__sync_fetch_and_sub_8:
1239   case Builtin::BI__sync_fetch_and_sub_16:
1240   case Builtin::BI__sync_fetch_and_or:
1241   case Builtin::BI__sync_fetch_and_or_1:
1242   case Builtin::BI__sync_fetch_and_or_2:
1243   case Builtin::BI__sync_fetch_and_or_4:
1244   case Builtin::BI__sync_fetch_and_or_8:
1245   case Builtin::BI__sync_fetch_and_or_16:
1246   case Builtin::BI__sync_fetch_and_and:
1247   case Builtin::BI__sync_fetch_and_and_1:
1248   case Builtin::BI__sync_fetch_and_and_2:
1249   case Builtin::BI__sync_fetch_and_and_4:
1250   case Builtin::BI__sync_fetch_and_and_8:
1251   case Builtin::BI__sync_fetch_and_and_16:
1252   case Builtin::BI__sync_fetch_and_xor:
1253   case Builtin::BI__sync_fetch_and_xor_1:
1254   case Builtin::BI__sync_fetch_and_xor_2:
1255   case Builtin::BI__sync_fetch_and_xor_4:
1256   case Builtin::BI__sync_fetch_and_xor_8:
1257   case Builtin::BI__sync_fetch_and_xor_16:
1258   case Builtin::BI__sync_fetch_and_nand:
1259   case Builtin::BI__sync_fetch_and_nand_1:
1260   case Builtin::BI__sync_fetch_and_nand_2:
1261   case Builtin::BI__sync_fetch_and_nand_4:
1262   case Builtin::BI__sync_fetch_and_nand_8:
1263   case Builtin::BI__sync_fetch_and_nand_16:
1264   case Builtin::BI__sync_add_and_fetch:
1265   case Builtin::BI__sync_add_and_fetch_1:
1266   case Builtin::BI__sync_add_and_fetch_2:
1267   case Builtin::BI__sync_add_and_fetch_4:
1268   case Builtin::BI__sync_add_and_fetch_8:
1269   case Builtin::BI__sync_add_and_fetch_16:
1270   case Builtin::BI__sync_sub_and_fetch:
1271   case Builtin::BI__sync_sub_and_fetch_1:
1272   case Builtin::BI__sync_sub_and_fetch_2:
1273   case Builtin::BI__sync_sub_and_fetch_4:
1274   case Builtin::BI__sync_sub_and_fetch_8:
1275   case Builtin::BI__sync_sub_and_fetch_16:
1276   case Builtin::BI__sync_and_and_fetch:
1277   case Builtin::BI__sync_and_and_fetch_1:
1278   case Builtin::BI__sync_and_and_fetch_2:
1279   case Builtin::BI__sync_and_and_fetch_4:
1280   case Builtin::BI__sync_and_and_fetch_8:
1281   case Builtin::BI__sync_and_and_fetch_16:
1282   case Builtin::BI__sync_or_and_fetch:
1283   case Builtin::BI__sync_or_and_fetch_1:
1284   case Builtin::BI__sync_or_and_fetch_2:
1285   case Builtin::BI__sync_or_and_fetch_4:
1286   case Builtin::BI__sync_or_and_fetch_8:
1287   case Builtin::BI__sync_or_and_fetch_16:
1288   case Builtin::BI__sync_xor_and_fetch:
1289   case Builtin::BI__sync_xor_and_fetch_1:
1290   case Builtin::BI__sync_xor_and_fetch_2:
1291   case Builtin::BI__sync_xor_and_fetch_4:
1292   case Builtin::BI__sync_xor_and_fetch_8:
1293   case Builtin::BI__sync_xor_and_fetch_16:
1294   case Builtin::BI__sync_nand_and_fetch:
1295   case Builtin::BI__sync_nand_and_fetch_1:
1296   case Builtin::BI__sync_nand_and_fetch_2:
1297   case Builtin::BI__sync_nand_and_fetch_4:
1298   case Builtin::BI__sync_nand_and_fetch_8:
1299   case Builtin::BI__sync_nand_and_fetch_16:
1300   case Builtin::BI__sync_val_compare_and_swap:
1301   case Builtin::BI__sync_val_compare_and_swap_1:
1302   case Builtin::BI__sync_val_compare_and_swap_2:
1303   case Builtin::BI__sync_val_compare_and_swap_4:
1304   case Builtin::BI__sync_val_compare_and_swap_8:
1305   case Builtin::BI__sync_val_compare_and_swap_16:
1306   case Builtin::BI__sync_bool_compare_and_swap:
1307   case Builtin::BI__sync_bool_compare_and_swap_1:
1308   case Builtin::BI__sync_bool_compare_and_swap_2:
1309   case Builtin::BI__sync_bool_compare_and_swap_4:
1310   case Builtin::BI__sync_bool_compare_and_swap_8:
1311   case Builtin::BI__sync_bool_compare_and_swap_16:
1312   case Builtin::BI__sync_lock_test_and_set:
1313   case Builtin::BI__sync_lock_test_and_set_1:
1314   case Builtin::BI__sync_lock_test_and_set_2:
1315   case Builtin::BI__sync_lock_test_and_set_4:
1316   case Builtin::BI__sync_lock_test_and_set_8:
1317   case Builtin::BI__sync_lock_test_and_set_16:
1318   case Builtin::BI__sync_lock_release:
1319   case Builtin::BI__sync_lock_release_1:
1320   case Builtin::BI__sync_lock_release_2:
1321   case Builtin::BI__sync_lock_release_4:
1322   case Builtin::BI__sync_lock_release_8:
1323   case Builtin::BI__sync_lock_release_16:
1324   case Builtin::BI__sync_swap:
1325   case Builtin::BI__sync_swap_1:
1326   case Builtin::BI__sync_swap_2:
1327   case Builtin::BI__sync_swap_4:
1328   case Builtin::BI__sync_swap_8:
1329   case Builtin::BI__sync_swap_16:
1330     return SemaBuiltinAtomicOverloaded(TheCallResult);
1331   case Builtin::BI__sync_synchronize:
1332     Diag(TheCall->getBeginLoc(), diag::warn_atomic_implicit_seq_cst)
1333         << TheCall->getCallee()->getSourceRange();
1334     break;
1335   case Builtin::BI__builtin_nontemporal_load:
1336   case Builtin::BI__builtin_nontemporal_store:
1337     return SemaBuiltinNontemporalOverloaded(TheCallResult);
1338 #define BUILTIN(ID, TYPE, ATTRS)
1339 #define ATOMIC_BUILTIN(ID, TYPE, ATTRS) \
1340   case Builtin::BI##ID: \
1341     return SemaAtomicOpsOverloaded(TheCallResult, AtomicExpr::AO##ID);
1342 #include "clang/Basic/Builtins.def"
1343   case Builtin::BI__annotation:
1344     if (SemaBuiltinMSVCAnnotation(*this, TheCall))
1345       return ExprError();
1346     break;
1347   case Builtin::BI__builtin_annotation:
1348     if (SemaBuiltinAnnotation(*this, TheCall))
1349       return ExprError();
1350     break;
1351   case Builtin::BI__builtin_addressof:
1352     if (SemaBuiltinAddressof(*this, TheCall))
1353       return ExprError();
1354     break;
1355   case Builtin::BI__builtin_add_overflow:
1356   case Builtin::BI__builtin_sub_overflow:
1357   case Builtin::BI__builtin_mul_overflow:
1358     if (SemaBuiltinOverflow(*this, TheCall))
1359       return ExprError();
1360     break;
1361   case Builtin::BI__builtin_operator_new:
1362   case Builtin::BI__builtin_operator_delete: {
1363     bool IsDelete = BuiltinID == Builtin::BI__builtin_operator_delete;
1364     ExprResult Res =
1365         SemaBuiltinOperatorNewDeleteOverloaded(TheCallResult, IsDelete);
1366     if (Res.isInvalid())
1367       CorrectDelayedTyposInExpr(TheCallResult.get());
1368     return Res;
1369   }
1370   case Builtin::BI__builtin_dump_struct: {
1371     // We first want to ensure we are called with 2 arguments
1372     if (checkArgCount(*this, TheCall, 2))
1373       return ExprError();
1374     // Ensure that the first argument is of type 'struct XX *'
1375     const Expr *PtrArg = TheCall->getArg(0)->IgnoreParenImpCasts();
1376     const QualType PtrArgType = PtrArg->getType();
1377     if (!PtrArgType->isPointerType() ||
1378         !PtrArgType->getPointeeType()->isRecordType()) {
1379       Diag(PtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1380           << PtrArgType << "structure pointer" << 1 << 0 << 3 << 1 << PtrArgType
1381           << "structure pointer";
1382       return ExprError();
1383     }
1384 
1385     // Ensure that the second argument is of type 'FunctionType'
1386     const Expr *FnPtrArg = TheCall->getArg(1)->IgnoreImpCasts();
1387     const QualType FnPtrArgType = FnPtrArg->getType();
1388     if (!FnPtrArgType->isPointerType()) {
1389       Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1390           << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 << 2
1391           << FnPtrArgType << "'int (*)(const char *, ...)'";
1392       return ExprError();
1393     }
1394 
1395     const auto *FuncType =
1396         FnPtrArgType->getPointeeType()->getAs<FunctionType>();
1397 
1398     if (!FuncType) {
1399       Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1400           << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 << 2
1401           << FnPtrArgType << "'int (*)(const char *, ...)'";
1402       return ExprError();
1403     }
1404 
1405     if (const auto *FT = dyn_cast<FunctionProtoType>(FuncType)) {
1406       if (!FT->getNumParams()) {
1407         Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1408             << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3
1409             << 2 << FnPtrArgType << "'int (*)(const char *, ...)'";
1410         return ExprError();
1411       }
1412       QualType PT = FT->getParamType(0);
1413       if (!FT->isVariadic() || FT->getReturnType() != Context.IntTy ||
1414           !PT->isPointerType() || !PT->getPointeeType()->isCharType() ||
1415           !PT->getPointeeType().isConstQualified()) {
1416         Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1417             << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3
1418             << 2 << FnPtrArgType << "'int (*)(const char *, ...)'";
1419         return ExprError();
1420       }
1421     }
1422 
1423     TheCall->setType(Context.IntTy);
1424     break;
1425   }
1426   case Builtin::BI__builtin_preserve_access_index:
1427     if (SemaBuiltinPreserveAI(*this, TheCall))
1428       return ExprError();
1429     break;
1430   case Builtin::BI__builtin_call_with_static_chain:
1431     if (SemaBuiltinCallWithStaticChain(*this, TheCall))
1432       return ExprError();
1433     break;
1434   case Builtin::BI__exception_code:
1435   case Builtin::BI_exception_code:
1436     if (SemaBuiltinSEHScopeCheck(*this, TheCall, Scope::SEHExceptScope,
1437                                  diag::err_seh___except_block))
1438       return ExprError();
1439     break;
1440   case Builtin::BI__exception_info:
1441   case Builtin::BI_exception_info:
1442     if (SemaBuiltinSEHScopeCheck(*this, TheCall, Scope::SEHFilterScope,
1443                                  diag::err_seh___except_filter))
1444       return ExprError();
1445     break;
1446   case Builtin::BI__GetExceptionInfo:
1447     if (checkArgCount(*this, TheCall, 1))
1448       return ExprError();
1449 
1450     if (CheckCXXThrowOperand(
1451             TheCall->getBeginLoc(),
1452             Context.getExceptionObjectType(FDecl->getParamDecl(0)->getType()),
1453             TheCall))
1454       return ExprError();
1455 
1456     TheCall->setType(Context.VoidPtrTy);
1457     break;
1458   // OpenCL v2.0, s6.13.16 - Pipe functions
1459   case Builtin::BIread_pipe:
1460   case Builtin::BIwrite_pipe:
1461     // Since those two functions are declared with var args, we need a semantic
1462     // check for the argument.
1463     if (SemaBuiltinRWPipe(*this, TheCall))
1464       return ExprError();
1465     break;
1466   case Builtin::BIreserve_read_pipe:
1467   case Builtin::BIreserve_write_pipe:
1468   case Builtin::BIwork_group_reserve_read_pipe:
1469   case Builtin::BIwork_group_reserve_write_pipe:
1470     if (SemaBuiltinReserveRWPipe(*this, TheCall))
1471       return ExprError();
1472     break;
1473   case Builtin::BIsub_group_reserve_read_pipe:
1474   case Builtin::BIsub_group_reserve_write_pipe:
1475     if (checkOpenCLSubgroupExt(*this, TheCall) ||
1476         SemaBuiltinReserveRWPipe(*this, TheCall))
1477       return ExprError();
1478     break;
1479   case Builtin::BIcommit_read_pipe:
1480   case Builtin::BIcommit_write_pipe:
1481   case Builtin::BIwork_group_commit_read_pipe:
1482   case Builtin::BIwork_group_commit_write_pipe:
1483     if (SemaBuiltinCommitRWPipe(*this, TheCall))
1484       return ExprError();
1485     break;
1486   case Builtin::BIsub_group_commit_read_pipe:
1487   case Builtin::BIsub_group_commit_write_pipe:
1488     if (checkOpenCLSubgroupExt(*this, TheCall) ||
1489         SemaBuiltinCommitRWPipe(*this, TheCall))
1490       return ExprError();
1491     break;
1492   case Builtin::BIget_pipe_num_packets:
1493   case Builtin::BIget_pipe_max_packets:
1494     if (SemaBuiltinPipePackets(*this, TheCall))
1495       return ExprError();
1496     break;
1497   case Builtin::BIto_global:
1498   case Builtin::BIto_local:
1499   case Builtin::BIto_private:
1500     if (SemaOpenCLBuiltinToAddr(*this, BuiltinID, TheCall))
1501       return ExprError();
1502     break;
1503   // OpenCL v2.0, s6.13.17 - Enqueue kernel functions.
1504   case Builtin::BIenqueue_kernel:
1505     if (SemaOpenCLBuiltinEnqueueKernel(*this, TheCall))
1506       return ExprError();
1507     break;
1508   case Builtin::BIget_kernel_work_group_size:
1509   case Builtin::BIget_kernel_preferred_work_group_size_multiple:
1510     if (SemaOpenCLBuiltinKernelWorkGroupSize(*this, TheCall))
1511       return ExprError();
1512     break;
1513   case Builtin::BIget_kernel_max_sub_group_size_for_ndrange:
1514   case Builtin::BIget_kernel_sub_group_count_for_ndrange:
1515     if (SemaOpenCLBuiltinNDRangeAndBlock(*this, TheCall))
1516       return ExprError();
1517     break;
1518   case Builtin::BI__builtin_os_log_format:
1519   case Builtin::BI__builtin_os_log_format_buffer_size:
1520     if (SemaBuiltinOSLogFormat(TheCall))
1521       return ExprError();
1522     break;
1523   }
1524 
1525   // Since the target specific builtins for each arch overlap, only check those
1526   // of the arch we are compiling for.
1527   if (Context.BuiltinInfo.isTSBuiltin(BuiltinID)) {
1528     switch (Context.getTargetInfo().getTriple().getArch()) {
1529       case llvm::Triple::arm:
1530       case llvm::Triple::armeb:
1531       case llvm::Triple::thumb:
1532       case llvm::Triple::thumbeb:
1533         if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
1534           return ExprError();
1535         break;
1536       case llvm::Triple::aarch64:
1537       case llvm::Triple::aarch64_be:
1538         if (CheckAArch64BuiltinFunctionCall(BuiltinID, TheCall))
1539           return ExprError();
1540         break;
1541       case llvm::Triple::hexagon:
1542         if (CheckHexagonBuiltinFunctionCall(BuiltinID, TheCall))
1543           return ExprError();
1544         break;
1545       case llvm::Triple::mips:
1546       case llvm::Triple::mipsel:
1547       case llvm::Triple::mips64:
1548       case llvm::Triple::mips64el:
1549         if (CheckMipsBuiltinFunctionCall(BuiltinID, TheCall))
1550           return ExprError();
1551         break;
1552       case llvm::Triple::systemz:
1553         if (CheckSystemZBuiltinFunctionCall(BuiltinID, TheCall))
1554           return ExprError();
1555         break;
1556       case llvm::Triple::x86:
1557       case llvm::Triple::x86_64:
1558         if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
1559           return ExprError();
1560         break;
1561       case llvm::Triple::ppc:
1562       case llvm::Triple::ppc64:
1563       case llvm::Triple::ppc64le:
1564         if (CheckPPCBuiltinFunctionCall(BuiltinID, TheCall))
1565           return ExprError();
1566         break;
1567       default:
1568         break;
1569     }
1570   }
1571 
1572   return TheCallResult;
1573 }
1574 
1575 // Get the valid immediate range for the specified NEON type code.
1576 static unsigned RFT(unsigned t, bool shift = false, bool ForceQuad = false) {
1577   NeonTypeFlags Type(t);
1578   int IsQuad = ForceQuad ? true : Type.isQuad();
1579   switch (Type.getEltType()) {
1580   case NeonTypeFlags::Int8:
1581   case NeonTypeFlags::Poly8:
1582     return shift ? 7 : (8 << IsQuad) - 1;
1583   case NeonTypeFlags::Int16:
1584   case NeonTypeFlags::Poly16:
1585     return shift ? 15 : (4 << IsQuad) - 1;
1586   case NeonTypeFlags::Int32:
1587     return shift ? 31 : (2 << IsQuad) - 1;
1588   case NeonTypeFlags::Int64:
1589   case NeonTypeFlags::Poly64:
1590     return shift ? 63 : (1 << IsQuad) - 1;
1591   case NeonTypeFlags::Poly128:
1592     return shift ? 127 : (1 << IsQuad) - 1;
1593   case NeonTypeFlags::Float16:
1594     assert(!shift && "cannot shift float types!");
1595     return (4 << IsQuad) - 1;
1596   case NeonTypeFlags::Float32:
1597     assert(!shift && "cannot shift float types!");
1598     return (2 << IsQuad) - 1;
1599   case NeonTypeFlags::Float64:
1600     assert(!shift && "cannot shift float types!");
1601     return (1 << IsQuad) - 1;
1602   }
1603   llvm_unreachable("Invalid NeonTypeFlag!");
1604 }
1605 
1606 /// getNeonEltType - Return the QualType corresponding to the elements of
1607 /// the vector type specified by the NeonTypeFlags.  This is used to check
1608 /// the pointer arguments for Neon load/store intrinsics.
1609 static QualType getNeonEltType(NeonTypeFlags Flags, ASTContext &Context,
1610                                bool IsPolyUnsigned, bool IsInt64Long) {
1611   switch (Flags.getEltType()) {
1612   case NeonTypeFlags::Int8:
1613     return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
1614   case NeonTypeFlags::Int16:
1615     return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
1616   case NeonTypeFlags::Int32:
1617     return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
1618   case NeonTypeFlags::Int64:
1619     if (IsInt64Long)
1620       return Flags.isUnsigned() ? Context.UnsignedLongTy : Context.LongTy;
1621     else
1622       return Flags.isUnsigned() ? Context.UnsignedLongLongTy
1623                                 : Context.LongLongTy;
1624   case NeonTypeFlags::Poly8:
1625     return IsPolyUnsigned ? Context.UnsignedCharTy : Context.SignedCharTy;
1626   case NeonTypeFlags::Poly16:
1627     return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy;
1628   case NeonTypeFlags::Poly64:
1629     if (IsInt64Long)
1630       return Context.UnsignedLongTy;
1631     else
1632       return Context.UnsignedLongLongTy;
1633   case NeonTypeFlags::Poly128:
1634     break;
1635   case NeonTypeFlags::Float16:
1636     return Context.HalfTy;
1637   case NeonTypeFlags::Float32:
1638     return Context.FloatTy;
1639   case NeonTypeFlags::Float64:
1640     return Context.DoubleTy;
1641   }
1642   llvm_unreachable("Invalid NeonTypeFlag!");
1643 }
1644 
1645 bool Sema::CheckNeonBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
1646   llvm::APSInt Result;
1647   uint64_t mask = 0;
1648   unsigned TV = 0;
1649   int PtrArgNum = -1;
1650   bool HasConstPtr = false;
1651   switch (BuiltinID) {
1652 #define GET_NEON_OVERLOAD_CHECK
1653 #include "clang/Basic/arm_neon.inc"
1654 #include "clang/Basic/arm_fp16.inc"
1655 #undef GET_NEON_OVERLOAD_CHECK
1656   }
1657 
1658   // For NEON intrinsics which are overloaded on vector element type, validate
1659   // the immediate which specifies which variant to emit.
1660   unsigned ImmArg = TheCall->getNumArgs()-1;
1661   if (mask) {
1662     if (SemaBuiltinConstantArg(TheCall, ImmArg, Result))
1663       return true;
1664 
1665     TV = Result.getLimitedValue(64);
1666     if ((TV > 63) || (mask & (1ULL << TV)) == 0)
1667       return Diag(TheCall->getBeginLoc(), diag::err_invalid_neon_type_code)
1668              << TheCall->getArg(ImmArg)->getSourceRange();
1669   }
1670 
1671   if (PtrArgNum >= 0) {
1672     // Check that pointer arguments have the specified type.
1673     Expr *Arg = TheCall->getArg(PtrArgNum);
1674     if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg))
1675       Arg = ICE->getSubExpr();
1676     ExprResult RHS = DefaultFunctionArrayLvalueConversion(Arg);
1677     QualType RHSTy = RHS.get()->getType();
1678 
1679     llvm::Triple::ArchType Arch = Context.getTargetInfo().getTriple().getArch();
1680     bool IsPolyUnsigned = Arch == llvm::Triple::aarch64 ||
1681                           Arch == llvm::Triple::aarch64_be;
1682     bool IsInt64Long =
1683         Context.getTargetInfo().getInt64Type() == TargetInfo::SignedLong;
1684     QualType EltTy =
1685         getNeonEltType(NeonTypeFlags(TV), Context, IsPolyUnsigned, IsInt64Long);
1686     if (HasConstPtr)
1687       EltTy = EltTy.withConst();
1688     QualType LHSTy = Context.getPointerType(EltTy);
1689     AssignConvertType ConvTy;
1690     ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
1691     if (RHS.isInvalid())
1692       return true;
1693     if (DiagnoseAssignmentResult(ConvTy, Arg->getBeginLoc(), LHSTy, RHSTy,
1694                                  RHS.get(), AA_Assigning))
1695       return true;
1696   }
1697 
1698   // For NEON intrinsics which take an immediate value as part of the
1699   // instruction, range check them here.
1700   unsigned i = 0, l = 0, u = 0;
1701   switch (BuiltinID) {
1702   default:
1703     return false;
1704   #define GET_NEON_IMMEDIATE_CHECK
1705   #include "clang/Basic/arm_neon.inc"
1706   #include "clang/Basic/arm_fp16.inc"
1707   #undef GET_NEON_IMMEDIATE_CHECK
1708   }
1709 
1710   return SemaBuiltinConstantArgRange(TheCall, i, l, u + l);
1711 }
1712 
1713 bool Sema::CheckARMBuiltinExclusiveCall(unsigned BuiltinID, CallExpr *TheCall,
1714                                         unsigned MaxWidth) {
1715   assert((BuiltinID == ARM::BI__builtin_arm_ldrex ||
1716           BuiltinID == ARM::BI__builtin_arm_ldaex ||
1717           BuiltinID == ARM::BI__builtin_arm_strex ||
1718           BuiltinID == ARM::BI__builtin_arm_stlex ||
1719           BuiltinID == AArch64::BI__builtin_arm_ldrex ||
1720           BuiltinID == AArch64::BI__builtin_arm_ldaex ||
1721           BuiltinID == AArch64::BI__builtin_arm_strex ||
1722           BuiltinID == AArch64::BI__builtin_arm_stlex) &&
1723          "unexpected ARM builtin");
1724   bool IsLdrex = BuiltinID == ARM::BI__builtin_arm_ldrex ||
1725                  BuiltinID == ARM::BI__builtin_arm_ldaex ||
1726                  BuiltinID == AArch64::BI__builtin_arm_ldrex ||
1727                  BuiltinID == AArch64::BI__builtin_arm_ldaex;
1728 
1729   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
1730 
1731   // Ensure that we have the proper number of arguments.
1732   if (checkArgCount(*this, TheCall, IsLdrex ? 1 : 2))
1733     return true;
1734 
1735   // Inspect the pointer argument of the atomic builtin.  This should always be
1736   // a pointer type, whose element is an integral scalar or pointer type.
1737   // Because it is a pointer type, we don't have to worry about any implicit
1738   // casts here.
1739   Expr *PointerArg = TheCall->getArg(IsLdrex ? 0 : 1);
1740   ExprResult PointerArgRes = DefaultFunctionArrayLvalueConversion(PointerArg);
1741   if (PointerArgRes.isInvalid())
1742     return true;
1743   PointerArg = PointerArgRes.get();
1744 
1745   const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>();
1746   if (!pointerType) {
1747     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer)
1748         << PointerArg->getType() << PointerArg->getSourceRange();
1749     return true;
1750   }
1751 
1752   // ldrex takes a "const volatile T*" and strex takes a "volatile T*". Our next
1753   // task is to insert the appropriate casts into the AST. First work out just
1754   // what the appropriate type is.
1755   QualType ValType = pointerType->getPointeeType();
1756   QualType AddrType = ValType.getUnqualifiedType().withVolatile();
1757   if (IsLdrex)
1758     AddrType.addConst();
1759 
1760   // Issue a warning if the cast is dodgy.
1761   CastKind CastNeeded = CK_NoOp;
1762   if (!AddrType.isAtLeastAsQualifiedAs(ValType)) {
1763     CastNeeded = CK_BitCast;
1764     Diag(DRE->getBeginLoc(), diag::ext_typecheck_convert_discards_qualifiers)
1765         << PointerArg->getType() << Context.getPointerType(AddrType)
1766         << AA_Passing << PointerArg->getSourceRange();
1767   }
1768 
1769   // Finally, do the cast and replace the argument with the corrected version.
1770   AddrType = Context.getPointerType(AddrType);
1771   PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded);
1772   if (PointerArgRes.isInvalid())
1773     return true;
1774   PointerArg = PointerArgRes.get();
1775 
1776   TheCall->setArg(IsLdrex ? 0 : 1, PointerArg);
1777 
1778   // In general, we allow ints, floats and pointers to be loaded and stored.
1779   if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
1780       !ValType->isBlockPointerType() && !ValType->isFloatingType()) {
1781     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer_intfltptr)
1782         << PointerArg->getType() << PointerArg->getSourceRange();
1783     return true;
1784   }
1785 
1786   // But ARM doesn't have instructions to deal with 128-bit versions.
1787   if (Context.getTypeSize(ValType) > MaxWidth) {
1788     assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate");
1789     Diag(DRE->getBeginLoc(), diag::err_atomic_exclusive_builtin_pointer_size)
1790         << PointerArg->getType() << PointerArg->getSourceRange();
1791     return true;
1792   }
1793 
1794   switch (ValType.getObjCLifetime()) {
1795   case Qualifiers::OCL_None:
1796   case Qualifiers::OCL_ExplicitNone:
1797     // okay
1798     break;
1799 
1800   case Qualifiers::OCL_Weak:
1801   case Qualifiers::OCL_Strong:
1802   case Qualifiers::OCL_Autoreleasing:
1803     Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership)
1804         << ValType << PointerArg->getSourceRange();
1805     return true;
1806   }
1807 
1808   if (IsLdrex) {
1809     TheCall->setType(ValType);
1810     return false;
1811   }
1812 
1813   // Initialize the argument to be stored.
1814   ExprResult ValArg = TheCall->getArg(0);
1815   InitializedEntity Entity = InitializedEntity::InitializeParameter(
1816       Context, ValType, /*consume*/ false);
1817   ValArg = PerformCopyInitialization(Entity, SourceLocation(), ValArg);
1818   if (ValArg.isInvalid())
1819     return true;
1820   TheCall->setArg(0, ValArg.get());
1821 
1822   // __builtin_arm_strex always returns an int. It's marked as such in the .def,
1823   // but the custom checker bypasses all default analysis.
1824   TheCall->setType(Context.IntTy);
1825   return false;
1826 }
1827 
1828 bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
1829   if (BuiltinID == ARM::BI__builtin_arm_ldrex ||
1830       BuiltinID == ARM::BI__builtin_arm_ldaex ||
1831       BuiltinID == ARM::BI__builtin_arm_strex ||
1832       BuiltinID == ARM::BI__builtin_arm_stlex) {
1833     return CheckARMBuiltinExclusiveCall(BuiltinID, TheCall, 64);
1834   }
1835 
1836   if (BuiltinID == ARM::BI__builtin_arm_prefetch) {
1837     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) ||
1838       SemaBuiltinConstantArgRange(TheCall, 2, 0, 1);
1839   }
1840 
1841   if (BuiltinID == ARM::BI__builtin_arm_rsr64 ||
1842       BuiltinID == ARM::BI__builtin_arm_wsr64)
1843     return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 3, false);
1844 
1845   if (BuiltinID == ARM::BI__builtin_arm_rsr ||
1846       BuiltinID == ARM::BI__builtin_arm_rsrp ||
1847       BuiltinID == ARM::BI__builtin_arm_wsr ||
1848       BuiltinID == ARM::BI__builtin_arm_wsrp)
1849     return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true);
1850 
1851   if (CheckNeonBuiltinFunctionCall(BuiltinID, TheCall))
1852     return true;
1853 
1854   // For intrinsics which take an immediate value as part of the instruction,
1855   // range check them here.
1856   // FIXME: VFP Intrinsics should error if VFP not present.
1857   switch (BuiltinID) {
1858   default: return false;
1859   case ARM::BI__builtin_arm_ssat:
1860     return SemaBuiltinConstantArgRange(TheCall, 1, 1, 32);
1861   case ARM::BI__builtin_arm_usat:
1862     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 31);
1863   case ARM::BI__builtin_arm_ssat16:
1864     return SemaBuiltinConstantArgRange(TheCall, 1, 1, 16);
1865   case ARM::BI__builtin_arm_usat16:
1866     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15);
1867   case ARM::BI__builtin_arm_vcvtr_f:
1868   case ARM::BI__builtin_arm_vcvtr_d:
1869     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1);
1870   case ARM::BI__builtin_arm_dmb:
1871   case ARM::BI__builtin_arm_dsb:
1872   case ARM::BI__builtin_arm_isb:
1873   case ARM::BI__builtin_arm_dbg:
1874     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 15);
1875   }
1876 }
1877 
1878 bool Sema::CheckAArch64BuiltinFunctionCall(unsigned BuiltinID,
1879                                          CallExpr *TheCall) {
1880   if (BuiltinID == AArch64::BI__builtin_arm_ldrex ||
1881       BuiltinID == AArch64::BI__builtin_arm_ldaex ||
1882       BuiltinID == AArch64::BI__builtin_arm_strex ||
1883       BuiltinID == AArch64::BI__builtin_arm_stlex) {
1884     return CheckARMBuiltinExclusiveCall(BuiltinID, TheCall, 128);
1885   }
1886 
1887   if (BuiltinID == AArch64::BI__builtin_arm_prefetch) {
1888     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) ||
1889       SemaBuiltinConstantArgRange(TheCall, 2, 0, 2) ||
1890       SemaBuiltinConstantArgRange(TheCall, 3, 0, 1) ||
1891       SemaBuiltinConstantArgRange(TheCall, 4, 0, 1);
1892   }
1893 
1894   if (BuiltinID == AArch64::BI__builtin_arm_rsr64 ||
1895       BuiltinID == AArch64::BI__builtin_arm_wsr64)
1896     return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true);
1897 
1898   // Memory Tagging Extensions (MTE) Intrinsics
1899   if (BuiltinID == AArch64::BI__builtin_arm_irg ||
1900       BuiltinID == AArch64::BI__builtin_arm_addg ||
1901       BuiltinID == AArch64::BI__builtin_arm_gmi ||
1902       BuiltinID == AArch64::BI__builtin_arm_ldg ||
1903       BuiltinID == AArch64::BI__builtin_arm_stg ||
1904       BuiltinID == AArch64::BI__builtin_arm_subp) {
1905     return SemaBuiltinARMMemoryTaggingCall(BuiltinID, TheCall);
1906   }
1907 
1908   if (BuiltinID == AArch64::BI__builtin_arm_rsr ||
1909       BuiltinID == AArch64::BI__builtin_arm_rsrp ||
1910       BuiltinID == AArch64::BI__builtin_arm_wsr ||
1911       BuiltinID == AArch64::BI__builtin_arm_wsrp)
1912     return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true);
1913 
1914   // Only check the valid encoding range. Any constant in this range would be
1915   // converted to a register of the form S1_2_C3_C4_5. Let the hardware throw
1916   // an exception for incorrect registers. This matches MSVC behavior.
1917   if (BuiltinID == AArch64::BI_ReadStatusReg ||
1918       BuiltinID == AArch64::BI_WriteStatusReg)
1919     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 0x7fff);
1920 
1921   if (BuiltinID == AArch64::BI__getReg)
1922     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31);
1923 
1924   if (CheckNeonBuiltinFunctionCall(BuiltinID, TheCall))
1925     return true;
1926 
1927   // For intrinsics which take an immediate value as part of the instruction,
1928   // range check them here.
1929   unsigned i = 0, l = 0, u = 0;
1930   switch (BuiltinID) {
1931   default: return false;
1932   case AArch64::BI__builtin_arm_dmb:
1933   case AArch64::BI__builtin_arm_dsb:
1934   case AArch64::BI__builtin_arm_isb: l = 0; u = 15; break;
1935   case AArch64::BI__builtin_arm_tcancel: l = 0; u = 65535; break;
1936   }
1937 
1938   return SemaBuiltinConstantArgRange(TheCall, i, l, u + l);
1939 }
1940 
1941 bool Sema::CheckHexagonBuiltinCpu(unsigned BuiltinID, CallExpr *TheCall) {
1942   struct BuiltinAndString {
1943     unsigned BuiltinID;
1944     const char *Str;
1945   };
1946 
1947   static BuiltinAndString ValidCPU[] = {
1948     { Hexagon::BI__builtin_HEXAGON_A6_vcmpbeq_notany, "v65,v66" },
1949     { Hexagon::BI__builtin_HEXAGON_A6_vminub_RdP, "v62,v65,v66" },
1950     { Hexagon::BI__builtin_HEXAGON_F2_dfadd, "v66" },
1951     { Hexagon::BI__builtin_HEXAGON_F2_dfsub, "v66" },
1952     { Hexagon::BI__builtin_HEXAGON_M2_mnaci, "v66" },
1953     { Hexagon::BI__builtin_HEXAGON_M6_vabsdiffb, "v62,v65,v66" },
1954     { Hexagon::BI__builtin_HEXAGON_M6_vabsdiffub, "v62,v65,v66" },
1955     { Hexagon::BI__builtin_HEXAGON_S2_mask, "v66" },
1956     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_acc, "v60,v62,v65,v66" },
1957     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_and, "v60,v62,v65,v66" },
1958     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_nac, "v60,v62,v65,v66" },
1959     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_or, "v60,v62,v65,v66" },
1960     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p, "v60,v62,v65,v66" },
1961     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_xacc, "v60,v62,v65,v66" },
1962     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_acc, "v60,v62,v65,v66" },
1963     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_and, "v60,v62,v65,v66" },
1964     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_nac, "v60,v62,v65,v66" },
1965     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_or, "v60,v62,v65,v66" },
1966     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r, "v60,v62,v65,v66" },
1967     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_xacc, "v60,v62,v65,v66" },
1968     { Hexagon::BI__builtin_HEXAGON_S6_vsplatrbp, "v62,v65,v66" },
1969     { Hexagon::BI__builtin_HEXAGON_S6_vtrunehb_ppp, "v62,v65,v66" },
1970     { Hexagon::BI__builtin_HEXAGON_S6_vtrunohb_ppp, "v62,v65,v66" },
1971   };
1972 
1973   static BuiltinAndString ValidHVX[] = {
1974     { Hexagon::BI__builtin_HEXAGON_V6_hi, "v60,v62,v65,v66" },
1975     { Hexagon::BI__builtin_HEXAGON_V6_hi_128B, "v60,v62,v65,v66" },
1976     { Hexagon::BI__builtin_HEXAGON_V6_lo, "v60,v62,v65,v66" },
1977     { Hexagon::BI__builtin_HEXAGON_V6_lo_128B, "v60,v62,v65,v66" },
1978     { Hexagon::BI__builtin_HEXAGON_V6_extractw, "v60,v62,v65,v66" },
1979     { Hexagon::BI__builtin_HEXAGON_V6_extractw_128B, "v60,v62,v65,v66" },
1980     { Hexagon::BI__builtin_HEXAGON_V6_lvsplatb, "v62,v65,v66" },
1981     { Hexagon::BI__builtin_HEXAGON_V6_lvsplatb_128B, "v62,v65,v66" },
1982     { Hexagon::BI__builtin_HEXAGON_V6_lvsplath, "v62,v65,v66" },
1983     { Hexagon::BI__builtin_HEXAGON_V6_lvsplath_128B, "v62,v65,v66" },
1984     { Hexagon::BI__builtin_HEXAGON_V6_lvsplatw, "v60,v62,v65,v66" },
1985     { Hexagon::BI__builtin_HEXAGON_V6_lvsplatw_128B, "v60,v62,v65,v66" },
1986     { Hexagon::BI__builtin_HEXAGON_V6_pred_and, "v60,v62,v65,v66" },
1987     { Hexagon::BI__builtin_HEXAGON_V6_pred_and_128B, "v60,v62,v65,v66" },
1988     { Hexagon::BI__builtin_HEXAGON_V6_pred_and_n, "v60,v62,v65,v66" },
1989     { Hexagon::BI__builtin_HEXAGON_V6_pred_and_n_128B, "v60,v62,v65,v66" },
1990     { Hexagon::BI__builtin_HEXAGON_V6_pred_not, "v60,v62,v65,v66" },
1991     { Hexagon::BI__builtin_HEXAGON_V6_pred_not_128B, "v60,v62,v65,v66" },
1992     { Hexagon::BI__builtin_HEXAGON_V6_pred_or, "v60,v62,v65,v66" },
1993     { Hexagon::BI__builtin_HEXAGON_V6_pred_or_128B, "v60,v62,v65,v66" },
1994     { Hexagon::BI__builtin_HEXAGON_V6_pred_or_n, "v60,v62,v65,v66" },
1995     { Hexagon::BI__builtin_HEXAGON_V6_pred_or_n_128B, "v60,v62,v65,v66" },
1996     { Hexagon::BI__builtin_HEXAGON_V6_pred_scalar2, "v60,v62,v65,v66" },
1997     { Hexagon::BI__builtin_HEXAGON_V6_pred_scalar2_128B, "v60,v62,v65,v66" },
1998     { Hexagon::BI__builtin_HEXAGON_V6_pred_scalar2v2, "v62,v65,v66" },
1999     { Hexagon::BI__builtin_HEXAGON_V6_pred_scalar2v2_128B, "v62,v65,v66" },
2000     { Hexagon::BI__builtin_HEXAGON_V6_pred_xor, "v60,v62,v65,v66" },
2001     { Hexagon::BI__builtin_HEXAGON_V6_pred_xor_128B, "v60,v62,v65,v66" },
2002     { Hexagon::BI__builtin_HEXAGON_V6_shuffeqh, "v62,v65,v66" },
2003     { Hexagon::BI__builtin_HEXAGON_V6_shuffeqh_128B, "v62,v65,v66" },
2004     { Hexagon::BI__builtin_HEXAGON_V6_shuffeqw, "v62,v65,v66" },
2005     { Hexagon::BI__builtin_HEXAGON_V6_shuffeqw_128B, "v62,v65,v66" },
2006     { Hexagon::BI__builtin_HEXAGON_V6_vabsb, "v65,v66" },
2007     { Hexagon::BI__builtin_HEXAGON_V6_vabsb_128B, "v65,v66" },
2008     { Hexagon::BI__builtin_HEXAGON_V6_vabsb_sat, "v65,v66" },
2009     { Hexagon::BI__builtin_HEXAGON_V6_vabsb_sat_128B, "v65,v66" },
2010     { Hexagon::BI__builtin_HEXAGON_V6_vabsdiffh, "v60,v62,v65,v66" },
2011     { Hexagon::BI__builtin_HEXAGON_V6_vabsdiffh_128B, "v60,v62,v65,v66" },
2012     { Hexagon::BI__builtin_HEXAGON_V6_vabsdiffub, "v60,v62,v65,v66" },
2013     { Hexagon::BI__builtin_HEXAGON_V6_vabsdiffub_128B, "v60,v62,v65,v66" },
2014     { Hexagon::BI__builtin_HEXAGON_V6_vabsdiffuh, "v60,v62,v65,v66" },
2015     { Hexagon::BI__builtin_HEXAGON_V6_vabsdiffuh_128B, "v60,v62,v65,v66" },
2016     { Hexagon::BI__builtin_HEXAGON_V6_vabsdiffw, "v60,v62,v65,v66" },
2017     { Hexagon::BI__builtin_HEXAGON_V6_vabsdiffw_128B, "v60,v62,v65,v66" },
2018     { Hexagon::BI__builtin_HEXAGON_V6_vabsh, "v60,v62,v65,v66" },
2019     { Hexagon::BI__builtin_HEXAGON_V6_vabsh_128B, "v60,v62,v65,v66" },
2020     { Hexagon::BI__builtin_HEXAGON_V6_vabsh_sat, "v60,v62,v65,v66" },
2021     { Hexagon::BI__builtin_HEXAGON_V6_vabsh_sat_128B, "v60,v62,v65,v66" },
2022     { Hexagon::BI__builtin_HEXAGON_V6_vabsw, "v60,v62,v65,v66" },
2023     { Hexagon::BI__builtin_HEXAGON_V6_vabsw_128B, "v60,v62,v65,v66" },
2024     { Hexagon::BI__builtin_HEXAGON_V6_vabsw_sat, "v60,v62,v65,v66" },
2025     { Hexagon::BI__builtin_HEXAGON_V6_vabsw_sat_128B, "v60,v62,v65,v66" },
2026     { Hexagon::BI__builtin_HEXAGON_V6_vaddb, "v60,v62,v65,v66" },
2027     { Hexagon::BI__builtin_HEXAGON_V6_vaddb_128B, "v60,v62,v65,v66" },
2028     { Hexagon::BI__builtin_HEXAGON_V6_vaddb_dv, "v60,v62,v65,v66" },
2029     { Hexagon::BI__builtin_HEXAGON_V6_vaddb_dv_128B, "v60,v62,v65,v66" },
2030     { Hexagon::BI__builtin_HEXAGON_V6_vaddbsat, "v62,v65,v66" },
2031     { Hexagon::BI__builtin_HEXAGON_V6_vaddbsat_128B, "v62,v65,v66" },
2032     { Hexagon::BI__builtin_HEXAGON_V6_vaddbsat_dv, "v62,v65,v66" },
2033     { Hexagon::BI__builtin_HEXAGON_V6_vaddbsat_dv_128B, "v62,v65,v66" },
2034     { Hexagon::BI__builtin_HEXAGON_V6_vaddcarry, "v62,v65,v66" },
2035     { Hexagon::BI__builtin_HEXAGON_V6_vaddcarry_128B, "v62,v65,v66" },
2036     { Hexagon::BI__builtin_HEXAGON_V6_vaddcarrysat, "v66" },
2037     { Hexagon::BI__builtin_HEXAGON_V6_vaddcarrysat_128B, "v66" },
2038     { Hexagon::BI__builtin_HEXAGON_V6_vaddclbh, "v62,v65,v66" },
2039     { Hexagon::BI__builtin_HEXAGON_V6_vaddclbh_128B, "v62,v65,v66" },
2040     { Hexagon::BI__builtin_HEXAGON_V6_vaddclbw, "v62,v65,v66" },
2041     { Hexagon::BI__builtin_HEXAGON_V6_vaddclbw_128B, "v62,v65,v66" },
2042     { Hexagon::BI__builtin_HEXAGON_V6_vaddh, "v60,v62,v65,v66" },
2043     { Hexagon::BI__builtin_HEXAGON_V6_vaddh_128B, "v60,v62,v65,v66" },
2044     { Hexagon::BI__builtin_HEXAGON_V6_vaddh_dv, "v60,v62,v65,v66" },
2045     { Hexagon::BI__builtin_HEXAGON_V6_vaddh_dv_128B, "v60,v62,v65,v66" },
2046     { Hexagon::BI__builtin_HEXAGON_V6_vaddhsat, "v60,v62,v65,v66" },
2047     { Hexagon::BI__builtin_HEXAGON_V6_vaddhsat_128B, "v60,v62,v65,v66" },
2048     { Hexagon::BI__builtin_HEXAGON_V6_vaddhsat_dv, "v60,v62,v65,v66" },
2049     { Hexagon::BI__builtin_HEXAGON_V6_vaddhsat_dv_128B, "v60,v62,v65,v66" },
2050     { Hexagon::BI__builtin_HEXAGON_V6_vaddhw, "v60,v62,v65,v66" },
2051     { Hexagon::BI__builtin_HEXAGON_V6_vaddhw_128B, "v60,v62,v65,v66" },
2052     { Hexagon::BI__builtin_HEXAGON_V6_vaddhw_acc, "v62,v65,v66" },
2053     { Hexagon::BI__builtin_HEXAGON_V6_vaddhw_acc_128B, "v62,v65,v66" },
2054     { Hexagon::BI__builtin_HEXAGON_V6_vaddubh, "v60,v62,v65,v66" },
2055     { Hexagon::BI__builtin_HEXAGON_V6_vaddubh_128B, "v60,v62,v65,v66" },
2056     { Hexagon::BI__builtin_HEXAGON_V6_vaddubh_acc, "v62,v65,v66" },
2057     { Hexagon::BI__builtin_HEXAGON_V6_vaddubh_acc_128B, "v62,v65,v66" },
2058     { Hexagon::BI__builtin_HEXAGON_V6_vaddubsat, "v60,v62,v65,v66" },
2059     { Hexagon::BI__builtin_HEXAGON_V6_vaddubsat_128B, "v60,v62,v65,v66" },
2060     { Hexagon::BI__builtin_HEXAGON_V6_vaddubsat_dv, "v60,v62,v65,v66" },
2061     { Hexagon::BI__builtin_HEXAGON_V6_vaddubsat_dv_128B, "v60,v62,v65,v66" },
2062     { Hexagon::BI__builtin_HEXAGON_V6_vaddububb_sat, "v62,v65,v66" },
2063     { Hexagon::BI__builtin_HEXAGON_V6_vaddububb_sat_128B, "v62,v65,v66" },
2064     { Hexagon::BI__builtin_HEXAGON_V6_vadduhsat, "v60,v62,v65,v66" },
2065     { Hexagon::BI__builtin_HEXAGON_V6_vadduhsat_128B, "v60,v62,v65,v66" },
2066     { Hexagon::BI__builtin_HEXAGON_V6_vadduhsat_dv, "v60,v62,v65,v66" },
2067     { Hexagon::BI__builtin_HEXAGON_V6_vadduhsat_dv_128B, "v60,v62,v65,v66" },
2068     { Hexagon::BI__builtin_HEXAGON_V6_vadduhw, "v60,v62,v65,v66" },
2069     { Hexagon::BI__builtin_HEXAGON_V6_vadduhw_128B, "v60,v62,v65,v66" },
2070     { Hexagon::BI__builtin_HEXAGON_V6_vadduhw_acc, "v62,v65,v66" },
2071     { Hexagon::BI__builtin_HEXAGON_V6_vadduhw_acc_128B, "v62,v65,v66" },
2072     { Hexagon::BI__builtin_HEXAGON_V6_vadduwsat, "v62,v65,v66" },
2073     { Hexagon::BI__builtin_HEXAGON_V6_vadduwsat_128B, "v62,v65,v66" },
2074     { Hexagon::BI__builtin_HEXAGON_V6_vadduwsat_dv, "v62,v65,v66" },
2075     { Hexagon::BI__builtin_HEXAGON_V6_vadduwsat_dv_128B, "v62,v65,v66" },
2076     { Hexagon::BI__builtin_HEXAGON_V6_vaddw, "v60,v62,v65,v66" },
2077     { Hexagon::BI__builtin_HEXAGON_V6_vaddw_128B, "v60,v62,v65,v66" },
2078     { Hexagon::BI__builtin_HEXAGON_V6_vaddw_dv, "v60,v62,v65,v66" },
2079     { Hexagon::BI__builtin_HEXAGON_V6_vaddw_dv_128B, "v60,v62,v65,v66" },
2080     { Hexagon::BI__builtin_HEXAGON_V6_vaddwsat, "v60,v62,v65,v66" },
2081     { Hexagon::BI__builtin_HEXAGON_V6_vaddwsat_128B, "v60,v62,v65,v66" },
2082     { Hexagon::BI__builtin_HEXAGON_V6_vaddwsat_dv, "v60,v62,v65,v66" },
2083     { Hexagon::BI__builtin_HEXAGON_V6_vaddwsat_dv_128B, "v60,v62,v65,v66" },
2084     { Hexagon::BI__builtin_HEXAGON_V6_valignb, "v60,v62,v65,v66" },
2085     { Hexagon::BI__builtin_HEXAGON_V6_valignb_128B, "v60,v62,v65,v66" },
2086     { Hexagon::BI__builtin_HEXAGON_V6_valignbi, "v60,v62,v65,v66" },
2087     { Hexagon::BI__builtin_HEXAGON_V6_valignbi_128B, "v60,v62,v65,v66" },
2088     { Hexagon::BI__builtin_HEXAGON_V6_vand, "v60,v62,v65,v66" },
2089     { Hexagon::BI__builtin_HEXAGON_V6_vand_128B, "v60,v62,v65,v66" },
2090     { Hexagon::BI__builtin_HEXAGON_V6_vandnqrt, "v62,v65,v66" },
2091     { Hexagon::BI__builtin_HEXAGON_V6_vandnqrt_128B, "v62,v65,v66" },
2092     { Hexagon::BI__builtin_HEXAGON_V6_vandnqrt_acc, "v62,v65,v66" },
2093     { Hexagon::BI__builtin_HEXAGON_V6_vandnqrt_acc_128B, "v62,v65,v66" },
2094     { Hexagon::BI__builtin_HEXAGON_V6_vandqrt, "v60,v62,v65,v66" },
2095     { Hexagon::BI__builtin_HEXAGON_V6_vandqrt_128B, "v60,v62,v65,v66" },
2096     { Hexagon::BI__builtin_HEXAGON_V6_vandqrt_acc, "v60,v62,v65,v66" },
2097     { Hexagon::BI__builtin_HEXAGON_V6_vandqrt_acc_128B, "v60,v62,v65,v66" },
2098     { Hexagon::BI__builtin_HEXAGON_V6_vandvnqv, "v62,v65,v66" },
2099     { Hexagon::BI__builtin_HEXAGON_V6_vandvnqv_128B, "v62,v65,v66" },
2100     { Hexagon::BI__builtin_HEXAGON_V6_vandvqv, "v62,v65,v66" },
2101     { Hexagon::BI__builtin_HEXAGON_V6_vandvqv_128B, "v62,v65,v66" },
2102     { Hexagon::BI__builtin_HEXAGON_V6_vandvrt, "v60,v62,v65,v66" },
2103     { Hexagon::BI__builtin_HEXAGON_V6_vandvrt_128B, "v60,v62,v65,v66" },
2104     { Hexagon::BI__builtin_HEXAGON_V6_vandvrt_acc, "v60,v62,v65,v66" },
2105     { Hexagon::BI__builtin_HEXAGON_V6_vandvrt_acc_128B, "v60,v62,v65,v66" },
2106     { Hexagon::BI__builtin_HEXAGON_V6_vaslh, "v60,v62,v65,v66" },
2107     { Hexagon::BI__builtin_HEXAGON_V6_vaslh_128B, "v60,v62,v65,v66" },
2108     { Hexagon::BI__builtin_HEXAGON_V6_vaslh_acc, "v65,v66" },
2109     { Hexagon::BI__builtin_HEXAGON_V6_vaslh_acc_128B, "v65,v66" },
2110     { Hexagon::BI__builtin_HEXAGON_V6_vaslhv, "v60,v62,v65,v66" },
2111     { Hexagon::BI__builtin_HEXAGON_V6_vaslhv_128B, "v60,v62,v65,v66" },
2112     { Hexagon::BI__builtin_HEXAGON_V6_vaslw, "v60,v62,v65,v66" },
2113     { Hexagon::BI__builtin_HEXAGON_V6_vaslw_128B, "v60,v62,v65,v66" },
2114     { Hexagon::BI__builtin_HEXAGON_V6_vaslw_acc, "v60,v62,v65,v66" },
2115     { Hexagon::BI__builtin_HEXAGON_V6_vaslw_acc_128B, "v60,v62,v65,v66" },
2116     { Hexagon::BI__builtin_HEXAGON_V6_vaslwv, "v60,v62,v65,v66" },
2117     { Hexagon::BI__builtin_HEXAGON_V6_vaslwv_128B, "v60,v62,v65,v66" },
2118     { Hexagon::BI__builtin_HEXAGON_V6_vasrh, "v60,v62,v65,v66" },
2119     { Hexagon::BI__builtin_HEXAGON_V6_vasrh_128B, "v60,v62,v65,v66" },
2120     { Hexagon::BI__builtin_HEXAGON_V6_vasrh_acc, "v65,v66" },
2121     { Hexagon::BI__builtin_HEXAGON_V6_vasrh_acc_128B, "v65,v66" },
2122     { Hexagon::BI__builtin_HEXAGON_V6_vasrhbrndsat, "v60,v62,v65,v66" },
2123     { Hexagon::BI__builtin_HEXAGON_V6_vasrhbrndsat_128B, "v60,v62,v65,v66" },
2124     { Hexagon::BI__builtin_HEXAGON_V6_vasrhbsat, "v62,v65,v66" },
2125     { Hexagon::BI__builtin_HEXAGON_V6_vasrhbsat_128B, "v62,v65,v66" },
2126     { Hexagon::BI__builtin_HEXAGON_V6_vasrhubrndsat, "v60,v62,v65,v66" },
2127     { Hexagon::BI__builtin_HEXAGON_V6_vasrhubrndsat_128B, "v60,v62,v65,v66" },
2128     { Hexagon::BI__builtin_HEXAGON_V6_vasrhubsat, "v60,v62,v65,v66" },
2129     { Hexagon::BI__builtin_HEXAGON_V6_vasrhubsat_128B, "v60,v62,v65,v66" },
2130     { Hexagon::BI__builtin_HEXAGON_V6_vasrhv, "v60,v62,v65,v66" },
2131     { Hexagon::BI__builtin_HEXAGON_V6_vasrhv_128B, "v60,v62,v65,v66" },
2132     { Hexagon::BI__builtin_HEXAGON_V6_vasr_into, "v66" },
2133     { Hexagon::BI__builtin_HEXAGON_V6_vasr_into_128B, "v66" },
2134     { Hexagon::BI__builtin_HEXAGON_V6_vasruhubrndsat, "v65,v66" },
2135     { Hexagon::BI__builtin_HEXAGON_V6_vasruhubrndsat_128B, "v65,v66" },
2136     { Hexagon::BI__builtin_HEXAGON_V6_vasruhubsat, "v65,v66" },
2137     { Hexagon::BI__builtin_HEXAGON_V6_vasruhubsat_128B, "v65,v66" },
2138     { Hexagon::BI__builtin_HEXAGON_V6_vasruwuhrndsat, "v62,v65,v66" },
2139     { Hexagon::BI__builtin_HEXAGON_V6_vasruwuhrndsat_128B, "v62,v65,v66" },
2140     { Hexagon::BI__builtin_HEXAGON_V6_vasruwuhsat, "v65,v66" },
2141     { Hexagon::BI__builtin_HEXAGON_V6_vasruwuhsat_128B, "v65,v66" },
2142     { Hexagon::BI__builtin_HEXAGON_V6_vasrw, "v60,v62,v65,v66" },
2143     { Hexagon::BI__builtin_HEXAGON_V6_vasrw_128B, "v60,v62,v65,v66" },
2144     { Hexagon::BI__builtin_HEXAGON_V6_vasrw_acc, "v60,v62,v65,v66" },
2145     { Hexagon::BI__builtin_HEXAGON_V6_vasrw_acc_128B, "v60,v62,v65,v66" },
2146     { Hexagon::BI__builtin_HEXAGON_V6_vasrwh, "v60,v62,v65,v66" },
2147     { Hexagon::BI__builtin_HEXAGON_V6_vasrwh_128B, "v60,v62,v65,v66" },
2148     { Hexagon::BI__builtin_HEXAGON_V6_vasrwhrndsat, "v60,v62,v65,v66" },
2149     { Hexagon::BI__builtin_HEXAGON_V6_vasrwhrndsat_128B, "v60,v62,v65,v66" },
2150     { Hexagon::BI__builtin_HEXAGON_V6_vasrwhsat, "v60,v62,v65,v66" },
2151     { Hexagon::BI__builtin_HEXAGON_V6_vasrwhsat_128B, "v60,v62,v65,v66" },
2152     { Hexagon::BI__builtin_HEXAGON_V6_vasrwuhrndsat, "v62,v65,v66" },
2153     { Hexagon::BI__builtin_HEXAGON_V6_vasrwuhrndsat_128B, "v62,v65,v66" },
2154     { Hexagon::BI__builtin_HEXAGON_V6_vasrwuhsat, "v60,v62,v65,v66" },
2155     { Hexagon::BI__builtin_HEXAGON_V6_vasrwuhsat_128B, "v60,v62,v65,v66" },
2156     { Hexagon::BI__builtin_HEXAGON_V6_vasrwv, "v60,v62,v65,v66" },
2157     { Hexagon::BI__builtin_HEXAGON_V6_vasrwv_128B, "v60,v62,v65,v66" },
2158     { Hexagon::BI__builtin_HEXAGON_V6_vassign, "v60,v62,v65,v66" },
2159     { Hexagon::BI__builtin_HEXAGON_V6_vassign_128B, "v60,v62,v65,v66" },
2160     { Hexagon::BI__builtin_HEXAGON_V6_vassignp, "v60,v62,v65,v66" },
2161     { Hexagon::BI__builtin_HEXAGON_V6_vassignp_128B, "v60,v62,v65,v66" },
2162     { Hexagon::BI__builtin_HEXAGON_V6_vavgb, "v65,v66" },
2163     { Hexagon::BI__builtin_HEXAGON_V6_vavgb_128B, "v65,v66" },
2164     { Hexagon::BI__builtin_HEXAGON_V6_vavgbrnd, "v65,v66" },
2165     { Hexagon::BI__builtin_HEXAGON_V6_vavgbrnd_128B, "v65,v66" },
2166     { Hexagon::BI__builtin_HEXAGON_V6_vavgh, "v60,v62,v65,v66" },
2167     { Hexagon::BI__builtin_HEXAGON_V6_vavgh_128B, "v60,v62,v65,v66" },
2168     { Hexagon::BI__builtin_HEXAGON_V6_vavghrnd, "v60,v62,v65,v66" },
2169     { Hexagon::BI__builtin_HEXAGON_V6_vavghrnd_128B, "v60,v62,v65,v66" },
2170     { Hexagon::BI__builtin_HEXAGON_V6_vavgub, "v60,v62,v65,v66" },
2171     { Hexagon::BI__builtin_HEXAGON_V6_vavgub_128B, "v60,v62,v65,v66" },
2172     { Hexagon::BI__builtin_HEXAGON_V6_vavgubrnd, "v60,v62,v65,v66" },
2173     { Hexagon::BI__builtin_HEXAGON_V6_vavgubrnd_128B, "v60,v62,v65,v66" },
2174     { Hexagon::BI__builtin_HEXAGON_V6_vavguh, "v60,v62,v65,v66" },
2175     { Hexagon::BI__builtin_HEXAGON_V6_vavguh_128B, "v60,v62,v65,v66" },
2176     { Hexagon::BI__builtin_HEXAGON_V6_vavguhrnd, "v60,v62,v65,v66" },
2177     { Hexagon::BI__builtin_HEXAGON_V6_vavguhrnd_128B, "v60,v62,v65,v66" },
2178     { Hexagon::BI__builtin_HEXAGON_V6_vavguw, "v65,v66" },
2179     { Hexagon::BI__builtin_HEXAGON_V6_vavguw_128B, "v65,v66" },
2180     { Hexagon::BI__builtin_HEXAGON_V6_vavguwrnd, "v65,v66" },
2181     { Hexagon::BI__builtin_HEXAGON_V6_vavguwrnd_128B, "v65,v66" },
2182     { Hexagon::BI__builtin_HEXAGON_V6_vavgw, "v60,v62,v65,v66" },
2183     { Hexagon::BI__builtin_HEXAGON_V6_vavgw_128B, "v60,v62,v65,v66" },
2184     { Hexagon::BI__builtin_HEXAGON_V6_vavgwrnd, "v60,v62,v65,v66" },
2185     { Hexagon::BI__builtin_HEXAGON_V6_vavgwrnd_128B, "v60,v62,v65,v66" },
2186     { Hexagon::BI__builtin_HEXAGON_V6_vcl0h, "v60,v62,v65,v66" },
2187     { Hexagon::BI__builtin_HEXAGON_V6_vcl0h_128B, "v60,v62,v65,v66" },
2188     { Hexagon::BI__builtin_HEXAGON_V6_vcl0w, "v60,v62,v65,v66" },
2189     { Hexagon::BI__builtin_HEXAGON_V6_vcl0w_128B, "v60,v62,v65,v66" },
2190     { Hexagon::BI__builtin_HEXAGON_V6_vcombine, "v60,v62,v65,v66" },
2191     { Hexagon::BI__builtin_HEXAGON_V6_vcombine_128B, "v60,v62,v65,v66" },
2192     { Hexagon::BI__builtin_HEXAGON_V6_vd0, "v60,v62,v65,v66" },
2193     { Hexagon::BI__builtin_HEXAGON_V6_vd0_128B, "v60,v62,v65,v66" },
2194     { Hexagon::BI__builtin_HEXAGON_V6_vdd0, "v65,v66" },
2195     { Hexagon::BI__builtin_HEXAGON_V6_vdd0_128B, "v65,v66" },
2196     { Hexagon::BI__builtin_HEXAGON_V6_vdealb, "v60,v62,v65,v66" },
2197     { Hexagon::BI__builtin_HEXAGON_V6_vdealb_128B, "v60,v62,v65,v66" },
2198     { Hexagon::BI__builtin_HEXAGON_V6_vdealb4w, "v60,v62,v65,v66" },
2199     { Hexagon::BI__builtin_HEXAGON_V6_vdealb4w_128B, "v60,v62,v65,v66" },
2200     { Hexagon::BI__builtin_HEXAGON_V6_vdealh, "v60,v62,v65,v66" },
2201     { Hexagon::BI__builtin_HEXAGON_V6_vdealh_128B, "v60,v62,v65,v66" },
2202     { Hexagon::BI__builtin_HEXAGON_V6_vdealvdd, "v60,v62,v65,v66" },
2203     { Hexagon::BI__builtin_HEXAGON_V6_vdealvdd_128B, "v60,v62,v65,v66" },
2204     { Hexagon::BI__builtin_HEXAGON_V6_vdelta, "v60,v62,v65,v66" },
2205     { Hexagon::BI__builtin_HEXAGON_V6_vdelta_128B, "v60,v62,v65,v66" },
2206     { Hexagon::BI__builtin_HEXAGON_V6_vdmpybus, "v60,v62,v65,v66" },
2207     { Hexagon::BI__builtin_HEXAGON_V6_vdmpybus_128B, "v60,v62,v65,v66" },
2208     { Hexagon::BI__builtin_HEXAGON_V6_vdmpybus_acc, "v60,v62,v65,v66" },
2209     { Hexagon::BI__builtin_HEXAGON_V6_vdmpybus_acc_128B, "v60,v62,v65,v66" },
2210     { Hexagon::BI__builtin_HEXAGON_V6_vdmpybus_dv, "v60,v62,v65,v66" },
2211     { Hexagon::BI__builtin_HEXAGON_V6_vdmpybus_dv_128B, "v60,v62,v65,v66" },
2212     { Hexagon::BI__builtin_HEXAGON_V6_vdmpybus_dv_acc, "v60,v62,v65,v66" },
2213     { Hexagon::BI__builtin_HEXAGON_V6_vdmpybus_dv_acc_128B, "v60,v62,v65,v66" },
2214     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhb, "v60,v62,v65,v66" },
2215     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhb_128B, "v60,v62,v65,v66" },
2216     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhb_acc, "v60,v62,v65,v66" },
2217     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhb_acc_128B, "v60,v62,v65,v66" },
2218     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhb_dv, "v60,v62,v65,v66" },
2219     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhb_dv_128B, "v60,v62,v65,v66" },
2220     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhb_dv_acc, "v60,v62,v65,v66" },
2221     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhb_dv_acc_128B, "v60,v62,v65,v66" },
2222     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhisat, "v60,v62,v65,v66" },
2223     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhisat_128B, "v60,v62,v65,v66" },
2224     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhisat_acc, "v60,v62,v65,v66" },
2225     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhisat_acc_128B, "v60,v62,v65,v66" },
2226     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsat, "v60,v62,v65,v66" },
2227     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsat_128B, "v60,v62,v65,v66" },
2228     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsat_acc, "v60,v62,v65,v66" },
2229     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsat_acc_128B, "v60,v62,v65,v66" },
2230     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsuisat, "v60,v62,v65,v66" },
2231     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsuisat_128B, "v60,v62,v65,v66" },
2232     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsuisat_acc, "v60,v62,v65,v66" },
2233     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsuisat_acc_128B, "v60,v62,v65,v66" },
2234     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsusat, "v60,v62,v65,v66" },
2235     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsusat_128B, "v60,v62,v65,v66" },
2236     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsusat_acc, "v60,v62,v65,v66" },
2237     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhsusat_acc_128B, "v60,v62,v65,v66" },
2238     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhvsat, "v60,v62,v65,v66" },
2239     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhvsat_128B, "v60,v62,v65,v66" },
2240     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhvsat_acc, "v60,v62,v65,v66" },
2241     { Hexagon::BI__builtin_HEXAGON_V6_vdmpyhvsat_acc_128B, "v60,v62,v65,v66" },
2242     { Hexagon::BI__builtin_HEXAGON_V6_vdsaduh, "v60,v62,v65,v66" },
2243     { Hexagon::BI__builtin_HEXAGON_V6_vdsaduh_128B, "v60,v62,v65,v66" },
2244     { Hexagon::BI__builtin_HEXAGON_V6_vdsaduh_acc, "v60,v62,v65,v66" },
2245     { Hexagon::BI__builtin_HEXAGON_V6_vdsaduh_acc_128B, "v60,v62,v65,v66" },
2246     { Hexagon::BI__builtin_HEXAGON_V6_veqb, "v60,v62,v65,v66" },
2247     { Hexagon::BI__builtin_HEXAGON_V6_veqb_128B, "v60,v62,v65,v66" },
2248     { Hexagon::BI__builtin_HEXAGON_V6_veqb_and, "v60,v62,v65,v66" },
2249     { Hexagon::BI__builtin_HEXAGON_V6_veqb_and_128B, "v60,v62,v65,v66" },
2250     { Hexagon::BI__builtin_HEXAGON_V6_veqb_or, "v60,v62,v65,v66" },
2251     { Hexagon::BI__builtin_HEXAGON_V6_veqb_or_128B, "v60,v62,v65,v66" },
2252     { Hexagon::BI__builtin_HEXAGON_V6_veqb_xor, "v60,v62,v65,v66" },
2253     { Hexagon::BI__builtin_HEXAGON_V6_veqb_xor_128B, "v60,v62,v65,v66" },
2254     { Hexagon::BI__builtin_HEXAGON_V6_veqh, "v60,v62,v65,v66" },
2255     { Hexagon::BI__builtin_HEXAGON_V6_veqh_128B, "v60,v62,v65,v66" },
2256     { Hexagon::BI__builtin_HEXAGON_V6_veqh_and, "v60,v62,v65,v66" },
2257     { Hexagon::BI__builtin_HEXAGON_V6_veqh_and_128B, "v60,v62,v65,v66" },
2258     { Hexagon::BI__builtin_HEXAGON_V6_veqh_or, "v60,v62,v65,v66" },
2259     { Hexagon::BI__builtin_HEXAGON_V6_veqh_or_128B, "v60,v62,v65,v66" },
2260     { Hexagon::BI__builtin_HEXAGON_V6_veqh_xor, "v60,v62,v65,v66" },
2261     { Hexagon::BI__builtin_HEXAGON_V6_veqh_xor_128B, "v60,v62,v65,v66" },
2262     { Hexagon::BI__builtin_HEXAGON_V6_veqw, "v60,v62,v65,v66" },
2263     { Hexagon::BI__builtin_HEXAGON_V6_veqw_128B, "v60,v62,v65,v66" },
2264     { Hexagon::BI__builtin_HEXAGON_V6_veqw_and, "v60,v62,v65,v66" },
2265     { Hexagon::BI__builtin_HEXAGON_V6_veqw_and_128B, "v60,v62,v65,v66" },
2266     { Hexagon::BI__builtin_HEXAGON_V6_veqw_or, "v60,v62,v65,v66" },
2267     { Hexagon::BI__builtin_HEXAGON_V6_veqw_or_128B, "v60,v62,v65,v66" },
2268     { Hexagon::BI__builtin_HEXAGON_V6_veqw_xor, "v60,v62,v65,v66" },
2269     { Hexagon::BI__builtin_HEXAGON_V6_veqw_xor_128B, "v60,v62,v65,v66" },
2270     { Hexagon::BI__builtin_HEXAGON_V6_vgtb, "v60,v62,v65,v66" },
2271     { Hexagon::BI__builtin_HEXAGON_V6_vgtb_128B, "v60,v62,v65,v66" },
2272     { Hexagon::BI__builtin_HEXAGON_V6_vgtb_and, "v60,v62,v65,v66" },
2273     { Hexagon::BI__builtin_HEXAGON_V6_vgtb_and_128B, "v60,v62,v65,v66" },
2274     { Hexagon::BI__builtin_HEXAGON_V6_vgtb_or, "v60,v62,v65,v66" },
2275     { Hexagon::BI__builtin_HEXAGON_V6_vgtb_or_128B, "v60,v62,v65,v66" },
2276     { Hexagon::BI__builtin_HEXAGON_V6_vgtb_xor, "v60,v62,v65,v66" },
2277     { Hexagon::BI__builtin_HEXAGON_V6_vgtb_xor_128B, "v60,v62,v65,v66" },
2278     { Hexagon::BI__builtin_HEXAGON_V6_vgth, "v60,v62,v65,v66" },
2279     { Hexagon::BI__builtin_HEXAGON_V6_vgth_128B, "v60,v62,v65,v66" },
2280     { Hexagon::BI__builtin_HEXAGON_V6_vgth_and, "v60,v62,v65,v66" },
2281     { Hexagon::BI__builtin_HEXAGON_V6_vgth_and_128B, "v60,v62,v65,v66" },
2282     { Hexagon::BI__builtin_HEXAGON_V6_vgth_or, "v60,v62,v65,v66" },
2283     { Hexagon::BI__builtin_HEXAGON_V6_vgth_or_128B, "v60,v62,v65,v66" },
2284     { Hexagon::BI__builtin_HEXAGON_V6_vgth_xor, "v60,v62,v65,v66" },
2285     { Hexagon::BI__builtin_HEXAGON_V6_vgth_xor_128B, "v60,v62,v65,v66" },
2286     { Hexagon::BI__builtin_HEXAGON_V6_vgtub, "v60,v62,v65,v66" },
2287     { Hexagon::BI__builtin_HEXAGON_V6_vgtub_128B, "v60,v62,v65,v66" },
2288     { Hexagon::BI__builtin_HEXAGON_V6_vgtub_and, "v60,v62,v65,v66" },
2289     { Hexagon::BI__builtin_HEXAGON_V6_vgtub_and_128B, "v60,v62,v65,v66" },
2290     { Hexagon::BI__builtin_HEXAGON_V6_vgtub_or, "v60,v62,v65,v66" },
2291     { Hexagon::BI__builtin_HEXAGON_V6_vgtub_or_128B, "v60,v62,v65,v66" },
2292     { Hexagon::BI__builtin_HEXAGON_V6_vgtub_xor, "v60,v62,v65,v66" },
2293     { Hexagon::BI__builtin_HEXAGON_V6_vgtub_xor_128B, "v60,v62,v65,v66" },
2294     { Hexagon::BI__builtin_HEXAGON_V6_vgtuh, "v60,v62,v65,v66" },
2295     { Hexagon::BI__builtin_HEXAGON_V6_vgtuh_128B, "v60,v62,v65,v66" },
2296     { Hexagon::BI__builtin_HEXAGON_V6_vgtuh_and, "v60,v62,v65,v66" },
2297     { Hexagon::BI__builtin_HEXAGON_V6_vgtuh_and_128B, "v60,v62,v65,v66" },
2298     { Hexagon::BI__builtin_HEXAGON_V6_vgtuh_or, "v60,v62,v65,v66" },
2299     { Hexagon::BI__builtin_HEXAGON_V6_vgtuh_or_128B, "v60,v62,v65,v66" },
2300     { Hexagon::BI__builtin_HEXAGON_V6_vgtuh_xor, "v60,v62,v65,v66" },
2301     { Hexagon::BI__builtin_HEXAGON_V6_vgtuh_xor_128B, "v60,v62,v65,v66" },
2302     { Hexagon::BI__builtin_HEXAGON_V6_vgtuw, "v60,v62,v65,v66" },
2303     { Hexagon::BI__builtin_HEXAGON_V6_vgtuw_128B, "v60,v62,v65,v66" },
2304     { Hexagon::BI__builtin_HEXAGON_V6_vgtuw_and, "v60,v62,v65,v66" },
2305     { Hexagon::BI__builtin_HEXAGON_V6_vgtuw_and_128B, "v60,v62,v65,v66" },
2306     { Hexagon::BI__builtin_HEXAGON_V6_vgtuw_or, "v60,v62,v65,v66" },
2307     { Hexagon::BI__builtin_HEXAGON_V6_vgtuw_or_128B, "v60,v62,v65,v66" },
2308     { Hexagon::BI__builtin_HEXAGON_V6_vgtuw_xor, "v60,v62,v65,v66" },
2309     { Hexagon::BI__builtin_HEXAGON_V6_vgtuw_xor_128B, "v60,v62,v65,v66" },
2310     { Hexagon::BI__builtin_HEXAGON_V6_vgtw, "v60,v62,v65,v66" },
2311     { Hexagon::BI__builtin_HEXAGON_V6_vgtw_128B, "v60,v62,v65,v66" },
2312     { Hexagon::BI__builtin_HEXAGON_V6_vgtw_and, "v60,v62,v65,v66" },
2313     { Hexagon::BI__builtin_HEXAGON_V6_vgtw_and_128B, "v60,v62,v65,v66" },
2314     { Hexagon::BI__builtin_HEXAGON_V6_vgtw_or, "v60,v62,v65,v66" },
2315     { Hexagon::BI__builtin_HEXAGON_V6_vgtw_or_128B, "v60,v62,v65,v66" },
2316     { Hexagon::BI__builtin_HEXAGON_V6_vgtw_xor, "v60,v62,v65,v66" },
2317     { Hexagon::BI__builtin_HEXAGON_V6_vgtw_xor_128B, "v60,v62,v65,v66" },
2318     { Hexagon::BI__builtin_HEXAGON_V6_vinsertwr, "v60,v62,v65,v66" },
2319     { Hexagon::BI__builtin_HEXAGON_V6_vinsertwr_128B, "v60,v62,v65,v66" },
2320     { Hexagon::BI__builtin_HEXAGON_V6_vlalignb, "v60,v62,v65,v66" },
2321     { Hexagon::BI__builtin_HEXAGON_V6_vlalignb_128B, "v60,v62,v65,v66" },
2322     { Hexagon::BI__builtin_HEXAGON_V6_vlalignbi, "v60,v62,v65,v66" },
2323     { Hexagon::BI__builtin_HEXAGON_V6_vlalignbi_128B, "v60,v62,v65,v66" },
2324     { Hexagon::BI__builtin_HEXAGON_V6_vlsrb, "v62,v65,v66" },
2325     { Hexagon::BI__builtin_HEXAGON_V6_vlsrb_128B, "v62,v65,v66" },
2326     { Hexagon::BI__builtin_HEXAGON_V6_vlsrh, "v60,v62,v65,v66" },
2327     { Hexagon::BI__builtin_HEXAGON_V6_vlsrh_128B, "v60,v62,v65,v66" },
2328     { Hexagon::BI__builtin_HEXAGON_V6_vlsrhv, "v60,v62,v65,v66" },
2329     { Hexagon::BI__builtin_HEXAGON_V6_vlsrhv_128B, "v60,v62,v65,v66" },
2330     { Hexagon::BI__builtin_HEXAGON_V6_vlsrw, "v60,v62,v65,v66" },
2331     { Hexagon::BI__builtin_HEXAGON_V6_vlsrw_128B, "v60,v62,v65,v66" },
2332     { Hexagon::BI__builtin_HEXAGON_V6_vlsrwv, "v60,v62,v65,v66" },
2333     { Hexagon::BI__builtin_HEXAGON_V6_vlsrwv_128B, "v60,v62,v65,v66" },
2334     { Hexagon::BI__builtin_HEXAGON_V6_vlut4, "v65,v66" },
2335     { Hexagon::BI__builtin_HEXAGON_V6_vlut4_128B, "v65,v66" },
2336     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvb, "v60,v62,v65,v66" },
2337     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvb_128B, "v60,v62,v65,v66" },
2338     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvbi, "v62,v65,v66" },
2339     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvbi_128B, "v62,v65,v66" },
2340     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvb_nm, "v62,v65,v66" },
2341     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvb_nm_128B, "v62,v65,v66" },
2342     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvb_oracc, "v60,v62,v65,v66" },
2343     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvb_oracc_128B, "v60,v62,v65,v66" },
2344     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvb_oracci, "v62,v65,v66" },
2345     { Hexagon::BI__builtin_HEXAGON_V6_vlutvvb_oracci_128B, "v62,v65,v66" },
2346     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwh, "v60,v62,v65,v66" },
2347     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwh_128B, "v60,v62,v65,v66" },
2348     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwhi, "v62,v65,v66" },
2349     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwhi_128B, "v62,v65,v66" },
2350     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwh_nm, "v62,v65,v66" },
2351     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwh_nm_128B, "v62,v65,v66" },
2352     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwh_oracc, "v60,v62,v65,v66" },
2353     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwh_oracc_128B, "v60,v62,v65,v66" },
2354     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwh_oracci, "v62,v65,v66" },
2355     { Hexagon::BI__builtin_HEXAGON_V6_vlutvwh_oracci_128B, "v62,v65,v66" },
2356     { Hexagon::BI__builtin_HEXAGON_V6_vmaxb, "v62,v65,v66" },
2357     { Hexagon::BI__builtin_HEXAGON_V6_vmaxb_128B, "v62,v65,v66" },
2358     { Hexagon::BI__builtin_HEXAGON_V6_vmaxh, "v60,v62,v65,v66" },
2359     { Hexagon::BI__builtin_HEXAGON_V6_vmaxh_128B, "v60,v62,v65,v66" },
2360     { Hexagon::BI__builtin_HEXAGON_V6_vmaxub, "v60,v62,v65,v66" },
2361     { Hexagon::BI__builtin_HEXAGON_V6_vmaxub_128B, "v60,v62,v65,v66" },
2362     { Hexagon::BI__builtin_HEXAGON_V6_vmaxuh, "v60,v62,v65,v66" },
2363     { Hexagon::BI__builtin_HEXAGON_V6_vmaxuh_128B, "v60,v62,v65,v66" },
2364     { Hexagon::BI__builtin_HEXAGON_V6_vmaxw, "v60,v62,v65,v66" },
2365     { Hexagon::BI__builtin_HEXAGON_V6_vmaxw_128B, "v60,v62,v65,v66" },
2366     { Hexagon::BI__builtin_HEXAGON_V6_vminb, "v62,v65,v66" },
2367     { Hexagon::BI__builtin_HEXAGON_V6_vminb_128B, "v62,v65,v66" },
2368     { Hexagon::BI__builtin_HEXAGON_V6_vminh, "v60,v62,v65,v66" },
2369     { Hexagon::BI__builtin_HEXAGON_V6_vminh_128B, "v60,v62,v65,v66" },
2370     { Hexagon::BI__builtin_HEXAGON_V6_vminub, "v60,v62,v65,v66" },
2371     { Hexagon::BI__builtin_HEXAGON_V6_vminub_128B, "v60,v62,v65,v66" },
2372     { Hexagon::BI__builtin_HEXAGON_V6_vminuh, "v60,v62,v65,v66" },
2373     { Hexagon::BI__builtin_HEXAGON_V6_vminuh_128B, "v60,v62,v65,v66" },
2374     { Hexagon::BI__builtin_HEXAGON_V6_vminw, "v60,v62,v65,v66" },
2375     { Hexagon::BI__builtin_HEXAGON_V6_vminw_128B, "v60,v62,v65,v66" },
2376     { Hexagon::BI__builtin_HEXAGON_V6_vmpabus, "v60,v62,v65,v66" },
2377     { Hexagon::BI__builtin_HEXAGON_V6_vmpabus_128B, "v60,v62,v65,v66" },
2378     { Hexagon::BI__builtin_HEXAGON_V6_vmpabus_acc, "v60,v62,v65,v66" },
2379     { Hexagon::BI__builtin_HEXAGON_V6_vmpabus_acc_128B, "v60,v62,v65,v66" },
2380     { Hexagon::BI__builtin_HEXAGON_V6_vmpabusv, "v60,v62,v65,v66" },
2381     { Hexagon::BI__builtin_HEXAGON_V6_vmpabusv_128B, "v60,v62,v65,v66" },
2382     { Hexagon::BI__builtin_HEXAGON_V6_vmpabuu, "v65,v66" },
2383     { Hexagon::BI__builtin_HEXAGON_V6_vmpabuu_128B, "v65,v66" },
2384     { Hexagon::BI__builtin_HEXAGON_V6_vmpabuu_acc, "v65,v66" },
2385     { Hexagon::BI__builtin_HEXAGON_V6_vmpabuu_acc_128B, "v65,v66" },
2386     { Hexagon::BI__builtin_HEXAGON_V6_vmpabuuv, "v60,v62,v65,v66" },
2387     { Hexagon::BI__builtin_HEXAGON_V6_vmpabuuv_128B, "v60,v62,v65,v66" },
2388     { Hexagon::BI__builtin_HEXAGON_V6_vmpahb, "v60,v62,v65,v66" },
2389     { Hexagon::BI__builtin_HEXAGON_V6_vmpahb_128B, "v60,v62,v65,v66" },
2390     { Hexagon::BI__builtin_HEXAGON_V6_vmpahb_acc, "v60,v62,v65,v66" },
2391     { Hexagon::BI__builtin_HEXAGON_V6_vmpahb_acc_128B, "v60,v62,v65,v66" },
2392     { Hexagon::BI__builtin_HEXAGON_V6_vmpahhsat, "v65,v66" },
2393     { Hexagon::BI__builtin_HEXAGON_V6_vmpahhsat_128B, "v65,v66" },
2394     { Hexagon::BI__builtin_HEXAGON_V6_vmpauhb, "v62,v65,v66" },
2395     { Hexagon::BI__builtin_HEXAGON_V6_vmpauhb_128B, "v62,v65,v66" },
2396     { Hexagon::BI__builtin_HEXAGON_V6_vmpauhb_acc, "v62,v65,v66" },
2397     { Hexagon::BI__builtin_HEXAGON_V6_vmpauhb_acc_128B, "v62,v65,v66" },
2398     { Hexagon::BI__builtin_HEXAGON_V6_vmpauhuhsat, "v65,v66" },
2399     { Hexagon::BI__builtin_HEXAGON_V6_vmpauhuhsat_128B, "v65,v66" },
2400     { Hexagon::BI__builtin_HEXAGON_V6_vmpsuhuhsat, "v65,v66" },
2401     { Hexagon::BI__builtin_HEXAGON_V6_vmpsuhuhsat_128B, "v65,v66" },
2402     { Hexagon::BI__builtin_HEXAGON_V6_vmpybus, "v60,v62,v65,v66" },
2403     { Hexagon::BI__builtin_HEXAGON_V6_vmpybus_128B, "v60,v62,v65,v66" },
2404     { Hexagon::BI__builtin_HEXAGON_V6_vmpybus_acc, "v60,v62,v65,v66" },
2405     { Hexagon::BI__builtin_HEXAGON_V6_vmpybus_acc_128B, "v60,v62,v65,v66" },
2406     { Hexagon::BI__builtin_HEXAGON_V6_vmpybusv, "v60,v62,v65,v66" },
2407     { Hexagon::BI__builtin_HEXAGON_V6_vmpybusv_128B, "v60,v62,v65,v66" },
2408     { Hexagon::BI__builtin_HEXAGON_V6_vmpybusv_acc, "v60,v62,v65,v66" },
2409     { Hexagon::BI__builtin_HEXAGON_V6_vmpybusv_acc_128B, "v60,v62,v65,v66" },
2410     { Hexagon::BI__builtin_HEXAGON_V6_vmpybv, "v60,v62,v65,v66" },
2411     { Hexagon::BI__builtin_HEXAGON_V6_vmpybv_128B, "v60,v62,v65,v66" },
2412     { Hexagon::BI__builtin_HEXAGON_V6_vmpybv_acc, "v60,v62,v65,v66" },
2413     { Hexagon::BI__builtin_HEXAGON_V6_vmpybv_acc_128B, "v60,v62,v65,v66" },
2414     { Hexagon::BI__builtin_HEXAGON_V6_vmpyewuh, "v60,v62,v65,v66" },
2415     { Hexagon::BI__builtin_HEXAGON_V6_vmpyewuh_128B, "v60,v62,v65,v66" },
2416     { Hexagon::BI__builtin_HEXAGON_V6_vmpyewuh_64, "v62,v65,v66" },
2417     { Hexagon::BI__builtin_HEXAGON_V6_vmpyewuh_64_128B, "v62,v65,v66" },
2418     { Hexagon::BI__builtin_HEXAGON_V6_vmpyh, "v60,v62,v65,v66" },
2419     { Hexagon::BI__builtin_HEXAGON_V6_vmpyh_128B, "v60,v62,v65,v66" },
2420     { Hexagon::BI__builtin_HEXAGON_V6_vmpyh_acc, "v65,v66" },
2421     { Hexagon::BI__builtin_HEXAGON_V6_vmpyh_acc_128B, "v65,v66" },
2422     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhsat_acc, "v60,v62,v65,v66" },
2423     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhsat_acc_128B, "v60,v62,v65,v66" },
2424     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhsrs, "v60,v62,v65,v66" },
2425     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhsrs_128B, "v60,v62,v65,v66" },
2426     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhss, "v60,v62,v65,v66" },
2427     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhss_128B, "v60,v62,v65,v66" },
2428     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhus, "v60,v62,v65,v66" },
2429     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhus_128B, "v60,v62,v65,v66" },
2430     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhus_acc, "v60,v62,v65,v66" },
2431     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhus_acc_128B, "v60,v62,v65,v66" },
2432     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhv, "v60,v62,v65,v66" },
2433     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhv_128B, "v60,v62,v65,v66" },
2434     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhv_acc, "v60,v62,v65,v66" },
2435     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhv_acc_128B, "v60,v62,v65,v66" },
2436     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhvsrs, "v60,v62,v65,v66" },
2437     { Hexagon::BI__builtin_HEXAGON_V6_vmpyhvsrs_128B, "v60,v62,v65,v66" },
2438     { Hexagon::BI__builtin_HEXAGON_V6_vmpyieoh, "v60,v62,v65,v66" },
2439     { Hexagon::BI__builtin_HEXAGON_V6_vmpyieoh_128B, "v60,v62,v65,v66" },
2440     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiewh_acc, "v60,v62,v65,v66" },
2441     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiewh_acc_128B, "v60,v62,v65,v66" },
2442     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiewuh, "v60,v62,v65,v66" },
2443     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiewuh_128B, "v60,v62,v65,v66" },
2444     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiewuh_acc, "v60,v62,v65,v66" },
2445     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiewuh_acc_128B, "v60,v62,v65,v66" },
2446     { Hexagon::BI__builtin_HEXAGON_V6_vmpyih, "v60,v62,v65,v66" },
2447     { Hexagon::BI__builtin_HEXAGON_V6_vmpyih_128B, "v60,v62,v65,v66" },
2448     { Hexagon::BI__builtin_HEXAGON_V6_vmpyih_acc, "v60,v62,v65,v66" },
2449     { Hexagon::BI__builtin_HEXAGON_V6_vmpyih_acc_128B, "v60,v62,v65,v66" },
2450     { Hexagon::BI__builtin_HEXAGON_V6_vmpyihb, "v60,v62,v65,v66" },
2451     { Hexagon::BI__builtin_HEXAGON_V6_vmpyihb_128B, "v60,v62,v65,v66" },
2452     { Hexagon::BI__builtin_HEXAGON_V6_vmpyihb_acc, "v60,v62,v65,v66" },
2453     { Hexagon::BI__builtin_HEXAGON_V6_vmpyihb_acc_128B, "v60,v62,v65,v66" },
2454     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiowh, "v60,v62,v65,v66" },
2455     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiowh_128B, "v60,v62,v65,v66" },
2456     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwb, "v60,v62,v65,v66" },
2457     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwb_128B, "v60,v62,v65,v66" },
2458     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwb_acc, "v60,v62,v65,v66" },
2459     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwb_acc_128B, "v60,v62,v65,v66" },
2460     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwh, "v60,v62,v65,v66" },
2461     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwh_128B, "v60,v62,v65,v66" },
2462     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwh_acc, "v60,v62,v65,v66" },
2463     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwh_acc_128B, "v60,v62,v65,v66" },
2464     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwub, "v62,v65,v66" },
2465     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwub_128B, "v62,v65,v66" },
2466     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwub_acc, "v62,v65,v66" },
2467     { Hexagon::BI__builtin_HEXAGON_V6_vmpyiwub_acc_128B, "v62,v65,v66" },
2468     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh, "v60,v62,v65,v66" },
2469     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_128B, "v60,v62,v65,v66" },
2470     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_64_acc, "v62,v65,v66" },
2471     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_64_acc_128B, "v62,v65,v66" },
2472     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_rnd, "v60,v62,v65,v66" },
2473     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_rnd_128B, "v60,v62,v65,v66" },
2474     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_rnd_sacc, "v60,v62,v65,v66" },
2475     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_rnd_sacc_128B, "v60,v62,v65,v66" },
2476     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_sacc, "v60,v62,v65,v66" },
2477     { Hexagon::BI__builtin_HEXAGON_V6_vmpyowh_sacc_128B, "v60,v62,v65,v66" },
2478     { Hexagon::BI__builtin_HEXAGON_V6_vmpyub, "v60,v62,v65,v66" },
2479     { Hexagon::BI__builtin_HEXAGON_V6_vmpyub_128B, "v60,v62,v65,v66" },
2480     { Hexagon::BI__builtin_HEXAGON_V6_vmpyub_acc, "v60,v62,v65,v66" },
2481     { Hexagon::BI__builtin_HEXAGON_V6_vmpyub_acc_128B, "v60,v62,v65,v66" },
2482     { Hexagon::BI__builtin_HEXAGON_V6_vmpyubv, "v60,v62,v65,v66" },
2483     { Hexagon::BI__builtin_HEXAGON_V6_vmpyubv_128B, "v60,v62,v65,v66" },
2484     { Hexagon::BI__builtin_HEXAGON_V6_vmpyubv_acc, "v60,v62,v65,v66" },
2485     { Hexagon::BI__builtin_HEXAGON_V6_vmpyubv_acc_128B, "v60,v62,v65,v66" },
2486     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuh, "v60,v62,v65,v66" },
2487     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuh_128B, "v60,v62,v65,v66" },
2488     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuh_acc, "v60,v62,v65,v66" },
2489     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuh_acc_128B, "v60,v62,v65,v66" },
2490     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuhe, "v65,v66" },
2491     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuhe_128B, "v65,v66" },
2492     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuhe_acc, "v65,v66" },
2493     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuhe_acc_128B, "v65,v66" },
2494     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuhv, "v60,v62,v65,v66" },
2495     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuhv_128B, "v60,v62,v65,v66" },
2496     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuhv_acc, "v60,v62,v65,v66" },
2497     { Hexagon::BI__builtin_HEXAGON_V6_vmpyuhv_acc_128B, "v60,v62,v65,v66" },
2498     { Hexagon::BI__builtin_HEXAGON_V6_vmux, "v60,v62,v65,v66" },
2499     { Hexagon::BI__builtin_HEXAGON_V6_vmux_128B, "v60,v62,v65,v66" },
2500     { Hexagon::BI__builtin_HEXAGON_V6_vnavgb, "v65,v66" },
2501     { Hexagon::BI__builtin_HEXAGON_V6_vnavgb_128B, "v65,v66" },
2502     { Hexagon::BI__builtin_HEXAGON_V6_vnavgh, "v60,v62,v65,v66" },
2503     { Hexagon::BI__builtin_HEXAGON_V6_vnavgh_128B, "v60,v62,v65,v66" },
2504     { Hexagon::BI__builtin_HEXAGON_V6_vnavgub, "v60,v62,v65,v66" },
2505     { Hexagon::BI__builtin_HEXAGON_V6_vnavgub_128B, "v60,v62,v65,v66" },
2506     { Hexagon::BI__builtin_HEXAGON_V6_vnavgw, "v60,v62,v65,v66" },
2507     { Hexagon::BI__builtin_HEXAGON_V6_vnavgw_128B, "v60,v62,v65,v66" },
2508     { Hexagon::BI__builtin_HEXAGON_V6_vnormamth, "v60,v62,v65,v66" },
2509     { Hexagon::BI__builtin_HEXAGON_V6_vnormamth_128B, "v60,v62,v65,v66" },
2510     { Hexagon::BI__builtin_HEXAGON_V6_vnormamtw, "v60,v62,v65,v66" },
2511     { Hexagon::BI__builtin_HEXAGON_V6_vnormamtw_128B, "v60,v62,v65,v66" },
2512     { Hexagon::BI__builtin_HEXAGON_V6_vnot, "v60,v62,v65,v66" },
2513     { Hexagon::BI__builtin_HEXAGON_V6_vnot_128B, "v60,v62,v65,v66" },
2514     { Hexagon::BI__builtin_HEXAGON_V6_vor, "v60,v62,v65,v66" },
2515     { Hexagon::BI__builtin_HEXAGON_V6_vor_128B, "v60,v62,v65,v66" },
2516     { Hexagon::BI__builtin_HEXAGON_V6_vpackeb, "v60,v62,v65,v66" },
2517     { Hexagon::BI__builtin_HEXAGON_V6_vpackeb_128B, "v60,v62,v65,v66" },
2518     { Hexagon::BI__builtin_HEXAGON_V6_vpackeh, "v60,v62,v65,v66" },
2519     { Hexagon::BI__builtin_HEXAGON_V6_vpackeh_128B, "v60,v62,v65,v66" },
2520     { Hexagon::BI__builtin_HEXAGON_V6_vpackhb_sat, "v60,v62,v65,v66" },
2521     { Hexagon::BI__builtin_HEXAGON_V6_vpackhb_sat_128B, "v60,v62,v65,v66" },
2522     { Hexagon::BI__builtin_HEXAGON_V6_vpackhub_sat, "v60,v62,v65,v66" },
2523     { Hexagon::BI__builtin_HEXAGON_V6_vpackhub_sat_128B, "v60,v62,v65,v66" },
2524     { Hexagon::BI__builtin_HEXAGON_V6_vpackob, "v60,v62,v65,v66" },
2525     { Hexagon::BI__builtin_HEXAGON_V6_vpackob_128B, "v60,v62,v65,v66" },
2526     { Hexagon::BI__builtin_HEXAGON_V6_vpackoh, "v60,v62,v65,v66" },
2527     { Hexagon::BI__builtin_HEXAGON_V6_vpackoh_128B, "v60,v62,v65,v66" },
2528     { Hexagon::BI__builtin_HEXAGON_V6_vpackwh_sat, "v60,v62,v65,v66" },
2529     { Hexagon::BI__builtin_HEXAGON_V6_vpackwh_sat_128B, "v60,v62,v65,v66" },
2530     { Hexagon::BI__builtin_HEXAGON_V6_vpackwuh_sat, "v60,v62,v65,v66" },
2531     { Hexagon::BI__builtin_HEXAGON_V6_vpackwuh_sat_128B, "v60,v62,v65,v66" },
2532     { Hexagon::BI__builtin_HEXAGON_V6_vpopcounth, "v60,v62,v65,v66" },
2533     { Hexagon::BI__builtin_HEXAGON_V6_vpopcounth_128B, "v60,v62,v65,v66" },
2534     { Hexagon::BI__builtin_HEXAGON_V6_vprefixqb, "v65,v66" },
2535     { Hexagon::BI__builtin_HEXAGON_V6_vprefixqb_128B, "v65,v66" },
2536     { Hexagon::BI__builtin_HEXAGON_V6_vprefixqh, "v65,v66" },
2537     { Hexagon::BI__builtin_HEXAGON_V6_vprefixqh_128B, "v65,v66" },
2538     { Hexagon::BI__builtin_HEXAGON_V6_vprefixqw, "v65,v66" },
2539     { Hexagon::BI__builtin_HEXAGON_V6_vprefixqw_128B, "v65,v66" },
2540     { Hexagon::BI__builtin_HEXAGON_V6_vrdelta, "v60,v62,v65,v66" },
2541     { Hexagon::BI__builtin_HEXAGON_V6_vrdelta_128B, "v60,v62,v65,v66" },
2542     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybub_rtt, "v65" },
2543     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybub_rtt_128B, "v65" },
2544     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybub_rtt_acc, "v65" },
2545     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybub_rtt_acc_128B, "v65" },
2546     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybus, "v60,v62,v65,v66" },
2547     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybus_128B, "v60,v62,v65,v66" },
2548     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybus_acc, "v60,v62,v65,v66" },
2549     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybus_acc_128B, "v60,v62,v65,v66" },
2550     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi, "v60,v62,v65,v66" },
2551     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_128B, "v60,v62,v65,v66" },
2552     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_acc, "v60,v62,v65,v66" },
2553     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_acc_128B, "v60,v62,v65,v66" },
2554     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusv, "v60,v62,v65,v66" },
2555     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusv_128B, "v60,v62,v65,v66" },
2556     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusv_acc, "v60,v62,v65,v66" },
2557     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusv_acc_128B, "v60,v62,v65,v66" },
2558     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybv, "v60,v62,v65,v66" },
2559     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybv_128B, "v60,v62,v65,v66" },
2560     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybv_acc, "v60,v62,v65,v66" },
2561     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybv_acc_128B, "v60,v62,v65,v66" },
2562     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyub, "v60,v62,v65,v66" },
2563     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyub_128B, "v60,v62,v65,v66" },
2564     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyub_acc, "v60,v62,v65,v66" },
2565     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyub_acc_128B, "v60,v62,v65,v66" },
2566     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi, "v60,v62,v65,v66" },
2567     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_128B, "v60,v62,v65,v66" },
2568     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_acc, "v60,v62,v65,v66" },
2569     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_acc_128B, "v60,v62,v65,v66" },
2570     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyub_rtt, "v65" },
2571     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyub_rtt_128B, "v65" },
2572     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyub_rtt_acc, "v65" },
2573     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyub_rtt_acc_128B, "v65" },
2574     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubv, "v60,v62,v65,v66" },
2575     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubv_128B, "v60,v62,v65,v66" },
2576     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubv_acc, "v60,v62,v65,v66" },
2577     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubv_acc_128B, "v60,v62,v65,v66" },
2578     { Hexagon::BI__builtin_HEXAGON_V6_vror, "v60,v62,v65,v66" },
2579     { Hexagon::BI__builtin_HEXAGON_V6_vror_128B, "v60,v62,v65,v66" },
2580     { Hexagon::BI__builtin_HEXAGON_V6_vrotr, "v66" },
2581     { Hexagon::BI__builtin_HEXAGON_V6_vrotr_128B, "v66" },
2582     { Hexagon::BI__builtin_HEXAGON_V6_vroundhb, "v60,v62,v65,v66" },
2583     { Hexagon::BI__builtin_HEXAGON_V6_vroundhb_128B, "v60,v62,v65,v66" },
2584     { Hexagon::BI__builtin_HEXAGON_V6_vroundhub, "v60,v62,v65,v66" },
2585     { Hexagon::BI__builtin_HEXAGON_V6_vroundhub_128B, "v60,v62,v65,v66" },
2586     { Hexagon::BI__builtin_HEXAGON_V6_vrounduhub, "v62,v65,v66" },
2587     { Hexagon::BI__builtin_HEXAGON_V6_vrounduhub_128B, "v62,v65,v66" },
2588     { Hexagon::BI__builtin_HEXAGON_V6_vrounduwuh, "v62,v65,v66" },
2589     { Hexagon::BI__builtin_HEXAGON_V6_vrounduwuh_128B, "v62,v65,v66" },
2590     { Hexagon::BI__builtin_HEXAGON_V6_vroundwh, "v60,v62,v65,v66" },
2591     { Hexagon::BI__builtin_HEXAGON_V6_vroundwh_128B, "v60,v62,v65,v66" },
2592     { Hexagon::BI__builtin_HEXAGON_V6_vroundwuh, "v60,v62,v65,v66" },
2593     { Hexagon::BI__builtin_HEXAGON_V6_vroundwuh_128B, "v60,v62,v65,v66" },
2594     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi, "v60,v62,v65,v66" },
2595     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_128B, "v60,v62,v65,v66" },
2596     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_acc, "v60,v62,v65,v66" },
2597     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_acc_128B, "v60,v62,v65,v66" },
2598     { Hexagon::BI__builtin_HEXAGON_V6_vsatdw, "v66" },
2599     { Hexagon::BI__builtin_HEXAGON_V6_vsatdw_128B, "v66" },
2600     { Hexagon::BI__builtin_HEXAGON_V6_vsathub, "v60,v62,v65,v66" },
2601     { Hexagon::BI__builtin_HEXAGON_V6_vsathub_128B, "v60,v62,v65,v66" },
2602     { Hexagon::BI__builtin_HEXAGON_V6_vsatuwuh, "v62,v65,v66" },
2603     { Hexagon::BI__builtin_HEXAGON_V6_vsatuwuh_128B, "v62,v65,v66" },
2604     { Hexagon::BI__builtin_HEXAGON_V6_vsatwh, "v60,v62,v65,v66" },
2605     { Hexagon::BI__builtin_HEXAGON_V6_vsatwh_128B, "v60,v62,v65,v66" },
2606     { Hexagon::BI__builtin_HEXAGON_V6_vsb, "v60,v62,v65,v66" },
2607     { Hexagon::BI__builtin_HEXAGON_V6_vsb_128B, "v60,v62,v65,v66" },
2608     { Hexagon::BI__builtin_HEXAGON_V6_vsh, "v60,v62,v65,v66" },
2609     { Hexagon::BI__builtin_HEXAGON_V6_vsh_128B, "v60,v62,v65,v66" },
2610     { Hexagon::BI__builtin_HEXAGON_V6_vshufeh, "v60,v62,v65,v66" },
2611     { Hexagon::BI__builtin_HEXAGON_V6_vshufeh_128B, "v60,v62,v65,v66" },
2612     { Hexagon::BI__builtin_HEXAGON_V6_vshuffb, "v60,v62,v65,v66" },
2613     { Hexagon::BI__builtin_HEXAGON_V6_vshuffb_128B, "v60,v62,v65,v66" },
2614     { Hexagon::BI__builtin_HEXAGON_V6_vshuffeb, "v60,v62,v65,v66" },
2615     { Hexagon::BI__builtin_HEXAGON_V6_vshuffeb_128B, "v60,v62,v65,v66" },
2616     { Hexagon::BI__builtin_HEXAGON_V6_vshuffh, "v60,v62,v65,v66" },
2617     { Hexagon::BI__builtin_HEXAGON_V6_vshuffh_128B, "v60,v62,v65,v66" },
2618     { Hexagon::BI__builtin_HEXAGON_V6_vshuffob, "v60,v62,v65,v66" },
2619     { Hexagon::BI__builtin_HEXAGON_V6_vshuffob_128B, "v60,v62,v65,v66" },
2620     { Hexagon::BI__builtin_HEXAGON_V6_vshuffvdd, "v60,v62,v65,v66" },
2621     { Hexagon::BI__builtin_HEXAGON_V6_vshuffvdd_128B, "v60,v62,v65,v66" },
2622     { Hexagon::BI__builtin_HEXAGON_V6_vshufoeb, "v60,v62,v65,v66" },
2623     { Hexagon::BI__builtin_HEXAGON_V6_vshufoeb_128B, "v60,v62,v65,v66" },
2624     { Hexagon::BI__builtin_HEXAGON_V6_vshufoeh, "v60,v62,v65,v66" },
2625     { Hexagon::BI__builtin_HEXAGON_V6_vshufoeh_128B, "v60,v62,v65,v66" },
2626     { Hexagon::BI__builtin_HEXAGON_V6_vshufoh, "v60,v62,v65,v66" },
2627     { Hexagon::BI__builtin_HEXAGON_V6_vshufoh_128B, "v60,v62,v65,v66" },
2628     { Hexagon::BI__builtin_HEXAGON_V6_vsubb, "v60,v62,v65,v66" },
2629     { Hexagon::BI__builtin_HEXAGON_V6_vsubb_128B, "v60,v62,v65,v66" },
2630     { Hexagon::BI__builtin_HEXAGON_V6_vsubb_dv, "v60,v62,v65,v66" },
2631     { Hexagon::BI__builtin_HEXAGON_V6_vsubb_dv_128B, "v60,v62,v65,v66" },
2632     { Hexagon::BI__builtin_HEXAGON_V6_vsubbsat, "v62,v65,v66" },
2633     { Hexagon::BI__builtin_HEXAGON_V6_vsubbsat_128B, "v62,v65,v66" },
2634     { Hexagon::BI__builtin_HEXAGON_V6_vsubbsat_dv, "v62,v65,v66" },
2635     { Hexagon::BI__builtin_HEXAGON_V6_vsubbsat_dv_128B, "v62,v65,v66" },
2636     { Hexagon::BI__builtin_HEXAGON_V6_vsubcarry, "v62,v65,v66" },
2637     { Hexagon::BI__builtin_HEXAGON_V6_vsubcarry_128B, "v62,v65,v66" },
2638     { Hexagon::BI__builtin_HEXAGON_V6_vsubh, "v60,v62,v65,v66" },
2639     { Hexagon::BI__builtin_HEXAGON_V6_vsubh_128B, "v60,v62,v65,v66" },
2640     { Hexagon::BI__builtin_HEXAGON_V6_vsubh_dv, "v60,v62,v65,v66" },
2641     { Hexagon::BI__builtin_HEXAGON_V6_vsubh_dv_128B, "v60,v62,v65,v66" },
2642     { Hexagon::BI__builtin_HEXAGON_V6_vsubhsat, "v60,v62,v65,v66" },
2643     { Hexagon::BI__builtin_HEXAGON_V6_vsubhsat_128B, "v60,v62,v65,v66" },
2644     { Hexagon::BI__builtin_HEXAGON_V6_vsubhsat_dv, "v60,v62,v65,v66" },
2645     { Hexagon::BI__builtin_HEXAGON_V6_vsubhsat_dv_128B, "v60,v62,v65,v66" },
2646     { Hexagon::BI__builtin_HEXAGON_V6_vsubhw, "v60,v62,v65,v66" },
2647     { Hexagon::BI__builtin_HEXAGON_V6_vsubhw_128B, "v60,v62,v65,v66" },
2648     { Hexagon::BI__builtin_HEXAGON_V6_vsububh, "v60,v62,v65,v66" },
2649     { Hexagon::BI__builtin_HEXAGON_V6_vsububh_128B, "v60,v62,v65,v66" },
2650     { Hexagon::BI__builtin_HEXAGON_V6_vsububsat, "v60,v62,v65,v66" },
2651     { Hexagon::BI__builtin_HEXAGON_V6_vsububsat_128B, "v60,v62,v65,v66" },
2652     { Hexagon::BI__builtin_HEXAGON_V6_vsububsat_dv, "v60,v62,v65,v66" },
2653     { Hexagon::BI__builtin_HEXAGON_V6_vsububsat_dv_128B, "v60,v62,v65,v66" },
2654     { Hexagon::BI__builtin_HEXAGON_V6_vsubububb_sat, "v62,v65,v66" },
2655     { Hexagon::BI__builtin_HEXAGON_V6_vsubububb_sat_128B, "v62,v65,v66" },
2656     { Hexagon::BI__builtin_HEXAGON_V6_vsubuhsat, "v60,v62,v65,v66" },
2657     { Hexagon::BI__builtin_HEXAGON_V6_vsubuhsat_128B, "v60,v62,v65,v66" },
2658     { Hexagon::BI__builtin_HEXAGON_V6_vsubuhsat_dv, "v60,v62,v65,v66" },
2659     { Hexagon::BI__builtin_HEXAGON_V6_vsubuhsat_dv_128B, "v60,v62,v65,v66" },
2660     { Hexagon::BI__builtin_HEXAGON_V6_vsubuhw, "v60,v62,v65,v66" },
2661     { Hexagon::BI__builtin_HEXAGON_V6_vsubuhw_128B, "v60,v62,v65,v66" },
2662     { Hexagon::BI__builtin_HEXAGON_V6_vsubuwsat, "v62,v65,v66" },
2663     { Hexagon::BI__builtin_HEXAGON_V6_vsubuwsat_128B, "v62,v65,v66" },
2664     { Hexagon::BI__builtin_HEXAGON_V6_vsubuwsat_dv, "v62,v65,v66" },
2665     { Hexagon::BI__builtin_HEXAGON_V6_vsubuwsat_dv_128B, "v62,v65,v66" },
2666     { Hexagon::BI__builtin_HEXAGON_V6_vsubw, "v60,v62,v65,v66" },
2667     { Hexagon::BI__builtin_HEXAGON_V6_vsubw_128B, "v60,v62,v65,v66" },
2668     { Hexagon::BI__builtin_HEXAGON_V6_vsubw_dv, "v60,v62,v65,v66" },
2669     { Hexagon::BI__builtin_HEXAGON_V6_vsubw_dv_128B, "v60,v62,v65,v66" },
2670     { Hexagon::BI__builtin_HEXAGON_V6_vsubwsat, "v60,v62,v65,v66" },
2671     { Hexagon::BI__builtin_HEXAGON_V6_vsubwsat_128B, "v60,v62,v65,v66" },
2672     { Hexagon::BI__builtin_HEXAGON_V6_vsubwsat_dv, "v60,v62,v65,v66" },
2673     { Hexagon::BI__builtin_HEXAGON_V6_vsubwsat_dv_128B, "v60,v62,v65,v66" },
2674     { Hexagon::BI__builtin_HEXAGON_V6_vswap, "v60,v62,v65,v66" },
2675     { Hexagon::BI__builtin_HEXAGON_V6_vswap_128B, "v60,v62,v65,v66" },
2676     { Hexagon::BI__builtin_HEXAGON_V6_vtmpyb, "v60,v62,v65,v66" },
2677     { Hexagon::BI__builtin_HEXAGON_V6_vtmpyb_128B, "v60,v62,v65,v66" },
2678     { Hexagon::BI__builtin_HEXAGON_V6_vtmpyb_acc, "v60,v62,v65,v66" },
2679     { Hexagon::BI__builtin_HEXAGON_V6_vtmpyb_acc_128B, "v60,v62,v65,v66" },
2680     { Hexagon::BI__builtin_HEXAGON_V6_vtmpybus, "v60,v62,v65,v66" },
2681     { Hexagon::BI__builtin_HEXAGON_V6_vtmpybus_128B, "v60,v62,v65,v66" },
2682     { Hexagon::BI__builtin_HEXAGON_V6_vtmpybus_acc, "v60,v62,v65,v66" },
2683     { Hexagon::BI__builtin_HEXAGON_V6_vtmpybus_acc_128B, "v60,v62,v65,v66" },
2684     { Hexagon::BI__builtin_HEXAGON_V6_vtmpyhb, "v60,v62,v65,v66" },
2685     { Hexagon::BI__builtin_HEXAGON_V6_vtmpyhb_128B, "v60,v62,v65,v66" },
2686     { Hexagon::BI__builtin_HEXAGON_V6_vtmpyhb_acc, "v60,v62,v65,v66" },
2687     { Hexagon::BI__builtin_HEXAGON_V6_vtmpyhb_acc_128B, "v60,v62,v65,v66" },
2688     { Hexagon::BI__builtin_HEXAGON_V6_vunpackb, "v60,v62,v65,v66" },
2689     { Hexagon::BI__builtin_HEXAGON_V6_vunpackb_128B, "v60,v62,v65,v66" },
2690     { Hexagon::BI__builtin_HEXAGON_V6_vunpackh, "v60,v62,v65,v66" },
2691     { Hexagon::BI__builtin_HEXAGON_V6_vunpackh_128B, "v60,v62,v65,v66" },
2692     { Hexagon::BI__builtin_HEXAGON_V6_vunpackob, "v60,v62,v65,v66" },
2693     { Hexagon::BI__builtin_HEXAGON_V6_vunpackob_128B, "v60,v62,v65,v66" },
2694     { Hexagon::BI__builtin_HEXAGON_V6_vunpackoh, "v60,v62,v65,v66" },
2695     { Hexagon::BI__builtin_HEXAGON_V6_vunpackoh_128B, "v60,v62,v65,v66" },
2696     { Hexagon::BI__builtin_HEXAGON_V6_vunpackub, "v60,v62,v65,v66" },
2697     { Hexagon::BI__builtin_HEXAGON_V6_vunpackub_128B, "v60,v62,v65,v66" },
2698     { Hexagon::BI__builtin_HEXAGON_V6_vunpackuh, "v60,v62,v65,v66" },
2699     { Hexagon::BI__builtin_HEXAGON_V6_vunpackuh_128B, "v60,v62,v65,v66" },
2700     { Hexagon::BI__builtin_HEXAGON_V6_vxor, "v60,v62,v65,v66" },
2701     { Hexagon::BI__builtin_HEXAGON_V6_vxor_128B, "v60,v62,v65,v66" },
2702     { Hexagon::BI__builtin_HEXAGON_V6_vzb, "v60,v62,v65,v66" },
2703     { Hexagon::BI__builtin_HEXAGON_V6_vzb_128B, "v60,v62,v65,v66" },
2704     { Hexagon::BI__builtin_HEXAGON_V6_vzh, "v60,v62,v65,v66" },
2705     { Hexagon::BI__builtin_HEXAGON_V6_vzh_128B, "v60,v62,v65,v66" },
2706   };
2707 
2708   // Sort the tables on first execution so we can binary search them.
2709   auto SortCmp = [](const BuiltinAndString &LHS, const BuiltinAndString &RHS) {
2710     return LHS.BuiltinID < RHS.BuiltinID;
2711   };
2712   static const bool SortOnce =
2713       (llvm::sort(ValidCPU, SortCmp),
2714        llvm::sort(ValidHVX, SortCmp), true);
2715   (void)SortOnce;
2716   auto LowerBoundCmp = [](const BuiltinAndString &BI, unsigned BuiltinID) {
2717     return BI.BuiltinID < BuiltinID;
2718   };
2719 
2720   const TargetInfo &TI = Context.getTargetInfo();
2721 
2722   const BuiltinAndString *FC =
2723       llvm::lower_bound(ValidCPU, BuiltinID, LowerBoundCmp);
2724   if (FC != std::end(ValidCPU) && FC->BuiltinID == BuiltinID) {
2725     const TargetOptions &Opts = TI.getTargetOpts();
2726     StringRef CPU = Opts.CPU;
2727     if (!CPU.empty()) {
2728       assert(CPU.startswith("hexagon") && "Unexpected CPU name");
2729       CPU.consume_front("hexagon");
2730       SmallVector<StringRef, 3> CPUs;
2731       StringRef(FC->Str).split(CPUs, ',');
2732       if (llvm::none_of(CPUs, [CPU](StringRef S) { return S == CPU; }))
2733         return Diag(TheCall->getBeginLoc(),
2734                     diag::err_hexagon_builtin_unsupported_cpu);
2735     }
2736   }
2737 
2738   const BuiltinAndString *FH =
2739       llvm::lower_bound(ValidHVX, BuiltinID, LowerBoundCmp);
2740   if (FH != std::end(ValidHVX) && FH->BuiltinID == BuiltinID) {
2741     if (!TI.hasFeature("hvx"))
2742       return Diag(TheCall->getBeginLoc(),
2743                   diag::err_hexagon_builtin_requires_hvx);
2744 
2745     SmallVector<StringRef, 3> HVXs;
2746     StringRef(FH->Str).split(HVXs, ',');
2747     bool IsValid = llvm::any_of(HVXs,
2748                                 [&TI] (StringRef V) {
2749                                   std::string F = "hvx" + V.str();
2750                                   return TI.hasFeature(F);
2751                                 });
2752     if (!IsValid)
2753       return Diag(TheCall->getBeginLoc(),
2754                   diag::err_hexagon_builtin_unsupported_hvx);
2755   }
2756 
2757   return false;
2758 }
2759 
2760 bool Sema::CheckHexagonBuiltinArgument(unsigned BuiltinID, CallExpr *TheCall) {
2761   struct ArgInfo {
2762     uint8_t OpNum;
2763     bool IsSigned;
2764     uint8_t BitWidth;
2765     uint8_t Align;
2766   };
2767   struct BuiltinInfo {
2768     unsigned BuiltinID;
2769     ArgInfo Infos[2];
2770   };
2771 
2772   static BuiltinInfo Infos[] = {
2773     { Hexagon::BI__builtin_circ_ldd,                  {{ 3, true,  4,  3 }} },
2774     { Hexagon::BI__builtin_circ_ldw,                  {{ 3, true,  4,  2 }} },
2775     { Hexagon::BI__builtin_circ_ldh,                  {{ 3, true,  4,  1 }} },
2776     { Hexagon::BI__builtin_circ_lduh,                 {{ 3, true,  4,  0 }} },
2777     { Hexagon::BI__builtin_circ_ldb,                  {{ 3, true,  4,  0 }} },
2778     { Hexagon::BI__builtin_circ_ldub,                 {{ 3, true,  4,  0 }} },
2779     { Hexagon::BI__builtin_circ_std,                  {{ 3, true,  4,  3 }} },
2780     { Hexagon::BI__builtin_circ_stw,                  {{ 3, true,  4,  2 }} },
2781     { Hexagon::BI__builtin_circ_sth,                  {{ 3, true,  4,  1 }} },
2782     { Hexagon::BI__builtin_circ_sthhi,                {{ 3, true,  4,  1 }} },
2783     { Hexagon::BI__builtin_circ_stb,                  {{ 3, true,  4,  0 }} },
2784 
2785     { Hexagon::BI__builtin_HEXAGON_L2_loadrub_pci,    {{ 1, true,  4,  0 }} },
2786     { Hexagon::BI__builtin_HEXAGON_L2_loadrb_pci,     {{ 1, true,  4,  0 }} },
2787     { Hexagon::BI__builtin_HEXAGON_L2_loadruh_pci,    {{ 1, true,  4,  1 }} },
2788     { Hexagon::BI__builtin_HEXAGON_L2_loadrh_pci,     {{ 1, true,  4,  1 }} },
2789     { Hexagon::BI__builtin_HEXAGON_L2_loadri_pci,     {{ 1, true,  4,  2 }} },
2790     { Hexagon::BI__builtin_HEXAGON_L2_loadrd_pci,     {{ 1, true,  4,  3 }} },
2791     { Hexagon::BI__builtin_HEXAGON_S2_storerb_pci,    {{ 1, true,  4,  0 }} },
2792     { Hexagon::BI__builtin_HEXAGON_S2_storerh_pci,    {{ 1, true,  4,  1 }} },
2793     { Hexagon::BI__builtin_HEXAGON_S2_storerf_pci,    {{ 1, true,  4,  1 }} },
2794     { Hexagon::BI__builtin_HEXAGON_S2_storeri_pci,    {{ 1, true,  4,  2 }} },
2795     { Hexagon::BI__builtin_HEXAGON_S2_storerd_pci,    {{ 1, true,  4,  3 }} },
2796 
2797     { Hexagon::BI__builtin_HEXAGON_A2_combineii,      {{ 1, true,  8,  0 }} },
2798     { Hexagon::BI__builtin_HEXAGON_A2_tfrih,          {{ 1, false, 16, 0 }} },
2799     { Hexagon::BI__builtin_HEXAGON_A2_tfril,          {{ 1, false, 16, 0 }} },
2800     { Hexagon::BI__builtin_HEXAGON_A2_tfrpi,          {{ 0, true,  8,  0 }} },
2801     { Hexagon::BI__builtin_HEXAGON_A4_bitspliti,      {{ 1, false, 5,  0 }} },
2802     { Hexagon::BI__builtin_HEXAGON_A4_cmpbeqi,        {{ 1, false, 8,  0 }} },
2803     { Hexagon::BI__builtin_HEXAGON_A4_cmpbgti,        {{ 1, true,  8,  0 }} },
2804     { Hexagon::BI__builtin_HEXAGON_A4_cround_ri,      {{ 1, false, 5,  0 }} },
2805     { Hexagon::BI__builtin_HEXAGON_A4_round_ri,       {{ 1, false, 5,  0 }} },
2806     { Hexagon::BI__builtin_HEXAGON_A4_round_ri_sat,   {{ 1, false, 5,  0 }} },
2807     { Hexagon::BI__builtin_HEXAGON_A4_vcmpbeqi,       {{ 1, false, 8,  0 }} },
2808     { Hexagon::BI__builtin_HEXAGON_A4_vcmpbgti,       {{ 1, true,  8,  0 }} },
2809     { Hexagon::BI__builtin_HEXAGON_A4_vcmpbgtui,      {{ 1, false, 7,  0 }} },
2810     { Hexagon::BI__builtin_HEXAGON_A4_vcmpheqi,       {{ 1, true,  8,  0 }} },
2811     { Hexagon::BI__builtin_HEXAGON_A4_vcmphgti,       {{ 1, true,  8,  0 }} },
2812     { Hexagon::BI__builtin_HEXAGON_A4_vcmphgtui,      {{ 1, false, 7,  0 }} },
2813     { Hexagon::BI__builtin_HEXAGON_A4_vcmpweqi,       {{ 1, true,  8,  0 }} },
2814     { Hexagon::BI__builtin_HEXAGON_A4_vcmpwgti,       {{ 1, true,  8,  0 }} },
2815     { Hexagon::BI__builtin_HEXAGON_A4_vcmpwgtui,      {{ 1, false, 7,  0 }} },
2816     { Hexagon::BI__builtin_HEXAGON_C2_bitsclri,       {{ 1, false, 6,  0 }} },
2817     { Hexagon::BI__builtin_HEXAGON_C2_muxii,          {{ 2, true,  8,  0 }} },
2818     { Hexagon::BI__builtin_HEXAGON_C4_nbitsclri,      {{ 1, false, 6,  0 }} },
2819     { Hexagon::BI__builtin_HEXAGON_F2_dfclass,        {{ 1, false, 5,  0 }} },
2820     { Hexagon::BI__builtin_HEXAGON_F2_dfimm_n,        {{ 0, false, 10, 0 }} },
2821     { Hexagon::BI__builtin_HEXAGON_F2_dfimm_p,        {{ 0, false, 10, 0 }} },
2822     { Hexagon::BI__builtin_HEXAGON_F2_sfclass,        {{ 1, false, 5,  0 }} },
2823     { Hexagon::BI__builtin_HEXAGON_F2_sfimm_n,        {{ 0, false, 10, 0 }} },
2824     { Hexagon::BI__builtin_HEXAGON_F2_sfimm_p,        {{ 0, false, 10, 0 }} },
2825     { Hexagon::BI__builtin_HEXAGON_M4_mpyri_addi,     {{ 2, false, 6,  0 }} },
2826     { Hexagon::BI__builtin_HEXAGON_M4_mpyri_addr_u2,  {{ 1, false, 6,  2 }} },
2827     { Hexagon::BI__builtin_HEXAGON_S2_addasl_rrri,    {{ 2, false, 3,  0 }} },
2828     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_acc,    {{ 2, false, 6,  0 }} },
2829     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_and,    {{ 2, false, 6,  0 }} },
2830     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p,        {{ 1, false, 6,  0 }} },
2831     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_nac,    {{ 2, false, 6,  0 }} },
2832     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_or,     {{ 2, false, 6,  0 }} },
2833     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_xacc,   {{ 2, false, 6,  0 }} },
2834     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_acc,    {{ 2, false, 5,  0 }} },
2835     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_and,    {{ 2, false, 5,  0 }} },
2836     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r,        {{ 1, false, 5,  0 }} },
2837     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_nac,    {{ 2, false, 5,  0 }} },
2838     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_or,     {{ 2, false, 5,  0 }} },
2839     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_sat,    {{ 1, false, 5,  0 }} },
2840     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_xacc,   {{ 2, false, 5,  0 }} },
2841     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_vh,       {{ 1, false, 4,  0 }} },
2842     { Hexagon::BI__builtin_HEXAGON_S2_asl_i_vw,       {{ 1, false, 5,  0 }} },
2843     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_acc,    {{ 2, false, 6,  0 }} },
2844     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_and,    {{ 2, false, 6,  0 }} },
2845     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p,        {{ 1, false, 6,  0 }} },
2846     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_nac,    {{ 2, false, 6,  0 }} },
2847     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_or,     {{ 2, false, 6,  0 }} },
2848     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_rnd_goodsyntax,
2849                                                       {{ 1, false, 6,  0 }} },
2850     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_rnd,    {{ 1, false, 6,  0 }} },
2851     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_acc,    {{ 2, false, 5,  0 }} },
2852     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_and,    {{ 2, false, 5,  0 }} },
2853     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r,        {{ 1, false, 5,  0 }} },
2854     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_nac,    {{ 2, false, 5,  0 }} },
2855     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_or,     {{ 2, false, 5,  0 }} },
2856     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_rnd_goodsyntax,
2857                                                       {{ 1, false, 5,  0 }} },
2858     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_rnd,    {{ 1, false, 5,  0 }} },
2859     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_svw_trun, {{ 1, false, 5,  0 }} },
2860     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_vh,       {{ 1, false, 4,  0 }} },
2861     { Hexagon::BI__builtin_HEXAGON_S2_asr_i_vw,       {{ 1, false, 5,  0 }} },
2862     { Hexagon::BI__builtin_HEXAGON_S2_clrbit_i,       {{ 1, false, 5,  0 }} },
2863     { Hexagon::BI__builtin_HEXAGON_S2_extractu,       {{ 1, false, 5,  0 },
2864                                                        { 2, false, 5,  0 }} },
2865     { Hexagon::BI__builtin_HEXAGON_S2_extractup,      {{ 1, false, 6,  0 },
2866                                                        { 2, false, 6,  0 }} },
2867     { Hexagon::BI__builtin_HEXAGON_S2_insert,         {{ 2, false, 5,  0 },
2868                                                        { 3, false, 5,  0 }} },
2869     { Hexagon::BI__builtin_HEXAGON_S2_insertp,        {{ 2, false, 6,  0 },
2870                                                        { 3, false, 6,  0 }} },
2871     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_acc,    {{ 2, false, 6,  0 }} },
2872     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_and,    {{ 2, false, 6,  0 }} },
2873     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p,        {{ 1, false, 6,  0 }} },
2874     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_nac,    {{ 2, false, 6,  0 }} },
2875     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_or,     {{ 2, false, 6,  0 }} },
2876     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_xacc,   {{ 2, false, 6,  0 }} },
2877     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_acc,    {{ 2, false, 5,  0 }} },
2878     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_and,    {{ 2, false, 5,  0 }} },
2879     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r,        {{ 1, false, 5,  0 }} },
2880     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_nac,    {{ 2, false, 5,  0 }} },
2881     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_or,     {{ 2, false, 5,  0 }} },
2882     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_xacc,   {{ 2, false, 5,  0 }} },
2883     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_vh,       {{ 1, false, 4,  0 }} },
2884     { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_vw,       {{ 1, false, 5,  0 }} },
2885     { Hexagon::BI__builtin_HEXAGON_S2_setbit_i,       {{ 1, false, 5,  0 }} },
2886     { Hexagon::BI__builtin_HEXAGON_S2_tableidxb_goodsyntax,
2887                                                       {{ 2, false, 4,  0 },
2888                                                        { 3, false, 5,  0 }} },
2889     { Hexagon::BI__builtin_HEXAGON_S2_tableidxd_goodsyntax,
2890                                                       {{ 2, false, 4,  0 },
2891                                                        { 3, false, 5,  0 }} },
2892     { Hexagon::BI__builtin_HEXAGON_S2_tableidxh_goodsyntax,
2893                                                       {{ 2, false, 4,  0 },
2894                                                        { 3, false, 5,  0 }} },
2895     { Hexagon::BI__builtin_HEXAGON_S2_tableidxw_goodsyntax,
2896                                                       {{ 2, false, 4,  0 },
2897                                                        { 3, false, 5,  0 }} },
2898     { Hexagon::BI__builtin_HEXAGON_S2_togglebit_i,    {{ 1, false, 5,  0 }} },
2899     { Hexagon::BI__builtin_HEXAGON_S2_tstbit_i,       {{ 1, false, 5,  0 }} },
2900     { Hexagon::BI__builtin_HEXAGON_S2_valignib,       {{ 2, false, 3,  0 }} },
2901     { Hexagon::BI__builtin_HEXAGON_S2_vspliceib,      {{ 2, false, 3,  0 }} },
2902     { Hexagon::BI__builtin_HEXAGON_S4_addi_asl_ri,    {{ 2, false, 5,  0 }} },
2903     { Hexagon::BI__builtin_HEXAGON_S4_addi_lsr_ri,    {{ 2, false, 5,  0 }} },
2904     { Hexagon::BI__builtin_HEXAGON_S4_andi_asl_ri,    {{ 2, false, 5,  0 }} },
2905     { Hexagon::BI__builtin_HEXAGON_S4_andi_lsr_ri,    {{ 2, false, 5,  0 }} },
2906     { Hexagon::BI__builtin_HEXAGON_S4_clbaddi,        {{ 1, true , 6,  0 }} },
2907     { Hexagon::BI__builtin_HEXAGON_S4_clbpaddi,       {{ 1, true,  6,  0 }} },
2908     { Hexagon::BI__builtin_HEXAGON_S4_extract,        {{ 1, false, 5,  0 },
2909                                                        { 2, false, 5,  0 }} },
2910     { Hexagon::BI__builtin_HEXAGON_S4_extractp,       {{ 1, false, 6,  0 },
2911                                                        { 2, false, 6,  0 }} },
2912     { Hexagon::BI__builtin_HEXAGON_S4_lsli,           {{ 0, true,  6,  0 }} },
2913     { Hexagon::BI__builtin_HEXAGON_S4_ntstbit_i,      {{ 1, false, 5,  0 }} },
2914     { Hexagon::BI__builtin_HEXAGON_S4_ori_asl_ri,     {{ 2, false, 5,  0 }} },
2915     { Hexagon::BI__builtin_HEXAGON_S4_ori_lsr_ri,     {{ 2, false, 5,  0 }} },
2916     { Hexagon::BI__builtin_HEXAGON_S4_subi_asl_ri,    {{ 2, false, 5,  0 }} },
2917     { Hexagon::BI__builtin_HEXAGON_S4_subi_lsr_ri,    {{ 2, false, 5,  0 }} },
2918     { Hexagon::BI__builtin_HEXAGON_S4_vrcrotate_acc,  {{ 3, false, 2,  0 }} },
2919     { Hexagon::BI__builtin_HEXAGON_S4_vrcrotate,      {{ 2, false, 2,  0 }} },
2920     { Hexagon::BI__builtin_HEXAGON_S5_asrhub_rnd_sat_goodsyntax,
2921                                                       {{ 1, false, 4,  0 }} },
2922     { Hexagon::BI__builtin_HEXAGON_S5_asrhub_sat,     {{ 1, false, 4,  0 }} },
2923     { Hexagon::BI__builtin_HEXAGON_S5_vasrhrnd_goodsyntax,
2924                                                       {{ 1, false, 4,  0 }} },
2925     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p,        {{ 1, false, 6,  0 }} },
2926     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_acc,    {{ 2, false, 6,  0 }} },
2927     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_and,    {{ 2, false, 6,  0 }} },
2928     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_nac,    {{ 2, false, 6,  0 }} },
2929     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_or,     {{ 2, false, 6,  0 }} },
2930     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_xacc,   {{ 2, false, 6,  0 }} },
2931     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r,        {{ 1, false, 5,  0 }} },
2932     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_acc,    {{ 2, false, 5,  0 }} },
2933     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_and,    {{ 2, false, 5,  0 }} },
2934     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_nac,    {{ 2, false, 5,  0 }} },
2935     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_or,     {{ 2, false, 5,  0 }} },
2936     { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_xacc,   {{ 2, false, 5,  0 }} },
2937     { Hexagon::BI__builtin_HEXAGON_V6_valignbi,       {{ 2, false, 3,  0 }} },
2938     { Hexagon::BI__builtin_HEXAGON_V6_valignbi_128B,  {{ 2, false, 3,  0 }} },
2939     { Hexagon::BI__builtin_HEXAGON_V6_vlalignbi,      {{ 2, false, 3,  0 }} },
2940     { Hexagon::BI__builtin_HEXAGON_V6_vlalignbi_128B, {{ 2, false, 3,  0 }} },
2941     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi,      {{ 2, false, 1,  0 }} },
2942     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_128B, {{ 2, false, 1,  0 }} },
2943     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_acc,  {{ 3, false, 1,  0 }} },
2944     { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_acc_128B,
2945                                                       {{ 3, false, 1,  0 }} },
2946     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi,       {{ 2, false, 1,  0 }} },
2947     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_128B,  {{ 2, false, 1,  0 }} },
2948     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_acc,   {{ 3, false, 1,  0 }} },
2949     { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_acc_128B,
2950                                                       {{ 3, false, 1,  0 }} },
2951     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi,       {{ 2, false, 1,  0 }} },
2952     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_128B,  {{ 2, false, 1,  0 }} },
2953     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_acc,   {{ 3, false, 1,  0 }} },
2954     { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_acc_128B,
2955                                                       {{ 3, false, 1,  0 }} },
2956   };
2957 
2958   // Use a dynamically initialized static to sort the table exactly once on
2959   // first run.
2960   static const bool SortOnce =
2961       (llvm::sort(Infos,
2962                  [](const BuiltinInfo &LHS, const BuiltinInfo &RHS) {
2963                    return LHS.BuiltinID < RHS.BuiltinID;
2964                  }),
2965        true);
2966   (void)SortOnce;
2967 
2968   const BuiltinInfo *F = llvm::partition_point(
2969       Infos, [=](const BuiltinInfo &BI) { return BI.BuiltinID < BuiltinID; });
2970   if (F == std::end(Infos) || F->BuiltinID != BuiltinID)
2971     return false;
2972 
2973   bool Error = false;
2974 
2975   for (const ArgInfo &A : F->Infos) {
2976     // Ignore empty ArgInfo elements.
2977     if (A.BitWidth == 0)
2978       continue;
2979 
2980     int32_t Min = A.IsSigned ? -(1 << (A.BitWidth - 1)) : 0;
2981     int32_t Max = (1 << (A.IsSigned ? A.BitWidth - 1 : A.BitWidth)) - 1;
2982     if (!A.Align) {
2983       Error |= SemaBuiltinConstantArgRange(TheCall, A.OpNum, Min, Max);
2984     } else {
2985       unsigned M = 1 << A.Align;
2986       Min *= M;
2987       Max *= M;
2988       Error |= SemaBuiltinConstantArgRange(TheCall, A.OpNum, Min, Max) |
2989                SemaBuiltinConstantArgMultiple(TheCall, A.OpNum, M);
2990     }
2991   }
2992   return Error;
2993 }
2994 
2995 bool Sema::CheckHexagonBuiltinFunctionCall(unsigned BuiltinID,
2996                                            CallExpr *TheCall) {
2997   return CheckHexagonBuiltinCpu(BuiltinID, TheCall) ||
2998          CheckHexagonBuiltinArgument(BuiltinID, TheCall);
2999 }
3000 
3001 
3002 // CheckMipsBuiltinFunctionCall - Checks the constant value passed to the
3003 // intrinsic is correct. The switch statement is ordered by DSP, MSA. The
3004 // ordering for DSP is unspecified. MSA is ordered by the data format used
3005 // by the underlying instruction i.e., df/m, df/n and then by size.
3006 //
3007 // FIXME: The size tests here should instead be tablegen'd along with the
3008 //        definitions from include/clang/Basic/BuiltinsMips.def.
3009 // FIXME: GCC is strict on signedness for some of these intrinsics, we should
3010 //        be too.
3011 bool Sema::CheckMipsBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
3012   unsigned i = 0, l = 0, u = 0, m = 0;
3013   switch (BuiltinID) {
3014   default: return false;
3015   case Mips::BI__builtin_mips_wrdsp: i = 1; l = 0; u = 63; break;
3016   case Mips::BI__builtin_mips_rddsp: i = 0; l = 0; u = 63; break;
3017   case Mips::BI__builtin_mips_append: i = 2; l = 0; u = 31; break;
3018   case Mips::BI__builtin_mips_balign: i = 2; l = 0; u = 3; break;
3019   case Mips::BI__builtin_mips_precr_sra_ph_w: i = 2; l = 0; u = 31; break;
3020   case Mips::BI__builtin_mips_precr_sra_r_ph_w: i = 2; l = 0; u = 31; break;
3021   case Mips::BI__builtin_mips_prepend: i = 2; l = 0; u = 31; break;
3022   // MSA intrinsics. Instructions (which the intrinsics maps to) which use the
3023   // df/m field.
3024   // These intrinsics take an unsigned 3 bit immediate.
3025   case Mips::BI__builtin_msa_bclri_b:
3026   case Mips::BI__builtin_msa_bnegi_b:
3027   case Mips::BI__builtin_msa_bseti_b:
3028   case Mips::BI__builtin_msa_sat_s_b:
3029   case Mips::BI__builtin_msa_sat_u_b:
3030   case Mips::BI__builtin_msa_slli_b:
3031   case Mips::BI__builtin_msa_srai_b:
3032   case Mips::BI__builtin_msa_srari_b:
3033   case Mips::BI__builtin_msa_srli_b:
3034   case Mips::BI__builtin_msa_srlri_b: i = 1; l = 0; u = 7; break;
3035   case Mips::BI__builtin_msa_binsli_b:
3036   case Mips::BI__builtin_msa_binsri_b: i = 2; l = 0; u = 7; break;
3037   // These intrinsics take an unsigned 4 bit immediate.
3038   case Mips::BI__builtin_msa_bclri_h:
3039   case Mips::BI__builtin_msa_bnegi_h:
3040   case Mips::BI__builtin_msa_bseti_h:
3041   case Mips::BI__builtin_msa_sat_s_h:
3042   case Mips::BI__builtin_msa_sat_u_h:
3043   case Mips::BI__builtin_msa_slli_h:
3044   case Mips::BI__builtin_msa_srai_h:
3045   case Mips::BI__builtin_msa_srari_h:
3046   case Mips::BI__builtin_msa_srli_h:
3047   case Mips::BI__builtin_msa_srlri_h: i = 1; l = 0; u = 15; break;
3048   case Mips::BI__builtin_msa_binsli_h:
3049   case Mips::BI__builtin_msa_binsri_h: i = 2; l = 0; u = 15; break;
3050   // These intrinsics take an unsigned 5 bit immediate.
3051   // The first block of intrinsics actually have an unsigned 5 bit field,
3052   // not a df/n field.
3053   case Mips::BI__builtin_msa_cfcmsa:
3054   case Mips::BI__builtin_msa_ctcmsa: i = 0; l = 0; u = 31; break;
3055   case Mips::BI__builtin_msa_clei_u_b:
3056   case Mips::BI__builtin_msa_clei_u_h:
3057   case Mips::BI__builtin_msa_clei_u_w:
3058   case Mips::BI__builtin_msa_clei_u_d:
3059   case Mips::BI__builtin_msa_clti_u_b:
3060   case Mips::BI__builtin_msa_clti_u_h:
3061   case Mips::BI__builtin_msa_clti_u_w:
3062   case Mips::BI__builtin_msa_clti_u_d:
3063   case Mips::BI__builtin_msa_maxi_u_b:
3064   case Mips::BI__builtin_msa_maxi_u_h:
3065   case Mips::BI__builtin_msa_maxi_u_w:
3066   case Mips::BI__builtin_msa_maxi_u_d:
3067   case Mips::BI__builtin_msa_mini_u_b:
3068   case Mips::BI__builtin_msa_mini_u_h:
3069   case Mips::BI__builtin_msa_mini_u_w:
3070   case Mips::BI__builtin_msa_mini_u_d:
3071   case Mips::BI__builtin_msa_addvi_b:
3072   case Mips::BI__builtin_msa_addvi_h:
3073   case Mips::BI__builtin_msa_addvi_w:
3074   case Mips::BI__builtin_msa_addvi_d:
3075   case Mips::BI__builtin_msa_bclri_w:
3076   case Mips::BI__builtin_msa_bnegi_w:
3077   case Mips::BI__builtin_msa_bseti_w:
3078   case Mips::BI__builtin_msa_sat_s_w:
3079   case Mips::BI__builtin_msa_sat_u_w:
3080   case Mips::BI__builtin_msa_slli_w:
3081   case Mips::BI__builtin_msa_srai_w:
3082   case Mips::BI__builtin_msa_srari_w:
3083   case Mips::BI__builtin_msa_srli_w:
3084   case Mips::BI__builtin_msa_srlri_w:
3085   case Mips::BI__builtin_msa_subvi_b:
3086   case Mips::BI__builtin_msa_subvi_h:
3087   case Mips::BI__builtin_msa_subvi_w:
3088   case Mips::BI__builtin_msa_subvi_d: i = 1; l = 0; u = 31; break;
3089   case Mips::BI__builtin_msa_binsli_w:
3090   case Mips::BI__builtin_msa_binsri_w: i = 2; l = 0; u = 31; break;
3091   // These intrinsics take an unsigned 6 bit immediate.
3092   case Mips::BI__builtin_msa_bclri_d:
3093   case Mips::BI__builtin_msa_bnegi_d:
3094   case Mips::BI__builtin_msa_bseti_d:
3095   case Mips::BI__builtin_msa_sat_s_d:
3096   case Mips::BI__builtin_msa_sat_u_d:
3097   case Mips::BI__builtin_msa_slli_d:
3098   case Mips::BI__builtin_msa_srai_d:
3099   case Mips::BI__builtin_msa_srari_d:
3100   case Mips::BI__builtin_msa_srli_d:
3101   case Mips::BI__builtin_msa_srlri_d: i = 1; l = 0; u = 63; break;
3102   case Mips::BI__builtin_msa_binsli_d:
3103   case Mips::BI__builtin_msa_binsri_d: i = 2; l = 0; u = 63; break;
3104   // These intrinsics take a signed 5 bit immediate.
3105   case Mips::BI__builtin_msa_ceqi_b:
3106   case Mips::BI__builtin_msa_ceqi_h:
3107   case Mips::BI__builtin_msa_ceqi_w:
3108   case Mips::BI__builtin_msa_ceqi_d:
3109   case Mips::BI__builtin_msa_clti_s_b:
3110   case Mips::BI__builtin_msa_clti_s_h:
3111   case Mips::BI__builtin_msa_clti_s_w:
3112   case Mips::BI__builtin_msa_clti_s_d:
3113   case Mips::BI__builtin_msa_clei_s_b:
3114   case Mips::BI__builtin_msa_clei_s_h:
3115   case Mips::BI__builtin_msa_clei_s_w:
3116   case Mips::BI__builtin_msa_clei_s_d:
3117   case Mips::BI__builtin_msa_maxi_s_b:
3118   case Mips::BI__builtin_msa_maxi_s_h:
3119   case Mips::BI__builtin_msa_maxi_s_w:
3120   case Mips::BI__builtin_msa_maxi_s_d:
3121   case Mips::BI__builtin_msa_mini_s_b:
3122   case Mips::BI__builtin_msa_mini_s_h:
3123   case Mips::BI__builtin_msa_mini_s_w:
3124   case Mips::BI__builtin_msa_mini_s_d: i = 1; l = -16; u = 15; break;
3125   // These intrinsics take an unsigned 8 bit immediate.
3126   case Mips::BI__builtin_msa_andi_b:
3127   case Mips::BI__builtin_msa_nori_b:
3128   case Mips::BI__builtin_msa_ori_b:
3129   case Mips::BI__builtin_msa_shf_b:
3130   case Mips::BI__builtin_msa_shf_h:
3131   case Mips::BI__builtin_msa_shf_w:
3132   case Mips::BI__builtin_msa_xori_b: i = 1; l = 0; u = 255; break;
3133   case Mips::BI__builtin_msa_bseli_b:
3134   case Mips::BI__builtin_msa_bmnzi_b:
3135   case Mips::BI__builtin_msa_bmzi_b: i = 2; l = 0; u = 255; break;
3136   // df/n format
3137   // These intrinsics take an unsigned 4 bit immediate.
3138   case Mips::BI__builtin_msa_copy_s_b:
3139   case Mips::BI__builtin_msa_copy_u_b:
3140   case Mips::BI__builtin_msa_insve_b:
3141   case Mips::BI__builtin_msa_splati_b: i = 1; l = 0; u = 15; break;
3142   case Mips::BI__builtin_msa_sldi_b: i = 2; l = 0; u = 15; break;
3143   // These intrinsics take an unsigned 3 bit immediate.
3144   case Mips::BI__builtin_msa_copy_s_h:
3145   case Mips::BI__builtin_msa_copy_u_h:
3146   case Mips::BI__builtin_msa_insve_h:
3147   case Mips::BI__builtin_msa_splati_h: i = 1; l = 0; u = 7; break;
3148   case Mips::BI__builtin_msa_sldi_h: i = 2; l = 0; u = 7; break;
3149   // These intrinsics take an unsigned 2 bit immediate.
3150   case Mips::BI__builtin_msa_copy_s_w:
3151   case Mips::BI__builtin_msa_copy_u_w:
3152   case Mips::BI__builtin_msa_insve_w:
3153   case Mips::BI__builtin_msa_splati_w: i = 1; l = 0; u = 3; break;
3154   case Mips::BI__builtin_msa_sldi_w: i = 2; l = 0; u = 3; break;
3155   // These intrinsics take an unsigned 1 bit immediate.
3156   case Mips::BI__builtin_msa_copy_s_d:
3157   case Mips::BI__builtin_msa_copy_u_d:
3158   case Mips::BI__builtin_msa_insve_d:
3159   case Mips::BI__builtin_msa_splati_d: i = 1; l = 0; u = 1; break;
3160   case Mips::BI__builtin_msa_sldi_d: i = 2; l = 0; u = 1; break;
3161   // Memory offsets and immediate loads.
3162   // These intrinsics take a signed 10 bit immediate.
3163   case Mips::BI__builtin_msa_ldi_b: i = 0; l = -128; u = 255; break;
3164   case Mips::BI__builtin_msa_ldi_h:
3165   case Mips::BI__builtin_msa_ldi_w:
3166   case Mips::BI__builtin_msa_ldi_d: i = 0; l = -512; u = 511; break;
3167   case Mips::BI__builtin_msa_ld_b: i = 1; l = -512; u = 511; m = 1; break;
3168   case Mips::BI__builtin_msa_ld_h: i = 1; l = -1024; u = 1022; m = 2; break;
3169   case Mips::BI__builtin_msa_ld_w: i = 1; l = -2048; u = 2044; m = 4; break;
3170   case Mips::BI__builtin_msa_ld_d: i = 1; l = -4096; u = 4088; m = 8; break;
3171   case Mips::BI__builtin_msa_st_b: i = 2; l = -512; u = 511; m = 1; break;
3172   case Mips::BI__builtin_msa_st_h: i = 2; l = -1024; u = 1022; m = 2; break;
3173   case Mips::BI__builtin_msa_st_w: i = 2; l = -2048; u = 2044; m = 4; break;
3174   case Mips::BI__builtin_msa_st_d: i = 2; l = -4096; u = 4088; m = 8; break;
3175   }
3176 
3177   if (!m)
3178     return SemaBuiltinConstantArgRange(TheCall, i, l, u);
3179 
3180   return SemaBuiltinConstantArgRange(TheCall, i, l, u) ||
3181          SemaBuiltinConstantArgMultiple(TheCall, i, m);
3182 }
3183 
3184 bool Sema::CheckPPCBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
3185   unsigned i = 0, l = 0, u = 0;
3186   bool Is64BitBltin = BuiltinID == PPC::BI__builtin_divde ||
3187                       BuiltinID == PPC::BI__builtin_divdeu ||
3188                       BuiltinID == PPC::BI__builtin_bpermd;
3189   bool IsTarget64Bit = Context.getTargetInfo()
3190                               .getTypeWidth(Context
3191                                             .getTargetInfo()
3192                                             .getIntPtrType()) == 64;
3193   bool IsBltinExtDiv = BuiltinID == PPC::BI__builtin_divwe ||
3194                        BuiltinID == PPC::BI__builtin_divweu ||
3195                        BuiltinID == PPC::BI__builtin_divde ||
3196                        BuiltinID == PPC::BI__builtin_divdeu;
3197 
3198   if (Is64BitBltin && !IsTarget64Bit)
3199     return Diag(TheCall->getBeginLoc(), diag::err_64_bit_builtin_32_bit_tgt)
3200            << TheCall->getSourceRange();
3201 
3202   if ((IsBltinExtDiv && !Context.getTargetInfo().hasFeature("extdiv")) ||
3203       (BuiltinID == PPC::BI__builtin_bpermd &&
3204        !Context.getTargetInfo().hasFeature("bpermd")))
3205     return Diag(TheCall->getBeginLoc(), diag::err_ppc_builtin_only_on_pwr7)
3206            << TheCall->getSourceRange();
3207 
3208   auto SemaVSXCheck = [&](CallExpr *TheCall) -> bool {
3209     if (!Context.getTargetInfo().hasFeature("vsx"))
3210       return Diag(TheCall->getBeginLoc(), diag::err_ppc_builtin_only_on_pwr7)
3211              << TheCall->getSourceRange();
3212     return false;
3213   };
3214 
3215   switch (BuiltinID) {
3216   default: return false;
3217   case PPC::BI__builtin_altivec_crypto_vshasigmaw:
3218   case PPC::BI__builtin_altivec_crypto_vshasigmad:
3219     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) ||
3220            SemaBuiltinConstantArgRange(TheCall, 2, 0, 15);
3221   case PPC::BI__builtin_tbegin:
3222   case PPC::BI__builtin_tend: i = 0; l = 0; u = 1; break;
3223   case PPC::BI__builtin_tsr: i = 0; l = 0; u = 7; break;
3224   case PPC::BI__builtin_tabortwc:
3225   case PPC::BI__builtin_tabortdc: i = 0; l = 0; u = 31; break;
3226   case PPC::BI__builtin_tabortwci:
3227   case PPC::BI__builtin_tabortdci:
3228     return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31) ||
3229            SemaBuiltinConstantArgRange(TheCall, 2, 0, 31);
3230   case PPC::BI__builtin_vsx_xxpermdi:
3231   case PPC::BI__builtin_vsx_xxsldwi:
3232     return SemaBuiltinVSX(TheCall);
3233   case PPC::BI__builtin_unpack_vector_int128:
3234     return SemaVSXCheck(TheCall) ||
3235            SemaBuiltinConstantArgRange(TheCall, 1, 0, 1);
3236   case PPC::BI__builtin_pack_vector_int128:
3237     return SemaVSXCheck(TheCall);
3238   }
3239   return SemaBuiltinConstantArgRange(TheCall, i, l, u);
3240 }
3241 
3242 bool Sema::CheckSystemZBuiltinFunctionCall(unsigned BuiltinID,
3243                                            CallExpr *TheCall) {
3244   if (BuiltinID == SystemZ::BI__builtin_tabort) {
3245     Expr *Arg = TheCall->getArg(0);
3246     llvm::APSInt AbortCode(32);
3247     if (Arg->isIntegerConstantExpr(AbortCode, Context) &&
3248         AbortCode.getSExtValue() >= 0 && AbortCode.getSExtValue() < 256)
3249       return Diag(Arg->getBeginLoc(), diag::err_systemz_invalid_tabort_code)
3250              << Arg->getSourceRange();
3251   }
3252 
3253   // For intrinsics which take an immediate value as part of the instruction,
3254   // range check them here.
3255   unsigned i = 0, l = 0, u = 0;
3256   switch (BuiltinID) {
3257   default: return false;
3258   case SystemZ::BI__builtin_s390_lcbb: i = 1; l = 0; u = 15; break;
3259   case SystemZ::BI__builtin_s390_verimb:
3260   case SystemZ::BI__builtin_s390_verimh:
3261   case SystemZ::BI__builtin_s390_verimf:
3262   case SystemZ::BI__builtin_s390_verimg: i = 3; l = 0; u = 255; break;
3263   case SystemZ::BI__builtin_s390_vfaeb:
3264   case SystemZ::BI__builtin_s390_vfaeh:
3265   case SystemZ::BI__builtin_s390_vfaef:
3266   case SystemZ::BI__builtin_s390_vfaebs:
3267   case SystemZ::BI__builtin_s390_vfaehs:
3268   case SystemZ::BI__builtin_s390_vfaefs:
3269   case SystemZ::BI__builtin_s390_vfaezb:
3270   case SystemZ::BI__builtin_s390_vfaezh:
3271   case SystemZ::BI__builtin_s390_vfaezf:
3272   case SystemZ::BI__builtin_s390_vfaezbs:
3273   case SystemZ::BI__builtin_s390_vfaezhs:
3274   case SystemZ::BI__builtin_s390_vfaezfs: i = 2; l = 0; u = 15; break;
3275   case SystemZ::BI__builtin_s390_vfisb:
3276   case SystemZ::BI__builtin_s390_vfidb:
3277     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15) ||
3278            SemaBuiltinConstantArgRange(TheCall, 2, 0, 15);
3279   case SystemZ::BI__builtin_s390_vftcisb:
3280   case SystemZ::BI__builtin_s390_vftcidb: i = 1; l = 0; u = 4095; break;
3281   case SystemZ::BI__builtin_s390_vlbb: i = 1; l = 0; u = 15; break;
3282   case SystemZ::BI__builtin_s390_vpdi: i = 2; l = 0; u = 15; break;
3283   case SystemZ::BI__builtin_s390_vsldb: i = 2; l = 0; u = 15; break;
3284   case SystemZ::BI__builtin_s390_vstrcb:
3285   case SystemZ::BI__builtin_s390_vstrch:
3286   case SystemZ::BI__builtin_s390_vstrcf:
3287   case SystemZ::BI__builtin_s390_vstrczb:
3288   case SystemZ::BI__builtin_s390_vstrczh:
3289   case SystemZ::BI__builtin_s390_vstrczf:
3290   case SystemZ::BI__builtin_s390_vstrcbs:
3291   case SystemZ::BI__builtin_s390_vstrchs:
3292   case SystemZ::BI__builtin_s390_vstrcfs:
3293   case SystemZ::BI__builtin_s390_vstrczbs:
3294   case SystemZ::BI__builtin_s390_vstrczhs:
3295   case SystemZ::BI__builtin_s390_vstrczfs: i = 3; l = 0; u = 15; break;
3296   case SystemZ::BI__builtin_s390_vmslg: i = 3; l = 0; u = 15; break;
3297   case SystemZ::BI__builtin_s390_vfminsb:
3298   case SystemZ::BI__builtin_s390_vfmaxsb:
3299   case SystemZ::BI__builtin_s390_vfmindb:
3300   case SystemZ::BI__builtin_s390_vfmaxdb: i = 2; l = 0; u = 15; break;
3301   case SystemZ::BI__builtin_s390_vsld: i = 2; l = 0; u = 7; break;
3302   case SystemZ::BI__builtin_s390_vsrd: i = 2; l = 0; u = 7; break;
3303   }
3304   return SemaBuiltinConstantArgRange(TheCall, i, l, u);
3305 }
3306 
3307 /// SemaBuiltinCpuSupports - Handle __builtin_cpu_supports(char *).
3308 /// This checks that the target supports __builtin_cpu_supports and
3309 /// that the string argument is constant and valid.
3310 static bool SemaBuiltinCpuSupports(Sema &S, CallExpr *TheCall) {
3311   Expr *Arg = TheCall->getArg(0);
3312 
3313   // Check if the argument is a string literal.
3314   if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts()))
3315     return S.Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
3316            << Arg->getSourceRange();
3317 
3318   // Check the contents of the string.
3319   StringRef Feature =
3320       cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString();
3321   if (!S.Context.getTargetInfo().validateCpuSupports(Feature))
3322     return S.Diag(TheCall->getBeginLoc(), diag::err_invalid_cpu_supports)
3323            << Arg->getSourceRange();
3324   return false;
3325 }
3326 
3327 /// SemaBuiltinCpuIs - Handle __builtin_cpu_is(char *).
3328 /// This checks that the target supports __builtin_cpu_is and
3329 /// that the string argument is constant and valid.
3330 static bool SemaBuiltinCpuIs(Sema &S, CallExpr *TheCall) {
3331   Expr *Arg = TheCall->getArg(0);
3332 
3333   // Check if the argument is a string literal.
3334   if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts()))
3335     return S.Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
3336            << Arg->getSourceRange();
3337 
3338   // Check the contents of the string.
3339   StringRef Feature =
3340       cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString();
3341   if (!S.Context.getTargetInfo().validateCpuIs(Feature))
3342     return S.Diag(TheCall->getBeginLoc(), diag::err_invalid_cpu_is)
3343            << Arg->getSourceRange();
3344   return false;
3345 }
3346 
3347 // Check if the rounding mode is legal.
3348 bool Sema::CheckX86BuiltinRoundingOrSAE(unsigned BuiltinID, CallExpr *TheCall) {
3349   // Indicates if this instruction has rounding control or just SAE.
3350   bool HasRC = false;
3351 
3352   unsigned ArgNum = 0;
3353   switch (BuiltinID) {
3354   default:
3355     return false;
3356   case X86::BI__builtin_ia32_vcvttsd2si32:
3357   case X86::BI__builtin_ia32_vcvttsd2si64:
3358   case X86::BI__builtin_ia32_vcvttsd2usi32:
3359   case X86::BI__builtin_ia32_vcvttsd2usi64:
3360   case X86::BI__builtin_ia32_vcvttss2si32:
3361   case X86::BI__builtin_ia32_vcvttss2si64:
3362   case X86::BI__builtin_ia32_vcvttss2usi32:
3363   case X86::BI__builtin_ia32_vcvttss2usi64:
3364     ArgNum = 1;
3365     break;
3366   case X86::BI__builtin_ia32_maxpd512:
3367   case X86::BI__builtin_ia32_maxps512:
3368   case X86::BI__builtin_ia32_minpd512:
3369   case X86::BI__builtin_ia32_minps512:
3370     ArgNum = 2;
3371     break;
3372   case X86::BI__builtin_ia32_cvtps2pd512_mask:
3373   case X86::BI__builtin_ia32_cvttpd2dq512_mask:
3374   case X86::BI__builtin_ia32_cvttpd2qq512_mask:
3375   case X86::BI__builtin_ia32_cvttpd2udq512_mask:
3376   case X86::BI__builtin_ia32_cvttpd2uqq512_mask:
3377   case X86::BI__builtin_ia32_cvttps2dq512_mask:
3378   case X86::BI__builtin_ia32_cvttps2qq512_mask:
3379   case X86::BI__builtin_ia32_cvttps2udq512_mask:
3380   case X86::BI__builtin_ia32_cvttps2uqq512_mask:
3381   case X86::BI__builtin_ia32_exp2pd_mask:
3382   case X86::BI__builtin_ia32_exp2ps_mask:
3383   case X86::BI__builtin_ia32_getexppd512_mask:
3384   case X86::BI__builtin_ia32_getexpps512_mask:
3385   case X86::BI__builtin_ia32_rcp28pd_mask:
3386   case X86::BI__builtin_ia32_rcp28ps_mask:
3387   case X86::BI__builtin_ia32_rsqrt28pd_mask:
3388   case X86::BI__builtin_ia32_rsqrt28ps_mask:
3389   case X86::BI__builtin_ia32_vcomisd:
3390   case X86::BI__builtin_ia32_vcomiss:
3391   case X86::BI__builtin_ia32_vcvtph2ps512_mask:
3392     ArgNum = 3;
3393     break;
3394   case X86::BI__builtin_ia32_cmppd512_mask:
3395   case X86::BI__builtin_ia32_cmpps512_mask:
3396   case X86::BI__builtin_ia32_cmpsd_mask:
3397   case X86::BI__builtin_ia32_cmpss_mask:
3398   case X86::BI__builtin_ia32_cvtss2sd_round_mask:
3399   case X86::BI__builtin_ia32_getexpsd128_round_mask:
3400   case X86::BI__builtin_ia32_getexpss128_round_mask:
3401   case X86::BI__builtin_ia32_getmantpd512_mask:
3402   case X86::BI__builtin_ia32_getmantps512_mask:
3403   case X86::BI__builtin_ia32_maxsd_round_mask:
3404   case X86::BI__builtin_ia32_maxss_round_mask:
3405   case X86::BI__builtin_ia32_minsd_round_mask:
3406   case X86::BI__builtin_ia32_minss_round_mask:
3407   case X86::BI__builtin_ia32_rcp28sd_round_mask:
3408   case X86::BI__builtin_ia32_rcp28ss_round_mask:
3409   case X86::BI__builtin_ia32_reducepd512_mask:
3410   case X86::BI__builtin_ia32_reduceps512_mask:
3411   case X86::BI__builtin_ia32_rndscalepd_mask:
3412   case X86::BI__builtin_ia32_rndscaleps_mask:
3413   case X86::BI__builtin_ia32_rsqrt28sd_round_mask:
3414   case X86::BI__builtin_ia32_rsqrt28ss_round_mask:
3415     ArgNum = 4;
3416     break;
3417   case X86::BI__builtin_ia32_fixupimmpd512_mask:
3418   case X86::BI__builtin_ia32_fixupimmpd512_maskz:
3419   case X86::BI__builtin_ia32_fixupimmps512_mask:
3420   case X86::BI__builtin_ia32_fixupimmps512_maskz:
3421   case X86::BI__builtin_ia32_fixupimmsd_mask:
3422   case X86::BI__builtin_ia32_fixupimmsd_maskz:
3423   case X86::BI__builtin_ia32_fixupimmss_mask:
3424   case X86::BI__builtin_ia32_fixupimmss_maskz:
3425   case X86::BI__builtin_ia32_getmantsd_round_mask:
3426   case X86::BI__builtin_ia32_getmantss_round_mask:
3427   case X86::BI__builtin_ia32_rangepd512_mask:
3428   case X86::BI__builtin_ia32_rangeps512_mask:
3429   case X86::BI__builtin_ia32_rangesd128_round_mask:
3430   case X86::BI__builtin_ia32_rangess128_round_mask:
3431   case X86::BI__builtin_ia32_reducesd_mask:
3432   case X86::BI__builtin_ia32_reducess_mask:
3433   case X86::BI__builtin_ia32_rndscalesd_round_mask:
3434   case X86::BI__builtin_ia32_rndscaless_round_mask:
3435     ArgNum = 5;
3436     break;
3437   case X86::BI__builtin_ia32_vcvtsd2si64:
3438   case X86::BI__builtin_ia32_vcvtsd2si32:
3439   case X86::BI__builtin_ia32_vcvtsd2usi32:
3440   case X86::BI__builtin_ia32_vcvtsd2usi64:
3441   case X86::BI__builtin_ia32_vcvtss2si32:
3442   case X86::BI__builtin_ia32_vcvtss2si64:
3443   case X86::BI__builtin_ia32_vcvtss2usi32:
3444   case X86::BI__builtin_ia32_vcvtss2usi64:
3445   case X86::BI__builtin_ia32_sqrtpd512:
3446   case X86::BI__builtin_ia32_sqrtps512:
3447     ArgNum = 1;
3448     HasRC = true;
3449     break;
3450   case X86::BI__builtin_ia32_addpd512:
3451   case X86::BI__builtin_ia32_addps512:
3452   case X86::BI__builtin_ia32_divpd512:
3453   case X86::BI__builtin_ia32_divps512:
3454   case X86::BI__builtin_ia32_mulpd512:
3455   case X86::BI__builtin_ia32_mulps512:
3456   case X86::BI__builtin_ia32_subpd512:
3457   case X86::BI__builtin_ia32_subps512:
3458   case X86::BI__builtin_ia32_cvtsi2sd64:
3459   case X86::BI__builtin_ia32_cvtsi2ss32:
3460   case X86::BI__builtin_ia32_cvtsi2ss64:
3461   case X86::BI__builtin_ia32_cvtusi2sd64:
3462   case X86::BI__builtin_ia32_cvtusi2ss32:
3463   case X86::BI__builtin_ia32_cvtusi2ss64:
3464     ArgNum = 2;
3465     HasRC = true;
3466     break;
3467   case X86::BI__builtin_ia32_cvtdq2ps512_mask:
3468   case X86::BI__builtin_ia32_cvtudq2ps512_mask:
3469   case X86::BI__builtin_ia32_cvtpd2ps512_mask:
3470   case X86::BI__builtin_ia32_cvtpd2dq512_mask:
3471   case X86::BI__builtin_ia32_cvtpd2qq512_mask:
3472   case X86::BI__builtin_ia32_cvtpd2udq512_mask:
3473   case X86::BI__builtin_ia32_cvtpd2uqq512_mask:
3474   case X86::BI__builtin_ia32_cvtps2dq512_mask:
3475   case X86::BI__builtin_ia32_cvtps2qq512_mask:
3476   case X86::BI__builtin_ia32_cvtps2udq512_mask:
3477   case X86::BI__builtin_ia32_cvtps2uqq512_mask:
3478   case X86::BI__builtin_ia32_cvtqq2pd512_mask:
3479   case X86::BI__builtin_ia32_cvtqq2ps512_mask:
3480   case X86::BI__builtin_ia32_cvtuqq2pd512_mask:
3481   case X86::BI__builtin_ia32_cvtuqq2ps512_mask:
3482     ArgNum = 3;
3483     HasRC = true;
3484     break;
3485   case X86::BI__builtin_ia32_addss_round_mask:
3486   case X86::BI__builtin_ia32_addsd_round_mask:
3487   case X86::BI__builtin_ia32_divss_round_mask:
3488   case X86::BI__builtin_ia32_divsd_round_mask:
3489   case X86::BI__builtin_ia32_mulss_round_mask:
3490   case X86::BI__builtin_ia32_mulsd_round_mask:
3491   case X86::BI__builtin_ia32_subss_round_mask:
3492   case X86::BI__builtin_ia32_subsd_round_mask:
3493   case X86::BI__builtin_ia32_scalefpd512_mask:
3494   case X86::BI__builtin_ia32_scalefps512_mask:
3495   case X86::BI__builtin_ia32_scalefsd_round_mask:
3496   case X86::BI__builtin_ia32_scalefss_round_mask:
3497   case X86::BI__builtin_ia32_cvtsd2ss_round_mask:
3498   case X86::BI__builtin_ia32_sqrtsd_round_mask:
3499   case X86::BI__builtin_ia32_sqrtss_round_mask:
3500   case X86::BI__builtin_ia32_vfmaddsd3_mask:
3501   case X86::BI__builtin_ia32_vfmaddsd3_maskz:
3502   case X86::BI__builtin_ia32_vfmaddsd3_mask3:
3503   case X86::BI__builtin_ia32_vfmaddss3_mask:
3504   case X86::BI__builtin_ia32_vfmaddss3_maskz:
3505   case X86::BI__builtin_ia32_vfmaddss3_mask3:
3506   case X86::BI__builtin_ia32_vfmaddpd512_mask:
3507   case X86::BI__builtin_ia32_vfmaddpd512_maskz:
3508   case X86::BI__builtin_ia32_vfmaddpd512_mask3:
3509   case X86::BI__builtin_ia32_vfmsubpd512_mask3:
3510   case X86::BI__builtin_ia32_vfmaddps512_mask:
3511   case X86::BI__builtin_ia32_vfmaddps512_maskz:
3512   case X86::BI__builtin_ia32_vfmaddps512_mask3:
3513   case X86::BI__builtin_ia32_vfmsubps512_mask3:
3514   case X86::BI__builtin_ia32_vfmaddsubpd512_mask:
3515   case X86::BI__builtin_ia32_vfmaddsubpd512_maskz:
3516   case X86::BI__builtin_ia32_vfmaddsubpd512_mask3:
3517   case X86::BI__builtin_ia32_vfmsubaddpd512_mask3:
3518   case X86::BI__builtin_ia32_vfmaddsubps512_mask:
3519   case X86::BI__builtin_ia32_vfmaddsubps512_maskz:
3520   case X86::BI__builtin_ia32_vfmaddsubps512_mask3:
3521   case X86::BI__builtin_ia32_vfmsubaddps512_mask3:
3522     ArgNum = 4;
3523     HasRC = true;
3524     break;
3525   }
3526 
3527   llvm::APSInt Result;
3528 
3529   // We can't check the value of a dependent argument.
3530   Expr *Arg = TheCall->getArg(ArgNum);
3531   if (Arg->isTypeDependent() || Arg->isValueDependent())
3532     return false;
3533 
3534   // Check constant-ness first.
3535   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
3536     return true;
3537 
3538   // Make sure rounding mode is either ROUND_CUR_DIRECTION or ROUND_NO_EXC bit
3539   // is set. If the intrinsic has rounding control(bits 1:0), make sure its only
3540   // combined with ROUND_NO_EXC.
3541   if (Result == 4/*ROUND_CUR_DIRECTION*/ ||
3542       Result == 8/*ROUND_NO_EXC*/ ||
3543       (HasRC && Result.getZExtValue() >= 8 && Result.getZExtValue() <= 11))
3544     return false;
3545 
3546   return Diag(TheCall->getBeginLoc(), diag::err_x86_builtin_invalid_rounding)
3547          << Arg->getSourceRange();
3548 }
3549 
3550 // Check if the gather/scatter scale is legal.
3551 bool Sema::CheckX86BuiltinGatherScatterScale(unsigned BuiltinID,
3552                                              CallExpr *TheCall) {
3553   unsigned ArgNum = 0;
3554   switch (BuiltinID) {
3555   default:
3556     return false;
3557   case X86::BI__builtin_ia32_gatherpfdpd:
3558   case X86::BI__builtin_ia32_gatherpfdps:
3559   case X86::BI__builtin_ia32_gatherpfqpd:
3560   case X86::BI__builtin_ia32_gatherpfqps:
3561   case X86::BI__builtin_ia32_scatterpfdpd:
3562   case X86::BI__builtin_ia32_scatterpfdps:
3563   case X86::BI__builtin_ia32_scatterpfqpd:
3564   case X86::BI__builtin_ia32_scatterpfqps:
3565     ArgNum = 3;
3566     break;
3567   case X86::BI__builtin_ia32_gatherd_pd:
3568   case X86::BI__builtin_ia32_gatherd_pd256:
3569   case X86::BI__builtin_ia32_gatherq_pd:
3570   case X86::BI__builtin_ia32_gatherq_pd256:
3571   case X86::BI__builtin_ia32_gatherd_ps:
3572   case X86::BI__builtin_ia32_gatherd_ps256:
3573   case X86::BI__builtin_ia32_gatherq_ps:
3574   case X86::BI__builtin_ia32_gatherq_ps256:
3575   case X86::BI__builtin_ia32_gatherd_q:
3576   case X86::BI__builtin_ia32_gatherd_q256:
3577   case X86::BI__builtin_ia32_gatherq_q:
3578   case X86::BI__builtin_ia32_gatherq_q256:
3579   case X86::BI__builtin_ia32_gatherd_d:
3580   case X86::BI__builtin_ia32_gatherd_d256:
3581   case X86::BI__builtin_ia32_gatherq_d:
3582   case X86::BI__builtin_ia32_gatherq_d256:
3583   case X86::BI__builtin_ia32_gather3div2df:
3584   case X86::BI__builtin_ia32_gather3div2di:
3585   case X86::BI__builtin_ia32_gather3div4df:
3586   case X86::BI__builtin_ia32_gather3div4di:
3587   case X86::BI__builtin_ia32_gather3div4sf:
3588   case X86::BI__builtin_ia32_gather3div4si:
3589   case X86::BI__builtin_ia32_gather3div8sf:
3590   case X86::BI__builtin_ia32_gather3div8si:
3591   case X86::BI__builtin_ia32_gather3siv2df:
3592   case X86::BI__builtin_ia32_gather3siv2di:
3593   case X86::BI__builtin_ia32_gather3siv4df:
3594   case X86::BI__builtin_ia32_gather3siv4di:
3595   case X86::BI__builtin_ia32_gather3siv4sf:
3596   case X86::BI__builtin_ia32_gather3siv4si:
3597   case X86::BI__builtin_ia32_gather3siv8sf:
3598   case X86::BI__builtin_ia32_gather3siv8si:
3599   case X86::BI__builtin_ia32_gathersiv8df:
3600   case X86::BI__builtin_ia32_gathersiv16sf:
3601   case X86::BI__builtin_ia32_gatherdiv8df:
3602   case X86::BI__builtin_ia32_gatherdiv16sf:
3603   case X86::BI__builtin_ia32_gathersiv8di:
3604   case X86::BI__builtin_ia32_gathersiv16si:
3605   case X86::BI__builtin_ia32_gatherdiv8di:
3606   case X86::BI__builtin_ia32_gatherdiv16si:
3607   case X86::BI__builtin_ia32_scatterdiv2df:
3608   case X86::BI__builtin_ia32_scatterdiv2di:
3609   case X86::BI__builtin_ia32_scatterdiv4df:
3610   case X86::BI__builtin_ia32_scatterdiv4di:
3611   case X86::BI__builtin_ia32_scatterdiv4sf:
3612   case X86::BI__builtin_ia32_scatterdiv4si:
3613   case X86::BI__builtin_ia32_scatterdiv8sf:
3614   case X86::BI__builtin_ia32_scatterdiv8si:
3615   case X86::BI__builtin_ia32_scattersiv2df:
3616   case X86::BI__builtin_ia32_scattersiv2di:
3617   case X86::BI__builtin_ia32_scattersiv4df:
3618   case X86::BI__builtin_ia32_scattersiv4di:
3619   case X86::BI__builtin_ia32_scattersiv4sf:
3620   case X86::BI__builtin_ia32_scattersiv4si:
3621   case X86::BI__builtin_ia32_scattersiv8sf:
3622   case X86::BI__builtin_ia32_scattersiv8si:
3623   case X86::BI__builtin_ia32_scattersiv8df:
3624   case X86::BI__builtin_ia32_scattersiv16sf:
3625   case X86::BI__builtin_ia32_scatterdiv8df:
3626   case X86::BI__builtin_ia32_scatterdiv16sf:
3627   case X86::BI__builtin_ia32_scattersiv8di:
3628   case X86::BI__builtin_ia32_scattersiv16si:
3629   case X86::BI__builtin_ia32_scatterdiv8di:
3630   case X86::BI__builtin_ia32_scatterdiv16si:
3631     ArgNum = 4;
3632     break;
3633   }
3634 
3635   llvm::APSInt Result;
3636 
3637   // We can't check the value of a dependent argument.
3638   Expr *Arg = TheCall->getArg(ArgNum);
3639   if (Arg->isTypeDependent() || Arg->isValueDependent())
3640     return false;
3641 
3642   // Check constant-ness first.
3643   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
3644     return true;
3645 
3646   if (Result == 1 || Result == 2 || Result == 4 || Result == 8)
3647     return false;
3648 
3649   return Diag(TheCall->getBeginLoc(), diag::err_x86_builtin_invalid_scale)
3650          << Arg->getSourceRange();
3651 }
3652 
3653 static bool isX86_32Builtin(unsigned BuiltinID) {
3654   // These builtins only work on x86-32 targets.
3655   switch (BuiltinID) {
3656   case X86::BI__builtin_ia32_readeflags_u32:
3657   case X86::BI__builtin_ia32_writeeflags_u32:
3658     return true;
3659   }
3660 
3661   return false;
3662 }
3663 
3664 bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
3665   if (BuiltinID == X86::BI__builtin_cpu_supports)
3666     return SemaBuiltinCpuSupports(*this, TheCall);
3667 
3668   if (BuiltinID == X86::BI__builtin_cpu_is)
3669     return SemaBuiltinCpuIs(*this, TheCall);
3670 
3671   // Check for 32-bit only builtins on a 64-bit target.
3672   const llvm::Triple &TT = Context.getTargetInfo().getTriple();
3673   if (TT.getArch() != llvm::Triple::x86 && isX86_32Builtin(BuiltinID))
3674     return Diag(TheCall->getCallee()->getBeginLoc(),
3675                 diag::err_32_bit_builtin_64_bit_tgt);
3676 
3677   // If the intrinsic has rounding or SAE make sure its valid.
3678   if (CheckX86BuiltinRoundingOrSAE(BuiltinID, TheCall))
3679     return true;
3680 
3681   // If the intrinsic has a gather/scatter scale immediate make sure its valid.
3682   if (CheckX86BuiltinGatherScatterScale(BuiltinID, TheCall))
3683     return true;
3684 
3685   // For intrinsics which take an immediate value as part of the instruction,
3686   // range check them here.
3687   int i = 0, l = 0, u = 0;
3688   switch (BuiltinID) {
3689   default:
3690     return false;
3691   case X86::BI__builtin_ia32_vec_ext_v2si:
3692   case X86::BI__builtin_ia32_vec_ext_v2di:
3693   case X86::BI__builtin_ia32_vextractf128_pd256:
3694   case X86::BI__builtin_ia32_vextractf128_ps256:
3695   case X86::BI__builtin_ia32_vextractf128_si256:
3696   case X86::BI__builtin_ia32_extract128i256:
3697   case X86::BI__builtin_ia32_extractf64x4_mask:
3698   case X86::BI__builtin_ia32_extracti64x4_mask:
3699   case X86::BI__builtin_ia32_extractf32x8_mask:
3700   case X86::BI__builtin_ia32_extracti32x8_mask:
3701   case X86::BI__builtin_ia32_extractf64x2_256_mask:
3702   case X86::BI__builtin_ia32_extracti64x2_256_mask:
3703   case X86::BI__builtin_ia32_extractf32x4_256_mask:
3704   case X86::BI__builtin_ia32_extracti32x4_256_mask:
3705     i = 1; l = 0; u = 1;
3706     break;
3707   case X86::BI__builtin_ia32_vec_set_v2di:
3708   case X86::BI__builtin_ia32_vinsertf128_pd256:
3709   case X86::BI__builtin_ia32_vinsertf128_ps256:
3710   case X86::BI__builtin_ia32_vinsertf128_si256:
3711   case X86::BI__builtin_ia32_insert128i256:
3712   case X86::BI__builtin_ia32_insertf32x8:
3713   case X86::BI__builtin_ia32_inserti32x8:
3714   case X86::BI__builtin_ia32_insertf64x4:
3715   case X86::BI__builtin_ia32_inserti64x4:
3716   case X86::BI__builtin_ia32_insertf64x2_256:
3717   case X86::BI__builtin_ia32_inserti64x2_256:
3718   case X86::BI__builtin_ia32_insertf32x4_256:
3719   case X86::BI__builtin_ia32_inserti32x4_256:
3720     i = 2; l = 0; u = 1;
3721     break;
3722   case X86::BI__builtin_ia32_vpermilpd:
3723   case X86::BI__builtin_ia32_vec_ext_v4hi:
3724   case X86::BI__builtin_ia32_vec_ext_v4si:
3725   case X86::BI__builtin_ia32_vec_ext_v4sf:
3726   case X86::BI__builtin_ia32_vec_ext_v4di:
3727   case X86::BI__builtin_ia32_extractf32x4_mask:
3728   case X86::BI__builtin_ia32_extracti32x4_mask:
3729   case X86::BI__builtin_ia32_extractf64x2_512_mask:
3730   case X86::BI__builtin_ia32_extracti64x2_512_mask:
3731     i = 1; l = 0; u = 3;
3732     break;
3733   case X86::BI_mm_prefetch:
3734   case X86::BI__builtin_ia32_vec_ext_v8hi:
3735   case X86::BI__builtin_ia32_vec_ext_v8si:
3736     i = 1; l = 0; u = 7;
3737     break;
3738   case X86::BI__builtin_ia32_sha1rnds4:
3739   case X86::BI__builtin_ia32_blendpd:
3740   case X86::BI__builtin_ia32_shufpd:
3741   case X86::BI__builtin_ia32_vec_set_v4hi:
3742   case X86::BI__builtin_ia32_vec_set_v4si:
3743   case X86::BI__builtin_ia32_vec_set_v4di:
3744   case X86::BI__builtin_ia32_shuf_f32x4_256:
3745   case X86::BI__builtin_ia32_shuf_f64x2_256:
3746   case X86::BI__builtin_ia32_shuf_i32x4_256:
3747   case X86::BI__builtin_ia32_shuf_i64x2_256:
3748   case X86::BI__builtin_ia32_insertf64x2_512:
3749   case X86::BI__builtin_ia32_inserti64x2_512:
3750   case X86::BI__builtin_ia32_insertf32x4:
3751   case X86::BI__builtin_ia32_inserti32x4:
3752     i = 2; l = 0; u = 3;
3753     break;
3754   case X86::BI__builtin_ia32_vpermil2pd:
3755   case X86::BI__builtin_ia32_vpermil2pd256:
3756   case X86::BI__builtin_ia32_vpermil2ps:
3757   case X86::BI__builtin_ia32_vpermil2ps256:
3758     i = 3; l = 0; u = 3;
3759     break;
3760   case X86::BI__builtin_ia32_cmpb128_mask:
3761   case X86::BI__builtin_ia32_cmpw128_mask:
3762   case X86::BI__builtin_ia32_cmpd128_mask:
3763   case X86::BI__builtin_ia32_cmpq128_mask:
3764   case X86::BI__builtin_ia32_cmpb256_mask:
3765   case X86::BI__builtin_ia32_cmpw256_mask:
3766   case X86::BI__builtin_ia32_cmpd256_mask:
3767   case X86::BI__builtin_ia32_cmpq256_mask:
3768   case X86::BI__builtin_ia32_cmpb512_mask:
3769   case X86::BI__builtin_ia32_cmpw512_mask:
3770   case X86::BI__builtin_ia32_cmpd512_mask:
3771   case X86::BI__builtin_ia32_cmpq512_mask:
3772   case X86::BI__builtin_ia32_ucmpb128_mask:
3773   case X86::BI__builtin_ia32_ucmpw128_mask:
3774   case X86::BI__builtin_ia32_ucmpd128_mask:
3775   case X86::BI__builtin_ia32_ucmpq128_mask:
3776   case X86::BI__builtin_ia32_ucmpb256_mask:
3777   case X86::BI__builtin_ia32_ucmpw256_mask:
3778   case X86::BI__builtin_ia32_ucmpd256_mask:
3779   case X86::BI__builtin_ia32_ucmpq256_mask:
3780   case X86::BI__builtin_ia32_ucmpb512_mask:
3781   case X86::BI__builtin_ia32_ucmpw512_mask:
3782   case X86::BI__builtin_ia32_ucmpd512_mask:
3783   case X86::BI__builtin_ia32_ucmpq512_mask:
3784   case X86::BI__builtin_ia32_vpcomub:
3785   case X86::BI__builtin_ia32_vpcomuw:
3786   case X86::BI__builtin_ia32_vpcomud:
3787   case X86::BI__builtin_ia32_vpcomuq:
3788   case X86::BI__builtin_ia32_vpcomb:
3789   case X86::BI__builtin_ia32_vpcomw:
3790   case X86::BI__builtin_ia32_vpcomd:
3791   case X86::BI__builtin_ia32_vpcomq:
3792   case X86::BI__builtin_ia32_vec_set_v8hi:
3793   case X86::BI__builtin_ia32_vec_set_v8si:
3794     i = 2; l = 0; u = 7;
3795     break;
3796   case X86::BI__builtin_ia32_vpermilpd256:
3797   case X86::BI__builtin_ia32_roundps:
3798   case X86::BI__builtin_ia32_roundpd:
3799   case X86::BI__builtin_ia32_roundps256:
3800   case X86::BI__builtin_ia32_roundpd256:
3801   case X86::BI__builtin_ia32_getmantpd128_mask:
3802   case X86::BI__builtin_ia32_getmantpd256_mask:
3803   case X86::BI__builtin_ia32_getmantps128_mask:
3804   case X86::BI__builtin_ia32_getmantps256_mask:
3805   case X86::BI__builtin_ia32_getmantpd512_mask:
3806   case X86::BI__builtin_ia32_getmantps512_mask:
3807   case X86::BI__builtin_ia32_vec_ext_v16qi:
3808   case X86::BI__builtin_ia32_vec_ext_v16hi:
3809     i = 1; l = 0; u = 15;
3810     break;
3811   case X86::BI__builtin_ia32_pblendd128:
3812   case X86::BI__builtin_ia32_blendps:
3813   case X86::BI__builtin_ia32_blendpd256:
3814   case X86::BI__builtin_ia32_shufpd256:
3815   case X86::BI__builtin_ia32_roundss:
3816   case X86::BI__builtin_ia32_roundsd:
3817   case X86::BI__builtin_ia32_rangepd128_mask:
3818   case X86::BI__builtin_ia32_rangepd256_mask:
3819   case X86::BI__builtin_ia32_rangepd512_mask:
3820   case X86::BI__builtin_ia32_rangeps128_mask:
3821   case X86::BI__builtin_ia32_rangeps256_mask:
3822   case X86::BI__builtin_ia32_rangeps512_mask:
3823   case X86::BI__builtin_ia32_getmantsd_round_mask:
3824   case X86::BI__builtin_ia32_getmantss_round_mask:
3825   case X86::BI__builtin_ia32_vec_set_v16qi:
3826   case X86::BI__builtin_ia32_vec_set_v16hi:
3827     i = 2; l = 0; u = 15;
3828     break;
3829   case X86::BI__builtin_ia32_vec_ext_v32qi:
3830     i = 1; l = 0; u = 31;
3831     break;
3832   case X86::BI__builtin_ia32_cmpps:
3833   case X86::BI__builtin_ia32_cmpss:
3834   case X86::BI__builtin_ia32_cmppd:
3835   case X86::BI__builtin_ia32_cmpsd:
3836   case X86::BI__builtin_ia32_cmpps256:
3837   case X86::BI__builtin_ia32_cmppd256:
3838   case X86::BI__builtin_ia32_cmpps128_mask:
3839   case X86::BI__builtin_ia32_cmppd128_mask:
3840   case X86::BI__builtin_ia32_cmpps256_mask:
3841   case X86::BI__builtin_ia32_cmppd256_mask:
3842   case X86::BI__builtin_ia32_cmpps512_mask:
3843   case X86::BI__builtin_ia32_cmppd512_mask:
3844   case X86::BI__builtin_ia32_cmpsd_mask:
3845   case X86::BI__builtin_ia32_cmpss_mask:
3846   case X86::BI__builtin_ia32_vec_set_v32qi:
3847     i = 2; l = 0; u = 31;
3848     break;
3849   case X86::BI__builtin_ia32_permdf256:
3850   case X86::BI__builtin_ia32_permdi256:
3851   case X86::BI__builtin_ia32_permdf512:
3852   case X86::BI__builtin_ia32_permdi512:
3853   case X86::BI__builtin_ia32_vpermilps:
3854   case X86::BI__builtin_ia32_vpermilps256:
3855   case X86::BI__builtin_ia32_vpermilpd512:
3856   case X86::BI__builtin_ia32_vpermilps512:
3857   case X86::BI__builtin_ia32_pshufd:
3858   case X86::BI__builtin_ia32_pshufd256:
3859   case X86::BI__builtin_ia32_pshufd512:
3860   case X86::BI__builtin_ia32_pshufhw:
3861   case X86::BI__builtin_ia32_pshufhw256:
3862   case X86::BI__builtin_ia32_pshufhw512:
3863   case X86::BI__builtin_ia32_pshuflw:
3864   case X86::BI__builtin_ia32_pshuflw256:
3865   case X86::BI__builtin_ia32_pshuflw512:
3866   case X86::BI__builtin_ia32_vcvtps2ph:
3867   case X86::BI__builtin_ia32_vcvtps2ph_mask:
3868   case X86::BI__builtin_ia32_vcvtps2ph256:
3869   case X86::BI__builtin_ia32_vcvtps2ph256_mask:
3870   case X86::BI__builtin_ia32_vcvtps2ph512_mask:
3871   case X86::BI__builtin_ia32_rndscaleps_128_mask:
3872   case X86::BI__builtin_ia32_rndscalepd_128_mask:
3873   case X86::BI__builtin_ia32_rndscaleps_256_mask:
3874   case X86::BI__builtin_ia32_rndscalepd_256_mask:
3875   case X86::BI__builtin_ia32_rndscaleps_mask:
3876   case X86::BI__builtin_ia32_rndscalepd_mask:
3877   case X86::BI__builtin_ia32_reducepd128_mask:
3878   case X86::BI__builtin_ia32_reducepd256_mask:
3879   case X86::BI__builtin_ia32_reducepd512_mask:
3880   case X86::BI__builtin_ia32_reduceps128_mask:
3881   case X86::BI__builtin_ia32_reduceps256_mask:
3882   case X86::BI__builtin_ia32_reduceps512_mask:
3883   case X86::BI__builtin_ia32_prold512:
3884   case X86::BI__builtin_ia32_prolq512:
3885   case X86::BI__builtin_ia32_prold128:
3886   case X86::BI__builtin_ia32_prold256:
3887   case X86::BI__builtin_ia32_prolq128:
3888   case X86::BI__builtin_ia32_prolq256:
3889   case X86::BI__builtin_ia32_prord512:
3890   case X86::BI__builtin_ia32_prorq512:
3891   case X86::BI__builtin_ia32_prord128:
3892   case X86::BI__builtin_ia32_prord256:
3893   case X86::BI__builtin_ia32_prorq128:
3894   case X86::BI__builtin_ia32_prorq256:
3895   case X86::BI__builtin_ia32_fpclasspd128_mask:
3896   case X86::BI__builtin_ia32_fpclasspd256_mask:
3897   case X86::BI__builtin_ia32_fpclassps128_mask:
3898   case X86::BI__builtin_ia32_fpclassps256_mask:
3899   case X86::BI__builtin_ia32_fpclassps512_mask:
3900   case X86::BI__builtin_ia32_fpclasspd512_mask:
3901   case X86::BI__builtin_ia32_fpclasssd_mask:
3902   case X86::BI__builtin_ia32_fpclassss_mask:
3903   case X86::BI__builtin_ia32_pslldqi128_byteshift:
3904   case X86::BI__builtin_ia32_pslldqi256_byteshift:
3905   case X86::BI__builtin_ia32_pslldqi512_byteshift:
3906   case X86::BI__builtin_ia32_psrldqi128_byteshift:
3907   case X86::BI__builtin_ia32_psrldqi256_byteshift:
3908   case X86::BI__builtin_ia32_psrldqi512_byteshift:
3909   case X86::BI__builtin_ia32_kshiftliqi:
3910   case X86::BI__builtin_ia32_kshiftlihi:
3911   case X86::BI__builtin_ia32_kshiftlisi:
3912   case X86::BI__builtin_ia32_kshiftlidi:
3913   case X86::BI__builtin_ia32_kshiftriqi:
3914   case X86::BI__builtin_ia32_kshiftrihi:
3915   case X86::BI__builtin_ia32_kshiftrisi:
3916   case X86::BI__builtin_ia32_kshiftridi:
3917     i = 1; l = 0; u = 255;
3918     break;
3919   case X86::BI__builtin_ia32_vperm2f128_pd256:
3920   case X86::BI__builtin_ia32_vperm2f128_ps256:
3921   case X86::BI__builtin_ia32_vperm2f128_si256:
3922   case X86::BI__builtin_ia32_permti256:
3923   case X86::BI__builtin_ia32_pblendw128:
3924   case X86::BI__builtin_ia32_pblendw256:
3925   case X86::BI__builtin_ia32_blendps256:
3926   case X86::BI__builtin_ia32_pblendd256:
3927   case X86::BI__builtin_ia32_palignr128:
3928   case X86::BI__builtin_ia32_palignr256:
3929   case X86::BI__builtin_ia32_palignr512:
3930   case X86::BI__builtin_ia32_alignq512:
3931   case X86::BI__builtin_ia32_alignd512:
3932   case X86::BI__builtin_ia32_alignd128:
3933   case X86::BI__builtin_ia32_alignd256:
3934   case X86::BI__builtin_ia32_alignq128:
3935   case X86::BI__builtin_ia32_alignq256:
3936   case X86::BI__builtin_ia32_vcomisd:
3937   case X86::BI__builtin_ia32_vcomiss:
3938   case X86::BI__builtin_ia32_shuf_f32x4:
3939   case X86::BI__builtin_ia32_shuf_f64x2:
3940   case X86::BI__builtin_ia32_shuf_i32x4:
3941   case X86::BI__builtin_ia32_shuf_i64x2:
3942   case X86::BI__builtin_ia32_shufpd512:
3943   case X86::BI__builtin_ia32_shufps:
3944   case X86::BI__builtin_ia32_shufps256:
3945   case X86::BI__builtin_ia32_shufps512:
3946   case X86::BI__builtin_ia32_dbpsadbw128:
3947   case X86::BI__builtin_ia32_dbpsadbw256:
3948   case X86::BI__builtin_ia32_dbpsadbw512:
3949   case X86::BI__builtin_ia32_vpshldd128:
3950   case X86::BI__builtin_ia32_vpshldd256:
3951   case X86::BI__builtin_ia32_vpshldd512:
3952   case X86::BI__builtin_ia32_vpshldq128:
3953   case X86::BI__builtin_ia32_vpshldq256:
3954   case X86::BI__builtin_ia32_vpshldq512:
3955   case X86::BI__builtin_ia32_vpshldw128:
3956   case X86::BI__builtin_ia32_vpshldw256:
3957   case X86::BI__builtin_ia32_vpshldw512:
3958   case X86::BI__builtin_ia32_vpshrdd128:
3959   case X86::BI__builtin_ia32_vpshrdd256:
3960   case X86::BI__builtin_ia32_vpshrdd512:
3961   case X86::BI__builtin_ia32_vpshrdq128:
3962   case X86::BI__builtin_ia32_vpshrdq256:
3963   case X86::BI__builtin_ia32_vpshrdq512:
3964   case X86::BI__builtin_ia32_vpshrdw128:
3965   case X86::BI__builtin_ia32_vpshrdw256:
3966   case X86::BI__builtin_ia32_vpshrdw512:
3967     i = 2; l = 0; u = 255;
3968     break;
3969   case X86::BI__builtin_ia32_fixupimmpd512_mask:
3970   case X86::BI__builtin_ia32_fixupimmpd512_maskz:
3971   case X86::BI__builtin_ia32_fixupimmps512_mask:
3972   case X86::BI__builtin_ia32_fixupimmps512_maskz:
3973   case X86::BI__builtin_ia32_fixupimmsd_mask:
3974   case X86::BI__builtin_ia32_fixupimmsd_maskz:
3975   case X86::BI__builtin_ia32_fixupimmss_mask:
3976   case X86::BI__builtin_ia32_fixupimmss_maskz:
3977   case X86::BI__builtin_ia32_fixupimmpd128_mask:
3978   case X86::BI__builtin_ia32_fixupimmpd128_maskz:
3979   case X86::BI__builtin_ia32_fixupimmpd256_mask:
3980   case X86::BI__builtin_ia32_fixupimmpd256_maskz:
3981   case X86::BI__builtin_ia32_fixupimmps128_mask:
3982   case X86::BI__builtin_ia32_fixupimmps128_maskz:
3983   case X86::BI__builtin_ia32_fixupimmps256_mask:
3984   case X86::BI__builtin_ia32_fixupimmps256_maskz:
3985   case X86::BI__builtin_ia32_pternlogd512_mask:
3986   case X86::BI__builtin_ia32_pternlogd512_maskz:
3987   case X86::BI__builtin_ia32_pternlogq512_mask:
3988   case X86::BI__builtin_ia32_pternlogq512_maskz:
3989   case X86::BI__builtin_ia32_pternlogd128_mask:
3990   case X86::BI__builtin_ia32_pternlogd128_maskz:
3991   case X86::BI__builtin_ia32_pternlogd256_mask:
3992   case X86::BI__builtin_ia32_pternlogd256_maskz:
3993   case X86::BI__builtin_ia32_pternlogq128_mask:
3994   case X86::BI__builtin_ia32_pternlogq128_maskz:
3995   case X86::BI__builtin_ia32_pternlogq256_mask:
3996   case X86::BI__builtin_ia32_pternlogq256_maskz:
3997     i = 3; l = 0; u = 255;
3998     break;
3999   case X86::BI__builtin_ia32_gatherpfdpd:
4000   case X86::BI__builtin_ia32_gatherpfdps:
4001   case X86::BI__builtin_ia32_gatherpfqpd:
4002   case X86::BI__builtin_ia32_gatherpfqps:
4003   case X86::BI__builtin_ia32_scatterpfdpd:
4004   case X86::BI__builtin_ia32_scatterpfdps:
4005   case X86::BI__builtin_ia32_scatterpfqpd:
4006   case X86::BI__builtin_ia32_scatterpfqps:
4007     i = 4; l = 2; u = 3;
4008     break;
4009   case X86::BI__builtin_ia32_reducesd_mask:
4010   case X86::BI__builtin_ia32_reducess_mask:
4011   case X86::BI__builtin_ia32_rndscalesd_round_mask:
4012   case X86::BI__builtin_ia32_rndscaless_round_mask:
4013     i = 4; l = 0; u = 255;
4014     break;
4015   }
4016 
4017   // Note that we don't force a hard error on the range check here, allowing
4018   // template-generated or macro-generated dead code to potentially have out-of-
4019   // range values. These need to code generate, but don't need to necessarily
4020   // make any sense. We use a warning that defaults to an error.
4021   return SemaBuiltinConstantArgRange(TheCall, i, l, u, /*RangeIsError*/ false);
4022 }
4023 
4024 /// Given a FunctionDecl's FormatAttr, attempts to populate the FomatStringInfo
4025 /// parameter with the FormatAttr's correct format_idx and firstDataArg.
4026 /// Returns true when the format fits the function and the FormatStringInfo has
4027 /// been populated.
4028 bool Sema::getFormatStringInfo(const FormatAttr *Format, bool IsCXXMember,
4029                                FormatStringInfo *FSI) {
4030   FSI->HasVAListArg = Format->getFirstArg() == 0;
4031   FSI->FormatIdx = Format->getFormatIdx() - 1;
4032   FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1;
4033 
4034   // The way the format attribute works in GCC, the implicit this argument
4035   // of member functions is counted. However, it doesn't appear in our own
4036   // lists, so decrement format_idx in that case.
4037   if (IsCXXMember) {
4038     if(FSI->FormatIdx == 0)
4039       return false;
4040     --FSI->FormatIdx;
4041     if (FSI->FirstDataArg != 0)
4042       --FSI->FirstDataArg;
4043   }
4044   return true;
4045 }
4046 
4047 /// Checks if a the given expression evaluates to null.
4048 ///
4049 /// Returns true if the value evaluates to null.
4050 static bool CheckNonNullExpr(Sema &S, const Expr *Expr) {
4051   // If the expression has non-null type, it doesn't evaluate to null.
4052   if (auto nullability
4053         = Expr->IgnoreImplicit()->getType()->getNullability(S.Context)) {
4054     if (*nullability == NullabilityKind::NonNull)
4055       return false;
4056   }
4057 
4058   // As a special case, transparent unions initialized with zero are
4059   // considered null for the purposes of the nonnull attribute.
4060   if (const RecordType *UT = Expr->getType()->getAsUnionType()) {
4061     if (UT->getDecl()->hasAttr<TransparentUnionAttr>())
4062       if (const CompoundLiteralExpr *CLE =
4063           dyn_cast<CompoundLiteralExpr>(Expr))
4064         if (const InitListExpr *ILE =
4065             dyn_cast<InitListExpr>(CLE->getInitializer()))
4066           Expr = ILE->getInit(0);
4067   }
4068 
4069   bool Result;
4070   return (!Expr->isValueDependent() &&
4071           Expr->EvaluateAsBooleanCondition(Result, S.Context) &&
4072           !Result);
4073 }
4074 
4075 static void CheckNonNullArgument(Sema &S,
4076                                  const Expr *ArgExpr,
4077                                  SourceLocation CallSiteLoc) {
4078   if (CheckNonNullExpr(S, ArgExpr))
4079     S.DiagRuntimeBehavior(CallSiteLoc, ArgExpr,
4080                           S.PDiag(diag::warn_null_arg)
4081                               << ArgExpr->getSourceRange());
4082 }
4083 
4084 bool Sema::GetFormatNSStringIdx(const FormatAttr *Format, unsigned &Idx) {
4085   FormatStringInfo FSI;
4086   if ((GetFormatStringType(Format) == FST_NSString) &&
4087       getFormatStringInfo(Format, false, &FSI)) {
4088     Idx = FSI.FormatIdx;
4089     return true;
4090   }
4091   return false;
4092 }
4093 
4094 /// Diagnose use of %s directive in an NSString which is being passed
4095 /// as formatting string to formatting method.
4096 static void
4097 DiagnoseCStringFormatDirectiveInCFAPI(Sema &S,
4098                                         const NamedDecl *FDecl,
4099                                         Expr **Args,
4100                                         unsigned NumArgs) {
4101   unsigned Idx = 0;
4102   bool Format = false;
4103   ObjCStringFormatFamily SFFamily = FDecl->getObjCFStringFormattingFamily();
4104   if (SFFamily == ObjCStringFormatFamily::SFF_CFString) {
4105     Idx = 2;
4106     Format = true;
4107   }
4108   else
4109     for (const auto *I : FDecl->specific_attrs<FormatAttr>()) {
4110       if (S.GetFormatNSStringIdx(I, Idx)) {
4111         Format = true;
4112         break;
4113       }
4114     }
4115   if (!Format || NumArgs <= Idx)
4116     return;
4117   const Expr *FormatExpr = Args[Idx];
4118   if (const CStyleCastExpr *CSCE = dyn_cast<CStyleCastExpr>(FormatExpr))
4119     FormatExpr = CSCE->getSubExpr();
4120   const StringLiteral *FormatString;
4121   if (const ObjCStringLiteral *OSL =
4122       dyn_cast<ObjCStringLiteral>(FormatExpr->IgnoreParenImpCasts()))
4123     FormatString = OSL->getString();
4124   else
4125     FormatString = dyn_cast<StringLiteral>(FormatExpr->IgnoreParenImpCasts());
4126   if (!FormatString)
4127     return;
4128   if (S.FormatStringHasSArg(FormatString)) {
4129     S.Diag(FormatExpr->getExprLoc(), diag::warn_objc_cdirective_format_string)
4130       << "%s" << 1 << 1;
4131     S.Diag(FDecl->getLocation(), diag::note_entity_declared_at)
4132       << FDecl->getDeclName();
4133   }
4134 }
4135 
4136 /// Determine whether the given type has a non-null nullability annotation.
4137 static bool isNonNullType(ASTContext &ctx, QualType type) {
4138   if (auto nullability = type->getNullability(ctx))
4139     return *nullability == NullabilityKind::NonNull;
4140 
4141   return false;
4142 }
4143 
4144 static void CheckNonNullArguments(Sema &S,
4145                                   const NamedDecl *FDecl,
4146                                   const FunctionProtoType *Proto,
4147                                   ArrayRef<const Expr *> Args,
4148                                   SourceLocation CallSiteLoc) {
4149   assert((FDecl || Proto) && "Need a function declaration or prototype");
4150 
4151   // Already checked by by constant evaluator.
4152   if (S.isConstantEvaluated())
4153     return;
4154   // Check the attributes attached to the method/function itself.
4155   llvm::SmallBitVector NonNullArgs;
4156   if (FDecl) {
4157     // Handle the nonnull attribute on the function/method declaration itself.
4158     for (const auto *NonNull : FDecl->specific_attrs<NonNullAttr>()) {
4159       if (!NonNull->args_size()) {
4160         // Easy case: all pointer arguments are nonnull.
4161         for (const auto *Arg : Args)
4162           if (S.isValidPointerAttrType(Arg->getType()))
4163             CheckNonNullArgument(S, Arg, CallSiteLoc);
4164         return;
4165       }
4166 
4167       for (const ParamIdx &Idx : NonNull->args()) {
4168         unsigned IdxAST = Idx.getASTIndex();
4169         if (IdxAST >= Args.size())
4170           continue;
4171         if (NonNullArgs.empty())
4172           NonNullArgs.resize(Args.size());
4173         NonNullArgs.set(IdxAST);
4174       }
4175     }
4176   }
4177 
4178   if (FDecl && (isa<FunctionDecl>(FDecl) || isa<ObjCMethodDecl>(FDecl))) {
4179     // Handle the nonnull attribute on the parameters of the
4180     // function/method.
4181     ArrayRef<ParmVarDecl*> parms;
4182     if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(FDecl))
4183       parms = FD->parameters();
4184     else
4185       parms = cast<ObjCMethodDecl>(FDecl)->parameters();
4186 
4187     unsigned ParamIndex = 0;
4188     for (ArrayRef<ParmVarDecl*>::iterator I = parms.begin(), E = parms.end();
4189          I != E; ++I, ++ParamIndex) {
4190       const ParmVarDecl *PVD = *I;
4191       if (PVD->hasAttr<NonNullAttr>() ||
4192           isNonNullType(S.Context, PVD->getType())) {
4193         if (NonNullArgs.empty())
4194           NonNullArgs.resize(Args.size());
4195 
4196         NonNullArgs.set(ParamIndex);
4197       }
4198     }
4199   } else {
4200     // If we have a non-function, non-method declaration but no
4201     // function prototype, try to dig out the function prototype.
4202     if (!Proto) {
4203       if (const ValueDecl *VD = dyn_cast<ValueDecl>(FDecl)) {
4204         QualType type = VD->getType().getNonReferenceType();
4205         if (auto pointerType = type->getAs<PointerType>())
4206           type = pointerType->getPointeeType();
4207         else if (auto blockType = type->getAs<BlockPointerType>())
4208           type = blockType->getPointeeType();
4209         // FIXME: data member pointers?
4210 
4211         // Dig out the function prototype, if there is one.
4212         Proto = type->getAs<FunctionProtoType>();
4213       }
4214     }
4215 
4216     // Fill in non-null argument information from the nullability
4217     // information on the parameter types (if we have them).
4218     if (Proto) {
4219       unsigned Index = 0;
4220       for (auto paramType : Proto->getParamTypes()) {
4221         if (isNonNullType(S.Context, paramType)) {
4222           if (NonNullArgs.empty())
4223             NonNullArgs.resize(Args.size());
4224 
4225           NonNullArgs.set(Index);
4226         }
4227 
4228         ++Index;
4229       }
4230     }
4231   }
4232 
4233   // Check for non-null arguments.
4234   for (unsigned ArgIndex = 0, ArgIndexEnd = NonNullArgs.size();
4235        ArgIndex != ArgIndexEnd; ++ArgIndex) {
4236     if (NonNullArgs[ArgIndex])
4237       CheckNonNullArgument(S, Args[ArgIndex], CallSiteLoc);
4238   }
4239 }
4240 
4241 /// Handles the checks for format strings, non-POD arguments to vararg
4242 /// functions, NULL arguments passed to non-NULL parameters, and diagnose_if
4243 /// attributes.
4244 void Sema::checkCall(NamedDecl *FDecl, const FunctionProtoType *Proto,
4245                      const Expr *ThisArg, ArrayRef<const Expr *> Args,
4246                      bool IsMemberFunction, SourceLocation Loc,
4247                      SourceRange Range, VariadicCallType CallType) {
4248   // FIXME: We should check as much as we can in the template definition.
4249   if (CurContext->isDependentContext())
4250     return;
4251 
4252   // Printf and scanf checking.
4253   llvm::SmallBitVector CheckedVarArgs;
4254   if (FDecl) {
4255     for (const auto *I : FDecl->specific_attrs<FormatAttr>()) {
4256       // Only create vector if there are format attributes.
4257       CheckedVarArgs.resize(Args.size());
4258 
4259       CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range,
4260                            CheckedVarArgs);
4261     }
4262   }
4263 
4264   // Refuse POD arguments that weren't caught by the format string
4265   // checks above.
4266   auto *FD = dyn_cast_or_null<FunctionDecl>(FDecl);
4267   if (CallType != VariadicDoesNotApply &&
4268       (!FD || FD->getBuiltinID() != Builtin::BI__noop)) {
4269     unsigned NumParams = Proto ? Proto->getNumParams()
4270                        : FDecl && isa<FunctionDecl>(FDecl)
4271                            ? cast<FunctionDecl>(FDecl)->getNumParams()
4272                        : FDecl && isa<ObjCMethodDecl>(FDecl)
4273                            ? cast<ObjCMethodDecl>(FDecl)->param_size()
4274                        : 0;
4275 
4276     for (unsigned ArgIdx = NumParams; ArgIdx < Args.size(); ++ArgIdx) {
4277       // Args[ArgIdx] can be null in malformed code.
4278       if (const Expr *Arg = Args[ArgIdx]) {
4279         if (CheckedVarArgs.empty() || !CheckedVarArgs[ArgIdx])
4280           checkVariadicArgument(Arg, CallType);
4281       }
4282     }
4283   }
4284 
4285   if (FDecl || Proto) {
4286     CheckNonNullArguments(*this, FDecl, Proto, Args, Loc);
4287 
4288     // Type safety checking.
4289     if (FDecl) {
4290       for (const auto *I : FDecl->specific_attrs<ArgumentWithTypeTagAttr>())
4291         CheckArgumentWithTypeTag(I, Args, Loc);
4292     }
4293   }
4294 
4295   if (FD)
4296     diagnoseArgDependentDiagnoseIfAttrs(FD, ThisArg, Args, Loc);
4297 }
4298 
4299 /// CheckConstructorCall - Check a constructor call for correctness and safety
4300 /// properties not enforced by the C type system.
4301 void Sema::CheckConstructorCall(FunctionDecl *FDecl,
4302                                 ArrayRef<const Expr *> Args,
4303                                 const FunctionProtoType *Proto,
4304                                 SourceLocation Loc) {
4305   VariadicCallType CallType =
4306     Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
4307   checkCall(FDecl, Proto, /*ThisArg=*/nullptr, Args, /*IsMemberFunction=*/true,
4308             Loc, SourceRange(), CallType);
4309 }
4310 
4311 /// CheckFunctionCall - Check a direct function call for various correctness
4312 /// and safety properties not strictly enforced by the C type system.
4313 bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall,
4314                              const FunctionProtoType *Proto) {
4315   bool IsMemberOperatorCall = isa<CXXOperatorCallExpr>(TheCall) &&
4316                               isa<CXXMethodDecl>(FDecl);
4317   bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) ||
4318                           IsMemberOperatorCall;
4319   VariadicCallType CallType = getVariadicCallType(FDecl, Proto,
4320                                                   TheCall->getCallee());
4321   Expr** Args = TheCall->getArgs();
4322   unsigned NumArgs = TheCall->getNumArgs();
4323 
4324   Expr *ImplicitThis = nullptr;
4325   if (IsMemberOperatorCall) {
4326     // If this is a call to a member operator, hide the first argument
4327     // from checkCall.
4328     // FIXME: Our choice of AST representation here is less than ideal.
4329     ImplicitThis = Args[0];
4330     ++Args;
4331     --NumArgs;
4332   } else if (IsMemberFunction)
4333     ImplicitThis =
4334         cast<CXXMemberCallExpr>(TheCall)->getImplicitObjectArgument();
4335 
4336   checkCall(FDecl, Proto, ImplicitThis, llvm::makeArrayRef(Args, NumArgs),
4337             IsMemberFunction, TheCall->getRParenLoc(),
4338             TheCall->getCallee()->getSourceRange(), CallType);
4339 
4340   IdentifierInfo *FnInfo = FDecl->getIdentifier();
4341   // None of the checks below are needed for functions that don't have
4342   // simple names (e.g., C++ conversion functions).
4343   if (!FnInfo)
4344     return false;
4345 
4346   CheckAbsoluteValueFunction(TheCall, FDecl);
4347   CheckMaxUnsignedZero(TheCall, FDecl);
4348 
4349   if (getLangOpts().ObjC)
4350     DiagnoseCStringFormatDirectiveInCFAPI(*this, FDecl, Args, NumArgs);
4351 
4352   unsigned CMId = FDecl->getMemoryFunctionKind();
4353   if (CMId == 0)
4354     return false;
4355 
4356   // Handle memory setting and copying functions.
4357   if (CMId == Builtin::BIstrlcpy || CMId == Builtin::BIstrlcat)
4358     CheckStrlcpycatArguments(TheCall, FnInfo);
4359   else if (CMId == Builtin::BIstrncat)
4360     CheckStrncatArguments(TheCall, FnInfo);
4361   else
4362     CheckMemaccessArguments(TheCall, CMId, FnInfo);
4363 
4364   return false;
4365 }
4366 
4367 bool Sema::CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation lbrac,
4368                                ArrayRef<const Expr *> Args) {
4369   VariadicCallType CallType =
4370       Method->isVariadic() ? VariadicMethod : VariadicDoesNotApply;
4371 
4372   checkCall(Method, nullptr, /*ThisArg=*/nullptr, Args,
4373             /*IsMemberFunction=*/false, lbrac, Method->getSourceRange(),
4374             CallType);
4375 
4376   return false;
4377 }
4378 
4379 bool Sema::CheckPointerCall(NamedDecl *NDecl, CallExpr *TheCall,
4380                             const FunctionProtoType *Proto) {
4381   QualType Ty;
4382   if (const auto *V = dyn_cast<VarDecl>(NDecl))
4383     Ty = V->getType().getNonReferenceType();
4384   else if (const auto *F = dyn_cast<FieldDecl>(NDecl))
4385     Ty = F->getType().getNonReferenceType();
4386   else
4387     return false;
4388 
4389   if (!Ty->isBlockPointerType() && !Ty->isFunctionPointerType() &&
4390       !Ty->isFunctionProtoType())
4391     return false;
4392 
4393   VariadicCallType CallType;
4394   if (!Proto || !Proto->isVariadic()) {
4395     CallType = VariadicDoesNotApply;
4396   } else if (Ty->isBlockPointerType()) {
4397     CallType = VariadicBlock;
4398   } else { // Ty->isFunctionPointerType()
4399     CallType = VariadicFunction;
4400   }
4401 
4402   checkCall(NDecl, Proto, /*ThisArg=*/nullptr,
4403             llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()),
4404             /*IsMemberFunction=*/false, TheCall->getRParenLoc(),
4405             TheCall->getCallee()->getSourceRange(), CallType);
4406 
4407   return false;
4408 }
4409 
4410 /// Checks function calls when a FunctionDecl or a NamedDecl is not available,
4411 /// such as function pointers returned from functions.
4412 bool Sema::CheckOtherCall(CallExpr *TheCall, const FunctionProtoType *Proto) {
4413   VariadicCallType CallType = getVariadicCallType(/*FDecl=*/nullptr, Proto,
4414                                                   TheCall->getCallee());
4415   checkCall(/*FDecl=*/nullptr, Proto, /*ThisArg=*/nullptr,
4416             llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()),
4417             /*IsMemberFunction=*/false, TheCall->getRParenLoc(),
4418             TheCall->getCallee()->getSourceRange(), CallType);
4419 
4420   return false;
4421 }
4422 
4423 static bool isValidOrderingForOp(int64_t Ordering, AtomicExpr::AtomicOp Op) {
4424   if (!llvm::isValidAtomicOrderingCABI(Ordering))
4425     return false;
4426 
4427   auto OrderingCABI = (llvm::AtomicOrderingCABI)Ordering;
4428   switch (Op) {
4429   case AtomicExpr::AO__c11_atomic_init:
4430   case AtomicExpr::AO__opencl_atomic_init:
4431     llvm_unreachable("There is no ordering argument for an init");
4432 
4433   case AtomicExpr::AO__c11_atomic_load:
4434   case AtomicExpr::AO__opencl_atomic_load:
4435   case AtomicExpr::AO__atomic_load_n:
4436   case AtomicExpr::AO__atomic_load:
4437     return OrderingCABI != llvm::AtomicOrderingCABI::release &&
4438            OrderingCABI != llvm::AtomicOrderingCABI::acq_rel;
4439 
4440   case AtomicExpr::AO__c11_atomic_store:
4441   case AtomicExpr::AO__opencl_atomic_store:
4442   case AtomicExpr::AO__atomic_store:
4443   case AtomicExpr::AO__atomic_store_n:
4444     return OrderingCABI != llvm::AtomicOrderingCABI::consume &&
4445            OrderingCABI != llvm::AtomicOrderingCABI::acquire &&
4446            OrderingCABI != llvm::AtomicOrderingCABI::acq_rel;
4447 
4448   default:
4449     return true;
4450   }
4451 }
4452 
4453 ExprResult Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult,
4454                                          AtomicExpr::AtomicOp Op) {
4455   CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
4456   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
4457 
4458   // All the non-OpenCL operations take one of the following forms.
4459   // The OpenCL operations take the __c11 forms with one extra argument for
4460   // synchronization scope.
4461   enum {
4462     // C    __c11_atomic_init(A *, C)
4463     Init,
4464 
4465     // C    __c11_atomic_load(A *, int)
4466     Load,
4467 
4468     // void __atomic_load(A *, CP, int)
4469     LoadCopy,
4470 
4471     // void __atomic_store(A *, CP, int)
4472     Copy,
4473 
4474     // C    __c11_atomic_add(A *, M, int)
4475     Arithmetic,
4476 
4477     // C    __atomic_exchange_n(A *, CP, int)
4478     Xchg,
4479 
4480     // void __atomic_exchange(A *, C *, CP, int)
4481     GNUXchg,
4482 
4483     // bool __c11_atomic_compare_exchange_strong(A *, C *, CP, int, int)
4484     C11CmpXchg,
4485 
4486     // bool __atomic_compare_exchange(A *, C *, CP, bool, int, int)
4487     GNUCmpXchg
4488   } Form = Init;
4489 
4490   const unsigned NumForm = GNUCmpXchg + 1;
4491   const unsigned NumArgs[] = { 2, 2, 3, 3, 3, 3, 4, 5, 6 };
4492   const unsigned NumVals[] = { 1, 0, 1, 1, 1, 1, 2, 2, 3 };
4493   // where:
4494   //   C is an appropriate type,
4495   //   A is volatile _Atomic(C) for __c11 builtins and is C for GNU builtins,
4496   //   CP is C for __c11 builtins and GNU _n builtins and is C * otherwise,
4497   //   M is C if C is an integer, and ptrdiff_t if C is a pointer, and
4498   //   the int parameters are for orderings.
4499 
4500   static_assert(sizeof(NumArgs)/sizeof(NumArgs[0]) == NumForm
4501       && sizeof(NumVals)/sizeof(NumVals[0]) == NumForm,
4502       "need to update code for modified forms");
4503   static_assert(AtomicExpr::AO__c11_atomic_init == 0 &&
4504                     AtomicExpr::AO__c11_atomic_fetch_xor + 1 ==
4505                         AtomicExpr::AO__atomic_load,
4506                 "need to update code for modified C11 atomics");
4507   bool IsOpenCL = Op >= AtomicExpr::AO__opencl_atomic_init &&
4508                   Op <= AtomicExpr::AO__opencl_atomic_fetch_max;
4509   bool IsC11 = (Op >= AtomicExpr::AO__c11_atomic_init &&
4510                Op <= AtomicExpr::AO__c11_atomic_fetch_xor) ||
4511                IsOpenCL;
4512   bool IsN = Op == AtomicExpr::AO__atomic_load_n ||
4513              Op == AtomicExpr::AO__atomic_store_n ||
4514              Op == AtomicExpr::AO__atomic_exchange_n ||
4515              Op == AtomicExpr::AO__atomic_compare_exchange_n;
4516   bool IsAddSub = false;
4517   bool IsMinMax = false;
4518 
4519   switch (Op) {
4520   case AtomicExpr::AO__c11_atomic_init:
4521   case AtomicExpr::AO__opencl_atomic_init:
4522     Form = Init;
4523     break;
4524 
4525   case AtomicExpr::AO__c11_atomic_load:
4526   case AtomicExpr::AO__opencl_atomic_load:
4527   case AtomicExpr::AO__atomic_load_n:
4528     Form = Load;
4529     break;
4530 
4531   case AtomicExpr::AO__atomic_load:
4532     Form = LoadCopy;
4533     break;
4534 
4535   case AtomicExpr::AO__c11_atomic_store:
4536   case AtomicExpr::AO__opencl_atomic_store:
4537   case AtomicExpr::AO__atomic_store:
4538   case AtomicExpr::AO__atomic_store_n:
4539     Form = Copy;
4540     break;
4541 
4542   case AtomicExpr::AO__c11_atomic_fetch_add:
4543   case AtomicExpr::AO__c11_atomic_fetch_sub:
4544   case AtomicExpr::AO__opencl_atomic_fetch_add:
4545   case AtomicExpr::AO__opencl_atomic_fetch_sub:
4546   case AtomicExpr::AO__opencl_atomic_fetch_min:
4547   case AtomicExpr::AO__opencl_atomic_fetch_max:
4548   case AtomicExpr::AO__atomic_fetch_add:
4549   case AtomicExpr::AO__atomic_fetch_sub:
4550   case AtomicExpr::AO__atomic_add_fetch:
4551   case AtomicExpr::AO__atomic_sub_fetch:
4552     IsAddSub = true;
4553     LLVM_FALLTHROUGH;
4554   case AtomicExpr::AO__c11_atomic_fetch_and:
4555   case AtomicExpr::AO__c11_atomic_fetch_or:
4556   case AtomicExpr::AO__c11_atomic_fetch_xor:
4557   case AtomicExpr::AO__opencl_atomic_fetch_and:
4558   case AtomicExpr::AO__opencl_atomic_fetch_or:
4559   case AtomicExpr::AO__opencl_atomic_fetch_xor:
4560   case AtomicExpr::AO__atomic_fetch_and:
4561   case AtomicExpr::AO__atomic_fetch_or:
4562   case AtomicExpr::AO__atomic_fetch_xor:
4563   case AtomicExpr::AO__atomic_fetch_nand:
4564   case AtomicExpr::AO__atomic_and_fetch:
4565   case AtomicExpr::AO__atomic_or_fetch:
4566   case AtomicExpr::AO__atomic_xor_fetch:
4567   case AtomicExpr::AO__atomic_nand_fetch:
4568     Form = Arithmetic;
4569     break;
4570 
4571   case AtomicExpr::AO__atomic_fetch_min:
4572   case AtomicExpr::AO__atomic_fetch_max:
4573     IsMinMax = true;
4574     Form = Arithmetic;
4575     break;
4576 
4577   case AtomicExpr::AO__c11_atomic_exchange:
4578   case AtomicExpr::AO__opencl_atomic_exchange:
4579   case AtomicExpr::AO__atomic_exchange_n:
4580     Form = Xchg;
4581     break;
4582 
4583   case AtomicExpr::AO__atomic_exchange:
4584     Form = GNUXchg;
4585     break;
4586 
4587   case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
4588   case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
4589   case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
4590   case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
4591     Form = C11CmpXchg;
4592     break;
4593 
4594   case AtomicExpr::AO__atomic_compare_exchange:
4595   case AtomicExpr::AO__atomic_compare_exchange_n:
4596     Form = GNUCmpXchg;
4597     break;
4598   }
4599 
4600   unsigned AdjustedNumArgs = NumArgs[Form];
4601   if (IsOpenCL && Op != AtomicExpr::AO__opencl_atomic_init)
4602     ++AdjustedNumArgs;
4603   // Check we have the right number of arguments.
4604   if (TheCall->getNumArgs() < AdjustedNumArgs) {
4605     Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
4606         << 0 << AdjustedNumArgs << TheCall->getNumArgs()
4607         << TheCall->getCallee()->getSourceRange();
4608     return ExprError();
4609   } else if (TheCall->getNumArgs() > AdjustedNumArgs) {
4610     Diag(TheCall->getArg(AdjustedNumArgs)->getBeginLoc(),
4611          diag::err_typecheck_call_too_many_args)
4612         << 0 << AdjustedNumArgs << TheCall->getNumArgs()
4613         << TheCall->getCallee()->getSourceRange();
4614     return ExprError();
4615   }
4616 
4617   // Inspect the first argument of the atomic operation.
4618   Expr *Ptr = TheCall->getArg(0);
4619   ExprResult ConvertedPtr = DefaultFunctionArrayLvalueConversion(Ptr);
4620   if (ConvertedPtr.isInvalid())
4621     return ExprError();
4622 
4623   Ptr = ConvertedPtr.get();
4624   const PointerType *pointerType = Ptr->getType()->getAs<PointerType>();
4625   if (!pointerType) {
4626     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer)
4627         << Ptr->getType() << Ptr->getSourceRange();
4628     return ExprError();
4629   }
4630 
4631   // For a __c11 builtin, this should be a pointer to an _Atomic type.
4632   QualType AtomTy = pointerType->getPointeeType(); // 'A'
4633   QualType ValType = AtomTy; // 'C'
4634   if (IsC11) {
4635     if (!AtomTy->isAtomicType()) {
4636       Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_atomic)
4637           << Ptr->getType() << Ptr->getSourceRange();
4638       return ExprError();
4639     }
4640     if ((Form != Load && Form != LoadCopy && AtomTy.isConstQualified()) ||
4641         AtomTy.getAddressSpace() == LangAS::opencl_constant) {
4642       Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_non_const_atomic)
4643           << (AtomTy.isConstQualified() ? 0 : 1) << Ptr->getType()
4644           << Ptr->getSourceRange();
4645       return ExprError();
4646     }
4647     ValType = AtomTy->getAs<AtomicType>()->getValueType();
4648   } else if (Form != Load && Form != LoadCopy) {
4649     if (ValType.isConstQualified()) {
4650       Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_non_const_pointer)
4651           << Ptr->getType() << Ptr->getSourceRange();
4652       return ExprError();
4653     }
4654   }
4655 
4656   // For an arithmetic operation, the implied arithmetic must be well-formed.
4657   if (Form == Arithmetic) {
4658     // gcc does not enforce these rules for GNU atomics, but we do so for sanity.
4659     if (IsAddSub && !ValType->isIntegerType()
4660         && !ValType->isPointerType()) {
4661       Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_atomic_int_or_ptr)
4662           << IsC11 << Ptr->getType() << Ptr->getSourceRange();
4663       return ExprError();
4664     }
4665     if (IsMinMax) {
4666       const BuiltinType *BT = ValType->getAs<BuiltinType>();
4667       if (!BT || (BT->getKind() != BuiltinType::Int &&
4668                   BT->getKind() != BuiltinType::UInt)) {
4669         Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_int32_or_ptr);
4670         return ExprError();
4671       }
4672     }
4673     if (!IsAddSub && !IsMinMax && !ValType->isIntegerType()) {
4674       Diag(DRE->getBeginLoc(), diag::err_atomic_op_bitwise_needs_atomic_int)
4675           << IsC11 << Ptr->getType() << Ptr->getSourceRange();
4676       return ExprError();
4677     }
4678     if (IsC11 && ValType->isPointerType() &&
4679         RequireCompleteType(Ptr->getBeginLoc(), ValType->getPointeeType(),
4680                             diag::err_incomplete_type)) {
4681       return ExprError();
4682     }
4683   } else if (IsN && !ValType->isIntegerType() && !ValType->isPointerType()) {
4684     // For __atomic_*_n operations, the value type must be a scalar integral or
4685     // pointer type which is 1, 2, 4, 8 or 16 bytes in length.
4686     Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_atomic_int_or_ptr)
4687         << IsC11 << Ptr->getType() << Ptr->getSourceRange();
4688     return ExprError();
4689   }
4690 
4691   if (!IsC11 && !AtomTy.isTriviallyCopyableType(Context) &&
4692       !AtomTy->isScalarType()) {
4693     // For GNU atomics, require a trivially-copyable type. This is not part of
4694     // the GNU atomics specification, but we enforce it for sanity.
4695     Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_trivial_copy)
4696         << Ptr->getType() << Ptr->getSourceRange();
4697     return ExprError();
4698   }
4699 
4700   switch (ValType.getObjCLifetime()) {
4701   case Qualifiers::OCL_None:
4702   case Qualifiers::OCL_ExplicitNone:
4703     // okay
4704     break;
4705 
4706   case Qualifiers::OCL_Weak:
4707   case Qualifiers::OCL_Strong:
4708   case Qualifiers::OCL_Autoreleasing:
4709     // FIXME: Can this happen? By this point, ValType should be known
4710     // to be trivially copyable.
4711     Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership)
4712         << ValType << Ptr->getSourceRange();
4713     return ExprError();
4714   }
4715 
4716   // All atomic operations have an overload which takes a pointer to a volatile
4717   // 'A'.  We shouldn't let the volatile-ness of the pointee-type inject itself
4718   // into the result or the other operands. Similarly atomic_load takes a
4719   // pointer to a const 'A'.
4720   ValType.removeLocalVolatile();
4721   ValType.removeLocalConst();
4722   QualType ResultType = ValType;
4723   if (Form == Copy || Form == LoadCopy || Form == GNUXchg ||
4724       Form == Init)
4725     ResultType = Context.VoidTy;
4726   else if (Form == C11CmpXchg || Form == GNUCmpXchg)
4727     ResultType = Context.BoolTy;
4728 
4729   // The type of a parameter passed 'by value'. In the GNU atomics, such
4730   // arguments are actually passed as pointers.
4731   QualType ByValType = ValType; // 'CP'
4732   bool IsPassedByAddress = false;
4733   if (!IsC11 && !IsN) {
4734     ByValType = Ptr->getType();
4735     IsPassedByAddress = true;
4736   }
4737 
4738   // The first argument's non-CV pointer type is used to deduce the type of
4739   // subsequent arguments, except for:
4740   //  - weak flag (always converted to bool)
4741   //  - memory order (always converted to int)
4742   //  - scope  (always converted to int)
4743   for (unsigned i = 0; i != TheCall->getNumArgs(); ++i) {
4744     QualType Ty;
4745     if (i < NumVals[Form] + 1) {
4746       switch (i) {
4747       case 0:
4748         // The first argument is always a pointer. It has a fixed type.
4749         // It is always dereferenced, a nullptr is undefined.
4750         CheckNonNullArgument(*this, TheCall->getArg(i), DRE->getBeginLoc());
4751         // Nothing else to do: we already know all we want about this pointer.
4752         continue;
4753       case 1:
4754         // The second argument is the non-atomic operand. For arithmetic, this
4755         // is always passed by value, and for a compare_exchange it is always
4756         // passed by address. For the rest, GNU uses by-address and C11 uses
4757         // by-value.
4758         assert(Form != Load);
4759         if (Form == Init || (Form == Arithmetic && ValType->isIntegerType()))
4760           Ty = ValType;
4761         else if (Form == Copy || Form == Xchg) {
4762           if (IsPassedByAddress)
4763             // The value pointer is always dereferenced, a nullptr is undefined.
4764             CheckNonNullArgument(*this, TheCall->getArg(i), DRE->getBeginLoc());
4765           Ty = ByValType;
4766         } else if (Form == Arithmetic)
4767           Ty = Context.getPointerDiffType();
4768         else {
4769           Expr *ValArg = TheCall->getArg(i);
4770           // The value pointer is always dereferenced, a nullptr is undefined.
4771           CheckNonNullArgument(*this, ValArg, DRE->getBeginLoc());
4772           LangAS AS = LangAS::Default;
4773           // Keep address space of non-atomic pointer type.
4774           if (const PointerType *PtrTy =
4775                   ValArg->getType()->getAs<PointerType>()) {
4776             AS = PtrTy->getPointeeType().getAddressSpace();
4777           }
4778           Ty = Context.getPointerType(
4779               Context.getAddrSpaceQualType(ValType.getUnqualifiedType(), AS));
4780         }
4781         break;
4782       case 2:
4783         // The third argument to compare_exchange / GNU exchange is the desired
4784         // value, either by-value (for the C11 and *_n variant) or as a pointer.
4785         if (IsPassedByAddress)
4786           CheckNonNullArgument(*this, TheCall->getArg(i), DRE->getBeginLoc());
4787         Ty = ByValType;
4788         break;
4789       case 3:
4790         // The fourth argument to GNU compare_exchange is a 'weak' flag.
4791         Ty = Context.BoolTy;
4792         break;
4793       }
4794     } else {
4795       // The order(s) and scope are always converted to int.
4796       Ty = Context.IntTy;
4797     }
4798 
4799     InitializedEntity Entity =
4800         InitializedEntity::InitializeParameter(Context, Ty, false);
4801     ExprResult Arg = TheCall->getArg(i);
4802     Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
4803     if (Arg.isInvalid())
4804       return true;
4805     TheCall->setArg(i, Arg.get());
4806   }
4807 
4808   // Permute the arguments into a 'consistent' order.
4809   SmallVector<Expr*, 5> SubExprs;
4810   SubExprs.push_back(Ptr);
4811   switch (Form) {
4812   case Init:
4813     // Note, AtomicExpr::getVal1() has a special case for this atomic.
4814     SubExprs.push_back(TheCall->getArg(1)); // Val1
4815     break;
4816   case Load:
4817     SubExprs.push_back(TheCall->getArg(1)); // Order
4818     break;
4819   case LoadCopy:
4820   case Copy:
4821   case Arithmetic:
4822   case Xchg:
4823     SubExprs.push_back(TheCall->getArg(2)); // Order
4824     SubExprs.push_back(TheCall->getArg(1)); // Val1
4825     break;
4826   case GNUXchg:
4827     // Note, AtomicExpr::getVal2() has a special case for this atomic.
4828     SubExprs.push_back(TheCall->getArg(3)); // Order
4829     SubExprs.push_back(TheCall->getArg(1)); // Val1
4830     SubExprs.push_back(TheCall->getArg(2)); // Val2
4831     break;
4832   case C11CmpXchg:
4833     SubExprs.push_back(TheCall->getArg(3)); // Order
4834     SubExprs.push_back(TheCall->getArg(1)); // Val1
4835     SubExprs.push_back(TheCall->getArg(4)); // OrderFail
4836     SubExprs.push_back(TheCall->getArg(2)); // Val2
4837     break;
4838   case GNUCmpXchg:
4839     SubExprs.push_back(TheCall->getArg(4)); // Order
4840     SubExprs.push_back(TheCall->getArg(1)); // Val1
4841     SubExprs.push_back(TheCall->getArg(5)); // OrderFail
4842     SubExprs.push_back(TheCall->getArg(2)); // Val2
4843     SubExprs.push_back(TheCall->getArg(3)); // Weak
4844     break;
4845   }
4846 
4847   if (SubExprs.size() >= 2 && Form != Init) {
4848     llvm::APSInt Result(32);
4849     if (SubExprs[1]->isIntegerConstantExpr(Result, Context) &&
4850         !isValidOrderingForOp(Result.getSExtValue(), Op))
4851       Diag(SubExprs[1]->getBeginLoc(),
4852            diag::warn_atomic_op_has_invalid_memory_order)
4853           << SubExprs[1]->getSourceRange();
4854   }
4855 
4856   if (auto ScopeModel = AtomicExpr::getScopeModel(Op)) {
4857     auto *Scope = TheCall->getArg(TheCall->getNumArgs() - 1);
4858     llvm::APSInt Result(32);
4859     if (Scope->isIntegerConstantExpr(Result, Context) &&
4860         !ScopeModel->isValid(Result.getZExtValue())) {
4861       Diag(Scope->getBeginLoc(), diag::err_atomic_op_has_invalid_synch_scope)
4862           << Scope->getSourceRange();
4863     }
4864     SubExprs.push_back(Scope);
4865   }
4866 
4867   AtomicExpr *AE =
4868       new (Context) AtomicExpr(TheCall->getCallee()->getBeginLoc(), SubExprs,
4869                                ResultType, Op, TheCall->getRParenLoc());
4870 
4871   if ((Op == AtomicExpr::AO__c11_atomic_load ||
4872        Op == AtomicExpr::AO__c11_atomic_store ||
4873        Op == AtomicExpr::AO__opencl_atomic_load ||
4874        Op == AtomicExpr::AO__opencl_atomic_store ) &&
4875       Context.AtomicUsesUnsupportedLibcall(AE))
4876     Diag(AE->getBeginLoc(), diag::err_atomic_load_store_uses_lib)
4877         << ((Op == AtomicExpr::AO__c11_atomic_load ||
4878              Op == AtomicExpr::AO__opencl_atomic_load)
4879                 ? 0
4880                 : 1);
4881 
4882   return AE;
4883 }
4884 
4885 /// checkBuiltinArgument - Given a call to a builtin function, perform
4886 /// normal type-checking on the given argument, updating the call in
4887 /// place.  This is useful when a builtin function requires custom
4888 /// type-checking for some of its arguments but not necessarily all of
4889 /// them.
4890 ///
4891 /// Returns true on error.
4892 static bool checkBuiltinArgument(Sema &S, CallExpr *E, unsigned ArgIndex) {
4893   FunctionDecl *Fn = E->getDirectCallee();
4894   assert(Fn && "builtin call without direct callee!");
4895 
4896   ParmVarDecl *Param = Fn->getParamDecl(ArgIndex);
4897   InitializedEntity Entity =
4898     InitializedEntity::InitializeParameter(S.Context, Param);
4899 
4900   ExprResult Arg = E->getArg(0);
4901   Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg);
4902   if (Arg.isInvalid())
4903     return true;
4904 
4905   E->setArg(ArgIndex, Arg.get());
4906   return false;
4907 }
4908 
4909 /// We have a call to a function like __sync_fetch_and_add, which is an
4910 /// overloaded function based on the pointer type of its first argument.
4911 /// The main BuildCallExpr routines have already promoted the types of
4912 /// arguments because all of these calls are prototyped as void(...).
4913 ///
4914 /// This function goes through and does final semantic checking for these
4915 /// builtins, as well as generating any warnings.
4916 ExprResult
4917 Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
4918   CallExpr *TheCall = static_cast<CallExpr *>(TheCallResult.get());
4919   Expr *Callee = TheCall->getCallee();
4920   DeclRefExpr *DRE = cast<DeclRefExpr>(Callee->IgnoreParenCasts());
4921   FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
4922 
4923   // Ensure that we have at least one argument to do type inference from.
4924   if (TheCall->getNumArgs() < 1) {
4925     Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
4926         << 0 << 1 << TheCall->getNumArgs() << Callee->getSourceRange();
4927     return ExprError();
4928   }
4929 
4930   // Inspect the first argument of the atomic builtin.  This should always be
4931   // a pointer type, whose element is an integral scalar or pointer type.
4932   // Because it is a pointer type, we don't have to worry about any implicit
4933   // casts here.
4934   // FIXME: We don't allow floating point scalars as input.
4935   Expr *FirstArg = TheCall->getArg(0);
4936   ExprResult FirstArgResult = DefaultFunctionArrayLvalueConversion(FirstArg);
4937   if (FirstArgResult.isInvalid())
4938     return ExprError();
4939   FirstArg = FirstArgResult.get();
4940   TheCall->setArg(0, FirstArg);
4941 
4942   const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>();
4943   if (!pointerType) {
4944     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer)
4945         << FirstArg->getType() << FirstArg->getSourceRange();
4946     return ExprError();
4947   }
4948 
4949   QualType ValType = pointerType->getPointeeType();
4950   if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
4951       !ValType->isBlockPointerType()) {
4952     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer_intptr)
4953         << FirstArg->getType() << FirstArg->getSourceRange();
4954     return ExprError();
4955   }
4956 
4957   if (ValType.isConstQualified()) {
4958     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_cannot_be_const)
4959         << FirstArg->getType() << FirstArg->getSourceRange();
4960     return ExprError();
4961   }
4962 
4963   switch (ValType.getObjCLifetime()) {
4964   case Qualifiers::OCL_None:
4965   case Qualifiers::OCL_ExplicitNone:
4966     // okay
4967     break;
4968 
4969   case Qualifiers::OCL_Weak:
4970   case Qualifiers::OCL_Strong:
4971   case Qualifiers::OCL_Autoreleasing:
4972     Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership)
4973         << ValType << FirstArg->getSourceRange();
4974     return ExprError();
4975   }
4976 
4977   // Strip any qualifiers off ValType.
4978   ValType = ValType.getUnqualifiedType();
4979 
4980   // The majority of builtins return a value, but a few have special return
4981   // types, so allow them to override appropriately below.
4982   QualType ResultType = ValType;
4983 
4984   // We need to figure out which concrete builtin this maps onto.  For example,
4985   // __sync_fetch_and_add with a 2 byte object turns into
4986   // __sync_fetch_and_add_2.
4987 #define BUILTIN_ROW(x) \
4988   { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \
4989     Builtin::BI##x##_8, Builtin::BI##x##_16 }
4990 
4991   static const unsigned BuiltinIndices[][5] = {
4992     BUILTIN_ROW(__sync_fetch_and_add),
4993     BUILTIN_ROW(__sync_fetch_and_sub),
4994     BUILTIN_ROW(__sync_fetch_and_or),
4995     BUILTIN_ROW(__sync_fetch_and_and),
4996     BUILTIN_ROW(__sync_fetch_and_xor),
4997     BUILTIN_ROW(__sync_fetch_and_nand),
4998 
4999     BUILTIN_ROW(__sync_add_and_fetch),
5000     BUILTIN_ROW(__sync_sub_and_fetch),
5001     BUILTIN_ROW(__sync_and_and_fetch),
5002     BUILTIN_ROW(__sync_or_and_fetch),
5003     BUILTIN_ROW(__sync_xor_and_fetch),
5004     BUILTIN_ROW(__sync_nand_and_fetch),
5005 
5006     BUILTIN_ROW(__sync_val_compare_and_swap),
5007     BUILTIN_ROW(__sync_bool_compare_and_swap),
5008     BUILTIN_ROW(__sync_lock_test_and_set),
5009     BUILTIN_ROW(__sync_lock_release),
5010     BUILTIN_ROW(__sync_swap)
5011   };
5012 #undef BUILTIN_ROW
5013 
5014   // Determine the index of the size.
5015   unsigned SizeIndex;
5016   switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
5017   case 1: SizeIndex = 0; break;
5018   case 2: SizeIndex = 1; break;
5019   case 4: SizeIndex = 2; break;
5020   case 8: SizeIndex = 3; break;
5021   case 16: SizeIndex = 4; break;
5022   default:
5023     Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_pointer_size)
5024         << FirstArg->getType() << FirstArg->getSourceRange();
5025     return ExprError();
5026   }
5027 
5028   // Each of these builtins has one pointer argument, followed by some number of
5029   // values (0, 1 or 2) followed by a potentially empty varags list of stuff
5030   // that we ignore.  Find out which row of BuiltinIndices to read from as well
5031   // as the number of fixed args.
5032   unsigned BuiltinID = FDecl->getBuiltinID();
5033   unsigned BuiltinIndex, NumFixed = 1;
5034   bool WarnAboutSemanticsChange = false;
5035   switch (BuiltinID) {
5036   default: llvm_unreachable("Unknown overloaded atomic builtin!");
5037   case Builtin::BI__sync_fetch_and_add:
5038   case Builtin::BI__sync_fetch_and_add_1:
5039   case Builtin::BI__sync_fetch_and_add_2:
5040   case Builtin::BI__sync_fetch_and_add_4:
5041   case Builtin::BI__sync_fetch_and_add_8:
5042   case Builtin::BI__sync_fetch_and_add_16:
5043     BuiltinIndex = 0;
5044     break;
5045 
5046   case Builtin::BI__sync_fetch_and_sub:
5047   case Builtin::BI__sync_fetch_and_sub_1:
5048   case Builtin::BI__sync_fetch_and_sub_2:
5049   case Builtin::BI__sync_fetch_and_sub_4:
5050   case Builtin::BI__sync_fetch_and_sub_8:
5051   case Builtin::BI__sync_fetch_and_sub_16:
5052     BuiltinIndex = 1;
5053     break;
5054 
5055   case Builtin::BI__sync_fetch_and_or:
5056   case Builtin::BI__sync_fetch_and_or_1:
5057   case Builtin::BI__sync_fetch_and_or_2:
5058   case Builtin::BI__sync_fetch_and_or_4:
5059   case Builtin::BI__sync_fetch_and_or_8:
5060   case Builtin::BI__sync_fetch_and_or_16:
5061     BuiltinIndex = 2;
5062     break;
5063 
5064   case Builtin::BI__sync_fetch_and_and:
5065   case Builtin::BI__sync_fetch_and_and_1:
5066   case Builtin::BI__sync_fetch_and_and_2:
5067   case Builtin::BI__sync_fetch_and_and_4:
5068   case Builtin::BI__sync_fetch_and_and_8:
5069   case Builtin::BI__sync_fetch_and_and_16:
5070     BuiltinIndex = 3;
5071     break;
5072 
5073   case Builtin::BI__sync_fetch_and_xor:
5074   case Builtin::BI__sync_fetch_and_xor_1:
5075   case Builtin::BI__sync_fetch_and_xor_2:
5076   case Builtin::BI__sync_fetch_and_xor_4:
5077   case Builtin::BI__sync_fetch_and_xor_8:
5078   case Builtin::BI__sync_fetch_and_xor_16:
5079     BuiltinIndex = 4;
5080     break;
5081 
5082   case Builtin::BI__sync_fetch_and_nand:
5083   case Builtin::BI__sync_fetch_and_nand_1:
5084   case Builtin::BI__sync_fetch_and_nand_2:
5085   case Builtin::BI__sync_fetch_and_nand_4:
5086   case Builtin::BI__sync_fetch_and_nand_8:
5087   case Builtin::BI__sync_fetch_and_nand_16:
5088     BuiltinIndex = 5;
5089     WarnAboutSemanticsChange = true;
5090     break;
5091 
5092   case Builtin::BI__sync_add_and_fetch:
5093   case Builtin::BI__sync_add_and_fetch_1:
5094   case Builtin::BI__sync_add_and_fetch_2:
5095   case Builtin::BI__sync_add_and_fetch_4:
5096   case Builtin::BI__sync_add_and_fetch_8:
5097   case Builtin::BI__sync_add_and_fetch_16:
5098     BuiltinIndex = 6;
5099     break;
5100 
5101   case Builtin::BI__sync_sub_and_fetch:
5102   case Builtin::BI__sync_sub_and_fetch_1:
5103   case Builtin::BI__sync_sub_and_fetch_2:
5104   case Builtin::BI__sync_sub_and_fetch_4:
5105   case Builtin::BI__sync_sub_and_fetch_8:
5106   case Builtin::BI__sync_sub_and_fetch_16:
5107     BuiltinIndex = 7;
5108     break;
5109 
5110   case Builtin::BI__sync_and_and_fetch:
5111   case Builtin::BI__sync_and_and_fetch_1:
5112   case Builtin::BI__sync_and_and_fetch_2:
5113   case Builtin::BI__sync_and_and_fetch_4:
5114   case Builtin::BI__sync_and_and_fetch_8:
5115   case Builtin::BI__sync_and_and_fetch_16:
5116     BuiltinIndex = 8;
5117     break;
5118 
5119   case Builtin::BI__sync_or_and_fetch:
5120   case Builtin::BI__sync_or_and_fetch_1:
5121   case Builtin::BI__sync_or_and_fetch_2:
5122   case Builtin::BI__sync_or_and_fetch_4:
5123   case Builtin::BI__sync_or_and_fetch_8:
5124   case Builtin::BI__sync_or_and_fetch_16:
5125     BuiltinIndex = 9;
5126     break;
5127 
5128   case Builtin::BI__sync_xor_and_fetch:
5129   case Builtin::BI__sync_xor_and_fetch_1:
5130   case Builtin::BI__sync_xor_and_fetch_2:
5131   case Builtin::BI__sync_xor_and_fetch_4:
5132   case Builtin::BI__sync_xor_and_fetch_8:
5133   case Builtin::BI__sync_xor_and_fetch_16:
5134     BuiltinIndex = 10;
5135     break;
5136 
5137   case Builtin::BI__sync_nand_and_fetch:
5138   case Builtin::BI__sync_nand_and_fetch_1:
5139   case Builtin::BI__sync_nand_and_fetch_2:
5140   case Builtin::BI__sync_nand_and_fetch_4:
5141   case Builtin::BI__sync_nand_and_fetch_8:
5142   case Builtin::BI__sync_nand_and_fetch_16:
5143     BuiltinIndex = 11;
5144     WarnAboutSemanticsChange = true;
5145     break;
5146 
5147   case Builtin::BI__sync_val_compare_and_swap:
5148   case Builtin::BI__sync_val_compare_and_swap_1:
5149   case Builtin::BI__sync_val_compare_and_swap_2:
5150   case Builtin::BI__sync_val_compare_and_swap_4:
5151   case Builtin::BI__sync_val_compare_and_swap_8:
5152   case Builtin::BI__sync_val_compare_and_swap_16:
5153     BuiltinIndex = 12;
5154     NumFixed = 2;
5155     break;
5156 
5157   case Builtin::BI__sync_bool_compare_and_swap:
5158   case Builtin::BI__sync_bool_compare_and_swap_1:
5159   case Builtin::BI__sync_bool_compare_and_swap_2:
5160   case Builtin::BI__sync_bool_compare_and_swap_4:
5161   case Builtin::BI__sync_bool_compare_and_swap_8:
5162   case Builtin::BI__sync_bool_compare_and_swap_16:
5163     BuiltinIndex = 13;
5164     NumFixed = 2;
5165     ResultType = Context.BoolTy;
5166     break;
5167 
5168   case Builtin::BI__sync_lock_test_and_set:
5169   case Builtin::BI__sync_lock_test_and_set_1:
5170   case Builtin::BI__sync_lock_test_and_set_2:
5171   case Builtin::BI__sync_lock_test_and_set_4:
5172   case Builtin::BI__sync_lock_test_and_set_8:
5173   case Builtin::BI__sync_lock_test_and_set_16:
5174     BuiltinIndex = 14;
5175     break;
5176 
5177   case Builtin::BI__sync_lock_release:
5178   case Builtin::BI__sync_lock_release_1:
5179   case Builtin::BI__sync_lock_release_2:
5180   case Builtin::BI__sync_lock_release_4:
5181   case Builtin::BI__sync_lock_release_8:
5182   case Builtin::BI__sync_lock_release_16:
5183     BuiltinIndex = 15;
5184     NumFixed = 0;
5185     ResultType = Context.VoidTy;
5186     break;
5187 
5188   case Builtin::BI__sync_swap:
5189   case Builtin::BI__sync_swap_1:
5190   case Builtin::BI__sync_swap_2:
5191   case Builtin::BI__sync_swap_4:
5192   case Builtin::BI__sync_swap_8:
5193   case Builtin::BI__sync_swap_16:
5194     BuiltinIndex = 16;
5195     break;
5196   }
5197 
5198   // Now that we know how many fixed arguments we expect, first check that we
5199   // have at least that many.
5200   if (TheCall->getNumArgs() < 1+NumFixed) {
5201     Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
5202         << 0 << 1 + NumFixed << TheCall->getNumArgs()
5203         << Callee->getSourceRange();
5204     return ExprError();
5205   }
5206 
5207   Diag(TheCall->getEndLoc(), diag::warn_atomic_implicit_seq_cst)
5208       << Callee->getSourceRange();
5209 
5210   if (WarnAboutSemanticsChange) {
5211     Diag(TheCall->getEndLoc(), diag::warn_sync_fetch_and_nand_semantics_change)
5212         << Callee->getSourceRange();
5213   }
5214 
5215   // Get the decl for the concrete builtin from this, we can tell what the
5216   // concrete integer type we should convert to is.
5217   unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex];
5218   const char *NewBuiltinName = Context.BuiltinInfo.getName(NewBuiltinID);
5219   FunctionDecl *NewBuiltinDecl;
5220   if (NewBuiltinID == BuiltinID)
5221     NewBuiltinDecl = FDecl;
5222   else {
5223     // Perform builtin lookup to avoid redeclaring it.
5224     DeclarationName DN(&Context.Idents.get(NewBuiltinName));
5225     LookupResult Res(*this, DN, DRE->getBeginLoc(), LookupOrdinaryName);
5226     LookupName(Res, TUScope, /*AllowBuiltinCreation=*/true);
5227     assert(Res.getFoundDecl());
5228     NewBuiltinDecl = dyn_cast<FunctionDecl>(Res.getFoundDecl());
5229     if (!NewBuiltinDecl)
5230       return ExprError();
5231   }
5232 
5233   // The first argument --- the pointer --- has a fixed type; we
5234   // deduce the types of the rest of the arguments accordingly.  Walk
5235   // the remaining arguments, converting them to the deduced value type.
5236   for (unsigned i = 0; i != NumFixed; ++i) {
5237     ExprResult Arg = TheCall->getArg(i+1);
5238 
5239     // GCC does an implicit conversion to the pointer or integer ValType.  This
5240     // can fail in some cases (1i -> int**), check for this error case now.
5241     // Initialize the argument.
5242     InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
5243                                                    ValType, /*consume*/ false);
5244     Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
5245     if (Arg.isInvalid())
5246       return ExprError();
5247 
5248     // Okay, we have something that *can* be converted to the right type.  Check
5249     // to see if there is a potentially weird extension going on here.  This can
5250     // happen when you do an atomic operation on something like an char* and
5251     // pass in 42.  The 42 gets converted to char.  This is even more strange
5252     // for things like 45.123 -> char, etc.
5253     // FIXME: Do this check.
5254     TheCall->setArg(i+1, Arg.get());
5255   }
5256 
5257   // Create a new DeclRefExpr to refer to the new decl.
5258   DeclRefExpr *NewDRE = DeclRefExpr::Create(
5259       Context, DRE->getQualifierLoc(), SourceLocation(), NewBuiltinDecl,
5260       /*enclosing*/ false, DRE->getLocation(), Context.BuiltinFnTy,
5261       DRE->getValueKind(), nullptr, nullptr, DRE->isNonOdrUse());
5262 
5263   // Set the callee in the CallExpr.
5264   // FIXME: This loses syntactic information.
5265   QualType CalleePtrTy = Context.getPointerType(NewBuiltinDecl->getType());
5266   ExprResult PromotedCall = ImpCastExprToType(NewDRE, CalleePtrTy,
5267                                               CK_BuiltinFnToFnPtr);
5268   TheCall->setCallee(PromotedCall.get());
5269 
5270   // Change the result type of the call to match the original value type. This
5271   // is arbitrary, but the codegen for these builtins ins design to handle it
5272   // gracefully.
5273   TheCall->setType(ResultType);
5274 
5275   return TheCallResult;
5276 }
5277 
5278 /// SemaBuiltinNontemporalOverloaded - We have a call to
5279 /// __builtin_nontemporal_store or __builtin_nontemporal_load, which is an
5280 /// overloaded function based on the pointer type of its last argument.
5281 ///
5282 /// This function goes through and does final semantic checking for these
5283 /// builtins.
5284 ExprResult Sema::SemaBuiltinNontemporalOverloaded(ExprResult TheCallResult) {
5285   CallExpr *TheCall = (CallExpr *)TheCallResult.get();
5286   DeclRefExpr *DRE =
5287       cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
5288   FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
5289   unsigned BuiltinID = FDecl->getBuiltinID();
5290   assert((BuiltinID == Builtin::BI__builtin_nontemporal_store ||
5291           BuiltinID == Builtin::BI__builtin_nontemporal_load) &&
5292          "Unexpected nontemporal load/store builtin!");
5293   bool isStore = BuiltinID == Builtin::BI__builtin_nontemporal_store;
5294   unsigned numArgs = isStore ? 2 : 1;
5295 
5296   // Ensure that we have the proper number of arguments.
5297   if (checkArgCount(*this, TheCall, numArgs))
5298     return ExprError();
5299 
5300   // Inspect the last argument of the nontemporal builtin.  This should always
5301   // be a pointer type, from which we imply the type of the memory access.
5302   // Because it is a pointer type, we don't have to worry about any implicit
5303   // casts here.
5304   Expr *PointerArg = TheCall->getArg(numArgs - 1);
5305   ExprResult PointerArgResult =
5306       DefaultFunctionArrayLvalueConversion(PointerArg);
5307 
5308   if (PointerArgResult.isInvalid())
5309     return ExprError();
5310   PointerArg = PointerArgResult.get();
5311   TheCall->setArg(numArgs - 1, PointerArg);
5312 
5313   const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>();
5314   if (!pointerType) {
5315     Diag(DRE->getBeginLoc(), diag::err_nontemporal_builtin_must_be_pointer)
5316         << PointerArg->getType() << PointerArg->getSourceRange();
5317     return ExprError();
5318   }
5319 
5320   QualType ValType = pointerType->getPointeeType();
5321 
5322   // Strip any qualifiers off ValType.
5323   ValType = ValType.getUnqualifiedType();
5324   if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
5325       !ValType->isBlockPointerType() && !ValType->isFloatingType() &&
5326       !ValType->isVectorType()) {
5327     Diag(DRE->getBeginLoc(),
5328          diag::err_nontemporal_builtin_must_be_pointer_intfltptr_or_vector)
5329         << PointerArg->getType() << PointerArg->getSourceRange();
5330     return ExprError();
5331   }
5332 
5333   if (!isStore) {
5334     TheCall->setType(ValType);
5335     return TheCallResult;
5336   }
5337 
5338   ExprResult ValArg = TheCall->getArg(0);
5339   InitializedEntity Entity = InitializedEntity::InitializeParameter(
5340       Context, ValType, /*consume*/ false);
5341   ValArg = PerformCopyInitialization(Entity, SourceLocation(), ValArg);
5342   if (ValArg.isInvalid())
5343     return ExprError();
5344 
5345   TheCall->setArg(0, ValArg.get());
5346   TheCall->setType(Context.VoidTy);
5347   return TheCallResult;
5348 }
5349 
5350 /// CheckObjCString - Checks that the argument to the builtin
5351 /// CFString constructor is correct
5352 /// Note: It might also make sense to do the UTF-16 conversion here (would
5353 /// simplify the backend).
5354 bool Sema::CheckObjCString(Expr *Arg) {
5355   Arg = Arg->IgnoreParenCasts();
5356   StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
5357 
5358   if (!Literal || !Literal->isAscii()) {
5359     Diag(Arg->getBeginLoc(), diag::err_cfstring_literal_not_string_constant)
5360         << Arg->getSourceRange();
5361     return true;
5362   }
5363 
5364   if (Literal->containsNonAsciiOrNull()) {
5365     StringRef String = Literal->getString();
5366     unsigned NumBytes = String.size();
5367     SmallVector<llvm::UTF16, 128> ToBuf(NumBytes);
5368     const llvm::UTF8 *FromPtr = (const llvm::UTF8 *)String.data();
5369     llvm::UTF16 *ToPtr = &ToBuf[0];
5370 
5371     llvm::ConversionResult Result =
5372         llvm::ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, &ToPtr,
5373                                  ToPtr + NumBytes, llvm::strictConversion);
5374     // Check for conversion failure.
5375     if (Result != llvm::conversionOK)
5376       Diag(Arg->getBeginLoc(), diag::warn_cfstring_truncated)
5377           << Arg->getSourceRange();
5378   }
5379   return false;
5380 }
5381 
5382 /// CheckObjCString - Checks that the format string argument to the os_log()
5383 /// and os_trace() functions is correct, and converts it to const char *.
5384 ExprResult Sema::CheckOSLogFormatStringArg(Expr *Arg) {
5385   Arg = Arg->IgnoreParenCasts();
5386   auto *Literal = dyn_cast<StringLiteral>(Arg);
5387   if (!Literal) {
5388     if (auto *ObjcLiteral = dyn_cast<ObjCStringLiteral>(Arg)) {
5389       Literal = ObjcLiteral->getString();
5390     }
5391   }
5392 
5393   if (!Literal || (!Literal->isAscii() && !Literal->isUTF8())) {
5394     return ExprError(
5395         Diag(Arg->getBeginLoc(), diag::err_os_log_format_not_string_constant)
5396         << Arg->getSourceRange());
5397   }
5398 
5399   ExprResult Result(Literal);
5400   QualType ResultTy = Context.getPointerType(Context.CharTy.withConst());
5401   InitializedEntity Entity =
5402       InitializedEntity::InitializeParameter(Context, ResultTy, false);
5403   Result = PerformCopyInitialization(Entity, SourceLocation(), Result);
5404   return Result;
5405 }
5406 
5407 /// Check that the user is calling the appropriate va_start builtin for the
5408 /// target and calling convention.
5409 static bool checkVAStartABI(Sema &S, unsigned BuiltinID, Expr *Fn) {
5410   const llvm::Triple &TT = S.Context.getTargetInfo().getTriple();
5411   bool IsX64 = TT.getArch() == llvm::Triple::x86_64;
5412   bool IsAArch64 = TT.getArch() == llvm::Triple::aarch64;
5413   bool IsWindows = TT.isOSWindows();
5414   bool IsMSVAStart = BuiltinID == Builtin::BI__builtin_ms_va_start;
5415   if (IsX64 || IsAArch64) {
5416     CallingConv CC = CC_C;
5417     if (const FunctionDecl *FD = S.getCurFunctionDecl())
5418       CC = FD->getType()->getAs<FunctionType>()->getCallConv();
5419     if (IsMSVAStart) {
5420       // Don't allow this in System V ABI functions.
5421       if (CC == CC_X86_64SysV || (!IsWindows && CC != CC_Win64))
5422         return S.Diag(Fn->getBeginLoc(),
5423                       diag::err_ms_va_start_used_in_sysv_function);
5424     } else {
5425       // On x86-64/AArch64 Unix, don't allow this in Win64 ABI functions.
5426       // On x64 Windows, don't allow this in System V ABI functions.
5427       // (Yes, that means there's no corresponding way to support variadic
5428       // System V ABI functions on Windows.)
5429       if ((IsWindows && CC == CC_X86_64SysV) ||
5430           (!IsWindows && CC == CC_Win64))
5431         return S.Diag(Fn->getBeginLoc(),
5432                       diag::err_va_start_used_in_wrong_abi_function)
5433                << !IsWindows;
5434     }
5435     return false;
5436   }
5437 
5438   if (IsMSVAStart)
5439     return S.Diag(Fn->getBeginLoc(), diag::err_builtin_x64_aarch64_only);
5440   return false;
5441 }
5442 
5443 static bool checkVAStartIsInVariadicFunction(Sema &S, Expr *Fn,
5444                                              ParmVarDecl **LastParam = nullptr) {
5445   // Determine whether the current function, block, or obj-c method is variadic
5446   // and get its parameter list.
5447   bool IsVariadic = false;
5448   ArrayRef<ParmVarDecl *> Params;
5449   DeclContext *Caller = S.CurContext;
5450   if (auto *Block = dyn_cast<BlockDecl>(Caller)) {
5451     IsVariadic = Block->isVariadic();
5452     Params = Block->parameters();
5453   } else if (auto *FD = dyn_cast<FunctionDecl>(Caller)) {
5454     IsVariadic = FD->isVariadic();
5455     Params = FD->parameters();
5456   } else if (auto *MD = dyn_cast<ObjCMethodDecl>(Caller)) {
5457     IsVariadic = MD->isVariadic();
5458     // FIXME: This isn't correct for methods (results in bogus warning).
5459     Params = MD->parameters();
5460   } else if (isa<CapturedDecl>(Caller)) {
5461     // We don't support va_start in a CapturedDecl.
5462     S.Diag(Fn->getBeginLoc(), diag::err_va_start_captured_stmt);
5463     return true;
5464   } else {
5465     // This must be some other declcontext that parses exprs.
5466     S.Diag(Fn->getBeginLoc(), diag::err_va_start_outside_function);
5467     return true;
5468   }
5469 
5470   if (!IsVariadic) {
5471     S.Diag(Fn->getBeginLoc(), diag::err_va_start_fixed_function);
5472     return true;
5473   }
5474 
5475   if (LastParam)
5476     *LastParam = Params.empty() ? nullptr : Params.back();
5477 
5478   return false;
5479 }
5480 
5481 /// Check the arguments to '__builtin_va_start' or '__builtin_ms_va_start'
5482 /// for validity.  Emit an error and return true on failure; return false
5483 /// on success.
5484 bool Sema::SemaBuiltinVAStart(unsigned BuiltinID, CallExpr *TheCall) {
5485   Expr *Fn = TheCall->getCallee();
5486 
5487   if (checkVAStartABI(*this, BuiltinID, Fn))
5488     return true;
5489 
5490   if (TheCall->getNumArgs() > 2) {
5491     Diag(TheCall->getArg(2)->getBeginLoc(),
5492          diag::err_typecheck_call_too_many_args)
5493         << 0 /*function call*/ << 2 << TheCall->getNumArgs()
5494         << Fn->getSourceRange()
5495         << SourceRange(TheCall->getArg(2)->getBeginLoc(),
5496                        (*(TheCall->arg_end() - 1))->getEndLoc());
5497     return true;
5498   }
5499 
5500   if (TheCall->getNumArgs() < 2) {
5501     return Diag(TheCall->getEndLoc(),
5502                 diag::err_typecheck_call_too_few_args_at_least)
5503            << 0 /*function call*/ << 2 << TheCall->getNumArgs();
5504   }
5505 
5506   // Type-check the first argument normally.
5507   if (checkBuiltinArgument(*this, TheCall, 0))
5508     return true;
5509 
5510   // Check that the current function is variadic, and get its last parameter.
5511   ParmVarDecl *LastParam;
5512   if (checkVAStartIsInVariadicFunction(*this, Fn, &LastParam))
5513     return true;
5514 
5515   // Verify that the second argument to the builtin is the last argument of the
5516   // current function or method.
5517   bool SecondArgIsLastNamedArgument = false;
5518   const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts();
5519 
5520   // These are valid if SecondArgIsLastNamedArgument is false after the next
5521   // block.
5522   QualType Type;
5523   SourceLocation ParamLoc;
5524   bool IsCRegister = false;
5525 
5526   if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
5527     if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
5528       SecondArgIsLastNamedArgument = PV == LastParam;
5529 
5530       Type = PV->getType();
5531       ParamLoc = PV->getLocation();
5532       IsCRegister =
5533           PV->getStorageClass() == SC_Register && !getLangOpts().CPlusPlus;
5534     }
5535   }
5536 
5537   if (!SecondArgIsLastNamedArgument)
5538     Diag(TheCall->getArg(1)->getBeginLoc(),
5539          diag::warn_second_arg_of_va_start_not_last_named_param);
5540   else if (IsCRegister || Type->isReferenceType() ||
5541            Type->isSpecificBuiltinType(BuiltinType::Float) || [=] {
5542              // Promotable integers are UB, but enumerations need a bit of
5543              // extra checking to see what their promotable type actually is.
5544              if (!Type->isPromotableIntegerType())
5545                return false;
5546              if (!Type->isEnumeralType())
5547                return true;
5548              const EnumDecl *ED = Type->getAs<EnumType>()->getDecl();
5549              return !(ED &&
5550                       Context.typesAreCompatible(ED->getPromotionType(), Type));
5551            }()) {
5552     unsigned Reason = 0;
5553     if (Type->isReferenceType())  Reason = 1;
5554     else if (IsCRegister)         Reason = 2;
5555     Diag(Arg->getBeginLoc(), diag::warn_va_start_type_is_undefined) << Reason;
5556     Diag(ParamLoc, diag::note_parameter_type) << Type;
5557   }
5558 
5559   TheCall->setType(Context.VoidTy);
5560   return false;
5561 }
5562 
5563 bool Sema::SemaBuiltinVAStartARMMicrosoft(CallExpr *Call) {
5564   // void __va_start(va_list *ap, const char *named_addr, size_t slot_size,
5565   //                 const char *named_addr);
5566 
5567   Expr *Func = Call->getCallee();
5568 
5569   if (Call->getNumArgs() < 3)
5570     return Diag(Call->getEndLoc(),
5571                 diag::err_typecheck_call_too_few_args_at_least)
5572            << 0 /*function call*/ << 3 << Call->getNumArgs();
5573 
5574   // Type-check the first argument normally.
5575   if (checkBuiltinArgument(*this, Call, 0))
5576     return true;
5577 
5578   // Check that the current function is variadic.
5579   if (checkVAStartIsInVariadicFunction(*this, Func))
5580     return true;
5581 
5582   // __va_start on Windows does not validate the parameter qualifiers
5583 
5584   const Expr *Arg1 = Call->getArg(1)->IgnoreParens();
5585   const Type *Arg1Ty = Arg1->getType().getCanonicalType().getTypePtr();
5586 
5587   const Expr *Arg2 = Call->getArg(2)->IgnoreParens();
5588   const Type *Arg2Ty = Arg2->getType().getCanonicalType().getTypePtr();
5589 
5590   const QualType &ConstCharPtrTy =
5591       Context.getPointerType(Context.CharTy.withConst());
5592   if (!Arg1Ty->isPointerType() ||
5593       Arg1Ty->getPointeeType().withoutLocalFastQualifiers() != Context.CharTy)
5594     Diag(Arg1->getBeginLoc(), diag::err_typecheck_convert_incompatible)
5595         << Arg1->getType() << ConstCharPtrTy << 1 /* different class */
5596         << 0                                      /* qualifier difference */
5597         << 3                                      /* parameter mismatch */
5598         << 2 << Arg1->getType() << ConstCharPtrTy;
5599 
5600   const QualType SizeTy = Context.getSizeType();
5601   if (Arg2Ty->getCanonicalTypeInternal().withoutLocalFastQualifiers() != SizeTy)
5602     Diag(Arg2->getBeginLoc(), diag::err_typecheck_convert_incompatible)
5603         << Arg2->getType() << SizeTy << 1 /* different class */
5604         << 0                              /* qualifier difference */
5605         << 3                              /* parameter mismatch */
5606         << 3 << Arg2->getType() << SizeTy;
5607 
5608   return false;
5609 }
5610 
5611 /// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and
5612 /// friends.  This is declared to take (...), so we have to check everything.
5613 bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
5614   if (TheCall->getNumArgs() < 2)
5615     return Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
5616            << 0 << 2 << TheCall->getNumArgs() /*function call*/;
5617   if (TheCall->getNumArgs() > 2)
5618     return Diag(TheCall->getArg(2)->getBeginLoc(),
5619                 diag::err_typecheck_call_too_many_args)
5620            << 0 /*function call*/ << 2 << TheCall->getNumArgs()
5621            << SourceRange(TheCall->getArg(2)->getBeginLoc(),
5622                           (*(TheCall->arg_end() - 1))->getEndLoc());
5623 
5624   ExprResult OrigArg0 = TheCall->getArg(0);
5625   ExprResult OrigArg1 = TheCall->getArg(1);
5626 
5627   // Do standard promotions between the two arguments, returning their common
5628   // type.
5629   QualType Res = UsualArithmeticConversions(OrigArg0, OrigArg1, false);
5630   if (OrigArg0.isInvalid() || OrigArg1.isInvalid())
5631     return true;
5632 
5633   // Make sure any conversions are pushed back into the call; this is
5634   // type safe since unordered compare builtins are declared as "_Bool
5635   // foo(...)".
5636   TheCall->setArg(0, OrigArg0.get());
5637   TheCall->setArg(1, OrigArg1.get());
5638 
5639   if (OrigArg0.get()->isTypeDependent() || OrigArg1.get()->isTypeDependent())
5640     return false;
5641 
5642   // If the common type isn't a real floating type, then the arguments were
5643   // invalid for this operation.
5644   if (Res.isNull() || !Res->isRealFloatingType())
5645     return Diag(OrigArg0.get()->getBeginLoc(),
5646                 diag::err_typecheck_call_invalid_ordered_compare)
5647            << OrigArg0.get()->getType() << OrigArg1.get()->getType()
5648            << SourceRange(OrigArg0.get()->getBeginLoc(),
5649                           OrigArg1.get()->getEndLoc());
5650 
5651   return false;
5652 }
5653 
5654 /// SemaBuiltinSemaBuiltinFPClassification - Handle functions like
5655 /// __builtin_isnan and friends.  This is declared to take (...), so we have
5656 /// to check everything. We expect the last argument to be a floating point
5657 /// value.
5658 bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
5659   if (TheCall->getNumArgs() < NumArgs)
5660     return Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
5661            << 0 << NumArgs << TheCall->getNumArgs() /*function call*/;
5662   if (TheCall->getNumArgs() > NumArgs)
5663     return Diag(TheCall->getArg(NumArgs)->getBeginLoc(),
5664                 diag::err_typecheck_call_too_many_args)
5665            << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
5666            << SourceRange(TheCall->getArg(NumArgs)->getBeginLoc(),
5667                           (*(TheCall->arg_end() - 1))->getEndLoc());
5668 
5669   Expr *OrigArg = TheCall->getArg(NumArgs-1);
5670 
5671   if (OrigArg->isTypeDependent())
5672     return false;
5673 
5674   // This operation requires a non-_Complex floating-point number.
5675   if (!OrigArg->getType()->isRealFloatingType())
5676     return Diag(OrigArg->getBeginLoc(),
5677                 diag::err_typecheck_call_invalid_unary_fp)
5678            << OrigArg->getType() << OrigArg->getSourceRange();
5679 
5680   // If this is an implicit conversion from float -> float, double, or
5681   // long double, remove it.
5682   if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(OrigArg)) {
5683     // Only remove standard FloatCasts, leaving other casts inplace
5684     if (Cast->getCastKind() == CK_FloatingCast) {
5685       Expr *CastArg = Cast->getSubExpr();
5686       if (CastArg->getType()->isSpecificBuiltinType(BuiltinType::Float)) {
5687         assert(
5688             (Cast->getType()->isSpecificBuiltinType(BuiltinType::Double) ||
5689              Cast->getType()->isSpecificBuiltinType(BuiltinType::Float) ||
5690              Cast->getType()->isSpecificBuiltinType(BuiltinType::LongDouble)) &&
5691             "promotion from float to either float, double, or long double is "
5692             "the only expected cast here");
5693         Cast->setSubExpr(nullptr);
5694         TheCall->setArg(NumArgs-1, CastArg);
5695       }
5696     }
5697   }
5698 
5699   return false;
5700 }
5701 
5702 // Customized Sema Checking for VSX builtins that have the following signature:
5703 // vector [...] builtinName(vector [...], vector [...], const int);
5704 // Which takes the same type of vectors (any legal vector type) for the first
5705 // two arguments and takes compile time constant for the third argument.
5706 // Example builtins are :
5707 // vector double vec_xxpermdi(vector double, vector double, int);
5708 // vector short vec_xxsldwi(vector short, vector short, int);
5709 bool Sema::SemaBuiltinVSX(CallExpr *TheCall) {
5710   unsigned ExpectedNumArgs = 3;
5711   if (TheCall->getNumArgs() < ExpectedNumArgs)
5712     return Diag(TheCall->getEndLoc(),
5713                 diag::err_typecheck_call_too_few_args_at_least)
5714            << 0 /*function call*/ << ExpectedNumArgs << TheCall->getNumArgs()
5715            << TheCall->getSourceRange();
5716 
5717   if (TheCall->getNumArgs() > ExpectedNumArgs)
5718     return Diag(TheCall->getEndLoc(),
5719                 diag::err_typecheck_call_too_many_args_at_most)
5720            << 0 /*function call*/ << ExpectedNumArgs << TheCall->getNumArgs()
5721            << TheCall->getSourceRange();
5722 
5723   // Check the third argument is a compile time constant
5724   llvm::APSInt Value;
5725   if(!TheCall->getArg(2)->isIntegerConstantExpr(Value, Context))
5726     return Diag(TheCall->getBeginLoc(),
5727                 diag::err_vsx_builtin_nonconstant_argument)
5728            << 3 /* argument index */ << TheCall->getDirectCallee()
5729            << SourceRange(TheCall->getArg(2)->getBeginLoc(),
5730                           TheCall->getArg(2)->getEndLoc());
5731 
5732   QualType Arg1Ty = TheCall->getArg(0)->getType();
5733   QualType Arg2Ty = TheCall->getArg(1)->getType();
5734 
5735   // Check the type of argument 1 and argument 2 are vectors.
5736   SourceLocation BuiltinLoc = TheCall->getBeginLoc();
5737   if ((!Arg1Ty->isVectorType() && !Arg1Ty->isDependentType()) ||
5738       (!Arg2Ty->isVectorType() && !Arg2Ty->isDependentType())) {
5739     return Diag(BuiltinLoc, diag::err_vec_builtin_non_vector)
5740            << TheCall->getDirectCallee()
5741            << SourceRange(TheCall->getArg(0)->getBeginLoc(),
5742                           TheCall->getArg(1)->getEndLoc());
5743   }
5744 
5745   // Check the first two arguments are the same type.
5746   if (!Context.hasSameUnqualifiedType(Arg1Ty, Arg2Ty)) {
5747     return Diag(BuiltinLoc, diag::err_vec_builtin_incompatible_vector)
5748            << TheCall->getDirectCallee()
5749            << SourceRange(TheCall->getArg(0)->getBeginLoc(),
5750                           TheCall->getArg(1)->getEndLoc());
5751   }
5752 
5753   // When default clang type checking is turned off and the customized type
5754   // checking is used, the returning type of the function must be explicitly
5755   // set. Otherwise it is _Bool by default.
5756   TheCall->setType(Arg1Ty);
5757 
5758   return false;
5759 }
5760 
5761 /// SemaBuiltinShuffleVector - Handle __builtin_shufflevector.
5762 // This is declared to take (...), so we have to check everything.
5763 ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
5764   if (TheCall->getNumArgs() < 2)
5765     return ExprError(Diag(TheCall->getEndLoc(),
5766                           diag::err_typecheck_call_too_few_args_at_least)
5767                      << 0 /*function call*/ << 2 << TheCall->getNumArgs()
5768                      << TheCall->getSourceRange());
5769 
5770   // Determine which of the following types of shufflevector we're checking:
5771   // 1) unary, vector mask: (lhs, mask)
5772   // 2) binary, scalar mask: (lhs, rhs, index, ..., index)
5773   QualType resType = TheCall->getArg(0)->getType();
5774   unsigned numElements = 0;
5775 
5776   if (!TheCall->getArg(0)->isTypeDependent() &&
5777       !TheCall->getArg(1)->isTypeDependent()) {
5778     QualType LHSType = TheCall->getArg(0)->getType();
5779     QualType RHSType = TheCall->getArg(1)->getType();
5780 
5781     if (!LHSType->isVectorType() || !RHSType->isVectorType())
5782       return ExprError(
5783           Diag(TheCall->getBeginLoc(), diag::err_vec_builtin_non_vector)
5784           << TheCall->getDirectCallee()
5785           << SourceRange(TheCall->getArg(0)->getBeginLoc(),
5786                          TheCall->getArg(1)->getEndLoc()));
5787 
5788     numElements = LHSType->getAs<VectorType>()->getNumElements();
5789     unsigned numResElements = TheCall->getNumArgs() - 2;
5790 
5791     // Check to see if we have a call with 2 vector arguments, the unary shuffle
5792     // with mask.  If so, verify that RHS is an integer vector type with the
5793     // same number of elts as lhs.
5794     if (TheCall->getNumArgs() == 2) {
5795       if (!RHSType->hasIntegerRepresentation() ||
5796           RHSType->getAs<VectorType>()->getNumElements() != numElements)
5797         return ExprError(Diag(TheCall->getBeginLoc(),
5798                               diag::err_vec_builtin_incompatible_vector)
5799                          << TheCall->getDirectCallee()
5800                          << SourceRange(TheCall->getArg(1)->getBeginLoc(),
5801                                         TheCall->getArg(1)->getEndLoc()));
5802     } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
5803       return ExprError(Diag(TheCall->getBeginLoc(),
5804                             diag::err_vec_builtin_incompatible_vector)
5805                        << TheCall->getDirectCallee()
5806                        << SourceRange(TheCall->getArg(0)->getBeginLoc(),
5807                                       TheCall->getArg(1)->getEndLoc()));
5808     } else if (numElements != numResElements) {
5809       QualType eltType = LHSType->getAs<VectorType>()->getElementType();
5810       resType = Context.getVectorType(eltType, numResElements,
5811                                       VectorType::GenericVector);
5812     }
5813   }
5814 
5815   for (unsigned i = 2; i < TheCall->getNumArgs(); i++) {
5816     if (TheCall->getArg(i)->isTypeDependent() ||
5817         TheCall->getArg(i)->isValueDependent())
5818       continue;
5819 
5820     llvm::APSInt Result(32);
5821     if (!TheCall->getArg(i)->isIntegerConstantExpr(Result, Context))
5822       return ExprError(Diag(TheCall->getBeginLoc(),
5823                             diag::err_shufflevector_nonconstant_argument)
5824                        << TheCall->getArg(i)->getSourceRange());
5825 
5826     // Allow -1 which will be translated to undef in the IR.
5827     if (Result.isSigned() && Result.isAllOnesValue())
5828       continue;
5829 
5830     if (Result.getActiveBits() > 64 || Result.getZExtValue() >= numElements*2)
5831       return ExprError(Diag(TheCall->getBeginLoc(),
5832                             diag::err_shufflevector_argument_too_large)
5833                        << TheCall->getArg(i)->getSourceRange());
5834   }
5835 
5836   SmallVector<Expr*, 32> exprs;
5837 
5838   for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) {
5839     exprs.push_back(TheCall->getArg(i));
5840     TheCall->setArg(i, nullptr);
5841   }
5842 
5843   return new (Context) ShuffleVectorExpr(Context, exprs, resType,
5844                                          TheCall->getCallee()->getBeginLoc(),
5845                                          TheCall->getRParenLoc());
5846 }
5847 
5848 /// SemaConvertVectorExpr - Handle __builtin_convertvector
5849 ExprResult Sema::SemaConvertVectorExpr(Expr *E, TypeSourceInfo *TInfo,
5850                                        SourceLocation BuiltinLoc,
5851                                        SourceLocation RParenLoc) {
5852   ExprValueKind VK = VK_RValue;
5853   ExprObjectKind OK = OK_Ordinary;
5854   QualType DstTy = TInfo->getType();
5855   QualType SrcTy = E->getType();
5856 
5857   if (!SrcTy->isVectorType() && !SrcTy->isDependentType())
5858     return ExprError(Diag(BuiltinLoc,
5859                           diag::err_convertvector_non_vector)
5860                      << E->getSourceRange());
5861   if (!DstTy->isVectorType() && !DstTy->isDependentType())
5862     return ExprError(Diag(BuiltinLoc,
5863                           diag::err_convertvector_non_vector_type));
5864 
5865   if (!SrcTy->isDependentType() && !DstTy->isDependentType()) {
5866     unsigned SrcElts = SrcTy->getAs<VectorType>()->getNumElements();
5867     unsigned DstElts = DstTy->getAs<VectorType>()->getNumElements();
5868     if (SrcElts != DstElts)
5869       return ExprError(Diag(BuiltinLoc,
5870                             diag::err_convertvector_incompatible_vector)
5871                        << E->getSourceRange());
5872   }
5873 
5874   return new (Context)
5875       ConvertVectorExpr(E, TInfo, DstTy, VK, OK, BuiltinLoc, RParenLoc);
5876 }
5877 
5878 /// SemaBuiltinPrefetch - Handle __builtin_prefetch.
5879 // This is declared to take (const void*, ...) and can take two
5880 // optional constant int args.
5881 bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
5882   unsigned NumArgs = TheCall->getNumArgs();
5883 
5884   if (NumArgs > 3)
5885     return Diag(TheCall->getEndLoc(),
5886                 diag::err_typecheck_call_too_many_args_at_most)
5887            << 0 /*function call*/ << 3 << NumArgs << TheCall->getSourceRange();
5888 
5889   // Argument 0 is checked for us and the remaining arguments must be
5890   // constant integers.
5891   for (unsigned i = 1; i != NumArgs; ++i)
5892     if (SemaBuiltinConstantArgRange(TheCall, i, 0, i == 1 ? 1 : 3))
5893       return true;
5894 
5895   return false;
5896 }
5897 
5898 /// SemaBuiltinAssume - Handle __assume (MS Extension).
5899 // __assume does not evaluate its arguments, and should warn if its argument
5900 // has side effects.
5901 bool Sema::SemaBuiltinAssume(CallExpr *TheCall) {
5902   Expr *Arg = TheCall->getArg(0);
5903   if (Arg->isInstantiationDependent()) return false;
5904 
5905   if (Arg->HasSideEffects(Context))
5906     Diag(Arg->getBeginLoc(), diag::warn_assume_side_effects)
5907         << Arg->getSourceRange()
5908         << cast<FunctionDecl>(TheCall->getCalleeDecl())->getIdentifier();
5909 
5910   return false;
5911 }
5912 
5913 /// Handle __builtin_alloca_with_align. This is declared
5914 /// as (size_t, size_t) where the second size_t must be a power of 2 greater
5915 /// than 8.
5916 bool Sema::SemaBuiltinAllocaWithAlign(CallExpr *TheCall) {
5917   // The alignment must be a constant integer.
5918   Expr *Arg = TheCall->getArg(1);
5919 
5920   // We can't check the value of a dependent argument.
5921   if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
5922     if (const auto *UE =
5923             dyn_cast<UnaryExprOrTypeTraitExpr>(Arg->IgnoreParenImpCasts()))
5924       if (UE->getKind() == UETT_AlignOf ||
5925           UE->getKind() == UETT_PreferredAlignOf)
5926         Diag(TheCall->getBeginLoc(), diag::warn_alloca_align_alignof)
5927             << Arg->getSourceRange();
5928 
5929     llvm::APSInt Result = Arg->EvaluateKnownConstInt(Context);
5930 
5931     if (!Result.isPowerOf2())
5932       return Diag(TheCall->getBeginLoc(), diag::err_alignment_not_power_of_two)
5933              << Arg->getSourceRange();
5934 
5935     if (Result < Context.getCharWidth())
5936       return Diag(TheCall->getBeginLoc(), diag::err_alignment_too_small)
5937              << (unsigned)Context.getCharWidth() << Arg->getSourceRange();
5938 
5939     if (Result > std::numeric_limits<int32_t>::max())
5940       return Diag(TheCall->getBeginLoc(), diag::err_alignment_too_big)
5941              << std::numeric_limits<int32_t>::max() << Arg->getSourceRange();
5942   }
5943 
5944   return false;
5945 }
5946 
5947 /// Handle __builtin_assume_aligned. This is declared
5948 /// as (const void*, size_t, ...) and can take one optional constant int arg.
5949 bool Sema::SemaBuiltinAssumeAligned(CallExpr *TheCall) {
5950   unsigned NumArgs = TheCall->getNumArgs();
5951 
5952   if (NumArgs > 3)
5953     return Diag(TheCall->getEndLoc(),
5954                 diag::err_typecheck_call_too_many_args_at_most)
5955            << 0 /*function call*/ << 3 << NumArgs << TheCall->getSourceRange();
5956 
5957   // The alignment must be a constant integer.
5958   Expr *Arg = TheCall->getArg(1);
5959 
5960   // We can't check the value of a dependent argument.
5961   if (!Arg->isTypeDependent() && !Arg->isValueDependent()) {
5962     llvm::APSInt Result;
5963     if (SemaBuiltinConstantArg(TheCall, 1, Result))
5964       return true;
5965 
5966     if (!Result.isPowerOf2())
5967       return Diag(TheCall->getBeginLoc(), diag::err_alignment_not_power_of_two)
5968              << Arg->getSourceRange();
5969   }
5970 
5971   if (NumArgs > 2) {
5972     ExprResult Arg(TheCall->getArg(2));
5973     InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
5974       Context.getSizeType(), false);
5975     Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
5976     if (Arg.isInvalid()) return true;
5977     TheCall->setArg(2, Arg.get());
5978   }
5979 
5980   return false;
5981 }
5982 
5983 bool Sema::SemaBuiltinOSLogFormat(CallExpr *TheCall) {
5984   unsigned BuiltinID =
5985       cast<FunctionDecl>(TheCall->getCalleeDecl())->getBuiltinID();
5986   bool IsSizeCall = BuiltinID == Builtin::BI__builtin_os_log_format_buffer_size;
5987 
5988   unsigned NumArgs = TheCall->getNumArgs();
5989   unsigned NumRequiredArgs = IsSizeCall ? 1 : 2;
5990   if (NumArgs < NumRequiredArgs) {
5991     return Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
5992            << 0 /* function call */ << NumRequiredArgs << NumArgs
5993            << TheCall->getSourceRange();
5994   }
5995   if (NumArgs >= NumRequiredArgs + 0x100) {
5996     return Diag(TheCall->getEndLoc(),
5997                 diag::err_typecheck_call_too_many_args_at_most)
5998            << 0 /* function call */ << (NumRequiredArgs + 0xff) << NumArgs
5999            << TheCall->getSourceRange();
6000   }
6001   unsigned i = 0;
6002 
6003   // For formatting call, check buffer arg.
6004   if (!IsSizeCall) {
6005     ExprResult Arg(TheCall->getArg(i));
6006     InitializedEntity Entity = InitializedEntity::InitializeParameter(
6007         Context, Context.VoidPtrTy, false);
6008     Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
6009     if (Arg.isInvalid())
6010       return true;
6011     TheCall->setArg(i, Arg.get());
6012     i++;
6013   }
6014 
6015   // Check string literal arg.
6016   unsigned FormatIdx = i;
6017   {
6018     ExprResult Arg = CheckOSLogFormatStringArg(TheCall->getArg(i));
6019     if (Arg.isInvalid())
6020       return true;
6021     TheCall->setArg(i, Arg.get());
6022     i++;
6023   }
6024 
6025   // Make sure variadic args are scalar.
6026   unsigned FirstDataArg = i;
6027   while (i < NumArgs) {
6028     ExprResult Arg = DefaultVariadicArgumentPromotion(
6029         TheCall->getArg(i), VariadicFunction, nullptr);
6030     if (Arg.isInvalid())
6031       return true;
6032     CharUnits ArgSize = Context.getTypeSizeInChars(Arg.get()->getType());
6033     if (ArgSize.getQuantity() >= 0x100) {
6034       return Diag(Arg.get()->getEndLoc(), diag::err_os_log_argument_too_big)
6035              << i << (int)ArgSize.getQuantity() << 0xff
6036              << TheCall->getSourceRange();
6037     }
6038     TheCall->setArg(i, Arg.get());
6039     i++;
6040   }
6041 
6042   // Check formatting specifiers. NOTE: We're only doing this for the non-size
6043   // call to avoid duplicate diagnostics.
6044   if (!IsSizeCall) {
6045     llvm::SmallBitVector CheckedVarArgs(NumArgs, false);
6046     ArrayRef<const Expr *> Args(TheCall->getArgs(), TheCall->getNumArgs());
6047     bool Success = CheckFormatArguments(
6048         Args, /*HasVAListArg*/ false, FormatIdx, FirstDataArg, FST_OSLog,
6049         VariadicFunction, TheCall->getBeginLoc(), SourceRange(),
6050         CheckedVarArgs);
6051     if (!Success)
6052       return true;
6053   }
6054 
6055   if (IsSizeCall) {
6056     TheCall->setType(Context.getSizeType());
6057   } else {
6058     TheCall->setType(Context.VoidPtrTy);
6059   }
6060   return false;
6061 }
6062 
6063 /// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
6064 /// TheCall is a constant expression.
6065 bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum,
6066                                   llvm::APSInt &Result) {
6067   Expr *Arg = TheCall->getArg(ArgNum);
6068   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
6069   FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
6070 
6071   if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
6072 
6073   if (!Arg->isIntegerConstantExpr(Result, Context))
6074     return Diag(TheCall->getBeginLoc(), diag::err_constant_integer_arg_type)
6075            << FDecl->getDeclName() << Arg->getSourceRange();
6076 
6077   return false;
6078 }
6079 
6080 /// SemaBuiltinConstantArgRange - Handle a check if argument ArgNum of CallExpr
6081 /// TheCall is a constant expression in the range [Low, High].
6082 bool Sema::SemaBuiltinConstantArgRange(CallExpr *TheCall, int ArgNum,
6083                                        int Low, int High, bool RangeIsError) {
6084   if (isConstantEvaluated())
6085     return false;
6086   llvm::APSInt Result;
6087 
6088   // We can't check the value of a dependent argument.
6089   Expr *Arg = TheCall->getArg(ArgNum);
6090   if (Arg->isTypeDependent() || Arg->isValueDependent())
6091     return false;
6092 
6093   // Check constant-ness first.
6094   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
6095     return true;
6096 
6097   if (Result.getSExtValue() < Low || Result.getSExtValue() > High) {
6098     if (RangeIsError)
6099       return Diag(TheCall->getBeginLoc(), diag::err_argument_invalid_range)
6100              << Result.toString(10) << Low << High << Arg->getSourceRange();
6101     else
6102       // Defer the warning until we know if the code will be emitted so that
6103       // dead code can ignore this.
6104       DiagRuntimeBehavior(TheCall->getBeginLoc(), TheCall,
6105                           PDiag(diag::warn_argument_invalid_range)
6106                               << Result.toString(10) << Low << High
6107                               << Arg->getSourceRange());
6108   }
6109 
6110   return false;
6111 }
6112 
6113 /// SemaBuiltinConstantArgMultiple - Handle a check if argument ArgNum of CallExpr
6114 /// TheCall is a constant expression is a multiple of Num..
6115 bool Sema::SemaBuiltinConstantArgMultiple(CallExpr *TheCall, int ArgNum,
6116                                           unsigned Num) {
6117   llvm::APSInt Result;
6118 
6119   // We can't check the value of a dependent argument.
6120   Expr *Arg = TheCall->getArg(ArgNum);
6121   if (Arg->isTypeDependent() || Arg->isValueDependent())
6122     return false;
6123 
6124   // Check constant-ness first.
6125   if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
6126     return true;
6127 
6128   if (Result.getSExtValue() % Num != 0)
6129     return Diag(TheCall->getBeginLoc(), diag::err_argument_not_multiple)
6130            << Num << Arg->getSourceRange();
6131 
6132   return false;
6133 }
6134 
6135 /// SemaBuiltinARMMemoryTaggingCall - Handle calls of memory tagging extensions
6136 bool Sema::SemaBuiltinARMMemoryTaggingCall(unsigned BuiltinID, CallExpr *TheCall) {
6137   if (BuiltinID == AArch64::BI__builtin_arm_irg) {
6138     if (checkArgCount(*this, TheCall, 2))
6139       return true;
6140     Expr *Arg0 = TheCall->getArg(0);
6141     Expr *Arg1 = TheCall->getArg(1);
6142 
6143     ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0);
6144     if (FirstArg.isInvalid())
6145       return true;
6146     QualType FirstArgType = FirstArg.get()->getType();
6147     if (!FirstArgType->isAnyPointerType())
6148       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer)
6149                << "first" << FirstArgType << Arg0->getSourceRange();
6150     TheCall->setArg(0, FirstArg.get());
6151 
6152     ExprResult SecArg = DefaultLvalueConversion(Arg1);
6153     if (SecArg.isInvalid())
6154       return true;
6155     QualType SecArgType = SecArg.get()->getType();
6156     if (!SecArgType->isIntegerType())
6157       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_integer)
6158                << "second" << SecArgType << Arg1->getSourceRange();
6159 
6160     // Derive the return type from the pointer argument.
6161     TheCall->setType(FirstArgType);
6162     return false;
6163   }
6164 
6165   if (BuiltinID == AArch64::BI__builtin_arm_addg) {
6166     if (checkArgCount(*this, TheCall, 2))
6167       return true;
6168 
6169     Expr *Arg0 = TheCall->getArg(0);
6170     ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0);
6171     if (FirstArg.isInvalid())
6172       return true;
6173     QualType FirstArgType = FirstArg.get()->getType();
6174     if (!FirstArgType->isAnyPointerType())
6175       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer)
6176                << "first" << FirstArgType << Arg0->getSourceRange();
6177     TheCall->setArg(0, FirstArg.get());
6178 
6179     // Derive the return type from the pointer argument.
6180     TheCall->setType(FirstArgType);
6181 
6182     // Second arg must be an constant in range [0,15]
6183     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15);
6184   }
6185 
6186   if (BuiltinID == AArch64::BI__builtin_arm_gmi) {
6187     if (checkArgCount(*this, TheCall, 2))
6188       return true;
6189     Expr *Arg0 = TheCall->getArg(0);
6190     Expr *Arg1 = TheCall->getArg(1);
6191 
6192     ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0);
6193     if (FirstArg.isInvalid())
6194       return true;
6195     QualType FirstArgType = FirstArg.get()->getType();
6196     if (!FirstArgType->isAnyPointerType())
6197       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer)
6198                << "first" << FirstArgType << Arg0->getSourceRange();
6199 
6200     QualType SecArgType = Arg1->getType();
6201     if (!SecArgType->isIntegerType())
6202       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_integer)
6203                << "second" << SecArgType << Arg1->getSourceRange();
6204     TheCall->setType(Context.IntTy);
6205     return false;
6206   }
6207 
6208   if (BuiltinID == AArch64::BI__builtin_arm_ldg ||
6209       BuiltinID == AArch64::BI__builtin_arm_stg) {
6210     if (checkArgCount(*this, TheCall, 1))
6211       return true;
6212     Expr *Arg0 = TheCall->getArg(0);
6213     ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0);
6214     if (FirstArg.isInvalid())
6215       return true;
6216 
6217     QualType FirstArgType = FirstArg.get()->getType();
6218     if (!FirstArgType->isAnyPointerType())
6219       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer)
6220                << "first" << FirstArgType << Arg0->getSourceRange();
6221     TheCall->setArg(0, FirstArg.get());
6222 
6223     // Derive the return type from the pointer argument.
6224     if (BuiltinID == AArch64::BI__builtin_arm_ldg)
6225       TheCall->setType(FirstArgType);
6226     return false;
6227   }
6228 
6229   if (BuiltinID == AArch64::BI__builtin_arm_subp) {
6230     Expr *ArgA = TheCall->getArg(0);
6231     Expr *ArgB = TheCall->getArg(1);
6232 
6233     ExprResult ArgExprA = DefaultFunctionArrayLvalueConversion(ArgA);
6234     ExprResult ArgExprB = DefaultFunctionArrayLvalueConversion(ArgB);
6235 
6236     if (ArgExprA.isInvalid() || ArgExprB.isInvalid())
6237       return true;
6238 
6239     QualType ArgTypeA = ArgExprA.get()->getType();
6240     QualType ArgTypeB = ArgExprB.get()->getType();
6241 
6242     auto isNull = [&] (Expr *E) -> bool {
6243       return E->isNullPointerConstant(
6244                         Context, Expr::NPC_ValueDependentIsNotNull); };
6245 
6246     // argument should be either a pointer or null
6247     if (!ArgTypeA->isAnyPointerType() && !isNull(ArgA))
6248       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_null_or_pointer)
6249         << "first" << ArgTypeA << ArgA->getSourceRange();
6250 
6251     if (!ArgTypeB->isAnyPointerType() && !isNull(ArgB))
6252       return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_null_or_pointer)
6253         << "second" << ArgTypeB << ArgB->getSourceRange();
6254 
6255     // Ensure Pointee types are compatible
6256     if (ArgTypeA->isAnyPointerType() && !isNull(ArgA) &&
6257         ArgTypeB->isAnyPointerType() && !isNull(ArgB)) {
6258       QualType pointeeA = ArgTypeA->getPointeeType();
6259       QualType pointeeB = ArgTypeB->getPointeeType();
6260       if (!Context.typesAreCompatible(
6261              Context.getCanonicalType(pointeeA).getUnqualifiedType(),
6262              Context.getCanonicalType(pointeeB).getUnqualifiedType())) {
6263         return Diag(TheCall->getBeginLoc(), diag::err_typecheck_sub_ptr_compatible)
6264           << ArgTypeA <<  ArgTypeB << ArgA->getSourceRange()
6265           << ArgB->getSourceRange();
6266       }
6267     }
6268 
6269     // at least one argument should be pointer type
6270     if (!ArgTypeA->isAnyPointerType() && !ArgTypeB->isAnyPointerType())
6271       return Diag(TheCall->getBeginLoc(), diag::err_memtag_any2arg_pointer)
6272         <<  ArgTypeA << ArgTypeB << ArgA->getSourceRange();
6273 
6274     if (isNull(ArgA)) // adopt type of the other pointer
6275       ArgExprA = ImpCastExprToType(ArgExprA.get(), ArgTypeB, CK_NullToPointer);
6276 
6277     if (isNull(ArgB))
6278       ArgExprB = ImpCastExprToType(ArgExprB.get(), ArgTypeA, CK_NullToPointer);
6279 
6280     TheCall->setArg(0, ArgExprA.get());
6281     TheCall->setArg(1, ArgExprB.get());
6282     TheCall->setType(Context.LongLongTy);
6283     return false;
6284   }
6285   assert(false && "Unhandled ARM MTE intrinsic");
6286   return true;
6287 }
6288 
6289 /// SemaBuiltinARMSpecialReg - Handle a check if argument ArgNum of CallExpr
6290 /// TheCall is an ARM/AArch64 special register string literal.
6291 bool Sema::SemaBuiltinARMSpecialReg(unsigned BuiltinID, CallExpr *TheCall,
6292                                     int ArgNum, unsigned ExpectedFieldNum,
6293                                     bool AllowName) {
6294   bool IsARMBuiltin = BuiltinID == ARM::BI__builtin_arm_rsr64 ||
6295                       BuiltinID == ARM::BI__builtin_arm_wsr64 ||
6296                       BuiltinID == ARM::BI__builtin_arm_rsr ||
6297                       BuiltinID == ARM::BI__builtin_arm_rsrp ||
6298                       BuiltinID == ARM::BI__builtin_arm_wsr ||
6299                       BuiltinID == ARM::BI__builtin_arm_wsrp;
6300   bool IsAArch64Builtin = BuiltinID == AArch64::BI__builtin_arm_rsr64 ||
6301                           BuiltinID == AArch64::BI__builtin_arm_wsr64 ||
6302                           BuiltinID == AArch64::BI__builtin_arm_rsr ||
6303                           BuiltinID == AArch64::BI__builtin_arm_rsrp ||
6304                           BuiltinID == AArch64::BI__builtin_arm_wsr ||
6305                           BuiltinID == AArch64::BI__builtin_arm_wsrp;
6306   assert((IsARMBuiltin || IsAArch64Builtin) && "Unexpected ARM builtin.");
6307 
6308   // We can't check the value of a dependent argument.
6309   Expr *Arg = TheCall->getArg(ArgNum);
6310   if (Arg->isTypeDependent() || Arg->isValueDependent())
6311     return false;
6312 
6313   // Check if the argument is a string literal.
6314   if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts()))
6315     return Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
6316            << Arg->getSourceRange();
6317 
6318   // Check the type of special register given.
6319   StringRef Reg = cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString();
6320   SmallVector<StringRef, 6> Fields;
6321   Reg.split(Fields, ":");
6322 
6323   if (Fields.size() != ExpectedFieldNum && !(AllowName && Fields.size() == 1))
6324     return Diag(TheCall->getBeginLoc(), diag::err_arm_invalid_specialreg)
6325            << Arg->getSourceRange();
6326 
6327   // If the string is the name of a register then we cannot check that it is
6328   // valid here but if the string is of one the forms described in ACLE then we
6329   // can check that the supplied fields are integers and within the valid
6330   // ranges.
6331   if (Fields.size() > 1) {
6332     bool FiveFields = Fields.size() == 5;
6333 
6334     bool ValidString = true;
6335     if (IsARMBuiltin) {
6336       ValidString &= Fields[0].startswith_lower("cp") ||
6337                      Fields[0].startswith_lower("p");
6338       if (ValidString)
6339         Fields[0] =
6340           Fields[0].drop_front(Fields[0].startswith_lower("cp") ? 2 : 1);
6341 
6342       ValidString &= Fields[2].startswith_lower("c");
6343       if (ValidString)
6344         Fields[2] = Fields[2].drop_front(1);
6345 
6346       if (FiveFields) {
6347         ValidString &= Fields[3].startswith_lower("c");
6348         if (ValidString)
6349           Fields[3] = Fields[3].drop_front(1);
6350       }
6351     }
6352 
6353     SmallVector<int, 5> Ranges;
6354     if (FiveFields)
6355       Ranges.append({IsAArch64Builtin ? 1 : 15, 7, 15, 15, 7});
6356     else
6357       Ranges.append({15, 7, 15});
6358 
6359     for (unsigned i=0; i<Fields.size(); ++i) {
6360       int IntField;
6361       ValidString &= !Fields[i].getAsInteger(10, IntField);
6362       ValidString &= (IntField >= 0 && IntField <= Ranges[i]);
6363     }
6364 
6365     if (!ValidString)
6366       return Diag(TheCall->getBeginLoc(), diag::err_arm_invalid_specialreg)
6367              << Arg->getSourceRange();
6368   } else if (IsAArch64Builtin && Fields.size() == 1) {
6369     // If the register name is one of those that appear in the condition below
6370     // and the special register builtin being used is one of the write builtins,
6371     // then we require that the argument provided for writing to the register
6372     // is an integer constant expression. This is because it will be lowered to
6373     // an MSR (immediate) instruction, so we need to know the immediate at
6374     // compile time.
6375     if (TheCall->getNumArgs() != 2)
6376       return false;
6377 
6378     std::string RegLower = Reg.lower();
6379     if (RegLower != "spsel" && RegLower != "daifset" && RegLower != "daifclr" &&
6380         RegLower != "pan" && RegLower != "uao")
6381       return false;
6382 
6383     return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15);
6384   }
6385 
6386   return false;
6387 }
6388 
6389 /// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
6390 /// This checks that the target supports __builtin_longjmp and
6391 /// that val is a constant 1.
6392 bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
6393   if (!Context.getTargetInfo().hasSjLjLowering())
6394     return Diag(TheCall->getBeginLoc(), diag::err_builtin_longjmp_unsupported)
6395            << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc());
6396 
6397   Expr *Arg = TheCall->getArg(1);
6398   llvm::APSInt Result;
6399 
6400   // TODO: This is less than ideal. Overload this to take a value.
6401   if (SemaBuiltinConstantArg(TheCall, 1, Result))
6402     return true;
6403 
6404   if (Result != 1)
6405     return Diag(TheCall->getBeginLoc(), diag::err_builtin_longjmp_invalid_val)
6406            << SourceRange(Arg->getBeginLoc(), Arg->getEndLoc());
6407 
6408   return false;
6409 }
6410 
6411 /// SemaBuiltinSetjmp - Handle __builtin_setjmp(void *env[5]).
6412 /// This checks that the target supports __builtin_setjmp.
6413 bool Sema::SemaBuiltinSetjmp(CallExpr *TheCall) {
6414   if (!Context.getTargetInfo().hasSjLjLowering())
6415     return Diag(TheCall->getBeginLoc(), diag::err_builtin_setjmp_unsupported)
6416            << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc());
6417   return false;
6418 }
6419 
6420 namespace {
6421 
6422 class UncoveredArgHandler {
6423   enum { Unknown = -1, AllCovered = -2 };
6424 
6425   signed FirstUncoveredArg = Unknown;
6426   SmallVector<const Expr *, 4> DiagnosticExprs;
6427 
6428 public:
6429   UncoveredArgHandler() = default;
6430 
6431   bool hasUncoveredArg() const {
6432     return (FirstUncoveredArg >= 0);
6433   }
6434 
6435   unsigned getUncoveredArg() const {
6436     assert(hasUncoveredArg() && "no uncovered argument");
6437     return FirstUncoveredArg;
6438   }
6439 
6440   void setAllCovered() {
6441     // A string has been found with all arguments covered, so clear out
6442     // the diagnostics.
6443     DiagnosticExprs.clear();
6444     FirstUncoveredArg = AllCovered;
6445   }
6446 
6447   void Update(signed NewFirstUncoveredArg, const Expr *StrExpr) {
6448     assert(NewFirstUncoveredArg >= 0 && "Outside range");
6449 
6450     // Don't update if a previous string covers all arguments.
6451     if (FirstUncoveredArg == AllCovered)
6452       return;
6453 
6454     // UncoveredArgHandler tracks the highest uncovered argument index
6455     // and with it all the strings that match this index.
6456     if (NewFirstUncoveredArg == FirstUncoveredArg)
6457       DiagnosticExprs.push_back(StrExpr);
6458     else if (NewFirstUncoveredArg > FirstUncoveredArg) {
6459       DiagnosticExprs.clear();
6460       DiagnosticExprs.push_back(StrExpr);
6461       FirstUncoveredArg = NewFirstUncoveredArg;
6462     }
6463   }
6464 
6465   void Diagnose(Sema &S, bool IsFunctionCall, const Expr *ArgExpr);
6466 };
6467 
6468 enum StringLiteralCheckType {
6469   SLCT_NotALiteral,
6470   SLCT_UncheckedLiteral,
6471   SLCT_CheckedLiteral
6472 };
6473 
6474 } // namespace
6475 
6476 static void sumOffsets(llvm::APSInt &Offset, llvm::APSInt Addend,
6477                                      BinaryOperatorKind BinOpKind,
6478                                      bool AddendIsRight) {
6479   unsigned BitWidth = Offset.getBitWidth();
6480   unsigned AddendBitWidth = Addend.getBitWidth();
6481   // There might be negative interim results.
6482   if (Addend.isUnsigned()) {
6483     Addend = Addend.zext(++AddendBitWidth);
6484     Addend.setIsSigned(true);
6485   }
6486   // Adjust the bit width of the APSInts.
6487   if (AddendBitWidth > BitWidth) {
6488     Offset = Offset.sext(AddendBitWidth);
6489     BitWidth = AddendBitWidth;
6490   } else if (BitWidth > AddendBitWidth) {
6491     Addend = Addend.sext(BitWidth);
6492   }
6493 
6494   bool Ov = false;
6495   llvm::APSInt ResOffset = Offset;
6496   if (BinOpKind == BO_Add)
6497     ResOffset = Offset.sadd_ov(Addend, Ov);
6498   else {
6499     assert(AddendIsRight && BinOpKind == BO_Sub &&
6500            "operator must be add or sub with addend on the right");
6501     ResOffset = Offset.ssub_ov(Addend, Ov);
6502   }
6503 
6504   // We add an offset to a pointer here so we should support an offset as big as
6505   // possible.
6506   if (Ov) {
6507     assert(BitWidth <= std::numeric_limits<unsigned>::max() / 2 &&
6508            "index (intermediate) result too big");
6509     Offset = Offset.sext(2 * BitWidth);
6510     sumOffsets(Offset, Addend, BinOpKind, AddendIsRight);
6511     return;
6512   }
6513 
6514   Offset = ResOffset;
6515 }
6516 
6517 namespace {
6518 
6519 // This is a wrapper class around StringLiteral to support offsetted string
6520 // literals as format strings. It takes the offset into account when returning
6521 // the string and its length or the source locations to display notes correctly.
6522 class FormatStringLiteral {
6523   const StringLiteral *FExpr;
6524   int64_t Offset;
6525 
6526  public:
6527   FormatStringLiteral(const StringLiteral *fexpr, int64_t Offset = 0)
6528       : FExpr(fexpr), Offset(Offset) {}
6529 
6530   StringRef getString() const {
6531     return FExpr->getString().drop_front(Offset);
6532   }
6533 
6534   unsigned getByteLength() const {
6535     return FExpr->getByteLength() - getCharByteWidth() * Offset;
6536   }
6537 
6538   unsigned getLength() const { return FExpr->getLength() - Offset; }
6539   unsigned getCharByteWidth() const { return FExpr->getCharByteWidth(); }
6540 
6541   StringLiteral::StringKind getKind() const { return FExpr->getKind(); }
6542 
6543   QualType getType() const { return FExpr->getType(); }
6544 
6545   bool isAscii() const { return FExpr->isAscii(); }
6546   bool isWide() const { return FExpr->isWide(); }
6547   bool isUTF8() const { return FExpr->isUTF8(); }
6548   bool isUTF16() const { return FExpr->isUTF16(); }
6549   bool isUTF32() const { return FExpr->isUTF32(); }
6550   bool isPascal() const { return FExpr->isPascal(); }
6551 
6552   SourceLocation getLocationOfByte(
6553       unsigned ByteNo, const SourceManager &SM, const LangOptions &Features,
6554       const TargetInfo &Target, unsigned *StartToken = nullptr,
6555       unsigned *StartTokenByteOffset = nullptr) const {
6556     return FExpr->getLocationOfByte(ByteNo + Offset, SM, Features, Target,
6557                                     StartToken, StartTokenByteOffset);
6558   }
6559 
6560   SourceLocation getBeginLoc() const LLVM_READONLY {
6561     return FExpr->getBeginLoc().getLocWithOffset(Offset);
6562   }
6563 
6564   SourceLocation getEndLoc() const LLVM_READONLY { return FExpr->getEndLoc(); }
6565 };
6566 
6567 }  // namespace
6568 
6569 static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr,
6570                               const Expr *OrigFormatExpr,
6571                               ArrayRef<const Expr *> Args,
6572                               bool HasVAListArg, unsigned format_idx,
6573                               unsigned firstDataArg,
6574                               Sema::FormatStringType Type,
6575                               bool inFunctionCall,
6576                               Sema::VariadicCallType CallType,
6577                               llvm::SmallBitVector &CheckedVarArgs,
6578                               UncoveredArgHandler &UncoveredArg,
6579                               bool IgnoreStringsWithoutSpecifiers);
6580 
6581 // Determine if an expression is a string literal or constant string.
6582 // If this function returns false on the arguments to a function expecting a
6583 // format string, we will usually need to emit a warning.
6584 // True string literals are then checked by CheckFormatString.
6585 static StringLiteralCheckType
6586 checkFormatStringExpr(Sema &S, const Expr *E, ArrayRef<const Expr *> Args,
6587                       bool HasVAListArg, unsigned format_idx,
6588                       unsigned firstDataArg, Sema::FormatStringType Type,
6589                       Sema::VariadicCallType CallType, bool InFunctionCall,
6590                       llvm::SmallBitVector &CheckedVarArgs,
6591                       UncoveredArgHandler &UncoveredArg,
6592                       llvm::APSInt Offset,
6593                       bool IgnoreStringsWithoutSpecifiers = false) {
6594   if (S.isConstantEvaluated())
6595     return SLCT_NotALiteral;
6596  tryAgain:
6597   assert(Offset.isSigned() && "invalid offset");
6598 
6599   if (E->isTypeDependent() || E->isValueDependent())
6600     return SLCT_NotALiteral;
6601 
6602   E = E->IgnoreParenCasts();
6603 
6604   if (E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull))
6605     // Technically -Wformat-nonliteral does not warn about this case.
6606     // The behavior of printf and friends in this case is implementation
6607     // dependent.  Ideally if the format string cannot be null then
6608     // it should have a 'nonnull' attribute in the function prototype.
6609     return SLCT_UncheckedLiteral;
6610 
6611   switch (E->getStmtClass()) {
6612   case Stmt::BinaryConditionalOperatorClass:
6613   case Stmt::ConditionalOperatorClass: {
6614     // The expression is a literal if both sub-expressions were, and it was
6615     // completely checked only if both sub-expressions were checked.
6616     const AbstractConditionalOperator *C =
6617         cast<AbstractConditionalOperator>(E);
6618 
6619     // Determine whether it is necessary to check both sub-expressions, for
6620     // example, because the condition expression is a constant that can be
6621     // evaluated at compile time.
6622     bool CheckLeft = true, CheckRight = true;
6623 
6624     bool Cond;
6625     if (C->getCond()->EvaluateAsBooleanCondition(Cond, S.getASTContext(),
6626                                                  S.isConstantEvaluated())) {
6627       if (Cond)
6628         CheckRight = false;
6629       else
6630         CheckLeft = false;
6631     }
6632 
6633     // We need to maintain the offsets for the right and the left hand side
6634     // separately to check if every possible indexed expression is a valid
6635     // string literal. They might have different offsets for different string
6636     // literals in the end.
6637     StringLiteralCheckType Left;
6638     if (!CheckLeft)
6639       Left = SLCT_UncheckedLiteral;
6640     else {
6641       Left = checkFormatStringExpr(S, C->getTrueExpr(), Args,
6642                                    HasVAListArg, format_idx, firstDataArg,
6643                                    Type, CallType, InFunctionCall,
6644                                    CheckedVarArgs, UncoveredArg, Offset,
6645                                    IgnoreStringsWithoutSpecifiers);
6646       if (Left == SLCT_NotALiteral || !CheckRight) {
6647         return Left;
6648       }
6649     }
6650 
6651     StringLiteralCheckType Right = checkFormatStringExpr(
6652         S, C->getFalseExpr(), Args, HasVAListArg, format_idx, firstDataArg,
6653         Type, CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
6654         IgnoreStringsWithoutSpecifiers);
6655 
6656     return (CheckLeft && Left < Right) ? Left : Right;
6657   }
6658 
6659   case Stmt::ImplicitCastExprClass:
6660     E = cast<ImplicitCastExpr>(E)->getSubExpr();
6661     goto tryAgain;
6662 
6663   case Stmt::OpaqueValueExprClass:
6664     if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) {
6665       E = src;
6666       goto tryAgain;
6667     }
6668     return SLCT_NotALiteral;
6669 
6670   case Stmt::PredefinedExprClass:
6671     // While __func__, etc., are technically not string literals, they
6672     // cannot contain format specifiers and thus are not a security
6673     // liability.
6674     return SLCT_UncheckedLiteral;
6675 
6676   case Stmt::DeclRefExprClass: {
6677     const DeclRefExpr *DR = cast<DeclRefExpr>(E);
6678 
6679     // As an exception, do not flag errors for variables binding to
6680     // const string literals.
6681     if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
6682       bool isConstant = false;
6683       QualType T = DR->getType();
6684 
6685       if (const ArrayType *AT = S.Context.getAsArrayType(T)) {
6686         isConstant = AT->getElementType().isConstant(S.Context);
6687       } else if (const PointerType *PT = T->getAs<PointerType>()) {
6688         isConstant = T.isConstant(S.Context) &&
6689                      PT->getPointeeType().isConstant(S.Context);
6690       } else if (T->isObjCObjectPointerType()) {
6691         // In ObjC, there is usually no "const ObjectPointer" type,
6692         // so don't check if the pointee type is constant.
6693         isConstant = T.isConstant(S.Context);
6694       }
6695 
6696       if (isConstant) {
6697         if (const Expr *Init = VD->getAnyInitializer()) {
6698           // Look through initializers like const char c[] = { "foo" }
6699           if (const InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) {
6700             if (InitList->isStringLiteralInit())
6701               Init = InitList->getInit(0)->IgnoreParenImpCasts();
6702           }
6703           return checkFormatStringExpr(S, Init, Args,
6704                                        HasVAListArg, format_idx,
6705                                        firstDataArg, Type, CallType,
6706                                        /*InFunctionCall*/ false, CheckedVarArgs,
6707                                        UncoveredArg, Offset);
6708         }
6709       }
6710 
6711       // For vprintf* functions (i.e., HasVAListArg==true), we add a
6712       // special check to see if the format string is a function parameter
6713       // of the function calling the printf function.  If the function
6714       // has an attribute indicating it is a printf-like function, then we
6715       // should suppress warnings concerning non-literals being used in a call
6716       // to a vprintf function.  For example:
6717       //
6718       // void
6719       // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){
6720       //      va_list ap;
6721       //      va_start(ap, fmt);
6722       //      vprintf(fmt, ap);  // Do NOT emit a warning about "fmt".
6723       //      ...
6724       // }
6725       if (HasVAListArg) {
6726         if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(VD)) {
6727           if (const NamedDecl *ND = dyn_cast<NamedDecl>(PV->getDeclContext())) {
6728             int PVIndex = PV->getFunctionScopeIndex() + 1;
6729             for (const auto *PVFormat : ND->specific_attrs<FormatAttr>()) {
6730               // adjust for implicit parameter
6731               if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND))
6732                 if (MD->isInstance())
6733                   ++PVIndex;
6734               // We also check if the formats are compatible.
6735               // We can't pass a 'scanf' string to a 'printf' function.
6736               if (PVIndex == PVFormat->getFormatIdx() &&
6737                   Type == S.GetFormatStringType(PVFormat))
6738                 return SLCT_UncheckedLiteral;
6739             }
6740           }
6741         }
6742       }
6743     }
6744 
6745     return SLCT_NotALiteral;
6746   }
6747 
6748   case Stmt::CallExprClass:
6749   case Stmt::CXXMemberCallExprClass: {
6750     const CallExpr *CE = cast<CallExpr>(E);
6751     if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
6752       bool IsFirst = true;
6753       StringLiteralCheckType CommonResult;
6754       for (const auto *FA : ND->specific_attrs<FormatArgAttr>()) {
6755         const Expr *Arg = CE->getArg(FA->getFormatIdx().getASTIndex());
6756         StringLiteralCheckType Result = checkFormatStringExpr(
6757             S, Arg, Args, HasVAListArg, format_idx, firstDataArg, Type,
6758             CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
6759             IgnoreStringsWithoutSpecifiers);
6760         if (IsFirst) {
6761           CommonResult = Result;
6762           IsFirst = false;
6763         }
6764       }
6765       if (!IsFirst)
6766         return CommonResult;
6767 
6768       if (const auto *FD = dyn_cast<FunctionDecl>(ND)) {
6769         unsigned BuiltinID = FD->getBuiltinID();
6770         if (BuiltinID == Builtin::BI__builtin___CFStringMakeConstantString ||
6771             BuiltinID == Builtin::BI__builtin___NSStringMakeConstantString) {
6772           const Expr *Arg = CE->getArg(0);
6773           return checkFormatStringExpr(S, Arg, Args,
6774                                        HasVAListArg, format_idx,
6775                                        firstDataArg, Type, CallType,
6776                                        InFunctionCall, CheckedVarArgs,
6777                                        UncoveredArg, Offset,
6778                                        IgnoreStringsWithoutSpecifiers);
6779         }
6780       }
6781     }
6782 
6783     return SLCT_NotALiteral;
6784   }
6785   case Stmt::ObjCMessageExprClass: {
6786     const auto *ME = cast<ObjCMessageExpr>(E);
6787     if (const auto *MD = ME->getMethodDecl()) {
6788       if (const auto *FA = MD->getAttr<FormatArgAttr>()) {
6789         // As a special case heuristic, if we're using the method -[NSBundle
6790         // localizedStringForKey:value:table:], ignore any key strings that lack
6791         // format specifiers. The idea is that if the key doesn't have any
6792         // format specifiers then its probably just a key to map to the
6793         // localized strings. If it does have format specifiers though, then its
6794         // likely that the text of the key is the format string in the
6795         // programmer's language, and should be checked.
6796         const ObjCInterfaceDecl *IFace;
6797         if (MD->isInstanceMethod() && (IFace = MD->getClassInterface()) &&
6798             IFace->getIdentifier()->isStr("NSBundle") &&
6799             MD->getSelector().isKeywordSelector(
6800                 {"localizedStringForKey", "value", "table"})) {
6801           IgnoreStringsWithoutSpecifiers = true;
6802         }
6803 
6804         const Expr *Arg = ME->getArg(FA->getFormatIdx().getASTIndex());
6805         return checkFormatStringExpr(
6806             S, Arg, Args, HasVAListArg, format_idx, firstDataArg, Type,
6807             CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
6808             IgnoreStringsWithoutSpecifiers);
6809       }
6810     }
6811 
6812     return SLCT_NotALiteral;
6813   }
6814   case Stmt::ObjCStringLiteralClass:
6815   case Stmt::StringLiteralClass: {
6816     const StringLiteral *StrE = nullptr;
6817 
6818     if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
6819       StrE = ObjCFExpr->getString();
6820     else
6821       StrE = cast<StringLiteral>(E);
6822 
6823     if (StrE) {
6824       if (Offset.isNegative() || Offset > StrE->getLength()) {
6825         // TODO: It would be better to have an explicit warning for out of
6826         // bounds literals.
6827         return SLCT_NotALiteral;
6828       }
6829       FormatStringLiteral FStr(StrE, Offset.sextOrTrunc(64).getSExtValue());
6830       CheckFormatString(S, &FStr, E, Args, HasVAListArg, format_idx,
6831                         firstDataArg, Type, InFunctionCall, CallType,
6832                         CheckedVarArgs, UncoveredArg,
6833                         IgnoreStringsWithoutSpecifiers);
6834       return SLCT_CheckedLiteral;
6835     }
6836 
6837     return SLCT_NotALiteral;
6838   }
6839   case Stmt::BinaryOperatorClass: {
6840     const BinaryOperator *BinOp = cast<BinaryOperator>(E);
6841 
6842     // A string literal + an int offset is still a string literal.
6843     if (BinOp->isAdditiveOp()) {
6844       Expr::EvalResult LResult, RResult;
6845 
6846       bool LIsInt = BinOp->getLHS()->EvaluateAsInt(
6847           LResult, S.Context, Expr::SE_NoSideEffects, S.isConstantEvaluated());
6848       bool RIsInt = BinOp->getRHS()->EvaluateAsInt(
6849           RResult, S.Context, Expr::SE_NoSideEffects, S.isConstantEvaluated());
6850 
6851       if (LIsInt != RIsInt) {
6852         BinaryOperatorKind BinOpKind = BinOp->getOpcode();
6853 
6854         if (LIsInt) {
6855           if (BinOpKind == BO_Add) {
6856             sumOffsets(Offset, LResult.Val.getInt(), BinOpKind, RIsInt);
6857             E = BinOp->getRHS();
6858             goto tryAgain;
6859           }
6860         } else {
6861           sumOffsets(Offset, RResult.Val.getInt(), BinOpKind, RIsInt);
6862           E = BinOp->getLHS();
6863           goto tryAgain;
6864         }
6865       }
6866     }
6867 
6868     return SLCT_NotALiteral;
6869   }
6870   case Stmt::UnaryOperatorClass: {
6871     const UnaryOperator *UnaOp = cast<UnaryOperator>(E);
6872     auto ASE = dyn_cast<ArraySubscriptExpr>(UnaOp->getSubExpr());
6873     if (UnaOp->getOpcode() == UO_AddrOf && ASE) {
6874       Expr::EvalResult IndexResult;
6875       if (ASE->getRHS()->EvaluateAsInt(IndexResult, S.Context,
6876                                        Expr::SE_NoSideEffects,
6877                                        S.isConstantEvaluated())) {
6878         sumOffsets(Offset, IndexResult.Val.getInt(), BO_Add,
6879                    /*RHS is int*/ true);
6880         E = ASE->getBase();
6881         goto tryAgain;
6882       }
6883     }
6884 
6885     return SLCT_NotALiteral;
6886   }
6887 
6888   default:
6889     return SLCT_NotALiteral;
6890   }
6891 }
6892 
6893 Sema::FormatStringType Sema::GetFormatStringType(const FormatAttr *Format) {
6894   return llvm::StringSwitch<FormatStringType>(Format->getType()->getName())
6895       .Case("scanf", FST_Scanf)
6896       .Cases("printf", "printf0", FST_Printf)
6897       .Cases("NSString", "CFString", FST_NSString)
6898       .Case("strftime", FST_Strftime)
6899       .Case("strfmon", FST_Strfmon)
6900       .Cases("kprintf", "cmn_err", "vcmn_err", "zcmn_err", FST_Kprintf)
6901       .Case("freebsd_kprintf", FST_FreeBSDKPrintf)
6902       .Case("os_trace", FST_OSLog)
6903       .Case("os_log", FST_OSLog)
6904       .Default(FST_Unknown);
6905 }
6906 
6907 /// CheckFormatArguments - Check calls to printf and scanf (and similar
6908 /// functions) for correct use of format strings.
6909 /// Returns true if a format string has been fully checked.
6910 bool Sema::CheckFormatArguments(const FormatAttr *Format,
6911                                 ArrayRef<const Expr *> Args,
6912                                 bool IsCXXMember,
6913                                 VariadicCallType CallType,
6914                                 SourceLocation Loc, SourceRange Range,
6915                                 llvm::SmallBitVector &CheckedVarArgs) {
6916   FormatStringInfo FSI;
6917   if (getFormatStringInfo(Format, IsCXXMember, &FSI))
6918     return CheckFormatArguments(Args, FSI.HasVAListArg, FSI.FormatIdx,
6919                                 FSI.FirstDataArg, GetFormatStringType(Format),
6920                                 CallType, Loc, Range, CheckedVarArgs);
6921   return false;
6922 }
6923 
6924 bool Sema::CheckFormatArguments(ArrayRef<const Expr *> Args,
6925                                 bool HasVAListArg, unsigned format_idx,
6926                                 unsigned firstDataArg, FormatStringType Type,
6927                                 VariadicCallType CallType,
6928                                 SourceLocation Loc, SourceRange Range,
6929                                 llvm::SmallBitVector &CheckedVarArgs) {
6930   // CHECK: printf/scanf-like function is called with no format string.
6931   if (format_idx >= Args.size()) {
6932     Diag(Loc, diag::warn_missing_format_string) << Range;
6933     return false;
6934   }
6935 
6936   const Expr *OrigFormatExpr = Args[format_idx]->IgnoreParenCasts();
6937 
6938   // CHECK: format string is not a string literal.
6939   //
6940   // Dynamically generated format strings are difficult to
6941   // automatically vet at compile time.  Requiring that format strings
6942   // are string literals: (1) permits the checking of format strings by
6943   // the compiler and thereby (2) can practically remove the source of
6944   // many format string exploits.
6945 
6946   // Format string can be either ObjC string (e.g. @"%d") or
6947   // C string (e.g. "%d")
6948   // ObjC string uses the same format specifiers as C string, so we can use
6949   // the same format string checking logic for both ObjC and C strings.
6950   UncoveredArgHandler UncoveredArg;
6951   StringLiteralCheckType CT =
6952       checkFormatStringExpr(*this, OrigFormatExpr, Args, HasVAListArg,
6953                             format_idx, firstDataArg, Type, CallType,
6954                             /*IsFunctionCall*/ true, CheckedVarArgs,
6955                             UncoveredArg,
6956                             /*no string offset*/ llvm::APSInt(64, false) = 0);
6957 
6958   // Generate a diagnostic where an uncovered argument is detected.
6959   if (UncoveredArg.hasUncoveredArg()) {
6960     unsigned ArgIdx = UncoveredArg.getUncoveredArg() + firstDataArg;
6961     assert(ArgIdx < Args.size() && "ArgIdx outside bounds");
6962     UncoveredArg.Diagnose(*this, /*IsFunctionCall*/true, Args[ArgIdx]);
6963   }
6964 
6965   if (CT != SLCT_NotALiteral)
6966     // Literal format string found, check done!
6967     return CT == SLCT_CheckedLiteral;
6968 
6969   // Strftime is particular as it always uses a single 'time' argument,
6970   // so it is safe to pass a non-literal string.
6971   if (Type == FST_Strftime)
6972     return false;
6973 
6974   // Do not emit diag when the string param is a macro expansion and the
6975   // format is either NSString or CFString. This is a hack to prevent
6976   // diag when using the NSLocalizedString and CFCopyLocalizedString macros
6977   // which are usually used in place of NS and CF string literals.
6978   SourceLocation FormatLoc = Args[format_idx]->getBeginLoc();
6979   if (Type == FST_NSString && SourceMgr.isInSystemMacro(FormatLoc))
6980     return false;
6981 
6982   // If there are no arguments specified, warn with -Wformat-security, otherwise
6983   // warn only with -Wformat-nonliteral.
6984   if (Args.size() == firstDataArg) {
6985     Diag(FormatLoc, diag::warn_format_nonliteral_noargs)
6986       << OrigFormatExpr->getSourceRange();
6987     switch (Type) {
6988     default:
6989       break;
6990     case FST_Kprintf:
6991     case FST_FreeBSDKPrintf:
6992     case FST_Printf:
6993       Diag(FormatLoc, diag::note_format_security_fixit)
6994         << FixItHint::CreateInsertion(FormatLoc, "\"%s\", ");
6995       break;
6996     case FST_NSString:
6997       Diag(FormatLoc, diag::note_format_security_fixit)
6998         << FixItHint::CreateInsertion(FormatLoc, "@\"%@\", ");
6999       break;
7000     }
7001   } else {
7002     Diag(FormatLoc, diag::warn_format_nonliteral)
7003       << OrigFormatExpr->getSourceRange();
7004   }
7005   return false;
7006 }
7007 
7008 namespace {
7009 
7010 class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
7011 protected:
7012   Sema &S;
7013   const FormatStringLiteral *FExpr;
7014   const Expr *OrigFormatExpr;
7015   const Sema::FormatStringType FSType;
7016   const unsigned FirstDataArg;
7017   const unsigned NumDataArgs;
7018   const char *Beg; // Start of format string.
7019   const bool HasVAListArg;
7020   ArrayRef<const Expr *> Args;
7021   unsigned FormatIdx;
7022   llvm::SmallBitVector CoveredArgs;
7023   bool usesPositionalArgs = false;
7024   bool atFirstArg = true;
7025   bool inFunctionCall;
7026   Sema::VariadicCallType CallType;
7027   llvm::SmallBitVector &CheckedVarArgs;
7028   UncoveredArgHandler &UncoveredArg;
7029 
7030 public:
7031   CheckFormatHandler(Sema &s, const FormatStringLiteral *fexpr,
7032                      const Expr *origFormatExpr,
7033                      const Sema::FormatStringType type, unsigned firstDataArg,
7034                      unsigned numDataArgs, const char *beg, bool hasVAListArg,
7035                      ArrayRef<const Expr *> Args, unsigned formatIdx,
7036                      bool inFunctionCall, Sema::VariadicCallType callType,
7037                      llvm::SmallBitVector &CheckedVarArgs,
7038                      UncoveredArgHandler &UncoveredArg)
7039       : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr), FSType(type),
7040         FirstDataArg(firstDataArg), NumDataArgs(numDataArgs), Beg(beg),
7041         HasVAListArg(hasVAListArg), Args(Args), FormatIdx(formatIdx),
7042         inFunctionCall(inFunctionCall), CallType(callType),
7043         CheckedVarArgs(CheckedVarArgs), UncoveredArg(UncoveredArg) {
7044     CoveredArgs.resize(numDataArgs);
7045     CoveredArgs.reset();
7046   }
7047 
7048   void DoneProcessing();
7049 
7050   void HandleIncompleteSpecifier(const char *startSpecifier,
7051                                  unsigned specifierLen) override;
7052 
7053   void HandleInvalidLengthModifier(
7054                            const analyze_format_string::FormatSpecifier &FS,
7055                            const analyze_format_string::ConversionSpecifier &CS,
7056                            const char *startSpecifier, unsigned specifierLen,
7057                            unsigned DiagID);
7058 
7059   void HandleNonStandardLengthModifier(
7060                     const analyze_format_string::FormatSpecifier &FS,
7061                     const char *startSpecifier, unsigned specifierLen);
7062 
7063   void HandleNonStandardConversionSpecifier(
7064                     const analyze_format_string::ConversionSpecifier &CS,
7065                     const char *startSpecifier, unsigned specifierLen);
7066 
7067   void HandlePosition(const char *startPos, unsigned posLen) override;
7068 
7069   void HandleInvalidPosition(const char *startSpecifier,
7070                              unsigned specifierLen,
7071                              analyze_format_string::PositionContext p) override;
7072 
7073   void HandleZeroPosition(const char *startPos, unsigned posLen) override;
7074 
7075   void HandleNullChar(const char *nullCharacter) override;
7076 
7077   template <typename Range>
7078   static void
7079   EmitFormatDiagnostic(Sema &S, bool inFunctionCall, const Expr *ArgumentExpr,
7080                        const PartialDiagnostic &PDiag, SourceLocation StringLoc,
7081                        bool IsStringLocation, Range StringRange,
7082                        ArrayRef<FixItHint> Fixit = None);
7083 
7084 protected:
7085   bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
7086                                         const char *startSpec,
7087                                         unsigned specifierLen,
7088                                         const char *csStart, unsigned csLen);
7089 
7090   void HandlePositionalNonpositionalArgs(SourceLocation Loc,
7091                                          const char *startSpec,
7092                                          unsigned specifierLen);
7093 
7094   SourceRange getFormatStringRange();
7095   CharSourceRange getSpecifierRange(const char *startSpecifier,
7096                                     unsigned specifierLen);
7097   SourceLocation getLocationOfByte(const char *x);
7098 
7099   const Expr *getDataArg(unsigned i) const;
7100 
7101   bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
7102                     const analyze_format_string::ConversionSpecifier &CS,
7103                     const char *startSpecifier, unsigned specifierLen,
7104                     unsigned argIndex);
7105 
7106   template <typename Range>
7107   void EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation StringLoc,
7108                             bool IsStringLocation, Range StringRange,
7109                             ArrayRef<FixItHint> Fixit = None);
7110 };
7111 
7112 } // namespace
7113 
7114 SourceRange CheckFormatHandler::getFormatStringRange() {
7115   return OrigFormatExpr->getSourceRange();
7116 }
7117 
7118 CharSourceRange CheckFormatHandler::
7119 getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
7120   SourceLocation Start = getLocationOfByte(startSpecifier);
7121   SourceLocation End   = getLocationOfByte(startSpecifier + specifierLen - 1);
7122 
7123   // Advance the end SourceLocation by one due to half-open ranges.
7124   End = End.getLocWithOffset(1);
7125 
7126   return CharSourceRange::getCharRange(Start, End);
7127 }
7128 
7129 SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
7130   return FExpr->getLocationOfByte(x - Beg, S.getSourceManager(),
7131                                   S.getLangOpts(), S.Context.getTargetInfo());
7132 }
7133 
7134 void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
7135                                                    unsigned specifierLen){
7136   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_incomplete_specifier),
7137                        getLocationOfByte(startSpecifier),
7138                        /*IsStringLocation*/true,
7139                        getSpecifierRange(startSpecifier, specifierLen));
7140 }
7141 
7142 void CheckFormatHandler::HandleInvalidLengthModifier(
7143     const analyze_format_string::FormatSpecifier &FS,
7144     const analyze_format_string::ConversionSpecifier &CS,
7145     const char *startSpecifier, unsigned specifierLen, unsigned DiagID) {
7146   using namespace analyze_format_string;
7147 
7148   const LengthModifier &LM = FS.getLengthModifier();
7149   CharSourceRange LMRange = getSpecifierRange(LM.getStart(), LM.getLength());
7150 
7151   // See if we know how to fix this length modifier.
7152   Optional<LengthModifier> FixedLM = FS.getCorrectedLengthModifier();
7153   if (FixedLM) {
7154     EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(),
7155                          getLocationOfByte(LM.getStart()),
7156                          /*IsStringLocation*/true,
7157                          getSpecifierRange(startSpecifier, specifierLen));
7158 
7159     S.Diag(getLocationOfByte(LM.getStart()), diag::note_format_fix_specifier)
7160       << FixedLM->toString()
7161       << FixItHint::CreateReplacement(LMRange, FixedLM->toString());
7162 
7163   } else {
7164     FixItHint Hint;
7165     if (DiagID == diag::warn_format_nonsensical_length)
7166       Hint = FixItHint::CreateRemoval(LMRange);
7167 
7168     EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(),
7169                          getLocationOfByte(LM.getStart()),
7170                          /*IsStringLocation*/true,
7171                          getSpecifierRange(startSpecifier, specifierLen),
7172                          Hint);
7173   }
7174 }
7175 
7176 void CheckFormatHandler::HandleNonStandardLengthModifier(
7177     const analyze_format_string::FormatSpecifier &FS,
7178     const char *startSpecifier, unsigned specifierLen) {
7179   using namespace analyze_format_string;
7180 
7181   const LengthModifier &LM = FS.getLengthModifier();
7182   CharSourceRange LMRange = getSpecifierRange(LM.getStart(), LM.getLength());
7183 
7184   // See if we know how to fix this length modifier.
7185   Optional<LengthModifier> FixedLM = FS.getCorrectedLengthModifier();
7186   if (FixedLM) {
7187     EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard)
7188                            << LM.toString() << 0,
7189                          getLocationOfByte(LM.getStart()),
7190                          /*IsStringLocation*/true,
7191                          getSpecifierRange(startSpecifier, specifierLen));
7192 
7193     S.Diag(getLocationOfByte(LM.getStart()), diag::note_format_fix_specifier)
7194       << FixedLM->toString()
7195       << FixItHint::CreateReplacement(LMRange, FixedLM->toString());
7196 
7197   } else {
7198     EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard)
7199                            << LM.toString() << 0,
7200                          getLocationOfByte(LM.getStart()),
7201                          /*IsStringLocation*/true,
7202                          getSpecifierRange(startSpecifier, specifierLen));
7203   }
7204 }
7205 
7206 void CheckFormatHandler::HandleNonStandardConversionSpecifier(
7207     const analyze_format_string::ConversionSpecifier &CS,
7208     const char *startSpecifier, unsigned specifierLen) {
7209   using namespace analyze_format_string;
7210 
7211   // See if we know how to fix this conversion specifier.
7212   Optional<ConversionSpecifier> FixedCS = CS.getStandardSpecifier();
7213   if (FixedCS) {
7214     EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard)
7215                           << CS.toString() << /*conversion specifier*/1,
7216                          getLocationOfByte(CS.getStart()),
7217                          /*IsStringLocation*/true,
7218                          getSpecifierRange(startSpecifier, specifierLen));
7219 
7220     CharSourceRange CSRange = getSpecifierRange(CS.getStart(), CS.getLength());
7221     S.Diag(getLocationOfByte(CS.getStart()), diag::note_format_fix_specifier)
7222       << FixedCS->toString()
7223       << FixItHint::CreateReplacement(CSRange, FixedCS->toString());
7224   } else {
7225     EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard)
7226                           << CS.toString() << /*conversion specifier*/1,
7227                          getLocationOfByte(CS.getStart()),
7228                          /*IsStringLocation*/true,
7229                          getSpecifierRange(startSpecifier, specifierLen));
7230   }
7231 }
7232 
7233 void CheckFormatHandler::HandlePosition(const char *startPos,
7234                                         unsigned posLen) {
7235   EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard_positional_arg),
7236                                getLocationOfByte(startPos),
7237                                /*IsStringLocation*/true,
7238                                getSpecifierRange(startPos, posLen));
7239 }
7240 
7241 void
7242 CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
7243                                      analyze_format_string::PositionContext p) {
7244   EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_positional_specifier)
7245                          << (unsigned) p,
7246                        getLocationOfByte(startPos), /*IsStringLocation*/true,
7247                        getSpecifierRange(startPos, posLen));
7248 }
7249 
7250 void CheckFormatHandler::HandleZeroPosition(const char *startPos,
7251                                             unsigned posLen) {
7252   EmitFormatDiagnostic(S.PDiag(diag::warn_format_zero_positional_specifier),
7253                                getLocationOfByte(startPos),
7254                                /*IsStringLocation*/true,
7255                                getSpecifierRange(startPos, posLen));
7256 }
7257 
7258 void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
7259   if (!isa<ObjCStringLiteral>(OrigFormatExpr)) {
7260     // The presence of a null character is likely an error.
7261     EmitFormatDiagnostic(
7262       S.PDiag(diag::warn_printf_format_string_contains_null_char),
7263       getLocationOfByte(nullCharacter), /*IsStringLocation*/true,
7264       getFormatStringRange());
7265   }
7266 }
7267 
7268 // Note that this may return NULL if there was an error parsing or building
7269 // one of the argument expressions.
7270 const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
7271   return Args[FirstDataArg + i];
7272 }
7273 
7274 void CheckFormatHandler::DoneProcessing() {
7275   // Does the number of data arguments exceed the number of
7276   // format conversions in the format string?
7277   if (!HasVAListArg) {
7278       // Find any arguments that weren't covered.
7279     CoveredArgs.flip();
7280     signed notCoveredArg = CoveredArgs.find_first();
7281     if (notCoveredArg >= 0) {
7282       assert((unsigned)notCoveredArg < NumDataArgs);
7283       UncoveredArg.Update(notCoveredArg, OrigFormatExpr);
7284     } else {
7285       UncoveredArg.setAllCovered();
7286     }
7287   }
7288 }
7289 
7290 void UncoveredArgHandler::Diagnose(Sema &S, bool IsFunctionCall,
7291                                    const Expr *ArgExpr) {
7292   assert(hasUncoveredArg() && DiagnosticExprs.size() > 0 &&
7293          "Invalid state");
7294 
7295   if (!ArgExpr)
7296     return;
7297 
7298   SourceLocation Loc = ArgExpr->getBeginLoc();
7299 
7300   if (S.getSourceManager().isInSystemMacro(Loc))
7301     return;
7302 
7303   PartialDiagnostic PDiag = S.PDiag(diag::warn_printf_data_arg_not_used);
7304   for (auto E : DiagnosticExprs)
7305     PDiag << E->getSourceRange();
7306 
7307   CheckFormatHandler::EmitFormatDiagnostic(
7308                                   S, IsFunctionCall, DiagnosticExprs[0],
7309                                   PDiag, Loc, /*IsStringLocation*/false,
7310                                   DiagnosticExprs[0]->getSourceRange());
7311 }
7312 
7313 bool
7314 CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
7315                                                      SourceLocation Loc,
7316                                                      const char *startSpec,
7317                                                      unsigned specifierLen,
7318                                                      const char *csStart,
7319                                                      unsigned csLen) {
7320   bool keepGoing = true;
7321   if (argIndex < NumDataArgs) {
7322     // Consider the argument coverered, even though the specifier doesn't
7323     // make sense.
7324     CoveredArgs.set(argIndex);
7325   }
7326   else {
7327     // If argIndex exceeds the number of data arguments we
7328     // don't issue a warning because that is just a cascade of warnings (and
7329     // they may have intended '%%' anyway). We don't want to continue processing
7330     // the format string after this point, however, as we will like just get
7331     // gibberish when trying to match arguments.
7332     keepGoing = false;
7333   }
7334 
7335   StringRef Specifier(csStart, csLen);
7336 
7337   // If the specifier in non-printable, it could be the first byte of a UTF-8
7338   // sequence. In that case, print the UTF-8 code point. If not, print the byte
7339   // hex value.
7340   std::string CodePointStr;
7341   if (!llvm::sys::locale::isPrint(*csStart)) {
7342     llvm::UTF32 CodePoint;
7343     const llvm::UTF8 **B = reinterpret_cast<const llvm::UTF8 **>(&csStart);
7344     const llvm::UTF8 *E =
7345         reinterpret_cast<const llvm::UTF8 *>(csStart + csLen);
7346     llvm::ConversionResult Result =
7347         llvm::convertUTF8Sequence(B, E, &CodePoint, llvm::strictConversion);
7348 
7349     if (Result != llvm::conversionOK) {
7350       unsigned char FirstChar = *csStart;
7351       CodePoint = (llvm::UTF32)FirstChar;
7352     }
7353 
7354     llvm::raw_string_ostream OS(CodePointStr);
7355     if (CodePoint < 256)
7356       OS << "\\x" << llvm::format("%02x", CodePoint);
7357     else if (CodePoint <= 0xFFFF)
7358       OS << "\\u" << llvm::format("%04x", CodePoint);
7359     else
7360       OS << "\\U" << llvm::format("%08x", CodePoint);
7361     OS.flush();
7362     Specifier = CodePointStr;
7363   }
7364 
7365   EmitFormatDiagnostic(
7366       S.PDiag(diag::warn_format_invalid_conversion) << Specifier, Loc,
7367       /*IsStringLocation*/ true, getSpecifierRange(startSpec, specifierLen));
7368 
7369   return keepGoing;
7370 }
7371 
7372 void
7373 CheckFormatHandler::HandlePositionalNonpositionalArgs(SourceLocation Loc,
7374                                                       const char *startSpec,
7375                                                       unsigned specifierLen) {
7376   EmitFormatDiagnostic(
7377     S.PDiag(diag::warn_format_mix_positional_nonpositional_args),
7378     Loc, /*isStringLoc*/true, getSpecifierRange(startSpec, specifierLen));
7379 }
7380 
7381 bool
7382 CheckFormatHandler::CheckNumArgs(
7383   const analyze_format_string::FormatSpecifier &FS,
7384   const analyze_format_string::ConversionSpecifier &CS,
7385   const char *startSpecifier, unsigned specifierLen, unsigned argIndex) {
7386 
7387   if (argIndex >= NumDataArgs) {
7388     PartialDiagnostic PDiag = FS.usesPositionalArg()
7389       ? (S.PDiag(diag::warn_printf_positional_arg_exceeds_data_args)
7390            << (argIndex+1) << NumDataArgs)
7391       : S.PDiag(diag::warn_printf_insufficient_data_args);
7392     EmitFormatDiagnostic(
7393       PDiag, getLocationOfByte(CS.getStart()), /*IsStringLocation*/true,
7394       getSpecifierRange(startSpecifier, specifierLen));
7395 
7396     // Since more arguments than conversion tokens are given, by extension
7397     // all arguments are covered, so mark this as so.
7398     UncoveredArg.setAllCovered();
7399     return false;
7400   }
7401   return true;
7402 }
7403 
7404 template<typename Range>
7405 void CheckFormatHandler::EmitFormatDiagnostic(PartialDiagnostic PDiag,
7406                                               SourceLocation Loc,
7407                                               bool IsStringLocation,
7408                                               Range StringRange,
7409                                               ArrayRef<FixItHint> FixIt) {
7410   EmitFormatDiagnostic(S, inFunctionCall, Args[FormatIdx], PDiag,
7411                        Loc, IsStringLocation, StringRange, FixIt);
7412 }
7413 
7414 /// If the format string is not within the function call, emit a note
7415 /// so that the function call and string are in diagnostic messages.
7416 ///
7417 /// \param InFunctionCall if true, the format string is within the function
7418 /// call and only one diagnostic message will be produced.  Otherwise, an
7419 /// extra note will be emitted pointing to location of the format string.
7420 ///
7421 /// \param ArgumentExpr the expression that is passed as the format string
7422 /// argument in the function call.  Used for getting locations when two
7423 /// diagnostics are emitted.
7424 ///
7425 /// \param PDiag the callee should already have provided any strings for the
7426 /// diagnostic message.  This function only adds locations and fixits
7427 /// to diagnostics.
7428 ///
7429 /// \param Loc primary location for diagnostic.  If two diagnostics are
7430 /// required, one will be at Loc and a new SourceLocation will be created for
7431 /// the other one.
7432 ///
7433 /// \param IsStringLocation if true, Loc points to the format string should be
7434 /// used for the note.  Otherwise, Loc points to the argument list and will
7435 /// be used with PDiag.
7436 ///
7437 /// \param StringRange some or all of the string to highlight.  This is
7438 /// templated so it can accept either a CharSourceRange or a SourceRange.
7439 ///
7440 /// \param FixIt optional fix it hint for the format string.
7441 template <typename Range>
7442 void CheckFormatHandler::EmitFormatDiagnostic(
7443     Sema &S, bool InFunctionCall, const Expr *ArgumentExpr,
7444     const PartialDiagnostic &PDiag, SourceLocation Loc, bool IsStringLocation,
7445     Range StringRange, ArrayRef<FixItHint> FixIt) {
7446   if (InFunctionCall) {
7447     const Sema::SemaDiagnosticBuilder &D = S.Diag(Loc, PDiag);
7448     D << StringRange;
7449     D << FixIt;
7450   } else {
7451     S.Diag(IsStringLocation ? ArgumentExpr->getExprLoc() : Loc, PDiag)
7452       << ArgumentExpr->getSourceRange();
7453 
7454     const Sema::SemaDiagnosticBuilder &Note =
7455       S.Diag(IsStringLocation ? Loc : StringRange.getBegin(),
7456              diag::note_format_string_defined);
7457 
7458     Note << StringRange;
7459     Note << FixIt;
7460   }
7461 }
7462 
7463 //===--- CHECK: Printf format string checking ------------------------------===//
7464 
7465 namespace {
7466 
7467 class CheckPrintfHandler : public CheckFormatHandler {
7468 public:
7469   CheckPrintfHandler(Sema &s, const FormatStringLiteral *fexpr,
7470                      const Expr *origFormatExpr,
7471                      const Sema::FormatStringType type, unsigned firstDataArg,
7472                      unsigned numDataArgs, bool isObjC, const char *beg,
7473                      bool hasVAListArg, ArrayRef<const Expr *> Args,
7474                      unsigned formatIdx, bool inFunctionCall,
7475                      Sema::VariadicCallType CallType,
7476                      llvm::SmallBitVector &CheckedVarArgs,
7477                      UncoveredArgHandler &UncoveredArg)
7478       : CheckFormatHandler(s, fexpr, origFormatExpr, type, firstDataArg,
7479                            numDataArgs, beg, hasVAListArg, Args, formatIdx,
7480                            inFunctionCall, CallType, CheckedVarArgs,
7481                            UncoveredArg) {}
7482 
7483   bool isObjCContext() const { return FSType == Sema::FST_NSString; }
7484 
7485   /// Returns true if '%@' specifiers are allowed in the format string.
7486   bool allowsObjCArg() const {
7487     return FSType == Sema::FST_NSString || FSType == Sema::FST_OSLog ||
7488            FSType == Sema::FST_OSTrace;
7489   }
7490 
7491   bool HandleInvalidPrintfConversionSpecifier(
7492                                       const analyze_printf::PrintfSpecifier &FS,
7493                                       const char *startSpecifier,
7494                                       unsigned specifierLen) override;
7495 
7496   void handleInvalidMaskType(StringRef MaskType) override;
7497 
7498   bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
7499                              const char *startSpecifier,
7500                              unsigned specifierLen) override;
7501   bool checkFormatExpr(const analyze_printf::PrintfSpecifier &FS,
7502                        const char *StartSpecifier,
7503                        unsigned SpecifierLen,
7504                        const Expr *E);
7505 
7506   bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k,
7507                     const char *startSpecifier, unsigned specifierLen);
7508   void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS,
7509                            const analyze_printf::OptionalAmount &Amt,
7510                            unsigned type,
7511                            const char *startSpecifier, unsigned specifierLen);
7512   void HandleFlag(const analyze_printf::PrintfSpecifier &FS,
7513                   const analyze_printf::OptionalFlag &flag,
7514                   const char *startSpecifier, unsigned specifierLen);
7515   void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS,
7516                          const analyze_printf::OptionalFlag &ignoredFlag,
7517                          const analyze_printf::OptionalFlag &flag,
7518                          const char *startSpecifier, unsigned specifierLen);
7519   bool checkForCStrMembers(const analyze_printf::ArgType &AT,
7520                            const Expr *E);
7521 
7522   void HandleEmptyObjCModifierFlag(const char *startFlag,
7523                                    unsigned flagLen) override;
7524 
7525   void HandleInvalidObjCModifierFlag(const char *startFlag,
7526                                             unsigned flagLen) override;
7527 
7528   void HandleObjCFlagsWithNonObjCConversion(const char *flagsStart,
7529                                            const char *flagsEnd,
7530                                            const char *conversionPosition)
7531                                              override;
7532 };
7533 
7534 } // namespace
7535 
7536 bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
7537                                       const analyze_printf::PrintfSpecifier &FS,
7538                                       const char *startSpecifier,
7539                                       unsigned specifierLen) {
7540   const analyze_printf::PrintfConversionSpecifier &CS =
7541     FS.getConversionSpecifier();
7542 
7543   return HandleInvalidConversionSpecifier(FS.getArgIndex(),
7544                                           getLocationOfByte(CS.getStart()),
7545                                           startSpecifier, specifierLen,
7546                                           CS.getStart(), CS.getLength());
7547 }
7548 
7549 void CheckPrintfHandler::handleInvalidMaskType(StringRef MaskType) {
7550   S.Diag(getLocationOfByte(MaskType.data()), diag::err_invalid_mask_type_size);
7551 }
7552 
7553 bool CheckPrintfHandler::HandleAmount(
7554                                const analyze_format_string::OptionalAmount &Amt,
7555                                unsigned k, const char *startSpecifier,
7556                                unsigned specifierLen) {
7557   if (Amt.hasDataArgument()) {
7558     if (!HasVAListArg) {
7559       unsigned argIndex = Amt.getArgIndex();
7560       if (argIndex >= NumDataArgs) {
7561         EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_missing_arg)
7562                                << k,
7563                              getLocationOfByte(Amt.getStart()),
7564                              /*IsStringLocation*/true,
7565                              getSpecifierRange(startSpecifier, specifierLen));
7566         // Don't do any more checking.  We will just emit
7567         // spurious errors.
7568         return false;
7569       }
7570 
7571       // Type check the data argument.  It should be an 'int'.
7572       // Although not in conformance with C99, we also allow the argument to be
7573       // an 'unsigned int' as that is a reasonably safe case.  GCC also
7574       // doesn't emit a warning for that case.
7575       CoveredArgs.set(argIndex);
7576       const Expr *Arg = getDataArg(argIndex);
7577       if (!Arg)
7578         return false;
7579 
7580       QualType T = Arg->getType();
7581 
7582       const analyze_printf::ArgType &AT = Amt.getArgType(S.Context);
7583       assert(AT.isValid());
7584 
7585       if (!AT.matchesType(S.Context, T)) {
7586         EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_wrong_type)
7587                                << k << AT.getRepresentativeTypeName(S.Context)
7588                                << T << Arg->getSourceRange(),
7589                              getLocationOfByte(Amt.getStart()),
7590                              /*IsStringLocation*/true,
7591                              getSpecifierRange(startSpecifier, specifierLen));
7592         // Don't do any more checking.  We will just emit
7593         // spurious errors.
7594         return false;
7595       }
7596     }
7597   }
7598   return true;
7599 }
7600 
7601 void CheckPrintfHandler::HandleInvalidAmount(
7602                                       const analyze_printf::PrintfSpecifier &FS,
7603                                       const analyze_printf::OptionalAmount &Amt,
7604                                       unsigned type,
7605                                       const char *startSpecifier,
7606                                       unsigned specifierLen) {
7607   const analyze_printf::PrintfConversionSpecifier &CS =
7608     FS.getConversionSpecifier();
7609 
7610   FixItHint fixit =
7611     Amt.getHowSpecified() == analyze_printf::OptionalAmount::Constant
7612       ? FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(),
7613                                  Amt.getConstantLength()))
7614       : FixItHint();
7615 
7616   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_optional_amount)
7617                          << type << CS.toString(),
7618                        getLocationOfByte(Amt.getStart()),
7619                        /*IsStringLocation*/true,
7620                        getSpecifierRange(startSpecifier, specifierLen),
7621                        fixit);
7622 }
7623 
7624 void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
7625                                     const analyze_printf::OptionalFlag &flag,
7626                                     const char *startSpecifier,
7627                                     unsigned specifierLen) {
7628   // Warn about pointless flag with a fixit removal.
7629   const analyze_printf::PrintfConversionSpecifier &CS =
7630     FS.getConversionSpecifier();
7631   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_flag)
7632                          << flag.toString() << CS.toString(),
7633                        getLocationOfByte(flag.getPosition()),
7634                        /*IsStringLocation*/true,
7635                        getSpecifierRange(startSpecifier, specifierLen),
7636                        FixItHint::CreateRemoval(
7637                          getSpecifierRange(flag.getPosition(), 1)));
7638 }
7639 
7640 void CheckPrintfHandler::HandleIgnoredFlag(
7641                                 const analyze_printf::PrintfSpecifier &FS,
7642                                 const analyze_printf::OptionalFlag &ignoredFlag,
7643                                 const analyze_printf::OptionalFlag &flag,
7644                                 const char *startSpecifier,
7645                                 unsigned specifierLen) {
7646   // Warn about ignored flag with a fixit removal.
7647   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_ignored_flag)
7648                          << ignoredFlag.toString() << flag.toString(),
7649                        getLocationOfByte(ignoredFlag.getPosition()),
7650                        /*IsStringLocation*/true,
7651                        getSpecifierRange(startSpecifier, specifierLen),
7652                        FixItHint::CreateRemoval(
7653                          getSpecifierRange(ignoredFlag.getPosition(), 1)));
7654 }
7655 
7656 void CheckPrintfHandler::HandleEmptyObjCModifierFlag(const char *startFlag,
7657                                                      unsigned flagLen) {
7658   // Warn about an empty flag.
7659   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_empty_objc_flag),
7660                        getLocationOfByte(startFlag),
7661                        /*IsStringLocation*/true,
7662                        getSpecifierRange(startFlag, flagLen));
7663 }
7664 
7665 void CheckPrintfHandler::HandleInvalidObjCModifierFlag(const char *startFlag,
7666                                                        unsigned flagLen) {
7667   // Warn about an invalid flag.
7668   auto Range = getSpecifierRange(startFlag, flagLen);
7669   StringRef flag(startFlag, flagLen);
7670   EmitFormatDiagnostic(S.PDiag(diag::warn_printf_invalid_objc_flag) << flag,
7671                       getLocationOfByte(startFlag),
7672                       /*IsStringLocation*/true,
7673                       Range, FixItHint::CreateRemoval(Range));
7674 }
7675 
7676 void CheckPrintfHandler::HandleObjCFlagsWithNonObjCConversion(
7677     const char *flagsStart, const char *flagsEnd, const char *conversionPosition) {
7678     // Warn about using '[...]' without a '@' conversion.
7679     auto Range = getSpecifierRange(flagsStart, flagsEnd - flagsStart + 1);
7680     auto diag = diag::warn_printf_ObjCflags_without_ObjCConversion;
7681     EmitFormatDiagnostic(S.PDiag(diag) << StringRef(conversionPosition, 1),
7682                          getLocationOfByte(conversionPosition),
7683                          /*IsStringLocation*/true,
7684                          Range, FixItHint::CreateRemoval(Range));
7685 }
7686 
7687 // Determines if the specified is a C++ class or struct containing
7688 // a member with the specified name and kind (e.g. a CXXMethodDecl named
7689 // "c_str()").
7690 template<typename MemberKind>
7691 static llvm::SmallPtrSet<MemberKind*, 1>
7692 CXXRecordMembersNamed(StringRef Name, Sema &S, QualType Ty) {
7693   const RecordType *RT = Ty->getAs<RecordType>();
7694   llvm::SmallPtrSet<MemberKind*, 1> Results;
7695 
7696   if (!RT)
7697     return Results;
7698   const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl());
7699   if (!RD || !RD->getDefinition())
7700     return Results;
7701 
7702   LookupResult R(S, &S.Context.Idents.get(Name), SourceLocation(),
7703                  Sema::LookupMemberName);
7704   R.suppressDiagnostics();
7705 
7706   // We just need to include all members of the right kind turned up by the
7707   // filter, at this point.
7708   if (S.LookupQualifiedName(R, RT->getDecl()))
7709     for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
7710       NamedDecl *decl = (*I)->getUnderlyingDecl();
7711       if (MemberKind *FK = dyn_cast<MemberKind>(decl))
7712         Results.insert(FK);
7713     }
7714   return Results;
7715 }
7716 
7717 /// Check if we could call '.c_str()' on an object.
7718 ///
7719 /// FIXME: This returns the wrong results in some cases (if cv-qualifiers don't
7720 /// allow the call, or if it would be ambiguous).
7721 bool Sema::hasCStrMethod(const Expr *E) {
7722   using MethodSet = llvm::SmallPtrSet<CXXMethodDecl *, 1>;
7723 
7724   MethodSet Results =
7725       CXXRecordMembersNamed<CXXMethodDecl>("c_str", *this, E->getType());
7726   for (MethodSet::iterator MI = Results.begin(), ME = Results.end();
7727        MI != ME; ++MI)
7728     if ((*MI)->getMinRequiredArguments() == 0)
7729       return true;
7730   return false;
7731 }
7732 
7733 // Check if a (w)string was passed when a (w)char* was needed, and offer a
7734 // better diagnostic if so. AT is assumed to be valid.
7735 // Returns true when a c_str() conversion method is found.
7736 bool CheckPrintfHandler::checkForCStrMembers(
7737     const analyze_printf::ArgType &AT, const Expr *E) {
7738   using MethodSet = llvm::SmallPtrSet<CXXMethodDecl *, 1>;
7739 
7740   MethodSet Results =
7741       CXXRecordMembersNamed<CXXMethodDecl>("c_str", S, E->getType());
7742 
7743   for (MethodSet::iterator MI = Results.begin(), ME = Results.end();
7744        MI != ME; ++MI) {
7745     const CXXMethodDecl *Method = *MI;
7746     if (Method->getMinRequiredArguments() == 0 &&
7747         AT.matchesType(S.Context, Method->getReturnType())) {
7748       // FIXME: Suggest parens if the expression needs them.
7749       SourceLocation EndLoc = S.getLocForEndOfToken(E->getEndLoc());
7750       S.Diag(E->getBeginLoc(), diag::note_printf_c_str)
7751           << "c_str()" << FixItHint::CreateInsertion(EndLoc, ".c_str()");
7752       return true;
7753     }
7754   }
7755 
7756   return false;
7757 }
7758 
7759 bool
7760 CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
7761                                             &FS,
7762                                           const char *startSpecifier,
7763                                           unsigned specifierLen) {
7764   using namespace analyze_format_string;
7765   using namespace analyze_printf;
7766 
7767   const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
7768 
7769   if (FS.consumesDataArgument()) {
7770     if (atFirstArg) {
7771         atFirstArg = false;
7772         usesPositionalArgs = FS.usesPositionalArg();
7773     }
7774     else if (usesPositionalArgs != FS.usesPositionalArg()) {
7775       HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
7776                                         startSpecifier, specifierLen);
7777       return false;
7778     }
7779   }
7780 
7781   // First check if the field width, precision, and conversion specifier
7782   // have matching data arguments.
7783   if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0,
7784                     startSpecifier, specifierLen)) {
7785     return false;
7786   }
7787 
7788   if (!HandleAmount(FS.getPrecision(), /* precision */ 1,
7789                     startSpecifier, specifierLen)) {
7790     return false;
7791   }
7792 
7793   if (!CS.consumesDataArgument()) {
7794     // FIXME: Technically specifying a precision or field width here
7795     // makes no sense.  Worth issuing a warning at some point.
7796     return true;
7797   }
7798 
7799   // Consume the argument.
7800   unsigned argIndex = FS.getArgIndex();
7801   if (argIndex < NumDataArgs) {
7802     // The check to see if the argIndex is valid will come later.
7803     // We set the bit here because we may exit early from this
7804     // function if we encounter some other error.
7805     CoveredArgs.set(argIndex);
7806   }
7807 
7808   // FreeBSD kernel extensions.
7809   if (CS.getKind() == ConversionSpecifier::FreeBSDbArg ||
7810       CS.getKind() == ConversionSpecifier::FreeBSDDArg) {
7811     // We need at least two arguments.
7812     if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex + 1))
7813       return false;
7814 
7815     // Claim the second argument.
7816     CoveredArgs.set(argIndex + 1);
7817 
7818     // Type check the first argument (int for %b, pointer for %D)
7819     const Expr *Ex = getDataArg(argIndex);
7820     const analyze_printf::ArgType &AT =
7821       (CS.getKind() == ConversionSpecifier::FreeBSDbArg) ?
7822         ArgType(S.Context.IntTy) : ArgType::CPointerTy;
7823     if (AT.isValid() && !AT.matchesType(S.Context, Ex->getType()))
7824       EmitFormatDiagnostic(
7825           S.PDiag(diag::warn_format_conversion_argument_type_mismatch)
7826               << AT.getRepresentativeTypeName(S.Context) << Ex->getType()
7827               << false << Ex->getSourceRange(),
7828           Ex->getBeginLoc(), /*IsStringLocation*/ false,
7829           getSpecifierRange(startSpecifier, specifierLen));
7830 
7831     // Type check the second argument (char * for both %b and %D)
7832     Ex = getDataArg(argIndex + 1);
7833     const analyze_printf::ArgType &AT2 = ArgType::CStrTy;
7834     if (AT2.isValid() && !AT2.matchesType(S.Context, Ex->getType()))
7835       EmitFormatDiagnostic(
7836           S.PDiag(diag::warn_format_conversion_argument_type_mismatch)
7837               << AT2.getRepresentativeTypeName(S.Context) << Ex->getType()
7838               << false << Ex->getSourceRange(),
7839           Ex->getBeginLoc(), /*IsStringLocation*/ false,
7840           getSpecifierRange(startSpecifier, specifierLen));
7841 
7842      return true;
7843   }
7844 
7845   // Check for using an Objective-C specific conversion specifier
7846   // in a non-ObjC literal.
7847   if (!allowsObjCArg() && CS.isObjCArg()) {
7848     return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
7849                                                   specifierLen);
7850   }
7851 
7852   // %P can only be used with os_log.
7853   if (FSType != Sema::FST_OSLog && CS.getKind() == ConversionSpecifier::PArg) {
7854     return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
7855                                                   specifierLen);
7856   }
7857 
7858   // %n is not allowed with os_log.
7859   if (FSType == Sema::FST_OSLog && CS.getKind() == ConversionSpecifier::nArg) {
7860     EmitFormatDiagnostic(S.PDiag(diag::warn_os_log_format_narg),
7861                          getLocationOfByte(CS.getStart()),
7862                          /*IsStringLocation*/ false,
7863                          getSpecifierRange(startSpecifier, specifierLen));
7864 
7865     return true;
7866   }
7867 
7868   // Only scalars are allowed for os_trace.
7869   if (FSType == Sema::FST_OSTrace &&
7870       (CS.getKind() == ConversionSpecifier::PArg ||
7871        CS.getKind() == ConversionSpecifier::sArg ||
7872        CS.getKind() == ConversionSpecifier::ObjCObjArg)) {
7873     return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
7874                                                   specifierLen);
7875   }
7876 
7877   // Check for use of public/private annotation outside of os_log().
7878   if (FSType != Sema::FST_OSLog) {
7879     if (FS.isPublic().isSet()) {
7880       EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_annotation)
7881                                << "public",
7882                            getLocationOfByte(FS.isPublic().getPosition()),
7883                            /*IsStringLocation*/ false,
7884                            getSpecifierRange(startSpecifier, specifierLen));
7885     }
7886     if (FS.isPrivate().isSet()) {
7887       EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_annotation)
7888                                << "private",
7889                            getLocationOfByte(FS.isPrivate().getPosition()),
7890                            /*IsStringLocation*/ false,
7891                            getSpecifierRange(startSpecifier, specifierLen));
7892     }
7893   }
7894 
7895   // Check for invalid use of field width
7896   if (!FS.hasValidFieldWidth()) {
7897     HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
7898         startSpecifier, specifierLen);
7899   }
7900 
7901   // Check for invalid use of precision
7902   if (!FS.hasValidPrecision()) {
7903     HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1,
7904         startSpecifier, specifierLen);
7905   }
7906 
7907   // Precision is mandatory for %P specifier.
7908   if (CS.getKind() == ConversionSpecifier::PArg &&
7909       FS.getPrecision().getHowSpecified() == OptionalAmount::NotSpecified) {
7910     EmitFormatDiagnostic(S.PDiag(diag::warn_format_P_no_precision),
7911                          getLocationOfByte(startSpecifier),
7912                          /*IsStringLocation*/ false,
7913                          getSpecifierRange(startSpecifier, specifierLen));
7914   }
7915 
7916   // Check each flag does not conflict with any other component.
7917   if (!FS.hasValidThousandsGroupingPrefix())
7918     HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen);
7919   if (!FS.hasValidLeadingZeros())
7920     HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
7921   if (!FS.hasValidPlusPrefix())
7922     HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
7923   if (!FS.hasValidSpacePrefix())
7924     HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
7925   if (!FS.hasValidAlternativeForm())
7926     HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen);
7927   if (!FS.hasValidLeftJustified())
7928     HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen);
7929 
7930   // Check that flags are not ignored by another flag
7931   if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
7932     HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
7933         startSpecifier, specifierLen);
7934   if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-'
7935     HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(),
7936             startSpecifier, specifierLen);
7937 
7938   // Check the length modifier is valid with the given conversion specifier.
7939   if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(),
7940                                  S.getLangOpts()))
7941     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
7942                                 diag::warn_format_nonsensical_length);
7943   else if (!FS.hasStandardLengthModifier())
7944     HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen);
7945   else if (!FS.hasStandardLengthConversionCombination())
7946     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
7947                                 diag::warn_format_non_standard_conversion_spec);
7948 
7949   if (!FS.hasStandardConversionSpecifier(S.getLangOpts()))
7950     HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen);
7951 
7952   // The remaining checks depend on the data arguments.
7953   if (HasVAListArg)
7954     return true;
7955 
7956   if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
7957     return false;
7958 
7959   const Expr *Arg = getDataArg(argIndex);
7960   if (!Arg)
7961     return true;
7962 
7963   return checkFormatExpr(FS, startSpecifier, specifierLen, Arg);
7964 }
7965 
7966 static bool requiresParensToAddCast(const Expr *E) {
7967   // FIXME: We should have a general way to reason about operator
7968   // precedence and whether parens are actually needed here.
7969   // Take care of a few common cases where they aren't.
7970   const Expr *Inside = E->IgnoreImpCasts();
7971   if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(Inside))
7972     Inside = POE->getSyntacticForm()->IgnoreImpCasts();
7973 
7974   switch (Inside->getStmtClass()) {
7975   case Stmt::ArraySubscriptExprClass:
7976   case Stmt::CallExprClass:
7977   case Stmt::CharacterLiteralClass:
7978   case Stmt::CXXBoolLiteralExprClass:
7979   case Stmt::DeclRefExprClass:
7980   case Stmt::FloatingLiteralClass:
7981   case Stmt::IntegerLiteralClass:
7982   case Stmt::MemberExprClass:
7983   case Stmt::ObjCArrayLiteralClass:
7984   case Stmt::ObjCBoolLiteralExprClass:
7985   case Stmt::ObjCBoxedExprClass:
7986   case Stmt::ObjCDictionaryLiteralClass:
7987   case Stmt::ObjCEncodeExprClass:
7988   case Stmt::ObjCIvarRefExprClass:
7989   case Stmt::ObjCMessageExprClass:
7990   case Stmt::ObjCPropertyRefExprClass:
7991   case Stmt::ObjCStringLiteralClass:
7992   case Stmt::ObjCSubscriptRefExprClass:
7993   case Stmt::ParenExprClass:
7994   case Stmt::StringLiteralClass:
7995   case Stmt::UnaryOperatorClass:
7996     return false;
7997   default:
7998     return true;
7999   }
8000 }
8001 
8002 static std::pair<QualType, StringRef>
8003 shouldNotPrintDirectly(const ASTContext &Context,
8004                        QualType IntendedTy,
8005                        const Expr *E) {
8006   // Use a 'while' to peel off layers of typedefs.
8007   QualType TyTy = IntendedTy;
8008   while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) {
8009     StringRef Name = UserTy->getDecl()->getName();
8010     QualType CastTy = llvm::StringSwitch<QualType>(Name)
8011       .Case("CFIndex", Context.getNSIntegerType())
8012       .Case("NSInteger", Context.getNSIntegerType())
8013       .Case("NSUInteger", Context.getNSUIntegerType())
8014       .Case("SInt32", Context.IntTy)
8015       .Case("UInt32", Context.UnsignedIntTy)
8016       .Default(QualType());
8017 
8018     if (!CastTy.isNull())
8019       return std::make_pair(CastTy, Name);
8020 
8021     TyTy = UserTy->desugar();
8022   }
8023 
8024   // Strip parens if necessary.
8025   if (const ParenExpr *PE = dyn_cast<ParenExpr>(E))
8026     return shouldNotPrintDirectly(Context,
8027                                   PE->getSubExpr()->getType(),
8028                                   PE->getSubExpr());
8029 
8030   // If this is a conditional expression, then its result type is constructed
8031   // via usual arithmetic conversions and thus there might be no necessary
8032   // typedef sugar there.  Recurse to operands to check for NSInteger &
8033   // Co. usage condition.
8034   if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
8035     QualType TrueTy, FalseTy;
8036     StringRef TrueName, FalseName;
8037 
8038     std::tie(TrueTy, TrueName) =
8039       shouldNotPrintDirectly(Context,
8040                              CO->getTrueExpr()->getType(),
8041                              CO->getTrueExpr());
8042     std::tie(FalseTy, FalseName) =
8043       shouldNotPrintDirectly(Context,
8044                              CO->getFalseExpr()->getType(),
8045                              CO->getFalseExpr());
8046 
8047     if (TrueTy == FalseTy)
8048       return std::make_pair(TrueTy, TrueName);
8049     else if (TrueTy.isNull())
8050       return std::make_pair(FalseTy, FalseName);
8051     else if (FalseTy.isNull())
8052       return std::make_pair(TrueTy, TrueName);
8053   }
8054 
8055   return std::make_pair(QualType(), StringRef());
8056 }
8057 
8058 /// Return true if \p ICE is an implicit argument promotion of an arithmetic
8059 /// type. Bit-field 'promotions' from a higher ranked type to a lower ranked
8060 /// type do not count.
8061 static bool
8062 isArithmeticArgumentPromotion(Sema &S, const ImplicitCastExpr *ICE) {
8063   QualType From = ICE->getSubExpr()->getType();
8064   QualType To = ICE->getType();
8065   // It's an integer promotion if the destination type is the promoted
8066   // source type.
8067   if (ICE->getCastKind() == CK_IntegralCast &&
8068       From->isPromotableIntegerType() &&
8069       S.Context.getPromotedIntegerType(From) == To)
8070     return true;
8071   // Look through vector types, since we do default argument promotion for
8072   // those in OpenCL.
8073   if (const auto *VecTy = From->getAs<ExtVectorType>())
8074     From = VecTy->getElementType();
8075   if (const auto *VecTy = To->getAs<ExtVectorType>())
8076     To = VecTy->getElementType();
8077   // It's a floating promotion if the source type is a lower rank.
8078   return ICE->getCastKind() == CK_FloatingCast &&
8079          S.Context.getFloatingTypeOrder(From, To) < 0;
8080 }
8081 
8082 bool
8083 CheckPrintfHandler::checkFormatExpr(const analyze_printf::PrintfSpecifier &FS,
8084                                     const char *StartSpecifier,
8085                                     unsigned SpecifierLen,
8086                                     const Expr *E) {
8087   using namespace analyze_format_string;
8088   using namespace analyze_printf;
8089 
8090   // Now type check the data expression that matches the
8091   // format specifier.
8092   const analyze_printf::ArgType &AT = FS.getArgType(S.Context, isObjCContext());
8093   if (!AT.isValid())
8094     return true;
8095 
8096   QualType ExprTy = E->getType();
8097   while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) {
8098     ExprTy = TET->getUnderlyingExpr()->getType();
8099   }
8100 
8101   const analyze_printf::ArgType::MatchKind Match =
8102       AT.matchesType(S.Context, ExprTy);
8103   bool Pedantic = Match == analyze_printf::ArgType::NoMatchPedantic;
8104   if (Match == analyze_printf::ArgType::Match)
8105     return true;
8106 
8107   // Look through argument promotions for our error message's reported type.
8108   // This includes the integral and floating promotions, but excludes array
8109   // and function pointer decay (seeing that an argument intended to be a
8110   // string has type 'char [6]' is probably more confusing than 'char *') and
8111   // certain bitfield promotions (bitfields can be 'demoted' to a lesser type).
8112   if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
8113     if (isArithmeticArgumentPromotion(S, ICE)) {
8114       E = ICE->getSubExpr();
8115       ExprTy = E->getType();
8116 
8117       // Check if we didn't match because of an implicit cast from a 'char'
8118       // or 'short' to an 'int'.  This is done because printf is a varargs
8119       // function.
8120       if (ICE->getType() == S.Context.IntTy ||
8121           ICE->getType() == S.Context.UnsignedIntTy) {
8122         // All further checking is done on the subexpression.
8123         if (AT.matchesType(S.Context, ExprTy))
8124           return true;
8125       }
8126     }
8127   } else if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E)) {
8128     // Special case for 'a', which has type 'int' in C.
8129     // Note, however, that we do /not/ want to treat multibyte constants like
8130     // 'MooV' as characters! This form is deprecated but still exists.
8131     if (ExprTy == S.Context.IntTy)
8132       if (llvm::isUIntN(S.Context.getCharWidth(), CL->getValue()))
8133         ExprTy = S.Context.CharTy;
8134   }
8135 
8136   // Look through enums to their underlying type.
8137   bool IsEnum = false;
8138   if (auto EnumTy = ExprTy->getAs<EnumType>()) {
8139     ExprTy = EnumTy->getDecl()->getIntegerType();
8140     IsEnum = true;
8141   }
8142 
8143   // %C in an Objective-C context prints a unichar, not a wchar_t.
8144   // If the argument is an integer of some kind, believe the %C and suggest
8145   // a cast instead of changing the conversion specifier.
8146   QualType IntendedTy = ExprTy;
8147   if (isObjCContext() &&
8148       FS.getConversionSpecifier().getKind() == ConversionSpecifier::CArg) {
8149     if (ExprTy->isIntegralOrUnscopedEnumerationType() &&
8150         !ExprTy->isCharType()) {
8151       // 'unichar' is defined as a typedef of unsigned short, but we should
8152       // prefer using the typedef if it is visible.
8153       IntendedTy = S.Context.UnsignedShortTy;
8154 
8155       // While we are here, check if the value is an IntegerLiteral that happens
8156       // to be within the valid range.
8157       if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) {
8158         const llvm::APInt &V = IL->getValue();
8159         if (V.getActiveBits() <= S.Context.getTypeSize(IntendedTy))
8160           return true;
8161       }
8162 
8163       LookupResult Result(S, &S.Context.Idents.get("unichar"), E->getBeginLoc(),
8164                           Sema::LookupOrdinaryName);
8165       if (S.LookupName(Result, S.getCurScope())) {
8166         NamedDecl *ND = Result.getFoundDecl();
8167         if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(ND))
8168           if (TD->getUnderlyingType() == IntendedTy)
8169             IntendedTy = S.Context.getTypedefType(TD);
8170       }
8171     }
8172   }
8173 
8174   // Special-case some of Darwin's platform-independence types by suggesting
8175   // casts to primitive types that are known to be large enough.
8176   bool ShouldNotPrintDirectly = false; StringRef CastTyName;
8177   if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
8178     QualType CastTy;
8179     std::tie(CastTy, CastTyName) = shouldNotPrintDirectly(S.Context, IntendedTy, E);
8180     if (!CastTy.isNull()) {
8181       // %zi/%zu and %td/%tu are OK to use for NSInteger/NSUInteger of type int
8182       // (long in ASTContext). Only complain to pedants.
8183       if ((CastTyName == "NSInteger" || CastTyName == "NSUInteger") &&
8184           (AT.isSizeT() || AT.isPtrdiffT()) &&
8185           AT.matchesType(S.Context, CastTy))
8186         Pedantic = true;
8187       IntendedTy = CastTy;
8188       ShouldNotPrintDirectly = true;
8189     }
8190   }
8191 
8192   // We may be able to offer a FixItHint if it is a supported type.
8193   PrintfSpecifier fixedFS = FS;
8194   bool Success =
8195       fixedFS.fixType(IntendedTy, S.getLangOpts(), S.Context, isObjCContext());
8196 
8197   if (Success) {
8198     // Get the fix string from the fixed format specifier
8199     SmallString<16> buf;
8200     llvm::raw_svector_ostream os(buf);
8201     fixedFS.toString(os);
8202 
8203     CharSourceRange SpecRange = getSpecifierRange(StartSpecifier, SpecifierLen);
8204 
8205     if (IntendedTy == ExprTy && !ShouldNotPrintDirectly) {
8206       unsigned Diag =
8207           Pedantic
8208               ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8209               : diag::warn_format_conversion_argument_type_mismatch;
8210       // In this case, the specifier is wrong and should be changed to match
8211       // the argument.
8212       EmitFormatDiagnostic(S.PDiag(Diag)
8213                                << AT.getRepresentativeTypeName(S.Context)
8214                                << IntendedTy << IsEnum << E->getSourceRange(),
8215                            E->getBeginLoc(),
8216                            /*IsStringLocation*/ false, SpecRange,
8217                            FixItHint::CreateReplacement(SpecRange, os.str()));
8218     } else {
8219       // The canonical type for formatting this value is different from the
8220       // actual type of the expression. (This occurs, for example, with Darwin's
8221       // NSInteger on 32-bit platforms, where it is typedef'd as 'int', but
8222       // should be printed as 'long' for 64-bit compatibility.)
8223       // Rather than emitting a normal format/argument mismatch, we want to
8224       // add a cast to the recommended type (and correct the format string
8225       // if necessary).
8226       SmallString<16> CastBuf;
8227       llvm::raw_svector_ostream CastFix(CastBuf);
8228       CastFix << "(";
8229       IntendedTy.print(CastFix, S.Context.getPrintingPolicy());
8230       CastFix << ")";
8231 
8232       SmallVector<FixItHint,4> Hints;
8233       if (!AT.matchesType(S.Context, IntendedTy) || ShouldNotPrintDirectly)
8234         Hints.push_back(FixItHint::CreateReplacement(SpecRange, os.str()));
8235 
8236       if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) {
8237         // If there's already a cast present, just replace it.
8238         SourceRange CastRange(CCast->getLParenLoc(), CCast->getRParenLoc());
8239         Hints.push_back(FixItHint::CreateReplacement(CastRange, CastFix.str()));
8240 
8241       } else if (!requiresParensToAddCast(E)) {
8242         // If the expression has high enough precedence,
8243         // just write the C-style cast.
8244         Hints.push_back(
8245             FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str()));
8246       } else {
8247         // Otherwise, add parens around the expression as well as the cast.
8248         CastFix << "(";
8249         Hints.push_back(
8250             FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str()));
8251 
8252         SourceLocation After = S.getLocForEndOfToken(E->getEndLoc());
8253         Hints.push_back(FixItHint::CreateInsertion(After, ")"));
8254       }
8255 
8256       if (ShouldNotPrintDirectly) {
8257         // The expression has a type that should not be printed directly.
8258         // We extract the name from the typedef because we don't want to show
8259         // the underlying type in the diagnostic.
8260         StringRef Name;
8261         if (const TypedefType *TypedefTy = dyn_cast<TypedefType>(ExprTy))
8262           Name = TypedefTy->getDecl()->getName();
8263         else
8264           Name = CastTyName;
8265         unsigned Diag = Pedantic
8266                             ? diag::warn_format_argument_needs_cast_pedantic
8267                             : diag::warn_format_argument_needs_cast;
8268         EmitFormatDiagnostic(S.PDiag(Diag) << Name << IntendedTy << IsEnum
8269                                            << E->getSourceRange(),
8270                              E->getBeginLoc(), /*IsStringLocation=*/false,
8271                              SpecRange, Hints);
8272       } else {
8273         // In this case, the expression could be printed using a different
8274         // specifier, but we've decided that the specifier is probably correct
8275         // and we should cast instead. Just use the normal warning message.
8276         EmitFormatDiagnostic(
8277             S.PDiag(diag::warn_format_conversion_argument_type_mismatch)
8278                 << AT.getRepresentativeTypeName(S.Context) << ExprTy << IsEnum
8279                 << E->getSourceRange(),
8280             E->getBeginLoc(), /*IsStringLocation*/ false, SpecRange, Hints);
8281       }
8282     }
8283   } else {
8284     const CharSourceRange &CSR = getSpecifierRange(StartSpecifier,
8285                                                    SpecifierLen);
8286     // Since the warning for passing non-POD types to variadic functions
8287     // was deferred until now, we emit a warning for non-POD
8288     // arguments here.
8289     switch (S.isValidVarArgType(ExprTy)) {
8290     case Sema::VAK_Valid:
8291     case Sema::VAK_ValidInCXX11: {
8292       unsigned Diag =
8293           Pedantic
8294               ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8295               : diag::warn_format_conversion_argument_type_mismatch;
8296 
8297       EmitFormatDiagnostic(
8298           S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context) << ExprTy
8299                         << IsEnum << CSR << E->getSourceRange(),
8300           E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
8301       break;
8302     }
8303     case Sema::VAK_Undefined:
8304     case Sema::VAK_MSVCUndefined:
8305       EmitFormatDiagnostic(S.PDiag(diag::warn_non_pod_vararg_with_format_string)
8306                                << S.getLangOpts().CPlusPlus11 << ExprTy
8307                                << CallType
8308                                << AT.getRepresentativeTypeName(S.Context) << CSR
8309                                << E->getSourceRange(),
8310                            E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
8311       checkForCStrMembers(AT, E);
8312       break;
8313 
8314     case Sema::VAK_Invalid:
8315       if (ExprTy->isObjCObjectType())
8316         EmitFormatDiagnostic(
8317             S.PDiag(diag::err_cannot_pass_objc_interface_to_vararg_format)
8318                 << S.getLangOpts().CPlusPlus11 << ExprTy << CallType
8319                 << AT.getRepresentativeTypeName(S.Context) << CSR
8320                 << E->getSourceRange(),
8321             E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
8322       else
8323         // FIXME: If this is an initializer list, suggest removing the braces
8324         // or inserting a cast to the target type.
8325         S.Diag(E->getBeginLoc(), diag::err_cannot_pass_to_vararg_format)
8326             << isa<InitListExpr>(E) << ExprTy << CallType
8327             << AT.getRepresentativeTypeName(S.Context) << E->getSourceRange();
8328       break;
8329     }
8330 
8331     assert(FirstDataArg + FS.getArgIndex() < CheckedVarArgs.size() &&
8332            "format string specifier index out of range");
8333     CheckedVarArgs[FirstDataArg + FS.getArgIndex()] = true;
8334   }
8335 
8336   return true;
8337 }
8338 
8339 //===--- CHECK: Scanf format string checking ------------------------------===//
8340 
8341 namespace {
8342 
8343 class CheckScanfHandler : public CheckFormatHandler {
8344 public:
8345   CheckScanfHandler(Sema &s, const FormatStringLiteral *fexpr,
8346                     const Expr *origFormatExpr, Sema::FormatStringType type,
8347                     unsigned firstDataArg, unsigned numDataArgs,
8348                     const char *beg, bool hasVAListArg,
8349                     ArrayRef<const Expr *> Args, unsigned formatIdx,
8350                     bool inFunctionCall, Sema::VariadicCallType CallType,
8351                     llvm::SmallBitVector &CheckedVarArgs,
8352                     UncoveredArgHandler &UncoveredArg)
8353       : CheckFormatHandler(s, fexpr, origFormatExpr, type, firstDataArg,
8354                            numDataArgs, beg, hasVAListArg, Args, formatIdx,
8355                            inFunctionCall, CallType, CheckedVarArgs,
8356                            UncoveredArg) {}
8357 
8358   bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
8359                             const char *startSpecifier,
8360                             unsigned specifierLen) override;
8361 
8362   bool HandleInvalidScanfConversionSpecifier(
8363           const analyze_scanf::ScanfSpecifier &FS,
8364           const char *startSpecifier,
8365           unsigned specifierLen) override;
8366 
8367   void HandleIncompleteScanList(const char *start, const char *end) override;
8368 };
8369 
8370 } // namespace
8371 
8372 void CheckScanfHandler::HandleIncompleteScanList(const char *start,
8373                                                  const char *end) {
8374   EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete),
8375                        getLocationOfByte(end), /*IsStringLocation*/true,
8376                        getSpecifierRange(start, end - start));
8377 }
8378 
8379 bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
8380                                         const analyze_scanf::ScanfSpecifier &FS,
8381                                         const char *startSpecifier,
8382                                         unsigned specifierLen) {
8383   const analyze_scanf::ScanfConversionSpecifier &CS =
8384     FS.getConversionSpecifier();
8385 
8386   return HandleInvalidConversionSpecifier(FS.getArgIndex(),
8387                                           getLocationOfByte(CS.getStart()),
8388                                           startSpecifier, specifierLen,
8389                                           CS.getStart(), CS.getLength());
8390 }
8391 
8392 bool CheckScanfHandler::HandleScanfSpecifier(
8393                                        const analyze_scanf::ScanfSpecifier &FS,
8394                                        const char *startSpecifier,
8395                                        unsigned specifierLen) {
8396   using namespace analyze_scanf;
8397   using namespace analyze_format_string;
8398 
8399   const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
8400 
8401   // Handle case where '%' and '*' don't consume an argument.  These shouldn't
8402   // be used to decide if we are using positional arguments consistently.
8403   if (FS.consumesDataArgument()) {
8404     if (atFirstArg) {
8405       atFirstArg = false;
8406       usesPositionalArgs = FS.usesPositionalArg();
8407     }
8408     else if (usesPositionalArgs != FS.usesPositionalArg()) {
8409       HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
8410                                         startSpecifier, specifierLen);
8411       return false;
8412     }
8413   }
8414 
8415   // Check if the field with is non-zero.
8416   const OptionalAmount &Amt = FS.getFieldWidth();
8417   if (Amt.getHowSpecified() == OptionalAmount::Constant) {
8418     if (Amt.getConstantAmount() == 0) {
8419       const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
8420                                                    Amt.getConstantLength());
8421       EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width),
8422                            getLocationOfByte(Amt.getStart()),
8423                            /*IsStringLocation*/true, R,
8424                            FixItHint::CreateRemoval(R));
8425     }
8426   }
8427 
8428   if (!FS.consumesDataArgument()) {
8429     // FIXME: Technically specifying a precision or field width here
8430     // makes no sense.  Worth issuing a warning at some point.
8431     return true;
8432   }
8433 
8434   // Consume the argument.
8435   unsigned argIndex = FS.getArgIndex();
8436   if (argIndex < NumDataArgs) {
8437       // The check to see if the argIndex is valid will come later.
8438       // We set the bit here because we may exit early from this
8439       // function if we encounter some other error.
8440     CoveredArgs.set(argIndex);
8441   }
8442 
8443   // Check the length modifier is valid with the given conversion specifier.
8444   if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(),
8445                                  S.getLangOpts()))
8446     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
8447                                 diag::warn_format_nonsensical_length);
8448   else if (!FS.hasStandardLengthModifier())
8449     HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen);
8450   else if (!FS.hasStandardLengthConversionCombination())
8451     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
8452                                 diag::warn_format_non_standard_conversion_spec);
8453 
8454   if (!FS.hasStandardConversionSpecifier(S.getLangOpts()))
8455     HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen);
8456 
8457   // The remaining checks depend on the data arguments.
8458   if (HasVAListArg)
8459     return true;
8460 
8461   if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
8462     return false;
8463 
8464   // Check that the argument type matches the format specifier.
8465   const Expr *Ex = getDataArg(argIndex);
8466   if (!Ex)
8467     return true;
8468 
8469   const analyze_format_string::ArgType &AT = FS.getArgType(S.Context);
8470 
8471   if (!AT.isValid()) {
8472     return true;
8473   }
8474 
8475   analyze_format_string::ArgType::MatchKind Match =
8476       AT.matchesType(S.Context, Ex->getType());
8477   bool Pedantic = Match == analyze_format_string::ArgType::NoMatchPedantic;
8478   if (Match == analyze_format_string::ArgType::Match)
8479     return true;
8480 
8481   ScanfSpecifier fixedFS = FS;
8482   bool Success = fixedFS.fixType(Ex->getType(), Ex->IgnoreImpCasts()->getType(),
8483                                  S.getLangOpts(), S.Context);
8484 
8485   unsigned Diag =
8486       Pedantic ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8487                : diag::warn_format_conversion_argument_type_mismatch;
8488 
8489   if (Success) {
8490     // Get the fix string from the fixed format specifier.
8491     SmallString<128> buf;
8492     llvm::raw_svector_ostream os(buf);
8493     fixedFS.toString(os);
8494 
8495     EmitFormatDiagnostic(
8496         S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context)
8497                       << Ex->getType() << false << Ex->getSourceRange(),
8498         Ex->getBeginLoc(),
8499         /*IsStringLocation*/ false,
8500         getSpecifierRange(startSpecifier, specifierLen),
8501         FixItHint::CreateReplacement(
8502             getSpecifierRange(startSpecifier, specifierLen), os.str()));
8503   } else {
8504     EmitFormatDiagnostic(S.PDiag(Diag)
8505                              << AT.getRepresentativeTypeName(S.Context)
8506                              << Ex->getType() << false << Ex->getSourceRange(),
8507                          Ex->getBeginLoc(),
8508                          /*IsStringLocation*/ false,
8509                          getSpecifierRange(startSpecifier, specifierLen));
8510   }
8511 
8512   return true;
8513 }
8514 
8515 static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr,
8516                               const Expr *OrigFormatExpr,
8517                               ArrayRef<const Expr *> Args,
8518                               bool HasVAListArg, unsigned format_idx,
8519                               unsigned firstDataArg,
8520                               Sema::FormatStringType Type,
8521                               bool inFunctionCall,
8522                               Sema::VariadicCallType CallType,
8523                               llvm::SmallBitVector &CheckedVarArgs,
8524                               UncoveredArgHandler &UncoveredArg,
8525                               bool IgnoreStringsWithoutSpecifiers) {
8526   // CHECK: is the format string a wide literal?
8527   if (!FExpr->isAscii() && !FExpr->isUTF8()) {
8528     CheckFormatHandler::EmitFormatDiagnostic(
8529         S, inFunctionCall, Args[format_idx],
8530         S.PDiag(diag::warn_format_string_is_wide_literal), FExpr->getBeginLoc(),
8531         /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange());
8532     return;
8533   }
8534 
8535   // Str - The format string.  NOTE: this is NOT null-terminated!
8536   StringRef StrRef = FExpr->getString();
8537   const char *Str = StrRef.data();
8538   // Account for cases where the string literal is truncated in a declaration.
8539   const ConstantArrayType *T =
8540     S.Context.getAsConstantArrayType(FExpr->getType());
8541   assert(T && "String literal not of constant array type!");
8542   size_t TypeSize = T->getSize().getZExtValue();
8543   size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
8544   const unsigned numDataArgs = Args.size() - firstDataArg;
8545 
8546   if (IgnoreStringsWithoutSpecifiers &&
8547       !analyze_format_string::parseFormatStringHasFormattingSpecifiers(
8548           Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo()))
8549     return;
8550 
8551   // Emit a warning if the string literal is truncated and does not contain an
8552   // embedded null character.
8553   if (TypeSize <= StrRef.size() &&
8554       StrRef.substr(0, TypeSize).find('\0') == StringRef::npos) {
8555     CheckFormatHandler::EmitFormatDiagnostic(
8556         S, inFunctionCall, Args[format_idx],
8557         S.PDiag(diag::warn_printf_format_string_not_null_terminated),
8558         FExpr->getBeginLoc(),
8559         /*IsStringLocation=*/true, OrigFormatExpr->getSourceRange());
8560     return;
8561   }
8562 
8563   // CHECK: empty format string?
8564   if (StrLen == 0 && numDataArgs > 0) {
8565     CheckFormatHandler::EmitFormatDiagnostic(
8566         S, inFunctionCall, Args[format_idx],
8567         S.PDiag(diag::warn_empty_format_string), FExpr->getBeginLoc(),
8568         /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange());
8569     return;
8570   }
8571 
8572   if (Type == Sema::FST_Printf || Type == Sema::FST_NSString ||
8573       Type == Sema::FST_FreeBSDKPrintf || Type == Sema::FST_OSLog ||
8574       Type == Sema::FST_OSTrace) {
8575     CheckPrintfHandler H(
8576         S, FExpr, OrigFormatExpr, Type, firstDataArg, numDataArgs,
8577         (Type == Sema::FST_NSString || Type == Sema::FST_OSTrace), Str,
8578         HasVAListArg, Args, format_idx, inFunctionCall, CallType,
8579         CheckedVarArgs, UncoveredArg);
8580 
8581     if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
8582                                                   S.getLangOpts(),
8583                                                   S.Context.getTargetInfo(),
8584                                             Type == Sema::FST_FreeBSDKPrintf))
8585       H.DoneProcessing();
8586   } else if (Type == Sema::FST_Scanf) {
8587     CheckScanfHandler H(S, FExpr, OrigFormatExpr, Type, firstDataArg,
8588                         numDataArgs, Str, HasVAListArg, Args, format_idx,
8589                         inFunctionCall, CallType, CheckedVarArgs, UncoveredArg);
8590 
8591     if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
8592                                                  S.getLangOpts(),
8593                                                  S.Context.getTargetInfo()))
8594       H.DoneProcessing();
8595   } // TODO: handle other formats
8596 }
8597 
8598 bool Sema::FormatStringHasSArg(const StringLiteral *FExpr) {
8599   // Str - The format string.  NOTE: this is NOT null-terminated!
8600   StringRef StrRef = FExpr->getString();
8601   const char *Str = StrRef.data();
8602   // Account for cases where the string literal is truncated in a declaration.
8603   const ConstantArrayType *T = Context.getAsConstantArrayType(FExpr->getType());
8604   assert(T && "String literal not of constant array type!");
8605   size_t TypeSize = T->getSize().getZExtValue();
8606   size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
8607   return analyze_format_string::ParseFormatStringHasSArg(Str, Str + StrLen,
8608                                                          getLangOpts(),
8609                                                          Context.getTargetInfo());
8610 }
8611 
8612 //===--- CHECK: Warn on use of wrong absolute value function. -------------===//
8613 
8614 // Returns the related absolute value function that is larger, of 0 if one
8615 // does not exist.
8616 static unsigned getLargerAbsoluteValueFunction(unsigned AbsFunction) {
8617   switch (AbsFunction) {
8618   default:
8619     return 0;
8620 
8621   case Builtin::BI__builtin_abs:
8622     return Builtin::BI__builtin_labs;
8623   case Builtin::BI__builtin_labs:
8624     return Builtin::BI__builtin_llabs;
8625   case Builtin::BI__builtin_llabs:
8626     return 0;
8627 
8628   case Builtin::BI__builtin_fabsf:
8629     return Builtin::BI__builtin_fabs;
8630   case Builtin::BI__builtin_fabs:
8631     return Builtin::BI__builtin_fabsl;
8632   case Builtin::BI__builtin_fabsl:
8633     return 0;
8634 
8635   case Builtin::BI__builtin_cabsf:
8636     return Builtin::BI__builtin_cabs;
8637   case Builtin::BI__builtin_cabs:
8638     return Builtin::BI__builtin_cabsl;
8639   case Builtin::BI__builtin_cabsl:
8640     return 0;
8641 
8642   case Builtin::BIabs:
8643     return Builtin::BIlabs;
8644   case Builtin::BIlabs:
8645     return Builtin::BIllabs;
8646   case Builtin::BIllabs:
8647     return 0;
8648 
8649   case Builtin::BIfabsf:
8650     return Builtin::BIfabs;
8651   case Builtin::BIfabs:
8652     return Builtin::BIfabsl;
8653   case Builtin::BIfabsl:
8654     return 0;
8655 
8656   case Builtin::BIcabsf:
8657    return Builtin::BIcabs;
8658   case Builtin::BIcabs:
8659     return Builtin::BIcabsl;
8660   case Builtin::BIcabsl:
8661     return 0;
8662   }
8663 }
8664 
8665 // Returns the argument type of the absolute value function.
8666 static QualType getAbsoluteValueArgumentType(ASTContext &Context,
8667                                              unsigned AbsType) {
8668   if (AbsType == 0)
8669     return QualType();
8670 
8671   ASTContext::GetBuiltinTypeError Error = ASTContext::GE_None;
8672   QualType BuiltinType = Context.GetBuiltinType(AbsType, Error);
8673   if (Error != ASTContext::GE_None)
8674     return QualType();
8675 
8676   const FunctionProtoType *FT = BuiltinType->getAs<FunctionProtoType>();
8677   if (!FT)
8678     return QualType();
8679 
8680   if (FT->getNumParams() != 1)
8681     return QualType();
8682 
8683   return FT->getParamType(0);
8684 }
8685 
8686 // Returns the best absolute value function, or zero, based on type and
8687 // current absolute value function.
8688 static unsigned getBestAbsFunction(ASTContext &Context, QualType ArgType,
8689                                    unsigned AbsFunctionKind) {
8690   unsigned BestKind = 0;
8691   uint64_t ArgSize = Context.getTypeSize(ArgType);
8692   for (unsigned Kind = AbsFunctionKind; Kind != 0;
8693        Kind = getLargerAbsoluteValueFunction(Kind)) {
8694     QualType ParamType = getAbsoluteValueArgumentType(Context, Kind);
8695     if (Context.getTypeSize(ParamType) >= ArgSize) {
8696       if (BestKind == 0)
8697         BestKind = Kind;
8698       else if (Context.hasSameType(ParamType, ArgType)) {
8699         BestKind = Kind;
8700         break;
8701       }
8702     }
8703   }
8704   return BestKind;
8705 }
8706 
8707 enum AbsoluteValueKind {
8708   AVK_Integer,
8709   AVK_Floating,
8710   AVK_Complex
8711 };
8712 
8713 static AbsoluteValueKind getAbsoluteValueKind(QualType T) {
8714   if (T->isIntegralOrEnumerationType())
8715     return AVK_Integer;
8716   if (T->isRealFloatingType())
8717     return AVK_Floating;
8718   if (T->isAnyComplexType())
8719     return AVK_Complex;
8720 
8721   llvm_unreachable("Type not integer, floating, or complex");
8722 }
8723 
8724 // Changes the absolute value function to a different type.  Preserves whether
8725 // the function is a builtin.
8726 static unsigned changeAbsFunction(unsigned AbsKind,
8727                                   AbsoluteValueKind ValueKind) {
8728   switch (ValueKind) {
8729   case AVK_Integer:
8730     switch (AbsKind) {
8731     default:
8732       return 0;
8733     case Builtin::BI__builtin_fabsf:
8734     case Builtin::BI__builtin_fabs:
8735     case Builtin::BI__builtin_fabsl:
8736     case Builtin::BI__builtin_cabsf:
8737     case Builtin::BI__builtin_cabs:
8738     case Builtin::BI__builtin_cabsl:
8739       return Builtin::BI__builtin_abs;
8740     case Builtin::BIfabsf:
8741     case Builtin::BIfabs:
8742     case Builtin::BIfabsl:
8743     case Builtin::BIcabsf:
8744     case Builtin::BIcabs:
8745     case Builtin::BIcabsl:
8746       return Builtin::BIabs;
8747     }
8748   case AVK_Floating:
8749     switch (AbsKind) {
8750     default:
8751       return 0;
8752     case Builtin::BI__builtin_abs:
8753     case Builtin::BI__builtin_labs:
8754     case Builtin::BI__builtin_llabs:
8755     case Builtin::BI__builtin_cabsf:
8756     case Builtin::BI__builtin_cabs:
8757     case Builtin::BI__builtin_cabsl:
8758       return Builtin::BI__builtin_fabsf;
8759     case Builtin::BIabs:
8760     case Builtin::BIlabs:
8761     case Builtin::BIllabs:
8762     case Builtin::BIcabsf:
8763     case Builtin::BIcabs:
8764     case Builtin::BIcabsl:
8765       return Builtin::BIfabsf;
8766     }
8767   case AVK_Complex:
8768     switch (AbsKind) {
8769     default:
8770       return 0;
8771     case Builtin::BI__builtin_abs:
8772     case Builtin::BI__builtin_labs:
8773     case Builtin::BI__builtin_llabs:
8774     case Builtin::BI__builtin_fabsf:
8775     case Builtin::BI__builtin_fabs:
8776     case Builtin::BI__builtin_fabsl:
8777       return Builtin::BI__builtin_cabsf;
8778     case Builtin::BIabs:
8779     case Builtin::BIlabs:
8780     case Builtin::BIllabs:
8781     case Builtin::BIfabsf:
8782     case Builtin::BIfabs:
8783     case Builtin::BIfabsl:
8784       return Builtin::BIcabsf;
8785     }
8786   }
8787   llvm_unreachable("Unable to convert function");
8788 }
8789 
8790 static unsigned getAbsoluteValueFunctionKind(const FunctionDecl *FDecl) {
8791   const IdentifierInfo *FnInfo = FDecl->getIdentifier();
8792   if (!FnInfo)
8793     return 0;
8794 
8795   switch (FDecl->getBuiltinID()) {
8796   default:
8797     return 0;
8798   case Builtin::BI__builtin_abs:
8799   case Builtin::BI__builtin_fabs:
8800   case Builtin::BI__builtin_fabsf:
8801   case Builtin::BI__builtin_fabsl:
8802   case Builtin::BI__builtin_labs:
8803   case Builtin::BI__builtin_llabs:
8804   case Builtin::BI__builtin_cabs:
8805   case Builtin::BI__builtin_cabsf:
8806   case Builtin::BI__builtin_cabsl:
8807   case Builtin::BIabs:
8808   case Builtin::BIlabs:
8809   case Builtin::BIllabs:
8810   case Builtin::BIfabs:
8811   case Builtin::BIfabsf:
8812   case Builtin::BIfabsl:
8813   case Builtin::BIcabs:
8814   case Builtin::BIcabsf:
8815   case Builtin::BIcabsl:
8816     return FDecl->getBuiltinID();
8817   }
8818   llvm_unreachable("Unknown Builtin type");
8819 }
8820 
8821 // If the replacement is valid, emit a note with replacement function.
8822 // Additionally, suggest including the proper header if not already included.
8823 static void emitReplacement(Sema &S, SourceLocation Loc, SourceRange Range,
8824                             unsigned AbsKind, QualType ArgType) {
8825   bool EmitHeaderHint = true;
8826   const char *HeaderName = nullptr;
8827   const char *FunctionName = nullptr;
8828   if (S.getLangOpts().CPlusPlus && !ArgType->isAnyComplexType()) {
8829     FunctionName = "std::abs";
8830     if (ArgType->isIntegralOrEnumerationType()) {
8831       HeaderName = "cstdlib";
8832     } else if (ArgType->isRealFloatingType()) {
8833       HeaderName = "cmath";
8834     } else {
8835       llvm_unreachable("Invalid Type");
8836     }
8837 
8838     // Lookup all std::abs
8839     if (NamespaceDecl *Std = S.getStdNamespace()) {
8840       LookupResult R(S, &S.Context.Idents.get("abs"), Loc, Sema::LookupAnyName);
8841       R.suppressDiagnostics();
8842       S.LookupQualifiedName(R, Std);
8843 
8844       for (const auto *I : R) {
8845         const FunctionDecl *FDecl = nullptr;
8846         if (const UsingShadowDecl *UsingD = dyn_cast<UsingShadowDecl>(I)) {
8847           FDecl = dyn_cast<FunctionDecl>(UsingD->getTargetDecl());
8848         } else {
8849           FDecl = dyn_cast<FunctionDecl>(I);
8850         }
8851         if (!FDecl)
8852           continue;
8853 
8854         // Found std::abs(), check that they are the right ones.
8855         if (FDecl->getNumParams() != 1)
8856           continue;
8857 
8858         // Check that the parameter type can handle the argument.
8859         QualType ParamType = FDecl->getParamDecl(0)->getType();
8860         if (getAbsoluteValueKind(ArgType) == getAbsoluteValueKind(ParamType) &&
8861             S.Context.getTypeSize(ArgType) <=
8862                 S.Context.getTypeSize(ParamType)) {
8863           // Found a function, don't need the header hint.
8864           EmitHeaderHint = false;
8865           break;
8866         }
8867       }
8868     }
8869   } else {
8870     FunctionName = S.Context.BuiltinInfo.getName(AbsKind);
8871     HeaderName = S.Context.BuiltinInfo.getHeaderName(AbsKind);
8872 
8873     if (HeaderName) {
8874       DeclarationName DN(&S.Context.Idents.get(FunctionName));
8875       LookupResult R(S, DN, Loc, Sema::LookupAnyName);
8876       R.suppressDiagnostics();
8877       S.LookupName(R, S.getCurScope());
8878 
8879       if (R.isSingleResult()) {
8880         FunctionDecl *FD = dyn_cast<FunctionDecl>(R.getFoundDecl());
8881         if (FD && FD->getBuiltinID() == AbsKind) {
8882           EmitHeaderHint = false;
8883         } else {
8884           return;
8885         }
8886       } else if (!R.empty()) {
8887         return;
8888       }
8889     }
8890   }
8891 
8892   S.Diag(Loc, diag::note_replace_abs_function)
8893       << FunctionName << FixItHint::CreateReplacement(Range, FunctionName);
8894 
8895   if (!HeaderName)
8896     return;
8897 
8898   if (!EmitHeaderHint)
8899     return;
8900 
8901   S.Diag(Loc, diag::note_include_header_or_declare) << HeaderName
8902                                                     << FunctionName;
8903 }
8904 
8905 template <std::size_t StrLen>
8906 static bool IsStdFunction(const FunctionDecl *FDecl,
8907                           const char (&Str)[StrLen]) {
8908   if (!FDecl)
8909     return false;
8910   if (!FDecl->getIdentifier() || !FDecl->getIdentifier()->isStr(Str))
8911     return false;
8912   if (!FDecl->isInStdNamespace())
8913     return false;
8914 
8915   return true;
8916 }
8917 
8918 // Warn when using the wrong abs() function.
8919 void Sema::CheckAbsoluteValueFunction(const CallExpr *Call,
8920                                       const FunctionDecl *FDecl) {
8921   if (Call->getNumArgs() != 1)
8922     return;
8923 
8924   unsigned AbsKind = getAbsoluteValueFunctionKind(FDecl);
8925   bool IsStdAbs = IsStdFunction(FDecl, "abs");
8926   if (AbsKind == 0 && !IsStdAbs)
8927     return;
8928 
8929   QualType ArgType = Call->getArg(0)->IgnoreParenImpCasts()->getType();
8930   QualType ParamType = Call->getArg(0)->getType();
8931 
8932   // Unsigned types cannot be negative.  Suggest removing the absolute value
8933   // function call.
8934   if (ArgType->isUnsignedIntegerType()) {
8935     const char *FunctionName =
8936         IsStdAbs ? "std::abs" : Context.BuiltinInfo.getName(AbsKind);
8937     Diag(Call->getExprLoc(), diag::warn_unsigned_abs) << ArgType << ParamType;
8938     Diag(Call->getExprLoc(), diag::note_remove_abs)
8939         << FunctionName
8940         << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange());
8941     return;
8942   }
8943 
8944   // Taking the absolute value of a pointer is very suspicious, they probably
8945   // wanted to index into an array, dereference a pointer, call a function, etc.
8946   if (ArgType->isPointerType() || ArgType->canDecayToPointerType()) {
8947     unsigned DiagType = 0;
8948     if (ArgType->isFunctionType())
8949       DiagType = 1;
8950     else if (ArgType->isArrayType())
8951       DiagType = 2;
8952 
8953     Diag(Call->getExprLoc(), diag::warn_pointer_abs) << DiagType << ArgType;
8954     return;
8955   }
8956 
8957   // std::abs has overloads which prevent most of the absolute value problems
8958   // from occurring.
8959   if (IsStdAbs)
8960     return;
8961 
8962   AbsoluteValueKind ArgValueKind = getAbsoluteValueKind(ArgType);
8963   AbsoluteValueKind ParamValueKind = getAbsoluteValueKind(ParamType);
8964 
8965   // The argument and parameter are the same kind.  Check if they are the right
8966   // size.
8967   if (ArgValueKind == ParamValueKind) {
8968     if (Context.getTypeSize(ArgType) <= Context.getTypeSize(ParamType))
8969       return;
8970 
8971     unsigned NewAbsKind = getBestAbsFunction(Context, ArgType, AbsKind);
8972     Diag(Call->getExprLoc(), diag::warn_abs_too_small)
8973         << FDecl << ArgType << ParamType;
8974 
8975     if (NewAbsKind == 0)
8976       return;
8977 
8978     emitReplacement(*this, Call->getExprLoc(),
8979                     Call->getCallee()->getSourceRange(), NewAbsKind, ArgType);
8980     return;
8981   }
8982 
8983   // ArgValueKind != ParamValueKind
8984   // The wrong type of absolute value function was used.  Attempt to find the
8985   // proper one.
8986   unsigned NewAbsKind = changeAbsFunction(AbsKind, ArgValueKind);
8987   NewAbsKind = getBestAbsFunction(Context, ArgType, NewAbsKind);
8988   if (NewAbsKind == 0)
8989     return;
8990 
8991   Diag(Call->getExprLoc(), diag::warn_wrong_absolute_value_type)
8992       << FDecl << ParamValueKind << ArgValueKind;
8993 
8994   emitReplacement(*this, Call->getExprLoc(),
8995                   Call->getCallee()->getSourceRange(), NewAbsKind, ArgType);
8996 }
8997 
8998 //===--- CHECK: Warn on use of std::max and unsigned zero. r---------------===//
8999 void Sema::CheckMaxUnsignedZero(const CallExpr *Call,
9000                                 const FunctionDecl *FDecl) {
9001   if (!Call || !FDecl) return;
9002 
9003   // Ignore template specializations and macros.
9004   if (inTemplateInstantiation()) return;
9005   if (Call->getExprLoc().isMacroID()) return;
9006 
9007   // Only care about the one template argument, two function parameter std::max
9008   if (Call->getNumArgs() != 2) return;
9009   if (!IsStdFunction(FDecl, "max")) return;
9010   const auto * ArgList = FDecl->getTemplateSpecializationArgs();
9011   if (!ArgList) return;
9012   if (ArgList->size() != 1) return;
9013 
9014   // Check that template type argument is unsigned integer.
9015   const auto& TA = ArgList->get(0);
9016   if (TA.getKind() != TemplateArgument::Type) return;
9017   QualType ArgType = TA.getAsType();
9018   if (!ArgType->isUnsignedIntegerType()) return;
9019 
9020   // See if either argument is a literal zero.
9021   auto IsLiteralZeroArg = [](const Expr* E) -> bool {
9022     const auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E);
9023     if (!MTE) return false;
9024     const auto *Num = dyn_cast<IntegerLiteral>(MTE->GetTemporaryExpr());
9025     if (!Num) return false;
9026     if (Num->getValue() != 0) return false;
9027     return true;
9028   };
9029 
9030   const Expr *FirstArg = Call->getArg(0);
9031   const Expr *SecondArg = Call->getArg(1);
9032   const bool IsFirstArgZero = IsLiteralZeroArg(FirstArg);
9033   const bool IsSecondArgZero = IsLiteralZeroArg(SecondArg);
9034 
9035   // Only warn when exactly one argument is zero.
9036   if (IsFirstArgZero == IsSecondArgZero) return;
9037 
9038   SourceRange FirstRange = FirstArg->getSourceRange();
9039   SourceRange SecondRange = SecondArg->getSourceRange();
9040 
9041   SourceRange ZeroRange = IsFirstArgZero ? FirstRange : SecondRange;
9042 
9043   Diag(Call->getExprLoc(), diag::warn_max_unsigned_zero)
9044       << IsFirstArgZero << Call->getCallee()->getSourceRange() << ZeroRange;
9045 
9046   // Deduce what parts to remove so that "std::max(0u, foo)" becomes "(foo)".
9047   SourceRange RemovalRange;
9048   if (IsFirstArgZero) {
9049     RemovalRange = SourceRange(FirstRange.getBegin(),
9050                                SecondRange.getBegin().getLocWithOffset(-1));
9051   } else {
9052     RemovalRange = SourceRange(getLocForEndOfToken(FirstRange.getEnd()),
9053                                SecondRange.getEnd());
9054   }
9055 
9056   Diag(Call->getExprLoc(), diag::note_remove_max_call)
9057         << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange())
9058         << FixItHint::CreateRemoval(RemovalRange);
9059 }
9060 
9061 //===--- CHECK: Standard memory functions ---------------------------------===//
9062 
9063 /// Takes the expression passed to the size_t parameter of functions
9064 /// such as memcmp, strncat, etc and warns if it's a comparison.
9065 ///
9066 /// This is to catch typos like `if (memcmp(&a, &b, sizeof(a) > 0))`.
9067 static bool CheckMemorySizeofForComparison(Sema &S, const Expr *E,
9068                                            IdentifierInfo *FnName,
9069                                            SourceLocation FnLoc,
9070                                            SourceLocation RParenLoc) {
9071   const BinaryOperator *Size = dyn_cast<BinaryOperator>(E);
9072   if (!Size)
9073     return false;
9074 
9075   // if E is binop and op is <=>, >, <, >=, <=, ==, &&, ||:
9076   if (!Size->isComparisonOp() && !Size->isLogicalOp())
9077     return false;
9078 
9079   SourceRange SizeRange = Size->getSourceRange();
9080   S.Diag(Size->getOperatorLoc(), diag::warn_memsize_comparison)
9081       << SizeRange << FnName;
9082   S.Diag(FnLoc, diag::note_memsize_comparison_paren)
9083       << FnName
9084       << FixItHint::CreateInsertion(
9085              S.getLocForEndOfToken(Size->getLHS()->getEndLoc()), ")")
9086       << FixItHint::CreateRemoval(RParenLoc);
9087   S.Diag(SizeRange.getBegin(), diag::note_memsize_comparison_cast_silence)
9088       << FixItHint::CreateInsertion(SizeRange.getBegin(), "(size_t)(")
9089       << FixItHint::CreateInsertion(S.getLocForEndOfToken(SizeRange.getEnd()),
9090                                     ")");
9091 
9092   return true;
9093 }
9094 
9095 /// Determine whether the given type is or contains a dynamic class type
9096 /// (e.g., whether it has a vtable).
9097 static const CXXRecordDecl *getContainedDynamicClass(QualType T,
9098                                                      bool &IsContained) {
9099   // Look through array types while ignoring qualifiers.
9100   const Type *Ty = T->getBaseElementTypeUnsafe();
9101   IsContained = false;
9102 
9103   const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
9104   RD = RD ? RD->getDefinition() : nullptr;
9105   if (!RD || RD->isInvalidDecl())
9106     return nullptr;
9107 
9108   if (RD->isDynamicClass())
9109     return RD;
9110 
9111   // Check all the fields.  If any bases were dynamic, the class is dynamic.
9112   // It's impossible for a class to transitively contain itself by value, so
9113   // infinite recursion is impossible.
9114   for (auto *FD : RD->fields()) {
9115     bool SubContained;
9116     if (const CXXRecordDecl *ContainedRD =
9117             getContainedDynamicClass(FD->getType(), SubContained)) {
9118       IsContained = true;
9119       return ContainedRD;
9120     }
9121   }
9122 
9123   return nullptr;
9124 }
9125 
9126 static const UnaryExprOrTypeTraitExpr *getAsSizeOfExpr(const Expr *E) {
9127   if (const auto *Unary = dyn_cast<UnaryExprOrTypeTraitExpr>(E))
9128     if (Unary->getKind() == UETT_SizeOf)
9129       return Unary;
9130   return nullptr;
9131 }
9132 
9133 /// If E is a sizeof expression, returns its argument expression,
9134 /// otherwise returns NULL.
9135 static const Expr *getSizeOfExprArg(const Expr *E) {
9136   if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E))
9137     if (!SizeOf->isArgumentType())
9138       return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
9139   return nullptr;
9140 }
9141 
9142 /// If E is a sizeof expression, returns its argument type.
9143 static QualType getSizeOfArgType(const Expr *E) {
9144   if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E))
9145     return SizeOf->getTypeOfArgument();
9146   return QualType();
9147 }
9148 
9149 namespace {
9150 
9151 struct SearchNonTrivialToInitializeField
9152     : DefaultInitializedTypeVisitor<SearchNonTrivialToInitializeField> {
9153   using Super =
9154       DefaultInitializedTypeVisitor<SearchNonTrivialToInitializeField>;
9155 
9156   SearchNonTrivialToInitializeField(const Expr *E, Sema &S) : E(E), S(S) {}
9157 
9158   void visitWithKind(QualType::PrimitiveDefaultInitializeKind PDIK, QualType FT,
9159                      SourceLocation SL) {
9160     if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
9161       asDerived().visitArray(PDIK, AT, SL);
9162       return;
9163     }
9164 
9165     Super::visitWithKind(PDIK, FT, SL);
9166   }
9167 
9168   void visitARCStrong(QualType FT, SourceLocation SL) {
9169     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 1);
9170   }
9171   void visitARCWeak(QualType FT, SourceLocation SL) {
9172     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 1);
9173   }
9174   void visitStruct(QualType FT, SourceLocation SL) {
9175     for (const FieldDecl *FD : FT->castAs<RecordType>()->getDecl()->fields())
9176       visit(FD->getType(), FD->getLocation());
9177   }
9178   void visitArray(QualType::PrimitiveDefaultInitializeKind PDIK,
9179                   const ArrayType *AT, SourceLocation SL) {
9180     visit(getContext().getBaseElementType(AT), SL);
9181   }
9182   void visitTrivial(QualType FT, SourceLocation SL) {}
9183 
9184   static void diag(QualType RT, const Expr *E, Sema &S) {
9185     SearchNonTrivialToInitializeField(E, S).visitStruct(RT, SourceLocation());
9186   }
9187 
9188   ASTContext &getContext() { return S.getASTContext(); }
9189 
9190   const Expr *E;
9191   Sema &S;
9192 };
9193 
9194 struct SearchNonTrivialToCopyField
9195     : CopiedTypeVisitor<SearchNonTrivialToCopyField, false> {
9196   using Super = CopiedTypeVisitor<SearchNonTrivialToCopyField, false>;
9197 
9198   SearchNonTrivialToCopyField(const Expr *E, Sema &S) : E(E), S(S) {}
9199 
9200   void visitWithKind(QualType::PrimitiveCopyKind PCK, QualType FT,
9201                      SourceLocation SL) {
9202     if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
9203       asDerived().visitArray(PCK, AT, SL);
9204       return;
9205     }
9206 
9207     Super::visitWithKind(PCK, FT, SL);
9208   }
9209 
9210   void visitARCStrong(QualType FT, SourceLocation SL) {
9211     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 0);
9212   }
9213   void visitARCWeak(QualType FT, SourceLocation SL) {
9214     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 0);
9215   }
9216   void visitStruct(QualType FT, SourceLocation SL) {
9217     for (const FieldDecl *FD : FT->castAs<RecordType>()->getDecl()->fields())
9218       visit(FD->getType(), FD->getLocation());
9219   }
9220   void visitArray(QualType::PrimitiveCopyKind PCK, const ArrayType *AT,
9221                   SourceLocation SL) {
9222     visit(getContext().getBaseElementType(AT), SL);
9223   }
9224   void preVisit(QualType::PrimitiveCopyKind PCK, QualType FT,
9225                 SourceLocation SL) {}
9226   void visitTrivial(QualType FT, SourceLocation SL) {}
9227   void visitVolatileTrivial(QualType FT, SourceLocation SL) {}
9228 
9229   static void diag(QualType RT, const Expr *E, Sema &S) {
9230     SearchNonTrivialToCopyField(E, S).visitStruct(RT, SourceLocation());
9231   }
9232 
9233   ASTContext &getContext() { return S.getASTContext(); }
9234 
9235   const Expr *E;
9236   Sema &S;
9237 };
9238 
9239 }
9240 
9241 /// Detect if \c SizeofExpr is likely to calculate the sizeof an object.
9242 static bool doesExprLikelyComputeSize(const Expr *SizeofExpr) {
9243   SizeofExpr = SizeofExpr->IgnoreParenImpCasts();
9244 
9245   if (const auto *BO = dyn_cast<BinaryOperator>(SizeofExpr)) {
9246     if (BO->getOpcode() != BO_Mul && BO->getOpcode() != BO_Add)
9247       return false;
9248 
9249     return doesExprLikelyComputeSize(BO->getLHS()) ||
9250            doesExprLikelyComputeSize(BO->getRHS());
9251   }
9252 
9253   return getAsSizeOfExpr(SizeofExpr) != nullptr;
9254 }
9255 
9256 /// Check if the ArgLoc originated from a macro passed to the call at CallLoc.
9257 ///
9258 /// \code
9259 ///   #define MACRO 0
9260 ///   foo(MACRO);
9261 ///   foo(0);
9262 /// \endcode
9263 ///
9264 /// This should return true for the first call to foo, but not for the second
9265 /// (regardless of whether foo is a macro or function).
9266 static bool isArgumentExpandedFromMacro(SourceManager &SM,
9267                                         SourceLocation CallLoc,
9268                                         SourceLocation ArgLoc) {
9269   if (!CallLoc.isMacroID())
9270     return SM.getFileID(CallLoc) != SM.getFileID(ArgLoc);
9271 
9272   return SM.getFileID(SM.getImmediateMacroCallerLoc(CallLoc)) !=
9273          SM.getFileID(SM.getImmediateMacroCallerLoc(ArgLoc));
9274 }
9275 
9276 /// Diagnose cases like 'memset(buf, sizeof(buf), 0)', which should have the
9277 /// last two arguments transposed.
9278 static void CheckMemaccessSize(Sema &S, unsigned BId, const CallExpr *Call) {
9279   if (BId != Builtin::BImemset && BId != Builtin::BIbzero)
9280     return;
9281 
9282   const Expr *SizeArg =
9283     Call->getArg(BId == Builtin::BImemset ? 2 : 1)->IgnoreImpCasts();
9284 
9285   auto isLiteralZero = [](const Expr *E) {
9286     return isa<IntegerLiteral>(E) && cast<IntegerLiteral>(E)->getValue() == 0;
9287   };
9288 
9289   // If we're memsetting or bzeroing 0 bytes, then this is likely an error.
9290   SourceLocation CallLoc = Call->getRParenLoc();
9291   SourceManager &SM = S.getSourceManager();
9292   if (isLiteralZero(SizeArg) &&
9293       !isArgumentExpandedFromMacro(SM, CallLoc, SizeArg->getExprLoc())) {
9294 
9295     SourceLocation DiagLoc = SizeArg->getExprLoc();
9296 
9297     // Some platforms #define bzero to __builtin_memset. See if this is the
9298     // case, and if so, emit a better diagnostic.
9299     if (BId == Builtin::BIbzero ||
9300         (CallLoc.isMacroID() && Lexer::getImmediateMacroName(
9301                                     CallLoc, SM, S.getLangOpts()) == "bzero")) {
9302       S.Diag(DiagLoc, diag::warn_suspicious_bzero_size);
9303       S.Diag(DiagLoc, diag::note_suspicious_bzero_size_silence);
9304     } else if (!isLiteralZero(Call->getArg(1)->IgnoreImpCasts())) {
9305       S.Diag(DiagLoc, diag::warn_suspicious_sizeof_memset) << 0;
9306       S.Diag(DiagLoc, diag::note_suspicious_sizeof_memset_silence) << 0;
9307     }
9308     return;
9309   }
9310 
9311   // If the second argument to a memset is a sizeof expression and the third
9312   // isn't, this is also likely an error. This should catch
9313   // 'memset(buf, sizeof(buf), 0xff)'.
9314   if (BId == Builtin::BImemset &&
9315       doesExprLikelyComputeSize(Call->getArg(1)) &&
9316       !doesExprLikelyComputeSize(Call->getArg(2))) {
9317     SourceLocation DiagLoc = Call->getArg(1)->getExprLoc();
9318     S.Diag(DiagLoc, diag::warn_suspicious_sizeof_memset) << 1;
9319     S.Diag(DiagLoc, diag::note_suspicious_sizeof_memset_silence) << 1;
9320     return;
9321   }
9322 }
9323 
9324 /// Check for dangerous or invalid arguments to memset().
9325 ///
9326 /// This issues warnings on known problematic, dangerous or unspecified
9327 /// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp'
9328 /// function calls.
9329 ///
9330 /// \param Call The call expression to diagnose.
9331 void Sema::CheckMemaccessArguments(const CallExpr *Call,
9332                                    unsigned BId,
9333                                    IdentifierInfo *FnName) {
9334   assert(BId != 0);
9335 
9336   // It is possible to have a non-standard definition of memset.  Validate
9337   // we have enough arguments, and if not, abort further checking.
9338   unsigned ExpectedNumArgs =
9339       (BId == Builtin::BIstrndup || BId == Builtin::BIbzero ? 2 : 3);
9340   if (Call->getNumArgs() < ExpectedNumArgs)
9341     return;
9342 
9343   unsigned LastArg = (BId == Builtin::BImemset || BId == Builtin::BIbzero ||
9344                       BId == Builtin::BIstrndup ? 1 : 2);
9345   unsigned LenArg =
9346       (BId == Builtin::BIbzero || BId == Builtin::BIstrndup ? 1 : 2);
9347   const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts();
9348 
9349   if (CheckMemorySizeofForComparison(*this, LenExpr, FnName,
9350                                      Call->getBeginLoc(), Call->getRParenLoc()))
9351     return;
9352 
9353   // Catch cases like 'memset(buf, sizeof(buf), 0)'.
9354   CheckMemaccessSize(*this, BId, Call);
9355 
9356   // We have special checking when the length is a sizeof expression.
9357   QualType SizeOfArgTy = getSizeOfArgType(LenExpr);
9358   const Expr *SizeOfArg = getSizeOfExprArg(LenExpr);
9359   llvm::FoldingSetNodeID SizeOfArgID;
9360 
9361   // Although widely used, 'bzero' is not a standard function. Be more strict
9362   // with the argument types before allowing diagnostics and only allow the
9363   // form bzero(ptr, sizeof(...)).
9364   QualType FirstArgTy = Call->getArg(0)->IgnoreParenImpCasts()->getType();
9365   if (BId == Builtin::BIbzero && !FirstArgTy->getAs<PointerType>())
9366     return;
9367 
9368   for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
9369     const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
9370     SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
9371 
9372     QualType DestTy = Dest->getType();
9373     QualType PointeeTy;
9374     if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
9375       PointeeTy = DestPtrTy->getPointeeType();
9376 
9377       // Never warn about void type pointers. This can be used to suppress
9378       // false positives.
9379       if (PointeeTy->isVoidType())
9380         continue;
9381 
9382       // Catch "memset(p, 0, sizeof(p))" -- needs to be sizeof(*p). Do this by
9383       // actually comparing the expressions for equality. Because computing the
9384       // expression IDs can be expensive, we only do this if the diagnostic is
9385       // enabled.
9386       if (SizeOfArg &&
9387           !Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess,
9388                            SizeOfArg->getExprLoc())) {
9389         // We only compute IDs for expressions if the warning is enabled, and
9390         // cache the sizeof arg's ID.
9391         if (SizeOfArgID == llvm::FoldingSetNodeID())
9392           SizeOfArg->Profile(SizeOfArgID, Context, true);
9393         llvm::FoldingSetNodeID DestID;
9394         Dest->Profile(DestID, Context, true);
9395         if (DestID == SizeOfArgID) {
9396           // TODO: For strncpy() and friends, this could suggest sizeof(dst)
9397           //       over sizeof(src) as well.
9398           unsigned ActionIdx = 0; // Default is to suggest dereferencing.
9399           StringRef ReadableName = FnName->getName();
9400 
9401           if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest))
9402             if (UnaryOp->getOpcode() == UO_AddrOf)
9403               ActionIdx = 1; // If its an address-of operator, just remove it.
9404           if (!PointeeTy->isIncompleteType() &&
9405               (Context.getTypeSize(PointeeTy) == Context.getCharWidth()))
9406             ActionIdx = 2; // If the pointee's size is sizeof(char),
9407                            // suggest an explicit length.
9408 
9409           // If the function is defined as a builtin macro, do not show macro
9410           // expansion.
9411           SourceLocation SL = SizeOfArg->getExprLoc();
9412           SourceRange DSR = Dest->getSourceRange();
9413           SourceRange SSR = SizeOfArg->getSourceRange();
9414           SourceManager &SM = getSourceManager();
9415 
9416           if (SM.isMacroArgExpansion(SL)) {
9417             ReadableName = Lexer::getImmediateMacroName(SL, SM, LangOpts);
9418             SL = SM.getSpellingLoc(SL);
9419             DSR = SourceRange(SM.getSpellingLoc(DSR.getBegin()),
9420                              SM.getSpellingLoc(DSR.getEnd()));
9421             SSR = SourceRange(SM.getSpellingLoc(SSR.getBegin()),
9422                              SM.getSpellingLoc(SSR.getEnd()));
9423           }
9424 
9425           DiagRuntimeBehavior(SL, SizeOfArg,
9426                               PDiag(diag::warn_sizeof_pointer_expr_memaccess)
9427                                 << ReadableName
9428                                 << PointeeTy
9429                                 << DestTy
9430                                 << DSR
9431                                 << SSR);
9432           DiagRuntimeBehavior(SL, SizeOfArg,
9433                          PDiag(diag::warn_sizeof_pointer_expr_memaccess_note)
9434                                 << ActionIdx
9435                                 << SSR);
9436 
9437           break;
9438         }
9439       }
9440 
9441       // Also check for cases where the sizeof argument is the exact same
9442       // type as the memory argument, and where it points to a user-defined
9443       // record type.
9444       if (SizeOfArgTy != QualType()) {
9445         if (PointeeTy->isRecordType() &&
9446             Context.typesAreCompatible(SizeOfArgTy, DestTy)) {
9447           DiagRuntimeBehavior(LenExpr->getExprLoc(), Dest,
9448                               PDiag(diag::warn_sizeof_pointer_type_memaccess)
9449                                 << FnName << SizeOfArgTy << ArgIdx
9450                                 << PointeeTy << Dest->getSourceRange()
9451                                 << LenExpr->getSourceRange());
9452           break;
9453         }
9454       }
9455     } else if (DestTy->isArrayType()) {
9456       PointeeTy = DestTy;
9457     }
9458 
9459     if (PointeeTy == QualType())
9460       continue;
9461 
9462     // Always complain about dynamic classes.
9463     bool IsContained;
9464     if (const CXXRecordDecl *ContainedRD =
9465             getContainedDynamicClass(PointeeTy, IsContained)) {
9466 
9467       unsigned OperationType = 0;
9468       const bool IsCmp = BId == Builtin::BImemcmp || BId == Builtin::BIbcmp;
9469       // "overwritten" if we're warning about the destination for any call
9470       // but memcmp; otherwise a verb appropriate to the call.
9471       if (ArgIdx != 0 || IsCmp) {
9472         if (BId == Builtin::BImemcpy)
9473           OperationType = 1;
9474         else if(BId == Builtin::BImemmove)
9475           OperationType = 2;
9476         else if (IsCmp)
9477           OperationType = 3;
9478       }
9479 
9480       DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
9481                           PDiag(diag::warn_dyn_class_memaccess)
9482                               << (IsCmp ? ArgIdx + 2 : ArgIdx) << FnName
9483                               << IsContained << ContainedRD << OperationType
9484                               << Call->getCallee()->getSourceRange());
9485     } else if (PointeeTy.hasNonTrivialObjCLifetime() &&
9486              BId != Builtin::BImemset)
9487       DiagRuntimeBehavior(
9488         Dest->getExprLoc(), Dest,
9489         PDiag(diag::warn_arc_object_memaccess)
9490           << ArgIdx << FnName << PointeeTy
9491           << Call->getCallee()->getSourceRange());
9492     else if (const auto *RT = PointeeTy->getAs<RecordType>()) {
9493       if ((BId == Builtin::BImemset || BId == Builtin::BIbzero) &&
9494           RT->getDecl()->isNonTrivialToPrimitiveDefaultInitialize()) {
9495         DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
9496                             PDiag(diag::warn_cstruct_memaccess)
9497                                 << ArgIdx << FnName << PointeeTy << 0);
9498         SearchNonTrivialToInitializeField::diag(PointeeTy, Dest, *this);
9499       } else if ((BId == Builtin::BImemcpy || BId == Builtin::BImemmove) &&
9500                  RT->getDecl()->isNonTrivialToPrimitiveCopy()) {
9501         DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
9502                             PDiag(diag::warn_cstruct_memaccess)
9503                                 << ArgIdx << FnName << PointeeTy << 1);
9504         SearchNonTrivialToCopyField::diag(PointeeTy, Dest, *this);
9505       } else {
9506         continue;
9507       }
9508     } else
9509       continue;
9510 
9511     DiagRuntimeBehavior(
9512       Dest->getExprLoc(), Dest,
9513       PDiag(diag::note_bad_memaccess_silence)
9514         << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
9515     break;
9516   }
9517 }
9518 
9519 // A little helper routine: ignore addition and subtraction of integer literals.
9520 // This intentionally does not ignore all integer constant expressions because
9521 // we don't want to remove sizeof().
9522 static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) {
9523   Ex = Ex->IgnoreParenCasts();
9524 
9525   while (true) {
9526     const BinaryOperator * BO = dyn_cast<BinaryOperator>(Ex);
9527     if (!BO || !BO->isAdditiveOp())
9528       break;
9529 
9530     const Expr *RHS = BO->getRHS()->IgnoreParenCasts();
9531     const Expr *LHS = BO->getLHS()->IgnoreParenCasts();
9532 
9533     if (isa<IntegerLiteral>(RHS))
9534       Ex = LHS;
9535     else if (isa<IntegerLiteral>(LHS))
9536       Ex = RHS;
9537     else
9538       break;
9539   }
9540 
9541   return Ex;
9542 }
9543 
9544 static bool isConstantSizeArrayWithMoreThanOneElement(QualType Ty,
9545                                                       ASTContext &Context) {
9546   // Only handle constant-sized or VLAs, but not flexible members.
9547   if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(Ty)) {
9548     // Only issue the FIXIT for arrays of size > 1.
9549     if (CAT->getSize().getSExtValue() <= 1)
9550       return false;
9551   } else if (!Ty->isVariableArrayType()) {
9552     return false;
9553   }
9554   return true;
9555 }
9556 
9557 // Warn if the user has made the 'size' argument to strlcpy or strlcat
9558 // be the size of the source, instead of the destination.
9559 void Sema::CheckStrlcpycatArguments(const CallExpr *Call,
9560                                     IdentifierInfo *FnName) {
9561 
9562   // Don't crash if the user has the wrong number of arguments
9563   unsigned NumArgs = Call->getNumArgs();
9564   if ((NumArgs != 3) && (NumArgs != 4))
9565     return;
9566 
9567   const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context);
9568   const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context);
9569   const Expr *CompareWithSrc = nullptr;
9570 
9571   if (CheckMemorySizeofForComparison(*this, SizeArg, FnName,
9572                                      Call->getBeginLoc(), Call->getRParenLoc()))
9573     return;
9574 
9575   // Look for 'strlcpy(dst, x, sizeof(x))'
9576   if (const Expr *Ex = getSizeOfExprArg(SizeArg))
9577     CompareWithSrc = Ex;
9578   else {
9579     // Look for 'strlcpy(dst, x, strlen(x))'
9580     if (const CallExpr *SizeCall = dyn_cast<CallExpr>(SizeArg)) {
9581       if (SizeCall->getBuiltinCallee() == Builtin::BIstrlen &&
9582           SizeCall->getNumArgs() == 1)
9583         CompareWithSrc = ignoreLiteralAdditions(SizeCall->getArg(0), Context);
9584     }
9585   }
9586 
9587   if (!CompareWithSrc)
9588     return;
9589 
9590   // Determine if the argument to sizeof/strlen is equal to the source
9591   // argument.  In principle there's all kinds of things you could do
9592   // here, for instance creating an == expression and evaluating it with
9593   // EvaluateAsBooleanCondition, but this uses a more direct technique:
9594   const DeclRefExpr *SrcArgDRE = dyn_cast<DeclRefExpr>(SrcArg);
9595   if (!SrcArgDRE)
9596     return;
9597 
9598   const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc);
9599   if (!CompareWithSrcDRE ||
9600       SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl())
9601     return;
9602 
9603   const Expr *OriginalSizeArg = Call->getArg(2);
9604   Diag(CompareWithSrcDRE->getBeginLoc(), diag::warn_strlcpycat_wrong_size)
9605       << OriginalSizeArg->getSourceRange() << FnName;
9606 
9607   // Output a FIXIT hint if the destination is an array (rather than a
9608   // pointer to an array).  This could be enhanced to handle some
9609   // pointers if we know the actual size, like if DstArg is 'array+2'
9610   // we could say 'sizeof(array)-2'.
9611   const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts();
9612   if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context))
9613     return;
9614 
9615   SmallString<128> sizeString;
9616   llvm::raw_svector_ostream OS(sizeString);
9617   OS << "sizeof(";
9618   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
9619   OS << ")";
9620 
9621   Diag(OriginalSizeArg->getBeginLoc(), diag::note_strlcpycat_wrong_size)
9622       << FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(),
9623                                       OS.str());
9624 }
9625 
9626 /// Check if two expressions refer to the same declaration.
9627 static bool referToTheSameDecl(const Expr *E1, const Expr *E2) {
9628   if (const DeclRefExpr *D1 = dyn_cast_or_null<DeclRefExpr>(E1))
9629     if (const DeclRefExpr *D2 = dyn_cast_or_null<DeclRefExpr>(E2))
9630       return D1->getDecl() == D2->getDecl();
9631   return false;
9632 }
9633 
9634 static const Expr *getStrlenExprArg(const Expr *E) {
9635   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
9636     const FunctionDecl *FD = CE->getDirectCallee();
9637     if (!FD || FD->getMemoryFunctionKind() != Builtin::BIstrlen)
9638       return nullptr;
9639     return CE->getArg(0)->IgnoreParenCasts();
9640   }
9641   return nullptr;
9642 }
9643 
9644 // Warn on anti-patterns as the 'size' argument to strncat.
9645 // The correct size argument should look like following:
9646 //   strncat(dst, src, sizeof(dst) - strlen(dest) - 1);
9647 void Sema::CheckStrncatArguments(const CallExpr *CE,
9648                                  IdentifierInfo *FnName) {
9649   // Don't crash if the user has the wrong number of arguments.
9650   if (CE->getNumArgs() < 3)
9651     return;
9652   const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts();
9653   const Expr *SrcArg = CE->getArg(1)->IgnoreParenCasts();
9654   const Expr *LenArg = CE->getArg(2)->IgnoreParenCasts();
9655 
9656   if (CheckMemorySizeofForComparison(*this, LenArg, FnName, CE->getBeginLoc(),
9657                                      CE->getRParenLoc()))
9658     return;
9659 
9660   // Identify common expressions, which are wrongly used as the size argument
9661   // to strncat and may lead to buffer overflows.
9662   unsigned PatternType = 0;
9663   if (const Expr *SizeOfArg = getSizeOfExprArg(LenArg)) {
9664     // - sizeof(dst)
9665     if (referToTheSameDecl(SizeOfArg, DstArg))
9666       PatternType = 1;
9667     // - sizeof(src)
9668     else if (referToTheSameDecl(SizeOfArg, SrcArg))
9669       PatternType = 2;
9670   } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(LenArg)) {
9671     if (BE->getOpcode() == BO_Sub) {
9672       const Expr *L = BE->getLHS()->IgnoreParenCasts();
9673       const Expr *R = BE->getRHS()->IgnoreParenCasts();
9674       // - sizeof(dst) - strlen(dst)
9675       if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) &&
9676           referToTheSameDecl(DstArg, getStrlenExprArg(R)))
9677         PatternType = 1;
9678       // - sizeof(src) - (anything)
9679       else if (referToTheSameDecl(SrcArg, getSizeOfExprArg(L)))
9680         PatternType = 2;
9681     }
9682   }
9683 
9684   if (PatternType == 0)
9685     return;
9686 
9687   // Generate the diagnostic.
9688   SourceLocation SL = LenArg->getBeginLoc();
9689   SourceRange SR = LenArg->getSourceRange();
9690   SourceManager &SM = getSourceManager();
9691 
9692   // If the function is defined as a builtin macro, do not show macro expansion.
9693   if (SM.isMacroArgExpansion(SL)) {
9694     SL = SM.getSpellingLoc(SL);
9695     SR = SourceRange(SM.getSpellingLoc(SR.getBegin()),
9696                      SM.getSpellingLoc(SR.getEnd()));
9697   }
9698 
9699   // Check if the destination is an array (rather than a pointer to an array).
9700   QualType DstTy = DstArg->getType();
9701   bool isKnownSizeArray = isConstantSizeArrayWithMoreThanOneElement(DstTy,
9702                                                                     Context);
9703   if (!isKnownSizeArray) {
9704     if (PatternType == 1)
9705       Diag(SL, diag::warn_strncat_wrong_size) << SR;
9706     else
9707       Diag(SL, diag::warn_strncat_src_size) << SR;
9708     return;
9709   }
9710 
9711   if (PatternType == 1)
9712     Diag(SL, diag::warn_strncat_large_size) << SR;
9713   else
9714     Diag(SL, diag::warn_strncat_src_size) << SR;
9715 
9716   SmallString<128> sizeString;
9717   llvm::raw_svector_ostream OS(sizeString);
9718   OS << "sizeof(";
9719   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
9720   OS << ") - ";
9721   OS << "strlen(";
9722   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
9723   OS << ") - 1";
9724 
9725   Diag(SL, diag::note_strncat_wrong_size)
9726     << FixItHint::CreateReplacement(SR, OS.str());
9727 }
9728 
9729 void
9730 Sema::CheckReturnValExpr(Expr *RetValExp, QualType lhsType,
9731                          SourceLocation ReturnLoc,
9732                          bool isObjCMethod,
9733                          const AttrVec *Attrs,
9734                          const FunctionDecl *FD) {
9735   // Check if the return value is null but should not be.
9736   if (((Attrs && hasSpecificAttr<ReturnsNonNullAttr>(*Attrs)) ||
9737        (!isObjCMethod && isNonNullType(Context, lhsType))) &&
9738       CheckNonNullExpr(*this, RetValExp))
9739     Diag(ReturnLoc, diag::warn_null_ret)
9740       << (isObjCMethod ? 1 : 0) << RetValExp->getSourceRange();
9741 
9742   // C++11 [basic.stc.dynamic.allocation]p4:
9743   //   If an allocation function declared with a non-throwing
9744   //   exception-specification fails to allocate storage, it shall return
9745   //   a null pointer. Any other allocation function that fails to allocate
9746   //   storage shall indicate failure only by throwing an exception [...]
9747   if (FD) {
9748     OverloadedOperatorKind Op = FD->getOverloadedOperator();
9749     if (Op == OO_New || Op == OO_Array_New) {
9750       const FunctionProtoType *Proto
9751         = FD->getType()->castAs<FunctionProtoType>();
9752       if (!Proto->isNothrow(/*ResultIfDependent*/true) &&
9753           CheckNonNullExpr(*this, RetValExp))
9754         Diag(ReturnLoc, diag::warn_operator_new_returns_null)
9755           << FD << getLangOpts().CPlusPlus11;
9756     }
9757   }
9758 }
9759 
9760 //===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
9761 
9762 /// Check for comparisons of floating point operands using != and ==.
9763 /// Issue a warning if these are no self-comparisons, as they are not likely
9764 /// to do what the programmer intended.
9765 void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) {
9766   Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts();
9767   Expr* RightExprSansParen = RHS->IgnoreParenImpCasts();
9768 
9769   // Special case: check for x == x (which is OK).
9770   // Do not emit warnings for such cases.
9771   if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
9772     if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
9773       if (DRL->getDecl() == DRR->getDecl())
9774         return;
9775 
9776   // Special case: check for comparisons against literals that can be exactly
9777   //  represented by APFloat.  In such cases, do not emit a warning.  This
9778   //  is a heuristic: often comparison against such literals are used to
9779   //  detect if a value in a variable has not changed.  This clearly can
9780   //  lead to false negatives.
9781   if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
9782     if (FLL->isExact())
9783       return;
9784   } else
9785     if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen))
9786       if (FLR->isExact())
9787         return;
9788 
9789   // Check for comparisons with builtin types.
9790   if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
9791     if (CL->getBuiltinCallee())
9792       return;
9793 
9794   if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
9795     if (CR->getBuiltinCallee())
9796       return;
9797 
9798   // Emit the diagnostic.
9799   Diag(Loc, diag::warn_floatingpoint_eq)
9800     << LHS->getSourceRange() << RHS->getSourceRange();
9801 }
9802 
9803 //===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
9804 //===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
9805 
9806 namespace {
9807 
9808 /// Structure recording the 'active' range of an integer-valued
9809 /// expression.
9810 struct IntRange {
9811   /// The number of bits active in the int.
9812   unsigned Width;
9813 
9814   /// True if the int is known not to have negative values.
9815   bool NonNegative;
9816 
9817   IntRange(unsigned Width, bool NonNegative)
9818       : Width(Width), NonNegative(NonNegative) {}
9819 
9820   /// Returns the range of the bool type.
9821   static IntRange forBoolType() {
9822     return IntRange(1, true);
9823   }
9824 
9825   /// Returns the range of an opaque value of the given integral type.
9826   static IntRange forValueOfType(ASTContext &C, QualType T) {
9827     return forValueOfCanonicalType(C,
9828                           T->getCanonicalTypeInternal().getTypePtr());
9829   }
9830 
9831   /// Returns the range of an opaque value of a canonical integral type.
9832   static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
9833     assert(T->isCanonicalUnqualified());
9834 
9835     if (const VectorType *VT = dyn_cast<VectorType>(T))
9836       T = VT->getElementType().getTypePtr();
9837     if (const ComplexType *CT = dyn_cast<ComplexType>(T))
9838       T = CT->getElementType().getTypePtr();
9839     if (const AtomicType *AT = dyn_cast<AtomicType>(T))
9840       T = AT->getValueType().getTypePtr();
9841 
9842     if (!C.getLangOpts().CPlusPlus) {
9843       // For enum types in C code, use the underlying datatype.
9844       if (const EnumType *ET = dyn_cast<EnumType>(T))
9845         T = ET->getDecl()->getIntegerType().getDesugaredType(C).getTypePtr();
9846     } else if (const EnumType *ET = dyn_cast<EnumType>(T)) {
9847       // For enum types in C++, use the known bit width of the enumerators.
9848       EnumDecl *Enum = ET->getDecl();
9849       // In C++11, enums can have a fixed underlying type. Use this type to
9850       // compute the range.
9851       if (Enum->isFixed()) {
9852         return IntRange(C.getIntWidth(QualType(T, 0)),
9853                         !ET->isSignedIntegerOrEnumerationType());
9854       }
9855 
9856       unsigned NumPositive = Enum->getNumPositiveBits();
9857       unsigned NumNegative = Enum->getNumNegativeBits();
9858 
9859       if (NumNegative == 0)
9860         return IntRange(NumPositive, true/*NonNegative*/);
9861       else
9862         return IntRange(std::max(NumPositive + 1, NumNegative),
9863                         false/*NonNegative*/);
9864     }
9865 
9866     const BuiltinType *BT = cast<BuiltinType>(T);
9867     assert(BT->isInteger());
9868 
9869     return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
9870   }
9871 
9872   /// Returns the "target" range of a canonical integral type, i.e.
9873   /// the range of values expressible in the type.
9874   ///
9875   /// This matches forValueOfCanonicalType except that enums have the
9876   /// full range of their type, not the range of their enumerators.
9877   static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) {
9878     assert(T->isCanonicalUnqualified());
9879 
9880     if (const VectorType *VT = dyn_cast<VectorType>(T))
9881       T = VT->getElementType().getTypePtr();
9882     if (const ComplexType *CT = dyn_cast<ComplexType>(T))
9883       T = CT->getElementType().getTypePtr();
9884     if (const AtomicType *AT = dyn_cast<AtomicType>(T))
9885       T = AT->getValueType().getTypePtr();
9886     if (const EnumType *ET = dyn_cast<EnumType>(T))
9887       T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr();
9888 
9889     const BuiltinType *BT = cast<BuiltinType>(T);
9890     assert(BT->isInteger());
9891 
9892     return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
9893   }
9894 
9895   /// Returns the supremum of two ranges: i.e. their conservative merge.
9896   static IntRange join(IntRange L, IntRange R) {
9897     return IntRange(std::max(L.Width, R.Width),
9898                     L.NonNegative && R.NonNegative);
9899   }
9900 
9901   /// Returns the infinum of two ranges: i.e. their aggressive merge.
9902   static IntRange meet(IntRange L, IntRange R) {
9903     return IntRange(std::min(L.Width, R.Width),
9904                     L.NonNegative || R.NonNegative);
9905   }
9906 };
9907 
9908 } // namespace
9909 
9910 static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value,
9911                               unsigned MaxWidth) {
9912   if (value.isSigned() && value.isNegative())
9913     return IntRange(value.getMinSignedBits(), false);
9914 
9915   if (value.getBitWidth() > MaxWidth)
9916     value = value.trunc(MaxWidth);
9917 
9918   // isNonNegative() just checks the sign bit without considering
9919   // signedness.
9920   return IntRange(value.getActiveBits(), true);
9921 }
9922 
9923 static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
9924                               unsigned MaxWidth) {
9925   if (result.isInt())
9926     return GetValueRange(C, result.getInt(), MaxWidth);
9927 
9928   if (result.isVector()) {
9929     IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
9930     for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
9931       IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
9932       R = IntRange::join(R, El);
9933     }
9934     return R;
9935   }
9936 
9937   if (result.isComplexInt()) {
9938     IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
9939     IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
9940     return IntRange::join(R, I);
9941   }
9942 
9943   // This can happen with lossless casts to intptr_t of "based" lvalues.
9944   // Assume it might use arbitrary bits.
9945   // FIXME: The only reason we need to pass the type in here is to get
9946   // the sign right on this one case.  It would be nice if APValue
9947   // preserved this.
9948   assert(result.isLValue() || result.isAddrLabelDiff());
9949   return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
9950 }
9951 
9952 static QualType GetExprType(const Expr *E) {
9953   QualType Ty = E->getType();
9954   if (const AtomicType *AtomicRHS = Ty->getAs<AtomicType>())
9955     Ty = AtomicRHS->getValueType();
9956   return Ty;
9957 }
9958 
9959 /// Pseudo-evaluate the given integer expression, estimating the
9960 /// range of values it might take.
9961 ///
9962 /// \param MaxWidth - the width to which the value will be truncated
9963 static IntRange GetExprRange(ASTContext &C, const Expr *E, unsigned MaxWidth,
9964                              bool InConstantContext) {
9965   E = E->IgnoreParens();
9966 
9967   // Try a full evaluation first.
9968   Expr::EvalResult result;
9969   if (E->EvaluateAsRValue(result, C, InConstantContext))
9970     return GetValueRange(C, result.Val, GetExprType(E), MaxWidth);
9971 
9972   // I think we only want to look through implicit casts here; if the
9973   // user has an explicit widening cast, we should treat the value as
9974   // being of the new, wider type.
9975   if (const auto *CE = dyn_cast<ImplicitCastExpr>(E)) {
9976     if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue)
9977       return GetExprRange(C, CE->getSubExpr(), MaxWidth, InConstantContext);
9978 
9979     IntRange OutputTypeRange = IntRange::forValueOfType(C, GetExprType(CE));
9980 
9981     bool isIntegerCast = CE->getCastKind() == CK_IntegralCast ||
9982                          CE->getCastKind() == CK_BooleanToSignedIntegral;
9983 
9984     // Assume that non-integer casts can span the full range of the type.
9985     if (!isIntegerCast)
9986       return OutputTypeRange;
9987 
9988     IntRange SubRange = GetExprRange(C, CE->getSubExpr(),
9989                                      std::min(MaxWidth, OutputTypeRange.Width),
9990                                      InConstantContext);
9991 
9992     // Bail out if the subexpr's range is as wide as the cast type.
9993     if (SubRange.Width >= OutputTypeRange.Width)
9994       return OutputTypeRange;
9995 
9996     // Otherwise, we take the smaller width, and we're non-negative if
9997     // either the output type or the subexpr is.
9998     return IntRange(SubRange.Width,
9999                     SubRange.NonNegative || OutputTypeRange.NonNegative);
10000   }
10001 
10002   if (const auto *CO = dyn_cast<ConditionalOperator>(E)) {
10003     // If we can fold the condition, just take that operand.
10004     bool CondResult;
10005     if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
10006       return GetExprRange(C,
10007                           CondResult ? CO->getTrueExpr() : CO->getFalseExpr(),
10008                           MaxWidth, InConstantContext);
10009 
10010     // Otherwise, conservatively merge.
10011     IntRange L =
10012         GetExprRange(C, CO->getTrueExpr(), MaxWidth, InConstantContext);
10013     IntRange R =
10014         GetExprRange(C, CO->getFalseExpr(), MaxWidth, InConstantContext);
10015     return IntRange::join(L, R);
10016   }
10017 
10018   if (const auto *BO = dyn_cast<BinaryOperator>(E)) {
10019     switch (BO->getOpcode()) {
10020     case BO_Cmp:
10021       llvm_unreachable("builtin <=> should have class type");
10022 
10023     // Boolean-valued operations are single-bit and positive.
10024     case BO_LAnd:
10025     case BO_LOr:
10026     case BO_LT:
10027     case BO_GT:
10028     case BO_LE:
10029     case BO_GE:
10030     case BO_EQ:
10031     case BO_NE:
10032       return IntRange::forBoolType();
10033 
10034     // The type of the assignments is the type of the LHS, so the RHS
10035     // is not necessarily the same type.
10036     case BO_MulAssign:
10037     case BO_DivAssign:
10038     case BO_RemAssign:
10039     case BO_AddAssign:
10040     case BO_SubAssign:
10041     case BO_XorAssign:
10042     case BO_OrAssign:
10043       // TODO: bitfields?
10044       return IntRange::forValueOfType(C, GetExprType(E));
10045 
10046     // Simple assignments just pass through the RHS, which will have
10047     // been coerced to the LHS type.
10048     case BO_Assign:
10049       // TODO: bitfields?
10050       return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
10051 
10052     // Operations with opaque sources are black-listed.
10053     case BO_PtrMemD:
10054     case BO_PtrMemI:
10055       return IntRange::forValueOfType(C, GetExprType(E));
10056 
10057     // Bitwise-and uses the *infinum* of the two source ranges.
10058     case BO_And:
10059     case BO_AndAssign:
10060       return IntRange::meet(
10061           GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext),
10062           GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext));
10063 
10064     // Left shift gets black-listed based on a judgement call.
10065     case BO_Shl:
10066       // ...except that we want to treat '1 << (blah)' as logically
10067       // positive.  It's an important idiom.
10068       if (IntegerLiteral *I
10069             = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
10070         if (I->getValue() == 1) {
10071           IntRange R = IntRange::forValueOfType(C, GetExprType(E));
10072           return IntRange(R.Width, /*NonNegative*/ true);
10073         }
10074       }
10075       LLVM_FALLTHROUGH;
10076 
10077     case BO_ShlAssign:
10078       return IntRange::forValueOfType(C, GetExprType(E));
10079 
10080     // Right shift by a constant can narrow its left argument.
10081     case BO_Shr:
10082     case BO_ShrAssign: {
10083       IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext);
10084 
10085       // If the shift amount is a positive constant, drop the width by
10086       // that much.
10087       llvm::APSInt shift;
10088       if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
10089           shift.isNonNegative()) {
10090         unsigned zext = shift.getZExtValue();
10091         if (zext >= L.Width)
10092           L.Width = (L.NonNegative ? 0 : 1);
10093         else
10094           L.Width -= zext;
10095       }
10096 
10097       return L;
10098     }
10099 
10100     // Comma acts as its right operand.
10101     case BO_Comma:
10102       return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
10103 
10104     // Black-list pointer subtractions.
10105     case BO_Sub:
10106       if (BO->getLHS()->getType()->isPointerType())
10107         return IntRange::forValueOfType(C, GetExprType(E));
10108       break;
10109 
10110     // The width of a division result is mostly determined by the size
10111     // of the LHS.
10112     case BO_Div: {
10113       // Don't 'pre-truncate' the operands.
10114       unsigned opWidth = C.getIntWidth(GetExprType(E));
10115       IntRange L = GetExprRange(C, BO->getLHS(), opWidth, InConstantContext);
10116 
10117       // If the divisor is constant, use that.
10118       llvm::APSInt divisor;
10119       if (BO->getRHS()->isIntegerConstantExpr(divisor, C)) {
10120         unsigned log2 = divisor.logBase2(); // floor(log_2(divisor))
10121         if (log2 >= L.Width)
10122           L.Width = (L.NonNegative ? 0 : 1);
10123         else
10124           L.Width = std::min(L.Width - log2, MaxWidth);
10125         return L;
10126       }
10127 
10128       // Otherwise, just use the LHS's width.
10129       IntRange R = GetExprRange(C, BO->getRHS(), opWidth, InConstantContext);
10130       return IntRange(L.Width, L.NonNegative && R.NonNegative);
10131     }
10132 
10133     // The result of a remainder can't be larger than the result of
10134     // either side.
10135     case BO_Rem: {
10136       // Don't 'pre-truncate' the operands.
10137       unsigned opWidth = C.getIntWidth(GetExprType(E));
10138       IntRange L = GetExprRange(C, BO->getLHS(), opWidth, InConstantContext);
10139       IntRange R = GetExprRange(C, BO->getRHS(), opWidth, InConstantContext);
10140 
10141       IntRange meet = IntRange::meet(L, R);
10142       meet.Width = std::min(meet.Width, MaxWidth);
10143       return meet;
10144     }
10145 
10146     // The default behavior is okay for these.
10147     case BO_Mul:
10148     case BO_Add:
10149     case BO_Xor:
10150     case BO_Or:
10151       break;
10152     }
10153 
10154     // The default case is to treat the operation as if it were closed
10155     // on the narrowest type that encompasses both operands.
10156     IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext);
10157     IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
10158     return IntRange::join(L, R);
10159   }
10160 
10161   if (const auto *UO = dyn_cast<UnaryOperator>(E)) {
10162     switch (UO->getOpcode()) {
10163     // Boolean-valued operations are white-listed.
10164     case UO_LNot:
10165       return IntRange::forBoolType();
10166 
10167     // Operations with opaque sources are black-listed.
10168     case UO_Deref:
10169     case UO_AddrOf: // should be impossible
10170       return IntRange::forValueOfType(C, GetExprType(E));
10171 
10172     default:
10173       return GetExprRange(C, UO->getSubExpr(), MaxWidth, InConstantContext);
10174     }
10175   }
10176 
10177   if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
10178     return GetExprRange(C, OVE->getSourceExpr(), MaxWidth, InConstantContext);
10179 
10180   if (const auto *BitField = E->getSourceBitField())
10181     return IntRange(BitField->getBitWidthValue(C),
10182                     BitField->getType()->isUnsignedIntegerOrEnumerationType());
10183 
10184   return IntRange::forValueOfType(C, GetExprType(E));
10185 }
10186 
10187 static IntRange GetExprRange(ASTContext &C, const Expr *E,
10188                              bool InConstantContext) {
10189   return GetExprRange(C, E, C.getIntWidth(GetExprType(E)), InConstantContext);
10190 }
10191 
10192 /// Checks whether the given value, which currently has the given
10193 /// source semantics, has the same value when coerced through the
10194 /// target semantics.
10195 static bool IsSameFloatAfterCast(const llvm::APFloat &value,
10196                                  const llvm::fltSemantics &Src,
10197                                  const llvm::fltSemantics &Tgt) {
10198   llvm::APFloat truncated = value;
10199 
10200   bool ignored;
10201   truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
10202   truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
10203 
10204   return truncated.bitwiseIsEqual(value);
10205 }
10206 
10207 /// Checks whether the given value, which currently has the given
10208 /// source semantics, has the same value when coerced through the
10209 /// target semantics.
10210 ///
10211 /// The value might be a vector of floats (or a complex number).
10212 static bool IsSameFloatAfterCast(const APValue &value,
10213                                  const llvm::fltSemantics &Src,
10214                                  const llvm::fltSemantics &Tgt) {
10215   if (value.isFloat())
10216     return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
10217 
10218   if (value.isVector()) {
10219     for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
10220       if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
10221         return false;
10222     return true;
10223   }
10224 
10225   assert(value.isComplexFloat());
10226   return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
10227           IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
10228 }
10229 
10230 static void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC,
10231                                        bool IsListInit = false);
10232 
10233 static bool IsEnumConstOrFromMacro(Sema &S, Expr *E) {
10234   // Suppress cases where we are comparing against an enum constant.
10235   if (const DeclRefExpr *DR =
10236       dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
10237     if (isa<EnumConstantDecl>(DR->getDecl()))
10238       return true;
10239 
10240   // Suppress cases where the value is expanded from a macro, unless that macro
10241   // is how a language represents a boolean literal. This is the case in both C
10242   // and Objective-C.
10243   SourceLocation BeginLoc = E->getBeginLoc();
10244   if (BeginLoc.isMacroID()) {
10245     StringRef MacroName = Lexer::getImmediateMacroName(
10246         BeginLoc, S.getSourceManager(), S.getLangOpts());
10247     return MacroName != "YES" && MacroName != "NO" &&
10248            MacroName != "true" && MacroName != "false";
10249   }
10250 
10251   return false;
10252 }
10253 
10254 static bool isKnownToHaveUnsignedValue(Expr *E) {
10255   return E->getType()->isIntegerType() &&
10256          (!E->getType()->isSignedIntegerType() ||
10257           !E->IgnoreParenImpCasts()->getType()->isSignedIntegerType());
10258 }
10259 
10260 namespace {
10261 /// The promoted range of values of a type. In general this has the
10262 /// following structure:
10263 ///
10264 ///     |-----------| . . . |-----------|
10265 ///     ^           ^       ^           ^
10266 ///    Min       HoleMin  HoleMax      Max
10267 ///
10268 /// ... where there is only a hole if a signed type is promoted to unsigned
10269 /// (in which case Min and Max are the smallest and largest representable
10270 /// values).
10271 struct PromotedRange {
10272   // Min, or HoleMax if there is a hole.
10273   llvm::APSInt PromotedMin;
10274   // Max, or HoleMin if there is a hole.
10275   llvm::APSInt PromotedMax;
10276 
10277   PromotedRange(IntRange R, unsigned BitWidth, bool Unsigned) {
10278     if (R.Width == 0)
10279       PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned);
10280     else if (R.Width >= BitWidth && !Unsigned) {
10281       // Promotion made the type *narrower*. This happens when promoting
10282       // a < 32-bit unsigned / <= 32-bit signed bit-field to 'signed int'.
10283       // Treat all values of 'signed int' as being in range for now.
10284       PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned);
10285       PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned);
10286     } else {
10287       PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative)
10288                         .extOrTrunc(BitWidth);
10289       PromotedMin.setIsUnsigned(Unsigned);
10290 
10291       PromotedMax = llvm::APSInt::getMaxValue(R.Width, R.NonNegative)
10292                         .extOrTrunc(BitWidth);
10293       PromotedMax.setIsUnsigned(Unsigned);
10294     }
10295   }
10296 
10297   // Determine whether this range is contiguous (has no hole).
10298   bool isContiguous() const { return PromotedMin <= PromotedMax; }
10299 
10300   // Where a constant value is within the range.
10301   enum ComparisonResult {
10302     LT = 0x1,
10303     LE = 0x2,
10304     GT = 0x4,
10305     GE = 0x8,
10306     EQ = 0x10,
10307     NE = 0x20,
10308     InRangeFlag = 0x40,
10309 
10310     Less = LE | LT | NE,
10311     Min = LE | InRangeFlag,
10312     InRange = InRangeFlag,
10313     Max = GE | InRangeFlag,
10314     Greater = GE | GT | NE,
10315 
10316     OnlyValue = LE | GE | EQ | InRangeFlag,
10317     InHole = NE
10318   };
10319 
10320   ComparisonResult compare(const llvm::APSInt &Value) const {
10321     assert(Value.getBitWidth() == PromotedMin.getBitWidth() &&
10322            Value.isUnsigned() == PromotedMin.isUnsigned());
10323     if (!isContiguous()) {
10324       assert(Value.isUnsigned() && "discontiguous range for signed compare");
10325       if (Value.isMinValue()) return Min;
10326       if (Value.isMaxValue()) return Max;
10327       if (Value >= PromotedMin) return InRange;
10328       if (Value <= PromotedMax) return InRange;
10329       return InHole;
10330     }
10331 
10332     switch (llvm::APSInt::compareValues(Value, PromotedMin)) {
10333     case -1: return Less;
10334     case 0: return PromotedMin == PromotedMax ? OnlyValue : Min;
10335     case 1:
10336       switch (llvm::APSInt::compareValues(Value, PromotedMax)) {
10337       case -1: return InRange;
10338       case 0: return Max;
10339       case 1: return Greater;
10340       }
10341     }
10342 
10343     llvm_unreachable("impossible compare result");
10344   }
10345 
10346   static llvm::Optional<StringRef>
10347   constantValue(BinaryOperatorKind Op, ComparisonResult R, bool ConstantOnRHS) {
10348     if (Op == BO_Cmp) {
10349       ComparisonResult LTFlag = LT, GTFlag = GT;
10350       if (ConstantOnRHS) std::swap(LTFlag, GTFlag);
10351 
10352       if (R & EQ) return StringRef("'std::strong_ordering::equal'");
10353       if (R & LTFlag) return StringRef("'std::strong_ordering::less'");
10354       if (R & GTFlag) return StringRef("'std::strong_ordering::greater'");
10355       return llvm::None;
10356     }
10357 
10358     ComparisonResult TrueFlag, FalseFlag;
10359     if (Op == BO_EQ) {
10360       TrueFlag = EQ;
10361       FalseFlag = NE;
10362     } else if (Op == BO_NE) {
10363       TrueFlag = NE;
10364       FalseFlag = EQ;
10365     } else {
10366       if ((Op == BO_LT || Op == BO_GE) ^ ConstantOnRHS) {
10367         TrueFlag = LT;
10368         FalseFlag = GE;
10369       } else {
10370         TrueFlag = GT;
10371         FalseFlag = LE;
10372       }
10373       if (Op == BO_GE || Op == BO_LE)
10374         std::swap(TrueFlag, FalseFlag);
10375     }
10376     if (R & TrueFlag)
10377       return StringRef("true");
10378     if (R & FalseFlag)
10379       return StringRef("false");
10380     return llvm::None;
10381   }
10382 };
10383 }
10384 
10385 static bool HasEnumType(Expr *E) {
10386   // Strip off implicit integral promotions.
10387   while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
10388     if (ICE->getCastKind() != CK_IntegralCast &&
10389         ICE->getCastKind() != CK_NoOp)
10390       break;
10391     E = ICE->getSubExpr();
10392   }
10393 
10394   return E->getType()->isEnumeralType();
10395 }
10396 
10397 static int classifyConstantValue(Expr *Constant) {
10398   // The values of this enumeration are used in the diagnostics
10399   // diag::warn_out_of_range_compare and diag::warn_tautological_bool_compare.
10400   enum ConstantValueKind {
10401     Miscellaneous = 0,
10402     LiteralTrue,
10403     LiteralFalse
10404   };
10405   if (auto *BL = dyn_cast<CXXBoolLiteralExpr>(Constant))
10406     return BL->getValue() ? ConstantValueKind::LiteralTrue
10407                           : ConstantValueKind::LiteralFalse;
10408   return ConstantValueKind::Miscellaneous;
10409 }
10410 
10411 static bool CheckTautologicalComparison(Sema &S, BinaryOperator *E,
10412                                         Expr *Constant, Expr *Other,
10413                                         const llvm::APSInt &Value,
10414                                         bool RhsConstant) {
10415   if (S.inTemplateInstantiation())
10416     return false;
10417 
10418   Expr *OriginalOther = Other;
10419 
10420   Constant = Constant->IgnoreParenImpCasts();
10421   Other = Other->IgnoreParenImpCasts();
10422 
10423   // Suppress warnings on tautological comparisons between values of the same
10424   // enumeration type. There are only two ways we could warn on this:
10425   //  - If the constant is outside the range of representable values of
10426   //    the enumeration. In such a case, we should warn about the cast
10427   //    to enumeration type, not about the comparison.
10428   //  - If the constant is the maximum / minimum in-range value. For an
10429   //    enumeratin type, such comparisons can be meaningful and useful.
10430   if (Constant->getType()->isEnumeralType() &&
10431       S.Context.hasSameUnqualifiedType(Constant->getType(), Other->getType()))
10432     return false;
10433 
10434   // TODO: Investigate using GetExprRange() to get tighter bounds
10435   // on the bit ranges.
10436   QualType OtherT = Other->getType();
10437   if (const auto *AT = OtherT->getAs<AtomicType>())
10438     OtherT = AT->getValueType();
10439   IntRange OtherRange = IntRange::forValueOfType(S.Context, OtherT);
10440 
10441   // Special case for ObjC BOOL on targets where its a typedef for a signed char
10442   // (Namely, macOS).
10443   bool IsObjCSignedCharBool = S.getLangOpts().ObjC &&
10444                               S.NSAPIObj->isObjCBOOLType(OtherT) &&
10445                               OtherT->isSpecificBuiltinType(BuiltinType::SChar);
10446 
10447   // Whether we're treating Other as being a bool because of the form of
10448   // expression despite it having another type (typically 'int' in C).
10449   bool OtherIsBooleanDespiteType =
10450       !OtherT->isBooleanType() && Other->isKnownToHaveBooleanValue();
10451   if (OtherIsBooleanDespiteType || IsObjCSignedCharBool)
10452     OtherRange = IntRange::forBoolType();
10453 
10454   // Determine the promoted range of the other type and see if a comparison of
10455   // the constant against that range is tautological.
10456   PromotedRange OtherPromotedRange(OtherRange, Value.getBitWidth(),
10457                                    Value.isUnsigned());
10458   auto Cmp = OtherPromotedRange.compare(Value);
10459   auto Result = PromotedRange::constantValue(E->getOpcode(), Cmp, RhsConstant);
10460   if (!Result)
10461     return false;
10462 
10463   // Suppress the diagnostic for an in-range comparison if the constant comes
10464   // from a macro or enumerator. We don't want to diagnose
10465   //
10466   //   some_long_value <= INT_MAX
10467   //
10468   // when sizeof(int) == sizeof(long).
10469   bool InRange = Cmp & PromotedRange::InRangeFlag;
10470   if (InRange && IsEnumConstOrFromMacro(S, Constant))
10471     return false;
10472 
10473   // If this is a comparison to an enum constant, include that
10474   // constant in the diagnostic.
10475   const EnumConstantDecl *ED = nullptr;
10476   if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Constant))
10477     ED = dyn_cast<EnumConstantDecl>(DR->getDecl());
10478 
10479   // Should be enough for uint128 (39 decimal digits)
10480   SmallString<64> PrettySourceValue;
10481   llvm::raw_svector_ostream OS(PrettySourceValue);
10482   if (ED) {
10483     OS << '\'' << *ED << "' (" << Value << ")";
10484   } else if (auto *BL = dyn_cast<ObjCBoolLiteralExpr>(
10485                Constant->IgnoreParenImpCasts())) {
10486     OS << (BL->getValue() ? "YES" : "NO");
10487   } else {
10488     OS << Value;
10489   }
10490 
10491   if (IsObjCSignedCharBool) {
10492     S.DiagRuntimeBehavior(E->getOperatorLoc(), E,
10493                           S.PDiag(diag::warn_tautological_compare_objc_bool)
10494                               << OS.str() << *Result);
10495     return true;
10496   }
10497 
10498   // FIXME: We use a somewhat different formatting for the in-range cases and
10499   // cases involving boolean values for historical reasons. We should pick a
10500   // consistent way of presenting these diagnostics.
10501   if (!InRange || Other->isKnownToHaveBooleanValue()) {
10502 
10503     S.DiagRuntimeBehavior(
10504         E->getOperatorLoc(), E,
10505         S.PDiag(!InRange ? diag::warn_out_of_range_compare
10506                          : diag::warn_tautological_bool_compare)
10507             << OS.str() << classifyConstantValue(Constant) << OtherT
10508             << OtherIsBooleanDespiteType << *Result
10509             << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange());
10510   } else {
10511     unsigned Diag = (isKnownToHaveUnsignedValue(OriginalOther) && Value == 0)
10512                         ? (HasEnumType(OriginalOther)
10513                                ? diag::warn_unsigned_enum_always_true_comparison
10514                                : diag::warn_unsigned_always_true_comparison)
10515                         : diag::warn_tautological_constant_compare;
10516 
10517     S.Diag(E->getOperatorLoc(), Diag)
10518         << RhsConstant << OtherT << E->getOpcodeStr() << OS.str() << *Result
10519         << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
10520   }
10521 
10522   return true;
10523 }
10524 
10525 /// Analyze the operands of the given comparison.  Implements the
10526 /// fallback case from AnalyzeComparison.
10527 static void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
10528   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
10529   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
10530 }
10531 
10532 /// Implements -Wsign-compare.
10533 ///
10534 /// \param E the binary operator to check for warnings
10535 static void AnalyzeComparison(Sema &S, BinaryOperator *E) {
10536   // The type the comparison is being performed in.
10537   QualType T = E->getLHS()->getType();
10538 
10539   // Only analyze comparison operators where both sides have been converted to
10540   // the same type.
10541   if (!S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType()))
10542     return AnalyzeImpConvsInComparison(S, E);
10543 
10544   // Don't analyze value-dependent comparisons directly.
10545   if (E->isValueDependent())
10546     return AnalyzeImpConvsInComparison(S, E);
10547 
10548   Expr *LHS = E->getLHS();
10549   Expr *RHS = E->getRHS();
10550 
10551   if (T->isIntegralType(S.Context)) {
10552     llvm::APSInt RHSValue;
10553     llvm::APSInt LHSValue;
10554 
10555     bool IsRHSIntegralLiteral = RHS->isIntegerConstantExpr(RHSValue, S.Context);
10556     bool IsLHSIntegralLiteral = LHS->isIntegerConstantExpr(LHSValue, S.Context);
10557 
10558     // We don't care about expressions whose result is a constant.
10559     if (IsRHSIntegralLiteral && IsLHSIntegralLiteral)
10560       return AnalyzeImpConvsInComparison(S, E);
10561 
10562     // We only care about expressions where just one side is literal
10563     if (IsRHSIntegralLiteral ^ IsLHSIntegralLiteral) {
10564       // Is the constant on the RHS or LHS?
10565       const bool RhsConstant = IsRHSIntegralLiteral;
10566       Expr *Const = RhsConstant ? RHS : LHS;
10567       Expr *Other = RhsConstant ? LHS : RHS;
10568       const llvm::APSInt &Value = RhsConstant ? RHSValue : LHSValue;
10569 
10570       // Check whether an integer constant comparison results in a value
10571       // of 'true' or 'false'.
10572       if (CheckTautologicalComparison(S, E, Const, Other, Value, RhsConstant))
10573         return AnalyzeImpConvsInComparison(S, E);
10574     }
10575   }
10576 
10577   if (!T->hasUnsignedIntegerRepresentation()) {
10578     // We don't do anything special if this isn't an unsigned integral
10579     // comparison:  we're only interested in integral comparisons, and
10580     // signed comparisons only happen in cases we don't care to warn about.
10581     return AnalyzeImpConvsInComparison(S, E);
10582   }
10583 
10584   LHS = LHS->IgnoreParenImpCasts();
10585   RHS = RHS->IgnoreParenImpCasts();
10586 
10587   if (!S.getLangOpts().CPlusPlus) {
10588     // Avoid warning about comparison of integers with different signs when
10589     // RHS/LHS has a `typeof(E)` type whose sign is different from the sign of
10590     // the type of `E`.
10591     if (const auto *TET = dyn_cast<TypeOfExprType>(LHS->getType()))
10592       LHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts();
10593     if (const auto *TET = dyn_cast<TypeOfExprType>(RHS->getType()))
10594       RHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts();
10595   }
10596 
10597   // Check to see if one of the (unmodified) operands is of different
10598   // signedness.
10599   Expr *signedOperand, *unsignedOperand;
10600   if (LHS->getType()->hasSignedIntegerRepresentation()) {
10601     assert(!RHS->getType()->hasSignedIntegerRepresentation() &&
10602            "unsigned comparison between two signed integer expressions?");
10603     signedOperand = LHS;
10604     unsignedOperand = RHS;
10605   } else if (RHS->getType()->hasSignedIntegerRepresentation()) {
10606     signedOperand = RHS;
10607     unsignedOperand = LHS;
10608   } else {
10609     return AnalyzeImpConvsInComparison(S, E);
10610   }
10611 
10612   // Otherwise, calculate the effective range of the signed operand.
10613   IntRange signedRange =
10614       GetExprRange(S.Context, signedOperand, S.isConstantEvaluated());
10615 
10616   // Go ahead and analyze implicit conversions in the operands.  Note
10617   // that we skip the implicit conversions on both sides.
10618   AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc());
10619   AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc());
10620 
10621   // If the signed range is non-negative, -Wsign-compare won't fire.
10622   if (signedRange.NonNegative)
10623     return;
10624 
10625   // For (in)equality comparisons, if the unsigned operand is a
10626   // constant which cannot collide with a overflowed signed operand,
10627   // then reinterpreting the signed operand as unsigned will not
10628   // change the result of the comparison.
10629   if (E->isEqualityOp()) {
10630     unsigned comparisonWidth = S.Context.getIntWidth(T);
10631     IntRange unsignedRange =
10632         GetExprRange(S.Context, unsignedOperand, S.isConstantEvaluated());
10633 
10634     // We should never be unable to prove that the unsigned operand is
10635     // non-negative.
10636     assert(unsignedRange.NonNegative && "unsigned range includes negative?");
10637 
10638     if (unsignedRange.Width < comparisonWidth)
10639       return;
10640   }
10641 
10642   S.DiagRuntimeBehavior(E->getOperatorLoc(), E,
10643                         S.PDiag(diag::warn_mixed_sign_comparison)
10644                             << LHS->getType() << RHS->getType()
10645                             << LHS->getSourceRange() << RHS->getSourceRange());
10646 }
10647 
10648 /// Analyzes an attempt to assign the given value to a bitfield.
10649 ///
10650 /// Returns true if there was something fishy about the attempt.
10651 static bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
10652                                       SourceLocation InitLoc) {
10653   assert(Bitfield->isBitField());
10654   if (Bitfield->isInvalidDecl())
10655     return false;
10656 
10657   // White-list bool bitfields.
10658   QualType BitfieldType = Bitfield->getType();
10659   if (BitfieldType->isBooleanType())
10660      return false;
10661 
10662   if (BitfieldType->isEnumeralType()) {
10663     EnumDecl *BitfieldEnumDecl = BitfieldType->getAs<EnumType>()->getDecl();
10664     // If the underlying enum type was not explicitly specified as an unsigned
10665     // type and the enum contain only positive values, MSVC++ will cause an
10666     // inconsistency by storing this as a signed type.
10667     if (S.getLangOpts().CPlusPlus11 &&
10668         !BitfieldEnumDecl->getIntegerTypeSourceInfo() &&
10669         BitfieldEnumDecl->getNumPositiveBits() > 0 &&
10670         BitfieldEnumDecl->getNumNegativeBits() == 0) {
10671       S.Diag(InitLoc, diag::warn_no_underlying_type_specified_for_enum_bitfield)
10672         << BitfieldEnumDecl->getNameAsString();
10673     }
10674   }
10675 
10676   if (Bitfield->getType()->isBooleanType())
10677     return false;
10678 
10679   // Ignore value- or type-dependent expressions.
10680   if (Bitfield->getBitWidth()->isValueDependent() ||
10681       Bitfield->getBitWidth()->isTypeDependent() ||
10682       Init->isValueDependent() ||
10683       Init->isTypeDependent())
10684     return false;
10685 
10686   Expr *OriginalInit = Init->IgnoreParenImpCasts();
10687   unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
10688 
10689   Expr::EvalResult Result;
10690   if (!OriginalInit->EvaluateAsInt(Result, S.Context,
10691                                    Expr::SE_AllowSideEffects)) {
10692     // The RHS is not constant.  If the RHS has an enum type, make sure the
10693     // bitfield is wide enough to hold all the values of the enum without
10694     // truncation.
10695     if (const auto *EnumTy = OriginalInit->getType()->getAs<EnumType>()) {
10696       EnumDecl *ED = EnumTy->getDecl();
10697       bool SignedBitfield = BitfieldType->isSignedIntegerType();
10698 
10699       // Enum types are implicitly signed on Windows, so check if there are any
10700       // negative enumerators to see if the enum was intended to be signed or
10701       // not.
10702       bool SignedEnum = ED->getNumNegativeBits() > 0;
10703 
10704       // Check for surprising sign changes when assigning enum values to a
10705       // bitfield of different signedness.  If the bitfield is signed and we
10706       // have exactly the right number of bits to store this unsigned enum,
10707       // suggest changing the enum to an unsigned type. This typically happens
10708       // on Windows where unfixed enums always use an underlying type of 'int'.
10709       unsigned DiagID = 0;
10710       if (SignedEnum && !SignedBitfield) {
10711         DiagID = diag::warn_unsigned_bitfield_assigned_signed_enum;
10712       } else if (SignedBitfield && !SignedEnum &&
10713                  ED->getNumPositiveBits() == FieldWidth) {
10714         DiagID = diag::warn_signed_bitfield_enum_conversion;
10715       }
10716 
10717       if (DiagID) {
10718         S.Diag(InitLoc, DiagID) << Bitfield << ED;
10719         TypeSourceInfo *TSI = Bitfield->getTypeSourceInfo();
10720         SourceRange TypeRange =
10721             TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange();
10722         S.Diag(Bitfield->getTypeSpecStartLoc(), diag::note_change_bitfield_sign)
10723             << SignedEnum << TypeRange;
10724       }
10725 
10726       // Compute the required bitwidth. If the enum has negative values, we need
10727       // one more bit than the normal number of positive bits to represent the
10728       // sign bit.
10729       unsigned BitsNeeded = SignedEnum ? std::max(ED->getNumPositiveBits() + 1,
10730                                                   ED->getNumNegativeBits())
10731                                        : ED->getNumPositiveBits();
10732 
10733       // Check the bitwidth.
10734       if (BitsNeeded > FieldWidth) {
10735         Expr *WidthExpr = Bitfield->getBitWidth();
10736         S.Diag(InitLoc, diag::warn_bitfield_too_small_for_enum)
10737             << Bitfield << ED;
10738         S.Diag(WidthExpr->getExprLoc(), diag::note_widen_bitfield)
10739             << BitsNeeded << ED << WidthExpr->getSourceRange();
10740       }
10741     }
10742 
10743     return false;
10744   }
10745 
10746   llvm::APSInt Value = Result.Val.getInt();
10747 
10748   unsigned OriginalWidth = Value.getBitWidth();
10749 
10750   if (!Value.isSigned() || Value.isNegative())
10751     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(OriginalInit))
10752       if (UO->getOpcode() == UO_Minus || UO->getOpcode() == UO_Not)
10753         OriginalWidth = Value.getMinSignedBits();
10754 
10755   if (OriginalWidth <= FieldWidth)
10756     return false;
10757 
10758   // Compute the value which the bitfield will contain.
10759   llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
10760   TruncatedValue.setIsSigned(BitfieldType->isSignedIntegerType());
10761 
10762   // Check whether the stored value is equal to the original value.
10763   TruncatedValue = TruncatedValue.extend(OriginalWidth);
10764   if (llvm::APSInt::isSameValue(Value, TruncatedValue))
10765     return false;
10766 
10767   // Special-case bitfields of width 1: booleans are naturally 0/1, and
10768   // therefore don't strictly fit into a signed bitfield of width 1.
10769   if (FieldWidth == 1 && Value == 1)
10770     return false;
10771 
10772   std::string PrettyValue = Value.toString(10);
10773   std::string PrettyTrunc = TruncatedValue.toString(10);
10774 
10775   S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant)
10776     << PrettyValue << PrettyTrunc << OriginalInit->getType()
10777     << Init->getSourceRange();
10778 
10779   return true;
10780 }
10781 
10782 /// Analyze the given simple or compound assignment for warning-worthy
10783 /// operations.
10784 static void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
10785   // Just recurse on the LHS.
10786   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
10787 
10788   // We want to recurse on the RHS as normal unless we're assigning to
10789   // a bitfield.
10790   if (FieldDecl *Bitfield = E->getLHS()->getSourceBitField()) {
10791     if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
10792                                   E->getOperatorLoc())) {
10793       // Recurse, ignoring any implicit conversions on the RHS.
10794       return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
10795                                         E->getOperatorLoc());
10796     }
10797   }
10798 
10799   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
10800 
10801   // Diagnose implicitly sequentially-consistent atomic assignment.
10802   if (E->getLHS()->getType()->isAtomicType())
10803     S.Diag(E->getRHS()->getBeginLoc(), diag::warn_atomic_implicit_seq_cst);
10804 }
10805 
10806 /// Diagnose an implicit cast;  purely a helper for CheckImplicitConversion.
10807 static void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
10808                             SourceLocation CContext, unsigned diag,
10809                             bool pruneControlFlow = false) {
10810   if (pruneControlFlow) {
10811     S.DiagRuntimeBehavior(E->getExprLoc(), E,
10812                           S.PDiag(diag)
10813                               << SourceType << T << E->getSourceRange()
10814                               << SourceRange(CContext));
10815     return;
10816   }
10817   S.Diag(E->getExprLoc(), diag)
10818     << SourceType << T << E->getSourceRange() << SourceRange(CContext);
10819 }
10820 
10821 /// Diagnose an implicit cast;  purely a helper for CheckImplicitConversion.
10822 static void DiagnoseImpCast(Sema &S, Expr *E, QualType T,
10823                             SourceLocation CContext,
10824                             unsigned diag, bool pruneControlFlow = false) {
10825   DiagnoseImpCast(S, E, E->getType(), T, CContext, diag, pruneControlFlow);
10826 }
10827 
10828 /// Diagnose an implicit cast from a floating point value to an integer value.
10829 static void DiagnoseFloatingImpCast(Sema &S, Expr *E, QualType T,
10830                                     SourceLocation CContext) {
10831   const bool IsBool = T->isSpecificBuiltinType(BuiltinType::Bool);
10832   const bool PruneWarnings = S.inTemplateInstantiation();
10833 
10834   Expr *InnerE = E->IgnoreParenImpCasts();
10835   // We also want to warn on, e.g., "int i = -1.234"
10836   if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE))
10837     if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus)
10838       InnerE = UOp->getSubExpr()->IgnoreParenImpCasts();
10839 
10840   const bool IsLiteral =
10841       isa<FloatingLiteral>(E) || isa<FloatingLiteral>(InnerE);
10842 
10843   llvm::APFloat Value(0.0);
10844   bool IsConstant =
10845     E->EvaluateAsFloat(Value, S.Context, Expr::SE_AllowSideEffects);
10846   if (!IsConstant) {
10847     return DiagnoseImpCast(S, E, T, CContext,
10848                            diag::warn_impcast_float_integer, PruneWarnings);
10849   }
10850 
10851   bool isExact = false;
10852 
10853   llvm::APSInt IntegerValue(S.Context.getIntWidth(T),
10854                             T->hasUnsignedIntegerRepresentation());
10855   llvm::APFloat::opStatus Result = Value.convertToInteger(
10856       IntegerValue, llvm::APFloat::rmTowardZero, &isExact);
10857 
10858   if (Result == llvm::APFloat::opOK && isExact) {
10859     if (IsLiteral) return;
10860     return DiagnoseImpCast(S, E, T, CContext, diag::warn_impcast_float_integer,
10861                            PruneWarnings);
10862   }
10863 
10864   // Conversion of a floating-point value to a non-bool integer where the
10865   // integral part cannot be represented by the integer type is undefined.
10866   if (!IsBool && Result == llvm::APFloat::opInvalidOp)
10867     return DiagnoseImpCast(
10868         S, E, T, CContext,
10869         IsLiteral ? diag::warn_impcast_literal_float_to_integer_out_of_range
10870                   : diag::warn_impcast_float_to_integer_out_of_range,
10871         PruneWarnings);
10872 
10873   unsigned DiagID = 0;
10874   if (IsLiteral) {
10875     // Warn on floating point literal to integer.
10876     DiagID = diag::warn_impcast_literal_float_to_integer;
10877   } else if (IntegerValue == 0) {
10878     if (Value.isZero()) {  // Skip -0.0 to 0 conversion.
10879       return DiagnoseImpCast(S, E, T, CContext,
10880                              diag::warn_impcast_float_integer, PruneWarnings);
10881     }
10882     // Warn on non-zero to zero conversion.
10883     DiagID = diag::warn_impcast_float_to_integer_zero;
10884   } else {
10885     if (IntegerValue.isUnsigned()) {
10886       if (!IntegerValue.isMaxValue()) {
10887         return DiagnoseImpCast(S, E, T, CContext,
10888                                diag::warn_impcast_float_integer, PruneWarnings);
10889       }
10890     } else {  // IntegerValue.isSigned()
10891       if (!IntegerValue.isMaxSignedValue() &&
10892           !IntegerValue.isMinSignedValue()) {
10893         return DiagnoseImpCast(S, E, T, CContext,
10894                                diag::warn_impcast_float_integer, PruneWarnings);
10895       }
10896     }
10897     // Warn on evaluatable floating point expression to integer conversion.
10898     DiagID = diag::warn_impcast_float_to_integer;
10899   }
10900 
10901   // FIXME: Force the precision of the source value down so we don't print
10902   // digits which are usually useless (we don't really care here if we
10903   // truncate a digit by accident in edge cases).  Ideally, APFloat::toString
10904   // would automatically print the shortest representation, but it's a bit
10905   // tricky to implement.
10906   SmallString<16> PrettySourceValue;
10907   unsigned precision = llvm::APFloat::semanticsPrecision(Value.getSemantics());
10908   precision = (precision * 59 + 195) / 196;
10909   Value.toString(PrettySourceValue, precision);
10910 
10911   SmallString<16> PrettyTargetValue;
10912   if (IsBool)
10913     PrettyTargetValue = Value.isZero() ? "false" : "true";
10914   else
10915     IntegerValue.toString(PrettyTargetValue);
10916 
10917   if (PruneWarnings) {
10918     S.DiagRuntimeBehavior(E->getExprLoc(), E,
10919                           S.PDiag(DiagID)
10920                               << E->getType() << T.getUnqualifiedType()
10921                               << PrettySourceValue << PrettyTargetValue
10922                               << E->getSourceRange() << SourceRange(CContext));
10923   } else {
10924     S.Diag(E->getExprLoc(), DiagID)
10925         << E->getType() << T.getUnqualifiedType() << PrettySourceValue
10926         << PrettyTargetValue << E->getSourceRange() << SourceRange(CContext);
10927   }
10928 }
10929 
10930 /// Analyze the given compound assignment for the possible losing of
10931 /// floating-point precision.
10932 static void AnalyzeCompoundAssignment(Sema &S, BinaryOperator *E) {
10933   assert(isa<CompoundAssignOperator>(E) &&
10934          "Must be compound assignment operation");
10935   // Recurse on the LHS and RHS in here
10936   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
10937   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
10938 
10939   if (E->getLHS()->getType()->isAtomicType())
10940     S.Diag(E->getOperatorLoc(), diag::warn_atomic_implicit_seq_cst);
10941 
10942   // Now check the outermost expression
10943   const auto *ResultBT = E->getLHS()->getType()->getAs<BuiltinType>();
10944   const auto *RBT = cast<CompoundAssignOperator>(E)
10945                         ->getComputationResultType()
10946                         ->getAs<BuiltinType>();
10947 
10948   // The below checks assume source is floating point.
10949   if (!ResultBT || !RBT || !RBT->isFloatingPoint()) return;
10950 
10951   // If source is floating point but target is an integer.
10952   if (ResultBT->isInteger())
10953     return DiagnoseImpCast(S, E, E->getRHS()->getType(), E->getLHS()->getType(),
10954                            E->getExprLoc(), diag::warn_impcast_float_integer);
10955 
10956   if (!ResultBT->isFloatingPoint())
10957     return;
10958 
10959   // If both source and target are floating points, warn about losing precision.
10960   int Order = S.getASTContext().getFloatingTypeSemanticOrder(
10961       QualType(ResultBT, 0), QualType(RBT, 0));
10962   if (Order < 0 && !S.SourceMgr.isInSystemMacro(E->getOperatorLoc()))
10963     // warn about dropping FP rank.
10964     DiagnoseImpCast(S, E->getRHS(), E->getLHS()->getType(), E->getOperatorLoc(),
10965                     diag::warn_impcast_float_result_precision);
10966 }
10967 
10968 static std::string PrettyPrintInRange(const llvm::APSInt &Value,
10969                                       IntRange Range) {
10970   if (!Range.Width) return "0";
10971 
10972   llvm::APSInt ValueInRange = Value;
10973   ValueInRange.setIsSigned(!Range.NonNegative);
10974   ValueInRange = ValueInRange.trunc(Range.Width);
10975   return ValueInRange.toString(10);
10976 }
10977 
10978 static bool IsImplicitBoolFloatConversion(Sema &S, Expr *Ex, bool ToBool) {
10979   if (!isa<ImplicitCastExpr>(Ex))
10980     return false;
10981 
10982   Expr *InnerE = Ex->IgnoreParenImpCasts();
10983   const Type *Target = S.Context.getCanonicalType(Ex->getType()).getTypePtr();
10984   const Type *Source =
10985     S.Context.getCanonicalType(InnerE->getType()).getTypePtr();
10986   if (Target->isDependentType())
10987     return false;
10988 
10989   const BuiltinType *FloatCandidateBT =
10990     dyn_cast<BuiltinType>(ToBool ? Source : Target);
10991   const Type *BoolCandidateType = ToBool ? Target : Source;
10992 
10993   return (BoolCandidateType->isSpecificBuiltinType(BuiltinType::Bool) &&
10994           FloatCandidateBT && (FloatCandidateBT->isFloatingPoint()));
10995 }
10996 
10997 static void CheckImplicitArgumentConversions(Sema &S, CallExpr *TheCall,
10998                                              SourceLocation CC) {
10999   unsigned NumArgs = TheCall->getNumArgs();
11000   for (unsigned i = 0; i < NumArgs; ++i) {
11001     Expr *CurrA = TheCall->getArg(i);
11002     if (!IsImplicitBoolFloatConversion(S, CurrA, true))
11003       continue;
11004 
11005     bool IsSwapped = ((i > 0) &&
11006         IsImplicitBoolFloatConversion(S, TheCall->getArg(i - 1), false));
11007     IsSwapped |= ((i < (NumArgs - 1)) &&
11008         IsImplicitBoolFloatConversion(S, TheCall->getArg(i + 1), false));
11009     if (IsSwapped) {
11010       // Warn on this floating-point to bool conversion.
11011       DiagnoseImpCast(S, CurrA->IgnoreParenImpCasts(),
11012                       CurrA->getType(), CC,
11013                       diag::warn_impcast_floating_point_to_bool);
11014     }
11015   }
11016 }
11017 
11018 static void DiagnoseNullConversion(Sema &S, Expr *E, QualType T,
11019                                    SourceLocation CC) {
11020   if (S.Diags.isIgnored(diag::warn_impcast_null_pointer_to_integer,
11021                         E->getExprLoc()))
11022     return;
11023 
11024   // Don't warn on functions which have return type nullptr_t.
11025   if (isa<CallExpr>(E))
11026     return;
11027 
11028   // Check for NULL (GNUNull) or nullptr (CXX11_nullptr).
11029   const Expr::NullPointerConstantKind NullKind =
11030       E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull);
11031   if (NullKind != Expr::NPCK_GNUNull && NullKind != Expr::NPCK_CXX11_nullptr)
11032     return;
11033 
11034   // Return if target type is a safe conversion.
11035   if (T->isAnyPointerType() || T->isBlockPointerType() ||
11036       T->isMemberPointerType() || !T->isScalarType() || T->isNullPtrType())
11037     return;
11038 
11039   SourceLocation Loc = E->getSourceRange().getBegin();
11040 
11041   // Venture through the macro stacks to get to the source of macro arguments.
11042   // The new location is a better location than the complete location that was
11043   // passed in.
11044   Loc = S.SourceMgr.getTopMacroCallerLoc(Loc);
11045   CC = S.SourceMgr.getTopMacroCallerLoc(CC);
11046 
11047   // __null is usually wrapped in a macro.  Go up a macro if that is the case.
11048   if (NullKind == Expr::NPCK_GNUNull && Loc.isMacroID()) {
11049     StringRef MacroName = Lexer::getImmediateMacroNameForDiagnostics(
11050         Loc, S.SourceMgr, S.getLangOpts());
11051     if (MacroName == "NULL")
11052       Loc = S.SourceMgr.getImmediateExpansionRange(Loc).getBegin();
11053   }
11054 
11055   // Only warn if the null and context location are in the same macro expansion.
11056   if (S.SourceMgr.getFileID(Loc) != S.SourceMgr.getFileID(CC))
11057     return;
11058 
11059   S.Diag(Loc, diag::warn_impcast_null_pointer_to_integer)
11060       << (NullKind == Expr::NPCK_CXX11_nullptr) << T << SourceRange(CC)
11061       << FixItHint::CreateReplacement(Loc,
11062                                       S.getFixItZeroLiteralForType(T, Loc));
11063 }
11064 
11065 static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
11066                                   ObjCArrayLiteral *ArrayLiteral);
11067 
11068 static void
11069 checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
11070                            ObjCDictionaryLiteral *DictionaryLiteral);
11071 
11072 /// Check a single element within a collection literal against the
11073 /// target element type.
11074 static void checkObjCCollectionLiteralElement(Sema &S,
11075                                               QualType TargetElementType,
11076                                               Expr *Element,
11077                                               unsigned ElementKind) {
11078   // Skip a bitcast to 'id' or qualified 'id'.
11079   if (auto ICE = dyn_cast<ImplicitCastExpr>(Element)) {
11080     if (ICE->getCastKind() == CK_BitCast &&
11081         ICE->getSubExpr()->getType()->getAs<ObjCObjectPointerType>())
11082       Element = ICE->getSubExpr();
11083   }
11084 
11085   QualType ElementType = Element->getType();
11086   ExprResult ElementResult(Element);
11087   if (ElementType->getAs<ObjCObjectPointerType>() &&
11088       S.CheckSingleAssignmentConstraints(TargetElementType,
11089                                          ElementResult,
11090                                          false, false)
11091         != Sema::Compatible) {
11092     S.Diag(Element->getBeginLoc(), diag::warn_objc_collection_literal_element)
11093         << ElementType << ElementKind << TargetElementType
11094         << Element->getSourceRange();
11095   }
11096 
11097   if (auto ArrayLiteral = dyn_cast<ObjCArrayLiteral>(Element))
11098     checkObjCArrayLiteral(S, TargetElementType, ArrayLiteral);
11099   else if (auto DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(Element))
11100     checkObjCDictionaryLiteral(S, TargetElementType, DictionaryLiteral);
11101 }
11102 
11103 /// Check an Objective-C array literal being converted to the given
11104 /// target type.
11105 static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
11106                                   ObjCArrayLiteral *ArrayLiteral) {
11107   if (!S.NSArrayDecl)
11108     return;
11109 
11110   const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>();
11111   if (!TargetObjCPtr)
11112     return;
11113 
11114   if (TargetObjCPtr->isUnspecialized() ||
11115       TargetObjCPtr->getInterfaceDecl()->getCanonicalDecl()
11116         != S.NSArrayDecl->getCanonicalDecl())
11117     return;
11118 
11119   auto TypeArgs = TargetObjCPtr->getTypeArgs();
11120   if (TypeArgs.size() != 1)
11121     return;
11122 
11123   QualType TargetElementType = TypeArgs[0];
11124   for (unsigned I = 0, N = ArrayLiteral->getNumElements(); I != N; ++I) {
11125     checkObjCCollectionLiteralElement(S, TargetElementType,
11126                                       ArrayLiteral->getElement(I),
11127                                       0);
11128   }
11129 }
11130 
11131 /// Check an Objective-C dictionary literal being converted to the given
11132 /// target type.
11133 static void
11134 checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
11135                            ObjCDictionaryLiteral *DictionaryLiteral) {
11136   if (!S.NSDictionaryDecl)
11137     return;
11138 
11139   const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>();
11140   if (!TargetObjCPtr)
11141     return;
11142 
11143   if (TargetObjCPtr->isUnspecialized() ||
11144       TargetObjCPtr->getInterfaceDecl()->getCanonicalDecl()
11145         != S.NSDictionaryDecl->getCanonicalDecl())
11146     return;
11147 
11148   auto TypeArgs = TargetObjCPtr->getTypeArgs();
11149   if (TypeArgs.size() != 2)
11150     return;
11151 
11152   QualType TargetKeyType = TypeArgs[0];
11153   QualType TargetObjectType = TypeArgs[1];
11154   for (unsigned I = 0, N = DictionaryLiteral->getNumElements(); I != N; ++I) {
11155     auto Element = DictionaryLiteral->getKeyValueElement(I);
11156     checkObjCCollectionLiteralElement(S, TargetKeyType, Element.Key, 1);
11157     checkObjCCollectionLiteralElement(S, TargetObjectType, Element.Value, 2);
11158   }
11159 }
11160 
11161 // Helper function to filter out cases for constant width constant conversion.
11162 // Don't warn on char array initialization or for non-decimal values.
11163 static bool isSameWidthConstantConversion(Sema &S, Expr *E, QualType T,
11164                                           SourceLocation CC) {
11165   // If initializing from a constant, and the constant starts with '0',
11166   // then it is a binary, octal, or hexadecimal.  Allow these constants
11167   // to fill all the bits, even if there is a sign change.
11168   if (auto *IntLit = dyn_cast<IntegerLiteral>(E->IgnoreParenImpCasts())) {
11169     const char FirstLiteralCharacter =
11170         S.getSourceManager().getCharacterData(IntLit->getBeginLoc())[0];
11171     if (FirstLiteralCharacter == '0')
11172       return false;
11173   }
11174 
11175   // If the CC location points to a '{', and the type is char, then assume
11176   // assume it is an array initialization.
11177   if (CC.isValid() && T->isCharType()) {
11178     const char FirstContextCharacter =
11179         S.getSourceManager().getCharacterData(CC)[0];
11180     if (FirstContextCharacter == '{')
11181       return false;
11182   }
11183 
11184   return true;
11185 }
11186 
11187 static bool isObjCSignedCharBool(Sema &S, QualType Ty) {
11188   return Ty->isSpecificBuiltinType(BuiltinType::SChar) &&
11189          S.getLangOpts().ObjC && S.NSAPIObj->isObjCBOOLType(Ty);
11190 }
11191 
11192 static void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
11193                                     SourceLocation CC,
11194                                     bool *ICContext = nullptr,
11195                                     bool IsListInit = false) {
11196   if (E->isTypeDependent() || E->isValueDependent()) return;
11197 
11198   const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
11199   const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
11200   if (Source == Target) return;
11201   if (Target->isDependentType()) return;
11202 
11203   // If the conversion context location is invalid don't complain. We also
11204   // don't want to emit a warning if the issue occurs from the expansion of
11205   // a system macro. The problem is that 'getSpellingLoc()' is slow, so we
11206   // delay this check as long as possible. Once we detect we are in that
11207   // scenario, we just return.
11208   if (CC.isInvalid())
11209     return;
11210 
11211   if (Source->isAtomicType())
11212     S.Diag(E->getExprLoc(), diag::warn_atomic_implicit_seq_cst);
11213 
11214   // Diagnose implicit casts to bool.
11215   if (Target->isSpecificBuiltinType(BuiltinType::Bool)) {
11216     if (isa<StringLiteral>(E))
11217       // Warn on string literal to bool.  Checks for string literals in logical
11218       // and expressions, for instance, assert(0 && "error here"), are
11219       // prevented by a check in AnalyzeImplicitConversions().
11220       return DiagnoseImpCast(S, E, T, CC,
11221                              diag::warn_impcast_string_literal_to_bool);
11222     if (isa<ObjCStringLiteral>(E) || isa<ObjCArrayLiteral>(E) ||
11223         isa<ObjCDictionaryLiteral>(E) || isa<ObjCBoxedExpr>(E)) {
11224       // This covers the literal expressions that evaluate to Objective-C
11225       // objects.
11226       return DiagnoseImpCast(S, E, T, CC,
11227                              diag::warn_impcast_objective_c_literal_to_bool);
11228     }
11229     if (Source->isPointerType() || Source->canDecayToPointerType()) {
11230       // Warn on pointer to bool conversion that is always true.
11231       S.DiagnoseAlwaysNonNullPointer(E, Expr::NPCK_NotNull, /*IsEqual*/ false,
11232                                      SourceRange(CC));
11233     }
11234   }
11235 
11236   // If the we're converting a constant to an ObjC BOOL on a platform where BOOL
11237   // is a typedef for signed char (macOS), then that constant value has to be 1
11238   // or 0.
11239   if (isObjCSignedCharBool(S, T) && Source->isIntegralType(S.Context)) {
11240     Expr::EvalResult Result;
11241     if (E->EvaluateAsInt(Result, S.getASTContext(),
11242                          Expr::SE_AllowSideEffects) &&
11243         Result.Val.getInt() != 1 && Result.Val.getInt() != 0) {
11244       auto Builder = S.Diag(CC, diag::warn_impcast_constant_int_to_objc_bool)
11245                      << Result.Val.getInt().toString(10);
11246       Expr *Ignored = E->IgnoreImplicit();
11247       bool NeedsParens = isa<AbstractConditionalOperator>(Ignored) ||
11248                          isa<BinaryOperator>(Ignored) ||
11249                          isa<CXXOperatorCallExpr>(Ignored);
11250       SourceLocation EndLoc = S.getLocForEndOfToken(E->getEndLoc());
11251       if (NeedsParens)
11252         Builder << FixItHint::CreateInsertion(E->getBeginLoc(), "(")
11253                 << FixItHint::CreateInsertion(EndLoc, ")");
11254       Builder << FixItHint::CreateInsertion(EndLoc, " ? YES : NO");
11255       return;
11256     }
11257   }
11258 
11259   // Check implicit casts from Objective-C collection literals to specialized
11260   // collection types, e.g., NSArray<NSString *> *.
11261   if (auto *ArrayLiteral = dyn_cast<ObjCArrayLiteral>(E))
11262     checkObjCArrayLiteral(S, QualType(Target, 0), ArrayLiteral);
11263   else if (auto *DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(E))
11264     checkObjCDictionaryLiteral(S, QualType(Target, 0), DictionaryLiteral);
11265 
11266   // Strip vector types.
11267   if (isa<VectorType>(Source)) {
11268     if (!isa<VectorType>(Target)) {
11269       if (S.SourceMgr.isInSystemMacro(CC))
11270         return;
11271       return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
11272     }
11273 
11274     // If the vector cast is cast between two vectors of the same size, it is
11275     // a bitcast, not a conversion.
11276     if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
11277       return;
11278 
11279     Source = cast<VectorType>(Source)->getElementType().getTypePtr();
11280     Target = cast<VectorType>(Target)->getElementType().getTypePtr();
11281   }
11282   if (auto VecTy = dyn_cast<VectorType>(Target))
11283     Target = VecTy->getElementType().getTypePtr();
11284 
11285   // Strip complex types.
11286   if (isa<ComplexType>(Source)) {
11287     if (!isa<ComplexType>(Target)) {
11288       if (S.SourceMgr.isInSystemMacro(CC) || Target->isBooleanType())
11289         return;
11290 
11291       return DiagnoseImpCast(S, E, T, CC,
11292                              S.getLangOpts().CPlusPlus
11293                                  ? diag::err_impcast_complex_scalar
11294                                  : diag::warn_impcast_complex_scalar);
11295     }
11296 
11297     Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
11298     Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
11299   }
11300 
11301   const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
11302   const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
11303 
11304   // If the source is floating point...
11305   if (SourceBT && SourceBT->isFloatingPoint()) {
11306     // ...and the target is floating point...
11307     if (TargetBT && TargetBT->isFloatingPoint()) {
11308       // ...then warn if we're dropping FP rank.
11309 
11310       int Order = S.getASTContext().getFloatingTypeSemanticOrder(
11311           QualType(SourceBT, 0), QualType(TargetBT, 0));
11312       if (Order > 0) {
11313         // Don't warn about float constants that are precisely
11314         // representable in the target type.
11315         Expr::EvalResult result;
11316         if (E->EvaluateAsRValue(result, S.Context)) {
11317           // Value might be a float, a float vector, or a float complex.
11318           if (IsSameFloatAfterCast(result.Val,
11319                    S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
11320                    S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
11321             return;
11322         }
11323 
11324         if (S.SourceMgr.isInSystemMacro(CC))
11325           return;
11326 
11327         DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
11328       }
11329       // ... or possibly if we're increasing rank, too
11330       else if (Order < 0) {
11331         if (S.SourceMgr.isInSystemMacro(CC))
11332           return;
11333 
11334         DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_double_promotion);
11335       }
11336       return;
11337     }
11338 
11339     // If the target is integral, always warn.
11340     if (TargetBT && TargetBT->isInteger()) {
11341       if (S.SourceMgr.isInSystemMacro(CC))
11342         return;
11343 
11344       DiagnoseFloatingImpCast(S, E, T, CC);
11345     }
11346 
11347     // Detect the case where a call result is converted from floating-point to
11348     // to bool, and the final argument to the call is converted from bool, to
11349     // discover this typo:
11350     //
11351     //    bool b = fabs(x < 1.0);  // should be "bool b = fabs(x) < 1.0;"
11352     //
11353     // FIXME: This is an incredibly special case; is there some more general
11354     // way to detect this class of misplaced-parentheses bug?
11355     if (Target->isBooleanType() && isa<CallExpr>(E)) {
11356       // Check last argument of function call to see if it is an
11357       // implicit cast from a type matching the type the result
11358       // is being cast to.
11359       CallExpr *CEx = cast<CallExpr>(E);
11360       if (unsigned NumArgs = CEx->getNumArgs()) {
11361         Expr *LastA = CEx->getArg(NumArgs - 1);
11362         Expr *InnerE = LastA->IgnoreParenImpCasts();
11363         if (isa<ImplicitCastExpr>(LastA) &&
11364             InnerE->getType()->isBooleanType()) {
11365           // Warn on this floating-point to bool conversion
11366           DiagnoseImpCast(S, E, T, CC,
11367                           diag::warn_impcast_floating_point_to_bool);
11368         }
11369       }
11370     }
11371     return;
11372   }
11373 
11374   // Valid casts involving fixed point types should be accounted for here.
11375   if (Source->isFixedPointType()) {
11376     if (Target->isUnsaturatedFixedPointType()) {
11377       Expr::EvalResult Result;
11378       if (E->EvaluateAsFixedPoint(Result, S.Context, Expr::SE_AllowSideEffects,
11379                                   S.isConstantEvaluated())) {
11380         APFixedPoint Value = Result.Val.getFixedPoint();
11381         APFixedPoint MaxVal = S.Context.getFixedPointMax(T);
11382         APFixedPoint MinVal = S.Context.getFixedPointMin(T);
11383         if (Value > MaxVal || Value < MinVal) {
11384           S.DiagRuntimeBehavior(E->getExprLoc(), E,
11385                                 S.PDiag(diag::warn_impcast_fixed_point_range)
11386                                     << Value.toString() << T
11387                                     << E->getSourceRange()
11388                                     << clang::SourceRange(CC));
11389           return;
11390         }
11391       }
11392     } else if (Target->isIntegerType()) {
11393       Expr::EvalResult Result;
11394       if (!S.isConstantEvaluated() &&
11395           E->EvaluateAsFixedPoint(Result, S.Context,
11396                                   Expr::SE_AllowSideEffects)) {
11397         APFixedPoint FXResult = Result.Val.getFixedPoint();
11398 
11399         bool Overflowed;
11400         llvm::APSInt IntResult = FXResult.convertToInt(
11401             S.Context.getIntWidth(T),
11402             Target->isSignedIntegerOrEnumerationType(), &Overflowed);
11403 
11404         if (Overflowed) {
11405           S.DiagRuntimeBehavior(E->getExprLoc(), E,
11406                                 S.PDiag(diag::warn_impcast_fixed_point_range)
11407                                     << FXResult.toString() << T
11408                                     << E->getSourceRange()
11409                                     << clang::SourceRange(CC));
11410           return;
11411         }
11412       }
11413     }
11414   } else if (Target->isUnsaturatedFixedPointType()) {
11415     if (Source->isIntegerType()) {
11416       Expr::EvalResult Result;
11417       if (!S.isConstantEvaluated() &&
11418           E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects)) {
11419         llvm::APSInt Value = Result.Val.getInt();
11420 
11421         bool Overflowed;
11422         APFixedPoint IntResult = APFixedPoint::getFromIntValue(
11423             Value, S.Context.getFixedPointSemantics(T), &Overflowed);
11424 
11425         if (Overflowed) {
11426           S.DiagRuntimeBehavior(E->getExprLoc(), E,
11427                                 S.PDiag(diag::warn_impcast_fixed_point_range)
11428                                     << Value.toString(/*Radix=*/10) << T
11429                                     << E->getSourceRange()
11430                                     << clang::SourceRange(CC));
11431           return;
11432         }
11433       }
11434     }
11435   }
11436 
11437   // If we are casting an integer type to a floating point type without
11438   // initialization-list syntax, we might lose accuracy if the floating
11439   // point type has a narrower significand than the integer type.
11440   if (SourceBT && TargetBT && SourceBT->isIntegerType() &&
11441       TargetBT->isFloatingType() && !IsListInit) {
11442     // Determine the number of precision bits in the source integer type.
11443     IntRange SourceRange = GetExprRange(S.Context, E, S.isConstantEvaluated());
11444     unsigned int SourcePrecision = SourceRange.Width;
11445 
11446     // Determine the number of precision bits in the
11447     // target floating point type.
11448     unsigned int TargetPrecision = llvm::APFloatBase::semanticsPrecision(
11449         S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)));
11450 
11451     if (SourcePrecision > 0 && TargetPrecision > 0 &&
11452         SourcePrecision > TargetPrecision) {
11453 
11454       llvm::APSInt SourceInt;
11455       if (E->isIntegerConstantExpr(SourceInt, S.Context)) {
11456         // If the source integer is a constant, convert it to the target
11457         // floating point type. Issue a warning if the value changes
11458         // during the whole conversion.
11459         llvm::APFloat TargetFloatValue(
11460             S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)));
11461         llvm::APFloat::opStatus ConversionStatus =
11462             TargetFloatValue.convertFromAPInt(
11463                 SourceInt, SourceBT->isSignedInteger(),
11464                 llvm::APFloat::rmNearestTiesToEven);
11465 
11466         if (ConversionStatus != llvm::APFloat::opOK) {
11467           std::string PrettySourceValue = SourceInt.toString(10);
11468           SmallString<32> PrettyTargetValue;
11469           TargetFloatValue.toString(PrettyTargetValue, TargetPrecision);
11470 
11471           S.DiagRuntimeBehavior(
11472               E->getExprLoc(), E,
11473               S.PDiag(diag::warn_impcast_integer_float_precision_constant)
11474                   << PrettySourceValue << PrettyTargetValue << E->getType() << T
11475                   << E->getSourceRange() << clang::SourceRange(CC));
11476         }
11477       } else {
11478         // Otherwise, the implicit conversion may lose precision.
11479         DiagnoseImpCast(S, E, T, CC,
11480                         diag::warn_impcast_integer_float_precision);
11481       }
11482     }
11483   }
11484 
11485   DiagnoseNullConversion(S, E, T, CC);
11486 
11487   S.DiscardMisalignedMemberAddress(Target, E);
11488 
11489   if (!Source->isIntegerType() || !Target->isIntegerType())
11490     return;
11491 
11492   // TODO: remove this early return once the false positives for constant->bool
11493   // in templates, macros, etc, are reduced or removed.
11494   if (Target->isSpecificBuiltinType(BuiltinType::Bool))
11495     return;
11496 
11497   IntRange SourceRange = GetExprRange(S.Context, E, S.isConstantEvaluated());
11498   IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
11499 
11500   if (SourceRange.Width > TargetRange.Width) {
11501     // If the source is a constant, use a default-on diagnostic.
11502     // TODO: this should happen for bitfield stores, too.
11503     Expr::EvalResult Result;
11504     if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects,
11505                          S.isConstantEvaluated())) {
11506       llvm::APSInt Value(32);
11507       Value = Result.Val.getInt();
11508 
11509       if (S.SourceMgr.isInSystemMacro(CC))
11510         return;
11511 
11512       std::string PrettySourceValue = Value.toString(10);
11513       std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
11514 
11515       S.DiagRuntimeBehavior(
11516           E->getExprLoc(), E,
11517           S.PDiag(diag::warn_impcast_integer_precision_constant)
11518               << PrettySourceValue << PrettyTargetValue << E->getType() << T
11519               << E->getSourceRange() << clang::SourceRange(CC));
11520       return;
11521     }
11522 
11523     // People want to build with -Wshorten-64-to-32 and not -Wconversion.
11524     if (S.SourceMgr.isInSystemMacro(CC))
11525       return;
11526 
11527     if (TargetRange.Width == 32 && S.Context.getIntWidth(E->getType()) == 64)
11528       return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32,
11529                              /* pruneControlFlow */ true);
11530     return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
11531   }
11532 
11533   if (TargetRange.Width > SourceRange.Width) {
11534     if (auto *UO = dyn_cast<UnaryOperator>(E))
11535       if (UO->getOpcode() == UO_Minus)
11536         if (Source->isUnsignedIntegerType()) {
11537           if (Target->isUnsignedIntegerType())
11538             return DiagnoseImpCast(S, E, T, CC,
11539                                    diag::warn_impcast_high_order_zero_bits);
11540           if (Target->isSignedIntegerType())
11541             return DiagnoseImpCast(S, E, T, CC,
11542                                    diag::warn_impcast_nonnegative_result);
11543         }
11544   }
11545 
11546   if (TargetRange.Width == SourceRange.Width && !TargetRange.NonNegative &&
11547       SourceRange.NonNegative && Source->isSignedIntegerType()) {
11548     // Warn when doing a signed to signed conversion, warn if the positive
11549     // source value is exactly the width of the target type, which will
11550     // cause a negative value to be stored.
11551 
11552     Expr::EvalResult Result;
11553     if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects) &&
11554         !S.SourceMgr.isInSystemMacro(CC)) {
11555       llvm::APSInt Value = Result.Val.getInt();
11556       if (isSameWidthConstantConversion(S, E, T, CC)) {
11557         std::string PrettySourceValue = Value.toString(10);
11558         std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
11559 
11560         S.DiagRuntimeBehavior(
11561             E->getExprLoc(), E,
11562             S.PDiag(diag::warn_impcast_integer_precision_constant)
11563                 << PrettySourceValue << PrettyTargetValue << E->getType() << T
11564                 << E->getSourceRange() << clang::SourceRange(CC));
11565         return;
11566       }
11567     }
11568 
11569     // Fall through for non-constants to give a sign conversion warning.
11570   }
11571 
11572   if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
11573       (!TargetRange.NonNegative && SourceRange.NonNegative &&
11574        SourceRange.Width == TargetRange.Width)) {
11575     if (S.SourceMgr.isInSystemMacro(CC))
11576       return;
11577 
11578     unsigned DiagID = diag::warn_impcast_integer_sign;
11579 
11580     // Traditionally, gcc has warned about this under -Wsign-compare.
11581     // We also want to warn about it in -Wconversion.
11582     // So if -Wconversion is off, use a completely identical diagnostic
11583     // in the sign-compare group.
11584     // The conditional-checking code will
11585     if (ICContext) {
11586       DiagID = diag::warn_impcast_integer_sign_conditional;
11587       *ICContext = true;
11588     }
11589 
11590     return DiagnoseImpCast(S, E, T, CC, DiagID);
11591   }
11592 
11593   // Diagnose conversions between different enumeration types.
11594   // In C, we pretend that the type of an EnumConstantDecl is its enumeration
11595   // type, to give us better diagnostics.
11596   QualType SourceType = E->getType();
11597   if (!S.getLangOpts().CPlusPlus) {
11598     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
11599       if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
11600         EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
11601         SourceType = S.Context.getTypeDeclType(Enum);
11602         Source = S.Context.getCanonicalType(SourceType).getTypePtr();
11603       }
11604   }
11605 
11606   if (const EnumType *SourceEnum = Source->getAs<EnumType>())
11607     if (const EnumType *TargetEnum = Target->getAs<EnumType>())
11608       if (SourceEnum->getDecl()->hasNameForLinkage() &&
11609           TargetEnum->getDecl()->hasNameForLinkage() &&
11610           SourceEnum != TargetEnum) {
11611         if (S.SourceMgr.isInSystemMacro(CC))
11612           return;
11613 
11614         return DiagnoseImpCast(S, E, SourceType, T, CC,
11615                                diag::warn_impcast_different_enum_types);
11616       }
11617 }
11618 
11619 static void CheckConditionalOperator(Sema &S, ConditionalOperator *E,
11620                                      SourceLocation CC, QualType T);
11621 
11622 static void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
11623                                     SourceLocation CC, bool &ICContext) {
11624   E = E->IgnoreParenImpCasts();
11625 
11626   if (isa<ConditionalOperator>(E))
11627     return CheckConditionalOperator(S, cast<ConditionalOperator>(E), CC, T);
11628 
11629   AnalyzeImplicitConversions(S, E, CC);
11630   if (E->getType() != T)
11631     return CheckImplicitConversion(S, E, T, CC, &ICContext);
11632 }
11633 
11634 static void CheckConditionalOperator(Sema &S, ConditionalOperator *E,
11635                                      SourceLocation CC, QualType T) {
11636   AnalyzeImplicitConversions(S, E->getCond(), E->getQuestionLoc());
11637 
11638   bool Suspicious = false;
11639   CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
11640   CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
11641 
11642   // If -Wconversion would have warned about either of the candidates
11643   // for a signedness conversion to the context type...
11644   if (!Suspicious) return;
11645 
11646   // ...but it's currently ignored...
11647   if (!S.Diags.isIgnored(diag::warn_impcast_integer_sign_conditional, CC))
11648     return;
11649 
11650   // ...then check whether it would have warned about either of the
11651   // candidates for a signedness conversion to the condition type.
11652   if (E->getType() == T) return;
11653 
11654   Suspicious = false;
11655   CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
11656                           E->getType(), CC, &Suspicious);
11657   if (!Suspicious)
11658     CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
11659                             E->getType(), CC, &Suspicious);
11660 }
11661 
11662 /// Check conversion of given expression to boolean.
11663 /// Input argument E is a logical expression.
11664 static void CheckBoolLikeConversion(Sema &S, Expr *E, SourceLocation CC) {
11665   if (S.getLangOpts().Bool)
11666     return;
11667   if (E->IgnoreParenImpCasts()->getType()->isAtomicType())
11668     return;
11669   CheckImplicitConversion(S, E->IgnoreParenImpCasts(), S.Context.BoolTy, CC);
11670 }
11671 
11672 /// AnalyzeImplicitConversions - Find and report any interesting
11673 /// implicit conversions in the given expression.  There are a couple
11674 /// of competing diagnostics here, -Wconversion and -Wsign-compare.
11675 static void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC,
11676                                        bool IsListInit/*= false*/) {
11677   QualType T = OrigE->getType();
11678   Expr *E = OrigE->IgnoreParenImpCasts();
11679 
11680   // Propagate whether we are in a C++ list initialization expression.
11681   // If so, we do not issue warnings for implicit int-float conversion
11682   // precision loss, because C++11 narrowing already handles it.
11683   IsListInit =
11684       IsListInit || (isa<InitListExpr>(OrigE) && S.getLangOpts().CPlusPlus);
11685 
11686   if (E->isTypeDependent() || E->isValueDependent())
11687     return;
11688 
11689   // For conditional operators, we analyze the arguments as if they
11690   // were being fed directly into the output.
11691   if (isa<ConditionalOperator>(E)) {
11692     ConditionalOperator *CO = cast<ConditionalOperator>(E);
11693     CheckConditionalOperator(S, CO, CC, T);
11694     return;
11695   }
11696 
11697   // Check implicit argument conversions for function calls.
11698   if (CallExpr *Call = dyn_cast<CallExpr>(E))
11699     CheckImplicitArgumentConversions(S, Call, CC);
11700 
11701   // Go ahead and check any implicit conversions we might have skipped.
11702   // The non-canonical typecheck is just an optimization;
11703   // CheckImplicitConversion will filter out dead implicit conversions.
11704   if (E->getType() != T)
11705     CheckImplicitConversion(S, E, T, CC, nullptr, IsListInit);
11706 
11707   // Now continue drilling into this expression.
11708 
11709   if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) {
11710     // The bound subexpressions in a PseudoObjectExpr are not reachable
11711     // as transitive children.
11712     // FIXME: Use a more uniform representation for this.
11713     for (auto *SE : POE->semantics())
11714       if (auto *OVE = dyn_cast<OpaqueValueExpr>(SE))
11715         AnalyzeImplicitConversions(S, OVE->getSourceExpr(), CC, IsListInit);
11716   }
11717 
11718   // Skip past explicit casts.
11719   if (auto *CE = dyn_cast<ExplicitCastExpr>(E)) {
11720     E = CE->getSubExpr()->IgnoreParenImpCasts();
11721     if (!CE->getType()->isVoidType() && E->getType()->isAtomicType())
11722       S.Diag(E->getBeginLoc(), diag::warn_atomic_implicit_seq_cst);
11723     return AnalyzeImplicitConversions(S, E, CC, IsListInit);
11724   }
11725 
11726   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
11727     // Do a somewhat different check with comparison operators.
11728     if (BO->isComparisonOp())
11729       return AnalyzeComparison(S, BO);
11730 
11731     // And with simple assignments.
11732     if (BO->getOpcode() == BO_Assign)
11733       return AnalyzeAssignment(S, BO);
11734     // And with compound assignments.
11735     if (BO->isAssignmentOp())
11736       return AnalyzeCompoundAssignment(S, BO);
11737   }
11738 
11739   // These break the otherwise-useful invariant below.  Fortunately,
11740   // we don't really need to recurse into them, because any internal
11741   // expressions should have been analyzed already when they were
11742   // built into statements.
11743   if (isa<StmtExpr>(E)) return;
11744 
11745   // Don't descend into unevaluated contexts.
11746   if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
11747 
11748   // Now just recurse over the expression's children.
11749   CC = E->getExprLoc();
11750   BinaryOperator *BO = dyn_cast<BinaryOperator>(E);
11751   bool IsLogicalAndOperator = BO && BO->getOpcode() == BO_LAnd;
11752   for (Stmt *SubStmt : E->children()) {
11753     Expr *ChildExpr = dyn_cast_or_null<Expr>(SubStmt);
11754     if (!ChildExpr)
11755       continue;
11756 
11757     if (IsLogicalAndOperator &&
11758         isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts()))
11759       // Ignore checking string literals that are in logical and operators.
11760       // This is a common pattern for asserts.
11761       continue;
11762     AnalyzeImplicitConversions(S, ChildExpr, CC, IsListInit);
11763   }
11764 
11765   if (BO && BO->isLogicalOp()) {
11766     Expr *SubExpr = BO->getLHS()->IgnoreParenImpCasts();
11767     if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr))
11768       ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc());
11769 
11770     SubExpr = BO->getRHS()->IgnoreParenImpCasts();
11771     if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr))
11772       ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc());
11773   }
11774 
11775   if (const UnaryOperator *U = dyn_cast<UnaryOperator>(E)) {
11776     if (U->getOpcode() == UO_LNot) {
11777       ::CheckBoolLikeConversion(S, U->getSubExpr(), CC);
11778     } else if (U->getOpcode() != UO_AddrOf) {
11779       if (U->getSubExpr()->getType()->isAtomicType())
11780         S.Diag(U->getSubExpr()->getBeginLoc(),
11781                diag::warn_atomic_implicit_seq_cst);
11782     }
11783   }
11784 }
11785 
11786 /// Diagnose integer type and any valid implicit conversion to it.
11787 static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E, const QualType &IntT) {
11788   // Taking into account implicit conversions,
11789   // allow any integer.
11790   if (!E->getType()->isIntegerType()) {
11791     S.Diag(E->getBeginLoc(),
11792            diag::err_opencl_enqueue_kernel_invalid_local_size_type);
11793     return true;
11794   }
11795   // Potentially emit standard warnings for implicit conversions if enabled
11796   // using -Wconversion.
11797   CheckImplicitConversion(S, E, IntT, E->getBeginLoc());
11798   return false;
11799 }
11800 
11801 // Helper function for Sema::DiagnoseAlwaysNonNullPointer.
11802 // Returns true when emitting a warning about taking the address of a reference.
11803 static bool CheckForReference(Sema &SemaRef, const Expr *E,
11804                               const PartialDiagnostic &PD) {
11805   E = E->IgnoreParenImpCasts();
11806 
11807   const FunctionDecl *FD = nullptr;
11808 
11809   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
11810     if (!DRE->getDecl()->getType()->isReferenceType())
11811       return false;
11812   } else if (const MemberExpr *M = dyn_cast<MemberExpr>(E)) {
11813     if (!M->getMemberDecl()->getType()->isReferenceType())
11814       return false;
11815   } else if (const CallExpr *Call = dyn_cast<CallExpr>(E)) {
11816     if (!Call->getCallReturnType(SemaRef.Context)->isReferenceType())
11817       return false;
11818     FD = Call->getDirectCallee();
11819   } else {
11820     return false;
11821   }
11822 
11823   SemaRef.Diag(E->getExprLoc(), PD);
11824 
11825   // If possible, point to location of function.
11826   if (FD) {
11827     SemaRef.Diag(FD->getLocation(), diag::note_reference_is_return_value) << FD;
11828   }
11829 
11830   return true;
11831 }
11832 
11833 // Returns true if the SourceLocation is expanded from any macro body.
11834 // Returns false if the SourceLocation is invalid, is from not in a macro
11835 // expansion, or is from expanded from a top-level macro argument.
11836 static bool IsInAnyMacroBody(const SourceManager &SM, SourceLocation Loc) {
11837   if (Loc.isInvalid())
11838     return false;
11839 
11840   while (Loc.isMacroID()) {
11841     if (SM.isMacroBodyExpansion(Loc))
11842       return true;
11843     Loc = SM.getImmediateMacroCallerLoc(Loc);
11844   }
11845 
11846   return false;
11847 }
11848 
11849 /// Diagnose pointers that are always non-null.
11850 /// \param E the expression containing the pointer
11851 /// \param NullKind NPCK_NotNull if E is a cast to bool, otherwise, E is
11852 /// compared to a null pointer
11853 /// \param IsEqual True when the comparison is equal to a null pointer
11854 /// \param Range Extra SourceRange to highlight in the diagnostic
11855 void Sema::DiagnoseAlwaysNonNullPointer(Expr *E,
11856                                         Expr::NullPointerConstantKind NullKind,
11857                                         bool IsEqual, SourceRange Range) {
11858   if (!E)
11859     return;
11860 
11861   // Don't warn inside macros.
11862   if (E->getExprLoc().isMacroID()) {
11863     const SourceManager &SM = getSourceManager();
11864     if (IsInAnyMacroBody(SM, E->getExprLoc()) ||
11865         IsInAnyMacroBody(SM, Range.getBegin()))
11866       return;
11867   }
11868   E = E->IgnoreImpCasts();
11869 
11870   const bool IsCompare = NullKind != Expr::NPCK_NotNull;
11871 
11872   if (isa<CXXThisExpr>(E)) {
11873     unsigned DiagID = IsCompare ? diag::warn_this_null_compare
11874                                 : diag::warn_this_bool_conversion;
11875     Diag(E->getExprLoc(), DiagID) << E->getSourceRange() << Range << IsEqual;
11876     return;
11877   }
11878 
11879   bool IsAddressOf = false;
11880 
11881   if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
11882     if (UO->getOpcode() != UO_AddrOf)
11883       return;
11884     IsAddressOf = true;
11885     E = UO->getSubExpr();
11886   }
11887 
11888   if (IsAddressOf) {
11889     unsigned DiagID = IsCompare
11890                           ? diag::warn_address_of_reference_null_compare
11891                           : diag::warn_address_of_reference_bool_conversion;
11892     PartialDiagnostic PD = PDiag(DiagID) << E->getSourceRange() << Range
11893                                          << IsEqual;
11894     if (CheckForReference(*this, E, PD)) {
11895       return;
11896     }
11897   }
11898 
11899   auto ComplainAboutNonnullParamOrCall = [&](const Attr *NonnullAttr) {
11900     bool IsParam = isa<NonNullAttr>(NonnullAttr);
11901     std::string Str;
11902     llvm::raw_string_ostream S(Str);
11903     E->printPretty(S, nullptr, getPrintingPolicy());
11904     unsigned DiagID = IsCompare ? diag::warn_nonnull_expr_compare
11905                                 : diag::warn_cast_nonnull_to_bool;
11906     Diag(E->getExprLoc(), DiagID) << IsParam << S.str()
11907       << E->getSourceRange() << Range << IsEqual;
11908     Diag(NonnullAttr->getLocation(), diag::note_declared_nonnull) << IsParam;
11909   };
11910 
11911   // If we have a CallExpr that is tagged with returns_nonnull, we can complain.
11912   if (auto *Call = dyn_cast<CallExpr>(E->IgnoreParenImpCasts())) {
11913     if (auto *Callee = Call->getDirectCallee()) {
11914       if (const Attr *A = Callee->getAttr<ReturnsNonNullAttr>()) {
11915         ComplainAboutNonnullParamOrCall(A);
11916         return;
11917       }
11918     }
11919   }
11920 
11921   // Expect to find a single Decl.  Skip anything more complicated.
11922   ValueDecl *D = nullptr;
11923   if (DeclRefExpr *R = dyn_cast<DeclRefExpr>(E)) {
11924     D = R->getDecl();
11925   } else if (MemberExpr *M = dyn_cast<MemberExpr>(E)) {
11926     D = M->getMemberDecl();
11927   }
11928 
11929   // Weak Decls can be null.
11930   if (!D || D->isWeak())
11931     return;
11932 
11933   // Check for parameter decl with nonnull attribute
11934   if (const auto* PV = dyn_cast<ParmVarDecl>(D)) {
11935     if (getCurFunction() &&
11936         !getCurFunction()->ModifiedNonNullParams.count(PV)) {
11937       if (const Attr *A = PV->getAttr<NonNullAttr>()) {
11938         ComplainAboutNonnullParamOrCall(A);
11939         return;
11940       }
11941 
11942       if (const auto *FD = dyn_cast<FunctionDecl>(PV->getDeclContext())) {
11943         // Skip function template not specialized yet.
11944         if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
11945           return;
11946         auto ParamIter = llvm::find(FD->parameters(), PV);
11947         assert(ParamIter != FD->param_end());
11948         unsigned ParamNo = std::distance(FD->param_begin(), ParamIter);
11949 
11950         for (const auto *NonNull : FD->specific_attrs<NonNullAttr>()) {
11951           if (!NonNull->args_size()) {
11952               ComplainAboutNonnullParamOrCall(NonNull);
11953               return;
11954           }
11955 
11956           for (const ParamIdx &ArgNo : NonNull->args()) {
11957             if (ArgNo.getASTIndex() == ParamNo) {
11958               ComplainAboutNonnullParamOrCall(NonNull);
11959               return;
11960             }
11961           }
11962         }
11963       }
11964     }
11965   }
11966 
11967   QualType T = D->getType();
11968   const bool IsArray = T->isArrayType();
11969   const bool IsFunction = T->isFunctionType();
11970 
11971   // Address of function is used to silence the function warning.
11972   if (IsAddressOf && IsFunction) {
11973     return;
11974   }
11975 
11976   // Found nothing.
11977   if (!IsAddressOf && !IsFunction && !IsArray)
11978     return;
11979 
11980   // Pretty print the expression for the diagnostic.
11981   std::string Str;
11982   llvm::raw_string_ostream S(Str);
11983   E->printPretty(S, nullptr, getPrintingPolicy());
11984 
11985   unsigned DiagID = IsCompare ? diag::warn_null_pointer_compare
11986                               : diag::warn_impcast_pointer_to_bool;
11987   enum {
11988     AddressOf,
11989     FunctionPointer,
11990     ArrayPointer
11991   } DiagType;
11992   if (IsAddressOf)
11993     DiagType = AddressOf;
11994   else if (IsFunction)
11995     DiagType = FunctionPointer;
11996   else if (IsArray)
11997     DiagType = ArrayPointer;
11998   else
11999     llvm_unreachable("Could not determine diagnostic.");
12000   Diag(E->getExprLoc(), DiagID) << DiagType << S.str() << E->getSourceRange()
12001                                 << Range << IsEqual;
12002 
12003   if (!IsFunction)
12004     return;
12005 
12006   // Suggest '&' to silence the function warning.
12007   Diag(E->getExprLoc(), diag::note_function_warning_silence)
12008       << FixItHint::CreateInsertion(E->getBeginLoc(), "&");
12009 
12010   // Check to see if '()' fixit should be emitted.
12011   QualType ReturnType;
12012   UnresolvedSet<4> NonTemplateOverloads;
12013   tryExprAsCall(*E, ReturnType, NonTemplateOverloads);
12014   if (ReturnType.isNull())
12015     return;
12016 
12017   if (IsCompare) {
12018     // There are two cases here.  If there is null constant, the only suggest
12019     // for a pointer return type.  If the null is 0, then suggest if the return
12020     // type is a pointer or an integer type.
12021     if (!ReturnType->isPointerType()) {
12022       if (NullKind == Expr::NPCK_ZeroExpression ||
12023           NullKind == Expr::NPCK_ZeroLiteral) {
12024         if (!ReturnType->isIntegerType())
12025           return;
12026       } else {
12027         return;
12028       }
12029     }
12030   } else { // !IsCompare
12031     // For function to bool, only suggest if the function pointer has bool
12032     // return type.
12033     if (!ReturnType->isSpecificBuiltinType(BuiltinType::Bool))
12034       return;
12035   }
12036   Diag(E->getExprLoc(), diag::note_function_to_function_call)
12037       << FixItHint::CreateInsertion(getLocForEndOfToken(E->getEndLoc()), "()");
12038 }
12039 
12040 /// Diagnoses "dangerous" implicit conversions within the given
12041 /// expression (which is a full expression).  Implements -Wconversion
12042 /// and -Wsign-compare.
12043 ///
12044 /// \param CC the "context" location of the implicit conversion, i.e.
12045 ///   the most location of the syntactic entity requiring the implicit
12046 ///   conversion
12047 void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
12048   // Don't diagnose in unevaluated contexts.
12049   if (isUnevaluatedContext())
12050     return;
12051 
12052   // Don't diagnose for value- or type-dependent expressions.
12053   if (E->isTypeDependent() || E->isValueDependent())
12054     return;
12055 
12056   // Check for array bounds violations in cases where the check isn't triggered
12057   // elsewhere for other Expr types (like BinaryOperators), e.g. when an
12058   // ArraySubscriptExpr is on the RHS of a variable initialization.
12059   CheckArrayAccess(E);
12060 
12061   // This is not the right CC for (e.g.) a variable initialization.
12062   AnalyzeImplicitConversions(*this, E, CC);
12063 }
12064 
12065 /// CheckBoolLikeConversion - Check conversion of given expression to boolean.
12066 /// Input argument E is a logical expression.
12067 void Sema::CheckBoolLikeConversion(Expr *E, SourceLocation CC) {
12068   ::CheckBoolLikeConversion(*this, E, CC);
12069 }
12070 
12071 /// Diagnose when expression is an integer constant expression and its evaluation
12072 /// results in integer overflow
12073 void Sema::CheckForIntOverflow (Expr *E) {
12074   // Use a work list to deal with nested struct initializers.
12075   SmallVector<Expr *, 2> Exprs(1, E);
12076 
12077   do {
12078     Expr *OriginalE = Exprs.pop_back_val();
12079     Expr *E = OriginalE->IgnoreParenCasts();
12080 
12081     if (isa<BinaryOperator>(E)) {
12082       E->EvaluateForOverflow(Context);
12083       continue;
12084     }
12085 
12086     if (auto InitList = dyn_cast<InitListExpr>(OriginalE))
12087       Exprs.append(InitList->inits().begin(), InitList->inits().end());
12088     else if (isa<ObjCBoxedExpr>(OriginalE))
12089       E->EvaluateForOverflow(Context);
12090     else if (auto Call = dyn_cast<CallExpr>(E))
12091       Exprs.append(Call->arg_begin(), Call->arg_end());
12092     else if (auto Message = dyn_cast<ObjCMessageExpr>(E))
12093       Exprs.append(Message->arg_begin(), Message->arg_end());
12094   } while (!Exprs.empty());
12095 }
12096 
12097 namespace {
12098 
12099 /// Visitor for expressions which looks for unsequenced operations on the
12100 /// same object.
12101 class SequenceChecker : public EvaluatedExprVisitor<SequenceChecker> {
12102   using Base = EvaluatedExprVisitor<SequenceChecker>;
12103 
12104   /// A tree of sequenced regions within an expression. Two regions are
12105   /// unsequenced if one is an ancestor or a descendent of the other. When we
12106   /// finish processing an expression with sequencing, such as a comma
12107   /// expression, we fold its tree nodes into its parent, since they are
12108   /// unsequenced with respect to nodes we will visit later.
12109   class SequenceTree {
12110     struct Value {
12111       explicit Value(unsigned Parent) : Parent(Parent), Merged(false) {}
12112       unsigned Parent : 31;
12113       unsigned Merged : 1;
12114     };
12115     SmallVector<Value, 8> Values;
12116 
12117   public:
12118     /// A region within an expression which may be sequenced with respect
12119     /// to some other region.
12120     class Seq {
12121       friend class SequenceTree;
12122 
12123       unsigned Index;
12124 
12125       explicit Seq(unsigned N) : Index(N) {}
12126 
12127     public:
12128       Seq() : Index(0) {}
12129     };
12130 
12131     SequenceTree() { Values.push_back(Value(0)); }
12132     Seq root() const { return Seq(0); }
12133 
12134     /// Create a new sequence of operations, which is an unsequenced
12135     /// subset of \p Parent. This sequence of operations is sequenced with
12136     /// respect to other children of \p Parent.
12137     Seq allocate(Seq Parent) {
12138       Values.push_back(Value(Parent.Index));
12139       return Seq(Values.size() - 1);
12140     }
12141 
12142     /// Merge a sequence of operations into its parent.
12143     void merge(Seq S) {
12144       Values[S.Index].Merged = true;
12145     }
12146 
12147     /// Determine whether two operations are unsequenced. This operation
12148     /// is asymmetric: \p Cur should be the more recent sequence, and \p Old
12149     /// should have been merged into its parent as appropriate.
12150     bool isUnsequenced(Seq Cur, Seq Old) {
12151       unsigned C = representative(Cur.Index);
12152       unsigned Target = representative(Old.Index);
12153       while (C >= Target) {
12154         if (C == Target)
12155           return true;
12156         C = Values[C].Parent;
12157       }
12158       return false;
12159     }
12160 
12161   private:
12162     /// Pick a representative for a sequence.
12163     unsigned representative(unsigned K) {
12164       if (Values[K].Merged)
12165         // Perform path compression as we go.
12166         return Values[K].Parent = representative(Values[K].Parent);
12167       return K;
12168     }
12169   };
12170 
12171   /// An object for which we can track unsequenced uses.
12172   using Object = NamedDecl *;
12173 
12174   /// Different flavors of object usage which we track. We only track the
12175   /// least-sequenced usage of each kind.
12176   enum UsageKind {
12177     /// A read of an object. Multiple unsequenced reads are OK.
12178     UK_Use,
12179 
12180     /// A modification of an object which is sequenced before the value
12181     /// computation of the expression, such as ++n in C++.
12182     UK_ModAsValue,
12183 
12184     /// A modification of an object which is not sequenced before the value
12185     /// computation of the expression, such as n++.
12186     UK_ModAsSideEffect,
12187 
12188     UK_Count = UK_ModAsSideEffect + 1
12189   };
12190 
12191   struct Usage {
12192     Expr *Use;
12193     SequenceTree::Seq Seq;
12194 
12195     Usage() : Use(nullptr), Seq() {}
12196   };
12197 
12198   struct UsageInfo {
12199     Usage Uses[UK_Count];
12200 
12201     /// Have we issued a diagnostic for this variable already?
12202     bool Diagnosed;
12203 
12204     UsageInfo() : Uses(), Diagnosed(false) {}
12205   };
12206   using UsageInfoMap = llvm::SmallDenseMap<Object, UsageInfo, 16>;
12207 
12208   Sema &SemaRef;
12209 
12210   /// Sequenced regions within the expression.
12211   SequenceTree Tree;
12212 
12213   /// Declaration modifications and references which we have seen.
12214   UsageInfoMap UsageMap;
12215 
12216   /// The region we are currently within.
12217   SequenceTree::Seq Region;
12218 
12219   /// Filled in with declarations which were modified as a side-effect
12220   /// (that is, post-increment operations).
12221   SmallVectorImpl<std::pair<Object, Usage>> *ModAsSideEffect = nullptr;
12222 
12223   /// Expressions to check later. We defer checking these to reduce
12224   /// stack usage.
12225   SmallVectorImpl<Expr *> &WorkList;
12226 
12227   /// RAII object wrapping the visitation of a sequenced subexpression of an
12228   /// expression. At the end of this process, the side-effects of the evaluation
12229   /// become sequenced with respect to the value computation of the result, so
12230   /// we downgrade any UK_ModAsSideEffect within the evaluation to
12231   /// UK_ModAsValue.
12232   struct SequencedSubexpression {
12233     SequencedSubexpression(SequenceChecker &Self)
12234       : Self(Self), OldModAsSideEffect(Self.ModAsSideEffect) {
12235       Self.ModAsSideEffect = &ModAsSideEffect;
12236     }
12237 
12238     ~SequencedSubexpression() {
12239       for (auto &M : llvm::reverse(ModAsSideEffect)) {
12240         UsageInfo &U = Self.UsageMap[M.first];
12241         auto &SideEffectUsage = U.Uses[UK_ModAsSideEffect];
12242         Self.addUsage(U, M.first, SideEffectUsage.Use, UK_ModAsValue);
12243         SideEffectUsage = M.second;
12244       }
12245       Self.ModAsSideEffect = OldModAsSideEffect;
12246     }
12247 
12248     SequenceChecker &Self;
12249     SmallVector<std::pair<Object, Usage>, 4> ModAsSideEffect;
12250     SmallVectorImpl<std::pair<Object, Usage>> *OldModAsSideEffect;
12251   };
12252 
12253   /// RAII object wrapping the visitation of a subexpression which we might
12254   /// choose to evaluate as a constant. If any subexpression is evaluated and
12255   /// found to be non-constant, this allows us to suppress the evaluation of
12256   /// the outer expression.
12257   class EvaluationTracker {
12258   public:
12259     EvaluationTracker(SequenceChecker &Self)
12260         : Self(Self), Prev(Self.EvalTracker) {
12261       Self.EvalTracker = this;
12262     }
12263 
12264     ~EvaluationTracker() {
12265       Self.EvalTracker = Prev;
12266       if (Prev)
12267         Prev->EvalOK &= EvalOK;
12268     }
12269 
12270     bool evaluate(const Expr *E, bool &Result) {
12271       if (!EvalOK || E->isValueDependent())
12272         return false;
12273       EvalOK = E->EvaluateAsBooleanCondition(
12274           Result, Self.SemaRef.Context, Self.SemaRef.isConstantEvaluated());
12275       return EvalOK;
12276     }
12277 
12278   private:
12279     SequenceChecker &Self;
12280     EvaluationTracker *Prev;
12281     bool EvalOK = true;
12282   } *EvalTracker = nullptr;
12283 
12284   /// Find the object which is produced by the specified expression,
12285   /// if any.
12286   Object getObject(Expr *E, bool Mod) const {
12287     E = E->IgnoreParenCasts();
12288     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
12289       if (Mod && (UO->getOpcode() == UO_PreInc || UO->getOpcode() == UO_PreDec))
12290         return getObject(UO->getSubExpr(), Mod);
12291     } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
12292       if (BO->getOpcode() == BO_Comma)
12293         return getObject(BO->getRHS(), Mod);
12294       if (Mod && BO->isAssignmentOp())
12295         return getObject(BO->getLHS(), Mod);
12296     } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
12297       // FIXME: Check for more interesting cases, like "x.n = ++x.n".
12298       if (isa<CXXThisExpr>(ME->getBase()->IgnoreParenCasts()))
12299         return ME->getMemberDecl();
12300     } else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
12301       // FIXME: If this is a reference, map through to its value.
12302       return DRE->getDecl();
12303     return nullptr;
12304   }
12305 
12306   /// Note that an object was modified or used by an expression.
12307   void addUsage(UsageInfo &UI, Object O, Expr *Ref, UsageKind UK) {
12308     Usage &U = UI.Uses[UK];
12309     if (!U.Use || !Tree.isUnsequenced(Region, U.Seq)) {
12310       if (UK == UK_ModAsSideEffect && ModAsSideEffect)
12311         ModAsSideEffect->push_back(std::make_pair(O, U));
12312       U.Use = Ref;
12313       U.Seq = Region;
12314     }
12315   }
12316 
12317   /// Check whether a modification or use conflicts with a prior usage.
12318   void checkUsage(Object O, UsageInfo &UI, Expr *Ref, UsageKind OtherKind,
12319                   bool IsModMod) {
12320     if (UI.Diagnosed)
12321       return;
12322 
12323     const Usage &U = UI.Uses[OtherKind];
12324     if (!U.Use || !Tree.isUnsequenced(Region, U.Seq))
12325       return;
12326 
12327     Expr *Mod = U.Use;
12328     Expr *ModOrUse = Ref;
12329     if (OtherKind == UK_Use)
12330       std::swap(Mod, ModOrUse);
12331 
12332     SemaRef.DiagRuntimeBehavior(
12333         Mod->getExprLoc(), {Mod, ModOrUse},
12334         SemaRef.PDiag(IsModMod ? diag::warn_unsequenced_mod_mod
12335                                : diag::warn_unsequenced_mod_use)
12336             << O << SourceRange(ModOrUse->getExprLoc()));
12337     UI.Diagnosed = true;
12338   }
12339 
12340   void notePreUse(Object O, Expr *Use) {
12341     UsageInfo &U = UsageMap[O];
12342     // Uses conflict with other modifications.
12343     checkUsage(O, U, Use, UK_ModAsValue, false);
12344   }
12345 
12346   void notePostUse(Object O, Expr *Use) {
12347     UsageInfo &U = UsageMap[O];
12348     checkUsage(O, U, Use, UK_ModAsSideEffect, false);
12349     addUsage(U, O, Use, UK_Use);
12350   }
12351 
12352   void notePreMod(Object O, Expr *Mod) {
12353     UsageInfo &U = UsageMap[O];
12354     // Modifications conflict with other modifications and with uses.
12355     checkUsage(O, U, Mod, UK_ModAsValue, true);
12356     checkUsage(O, U, Mod, UK_Use, false);
12357   }
12358 
12359   void notePostMod(Object O, Expr *Use, UsageKind UK) {
12360     UsageInfo &U = UsageMap[O];
12361     checkUsage(O, U, Use, UK_ModAsSideEffect, true);
12362     addUsage(U, O, Use, UK);
12363   }
12364 
12365 public:
12366   SequenceChecker(Sema &S, Expr *E, SmallVectorImpl<Expr *> &WorkList)
12367       : Base(S.Context), SemaRef(S), Region(Tree.root()), WorkList(WorkList) {
12368     Visit(E);
12369   }
12370 
12371   void VisitStmt(Stmt *S) {
12372     // Skip all statements which aren't expressions for now.
12373   }
12374 
12375   void VisitExpr(Expr *E) {
12376     // By default, just recurse to evaluated subexpressions.
12377     Base::VisitStmt(E);
12378   }
12379 
12380   void VisitCastExpr(CastExpr *E) {
12381     Object O = Object();
12382     if (E->getCastKind() == CK_LValueToRValue)
12383       O = getObject(E->getSubExpr(), false);
12384 
12385     if (O)
12386       notePreUse(O, E);
12387     VisitExpr(E);
12388     if (O)
12389       notePostUse(O, E);
12390   }
12391 
12392   void VisitSequencedExpressions(Expr *SequencedBefore, Expr *SequencedAfter) {
12393     SequenceTree::Seq BeforeRegion = Tree.allocate(Region);
12394     SequenceTree::Seq AfterRegion = Tree.allocate(Region);
12395     SequenceTree::Seq OldRegion = Region;
12396 
12397     {
12398       SequencedSubexpression SeqBefore(*this);
12399       Region = BeforeRegion;
12400       Visit(SequencedBefore);
12401     }
12402 
12403     Region = AfterRegion;
12404     Visit(SequencedAfter);
12405 
12406     Region = OldRegion;
12407 
12408     Tree.merge(BeforeRegion);
12409     Tree.merge(AfterRegion);
12410   }
12411 
12412   void VisitArraySubscriptExpr(ArraySubscriptExpr *ASE) {
12413     // C++17 [expr.sub]p1:
12414     //   The expression E1[E2] is identical (by definition) to *((E1)+(E2)). The
12415     //   expression E1 is sequenced before the expression E2.
12416     if (SemaRef.getLangOpts().CPlusPlus17)
12417       VisitSequencedExpressions(ASE->getLHS(), ASE->getRHS());
12418     else
12419       Base::VisitStmt(ASE);
12420   }
12421 
12422   void VisitBinComma(BinaryOperator *BO) {
12423     // C++11 [expr.comma]p1:
12424     //   Every value computation and side effect associated with the left
12425     //   expression is sequenced before every value computation and side
12426     //   effect associated with the right expression.
12427     VisitSequencedExpressions(BO->getLHS(), BO->getRHS());
12428   }
12429 
12430   void VisitBinAssign(BinaryOperator *BO) {
12431     // The modification is sequenced after the value computation of the LHS
12432     // and RHS, so check it before inspecting the operands and update the
12433     // map afterwards.
12434     Object O = getObject(BO->getLHS(), true);
12435     if (!O)
12436       return VisitExpr(BO);
12437 
12438     notePreMod(O, BO);
12439 
12440     // C++11 [expr.ass]p7:
12441     //   E1 op= E2 is equivalent to E1 = E1 op E2, except that E1 is evaluated
12442     //   only once.
12443     //
12444     // Therefore, for a compound assignment operator, O is considered used
12445     // everywhere except within the evaluation of E1 itself.
12446     if (isa<CompoundAssignOperator>(BO))
12447       notePreUse(O, BO);
12448 
12449     Visit(BO->getLHS());
12450 
12451     if (isa<CompoundAssignOperator>(BO))
12452       notePostUse(O, BO);
12453 
12454     Visit(BO->getRHS());
12455 
12456     // C++11 [expr.ass]p1:
12457     //   the assignment is sequenced [...] before the value computation of the
12458     //   assignment expression.
12459     // C11 6.5.16/3 has no such rule.
12460     notePostMod(O, BO, SemaRef.getLangOpts().CPlusPlus ? UK_ModAsValue
12461                                                        : UK_ModAsSideEffect);
12462   }
12463 
12464   void VisitCompoundAssignOperator(CompoundAssignOperator *CAO) {
12465     VisitBinAssign(CAO);
12466   }
12467 
12468   void VisitUnaryPreInc(UnaryOperator *UO) { VisitUnaryPreIncDec(UO); }
12469   void VisitUnaryPreDec(UnaryOperator *UO) { VisitUnaryPreIncDec(UO); }
12470   void VisitUnaryPreIncDec(UnaryOperator *UO) {
12471     Object O = getObject(UO->getSubExpr(), true);
12472     if (!O)
12473       return VisitExpr(UO);
12474 
12475     notePreMod(O, UO);
12476     Visit(UO->getSubExpr());
12477     // C++11 [expr.pre.incr]p1:
12478     //   the expression ++x is equivalent to x+=1
12479     notePostMod(O, UO, SemaRef.getLangOpts().CPlusPlus ? UK_ModAsValue
12480                                                        : UK_ModAsSideEffect);
12481   }
12482 
12483   void VisitUnaryPostInc(UnaryOperator *UO) { VisitUnaryPostIncDec(UO); }
12484   void VisitUnaryPostDec(UnaryOperator *UO) { VisitUnaryPostIncDec(UO); }
12485   void VisitUnaryPostIncDec(UnaryOperator *UO) {
12486     Object O = getObject(UO->getSubExpr(), true);
12487     if (!O)
12488       return VisitExpr(UO);
12489 
12490     notePreMod(O, UO);
12491     Visit(UO->getSubExpr());
12492     notePostMod(O, UO, UK_ModAsSideEffect);
12493   }
12494 
12495   /// Don't visit the RHS of '&&' or '||' if it might not be evaluated.
12496   void VisitBinLOr(BinaryOperator *BO) {
12497     // The side-effects of the LHS of an '&&' are sequenced before the
12498     // value computation of the RHS, and hence before the value computation
12499     // of the '&&' itself, unless the LHS evaluates to zero. We treat them
12500     // as if they were unconditionally sequenced.
12501     EvaluationTracker Eval(*this);
12502     {
12503       SequencedSubexpression Sequenced(*this);
12504       Visit(BO->getLHS());
12505     }
12506 
12507     bool Result;
12508     if (Eval.evaluate(BO->getLHS(), Result)) {
12509       if (!Result)
12510         Visit(BO->getRHS());
12511     } else {
12512       // Check for unsequenced operations in the RHS, treating it as an
12513       // entirely separate evaluation.
12514       //
12515       // FIXME: If there are operations in the RHS which are unsequenced
12516       // with respect to operations outside the RHS, and those operations
12517       // are unconditionally evaluated, diagnose them.
12518       WorkList.push_back(BO->getRHS());
12519     }
12520   }
12521   void VisitBinLAnd(BinaryOperator *BO) {
12522     EvaluationTracker Eval(*this);
12523     {
12524       SequencedSubexpression Sequenced(*this);
12525       Visit(BO->getLHS());
12526     }
12527 
12528     bool Result;
12529     if (Eval.evaluate(BO->getLHS(), Result)) {
12530       if (Result)
12531         Visit(BO->getRHS());
12532     } else {
12533       WorkList.push_back(BO->getRHS());
12534     }
12535   }
12536 
12537   // Only visit the condition, unless we can be sure which subexpression will
12538   // be chosen.
12539   void VisitAbstractConditionalOperator(AbstractConditionalOperator *CO) {
12540     EvaluationTracker Eval(*this);
12541     {
12542       SequencedSubexpression Sequenced(*this);
12543       Visit(CO->getCond());
12544     }
12545 
12546     bool Result;
12547     if (Eval.evaluate(CO->getCond(), Result))
12548       Visit(Result ? CO->getTrueExpr() : CO->getFalseExpr());
12549     else {
12550       WorkList.push_back(CO->getTrueExpr());
12551       WorkList.push_back(CO->getFalseExpr());
12552     }
12553   }
12554 
12555   void VisitCallExpr(CallExpr *CE) {
12556     // C++11 [intro.execution]p15:
12557     //   When calling a function [...], every value computation and side effect
12558     //   associated with any argument expression, or with the postfix expression
12559     //   designating the called function, is sequenced before execution of every
12560     //   expression or statement in the body of the function [and thus before
12561     //   the value computation of its result].
12562     SequencedSubexpression Sequenced(*this);
12563     Base::VisitCallExpr(CE);
12564 
12565     // FIXME: CXXNewExpr and CXXDeleteExpr implicitly call functions.
12566   }
12567 
12568   void VisitCXXConstructExpr(CXXConstructExpr *CCE) {
12569     // This is a call, so all subexpressions are sequenced before the result.
12570     SequencedSubexpression Sequenced(*this);
12571 
12572     if (!CCE->isListInitialization())
12573       return VisitExpr(CCE);
12574 
12575     // In C++11, list initializations are sequenced.
12576     SmallVector<SequenceTree::Seq, 32> Elts;
12577     SequenceTree::Seq Parent = Region;
12578     for (CXXConstructExpr::arg_iterator I = CCE->arg_begin(),
12579                                         E = CCE->arg_end();
12580          I != E; ++I) {
12581       Region = Tree.allocate(Parent);
12582       Elts.push_back(Region);
12583       Visit(*I);
12584     }
12585 
12586     // Forget that the initializers are sequenced.
12587     Region = Parent;
12588     for (unsigned I = 0; I < Elts.size(); ++I)
12589       Tree.merge(Elts[I]);
12590   }
12591 
12592   void VisitInitListExpr(InitListExpr *ILE) {
12593     if (!SemaRef.getLangOpts().CPlusPlus11)
12594       return VisitExpr(ILE);
12595 
12596     // In C++11, list initializations are sequenced.
12597     SmallVector<SequenceTree::Seq, 32> Elts;
12598     SequenceTree::Seq Parent = Region;
12599     for (unsigned I = 0; I < ILE->getNumInits(); ++I) {
12600       Expr *E = ILE->getInit(I);
12601       if (!E) continue;
12602       Region = Tree.allocate(Parent);
12603       Elts.push_back(Region);
12604       Visit(E);
12605     }
12606 
12607     // Forget that the initializers are sequenced.
12608     Region = Parent;
12609     for (unsigned I = 0; I < Elts.size(); ++I)
12610       Tree.merge(Elts[I]);
12611   }
12612 };
12613 
12614 } // namespace
12615 
12616 void Sema::CheckUnsequencedOperations(Expr *E) {
12617   SmallVector<Expr *, 8> WorkList;
12618   WorkList.push_back(E);
12619   while (!WorkList.empty()) {
12620     Expr *Item = WorkList.pop_back_val();
12621     SequenceChecker(*this, Item, WorkList);
12622   }
12623 }
12624 
12625 void Sema::CheckCompletedExpr(Expr *E, SourceLocation CheckLoc,
12626                               bool IsConstexpr) {
12627   llvm::SaveAndRestore<bool> ConstantContext(
12628       isConstantEvaluatedOverride, IsConstexpr || isa<ConstantExpr>(E));
12629   CheckImplicitConversions(E, CheckLoc);
12630   if (!E->isInstantiationDependent())
12631     CheckUnsequencedOperations(E);
12632   if (!IsConstexpr && !E->isValueDependent())
12633     CheckForIntOverflow(E);
12634   DiagnoseMisalignedMembers();
12635 }
12636 
12637 void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
12638                                        FieldDecl *BitField,
12639                                        Expr *Init) {
12640   (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
12641 }
12642 
12643 static void diagnoseArrayStarInParamType(Sema &S, QualType PType,
12644                                          SourceLocation Loc) {
12645   if (!PType->isVariablyModifiedType())
12646     return;
12647   if (const auto *PointerTy = dyn_cast<PointerType>(PType)) {
12648     diagnoseArrayStarInParamType(S, PointerTy->getPointeeType(), Loc);
12649     return;
12650   }
12651   if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) {
12652     diagnoseArrayStarInParamType(S, ReferenceTy->getPointeeType(), Loc);
12653     return;
12654   }
12655   if (const auto *ParenTy = dyn_cast<ParenType>(PType)) {
12656     diagnoseArrayStarInParamType(S, ParenTy->getInnerType(), Loc);
12657     return;
12658   }
12659 
12660   const ArrayType *AT = S.Context.getAsArrayType(PType);
12661   if (!AT)
12662     return;
12663 
12664   if (AT->getSizeModifier() != ArrayType::Star) {
12665     diagnoseArrayStarInParamType(S, AT->getElementType(), Loc);
12666     return;
12667   }
12668 
12669   S.Diag(Loc, diag::err_array_star_in_function_definition);
12670 }
12671 
12672 /// CheckParmsForFunctionDef - Check that the parameters of the given
12673 /// function are appropriate for the definition of a function. This
12674 /// takes care of any checks that cannot be performed on the
12675 /// declaration itself, e.g., that the types of each of the function
12676 /// parameters are complete.
12677 bool Sema::CheckParmsForFunctionDef(ArrayRef<ParmVarDecl *> Parameters,
12678                                     bool CheckParameterNames) {
12679   bool HasInvalidParm = false;
12680   for (ParmVarDecl *Param : Parameters) {
12681     // C99 6.7.5.3p4: the parameters in a parameter type list in a
12682     // function declarator that is part of a function definition of
12683     // that function shall not have incomplete type.
12684     //
12685     // This is also C++ [dcl.fct]p6.
12686     if (!Param->isInvalidDecl() &&
12687         RequireCompleteType(Param->getLocation(), Param->getType(),
12688                             diag::err_typecheck_decl_incomplete_type)) {
12689       Param->setInvalidDecl();
12690       HasInvalidParm = true;
12691     }
12692 
12693     // C99 6.9.1p5: If the declarator includes a parameter type list, the
12694     // declaration of each parameter shall include an identifier.
12695     if (CheckParameterNames &&
12696         Param->getIdentifier() == nullptr &&
12697         !Param->isImplicit() &&
12698         !getLangOpts().CPlusPlus)
12699       Diag(Param->getLocation(), diag::err_parameter_name_omitted);
12700 
12701     // C99 6.7.5.3p12:
12702     //   If the function declarator is not part of a definition of that
12703     //   function, parameters may have incomplete type and may use the [*]
12704     //   notation in their sequences of declarator specifiers to specify
12705     //   variable length array types.
12706     QualType PType = Param->getOriginalType();
12707     // FIXME: This diagnostic should point the '[*]' if source-location
12708     // information is added for it.
12709     diagnoseArrayStarInParamType(*this, PType, Param->getLocation());
12710 
12711     // If the parameter is a c++ class type and it has to be destructed in the
12712     // callee function, declare the destructor so that it can be called by the
12713     // callee function. Do not perform any direct access check on the dtor here.
12714     if (!Param->isInvalidDecl()) {
12715       if (CXXRecordDecl *ClassDecl = Param->getType()->getAsCXXRecordDecl()) {
12716         if (!ClassDecl->isInvalidDecl() &&
12717             !ClassDecl->hasIrrelevantDestructor() &&
12718             !ClassDecl->isDependentContext() &&
12719             ClassDecl->isParamDestroyedInCallee()) {
12720           CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
12721           MarkFunctionReferenced(Param->getLocation(), Destructor);
12722           DiagnoseUseOfDecl(Destructor, Param->getLocation());
12723         }
12724       }
12725     }
12726 
12727     // Parameters with the pass_object_size attribute only need to be marked
12728     // constant at function definitions. Because we lack information about
12729     // whether we're on a declaration or definition when we're instantiating the
12730     // attribute, we need to check for constness here.
12731     if (const auto *Attr = Param->getAttr<PassObjectSizeAttr>())
12732       if (!Param->getType().isConstQualified())
12733         Diag(Param->getLocation(), diag::err_attribute_pointers_only)
12734             << Attr->getSpelling() << 1;
12735 
12736     // Check for parameter names shadowing fields from the class.
12737     if (LangOpts.CPlusPlus && !Param->isInvalidDecl()) {
12738       // The owning context for the parameter should be the function, but we
12739       // want to see if this function's declaration context is a record.
12740       DeclContext *DC = Param->getDeclContext();
12741       if (DC && DC->isFunctionOrMethod()) {
12742         if (auto *RD = dyn_cast<CXXRecordDecl>(DC->getParent()))
12743           CheckShadowInheritedFields(Param->getLocation(), Param->getDeclName(),
12744                                      RD, /*DeclIsField*/ false);
12745       }
12746     }
12747   }
12748 
12749   return HasInvalidParm;
12750 }
12751 
12752 /// A helper function to get the alignment of a Decl referred to by DeclRefExpr
12753 /// or MemberExpr.
12754 static CharUnits getDeclAlign(Expr *E, CharUnits TypeAlign,
12755                               ASTContext &Context) {
12756   if (const auto *DRE = dyn_cast<DeclRefExpr>(E))
12757     return Context.getDeclAlign(DRE->getDecl());
12758 
12759   if (const auto *ME = dyn_cast<MemberExpr>(E))
12760     return Context.getDeclAlign(ME->getMemberDecl());
12761 
12762   return TypeAlign;
12763 }
12764 
12765 /// CheckCastAlign - Implements -Wcast-align, which warns when a
12766 /// pointer cast increases the alignment requirements.
12767 void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
12768   // This is actually a lot of work to potentially be doing on every
12769   // cast; don't do it if we're ignoring -Wcast_align (as is the default).
12770   if (getDiagnostics().isIgnored(diag::warn_cast_align, TRange.getBegin()))
12771     return;
12772 
12773   // Ignore dependent types.
12774   if (T->isDependentType() || Op->getType()->isDependentType())
12775     return;
12776 
12777   // Require that the destination be a pointer type.
12778   const PointerType *DestPtr = T->getAs<PointerType>();
12779   if (!DestPtr) return;
12780 
12781   // If the destination has alignment 1, we're done.
12782   QualType DestPointee = DestPtr->getPointeeType();
12783   if (DestPointee->isIncompleteType()) return;
12784   CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
12785   if (DestAlign.isOne()) return;
12786 
12787   // Require that the source be a pointer type.
12788   const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
12789   if (!SrcPtr) return;
12790   QualType SrcPointee = SrcPtr->getPointeeType();
12791 
12792   // Whitelist casts from cv void*.  We already implicitly
12793   // whitelisted casts to cv void*, since they have alignment 1.
12794   // Also whitelist casts involving incomplete types, which implicitly
12795   // includes 'void'.
12796   if (SrcPointee->isIncompleteType()) return;
12797 
12798   CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
12799 
12800   if (auto *CE = dyn_cast<CastExpr>(Op)) {
12801     if (CE->getCastKind() == CK_ArrayToPointerDecay)
12802       SrcAlign = getDeclAlign(CE->getSubExpr(), SrcAlign, Context);
12803   } else if (auto *UO = dyn_cast<UnaryOperator>(Op)) {
12804     if (UO->getOpcode() == UO_AddrOf)
12805       SrcAlign = getDeclAlign(UO->getSubExpr(), SrcAlign, Context);
12806   }
12807 
12808   if (SrcAlign >= DestAlign) return;
12809 
12810   Diag(TRange.getBegin(), diag::warn_cast_align)
12811     << Op->getType() << T
12812     << static_cast<unsigned>(SrcAlign.getQuantity())
12813     << static_cast<unsigned>(DestAlign.getQuantity())
12814     << TRange << Op->getSourceRange();
12815 }
12816 
12817 /// Check whether this array fits the idiom of a size-one tail padded
12818 /// array member of a struct.
12819 ///
12820 /// We avoid emitting out-of-bounds access warnings for such arrays as they are
12821 /// commonly used to emulate flexible arrays in C89 code.
12822 static bool IsTailPaddedMemberArray(Sema &S, const llvm::APInt &Size,
12823                                     const NamedDecl *ND) {
12824   if (Size != 1 || !ND) return false;
12825 
12826   const FieldDecl *FD = dyn_cast<FieldDecl>(ND);
12827   if (!FD) return false;
12828 
12829   // Don't consider sizes resulting from macro expansions or template argument
12830   // substitution to form C89 tail-padded arrays.
12831 
12832   TypeSourceInfo *TInfo = FD->getTypeSourceInfo();
12833   while (TInfo) {
12834     TypeLoc TL = TInfo->getTypeLoc();
12835     // Look through typedefs.
12836     if (TypedefTypeLoc TTL = TL.getAs<TypedefTypeLoc>()) {
12837       const TypedefNameDecl *TDL = TTL.getTypedefNameDecl();
12838       TInfo = TDL->getTypeSourceInfo();
12839       continue;
12840     }
12841     if (ConstantArrayTypeLoc CTL = TL.getAs<ConstantArrayTypeLoc>()) {
12842       const Expr *SizeExpr = dyn_cast<IntegerLiteral>(CTL.getSizeExpr());
12843       if (!SizeExpr || SizeExpr->getExprLoc().isMacroID())
12844         return false;
12845     }
12846     break;
12847   }
12848 
12849   const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext());
12850   if (!RD) return false;
12851   if (RD->isUnion()) return false;
12852   if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
12853     if (!CRD->isStandardLayout()) return false;
12854   }
12855 
12856   // See if this is the last field decl in the record.
12857   const Decl *D = FD;
12858   while ((D = D->getNextDeclInContext()))
12859     if (isa<FieldDecl>(D))
12860       return false;
12861   return true;
12862 }
12863 
12864 void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
12865                             const ArraySubscriptExpr *ASE,
12866                             bool AllowOnePastEnd, bool IndexNegated) {
12867   // Already diagnosed by the constant evaluator.
12868   if (isConstantEvaluated())
12869     return;
12870 
12871   IndexExpr = IndexExpr->IgnoreParenImpCasts();
12872   if (IndexExpr->isValueDependent())
12873     return;
12874 
12875   const Type *EffectiveType =
12876       BaseExpr->getType()->getPointeeOrArrayElementType();
12877   BaseExpr = BaseExpr->IgnoreParenCasts();
12878   const ConstantArrayType *ArrayTy =
12879       Context.getAsConstantArrayType(BaseExpr->getType());
12880 
12881   if (!ArrayTy)
12882     return;
12883 
12884   const Type *BaseType = ArrayTy->getElementType().getTypePtr();
12885   if (EffectiveType->isDependentType() || BaseType->isDependentType())
12886     return;
12887 
12888   Expr::EvalResult Result;
12889   if (!IndexExpr->EvaluateAsInt(Result, Context, Expr::SE_AllowSideEffects))
12890     return;
12891 
12892   llvm::APSInt index = Result.Val.getInt();
12893   if (IndexNegated)
12894     index = -index;
12895 
12896   const NamedDecl *ND = nullptr;
12897   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
12898     ND = DRE->getDecl();
12899   if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
12900     ND = ME->getMemberDecl();
12901 
12902   if (index.isUnsigned() || !index.isNegative()) {
12903     // It is possible that the type of the base expression after
12904     // IgnoreParenCasts is incomplete, even though the type of the base
12905     // expression before IgnoreParenCasts is complete (see PR39746 for an
12906     // example). In this case we have no information about whether the array
12907     // access exceeds the array bounds. However we can still diagnose an array
12908     // access which precedes the array bounds.
12909     if (BaseType->isIncompleteType())
12910       return;
12911 
12912     llvm::APInt size = ArrayTy->getSize();
12913     if (!size.isStrictlyPositive())
12914       return;
12915 
12916     if (BaseType != EffectiveType) {
12917       // Make sure we're comparing apples to apples when comparing index to size
12918       uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType);
12919       uint64_t array_typesize = Context.getTypeSize(BaseType);
12920       // Handle ptrarith_typesize being zero, such as when casting to void*
12921       if (!ptrarith_typesize) ptrarith_typesize = 1;
12922       if (ptrarith_typesize != array_typesize) {
12923         // There's a cast to a different size type involved
12924         uint64_t ratio = array_typesize / ptrarith_typesize;
12925         // TODO: Be smarter about handling cases where array_typesize is not a
12926         // multiple of ptrarith_typesize
12927         if (ptrarith_typesize * ratio == array_typesize)
12928           size *= llvm::APInt(size.getBitWidth(), ratio);
12929       }
12930     }
12931 
12932     if (size.getBitWidth() > index.getBitWidth())
12933       index = index.zext(size.getBitWidth());
12934     else if (size.getBitWidth() < index.getBitWidth())
12935       size = size.zext(index.getBitWidth());
12936 
12937     // For array subscripting the index must be less than size, but for pointer
12938     // arithmetic also allow the index (offset) to be equal to size since
12939     // computing the next address after the end of the array is legal and
12940     // commonly done e.g. in C++ iterators and range-based for loops.
12941     if (AllowOnePastEnd ? index.ule(size) : index.ult(size))
12942       return;
12943 
12944     // Also don't warn for arrays of size 1 which are members of some
12945     // structure. These are often used to approximate flexible arrays in C89
12946     // code.
12947     if (IsTailPaddedMemberArray(*this, size, ND))
12948       return;
12949 
12950     // Suppress the warning if the subscript expression (as identified by the
12951     // ']' location) and the index expression are both from macro expansions
12952     // within a system header.
12953     if (ASE) {
12954       SourceLocation RBracketLoc = SourceMgr.getSpellingLoc(
12955           ASE->getRBracketLoc());
12956       if (SourceMgr.isInSystemHeader(RBracketLoc)) {
12957         SourceLocation IndexLoc =
12958             SourceMgr.getSpellingLoc(IndexExpr->getBeginLoc());
12959         if (SourceMgr.isWrittenInSameFile(RBracketLoc, IndexLoc))
12960           return;
12961       }
12962     }
12963 
12964     unsigned DiagID = diag::warn_ptr_arith_exceeds_bounds;
12965     if (ASE)
12966       DiagID = diag::warn_array_index_exceeds_bounds;
12967 
12968     DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
12969                         PDiag(DiagID) << index.toString(10, true)
12970                                       << size.toString(10, true)
12971                                       << (unsigned)size.getLimitedValue(~0U)
12972                                       << IndexExpr->getSourceRange());
12973   } else {
12974     unsigned DiagID = diag::warn_array_index_precedes_bounds;
12975     if (!ASE) {
12976       DiagID = diag::warn_ptr_arith_precedes_bounds;
12977       if (index.isNegative()) index = -index;
12978     }
12979 
12980     DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
12981                         PDiag(DiagID) << index.toString(10, true)
12982                                       << IndexExpr->getSourceRange());
12983   }
12984 
12985   if (!ND) {
12986     // Try harder to find a NamedDecl to point at in the note.
12987     while (const ArraySubscriptExpr *ASE =
12988            dyn_cast<ArraySubscriptExpr>(BaseExpr))
12989       BaseExpr = ASE->getBase()->IgnoreParenCasts();
12990     if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
12991       ND = DRE->getDecl();
12992     if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
12993       ND = ME->getMemberDecl();
12994   }
12995 
12996   if (ND)
12997     DiagRuntimeBehavior(ND->getBeginLoc(), BaseExpr,
12998                         PDiag(diag::note_array_index_out_of_bounds)
12999                             << ND->getDeclName());
13000 }
13001 
13002 void Sema::CheckArrayAccess(const Expr *expr) {
13003   int AllowOnePastEnd = 0;
13004   while (expr) {
13005     expr = expr->IgnoreParenImpCasts();
13006     switch (expr->getStmtClass()) {
13007       case Stmt::ArraySubscriptExprClass: {
13008         const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
13009         CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE,
13010                          AllowOnePastEnd > 0);
13011         expr = ASE->getBase();
13012         break;
13013       }
13014       case Stmt::MemberExprClass: {
13015         expr = cast<MemberExpr>(expr)->getBase();
13016         break;
13017       }
13018       case Stmt::OMPArraySectionExprClass: {
13019         const OMPArraySectionExpr *ASE = cast<OMPArraySectionExpr>(expr);
13020         if (ASE->getLowerBound())
13021           CheckArrayAccess(ASE->getBase(), ASE->getLowerBound(),
13022                            /*ASE=*/nullptr, AllowOnePastEnd > 0);
13023         return;
13024       }
13025       case Stmt::UnaryOperatorClass: {
13026         // Only unwrap the * and & unary operators
13027         const UnaryOperator *UO = cast<UnaryOperator>(expr);
13028         expr = UO->getSubExpr();
13029         switch (UO->getOpcode()) {
13030           case UO_AddrOf:
13031             AllowOnePastEnd++;
13032             break;
13033           case UO_Deref:
13034             AllowOnePastEnd--;
13035             break;
13036           default:
13037             return;
13038         }
13039         break;
13040       }
13041       case Stmt::ConditionalOperatorClass: {
13042         const ConditionalOperator *cond = cast<ConditionalOperator>(expr);
13043         if (const Expr *lhs = cond->getLHS())
13044           CheckArrayAccess(lhs);
13045         if (const Expr *rhs = cond->getRHS())
13046           CheckArrayAccess(rhs);
13047         return;
13048       }
13049       case Stmt::CXXOperatorCallExprClass: {
13050         const auto *OCE = cast<CXXOperatorCallExpr>(expr);
13051         for (const auto *Arg : OCE->arguments())
13052           CheckArrayAccess(Arg);
13053         return;
13054       }
13055       default:
13056         return;
13057     }
13058   }
13059 }
13060 
13061 //===--- CHECK: Objective-C retain cycles ----------------------------------//
13062 
13063 namespace {
13064 
13065 struct RetainCycleOwner {
13066   VarDecl *Variable = nullptr;
13067   SourceRange Range;
13068   SourceLocation Loc;
13069   bool Indirect = false;
13070 
13071   RetainCycleOwner() = default;
13072 
13073   void setLocsFrom(Expr *e) {
13074     Loc = e->getExprLoc();
13075     Range = e->getSourceRange();
13076   }
13077 };
13078 
13079 } // namespace
13080 
13081 /// Consider whether capturing the given variable can possibly lead to
13082 /// a retain cycle.
13083 static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) {
13084   // In ARC, it's captured strongly iff the variable has __strong
13085   // lifetime.  In MRR, it's captured strongly if the variable is
13086   // __block and has an appropriate type.
13087   if (var->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
13088     return false;
13089 
13090   owner.Variable = var;
13091   if (ref)
13092     owner.setLocsFrom(ref);
13093   return true;
13094 }
13095 
13096 static bool findRetainCycleOwner(Sema &S, Expr *e, RetainCycleOwner &owner) {
13097   while (true) {
13098     e = e->IgnoreParens();
13099     if (CastExpr *cast = dyn_cast<CastExpr>(e)) {
13100       switch (cast->getCastKind()) {
13101       case CK_BitCast:
13102       case CK_LValueBitCast:
13103       case CK_LValueToRValue:
13104       case CK_ARCReclaimReturnedObject:
13105         e = cast->getSubExpr();
13106         continue;
13107 
13108       default:
13109         return false;
13110       }
13111     }
13112 
13113     if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) {
13114       ObjCIvarDecl *ivar = ref->getDecl();
13115       if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
13116         return false;
13117 
13118       // Try to find a retain cycle in the base.
13119       if (!findRetainCycleOwner(S, ref->getBase(), owner))
13120         return false;
13121 
13122       if (ref->isFreeIvar()) owner.setLocsFrom(ref);
13123       owner.Indirect = true;
13124       return true;
13125     }
13126 
13127     if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) {
13128       VarDecl *var = dyn_cast<VarDecl>(ref->getDecl());
13129       if (!var) return false;
13130       return considerVariable(var, ref, owner);
13131     }
13132 
13133     if (MemberExpr *member = dyn_cast<MemberExpr>(e)) {
13134       if (member->isArrow()) return false;
13135 
13136       // Don't count this as an indirect ownership.
13137       e = member->getBase();
13138       continue;
13139     }
13140 
13141     if (PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) {
13142       // Only pay attention to pseudo-objects on property references.
13143       ObjCPropertyRefExpr *pre
13144         = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm()
13145                                               ->IgnoreParens());
13146       if (!pre) return false;
13147       if (pre->isImplicitProperty()) return false;
13148       ObjCPropertyDecl *property = pre->getExplicitProperty();
13149       if (!property->isRetaining() &&
13150           !(property->getPropertyIvarDecl() &&
13151             property->getPropertyIvarDecl()->getType()
13152               .getObjCLifetime() == Qualifiers::OCL_Strong))
13153           return false;
13154 
13155       owner.Indirect = true;
13156       if (pre->isSuperReceiver()) {
13157         owner.Variable = S.getCurMethodDecl()->getSelfDecl();
13158         if (!owner.Variable)
13159           return false;
13160         owner.Loc = pre->getLocation();
13161         owner.Range = pre->getSourceRange();
13162         return true;
13163       }
13164       e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase())
13165                               ->getSourceExpr());
13166       continue;
13167     }
13168 
13169     // Array ivars?
13170 
13171     return false;
13172   }
13173 }
13174 
13175 namespace {
13176 
13177   struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> {
13178     ASTContext &Context;
13179     VarDecl *Variable;
13180     Expr *Capturer = nullptr;
13181     bool VarWillBeReased = false;
13182 
13183     FindCaptureVisitor(ASTContext &Context, VarDecl *variable)
13184         : EvaluatedExprVisitor<FindCaptureVisitor>(Context),
13185           Context(Context), Variable(variable) {}
13186 
13187     void VisitDeclRefExpr(DeclRefExpr *ref) {
13188       if (ref->getDecl() == Variable && !Capturer)
13189         Capturer = ref;
13190     }
13191 
13192     void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) {
13193       if (Capturer) return;
13194       Visit(ref->getBase());
13195       if (Capturer && ref->isFreeIvar())
13196         Capturer = ref;
13197     }
13198 
13199     void VisitBlockExpr(BlockExpr *block) {
13200       // Look inside nested blocks
13201       if (block->getBlockDecl()->capturesVariable(Variable))
13202         Visit(block->getBlockDecl()->getBody());
13203     }
13204 
13205     void VisitOpaqueValueExpr(OpaqueValueExpr *OVE) {
13206       if (Capturer) return;
13207       if (OVE->getSourceExpr())
13208         Visit(OVE->getSourceExpr());
13209     }
13210 
13211     void VisitBinaryOperator(BinaryOperator *BinOp) {
13212       if (!Variable || VarWillBeReased || BinOp->getOpcode() != BO_Assign)
13213         return;
13214       Expr *LHS = BinOp->getLHS();
13215       if (const DeclRefExpr *DRE = dyn_cast_or_null<DeclRefExpr>(LHS)) {
13216         if (DRE->getDecl() != Variable)
13217           return;
13218         if (Expr *RHS = BinOp->getRHS()) {
13219           RHS = RHS->IgnoreParenCasts();
13220           llvm::APSInt Value;
13221           VarWillBeReased =
13222             (RHS && RHS->isIntegerConstantExpr(Value, Context) && Value == 0);
13223         }
13224       }
13225     }
13226   };
13227 
13228 } // namespace
13229 
13230 /// Check whether the given argument is a block which captures a
13231 /// variable.
13232 static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) {
13233   assert(owner.Variable && owner.Loc.isValid());
13234 
13235   e = e->IgnoreParenCasts();
13236 
13237   // Look through [^{...} copy] and Block_copy(^{...}).
13238   if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(e)) {
13239     Selector Cmd = ME->getSelector();
13240     if (Cmd.isUnarySelector() && Cmd.getNameForSlot(0) == "copy") {
13241       e = ME->getInstanceReceiver();
13242       if (!e)
13243         return nullptr;
13244       e = e->IgnoreParenCasts();
13245     }
13246   } else if (CallExpr *CE = dyn_cast<CallExpr>(e)) {
13247     if (CE->getNumArgs() == 1) {
13248       FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl());
13249       if (Fn) {
13250         const IdentifierInfo *FnI = Fn->getIdentifier();
13251         if (FnI && FnI->isStr("_Block_copy")) {
13252           e = CE->getArg(0)->IgnoreParenCasts();
13253         }
13254       }
13255     }
13256   }
13257 
13258   BlockExpr *block = dyn_cast<BlockExpr>(e);
13259   if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable))
13260     return nullptr;
13261 
13262   FindCaptureVisitor visitor(S.Context, owner.Variable);
13263   visitor.Visit(block->getBlockDecl()->getBody());
13264   return visitor.VarWillBeReased ? nullptr : visitor.Capturer;
13265 }
13266 
13267 static void diagnoseRetainCycle(Sema &S, Expr *capturer,
13268                                 RetainCycleOwner &owner) {
13269   assert(capturer);
13270   assert(owner.Variable && owner.Loc.isValid());
13271 
13272   S.Diag(capturer->getExprLoc(), diag::warn_arc_retain_cycle)
13273     << owner.Variable << capturer->getSourceRange();
13274   S.Diag(owner.Loc, diag::note_arc_retain_cycle_owner)
13275     << owner.Indirect << owner.Range;
13276 }
13277 
13278 /// Check for a keyword selector that starts with the word 'add' or
13279 /// 'set'.
13280 static bool isSetterLikeSelector(Selector sel) {
13281   if (sel.isUnarySelector()) return false;
13282 
13283   StringRef str = sel.getNameForSlot(0);
13284   while (!str.empty() && str.front() == '_') str = str.substr(1);
13285   if (str.startswith("set"))
13286     str = str.substr(3);
13287   else if (str.startswith("add")) {
13288     // Specially whitelist 'addOperationWithBlock:'.
13289     if (sel.getNumArgs() == 1 && str.startswith("addOperationWithBlock"))
13290       return false;
13291     str = str.substr(3);
13292   }
13293   else
13294     return false;
13295 
13296   if (str.empty()) return true;
13297   return !isLowercase(str.front());
13298 }
13299 
13300 static Optional<int> GetNSMutableArrayArgumentIndex(Sema &S,
13301                                                     ObjCMessageExpr *Message) {
13302   bool IsMutableArray = S.NSAPIObj->isSubclassOfNSClass(
13303                                                 Message->getReceiverInterface(),
13304                                                 NSAPI::ClassId_NSMutableArray);
13305   if (!IsMutableArray) {
13306     return None;
13307   }
13308 
13309   Selector Sel = Message->getSelector();
13310 
13311   Optional<NSAPI::NSArrayMethodKind> MKOpt =
13312     S.NSAPIObj->getNSArrayMethodKind(Sel);
13313   if (!MKOpt) {
13314     return None;
13315   }
13316 
13317   NSAPI::NSArrayMethodKind MK = *MKOpt;
13318 
13319   switch (MK) {
13320     case NSAPI::NSMutableArr_addObject:
13321     case NSAPI::NSMutableArr_insertObjectAtIndex:
13322     case NSAPI::NSMutableArr_setObjectAtIndexedSubscript:
13323       return 0;
13324     case NSAPI::NSMutableArr_replaceObjectAtIndex:
13325       return 1;
13326 
13327     default:
13328       return None;
13329   }
13330 
13331   return None;
13332 }
13333 
13334 static
13335 Optional<int> GetNSMutableDictionaryArgumentIndex(Sema &S,
13336                                                   ObjCMessageExpr *Message) {
13337   bool IsMutableDictionary = S.NSAPIObj->isSubclassOfNSClass(
13338                                             Message->getReceiverInterface(),
13339                                             NSAPI::ClassId_NSMutableDictionary);
13340   if (!IsMutableDictionary) {
13341     return None;
13342   }
13343 
13344   Selector Sel = Message->getSelector();
13345 
13346   Optional<NSAPI::NSDictionaryMethodKind> MKOpt =
13347     S.NSAPIObj->getNSDictionaryMethodKind(Sel);
13348   if (!MKOpt) {
13349     return None;
13350   }
13351 
13352   NSAPI::NSDictionaryMethodKind MK = *MKOpt;
13353 
13354   switch (MK) {
13355     case NSAPI::NSMutableDict_setObjectForKey:
13356     case NSAPI::NSMutableDict_setValueForKey:
13357     case NSAPI::NSMutableDict_setObjectForKeyedSubscript:
13358       return 0;
13359 
13360     default:
13361       return None;
13362   }
13363 
13364   return None;
13365 }
13366 
13367 static Optional<int> GetNSSetArgumentIndex(Sema &S, ObjCMessageExpr *Message) {
13368   bool IsMutableSet = S.NSAPIObj->isSubclassOfNSClass(
13369                                                 Message->getReceiverInterface(),
13370                                                 NSAPI::ClassId_NSMutableSet);
13371 
13372   bool IsMutableOrderedSet = S.NSAPIObj->isSubclassOfNSClass(
13373                                             Message->getReceiverInterface(),
13374                                             NSAPI::ClassId_NSMutableOrderedSet);
13375   if (!IsMutableSet && !IsMutableOrderedSet) {
13376     return None;
13377   }
13378 
13379   Selector Sel = Message->getSelector();
13380 
13381   Optional<NSAPI::NSSetMethodKind> MKOpt = S.NSAPIObj->getNSSetMethodKind(Sel);
13382   if (!MKOpt) {
13383     return None;
13384   }
13385 
13386   NSAPI::NSSetMethodKind MK = *MKOpt;
13387 
13388   switch (MK) {
13389     case NSAPI::NSMutableSet_addObject:
13390     case NSAPI::NSOrderedSet_setObjectAtIndex:
13391     case NSAPI::NSOrderedSet_setObjectAtIndexedSubscript:
13392     case NSAPI::NSOrderedSet_insertObjectAtIndex:
13393       return 0;
13394     case NSAPI::NSOrderedSet_replaceObjectAtIndexWithObject:
13395       return 1;
13396   }
13397 
13398   return None;
13399 }
13400 
13401 void Sema::CheckObjCCircularContainer(ObjCMessageExpr *Message) {
13402   if (!Message->isInstanceMessage()) {
13403     return;
13404   }
13405 
13406   Optional<int> ArgOpt;
13407 
13408   if (!(ArgOpt = GetNSMutableArrayArgumentIndex(*this, Message)) &&
13409       !(ArgOpt = GetNSMutableDictionaryArgumentIndex(*this, Message)) &&
13410       !(ArgOpt = GetNSSetArgumentIndex(*this, Message))) {
13411     return;
13412   }
13413 
13414   int ArgIndex = *ArgOpt;
13415 
13416   Expr *Arg = Message->getArg(ArgIndex)->IgnoreImpCasts();
13417   if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Arg)) {
13418     Arg = OE->getSourceExpr()->IgnoreImpCasts();
13419   }
13420 
13421   if (Message->getReceiverKind() == ObjCMessageExpr::SuperInstance) {
13422     if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) {
13423       if (ArgRE->isObjCSelfExpr()) {
13424         Diag(Message->getSourceRange().getBegin(),
13425              diag::warn_objc_circular_container)
13426           << ArgRE->getDecl() << StringRef("'super'");
13427       }
13428     }
13429   } else {
13430     Expr *Receiver = Message->getInstanceReceiver()->IgnoreImpCasts();
13431 
13432     if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Receiver)) {
13433       Receiver = OE->getSourceExpr()->IgnoreImpCasts();
13434     }
13435 
13436     if (DeclRefExpr *ReceiverRE = dyn_cast<DeclRefExpr>(Receiver)) {
13437       if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) {
13438         if (ReceiverRE->getDecl() == ArgRE->getDecl()) {
13439           ValueDecl *Decl = ReceiverRE->getDecl();
13440           Diag(Message->getSourceRange().getBegin(),
13441                diag::warn_objc_circular_container)
13442             << Decl << Decl;
13443           if (!ArgRE->isObjCSelfExpr()) {
13444             Diag(Decl->getLocation(),
13445                  diag::note_objc_circular_container_declared_here)
13446               << Decl;
13447           }
13448         }
13449       }
13450     } else if (ObjCIvarRefExpr *IvarRE = dyn_cast<ObjCIvarRefExpr>(Receiver)) {
13451       if (ObjCIvarRefExpr *IvarArgRE = dyn_cast<ObjCIvarRefExpr>(Arg)) {
13452         if (IvarRE->getDecl() == IvarArgRE->getDecl()) {
13453           ObjCIvarDecl *Decl = IvarRE->getDecl();
13454           Diag(Message->getSourceRange().getBegin(),
13455                diag::warn_objc_circular_container)
13456             << Decl << Decl;
13457           Diag(Decl->getLocation(),
13458                diag::note_objc_circular_container_declared_here)
13459             << Decl;
13460         }
13461       }
13462     }
13463   }
13464 }
13465 
13466 /// Check a message send to see if it's likely to cause a retain cycle.
13467 void Sema::checkRetainCycles(ObjCMessageExpr *msg) {
13468   // Only check instance methods whose selector looks like a setter.
13469   if (!msg->isInstanceMessage() || !isSetterLikeSelector(msg->getSelector()))
13470     return;
13471 
13472   // Try to find a variable that the receiver is strongly owned by.
13473   RetainCycleOwner owner;
13474   if (msg->getReceiverKind() == ObjCMessageExpr::Instance) {
13475     if (!findRetainCycleOwner(*this, msg->getInstanceReceiver(), owner))
13476       return;
13477   } else {
13478     assert(msg->getReceiverKind() == ObjCMessageExpr::SuperInstance);
13479     owner.Variable = getCurMethodDecl()->getSelfDecl();
13480     owner.Loc = msg->getSuperLoc();
13481     owner.Range = msg->getSuperLoc();
13482   }
13483 
13484   // Check whether the receiver is captured by any of the arguments.
13485   const ObjCMethodDecl *MD = msg->getMethodDecl();
13486   for (unsigned i = 0, e = msg->getNumArgs(); i != e; ++i) {
13487     if (Expr *capturer = findCapturingExpr(*this, msg->getArg(i), owner)) {
13488       // noescape blocks should not be retained by the method.
13489       if (MD && MD->parameters()[i]->hasAttr<NoEscapeAttr>())
13490         continue;
13491       return diagnoseRetainCycle(*this, capturer, owner);
13492     }
13493   }
13494 }
13495 
13496 /// Check a property assign to see if it's likely to cause a retain cycle.
13497 void Sema::checkRetainCycles(Expr *receiver, Expr *argument) {
13498   RetainCycleOwner owner;
13499   if (!findRetainCycleOwner(*this, receiver, owner))
13500     return;
13501 
13502   if (Expr *capturer = findCapturingExpr(*this, argument, owner))
13503     diagnoseRetainCycle(*this, capturer, owner);
13504 }
13505 
13506 void Sema::checkRetainCycles(VarDecl *Var, Expr *Init) {
13507   RetainCycleOwner Owner;
13508   if (!considerVariable(Var, /*DeclRefExpr=*/nullptr, Owner))
13509     return;
13510 
13511   // Because we don't have an expression for the variable, we have to set the
13512   // location explicitly here.
13513   Owner.Loc = Var->getLocation();
13514   Owner.Range = Var->getSourceRange();
13515 
13516   if (Expr *Capturer = findCapturingExpr(*this, Init, Owner))
13517     diagnoseRetainCycle(*this, Capturer, Owner);
13518 }
13519 
13520 static bool checkUnsafeAssignLiteral(Sema &S, SourceLocation Loc,
13521                                      Expr *RHS, bool isProperty) {
13522   // Check if RHS is an Objective-C object literal, which also can get
13523   // immediately zapped in a weak reference.  Note that we explicitly
13524   // allow ObjCStringLiterals, since those are designed to never really die.
13525   RHS = RHS->IgnoreParenImpCasts();
13526 
13527   // This enum needs to match with the 'select' in
13528   // warn_objc_arc_literal_assign (off-by-1).
13529   Sema::ObjCLiteralKind Kind = S.CheckLiteralKind(RHS);
13530   if (Kind == Sema::LK_String || Kind == Sema::LK_None)
13531     return false;
13532 
13533   S.Diag(Loc, diag::warn_arc_literal_assign)
13534     << (unsigned) Kind
13535     << (isProperty ? 0 : 1)
13536     << RHS->getSourceRange();
13537 
13538   return true;
13539 }
13540 
13541 static bool checkUnsafeAssignObject(Sema &S, SourceLocation Loc,
13542                                     Qualifiers::ObjCLifetime LT,
13543                                     Expr *RHS, bool isProperty) {
13544   // Strip off any implicit cast added to get to the one ARC-specific.
13545   while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
13546     if (cast->getCastKind() == CK_ARCConsumeObject) {
13547       S.Diag(Loc, diag::warn_arc_retained_assign)
13548         << (LT == Qualifiers::OCL_ExplicitNone)
13549         << (isProperty ? 0 : 1)
13550         << RHS->getSourceRange();
13551       return true;
13552     }
13553     RHS = cast->getSubExpr();
13554   }
13555 
13556   if (LT == Qualifiers::OCL_Weak &&
13557       checkUnsafeAssignLiteral(S, Loc, RHS, isProperty))
13558     return true;
13559 
13560   return false;
13561 }
13562 
13563 bool Sema::checkUnsafeAssigns(SourceLocation Loc,
13564                               QualType LHS, Expr *RHS) {
13565   Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime();
13566 
13567   if (LT != Qualifiers::OCL_Weak && LT != Qualifiers::OCL_ExplicitNone)
13568     return false;
13569 
13570   if (checkUnsafeAssignObject(*this, Loc, LT, RHS, false))
13571     return true;
13572 
13573   return false;
13574 }
13575 
13576 void Sema::checkUnsafeExprAssigns(SourceLocation Loc,
13577                               Expr *LHS, Expr *RHS) {
13578   QualType LHSType;
13579   // PropertyRef on LHS type need be directly obtained from
13580   // its declaration as it has a PseudoType.
13581   ObjCPropertyRefExpr *PRE
13582     = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens());
13583   if (PRE && !PRE->isImplicitProperty()) {
13584     const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
13585     if (PD)
13586       LHSType = PD->getType();
13587   }
13588 
13589   if (LHSType.isNull())
13590     LHSType = LHS->getType();
13591 
13592   Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime();
13593 
13594   if (LT == Qualifiers::OCL_Weak) {
13595     if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc))
13596       getCurFunction()->markSafeWeakUse(LHS);
13597   }
13598 
13599   if (checkUnsafeAssigns(Loc, LHSType, RHS))
13600     return;
13601 
13602   // FIXME. Check for other life times.
13603   if (LT != Qualifiers::OCL_None)
13604     return;
13605 
13606   if (PRE) {
13607     if (PRE->isImplicitProperty())
13608       return;
13609     const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
13610     if (!PD)
13611       return;
13612 
13613     unsigned Attributes = PD->getPropertyAttributes();
13614     if (Attributes & ObjCPropertyDecl::OBJC_PR_assign) {
13615       // when 'assign' attribute was not explicitly specified
13616       // by user, ignore it and rely on property type itself
13617       // for lifetime info.
13618       unsigned AsWrittenAttr = PD->getPropertyAttributesAsWritten();
13619       if (!(AsWrittenAttr & ObjCPropertyDecl::OBJC_PR_assign) &&
13620           LHSType->isObjCRetainableType())
13621         return;
13622 
13623       while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
13624         if (cast->getCastKind() == CK_ARCConsumeObject) {
13625           Diag(Loc, diag::warn_arc_retained_property_assign)
13626           << RHS->getSourceRange();
13627           return;
13628         }
13629         RHS = cast->getSubExpr();
13630       }
13631     }
13632     else if (Attributes & ObjCPropertyDecl::OBJC_PR_weak) {
13633       if (checkUnsafeAssignObject(*this, Loc, Qualifiers::OCL_Weak, RHS, true))
13634         return;
13635     }
13636   }
13637 }
13638 
13639 //===--- CHECK: Empty statement body (-Wempty-body) ---------------------===//
13640 
13641 static bool ShouldDiagnoseEmptyStmtBody(const SourceManager &SourceMgr,
13642                                         SourceLocation StmtLoc,
13643                                         const NullStmt *Body) {
13644   // Do not warn if the body is a macro that expands to nothing, e.g:
13645   //
13646   // #define CALL(x)
13647   // if (condition)
13648   //   CALL(0);
13649   if (Body->hasLeadingEmptyMacro())
13650     return false;
13651 
13652   // Get line numbers of statement and body.
13653   bool StmtLineInvalid;
13654   unsigned StmtLine = SourceMgr.getPresumedLineNumber(StmtLoc,
13655                                                       &StmtLineInvalid);
13656   if (StmtLineInvalid)
13657     return false;
13658 
13659   bool BodyLineInvalid;
13660   unsigned BodyLine = SourceMgr.getSpellingLineNumber(Body->getSemiLoc(),
13661                                                       &BodyLineInvalid);
13662   if (BodyLineInvalid)
13663     return false;
13664 
13665   // Warn if null statement and body are on the same line.
13666   if (StmtLine != BodyLine)
13667     return false;
13668 
13669   return true;
13670 }
13671 
13672 void Sema::DiagnoseEmptyStmtBody(SourceLocation StmtLoc,
13673                                  const Stmt *Body,
13674                                  unsigned DiagID) {
13675   // Since this is a syntactic check, don't emit diagnostic for template
13676   // instantiations, this just adds noise.
13677   if (CurrentInstantiationScope)
13678     return;
13679 
13680   // The body should be a null statement.
13681   const NullStmt *NBody = dyn_cast<NullStmt>(Body);
13682   if (!NBody)
13683     return;
13684 
13685   // Do the usual checks.
13686   if (!ShouldDiagnoseEmptyStmtBody(SourceMgr, StmtLoc, NBody))
13687     return;
13688 
13689   Diag(NBody->getSemiLoc(), DiagID);
13690   Diag(NBody->getSemiLoc(), diag::note_empty_body_on_separate_line);
13691 }
13692 
13693 void Sema::DiagnoseEmptyLoopBody(const Stmt *S,
13694                                  const Stmt *PossibleBody) {
13695   assert(!CurrentInstantiationScope); // Ensured by caller
13696 
13697   SourceLocation StmtLoc;
13698   const Stmt *Body;
13699   unsigned DiagID;
13700   if (const ForStmt *FS = dyn_cast<ForStmt>(S)) {
13701     StmtLoc = FS->getRParenLoc();
13702     Body = FS->getBody();
13703     DiagID = diag::warn_empty_for_body;
13704   } else if (const WhileStmt *WS = dyn_cast<WhileStmt>(S)) {
13705     StmtLoc = WS->getCond()->getSourceRange().getEnd();
13706     Body = WS->getBody();
13707     DiagID = diag::warn_empty_while_body;
13708   } else
13709     return; // Neither `for' nor `while'.
13710 
13711   // The body should be a null statement.
13712   const NullStmt *NBody = dyn_cast<NullStmt>(Body);
13713   if (!NBody)
13714     return;
13715 
13716   // Skip expensive checks if diagnostic is disabled.
13717   if (Diags.isIgnored(DiagID, NBody->getSemiLoc()))
13718     return;
13719 
13720   // Do the usual checks.
13721   if (!ShouldDiagnoseEmptyStmtBody(SourceMgr, StmtLoc, NBody))
13722     return;
13723 
13724   // `for(...);' and `while(...);' are popular idioms, so in order to keep
13725   // noise level low, emit diagnostics only if for/while is followed by a
13726   // CompoundStmt, e.g.:
13727   //    for (int i = 0; i < n; i++);
13728   //    {
13729   //      a(i);
13730   //    }
13731   // or if for/while is followed by a statement with more indentation
13732   // than for/while itself:
13733   //    for (int i = 0; i < n; i++);
13734   //      a(i);
13735   bool ProbableTypo = isa<CompoundStmt>(PossibleBody);
13736   if (!ProbableTypo) {
13737     bool BodyColInvalid;
13738     unsigned BodyCol = SourceMgr.getPresumedColumnNumber(
13739         PossibleBody->getBeginLoc(), &BodyColInvalid);
13740     if (BodyColInvalid)
13741       return;
13742 
13743     bool StmtColInvalid;
13744     unsigned StmtCol =
13745         SourceMgr.getPresumedColumnNumber(S->getBeginLoc(), &StmtColInvalid);
13746     if (StmtColInvalid)
13747       return;
13748 
13749     if (BodyCol > StmtCol)
13750       ProbableTypo = true;
13751   }
13752 
13753   if (ProbableTypo) {
13754     Diag(NBody->getSemiLoc(), DiagID);
13755     Diag(NBody->getSemiLoc(), diag::note_empty_body_on_separate_line);
13756   }
13757 }
13758 
13759 //===--- CHECK: Warn on self move with std::move. -------------------------===//
13760 
13761 /// DiagnoseSelfMove - Emits a warning if a value is moved to itself.
13762 void Sema::DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr,
13763                              SourceLocation OpLoc) {
13764   if (Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess, OpLoc))
13765     return;
13766 
13767   if (inTemplateInstantiation())
13768     return;
13769 
13770   // Strip parens and casts away.
13771   LHSExpr = LHSExpr->IgnoreParenImpCasts();
13772   RHSExpr = RHSExpr->IgnoreParenImpCasts();
13773 
13774   // Check for a call expression
13775   const CallExpr *CE = dyn_cast<CallExpr>(RHSExpr);
13776   if (!CE || CE->getNumArgs() != 1)
13777     return;
13778 
13779   // Check for a call to std::move
13780   if (!CE->isCallToStdMove())
13781     return;
13782 
13783   // Get argument from std::move
13784   RHSExpr = CE->getArg(0);
13785 
13786   const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
13787   const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
13788 
13789   // Two DeclRefExpr's, check that the decls are the same.
13790   if (LHSDeclRef && RHSDeclRef) {
13791     if (!LHSDeclRef->getDecl() || !RHSDeclRef->getDecl())
13792       return;
13793     if (LHSDeclRef->getDecl()->getCanonicalDecl() !=
13794         RHSDeclRef->getDecl()->getCanonicalDecl())
13795       return;
13796 
13797     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
13798                                         << LHSExpr->getSourceRange()
13799                                         << RHSExpr->getSourceRange();
13800     return;
13801   }
13802 
13803   // Member variables require a different approach to check for self moves.
13804   // MemberExpr's are the same if every nested MemberExpr refers to the same
13805   // Decl and that the base Expr's are DeclRefExpr's with the same Decl or
13806   // the base Expr's are CXXThisExpr's.
13807   const Expr *LHSBase = LHSExpr;
13808   const Expr *RHSBase = RHSExpr;
13809   const MemberExpr *LHSME = dyn_cast<MemberExpr>(LHSExpr);
13810   const MemberExpr *RHSME = dyn_cast<MemberExpr>(RHSExpr);
13811   if (!LHSME || !RHSME)
13812     return;
13813 
13814   while (LHSME && RHSME) {
13815     if (LHSME->getMemberDecl()->getCanonicalDecl() !=
13816         RHSME->getMemberDecl()->getCanonicalDecl())
13817       return;
13818 
13819     LHSBase = LHSME->getBase();
13820     RHSBase = RHSME->getBase();
13821     LHSME = dyn_cast<MemberExpr>(LHSBase);
13822     RHSME = dyn_cast<MemberExpr>(RHSBase);
13823   }
13824 
13825   LHSDeclRef = dyn_cast<DeclRefExpr>(LHSBase);
13826   RHSDeclRef = dyn_cast<DeclRefExpr>(RHSBase);
13827   if (LHSDeclRef && RHSDeclRef) {
13828     if (!LHSDeclRef->getDecl() || !RHSDeclRef->getDecl())
13829       return;
13830     if (LHSDeclRef->getDecl()->getCanonicalDecl() !=
13831         RHSDeclRef->getDecl()->getCanonicalDecl())
13832       return;
13833 
13834     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
13835                                         << LHSExpr->getSourceRange()
13836                                         << RHSExpr->getSourceRange();
13837     return;
13838   }
13839 
13840   if (isa<CXXThisExpr>(LHSBase) && isa<CXXThisExpr>(RHSBase))
13841     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
13842                                         << LHSExpr->getSourceRange()
13843                                         << RHSExpr->getSourceRange();
13844 }
13845 
13846 //===--- Layout compatibility ----------------------------------------------//
13847 
13848 static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2);
13849 
13850 /// Check if two enumeration types are layout-compatible.
13851 static bool isLayoutCompatible(ASTContext &C, EnumDecl *ED1, EnumDecl *ED2) {
13852   // C++11 [dcl.enum] p8:
13853   // Two enumeration types are layout-compatible if they have the same
13854   // underlying type.
13855   return ED1->isComplete() && ED2->isComplete() &&
13856          C.hasSameType(ED1->getIntegerType(), ED2->getIntegerType());
13857 }
13858 
13859 /// Check if two fields are layout-compatible.
13860 static bool isLayoutCompatible(ASTContext &C, FieldDecl *Field1,
13861                                FieldDecl *Field2) {
13862   if (!isLayoutCompatible(C, Field1->getType(), Field2->getType()))
13863     return false;
13864 
13865   if (Field1->isBitField() != Field2->isBitField())
13866     return false;
13867 
13868   if (Field1->isBitField()) {
13869     // Make sure that the bit-fields are the same length.
13870     unsigned Bits1 = Field1->getBitWidthValue(C);
13871     unsigned Bits2 = Field2->getBitWidthValue(C);
13872 
13873     if (Bits1 != Bits2)
13874       return false;
13875   }
13876 
13877   return true;
13878 }
13879 
13880 /// Check if two standard-layout structs are layout-compatible.
13881 /// (C++11 [class.mem] p17)
13882 static bool isLayoutCompatibleStruct(ASTContext &C, RecordDecl *RD1,
13883                                      RecordDecl *RD2) {
13884   // If both records are C++ classes, check that base classes match.
13885   if (const CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(RD1)) {
13886     // If one of records is a CXXRecordDecl we are in C++ mode,
13887     // thus the other one is a CXXRecordDecl, too.
13888     const CXXRecordDecl *D2CXX = cast<CXXRecordDecl>(RD2);
13889     // Check number of base classes.
13890     if (D1CXX->getNumBases() != D2CXX->getNumBases())
13891       return false;
13892 
13893     // Check the base classes.
13894     for (CXXRecordDecl::base_class_const_iterator
13895                Base1 = D1CXX->bases_begin(),
13896            BaseEnd1 = D1CXX->bases_end(),
13897               Base2 = D2CXX->bases_begin();
13898          Base1 != BaseEnd1;
13899          ++Base1, ++Base2) {
13900       if (!isLayoutCompatible(C, Base1->getType(), Base2->getType()))
13901         return false;
13902     }
13903   } else if (const CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(RD2)) {
13904     // If only RD2 is a C++ class, it should have zero base classes.
13905     if (D2CXX->getNumBases() > 0)
13906       return false;
13907   }
13908 
13909   // Check the fields.
13910   RecordDecl::field_iterator Field2 = RD2->field_begin(),
13911                              Field2End = RD2->field_end(),
13912                              Field1 = RD1->field_begin(),
13913                              Field1End = RD1->field_end();
13914   for ( ; Field1 != Field1End && Field2 != Field2End; ++Field1, ++Field2) {
13915     if (!isLayoutCompatible(C, *Field1, *Field2))
13916       return false;
13917   }
13918   if (Field1 != Field1End || Field2 != Field2End)
13919     return false;
13920 
13921   return true;
13922 }
13923 
13924 /// Check if two standard-layout unions are layout-compatible.
13925 /// (C++11 [class.mem] p18)
13926 static bool isLayoutCompatibleUnion(ASTContext &C, RecordDecl *RD1,
13927                                     RecordDecl *RD2) {
13928   llvm::SmallPtrSet<FieldDecl *, 8> UnmatchedFields;
13929   for (auto *Field2 : RD2->fields())
13930     UnmatchedFields.insert(Field2);
13931 
13932   for (auto *Field1 : RD1->fields()) {
13933     llvm::SmallPtrSet<FieldDecl *, 8>::iterator
13934         I = UnmatchedFields.begin(),
13935         E = UnmatchedFields.end();
13936 
13937     for ( ; I != E; ++I) {
13938       if (isLayoutCompatible(C, Field1, *I)) {
13939         bool Result = UnmatchedFields.erase(*I);
13940         (void) Result;
13941         assert(Result);
13942         break;
13943       }
13944     }
13945     if (I == E)
13946       return false;
13947   }
13948 
13949   return UnmatchedFields.empty();
13950 }
13951 
13952 static bool isLayoutCompatible(ASTContext &C, RecordDecl *RD1,
13953                                RecordDecl *RD2) {
13954   if (RD1->isUnion() != RD2->isUnion())
13955     return false;
13956 
13957   if (RD1->isUnion())
13958     return isLayoutCompatibleUnion(C, RD1, RD2);
13959   else
13960     return isLayoutCompatibleStruct(C, RD1, RD2);
13961 }
13962 
13963 /// Check if two types are layout-compatible in C++11 sense.
13964 static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2) {
13965   if (T1.isNull() || T2.isNull())
13966     return false;
13967 
13968   // C++11 [basic.types] p11:
13969   // If two types T1 and T2 are the same type, then T1 and T2 are
13970   // layout-compatible types.
13971   if (C.hasSameType(T1, T2))
13972     return true;
13973 
13974   T1 = T1.getCanonicalType().getUnqualifiedType();
13975   T2 = T2.getCanonicalType().getUnqualifiedType();
13976 
13977   const Type::TypeClass TC1 = T1->getTypeClass();
13978   const Type::TypeClass TC2 = T2->getTypeClass();
13979 
13980   if (TC1 != TC2)
13981     return false;
13982 
13983   if (TC1 == Type::Enum) {
13984     return isLayoutCompatible(C,
13985                               cast<EnumType>(T1)->getDecl(),
13986                               cast<EnumType>(T2)->getDecl());
13987   } else if (TC1 == Type::Record) {
13988     if (!T1->isStandardLayoutType() || !T2->isStandardLayoutType())
13989       return false;
13990 
13991     return isLayoutCompatible(C,
13992                               cast<RecordType>(T1)->getDecl(),
13993                               cast<RecordType>(T2)->getDecl());
13994   }
13995 
13996   return false;
13997 }
13998 
13999 //===--- CHECK: pointer_with_type_tag attribute: datatypes should match ----//
14000 
14001 /// Given a type tag expression find the type tag itself.
14002 ///
14003 /// \param TypeExpr Type tag expression, as it appears in user's code.
14004 ///
14005 /// \param VD Declaration of an identifier that appears in a type tag.
14006 ///
14007 /// \param MagicValue Type tag magic value.
14008 ///
14009 /// \param isConstantEvaluated wether the evalaution should be performed in
14010 
14011 /// constant context.
14012 static bool FindTypeTagExpr(const Expr *TypeExpr, const ASTContext &Ctx,
14013                             const ValueDecl **VD, uint64_t *MagicValue,
14014                             bool isConstantEvaluated) {
14015   while(true) {
14016     if (!TypeExpr)
14017       return false;
14018 
14019     TypeExpr = TypeExpr->IgnoreParenImpCasts()->IgnoreParenCasts();
14020 
14021     switch (TypeExpr->getStmtClass()) {
14022     case Stmt::UnaryOperatorClass: {
14023       const UnaryOperator *UO = cast<UnaryOperator>(TypeExpr);
14024       if (UO->getOpcode() == UO_AddrOf || UO->getOpcode() == UO_Deref) {
14025         TypeExpr = UO->getSubExpr();
14026         continue;
14027       }
14028       return false;
14029     }
14030 
14031     case Stmt::DeclRefExprClass: {
14032       const DeclRefExpr *DRE = cast<DeclRefExpr>(TypeExpr);
14033       *VD = DRE->getDecl();
14034       return true;
14035     }
14036 
14037     case Stmt::IntegerLiteralClass: {
14038       const IntegerLiteral *IL = cast<IntegerLiteral>(TypeExpr);
14039       llvm::APInt MagicValueAPInt = IL->getValue();
14040       if (MagicValueAPInt.getActiveBits() <= 64) {
14041         *MagicValue = MagicValueAPInt.getZExtValue();
14042         return true;
14043       } else
14044         return false;
14045     }
14046 
14047     case Stmt::BinaryConditionalOperatorClass:
14048     case Stmt::ConditionalOperatorClass: {
14049       const AbstractConditionalOperator *ACO =
14050           cast<AbstractConditionalOperator>(TypeExpr);
14051       bool Result;
14052       if (ACO->getCond()->EvaluateAsBooleanCondition(Result, Ctx,
14053                                                      isConstantEvaluated)) {
14054         if (Result)
14055           TypeExpr = ACO->getTrueExpr();
14056         else
14057           TypeExpr = ACO->getFalseExpr();
14058         continue;
14059       }
14060       return false;
14061     }
14062 
14063     case Stmt::BinaryOperatorClass: {
14064       const BinaryOperator *BO = cast<BinaryOperator>(TypeExpr);
14065       if (BO->getOpcode() == BO_Comma) {
14066         TypeExpr = BO->getRHS();
14067         continue;
14068       }
14069       return false;
14070     }
14071 
14072     default:
14073       return false;
14074     }
14075   }
14076 }
14077 
14078 /// Retrieve the C type corresponding to type tag TypeExpr.
14079 ///
14080 /// \param TypeExpr Expression that specifies a type tag.
14081 ///
14082 /// \param MagicValues Registered magic values.
14083 ///
14084 /// \param FoundWrongKind Set to true if a type tag was found, but of a wrong
14085 ///        kind.
14086 ///
14087 /// \param TypeInfo Information about the corresponding C type.
14088 ///
14089 /// \param isConstantEvaluated wether the evalaution should be performed in
14090 /// constant context.
14091 ///
14092 /// \returns true if the corresponding C type was found.
14093 static bool GetMatchingCType(
14094     const IdentifierInfo *ArgumentKind, const Expr *TypeExpr,
14095     const ASTContext &Ctx,
14096     const llvm::DenseMap<Sema::TypeTagMagicValue, Sema::TypeTagData>
14097         *MagicValues,
14098     bool &FoundWrongKind, Sema::TypeTagData &TypeInfo,
14099     bool isConstantEvaluated) {
14100   FoundWrongKind = false;
14101 
14102   // Variable declaration that has type_tag_for_datatype attribute.
14103   const ValueDecl *VD = nullptr;
14104 
14105   uint64_t MagicValue;
14106 
14107   if (!FindTypeTagExpr(TypeExpr, Ctx, &VD, &MagicValue, isConstantEvaluated))
14108     return false;
14109 
14110   if (VD) {
14111     if (TypeTagForDatatypeAttr *I = VD->getAttr<TypeTagForDatatypeAttr>()) {
14112       if (I->getArgumentKind() != ArgumentKind) {
14113         FoundWrongKind = true;
14114         return false;
14115       }
14116       TypeInfo.Type = I->getMatchingCType();
14117       TypeInfo.LayoutCompatible = I->getLayoutCompatible();
14118       TypeInfo.MustBeNull = I->getMustBeNull();
14119       return true;
14120     }
14121     return false;
14122   }
14123 
14124   if (!MagicValues)
14125     return false;
14126 
14127   llvm::DenseMap<Sema::TypeTagMagicValue,
14128                  Sema::TypeTagData>::const_iterator I =
14129       MagicValues->find(std::make_pair(ArgumentKind, MagicValue));
14130   if (I == MagicValues->end())
14131     return false;
14132 
14133   TypeInfo = I->second;
14134   return true;
14135 }
14136 
14137 void Sema::RegisterTypeTagForDatatype(const IdentifierInfo *ArgumentKind,
14138                                       uint64_t MagicValue, QualType Type,
14139                                       bool LayoutCompatible,
14140                                       bool MustBeNull) {
14141   if (!TypeTagForDatatypeMagicValues)
14142     TypeTagForDatatypeMagicValues.reset(
14143         new llvm::DenseMap<TypeTagMagicValue, TypeTagData>);
14144 
14145   TypeTagMagicValue Magic(ArgumentKind, MagicValue);
14146   (*TypeTagForDatatypeMagicValues)[Magic] =
14147       TypeTagData(Type, LayoutCompatible, MustBeNull);
14148 }
14149 
14150 static bool IsSameCharType(QualType T1, QualType T2) {
14151   const BuiltinType *BT1 = T1->getAs<BuiltinType>();
14152   if (!BT1)
14153     return false;
14154 
14155   const BuiltinType *BT2 = T2->getAs<BuiltinType>();
14156   if (!BT2)
14157     return false;
14158 
14159   BuiltinType::Kind T1Kind = BT1->getKind();
14160   BuiltinType::Kind T2Kind = BT2->getKind();
14161 
14162   return (T1Kind == BuiltinType::SChar  && T2Kind == BuiltinType::Char_S) ||
14163          (T1Kind == BuiltinType::UChar  && T2Kind == BuiltinType::Char_U) ||
14164          (T1Kind == BuiltinType::Char_U && T2Kind == BuiltinType::UChar) ||
14165          (T1Kind == BuiltinType::Char_S && T2Kind == BuiltinType::SChar);
14166 }
14167 
14168 void Sema::CheckArgumentWithTypeTag(const ArgumentWithTypeTagAttr *Attr,
14169                                     const ArrayRef<const Expr *> ExprArgs,
14170                                     SourceLocation CallSiteLoc) {
14171   const IdentifierInfo *ArgumentKind = Attr->getArgumentKind();
14172   bool IsPointerAttr = Attr->getIsPointer();
14173 
14174   // Retrieve the argument representing the 'type_tag'.
14175   unsigned TypeTagIdxAST = Attr->getTypeTagIdx().getASTIndex();
14176   if (TypeTagIdxAST >= ExprArgs.size()) {
14177     Diag(CallSiteLoc, diag::err_tag_index_out_of_range)
14178         << 0 << Attr->getTypeTagIdx().getSourceIndex();
14179     return;
14180   }
14181   const Expr *TypeTagExpr = ExprArgs[TypeTagIdxAST];
14182   bool FoundWrongKind;
14183   TypeTagData TypeInfo;
14184   if (!GetMatchingCType(ArgumentKind, TypeTagExpr, Context,
14185                         TypeTagForDatatypeMagicValues.get(), FoundWrongKind,
14186                         TypeInfo, isConstantEvaluated())) {
14187     if (FoundWrongKind)
14188       Diag(TypeTagExpr->getExprLoc(),
14189            diag::warn_type_tag_for_datatype_wrong_kind)
14190         << TypeTagExpr->getSourceRange();
14191     return;
14192   }
14193 
14194   // Retrieve the argument representing the 'arg_idx'.
14195   unsigned ArgumentIdxAST = Attr->getArgumentIdx().getASTIndex();
14196   if (ArgumentIdxAST >= ExprArgs.size()) {
14197     Diag(CallSiteLoc, diag::err_tag_index_out_of_range)
14198         << 1 << Attr->getArgumentIdx().getSourceIndex();
14199     return;
14200   }
14201   const Expr *ArgumentExpr = ExprArgs[ArgumentIdxAST];
14202   if (IsPointerAttr) {
14203     // Skip implicit cast of pointer to `void *' (as a function argument).
14204     if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgumentExpr))
14205       if (ICE->getType()->isVoidPointerType() &&
14206           ICE->getCastKind() == CK_BitCast)
14207         ArgumentExpr = ICE->getSubExpr();
14208   }
14209   QualType ArgumentType = ArgumentExpr->getType();
14210 
14211   // Passing a `void*' pointer shouldn't trigger a warning.
14212   if (IsPointerAttr && ArgumentType->isVoidPointerType())
14213     return;
14214 
14215   if (TypeInfo.MustBeNull) {
14216     // Type tag with matching void type requires a null pointer.
14217     if (!ArgumentExpr->isNullPointerConstant(Context,
14218                                              Expr::NPC_ValueDependentIsNotNull)) {
14219       Diag(ArgumentExpr->getExprLoc(),
14220            diag::warn_type_safety_null_pointer_required)
14221           << ArgumentKind->getName()
14222           << ArgumentExpr->getSourceRange()
14223           << TypeTagExpr->getSourceRange();
14224     }
14225     return;
14226   }
14227 
14228   QualType RequiredType = TypeInfo.Type;
14229   if (IsPointerAttr)
14230     RequiredType = Context.getPointerType(RequiredType);
14231 
14232   bool mismatch = false;
14233   if (!TypeInfo.LayoutCompatible) {
14234     mismatch = !Context.hasSameType(ArgumentType, RequiredType);
14235 
14236     // C++11 [basic.fundamental] p1:
14237     // Plain char, signed char, and unsigned char are three distinct types.
14238     //
14239     // But we treat plain `char' as equivalent to `signed char' or `unsigned
14240     // char' depending on the current char signedness mode.
14241     if (mismatch)
14242       if ((IsPointerAttr && IsSameCharType(ArgumentType->getPointeeType(),
14243                                            RequiredType->getPointeeType())) ||
14244           (!IsPointerAttr && IsSameCharType(ArgumentType, RequiredType)))
14245         mismatch = false;
14246   } else
14247     if (IsPointerAttr)
14248       mismatch = !isLayoutCompatible(Context,
14249                                      ArgumentType->getPointeeType(),
14250                                      RequiredType->getPointeeType());
14251     else
14252       mismatch = !isLayoutCompatible(Context, ArgumentType, RequiredType);
14253 
14254   if (mismatch)
14255     Diag(ArgumentExpr->getExprLoc(), diag::warn_type_safety_type_mismatch)
14256         << ArgumentType << ArgumentKind
14257         << TypeInfo.LayoutCompatible << RequiredType
14258         << ArgumentExpr->getSourceRange()
14259         << TypeTagExpr->getSourceRange();
14260 }
14261 
14262 void Sema::AddPotentialMisalignedMembers(Expr *E, RecordDecl *RD, ValueDecl *MD,
14263                                          CharUnits Alignment) {
14264   MisalignedMembers.emplace_back(E, RD, MD, Alignment);
14265 }
14266 
14267 void Sema::DiagnoseMisalignedMembers() {
14268   for (MisalignedMember &m : MisalignedMembers) {
14269     const NamedDecl *ND = m.RD;
14270     if (ND->getName().empty()) {
14271       if (const TypedefNameDecl *TD = m.RD->getTypedefNameForAnonDecl())
14272         ND = TD;
14273     }
14274     Diag(m.E->getBeginLoc(), diag::warn_taking_address_of_packed_member)
14275         << m.MD << ND << m.E->getSourceRange();
14276   }
14277   MisalignedMembers.clear();
14278 }
14279 
14280 void Sema::DiscardMisalignedMemberAddress(const Type *T, Expr *E) {
14281   E = E->IgnoreParens();
14282   if (!T->isPointerType() && !T->isIntegerType())
14283     return;
14284   if (isa<UnaryOperator>(E) &&
14285       cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf) {
14286     auto *Op = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens();
14287     if (isa<MemberExpr>(Op)) {
14288       auto MA = llvm::find(MisalignedMembers, MisalignedMember(Op));
14289       if (MA != MisalignedMembers.end() &&
14290           (T->isIntegerType() ||
14291            (T->isPointerType() && (T->getPointeeType()->isIncompleteType() ||
14292                                    Context.getTypeAlignInChars(
14293                                        T->getPointeeType()) <= MA->Alignment))))
14294         MisalignedMembers.erase(MA);
14295     }
14296   }
14297 }
14298 
14299 void Sema::RefersToMemberWithReducedAlignment(
14300     Expr *E,
14301     llvm::function_ref<void(Expr *, RecordDecl *, FieldDecl *, CharUnits)>
14302         Action) {
14303   const auto *ME = dyn_cast<MemberExpr>(E);
14304   if (!ME)
14305     return;
14306 
14307   // No need to check expressions with an __unaligned-qualified type.
14308   if (E->getType().getQualifiers().hasUnaligned())
14309     return;
14310 
14311   // For a chain of MemberExpr like "a.b.c.d" this list
14312   // will keep FieldDecl's like [d, c, b].
14313   SmallVector<FieldDecl *, 4> ReverseMemberChain;
14314   const MemberExpr *TopME = nullptr;
14315   bool AnyIsPacked = false;
14316   do {
14317     QualType BaseType = ME->getBase()->getType();
14318     if (ME->isArrow())
14319       BaseType = BaseType->getPointeeType();
14320     RecordDecl *RD = BaseType->getAs<RecordType>()->getDecl();
14321     if (RD->isInvalidDecl())
14322       return;
14323 
14324     ValueDecl *MD = ME->getMemberDecl();
14325     auto *FD = dyn_cast<FieldDecl>(MD);
14326     // We do not care about non-data members.
14327     if (!FD || FD->isInvalidDecl())
14328       return;
14329 
14330     AnyIsPacked =
14331         AnyIsPacked || (RD->hasAttr<PackedAttr>() || MD->hasAttr<PackedAttr>());
14332     ReverseMemberChain.push_back(FD);
14333 
14334     TopME = ME;
14335     ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParens());
14336   } while (ME);
14337   assert(TopME && "We did not compute a topmost MemberExpr!");
14338 
14339   // Not the scope of this diagnostic.
14340   if (!AnyIsPacked)
14341     return;
14342 
14343   const Expr *TopBase = TopME->getBase()->IgnoreParenImpCasts();
14344   const auto *DRE = dyn_cast<DeclRefExpr>(TopBase);
14345   // TODO: The innermost base of the member expression may be too complicated.
14346   // For now, just disregard these cases. This is left for future
14347   // improvement.
14348   if (!DRE && !isa<CXXThisExpr>(TopBase))
14349       return;
14350 
14351   // Alignment expected by the whole expression.
14352   CharUnits ExpectedAlignment = Context.getTypeAlignInChars(E->getType());
14353 
14354   // No need to do anything else with this case.
14355   if (ExpectedAlignment.isOne())
14356     return;
14357 
14358   // Synthesize offset of the whole access.
14359   CharUnits Offset;
14360   for (auto I = ReverseMemberChain.rbegin(); I != ReverseMemberChain.rend();
14361        I++) {
14362     Offset += Context.toCharUnitsFromBits(Context.getFieldOffset(*I));
14363   }
14364 
14365   // Compute the CompleteObjectAlignment as the alignment of the whole chain.
14366   CharUnits CompleteObjectAlignment = Context.getTypeAlignInChars(
14367       ReverseMemberChain.back()->getParent()->getTypeForDecl());
14368 
14369   // The base expression of the innermost MemberExpr may give
14370   // stronger guarantees than the class containing the member.
14371   if (DRE && !TopME->isArrow()) {
14372     const ValueDecl *VD = DRE->getDecl();
14373     if (!VD->getType()->isReferenceType())
14374       CompleteObjectAlignment =
14375           std::max(CompleteObjectAlignment, Context.getDeclAlign(VD));
14376   }
14377 
14378   // Check if the synthesized offset fulfills the alignment.
14379   if (Offset % ExpectedAlignment != 0 ||
14380       // It may fulfill the offset it but the effective alignment may still be
14381       // lower than the expected expression alignment.
14382       CompleteObjectAlignment < ExpectedAlignment) {
14383     // If this happens, we want to determine a sensible culprit of this.
14384     // Intuitively, watching the chain of member expressions from right to
14385     // left, we start with the required alignment (as required by the field
14386     // type) but some packed attribute in that chain has reduced the alignment.
14387     // It may happen that another packed structure increases it again. But if
14388     // we are here such increase has not been enough. So pointing the first
14389     // FieldDecl that either is packed or else its RecordDecl is,
14390     // seems reasonable.
14391     FieldDecl *FD = nullptr;
14392     CharUnits Alignment;
14393     for (FieldDecl *FDI : ReverseMemberChain) {
14394       if (FDI->hasAttr<PackedAttr>() ||
14395           FDI->getParent()->hasAttr<PackedAttr>()) {
14396         FD = FDI;
14397         Alignment = std::min(
14398             Context.getTypeAlignInChars(FD->getType()),
14399             Context.getTypeAlignInChars(FD->getParent()->getTypeForDecl()));
14400         break;
14401       }
14402     }
14403     assert(FD && "We did not find a packed FieldDecl!");
14404     Action(E, FD->getParent(), FD, Alignment);
14405   }
14406 }
14407 
14408 void Sema::CheckAddressOfPackedMember(Expr *rhs) {
14409   using namespace std::placeholders;
14410 
14411   RefersToMemberWithReducedAlignment(
14412       rhs, std::bind(&Sema::AddPotentialMisalignedMembers, std::ref(*this), _1,
14413                      _2, _3, _4));
14414 }
14415