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         const analyze_printf::ArgType::MatchKind ImplicitMatch =
8124             AT.matchesType(S.Context, ExprTy);
8125         if (ImplicitMatch == analyze_printf::ArgType::Match)
8126           return true;
8127         if (ImplicitMatch == analyze_printf::ArgType::NoMatchPedantic)
8128           Pedantic = true;
8129       }
8130     }
8131   } else if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E)) {
8132     // Special case for 'a', which has type 'int' in C.
8133     // Note, however, that we do /not/ want to treat multibyte constants like
8134     // 'MooV' as characters! This form is deprecated but still exists.
8135     if (ExprTy == S.Context.IntTy)
8136       if (llvm::isUIntN(S.Context.getCharWidth(), CL->getValue()))
8137         ExprTy = S.Context.CharTy;
8138   }
8139 
8140   // Look through enums to their underlying type.
8141   bool IsEnum = false;
8142   if (auto EnumTy = ExprTy->getAs<EnumType>()) {
8143     ExprTy = EnumTy->getDecl()->getIntegerType();
8144     IsEnum = true;
8145   }
8146 
8147   // %C in an Objective-C context prints a unichar, not a wchar_t.
8148   // If the argument is an integer of some kind, believe the %C and suggest
8149   // a cast instead of changing the conversion specifier.
8150   QualType IntendedTy = ExprTy;
8151   if (isObjCContext() &&
8152       FS.getConversionSpecifier().getKind() == ConversionSpecifier::CArg) {
8153     if (ExprTy->isIntegralOrUnscopedEnumerationType() &&
8154         !ExprTy->isCharType()) {
8155       // 'unichar' is defined as a typedef of unsigned short, but we should
8156       // prefer using the typedef if it is visible.
8157       IntendedTy = S.Context.UnsignedShortTy;
8158 
8159       // While we are here, check if the value is an IntegerLiteral that happens
8160       // to be within the valid range.
8161       if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) {
8162         const llvm::APInt &V = IL->getValue();
8163         if (V.getActiveBits() <= S.Context.getTypeSize(IntendedTy))
8164           return true;
8165       }
8166 
8167       LookupResult Result(S, &S.Context.Idents.get("unichar"), E->getBeginLoc(),
8168                           Sema::LookupOrdinaryName);
8169       if (S.LookupName(Result, S.getCurScope())) {
8170         NamedDecl *ND = Result.getFoundDecl();
8171         if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(ND))
8172           if (TD->getUnderlyingType() == IntendedTy)
8173             IntendedTy = S.Context.getTypedefType(TD);
8174       }
8175     }
8176   }
8177 
8178   // Special-case some of Darwin's platform-independence types by suggesting
8179   // casts to primitive types that are known to be large enough.
8180   bool ShouldNotPrintDirectly = false; StringRef CastTyName;
8181   if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
8182     QualType CastTy;
8183     std::tie(CastTy, CastTyName) = shouldNotPrintDirectly(S.Context, IntendedTy, E);
8184     if (!CastTy.isNull()) {
8185       // %zi/%zu and %td/%tu are OK to use for NSInteger/NSUInteger of type int
8186       // (long in ASTContext). Only complain to pedants.
8187       if ((CastTyName == "NSInteger" || CastTyName == "NSUInteger") &&
8188           (AT.isSizeT() || AT.isPtrdiffT()) &&
8189           AT.matchesType(S.Context, CastTy))
8190         Pedantic = true;
8191       IntendedTy = CastTy;
8192       ShouldNotPrintDirectly = true;
8193     }
8194   }
8195 
8196   // We may be able to offer a FixItHint if it is a supported type.
8197   PrintfSpecifier fixedFS = FS;
8198   bool Success =
8199       fixedFS.fixType(IntendedTy, S.getLangOpts(), S.Context, isObjCContext());
8200 
8201   if (Success) {
8202     // Get the fix string from the fixed format specifier
8203     SmallString<16> buf;
8204     llvm::raw_svector_ostream os(buf);
8205     fixedFS.toString(os);
8206 
8207     CharSourceRange SpecRange = getSpecifierRange(StartSpecifier, SpecifierLen);
8208 
8209     if (IntendedTy == ExprTy && !ShouldNotPrintDirectly) {
8210       unsigned Diag =
8211           Pedantic
8212               ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8213               : diag::warn_format_conversion_argument_type_mismatch;
8214       // In this case, the specifier is wrong and should be changed to match
8215       // the argument.
8216       EmitFormatDiagnostic(S.PDiag(Diag)
8217                                << AT.getRepresentativeTypeName(S.Context)
8218                                << IntendedTy << IsEnum << E->getSourceRange(),
8219                            E->getBeginLoc(),
8220                            /*IsStringLocation*/ false, SpecRange,
8221                            FixItHint::CreateReplacement(SpecRange, os.str()));
8222     } else {
8223       // The canonical type for formatting this value is different from the
8224       // actual type of the expression. (This occurs, for example, with Darwin's
8225       // NSInteger on 32-bit platforms, where it is typedef'd as 'int', but
8226       // should be printed as 'long' for 64-bit compatibility.)
8227       // Rather than emitting a normal format/argument mismatch, we want to
8228       // add a cast to the recommended type (and correct the format string
8229       // if necessary).
8230       SmallString<16> CastBuf;
8231       llvm::raw_svector_ostream CastFix(CastBuf);
8232       CastFix << "(";
8233       IntendedTy.print(CastFix, S.Context.getPrintingPolicy());
8234       CastFix << ")";
8235 
8236       SmallVector<FixItHint,4> Hints;
8237       if (!AT.matchesType(S.Context, IntendedTy) || ShouldNotPrintDirectly)
8238         Hints.push_back(FixItHint::CreateReplacement(SpecRange, os.str()));
8239 
8240       if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) {
8241         // If there's already a cast present, just replace it.
8242         SourceRange CastRange(CCast->getLParenLoc(), CCast->getRParenLoc());
8243         Hints.push_back(FixItHint::CreateReplacement(CastRange, CastFix.str()));
8244 
8245       } else if (!requiresParensToAddCast(E)) {
8246         // If the expression has high enough precedence,
8247         // just write the C-style cast.
8248         Hints.push_back(
8249             FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str()));
8250       } else {
8251         // Otherwise, add parens around the expression as well as the cast.
8252         CastFix << "(";
8253         Hints.push_back(
8254             FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str()));
8255 
8256         SourceLocation After = S.getLocForEndOfToken(E->getEndLoc());
8257         Hints.push_back(FixItHint::CreateInsertion(After, ")"));
8258       }
8259 
8260       if (ShouldNotPrintDirectly) {
8261         // The expression has a type that should not be printed directly.
8262         // We extract the name from the typedef because we don't want to show
8263         // the underlying type in the diagnostic.
8264         StringRef Name;
8265         if (const TypedefType *TypedefTy = dyn_cast<TypedefType>(ExprTy))
8266           Name = TypedefTy->getDecl()->getName();
8267         else
8268           Name = CastTyName;
8269         unsigned Diag = Pedantic
8270                             ? diag::warn_format_argument_needs_cast_pedantic
8271                             : diag::warn_format_argument_needs_cast;
8272         EmitFormatDiagnostic(S.PDiag(Diag) << Name << IntendedTy << IsEnum
8273                                            << E->getSourceRange(),
8274                              E->getBeginLoc(), /*IsStringLocation=*/false,
8275                              SpecRange, Hints);
8276       } else {
8277         // In this case, the expression could be printed using a different
8278         // specifier, but we've decided that the specifier is probably correct
8279         // and we should cast instead. Just use the normal warning message.
8280         EmitFormatDiagnostic(
8281             S.PDiag(diag::warn_format_conversion_argument_type_mismatch)
8282                 << AT.getRepresentativeTypeName(S.Context) << ExprTy << IsEnum
8283                 << E->getSourceRange(),
8284             E->getBeginLoc(), /*IsStringLocation*/ false, SpecRange, Hints);
8285       }
8286     }
8287   } else {
8288     const CharSourceRange &CSR = getSpecifierRange(StartSpecifier,
8289                                                    SpecifierLen);
8290     // Since the warning for passing non-POD types to variadic functions
8291     // was deferred until now, we emit a warning for non-POD
8292     // arguments here.
8293     switch (S.isValidVarArgType(ExprTy)) {
8294     case Sema::VAK_Valid:
8295     case Sema::VAK_ValidInCXX11: {
8296       unsigned Diag =
8297           Pedantic
8298               ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8299               : diag::warn_format_conversion_argument_type_mismatch;
8300 
8301       EmitFormatDiagnostic(
8302           S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context) << ExprTy
8303                         << IsEnum << CSR << E->getSourceRange(),
8304           E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
8305       break;
8306     }
8307     case Sema::VAK_Undefined:
8308     case Sema::VAK_MSVCUndefined:
8309       EmitFormatDiagnostic(S.PDiag(diag::warn_non_pod_vararg_with_format_string)
8310                                << S.getLangOpts().CPlusPlus11 << ExprTy
8311                                << CallType
8312                                << AT.getRepresentativeTypeName(S.Context) << CSR
8313                                << E->getSourceRange(),
8314                            E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
8315       checkForCStrMembers(AT, E);
8316       break;
8317 
8318     case Sema::VAK_Invalid:
8319       if (ExprTy->isObjCObjectType())
8320         EmitFormatDiagnostic(
8321             S.PDiag(diag::err_cannot_pass_objc_interface_to_vararg_format)
8322                 << S.getLangOpts().CPlusPlus11 << ExprTy << CallType
8323                 << AT.getRepresentativeTypeName(S.Context) << CSR
8324                 << E->getSourceRange(),
8325             E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
8326       else
8327         // FIXME: If this is an initializer list, suggest removing the braces
8328         // or inserting a cast to the target type.
8329         S.Diag(E->getBeginLoc(), diag::err_cannot_pass_to_vararg_format)
8330             << isa<InitListExpr>(E) << ExprTy << CallType
8331             << AT.getRepresentativeTypeName(S.Context) << E->getSourceRange();
8332       break;
8333     }
8334 
8335     assert(FirstDataArg + FS.getArgIndex() < CheckedVarArgs.size() &&
8336            "format string specifier index out of range");
8337     CheckedVarArgs[FirstDataArg + FS.getArgIndex()] = true;
8338   }
8339 
8340   return true;
8341 }
8342 
8343 //===--- CHECK: Scanf format string checking ------------------------------===//
8344 
8345 namespace {
8346 
8347 class CheckScanfHandler : public CheckFormatHandler {
8348 public:
8349   CheckScanfHandler(Sema &s, const FormatStringLiteral *fexpr,
8350                     const Expr *origFormatExpr, Sema::FormatStringType type,
8351                     unsigned firstDataArg, unsigned numDataArgs,
8352                     const char *beg, bool hasVAListArg,
8353                     ArrayRef<const Expr *> Args, unsigned formatIdx,
8354                     bool inFunctionCall, Sema::VariadicCallType CallType,
8355                     llvm::SmallBitVector &CheckedVarArgs,
8356                     UncoveredArgHandler &UncoveredArg)
8357       : CheckFormatHandler(s, fexpr, origFormatExpr, type, firstDataArg,
8358                            numDataArgs, beg, hasVAListArg, Args, formatIdx,
8359                            inFunctionCall, CallType, CheckedVarArgs,
8360                            UncoveredArg) {}
8361 
8362   bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
8363                             const char *startSpecifier,
8364                             unsigned specifierLen) override;
8365 
8366   bool HandleInvalidScanfConversionSpecifier(
8367           const analyze_scanf::ScanfSpecifier &FS,
8368           const char *startSpecifier,
8369           unsigned specifierLen) override;
8370 
8371   void HandleIncompleteScanList(const char *start, const char *end) override;
8372 };
8373 
8374 } // namespace
8375 
8376 void CheckScanfHandler::HandleIncompleteScanList(const char *start,
8377                                                  const char *end) {
8378   EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete),
8379                        getLocationOfByte(end), /*IsStringLocation*/true,
8380                        getSpecifierRange(start, end - start));
8381 }
8382 
8383 bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
8384                                         const analyze_scanf::ScanfSpecifier &FS,
8385                                         const char *startSpecifier,
8386                                         unsigned specifierLen) {
8387   const analyze_scanf::ScanfConversionSpecifier &CS =
8388     FS.getConversionSpecifier();
8389 
8390   return HandleInvalidConversionSpecifier(FS.getArgIndex(),
8391                                           getLocationOfByte(CS.getStart()),
8392                                           startSpecifier, specifierLen,
8393                                           CS.getStart(), CS.getLength());
8394 }
8395 
8396 bool CheckScanfHandler::HandleScanfSpecifier(
8397                                        const analyze_scanf::ScanfSpecifier &FS,
8398                                        const char *startSpecifier,
8399                                        unsigned specifierLen) {
8400   using namespace analyze_scanf;
8401   using namespace analyze_format_string;
8402 
8403   const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
8404 
8405   // Handle case where '%' and '*' don't consume an argument.  These shouldn't
8406   // be used to decide if we are using positional arguments consistently.
8407   if (FS.consumesDataArgument()) {
8408     if (atFirstArg) {
8409       atFirstArg = false;
8410       usesPositionalArgs = FS.usesPositionalArg();
8411     }
8412     else if (usesPositionalArgs != FS.usesPositionalArg()) {
8413       HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
8414                                         startSpecifier, specifierLen);
8415       return false;
8416     }
8417   }
8418 
8419   // Check if the field with is non-zero.
8420   const OptionalAmount &Amt = FS.getFieldWidth();
8421   if (Amt.getHowSpecified() == OptionalAmount::Constant) {
8422     if (Amt.getConstantAmount() == 0) {
8423       const CharSourceRange &R = getSpecifierRange(Amt.getStart(),
8424                                                    Amt.getConstantLength());
8425       EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width),
8426                            getLocationOfByte(Amt.getStart()),
8427                            /*IsStringLocation*/true, R,
8428                            FixItHint::CreateRemoval(R));
8429     }
8430   }
8431 
8432   if (!FS.consumesDataArgument()) {
8433     // FIXME: Technically specifying a precision or field width here
8434     // makes no sense.  Worth issuing a warning at some point.
8435     return true;
8436   }
8437 
8438   // Consume the argument.
8439   unsigned argIndex = FS.getArgIndex();
8440   if (argIndex < NumDataArgs) {
8441       // The check to see if the argIndex is valid will come later.
8442       // We set the bit here because we may exit early from this
8443       // function if we encounter some other error.
8444     CoveredArgs.set(argIndex);
8445   }
8446 
8447   // Check the length modifier is valid with the given conversion specifier.
8448   if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(),
8449                                  S.getLangOpts()))
8450     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
8451                                 diag::warn_format_nonsensical_length);
8452   else if (!FS.hasStandardLengthModifier())
8453     HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen);
8454   else if (!FS.hasStandardLengthConversionCombination())
8455     HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
8456                                 diag::warn_format_non_standard_conversion_spec);
8457 
8458   if (!FS.hasStandardConversionSpecifier(S.getLangOpts()))
8459     HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen);
8460 
8461   // The remaining checks depend on the data arguments.
8462   if (HasVAListArg)
8463     return true;
8464 
8465   if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
8466     return false;
8467 
8468   // Check that the argument type matches the format specifier.
8469   const Expr *Ex = getDataArg(argIndex);
8470   if (!Ex)
8471     return true;
8472 
8473   const analyze_format_string::ArgType &AT = FS.getArgType(S.Context);
8474 
8475   if (!AT.isValid()) {
8476     return true;
8477   }
8478 
8479   analyze_format_string::ArgType::MatchKind Match =
8480       AT.matchesType(S.Context, Ex->getType());
8481   bool Pedantic = Match == analyze_format_string::ArgType::NoMatchPedantic;
8482   if (Match == analyze_format_string::ArgType::Match)
8483     return true;
8484 
8485   ScanfSpecifier fixedFS = FS;
8486   bool Success = fixedFS.fixType(Ex->getType(), Ex->IgnoreImpCasts()->getType(),
8487                                  S.getLangOpts(), S.Context);
8488 
8489   unsigned Diag =
8490       Pedantic ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8491                : diag::warn_format_conversion_argument_type_mismatch;
8492 
8493   if (Success) {
8494     // Get the fix string from the fixed format specifier.
8495     SmallString<128> buf;
8496     llvm::raw_svector_ostream os(buf);
8497     fixedFS.toString(os);
8498 
8499     EmitFormatDiagnostic(
8500         S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context)
8501                       << Ex->getType() << false << Ex->getSourceRange(),
8502         Ex->getBeginLoc(),
8503         /*IsStringLocation*/ false,
8504         getSpecifierRange(startSpecifier, specifierLen),
8505         FixItHint::CreateReplacement(
8506             getSpecifierRange(startSpecifier, specifierLen), os.str()));
8507   } else {
8508     EmitFormatDiagnostic(S.PDiag(Diag)
8509                              << AT.getRepresentativeTypeName(S.Context)
8510                              << Ex->getType() << false << Ex->getSourceRange(),
8511                          Ex->getBeginLoc(),
8512                          /*IsStringLocation*/ false,
8513                          getSpecifierRange(startSpecifier, specifierLen));
8514   }
8515 
8516   return true;
8517 }
8518 
8519 static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr,
8520                               const Expr *OrigFormatExpr,
8521                               ArrayRef<const Expr *> Args,
8522                               bool HasVAListArg, unsigned format_idx,
8523                               unsigned firstDataArg,
8524                               Sema::FormatStringType Type,
8525                               bool inFunctionCall,
8526                               Sema::VariadicCallType CallType,
8527                               llvm::SmallBitVector &CheckedVarArgs,
8528                               UncoveredArgHandler &UncoveredArg,
8529                               bool IgnoreStringsWithoutSpecifiers) {
8530   // CHECK: is the format string a wide literal?
8531   if (!FExpr->isAscii() && !FExpr->isUTF8()) {
8532     CheckFormatHandler::EmitFormatDiagnostic(
8533         S, inFunctionCall, Args[format_idx],
8534         S.PDiag(diag::warn_format_string_is_wide_literal), FExpr->getBeginLoc(),
8535         /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange());
8536     return;
8537   }
8538 
8539   // Str - The format string.  NOTE: this is NOT null-terminated!
8540   StringRef StrRef = FExpr->getString();
8541   const char *Str = StrRef.data();
8542   // Account for cases where the string literal is truncated in a declaration.
8543   const ConstantArrayType *T =
8544     S.Context.getAsConstantArrayType(FExpr->getType());
8545   assert(T && "String literal not of constant array type!");
8546   size_t TypeSize = T->getSize().getZExtValue();
8547   size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
8548   const unsigned numDataArgs = Args.size() - firstDataArg;
8549 
8550   if (IgnoreStringsWithoutSpecifiers &&
8551       !analyze_format_string::parseFormatStringHasFormattingSpecifiers(
8552           Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo()))
8553     return;
8554 
8555   // Emit a warning if the string literal is truncated and does not contain an
8556   // embedded null character.
8557   if (TypeSize <= StrRef.size() &&
8558       StrRef.substr(0, TypeSize).find('\0') == StringRef::npos) {
8559     CheckFormatHandler::EmitFormatDiagnostic(
8560         S, inFunctionCall, Args[format_idx],
8561         S.PDiag(diag::warn_printf_format_string_not_null_terminated),
8562         FExpr->getBeginLoc(),
8563         /*IsStringLocation=*/true, OrigFormatExpr->getSourceRange());
8564     return;
8565   }
8566 
8567   // CHECK: empty format string?
8568   if (StrLen == 0 && numDataArgs > 0) {
8569     CheckFormatHandler::EmitFormatDiagnostic(
8570         S, inFunctionCall, Args[format_idx],
8571         S.PDiag(diag::warn_empty_format_string), FExpr->getBeginLoc(),
8572         /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange());
8573     return;
8574   }
8575 
8576   if (Type == Sema::FST_Printf || Type == Sema::FST_NSString ||
8577       Type == Sema::FST_FreeBSDKPrintf || Type == Sema::FST_OSLog ||
8578       Type == Sema::FST_OSTrace) {
8579     CheckPrintfHandler H(
8580         S, FExpr, OrigFormatExpr, Type, firstDataArg, numDataArgs,
8581         (Type == Sema::FST_NSString || Type == Sema::FST_OSTrace), Str,
8582         HasVAListArg, Args, format_idx, inFunctionCall, CallType,
8583         CheckedVarArgs, UncoveredArg);
8584 
8585     if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
8586                                                   S.getLangOpts(),
8587                                                   S.Context.getTargetInfo(),
8588                                             Type == Sema::FST_FreeBSDKPrintf))
8589       H.DoneProcessing();
8590   } else if (Type == Sema::FST_Scanf) {
8591     CheckScanfHandler H(S, FExpr, OrigFormatExpr, Type, firstDataArg,
8592                         numDataArgs, Str, HasVAListArg, Args, format_idx,
8593                         inFunctionCall, CallType, CheckedVarArgs, UncoveredArg);
8594 
8595     if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
8596                                                  S.getLangOpts(),
8597                                                  S.Context.getTargetInfo()))
8598       H.DoneProcessing();
8599   } // TODO: handle other formats
8600 }
8601 
8602 bool Sema::FormatStringHasSArg(const StringLiteral *FExpr) {
8603   // Str - The format string.  NOTE: this is NOT null-terminated!
8604   StringRef StrRef = FExpr->getString();
8605   const char *Str = StrRef.data();
8606   // Account for cases where the string literal is truncated in a declaration.
8607   const ConstantArrayType *T = Context.getAsConstantArrayType(FExpr->getType());
8608   assert(T && "String literal not of constant array type!");
8609   size_t TypeSize = T->getSize().getZExtValue();
8610   size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
8611   return analyze_format_string::ParseFormatStringHasSArg(Str, Str + StrLen,
8612                                                          getLangOpts(),
8613                                                          Context.getTargetInfo());
8614 }
8615 
8616 //===--- CHECK: Warn on use of wrong absolute value function. -------------===//
8617 
8618 // Returns the related absolute value function that is larger, of 0 if one
8619 // does not exist.
8620 static unsigned getLargerAbsoluteValueFunction(unsigned AbsFunction) {
8621   switch (AbsFunction) {
8622   default:
8623     return 0;
8624 
8625   case Builtin::BI__builtin_abs:
8626     return Builtin::BI__builtin_labs;
8627   case Builtin::BI__builtin_labs:
8628     return Builtin::BI__builtin_llabs;
8629   case Builtin::BI__builtin_llabs:
8630     return 0;
8631 
8632   case Builtin::BI__builtin_fabsf:
8633     return Builtin::BI__builtin_fabs;
8634   case Builtin::BI__builtin_fabs:
8635     return Builtin::BI__builtin_fabsl;
8636   case Builtin::BI__builtin_fabsl:
8637     return 0;
8638 
8639   case Builtin::BI__builtin_cabsf:
8640     return Builtin::BI__builtin_cabs;
8641   case Builtin::BI__builtin_cabs:
8642     return Builtin::BI__builtin_cabsl;
8643   case Builtin::BI__builtin_cabsl:
8644     return 0;
8645 
8646   case Builtin::BIabs:
8647     return Builtin::BIlabs;
8648   case Builtin::BIlabs:
8649     return Builtin::BIllabs;
8650   case Builtin::BIllabs:
8651     return 0;
8652 
8653   case Builtin::BIfabsf:
8654     return Builtin::BIfabs;
8655   case Builtin::BIfabs:
8656     return Builtin::BIfabsl;
8657   case Builtin::BIfabsl:
8658     return 0;
8659 
8660   case Builtin::BIcabsf:
8661    return Builtin::BIcabs;
8662   case Builtin::BIcabs:
8663     return Builtin::BIcabsl;
8664   case Builtin::BIcabsl:
8665     return 0;
8666   }
8667 }
8668 
8669 // Returns the argument type of the absolute value function.
8670 static QualType getAbsoluteValueArgumentType(ASTContext &Context,
8671                                              unsigned AbsType) {
8672   if (AbsType == 0)
8673     return QualType();
8674 
8675   ASTContext::GetBuiltinTypeError Error = ASTContext::GE_None;
8676   QualType BuiltinType = Context.GetBuiltinType(AbsType, Error);
8677   if (Error != ASTContext::GE_None)
8678     return QualType();
8679 
8680   const FunctionProtoType *FT = BuiltinType->getAs<FunctionProtoType>();
8681   if (!FT)
8682     return QualType();
8683 
8684   if (FT->getNumParams() != 1)
8685     return QualType();
8686 
8687   return FT->getParamType(0);
8688 }
8689 
8690 // Returns the best absolute value function, or zero, based on type and
8691 // current absolute value function.
8692 static unsigned getBestAbsFunction(ASTContext &Context, QualType ArgType,
8693                                    unsigned AbsFunctionKind) {
8694   unsigned BestKind = 0;
8695   uint64_t ArgSize = Context.getTypeSize(ArgType);
8696   for (unsigned Kind = AbsFunctionKind; Kind != 0;
8697        Kind = getLargerAbsoluteValueFunction(Kind)) {
8698     QualType ParamType = getAbsoluteValueArgumentType(Context, Kind);
8699     if (Context.getTypeSize(ParamType) >= ArgSize) {
8700       if (BestKind == 0)
8701         BestKind = Kind;
8702       else if (Context.hasSameType(ParamType, ArgType)) {
8703         BestKind = Kind;
8704         break;
8705       }
8706     }
8707   }
8708   return BestKind;
8709 }
8710 
8711 enum AbsoluteValueKind {
8712   AVK_Integer,
8713   AVK_Floating,
8714   AVK_Complex
8715 };
8716 
8717 static AbsoluteValueKind getAbsoluteValueKind(QualType T) {
8718   if (T->isIntegralOrEnumerationType())
8719     return AVK_Integer;
8720   if (T->isRealFloatingType())
8721     return AVK_Floating;
8722   if (T->isAnyComplexType())
8723     return AVK_Complex;
8724 
8725   llvm_unreachable("Type not integer, floating, or complex");
8726 }
8727 
8728 // Changes the absolute value function to a different type.  Preserves whether
8729 // the function is a builtin.
8730 static unsigned changeAbsFunction(unsigned AbsKind,
8731                                   AbsoluteValueKind ValueKind) {
8732   switch (ValueKind) {
8733   case AVK_Integer:
8734     switch (AbsKind) {
8735     default:
8736       return 0;
8737     case Builtin::BI__builtin_fabsf:
8738     case Builtin::BI__builtin_fabs:
8739     case Builtin::BI__builtin_fabsl:
8740     case Builtin::BI__builtin_cabsf:
8741     case Builtin::BI__builtin_cabs:
8742     case Builtin::BI__builtin_cabsl:
8743       return Builtin::BI__builtin_abs;
8744     case Builtin::BIfabsf:
8745     case Builtin::BIfabs:
8746     case Builtin::BIfabsl:
8747     case Builtin::BIcabsf:
8748     case Builtin::BIcabs:
8749     case Builtin::BIcabsl:
8750       return Builtin::BIabs;
8751     }
8752   case AVK_Floating:
8753     switch (AbsKind) {
8754     default:
8755       return 0;
8756     case Builtin::BI__builtin_abs:
8757     case Builtin::BI__builtin_labs:
8758     case Builtin::BI__builtin_llabs:
8759     case Builtin::BI__builtin_cabsf:
8760     case Builtin::BI__builtin_cabs:
8761     case Builtin::BI__builtin_cabsl:
8762       return Builtin::BI__builtin_fabsf;
8763     case Builtin::BIabs:
8764     case Builtin::BIlabs:
8765     case Builtin::BIllabs:
8766     case Builtin::BIcabsf:
8767     case Builtin::BIcabs:
8768     case Builtin::BIcabsl:
8769       return Builtin::BIfabsf;
8770     }
8771   case AVK_Complex:
8772     switch (AbsKind) {
8773     default:
8774       return 0;
8775     case Builtin::BI__builtin_abs:
8776     case Builtin::BI__builtin_labs:
8777     case Builtin::BI__builtin_llabs:
8778     case Builtin::BI__builtin_fabsf:
8779     case Builtin::BI__builtin_fabs:
8780     case Builtin::BI__builtin_fabsl:
8781       return Builtin::BI__builtin_cabsf;
8782     case Builtin::BIabs:
8783     case Builtin::BIlabs:
8784     case Builtin::BIllabs:
8785     case Builtin::BIfabsf:
8786     case Builtin::BIfabs:
8787     case Builtin::BIfabsl:
8788       return Builtin::BIcabsf;
8789     }
8790   }
8791   llvm_unreachable("Unable to convert function");
8792 }
8793 
8794 static unsigned getAbsoluteValueFunctionKind(const FunctionDecl *FDecl) {
8795   const IdentifierInfo *FnInfo = FDecl->getIdentifier();
8796   if (!FnInfo)
8797     return 0;
8798 
8799   switch (FDecl->getBuiltinID()) {
8800   default:
8801     return 0;
8802   case Builtin::BI__builtin_abs:
8803   case Builtin::BI__builtin_fabs:
8804   case Builtin::BI__builtin_fabsf:
8805   case Builtin::BI__builtin_fabsl:
8806   case Builtin::BI__builtin_labs:
8807   case Builtin::BI__builtin_llabs:
8808   case Builtin::BI__builtin_cabs:
8809   case Builtin::BI__builtin_cabsf:
8810   case Builtin::BI__builtin_cabsl:
8811   case Builtin::BIabs:
8812   case Builtin::BIlabs:
8813   case Builtin::BIllabs:
8814   case Builtin::BIfabs:
8815   case Builtin::BIfabsf:
8816   case Builtin::BIfabsl:
8817   case Builtin::BIcabs:
8818   case Builtin::BIcabsf:
8819   case Builtin::BIcabsl:
8820     return FDecl->getBuiltinID();
8821   }
8822   llvm_unreachable("Unknown Builtin type");
8823 }
8824 
8825 // If the replacement is valid, emit a note with replacement function.
8826 // Additionally, suggest including the proper header if not already included.
8827 static void emitReplacement(Sema &S, SourceLocation Loc, SourceRange Range,
8828                             unsigned AbsKind, QualType ArgType) {
8829   bool EmitHeaderHint = true;
8830   const char *HeaderName = nullptr;
8831   const char *FunctionName = nullptr;
8832   if (S.getLangOpts().CPlusPlus && !ArgType->isAnyComplexType()) {
8833     FunctionName = "std::abs";
8834     if (ArgType->isIntegralOrEnumerationType()) {
8835       HeaderName = "cstdlib";
8836     } else if (ArgType->isRealFloatingType()) {
8837       HeaderName = "cmath";
8838     } else {
8839       llvm_unreachable("Invalid Type");
8840     }
8841 
8842     // Lookup all std::abs
8843     if (NamespaceDecl *Std = S.getStdNamespace()) {
8844       LookupResult R(S, &S.Context.Idents.get("abs"), Loc, Sema::LookupAnyName);
8845       R.suppressDiagnostics();
8846       S.LookupQualifiedName(R, Std);
8847 
8848       for (const auto *I : R) {
8849         const FunctionDecl *FDecl = nullptr;
8850         if (const UsingShadowDecl *UsingD = dyn_cast<UsingShadowDecl>(I)) {
8851           FDecl = dyn_cast<FunctionDecl>(UsingD->getTargetDecl());
8852         } else {
8853           FDecl = dyn_cast<FunctionDecl>(I);
8854         }
8855         if (!FDecl)
8856           continue;
8857 
8858         // Found std::abs(), check that they are the right ones.
8859         if (FDecl->getNumParams() != 1)
8860           continue;
8861 
8862         // Check that the parameter type can handle the argument.
8863         QualType ParamType = FDecl->getParamDecl(0)->getType();
8864         if (getAbsoluteValueKind(ArgType) == getAbsoluteValueKind(ParamType) &&
8865             S.Context.getTypeSize(ArgType) <=
8866                 S.Context.getTypeSize(ParamType)) {
8867           // Found a function, don't need the header hint.
8868           EmitHeaderHint = false;
8869           break;
8870         }
8871       }
8872     }
8873   } else {
8874     FunctionName = S.Context.BuiltinInfo.getName(AbsKind);
8875     HeaderName = S.Context.BuiltinInfo.getHeaderName(AbsKind);
8876 
8877     if (HeaderName) {
8878       DeclarationName DN(&S.Context.Idents.get(FunctionName));
8879       LookupResult R(S, DN, Loc, Sema::LookupAnyName);
8880       R.suppressDiagnostics();
8881       S.LookupName(R, S.getCurScope());
8882 
8883       if (R.isSingleResult()) {
8884         FunctionDecl *FD = dyn_cast<FunctionDecl>(R.getFoundDecl());
8885         if (FD && FD->getBuiltinID() == AbsKind) {
8886           EmitHeaderHint = false;
8887         } else {
8888           return;
8889         }
8890       } else if (!R.empty()) {
8891         return;
8892       }
8893     }
8894   }
8895 
8896   S.Diag(Loc, diag::note_replace_abs_function)
8897       << FunctionName << FixItHint::CreateReplacement(Range, FunctionName);
8898 
8899   if (!HeaderName)
8900     return;
8901 
8902   if (!EmitHeaderHint)
8903     return;
8904 
8905   S.Diag(Loc, diag::note_include_header_or_declare) << HeaderName
8906                                                     << FunctionName;
8907 }
8908 
8909 template <std::size_t StrLen>
8910 static bool IsStdFunction(const FunctionDecl *FDecl,
8911                           const char (&Str)[StrLen]) {
8912   if (!FDecl)
8913     return false;
8914   if (!FDecl->getIdentifier() || !FDecl->getIdentifier()->isStr(Str))
8915     return false;
8916   if (!FDecl->isInStdNamespace())
8917     return false;
8918 
8919   return true;
8920 }
8921 
8922 // Warn when using the wrong abs() function.
8923 void Sema::CheckAbsoluteValueFunction(const CallExpr *Call,
8924                                       const FunctionDecl *FDecl) {
8925   if (Call->getNumArgs() != 1)
8926     return;
8927 
8928   unsigned AbsKind = getAbsoluteValueFunctionKind(FDecl);
8929   bool IsStdAbs = IsStdFunction(FDecl, "abs");
8930   if (AbsKind == 0 && !IsStdAbs)
8931     return;
8932 
8933   QualType ArgType = Call->getArg(0)->IgnoreParenImpCasts()->getType();
8934   QualType ParamType = Call->getArg(0)->getType();
8935 
8936   // Unsigned types cannot be negative.  Suggest removing the absolute value
8937   // function call.
8938   if (ArgType->isUnsignedIntegerType()) {
8939     const char *FunctionName =
8940         IsStdAbs ? "std::abs" : Context.BuiltinInfo.getName(AbsKind);
8941     Diag(Call->getExprLoc(), diag::warn_unsigned_abs) << ArgType << ParamType;
8942     Diag(Call->getExprLoc(), diag::note_remove_abs)
8943         << FunctionName
8944         << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange());
8945     return;
8946   }
8947 
8948   // Taking the absolute value of a pointer is very suspicious, they probably
8949   // wanted to index into an array, dereference a pointer, call a function, etc.
8950   if (ArgType->isPointerType() || ArgType->canDecayToPointerType()) {
8951     unsigned DiagType = 0;
8952     if (ArgType->isFunctionType())
8953       DiagType = 1;
8954     else if (ArgType->isArrayType())
8955       DiagType = 2;
8956 
8957     Diag(Call->getExprLoc(), diag::warn_pointer_abs) << DiagType << ArgType;
8958     return;
8959   }
8960 
8961   // std::abs has overloads which prevent most of the absolute value problems
8962   // from occurring.
8963   if (IsStdAbs)
8964     return;
8965 
8966   AbsoluteValueKind ArgValueKind = getAbsoluteValueKind(ArgType);
8967   AbsoluteValueKind ParamValueKind = getAbsoluteValueKind(ParamType);
8968 
8969   // The argument and parameter are the same kind.  Check if they are the right
8970   // size.
8971   if (ArgValueKind == ParamValueKind) {
8972     if (Context.getTypeSize(ArgType) <= Context.getTypeSize(ParamType))
8973       return;
8974 
8975     unsigned NewAbsKind = getBestAbsFunction(Context, ArgType, AbsKind);
8976     Diag(Call->getExprLoc(), diag::warn_abs_too_small)
8977         << FDecl << ArgType << ParamType;
8978 
8979     if (NewAbsKind == 0)
8980       return;
8981 
8982     emitReplacement(*this, Call->getExprLoc(),
8983                     Call->getCallee()->getSourceRange(), NewAbsKind, ArgType);
8984     return;
8985   }
8986 
8987   // ArgValueKind != ParamValueKind
8988   // The wrong type of absolute value function was used.  Attempt to find the
8989   // proper one.
8990   unsigned NewAbsKind = changeAbsFunction(AbsKind, ArgValueKind);
8991   NewAbsKind = getBestAbsFunction(Context, ArgType, NewAbsKind);
8992   if (NewAbsKind == 0)
8993     return;
8994 
8995   Diag(Call->getExprLoc(), diag::warn_wrong_absolute_value_type)
8996       << FDecl << ParamValueKind << ArgValueKind;
8997 
8998   emitReplacement(*this, Call->getExprLoc(),
8999                   Call->getCallee()->getSourceRange(), NewAbsKind, ArgType);
9000 }
9001 
9002 //===--- CHECK: Warn on use of std::max and unsigned zero. r---------------===//
9003 void Sema::CheckMaxUnsignedZero(const CallExpr *Call,
9004                                 const FunctionDecl *FDecl) {
9005   if (!Call || !FDecl) return;
9006 
9007   // Ignore template specializations and macros.
9008   if (inTemplateInstantiation()) return;
9009   if (Call->getExprLoc().isMacroID()) return;
9010 
9011   // Only care about the one template argument, two function parameter std::max
9012   if (Call->getNumArgs() != 2) return;
9013   if (!IsStdFunction(FDecl, "max")) return;
9014   const auto * ArgList = FDecl->getTemplateSpecializationArgs();
9015   if (!ArgList) return;
9016   if (ArgList->size() != 1) return;
9017 
9018   // Check that template type argument is unsigned integer.
9019   const auto& TA = ArgList->get(0);
9020   if (TA.getKind() != TemplateArgument::Type) return;
9021   QualType ArgType = TA.getAsType();
9022   if (!ArgType->isUnsignedIntegerType()) return;
9023 
9024   // See if either argument is a literal zero.
9025   auto IsLiteralZeroArg = [](const Expr* E) -> bool {
9026     const auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E);
9027     if (!MTE) return false;
9028     const auto *Num = dyn_cast<IntegerLiteral>(MTE->GetTemporaryExpr());
9029     if (!Num) return false;
9030     if (Num->getValue() != 0) return false;
9031     return true;
9032   };
9033 
9034   const Expr *FirstArg = Call->getArg(0);
9035   const Expr *SecondArg = Call->getArg(1);
9036   const bool IsFirstArgZero = IsLiteralZeroArg(FirstArg);
9037   const bool IsSecondArgZero = IsLiteralZeroArg(SecondArg);
9038 
9039   // Only warn when exactly one argument is zero.
9040   if (IsFirstArgZero == IsSecondArgZero) return;
9041 
9042   SourceRange FirstRange = FirstArg->getSourceRange();
9043   SourceRange SecondRange = SecondArg->getSourceRange();
9044 
9045   SourceRange ZeroRange = IsFirstArgZero ? FirstRange : SecondRange;
9046 
9047   Diag(Call->getExprLoc(), diag::warn_max_unsigned_zero)
9048       << IsFirstArgZero << Call->getCallee()->getSourceRange() << ZeroRange;
9049 
9050   // Deduce what parts to remove so that "std::max(0u, foo)" becomes "(foo)".
9051   SourceRange RemovalRange;
9052   if (IsFirstArgZero) {
9053     RemovalRange = SourceRange(FirstRange.getBegin(),
9054                                SecondRange.getBegin().getLocWithOffset(-1));
9055   } else {
9056     RemovalRange = SourceRange(getLocForEndOfToken(FirstRange.getEnd()),
9057                                SecondRange.getEnd());
9058   }
9059 
9060   Diag(Call->getExprLoc(), diag::note_remove_max_call)
9061         << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange())
9062         << FixItHint::CreateRemoval(RemovalRange);
9063 }
9064 
9065 //===--- CHECK: Standard memory functions ---------------------------------===//
9066 
9067 /// Takes the expression passed to the size_t parameter of functions
9068 /// such as memcmp, strncat, etc and warns if it's a comparison.
9069 ///
9070 /// This is to catch typos like `if (memcmp(&a, &b, sizeof(a) > 0))`.
9071 static bool CheckMemorySizeofForComparison(Sema &S, const Expr *E,
9072                                            IdentifierInfo *FnName,
9073                                            SourceLocation FnLoc,
9074                                            SourceLocation RParenLoc) {
9075   const BinaryOperator *Size = dyn_cast<BinaryOperator>(E);
9076   if (!Size)
9077     return false;
9078 
9079   // if E is binop and op is <=>, >, <, >=, <=, ==, &&, ||:
9080   if (!Size->isComparisonOp() && !Size->isLogicalOp())
9081     return false;
9082 
9083   SourceRange SizeRange = Size->getSourceRange();
9084   S.Diag(Size->getOperatorLoc(), diag::warn_memsize_comparison)
9085       << SizeRange << FnName;
9086   S.Diag(FnLoc, diag::note_memsize_comparison_paren)
9087       << FnName
9088       << FixItHint::CreateInsertion(
9089              S.getLocForEndOfToken(Size->getLHS()->getEndLoc()), ")")
9090       << FixItHint::CreateRemoval(RParenLoc);
9091   S.Diag(SizeRange.getBegin(), diag::note_memsize_comparison_cast_silence)
9092       << FixItHint::CreateInsertion(SizeRange.getBegin(), "(size_t)(")
9093       << FixItHint::CreateInsertion(S.getLocForEndOfToken(SizeRange.getEnd()),
9094                                     ")");
9095 
9096   return true;
9097 }
9098 
9099 /// Determine whether the given type is or contains a dynamic class type
9100 /// (e.g., whether it has a vtable).
9101 static const CXXRecordDecl *getContainedDynamicClass(QualType T,
9102                                                      bool &IsContained) {
9103   // Look through array types while ignoring qualifiers.
9104   const Type *Ty = T->getBaseElementTypeUnsafe();
9105   IsContained = false;
9106 
9107   const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl();
9108   RD = RD ? RD->getDefinition() : nullptr;
9109   if (!RD || RD->isInvalidDecl())
9110     return nullptr;
9111 
9112   if (RD->isDynamicClass())
9113     return RD;
9114 
9115   // Check all the fields.  If any bases were dynamic, the class is dynamic.
9116   // It's impossible for a class to transitively contain itself by value, so
9117   // infinite recursion is impossible.
9118   for (auto *FD : RD->fields()) {
9119     bool SubContained;
9120     if (const CXXRecordDecl *ContainedRD =
9121             getContainedDynamicClass(FD->getType(), SubContained)) {
9122       IsContained = true;
9123       return ContainedRD;
9124     }
9125   }
9126 
9127   return nullptr;
9128 }
9129 
9130 static const UnaryExprOrTypeTraitExpr *getAsSizeOfExpr(const Expr *E) {
9131   if (const auto *Unary = dyn_cast<UnaryExprOrTypeTraitExpr>(E))
9132     if (Unary->getKind() == UETT_SizeOf)
9133       return Unary;
9134   return nullptr;
9135 }
9136 
9137 /// If E is a sizeof expression, returns its argument expression,
9138 /// otherwise returns NULL.
9139 static const Expr *getSizeOfExprArg(const Expr *E) {
9140   if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E))
9141     if (!SizeOf->isArgumentType())
9142       return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
9143   return nullptr;
9144 }
9145 
9146 /// If E is a sizeof expression, returns its argument type.
9147 static QualType getSizeOfArgType(const Expr *E) {
9148   if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E))
9149     return SizeOf->getTypeOfArgument();
9150   return QualType();
9151 }
9152 
9153 namespace {
9154 
9155 struct SearchNonTrivialToInitializeField
9156     : DefaultInitializedTypeVisitor<SearchNonTrivialToInitializeField> {
9157   using Super =
9158       DefaultInitializedTypeVisitor<SearchNonTrivialToInitializeField>;
9159 
9160   SearchNonTrivialToInitializeField(const Expr *E, Sema &S) : E(E), S(S) {}
9161 
9162   void visitWithKind(QualType::PrimitiveDefaultInitializeKind PDIK, QualType FT,
9163                      SourceLocation SL) {
9164     if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
9165       asDerived().visitArray(PDIK, AT, SL);
9166       return;
9167     }
9168 
9169     Super::visitWithKind(PDIK, FT, SL);
9170   }
9171 
9172   void visitARCStrong(QualType FT, SourceLocation SL) {
9173     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 1);
9174   }
9175   void visitARCWeak(QualType FT, SourceLocation SL) {
9176     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 1);
9177   }
9178   void visitStruct(QualType FT, SourceLocation SL) {
9179     for (const FieldDecl *FD : FT->castAs<RecordType>()->getDecl()->fields())
9180       visit(FD->getType(), FD->getLocation());
9181   }
9182   void visitArray(QualType::PrimitiveDefaultInitializeKind PDIK,
9183                   const ArrayType *AT, SourceLocation SL) {
9184     visit(getContext().getBaseElementType(AT), SL);
9185   }
9186   void visitTrivial(QualType FT, SourceLocation SL) {}
9187 
9188   static void diag(QualType RT, const Expr *E, Sema &S) {
9189     SearchNonTrivialToInitializeField(E, S).visitStruct(RT, SourceLocation());
9190   }
9191 
9192   ASTContext &getContext() { return S.getASTContext(); }
9193 
9194   const Expr *E;
9195   Sema &S;
9196 };
9197 
9198 struct SearchNonTrivialToCopyField
9199     : CopiedTypeVisitor<SearchNonTrivialToCopyField, false> {
9200   using Super = CopiedTypeVisitor<SearchNonTrivialToCopyField, false>;
9201 
9202   SearchNonTrivialToCopyField(const Expr *E, Sema &S) : E(E), S(S) {}
9203 
9204   void visitWithKind(QualType::PrimitiveCopyKind PCK, QualType FT,
9205                      SourceLocation SL) {
9206     if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
9207       asDerived().visitArray(PCK, AT, SL);
9208       return;
9209     }
9210 
9211     Super::visitWithKind(PCK, FT, SL);
9212   }
9213 
9214   void visitARCStrong(QualType FT, SourceLocation SL) {
9215     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 0);
9216   }
9217   void visitARCWeak(QualType FT, SourceLocation SL) {
9218     S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 0);
9219   }
9220   void visitStruct(QualType FT, SourceLocation SL) {
9221     for (const FieldDecl *FD : FT->castAs<RecordType>()->getDecl()->fields())
9222       visit(FD->getType(), FD->getLocation());
9223   }
9224   void visitArray(QualType::PrimitiveCopyKind PCK, const ArrayType *AT,
9225                   SourceLocation SL) {
9226     visit(getContext().getBaseElementType(AT), SL);
9227   }
9228   void preVisit(QualType::PrimitiveCopyKind PCK, QualType FT,
9229                 SourceLocation SL) {}
9230   void visitTrivial(QualType FT, SourceLocation SL) {}
9231   void visitVolatileTrivial(QualType FT, SourceLocation SL) {}
9232 
9233   static void diag(QualType RT, const Expr *E, Sema &S) {
9234     SearchNonTrivialToCopyField(E, S).visitStruct(RT, SourceLocation());
9235   }
9236 
9237   ASTContext &getContext() { return S.getASTContext(); }
9238 
9239   const Expr *E;
9240   Sema &S;
9241 };
9242 
9243 }
9244 
9245 /// Detect if \c SizeofExpr is likely to calculate the sizeof an object.
9246 static bool doesExprLikelyComputeSize(const Expr *SizeofExpr) {
9247   SizeofExpr = SizeofExpr->IgnoreParenImpCasts();
9248 
9249   if (const auto *BO = dyn_cast<BinaryOperator>(SizeofExpr)) {
9250     if (BO->getOpcode() != BO_Mul && BO->getOpcode() != BO_Add)
9251       return false;
9252 
9253     return doesExprLikelyComputeSize(BO->getLHS()) ||
9254            doesExprLikelyComputeSize(BO->getRHS());
9255   }
9256 
9257   return getAsSizeOfExpr(SizeofExpr) != nullptr;
9258 }
9259 
9260 /// Check if the ArgLoc originated from a macro passed to the call at CallLoc.
9261 ///
9262 /// \code
9263 ///   #define MACRO 0
9264 ///   foo(MACRO);
9265 ///   foo(0);
9266 /// \endcode
9267 ///
9268 /// This should return true for the first call to foo, but not for the second
9269 /// (regardless of whether foo is a macro or function).
9270 static bool isArgumentExpandedFromMacro(SourceManager &SM,
9271                                         SourceLocation CallLoc,
9272                                         SourceLocation ArgLoc) {
9273   if (!CallLoc.isMacroID())
9274     return SM.getFileID(CallLoc) != SM.getFileID(ArgLoc);
9275 
9276   return SM.getFileID(SM.getImmediateMacroCallerLoc(CallLoc)) !=
9277          SM.getFileID(SM.getImmediateMacroCallerLoc(ArgLoc));
9278 }
9279 
9280 /// Diagnose cases like 'memset(buf, sizeof(buf), 0)', which should have the
9281 /// last two arguments transposed.
9282 static void CheckMemaccessSize(Sema &S, unsigned BId, const CallExpr *Call) {
9283   if (BId != Builtin::BImemset && BId != Builtin::BIbzero)
9284     return;
9285 
9286   const Expr *SizeArg =
9287     Call->getArg(BId == Builtin::BImemset ? 2 : 1)->IgnoreImpCasts();
9288 
9289   auto isLiteralZero = [](const Expr *E) {
9290     return isa<IntegerLiteral>(E) && cast<IntegerLiteral>(E)->getValue() == 0;
9291   };
9292 
9293   // If we're memsetting or bzeroing 0 bytes, then this is likely an error.
9294   SourceLocation CallLoc = Call->getRParenLoc();
9295   SourceManager &SM = S.getSourceManager();
9296   if (isLiteralZero(SizeArg) &&
9297       !isArgumentExpandedFromMacro(SM, CallLoc, SizeArg->getExprLoc())) {
9298 
9299     SourceLocation DiagLoc = SizeArg->getExprLoc();
9300 
9301     // Some platforms #define bzero to __builtin_memset. See if this is the
9302     // case, and if so, emit a better diagnostic.
9303     if (BId == Builtin::BIbzero ||
9304         (CallLoc.isMacroID() && Lexer::getImmediateMacroName(
9305                                     CallLoc, SM, S.getLangOpts()) == "bzero")) {
9306       S.Diag(DiagLoc, diag::warn_suspicious_bzero_size);
9307       S.Diag(DiagLoc, diag::note_suspicious_bzero_size_silence);
9308     } else if (!isLiteralZero(Call->getArg(1)->IgnoreImpCasts())) {
9309       S.Diag(DiagLoc, diag::warn_suspicious_sizeof_memset) << 0;
9310       S.Diag(DiagLoc, diag::note_suspicious_sizeof_memset_silence) << 0;
9311     }
9312     return;
9313   }
9314 
9315   // If the second argument to a memset is a sizeof expression and the third
9316   // isn't, this is also likely an error. This should catch
9317   // 'memset(buf, sizeof(buf), 0xff)'.
9318   if (BId == Builtin::BImemset &&
9319       doesExprLikelyComputeSize(Call->getArg(1)) &&
9320       !doesExprLikelyComputeSize(Call->getArg(2))) {
9321     SourceLocation DiagLoc = Call->getArg(1)->getExprLoc();
9322     S.Diag(DiagLoc, diag::warn_suspicious_sizeof_memset) << 1;
9323     S.Diag(DiagLoc, diag::note_suspicious_sizeof_memset_silence) << 1;
9324     return;
9325   }
9326 }
9327 
9328 /// Check for dangerous or invalid arguments to memset().
9329 ///
9330 /// This issues warnings on known problematic, dangerous or unspecified
9331 /// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp'
9332 /// function calls.
9333 ///
9334 /// \param Call The call expression to diagnose.
9335 void Sema::CheckMemaccessArguments(const CallExpr *Call,
9336                                    unsigned BId,
9337                                    IdentifierInfo *FnName) {
9338   assert(BId != 0);
9339 
9340   // It is possible to have a non-standard definition of memset.  Validate
9341   // we have enough arguments, and if not, abort further checking.
9342   unsigned ExpectedNumArgs =
9343       (BId == Builtin::BIstrndup || BId == Builtin::BIbzero ? 2 : 3);
9344   if (Call->getNumArgs() < ExpectedNumArgs)
9345     return;
9346 
9347   unsigned LastArg = (BId == Builtin::BImemset || BId == Builtin::BIbzero ||
9348                       BId == Builtin::BIstrndup ? 1 : 2);
9349   unsigned LenArg =
9350       (BId == Builtin::BIbzero || BId == Builtin::BIstrndup ? 1 : 2);
9351   const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts();
9352 
9353   if (CheckMemorySizeofForComparison(*this, LenExpr, FnName,
9354                                      Call->getBeginLoc(), Call->getRParenLoc()))
9355     return;
9356 
9357   // Catch cases like 'memset(buf, sizeof(buf), 0)'.
9358   CheckMemaccessSize(*this, BId, Call);
9359 
9360   // We have special checking when the length is a sizeof expression.
9361   QualType SizeOfArgTy = getSizeOfArgType(LenExpr);
9362   const Expr *SizeOfArg = getSizeOfExprArg(LenExpr);
9363   llvm::FoldingSetNodeID SizeOfArgID;
9364 
9365   // Although widely used, 'bzero' is not a standard function. Be more strict
9366   // with the argument types before allowing diagnostics and only allow the
9367   // form bzero(ptr, sizeof(...)).
9368   QualType FirstArgTy = Call->getArg(0)->IgnoreParenImpCasts()->getType();
9369   if (BId == Builtin::BIbzero && !FirstArgTy->getAs<PointerType>())
9370     return;
9371 
9372   for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
9373     const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
9374     SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
9375 
9376     QualType DestTy = Dest->getType();
9377     QualType PointeeTy;
9378     if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
9379       PointeeTy = DestPtrTy->getPointeeType();
9380 
9381       // Never warn about void type pointers. This can be used to suppress
9382       // false positives.
9383       if (PointeeTy->isVoidType())
9384         continue;
9385 
9386       // Catch "memset(p, 0, sizeof(p))" -- needs to be sizeof(*p). Do this by
9387       // actually comparing the expressions for equality. Because computing the
9388       // expression IDs can be expensive, we only do this if the diagnostic is
9389       // enabled.
9390       if (SizeOfArg &&
9391           !Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess,
9392                            SizeOfArg->getExprLoc())) {
9393         // We only compute IDs for expressions if the warning is enabled, and
9394         // cache the sizeof arg's ID.
9395         if (SizeOfArgID == llvm::FoldingSetNodeID())
9396           SizeOfArg->Profile(SizeOfArgID, Context, true);
9397         llvm::FoldingSetNodeID DestID;
9398         Dest->Profile(DestID, Context, true);
9399         if (DestID == SizeOfArgID) {
9400           // TODO: For strncpy() and friends, this could suggest sizeof(dst)
9401           //       over sizeof(src) as well.
9402           unsigned ActionIdx = 0; // Default is to suggest dereferencing.
9403           StringRef ReadableName = FnName->getName();
9404 
9405           if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest))
9406             if (UnaryOp->getOpcode() == UO_AddrOf)
9407               ActionIdx = 1; // If its an address-of operator, just remove it.
9408           if (!PointeeTy->isIncompleteType() &&
9409               (Context.getTypeSize(PointeeTy) == Context.getCharWidth()))
9410             ActionIdx = 2; // If the pointee's size is sizeof(char),
9411                            // suggest an explicit length.
9412 
9413           // If the function is defined as a builtin macro, do not show macro
9414           // expansion.
9415           SourceLocation SL = SizeOfArg->getExprLoc();
9416           SourceRange DSR = Dest->getSourceRange();
9417           SourceRange SSR = SizeOfArg->getSourceRange();
9418           SourceManager &SM = getSourceManager();
9419 
9420           if (SM.isMacroArgExpansion(SL)) {
9421             ReadableName = Lexer::getImmediateMacroName(SL, SM, LangOpts);
9422             SL = SM.getSpellingLoc(SL);
9423             DSR = SourceRange(SM.getSpellingLoc(DSR.getBegin()),
9424                              SM.getSpellingLoc(DSR.getEnd()));
9425             SSR = SourceRange(SM.getSpellingLoc(SSR.getBegin()),
9426                              SM.getSpellingLoc(SSR.getEnd()));
9427           }
9428 
9429           DiagRuntimeBehavior(SL, SizeOfArg,
9430                               PDiag(diag::warn_sizeof_pointer_expr_memaccess)
9431                                 << ReadableName
9432                                 << PointeeTy
9433                                 << DestTy
9434                                 << DSR
9435                                 << SSR);
9436           DiagRuntimeBehavior(SL, SizeOfArg,
9437                          PDiag(diag::warn_sizeof_pointer_expr_memaccess_note)
9438                                 << ActionIdx
9439                                 << SSR);
9440 
9441           break;
9442         }
9443       }
9444 
9445       // Also check for cases where the sizeof argument is the exact same
9446       // type as the memory argument, and where it points to a user-defined
9447       // record type.
9448       if (SizeOfArgTy != QualType()) {
9449         if (PointeeTy->isRecordType() &&
9450             Context.typesAreCompatible(SizeOfArgTy, DestTy)) {
9451           DiagRuntimeBehavior(LenExpr->getExprLoc(), Dest,
9452                               PDiag(diag::warn_sizeof_pointer_type_memaccess)
9453                                 << FnName << SizeOfArgTy << ArgIdx
9454                                 << PointeeTy << Dest->getSourceRange()
9455                                 << LenExpr->getSourceRange());
9456           break;
9457         }
9458       }
9459     } else if (DestTy->isArrayType()) {
9460       PointeeTy = DestTy;
9461     }
9462 
9463     if (PointeeTy == QualType())
9464       continue;
9465 
9466     // Always complain about dynamic classes.
9467     bool IsContained;
9468     if (const CXXRecordDecl *ContainedRD =
9469             getContainedDynamicClass(PointeeTy, IsContained)) {
9470 
9471       unsigned OperationType = 0;
9472       const bool IsCmp = BId == Builtin::BImemcmp || BId == Builtin::BIbcmp;
9473       // "overwritten" if we're warning about the destination for any call
9474       // but memcmp; otherwise a verb appropriate to the call.
9475       if (ArgIdx != 0 || IsCmp) {
9476         if (BId == Builtin::BImemcpy)
9477           OperationType = 1;
9478         else if(BId == Builtin::BImemmove)
9479           OperationType = 2;
9480         else if (IsCmp)
9481           OperationType = 3;
9482       }
9483 
9484       DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
9485                           PDiag(diag::warn_dyn_class_memaccess)
9486                               << (IsCmp ? ArgIdx + 2 : ArgIdx) << FnName
9487                               << IsContained << ContainedRD << OperationType
9488                               << Call->getCallee()->getSourceRange());
9489     } else if (PointeeTy.hasNonTrivialObjCLifetime() &&
9490              BId != Builtin::BImemset)
9491       DiagRuntimeBehavior(
9492         Dest->getExprLoc(), Dest,
9493         PDiag(diag::warn_arc_object_memaccess)
9494           << ArgIdx << FnName << PointeeTy
9495           << Call->getCallee()->getSourceRange());
9496     else if (const auto *RT = PointeeTy->getAs<RecordType>()) {
9497       if ((BId == Builtin::BImemset || BId == Builtin::BIbzero) &&
9498           RT->getDecl()->isNonTrivialToPrimitiveDefaultInitialize()) {
9499         DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
9500                             PDiag(diag::warn_cstruct_memaccess)
9501                                 << ArgIdx << FnName << PointeeTy << 0);
9502         SearchNonTrivialToInitializeField::diag(PointeeTy, Dest, *this);
9503       } else if ((BId == Builtin::BImemcpy || BId == Builtin::BImemmove) &&
9504                  RT->getDecl()->isNonTrivialToPrimitiveCopy()) {
9505         DiagRuntimeBehavior(Dest->getExprLoc(), Dest,
9506                             PDiag(diag::warn_cstruct_memaccess)
9507                                 << ArgIdx << FnName << PointeeTy << 1);
9508         SearchNonTrivialToCopyField::diag(PointeeTy, Dest, *this);
9509       } else {
9510         continue;
9511       }
9512     } else
9513       continue;
9514 
9515     DiagRuntimeBehavior(
9516       Dest->getExprLoc(), Dest,
9517       PDiag(diag::note_bad_memaccess_silence)
9518         << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
9519     break;
9520   }
9521 }
9522 
9523 // A little helper routine: ignore addition and subtraction of integer literals.
9524 // This intentionally does not ignore all integer constant expressions because
9525 // we don't want to remove sizeof().
9526 static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) {
9527   Ex = Ex->IgnoreParenCasts();
9528 
9529   while (true) {
9530     const BinaryOperator * BO = dyn_cast<BinaryOperator>(Ex);
9531     if (!BO || !BO->isAdditiveOp())
9532       break;
9533 
9534     const Expr *RHS = BO->getRHS()->IgnoreParenCasts();
9535     const Expr *LHS = BO->getLHS()->IgnoreParenCasts();
9536 
9537     if (isa<IntegerLiteral>(RHS))
9538       Ex = LHS;
9539     else if (isa<IntegerLiteral>(LHS))
9540       Ex = RHS;
9541     else
9542       break;
9543   }
9544 
9545   return Ex;
9546 }
9547 
9548 static bool isConstantSizeArrayWithMoreThanOneElement(QualType Ty,
9549                                                       ASTContext &Context) {
9550   // Only handle constant-sized or VLAs, but not flexible members.
9551   if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(Ty)) {
9552     // Only issue the FIXIT for arrays of size > 1.
9553     if (CAT->getSize().getSExtValue() <= 1)
9554       return false;
9555   } else if (!Ty->isVariableArrayType()) {
9556     return false;
9557   }
9558   return true;
9559 }
9560 
9561 // Warn if the user has made the 'size' argument to strlcpy or strlcat
9562 // be the size of the source, instead of the destination.
9563 void Sema::CheckStrlcpycatArguments(const CallExpr *Call,
9564                                     IdentifierInfo *FnName) {
9565 
9566   // Don't crash if the user has the wrong number of arguments
9567   unsigned NumArgs = Call->getNumArgs();
9568   if ((NumArgs != 3) && (NumArgs != 4))
9569     return;
9570 
9571   const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context);
9572   const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context);
9573   const Expr *CompareWithSrc = nullptr;
9574 
9575   if (CheckMemorySizeofForComparison(*this, SizeArg, FnName,
9576                                      Call->getBeginLoc(), Call->getRParenLoc()))
9577     return;
9578 
9579   // Look for 'strlcpy(dst, x, sizeof(x))'
9580   if (const Expr *Ex = getSizeOfExprArg(SizeArg))
9581     CompareWithSrc = Ex;
9582   else {
9583     // Look for 'strlcpy(dst, x, strlen(x))'
9584     if (const CallExpr *SizeCall = dyn_cast<CallExpr>(SizeArg)) {
9585       if (SizeCall->getBuiltinCallee() == Builtin::BIstrlen &&
9586           SizeCall->getNumArgs() == 1)
9587         CompareWithSrc = ignoreLiteralAdditions(SizeCall->getArg(0), Context);
9588     }
9589   }
9590 
9591   if (!CompareWithSrc)
9592     return;
9593 
9594   // Determine if the argument to sizeof/strlen is equal to the source
9595   // argument.  In principle there's all kinds of things you could do
9596   // here, for instance creating an == expression and evaluating it with
9597   // EvaluateAsBooleanCondition, but this uses a more direct technique:
9598   const DeclRefExpr *SrcArgDRE = dyn_cast<DeclRefExpr>(SrcArg);
9599   if (!SrcArgDRE)
9600     return;
9601 
9602   const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc);
9603   if (!CompareWithSrcDRE ||
9604       SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl())
9605     return;
9606 
9607   const Expr *OriginalSizeArg = Call->getArg(2);
9608   Diag(CompareWithSrcDRE->getBeginLoc(), diag::warn_strlcpycat_wrong_size)
9609       << OriginalSizeArg->getSourceRange() << FnName;
9610 
9611   // Output a FIXIT hint if the destination is an array (rather than a
9612   // pointer to an array).  This could be enhanced to handle some
9613   // pointers if we know the actual size, like if DstArg is 'array+2'
9614   // we could say 'sizeof(array)-2'.
9615   const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts();
9616   if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context))
9617     return;
9618 
9619   SmallString<128> sizeString;
9620   llvm::raw_svector_ostream OS(sizeString);
9621   OS << "sizeof(";
9622   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
9623   OS << ")";
9624 
9625   Diag(OriginalSizeArg->getBeginLoc(), diag::note_strlcpycat_wrong_size)
9626       << FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(),
9627                                       OS.str());
9628 }
9629 
9630 /// Check if two expressions refer to the same declaration.
9631 static bool referToTheSameDecl(const Expr *E1, const Expr *E2) {
9632   if (const DeclRefExpr *D1 = dyn_cast_or_null<DeclRefExpr>(E1))
9633     if (const DeclRefExpr *D2 = dyn_cast_or_null<DeclRefExpr>(E2))
9634       return D1->getDecl() == D2->getDecl();
9635   return false;
9636 }
9637 
9638 static const Expr *getStrlenExprArg(const Expr *E) {
9639   if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
9640     const FunctionDecl *FD = CE->getDirectCallee();
9641     if (!FD || FD->getMemoryFunctionKind() != Builtin::BIstrlen)
9642       return nullptr;
9643     return CE->getArg(0)->IgnoreParenCasts();
9644   }
9645   return nullptr;
9646 }
9647 
9648 // Warn on anti-patterns as the 'size' argument to strncat.
9649 // The correct size argument should look like following:
9650 //   strncat(dst, src, sizeof(dst) - strlen(dest) - 1);
9651 void Sema::CheckStrncatArguments(const CallExpr *CE,
9652                                  IdentifierInfo *FnName) {
9653   // Don't crash if the user has the wrong number of arguments.
9654   if (CE->getNumArgs() < 3)
9655     return;
9656   const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts();
9657   const Expr *SrcArg = CE->getArg(1)->IgnoreParenCasts();
9658   const Expr *LenArg = CE->getArg(2)->IgnoreParenCasts();
9659 
9660   if (CheckMemorySizeofForComparison(*this, LenArg, FnName, CE->getBeginLoc(),
9661                                      CE->getRParenLoc()))
9662     return;
9663 
9664   // Identify common expressions, which are wrongly used as the size argument
9665   // to strncat and may lead to buffer overflows.
9666   unsigned PatternType = 0;
9667   if (const Expr *SizeOfArg = getSizeOfExprArg(LenArg)) {
9668     // - sizeof(dst)
9669     if (referToTheSameDecl(SizeOfArg, DstArg))
9670       PatternType = 1;
9671     // - sizeof(src)
9672     else if (referToTheSameDecl(SizeOfArg, SrcArg))
9673       PatternType = 2;
9674   } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(LenArg)) {
9675     if (BE->getOpcode() == BO_Sub) {
9676       const Expr *L = BE->getLHS()->IgnoreParenCasts();
9677       const Expr *R = BE->getRHS()->IgnoreParenCasts();
9678       // - sizeof(dst) - strlen(dst)
9679       if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) &&
9680           referToTheSameDecl(DstArg, getStrlenExprArg(R)))
9681         PatternType = 1;
9682       // - sizeof(src) - (anything)
9683       else if (referToTheSameDecl(SrcArg, getSizeOfExprArg(L)))
9684         PatternType = 2;
9685     }
9686   }
9687 
9688   if (PatternType == 0)
9689     return;
9690 
9691   // Generate the diagnostic.
9692   SourceLocation SL = LenArg->getBeginLoc();
9693   SourceRange SR = LenArg->getSourceRange();
9694   SourceManager &SM = getSourceManager();
9695 
9696   // If the function is defined as a builtin macro, do not show macro expansion.
9697   if (SM.isMacroArgExpansion(SL)) {
9698     SL = SM.getSpellingLoc(SL);
9699     SR = SourceRange(SM.getSpellingLoc(SR.getBegin()),
9700                      SM.getSpellingLoc(SR.getEnd()));
9701   }
9702 
9703   // Check if the destination is an array (rather than a pointer to an array).
9704   QualType DstTy = DstArg->getType();
9705   bool isKnownSizeArray = isConstantSizeArrayWithMoreThanOneElement(DstTy,
9706                                                                     Context);
9707   if (!isKnownSizeArray) {
9708     if (PatternType == 1)
9709       Diag(SL, diag::warn_strncat_wrong_size) << SR;
9710     else
9711       Diag(SL, diag::warn_strncat_src_size) << SR;
9712     return;
9713   }
9714 
9715   if (PatternType == 1)
9716     Diag(SL, diag::warn_strncat_large_size) << SR;
9717   else
9718     Diag(SL, diag::warn_strncat_src_size) << SR;
9719 
9720   SmallString<128> sizeString;
9721   llvm::raw_svector_ostream OS(sizeString);
9722   OS << "sizeof(";
9723   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
9724   OS << ") - ";
9725   OS << "strlen(";
9726   DstArg->printPretty(OS, nullptr, getPrintingPolicy());
9727   OS << ") - 1";
9728 
9729   Diag(SL, diag::note_strncat_wrong_size)
9730     << FixItHint::CreateReplacement(SR, OS.str());
9731 }
9732 
9733 void
9734 Sema::CheckReturnValExpr(Expr *RetValExp, QualType lhsType,
9735                          SourceLocation ReturnLoc,
9736                          bool isObjCMethod,
9737                          const AttrVec *Attrs,
9738                          const FunctionDecl *FD) {
9739   // Check if the return value is null but should not be.
9740   if (((Attrs && hasSpecificAttr<ReturnsNonNullAttr>(*Attrs)) ||
9741        (!isObjCMethod && isNonNullType(Context, lhsType))) &&
9742       CheckNonNullExpr(*this, RetValExp))
9743     Diag(ReturnLoc, diag::warn_null_ret)
9744       << (isObjCMethod ? 1 : 0) << RetValExp->getSourceRange();
9745 
9746   // C++11 [basic.stc.dynamic.allocation]p4:
9747   //   If an allocation function declared with a non-throwing
9748   //   exception-specification fails to allocate storage, it shall return
9749   //   a null pointer. Any other allocation function that fails to allocate
9750   //   storage shall indicate failure only by throwing an exception [...]
9751   if (FD) {
9752     OverloadedOperatorKind Op = FD->getOverloadedOperator();
9753     if (Op == OO_New || Op == OO_Array_New) {
9754       const FunctionProtoType *Proto
9755         = FD->getType()->castAs<FunctionProtoType>();
9756       if (!Proto->isNothrow(/*ResultIfDependent*/true) &&
9757           CheckNonNullExpr(*this, RetValExp))
9758         Diag(ReturnLoc, diag::warn_operator_new_returns_null)
9759           << FD << getLangOpts().CPlusPlus11;
9760     }
9761   }
9762 }
9763 
9764 //===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===//
9765 
9766 /// Check for comparisons of floating point operands using != and ==.
9767 /// Issue a warning if these are no self-comparisons, as they are not likely
9768 /// to do what the programmer intended.
9769 void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) {
9770   Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts();
9771   Expr* RightExprSansParen = RHS->IgnoreParenImpCasts();
9772 
9773   // Special case: check for x == x (which is OK).
9774   // Do not emit warnings for such cases.
9775   if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen))
9776     if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen))
9777       if (DRL->getDecl() == DRR->getDecl())
9778         return;
9779 
9780   // Special case: check for comparisons against literals that can be exactly
9781   //  represented by APFloat.  In such cases, do not emit a warning.  This
9782   //  is a heuristic: often comparison against such literals are used to
9783   //  detect if a value in a variable has not changed.  This clearly can
9784   //  lead to false negatives.
9785   if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) {
9786     if (FLL->isExact())
9787       return;
9788   } else
9789     if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen))
9790       if (FLR->isExact())
9791         return;
9792 
9793   // Check for comparisons with builtin types.
9794   if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
9795     if (CL->getBuiltinCallee())
9796       return;
9797 
9798   if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
9799     if (CR->getBuiltinCallee())
9800       return;
9801 
9802   // Emit the diagnostic.
9803   Diag(Loc, diag::warn_floatingpoint_eq)
9804     << LHS->getSourceRange() << RHS->getSourceRange();
9805 }
9806 
9807 //===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
9808 //===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
9809 
9810 namespace {
9811 
9812 /// Structure recording the 'active' range of an integer-valued
9813 /// expression.
9814 struct IntRange {
9815   /// The number of bits active in the int.
9816   unsigned Width;
9817 
9818   /// True if the int is known not to have negative values.
9819   bool NonNegative;
9820 
9821   IntRange(unsigned Width, bool NonNegative)
9822       : Width(Width), NonNegative(NonNegative) {}
9823 
9824   /// Returns the range of the bool type.
9825   static IntRange forBoolType() {
9826     return IntRange(1, true);
9827   }
9828 
9829   /// Returns the range of an opaque value of the given integral type.
9830   static IntRange forValueOfType(ASTContext &C, QualType T) {
9831     return forValueOfCanonicalType(C,
9832                           T->getCanonicalTypeInternal().getTypePtr());
9833   }
9834 
9835   /// Returns the range of an opaque value of a canonical integral type.
9836   static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
9837     assert(T->isCanonicalUnqualified());
9838 
9839     if (const VectorType *VT = dyn_cast<VectorType>(T))
9840       T = VT->getElementType().getTypePtr();
9841     if (const ComplexType *CT = dyn_cast<ComplexType>(T))
9842       T = CT->getElementType().getTypePtr();
9843     if (const AtomicType *AT = dyn_cast<AtomicType>(T))
9844       T = AT->getValueType().getTypePtr();
9845 
9846     if (!C.getLangOpts().CPlusPlus) {
9847       // For enum types in C code, use the underlying datatype.
9848       if (const EnumType *ET = dyn_cast<EnumType>(T))
9849         T = ET->getDecl()->getIntegerType().getDesugaredType(C).getTypePtr();
9850     } else if (const EnumType *ET = dyn_cast<EnumType>(T)) {
9851       // For enum types in C++, use the known bit width of the enumerators.
9852       EnumDecl *Enum = ET->getDecl();
9853       // In C++11, enums can have a fixed underlying type. Use this type to
9854       // compute the range.
9855       if (Enum->isFixed()) {
9856         return IntRange(C.getIntWidth(QualType(T, 0)),
9857                         !ET->isSignedIntegerOrEnumerationType());
9858       }
9859 
9860       unsigned NumPositive = Enum->getNumPositiveBits();
9861       unsigned NumNegative = Enum->getNumNegativeBits();
9862 
9863       if (NumNegative == 0)
9864         return IntRange(NumPositive, true/*NonNegative*/);
9865       else
9866         return IntRange(std::max(NumPositive + 1, NumNegative),
9867                         false/*NonNegative*/);
9868     }
9869 
9870     const BuiltinType *BT = cast<BuiltinType>(T);
9871     assert(BT->isInteger());
9872 
9873     return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
9874   }
9875 
9876   /// Returns the "target" range of a canonical integral type, i.e.
9877   /// the range of values expressible in the type.
9878   ///
9879   /// This matches forValueOfCanonicalType except that enums have the
9880   /// full range of their type, not the range of their enumerators.
9881   static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) {
9882     assert(T->isCanonicalUnqualified());
9883 
9884     if (const VectorType *VT = dyn_cast<VectorType>(T))
9885       T = VT->getElementType().getTypePtr();
9886     if (const ComplexType *CT = dyn_cast<ComplexType>(T))
9887       T = CT->getElementType().getTypePtr();
9888     if (const AtomicType *AT = dyn_cast<AtomicType>(T))
9889       T = AT->getValueType().getTypePtr();
9890     if (const EnumType *ET = dyn_cast<EnumType>(T))
9891       T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr();
9892 
9893     const BuiltinType *BT = cast<BuiltinType>(T);
9894     assert(BT->isInteger());
9895 
9896     return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
9897   }
9898 
9899   /// Returns the supremum of two ranges: i.e. their conservative merge.
9900   static IntRange join(IntRange L, IntRange R) {
9901     return IntRange(std::max(L.Width, R.Width),
9902                     L.NonNegative && R.NonNegative);
9903   }
9904 
9905   /// Returns the infinum of two ranges: i.e. their aggressive merge.
9906   static IntRange meet(IntRange L, IntRange R) {
9907     return IntRange(std::min(L.Width, R.Width),
9908                     L.NonNegative || R.NonNegative);
9909   }
9910 };
9911 
9912 } // namespace
9913 
9914 static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value,
9915                               unsigned MaxWidth) {
9916   if (value.isSigned() && value.isNegative())
9917     return IntRange(value.getMinSignedBits(), false);
9918 
9919   if (value.getBitWidth() > MaxWidth)
9920     value = value.trunc(MaxWidth);
9921 
9922   // isNonNegative() just checks the sign bit without considering
9923   // signedness.
9924   return IntRange(value.getActiveBits(), true);
9925 }
9926 
9927 static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
9928                               unsigned MaxWidth) {
9929   if (result.isInt())
9930     return GetValueRange(C, result.getInt(), MaxWidth);
9931 
9932   if (result.isVector()) {
9933     IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth);
9934     for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) {
9935       IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth);
9936       R = IntRange::join(R, El);
9937     }
9938     return R;
9939   }
9940 
9941   if (result.isComplexInt()) {
9942     IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth);
9943     IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth);
9944     return IntRange::join(R, I);
9945   }
9946 
9947   // This can happen with lossless casts to intptr_t of "based" lvalues.
9948   // Assume it might use arbitrary bits.
9949   // FIXME: The only reason we need to pass the type in here is to get
9950   // the sign right on this one case.  It would be nice if APValue
9951   // preserved this.
9952   assert(result.isLValue() || result.isAddrLabelDiff());
9953   return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
9954 }
9955 
9956 static QualType GetExprType(const Expr *E) {
9957   QualType Ty = E->getType();
9958   if (const AtomicType *AtomicRHS = Ty->getAs<AtomicType>())
9959     Ty = AtomicRHS->getValueType();
9960   return Ty;
9961 }
9962 
9963 /// Pseudo-evaluate the given integer expression, estimating the
9964 /// range of values it might take.
9965 ///
9966 /// \param MaxWidth - the width to which the value will be truncated
9967 static IntRange GetExprRange(ASTContext &C, const Expr *E, unsigned MaxWidth,
9968                              bool InConstantContext) {
9969   E = E->IgnoreParens();
9970 
9971   // Try a full evaluation first.
9972   Expr::EvalResult result;
9973   if (E->EvaluateAsRValue(result, C, InConstantContext))
9974     return GetValueRange(C, result.Val, GetExprType(E), MaxWidth);
9975 
9976   // I think we only want to look through implicit casts here; if the
9977   // user has an explicit widening cast, we should treat the value as
9978   // being of the new, wider type.
9979   if (const auto *CE = dyn_cast<ImplicitCastExpr>(E)) {
9980     if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue)
9981       return GetExprRange(C, CE->getSubExpr(), MaxWidth, InConstantContext);
9982 
9983     IntRange OutputTypeRange = IntRange::forValueOfType(C, GetExprType(CE));
9984 
9985     bool isIntegerCast = CE->getCastKind() == CK_IntegralCast ||
9986                          CE->getCastKind() == CK_BooleanToSignedIntegral;
9987 
9988     // Assume that non-integer casts can span the full range of the type.
9989     if (!isIntegerCast)
9990       return OutputTypeRange;
9991 
9992     IntRange SubRange = GetExprRange(C, CE->getSubExpr(),
9993                                      std::min(MaxWidth, OutputTypeRange.Width),
9994                                      InConstantContext);
9995 
9996     // Bail out if the subexpr's range is as wide as the cast type.
9997     if (SubRange.Width >= OutputTypeRange.Width)
9998       return OutputTypeRange;
9999 
10000     // Otherwise, we take the smaller width, and we're non-negative if
10001     // either the output type or the subexpr is.
10002     return IntRange(SubRange.Width,
10003                     SubRange.NonNegative || OutputTypeRange.NonNegative);
10004   }
10005 
10006   if (const auto *CO = dyn_cast<ConditionalOperator>(E)) {
10007     // If we can fold the condition, just take that operand.
10008     bool CondResult;
10009     if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
10010       return GetExprRange(C,
10011                           CondResult ? CO->getTrueExpr() : CO->getFalseExpr(),
10012                           MaxWidth, InConstantContext);
10013 
10014     // Otherwise, conservatively merge.
10015     IntRange L =
10016         GetExprRange(C, CO->getTrueExpr(), MaxWidth, InConstantContext);
10017     IntRange R =
10018         GetExprRange(C, CO->getFalseExpr(), MaxWidth, InConstantContext);
10019     return IntRange::join(L, R);
10020   }
10021 
10022   if (const auto *BO = dyn_cast<BinaryOperator>(E)) {
10023     switch (BO->getOpcode()) {
10024     case BO_Cmp:
10025       llvm_unreachable("builtin <=> should have class type");
10026 
10027     // Boolean-valued operations are single-bit and positive.
10028     case BO_LAnd:
10029     case BO_LOr:
10030     case BO_LT:
10031     case BO_GT:
10032     case BO_LE:
10033     case BO_GE:
10034     case BO_EQ:
10035     case BO_NE:
10036       return IntRange::forBoolType();
10037 
10038     // The type of the assignments is the type of the LHS, so the RHS
10039     // is not necessarily the same type.
10040     case BO_MulAssign:
10041     case BO_DivAssign:
10042     case BO_RemAssign:
10043     case BO_AddAssign:
10044     case BO_SubAssign:
10045     case BO_XorAssign:
10046     case BO_OrAssign:
10047       // TODO: bitfields?
10048       return IntRange::forValueOfType(C, GetExprType(E));
10049 
10050     // Simple assignments just pass through the RHS, which will have
10051     // been coerced to the LHS type.
10052     case BO_Assign:
10053       // TODO: bitfields?
10054       return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
10055 
10056     // Operations with opaque sources are black-listed.
10057     case BO_PtrMemD:
10058     case BO_PtrMemI:
10059       return IntRange::forValueOfType(C, GetExprType(E));
10060 
10061     // Bitwise-and uses the *infinum* of the two source ranges.
10062     case BO_And:
10063     case BO_AndAssign:
10064       return IntRange::meet(
10065           GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext),
10066           GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext));
10067 
10068     // Left shift gets black-listed based on a judgement call.
10069     case BO_Shl:
10070       // ...except that we want to treat '1 << (blah)' as logically
10071       // positive.  It's an important idiom.
10072       if (IntegerLiteral *I
10073             = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) {
10074         if (I->getValue() == 1) {
10075           IntRange R = IntRange::forValueOfType(C, GetExprType(E));
10076           return IntRange(R.Width, /*NonNegative*/ true);
10077         }
10078       }
10079       LLVM_FALLTHROUGH;
10080 
10081     case BO_ShlAssign:
10082       return IntRange::forValueOfType(C, GetExprType(E));
10083 
10084     // Right shift by a constant can narrow its left argument.
10085     case BO_Shr:
10086     case BO_ShrAssign: {
10087       IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext);
10088 
10089       // If the shift amount is a positive constant, drop the width by
10090       // that much.
10091       llvm::APSInt shift;
10092       if (BO->getRHS()->isIntegerConstantExpr(shift, C) &&
10093           shift.isNonNegative()) {
10094         unsigned zext = shift.getZExtValue();
10095         if (zext >= L.Width)
10096           L.Width = (L.NonNegative ? 0 : 1);
10097         else
10098           L.Width -= zext;
10099       }
10100 
10101       return L;
10102     }
10103 
10104     // Comma acts as its right operand.
10105     case BO_Comma:
10106       return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
10107 
10108     // Black-list pointer subtractions.
10109     case BO_Sub:
10110       if (BO->getLHS()->getType()->isPointerType())
10111         return IntRange::forValueOfType(C, GetExprType(E));
10112       break;
10113 
10114     // The width of a division result is mostly determined by the size
10115     // of the LHS.
10116     case BO_Div: {
10117       // Don't 'pre-truncate' the operands.
10118       unsigned opWidth = C.getIntWidth(GetExprType(E));
10119       IntRange L = GetExprRange(C, BO->getLHS(), opWidth, InConstantContext);
10120 
10121       // If the divisor is constant, use that.
10122       llvm::APSInt divisor;
10123       if (BO->getRHS()->isIntegerConstantExpr(divisor, C)) {
10124         unsigned log2 = divisor.logBase2(); // floor(log_2(divisor))
10125         if (log2 >= L.Width)
10126           L.Width = (L.NonNegative ? 0 : 1);
10127         else
10128           L.Width = std::min(L.Width - log2, MaxWidth);
10129         return L;
10130       }
10131 
10132       // Otherwise, just use the LHS's width.
10133       IntRange R = GetExprRange(C, BO->getRHS(), opWidth, InConstantContext);
10134       return IntRange(L.Width, L.NonNegative && R.NonNegative);
10135     }
10136 
10137     // The result of a remainder can't be larger than the result of
10138     // either side.
10139     case BO_Rem: {
10140       // Don't 'pre-truncate' the operands.
10141       unsigned opWidth = C.getIntWidth(GetExprType(E));
10142       IntRange L = GetExprRange(C, BO->getLHS(), opWidth, InConstantContext);
10143       IntRange R = GetExprRange(C, BO->getRHS(), opWidth, InConstantContext);
10144 
10145       IntRange meet = IntRange::meet(L, R);
10146       meet.Width = std::min(meet.Width, MaxWidth);
10147       return meet;
10148     }
10149 
10150     // The default behavior is okay for these.
10151     case BO_Mul:
10152     case BO_Add:
10153     case BO_Xor:
10154     case BO_Or:
10155       break;
10156     }
10157 
10158     // The default case is to treat the operation as if it were closed
10159     // on the narrowest type that encompasses both operands.
10160     IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext);
10161     IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
10162     return IntRange::join(L, R);
10163   }
10164 
10165   if (const auto *UO = dyn_cast<UnaryOperator>(E)) {
10166     switch (UO->getOpcode()) {
10167     // Boolean-valued operations are white-listed.
10168     case UO_LNot:
10169       return IntRange::forBoolType();
10170 
10171     // Operations with opaque sources are black-listed.
10172     case UO_Deref:
10173     case UO_AddrOf: // should be impossible
10174       return IntRange::forValueOfType(C, GetExprType(E));
10175 
10176     default:
10177       return GetExprRange(C, UO->getSubExpr(), MaxWidth, InConstantContext);
10178     }
10179   }
10180 
10181   if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
10182     return GetExprRange(C, OVE->getSourceExpr(), MaxWidth, InConstantContext);
10183 
10184   if (const auto *BitField = E->getSourceBitField())
10185     return IntRange(BitField->getBitWidthValue(C),
10186                     BitField->getType()->isUnsignedIntegerOrEnumerationType());
10187 
10188   return IntRange::forValueOfType(C, GetExprType(E));
10189 }
10190 
10191 static IntRange GetExprRange(ASTContext &C, const Expr *E,
10192                              bool InConstantContext) {
10193   return GetExprRange(C, E, C.getIntWidth(GetExprType(E)), InConstantContext);
10194 }
10195 
10196 /// Checks whether the given value, which currently has the given
10197 /// source semantics, has the same value when coerced through the
10198 /// target semantics.
10199 static bool IsSameFloatAfterCast(const llvm::APFloat &value,
10200                                  const llvm::fltSemantics &Src,
10201                                  const llvm::fltSemantics &Tgt) {
10202   llvm::APFloat truncated = value;
10203 
10204   bool ignored;
10205   truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored);
10206   truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored);
10207 
10208   return truncated.bitwiseIsEqual(value);
10209 }
10210 
10211 /// Checks whether the given value, which currently has the given
10212 /// source semantics, has the same value when coerced through the
10213 /// target semantics.
10214 ///
10215 /// The value might be a vector of floats (or a complex number).
10216 static bool IsSameFloatAfterCast(const APValue &value,
10217                                  const llvm::fltSemantics &Src,
10218                                  const llvm::fltSemantics &Tgt) {
10219   if (value.isFloat())
10220     return IsSameFloatAfterCast(value.getFloat(), Src, Tgt);
10221 
10222   if (value.isVector()) {
10223     for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i)
10224       if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt))
10225         return false;
10226     return true;
10227   }
10228 
10229   assert(value.isComplexFloat());
10230   return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) &&
10231           IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt));
10232 }
10233 
10234 static void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC,
10235                                        bool IsListInit = false);
10236 
10237 static bool IsEnumConstOrFromMacro(Sema &S, Expr *E) {
10238   // Suppress cases where we are comparing against an enum constant.
10239   if (const DeclRefExpr *DR =
10240       dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
10241     if (isa<EnumConstantDecl>(DR->getDecl()))
10242       return true;
10243 
10244   // Suppress cases where the value is expanded from a macro, unless that macro
10245   // is how a language represents a boolean literal. This is the case in both C
10246   // and Objective-C.
10247   SourceLocation BeginLoc = E->getBeginLoc();
10248   if (BeginLoc.isMacroID()) {
10249     StringRef MacroName = Lexer::getImmediateMacroName(
10250         BeginLoc, S.getSourceManager(), S.getLangOpts());
10251     return MacroName != "YES" && MacroName != "NO" &&
10252            MacroName != "true" && MacroName != "false";
10253   }
10254 
10255   return false;
10256 }
10257 
10258 static bool isKnownToHaveUnsignedValue(Expr *E) {
10259   return E->getType()->isIntegerType() &&
10260          (!E->getType()->isSignedIntegerType() ||
10261           !E->IgnoreParenImpCasts()->getType()->isSignedIntegerType());
10262 }
10263 
10264 namespace {
10265 /// The promoted range of values of a type. In general this has the
10266 /// following structure:
10267 ///
10268 ///     |-----------| . . . |-----------|
10269 ///     ^           ^       ^           ^
10270 ///    Min       HoleMin  HoleMax      Max
10271 ///
10272 /// ... where there is only a hole if a signed type is promoted to unsigned
10273 /// (in which case Min and Max are the smallest and largest representable
10274 /// values).
10275 struct PromotedRange {
10276   // Min, or HoleMax if there is a hole.
10277   llvm::APSInt PromotedMin;
10278   // Max, or HoleMin if there is a hole.
10279   llvm::APSInt PromotedMax;
10280 
10281   PromotedRange(IntRange R, unsigned BitWidth, bool Unsigned) {
10282     if (R.Width == 0)
10283       PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned);
10284     else if (R.Width >= BitWidth && !Unsigned) {
10285       // Promotion made the type *narrower*. This happens when promoting
10286       // a < 32-bit unsigned / <= 32-bit signed bit-field to 'signed int'.
10287       // Treat all values of 'signed int' as being in range for now.
10288       PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned);
10289       PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned);
10290     } else {
10291       PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative)
10292                         .extOrTrunc(BitWidth);
10293       PromotedMin.setIsUnsigned(Unsigned);
10294 
10295       PromotedMax = llvm::APSInt::getMaxValue(R.Width, R.NonNegative)
10296                         .extOrTrunc(BitWidth);
10297       PromotedMax.setIsUnsigned(Unsigned);
10298     }
10299   }
10300 
10301   // Determine whether this range is contiguous (has no hole).
10302   bool isContiguous() const { return PromotedMin <= PromotedMax; }
10303 
10304   // Where a constant value is within the range.
10305   enum ComparisonResult {
10306     LT = 0x1,
10307     LE = 0x2,
10308     GT = 0x4,
10309     GE = 0x8,
10310     EQ = 0x10,
10311     NE = 0x20,
10312     InRangeFlag = 0x40,
10313 
10314     Less = LE | LT | NE,
10315     Min = LE | InRangeFlag,
10316     InRange = InRangeFlag,
10317     Max = GE | InRangeFlag,
10318     Greater = GE | GT | NE,
10319 
10320     OnlyValue = LE | GE | EQ | InRangeFlag,
10321     InHole = NE
10322   };
10323 
10324   ComparisonResult compare(const llvm::APSInt &Value) const {
10325     assert(Value.getBitWidth() == PromotedMin.getBitWidth() &&
10326            Value.isUnsigned() == PromotedMin.isUnsigned());
10327     if (!isContiguous()) {
10328       assert(Value.isUnsigned() && "discontiguous range for signed compare");
10329       if (Value.isMinValue()) return Min;
10330       if (Value.isMaxValue()) return Max;
10331       if (Value >= PromotedMin) return InRange;
10332       if (Value <= PromotedMax) return InRange;
10333       return InHole;
10334     }
10335 
10336     switch (llvm::APSInt::compareValues(Value, PromotedMin)) {
10337     case -1: return Less;
10338     case 0: return PromotedMin == PromotedMax ? OnlyValue : Min;
10339     case 1:
10340       switch (llvm::APSInt::compareValues(Value, PromotedMax)) {
10341       case -1: return InRange;
10342       case 0: return Max;
10343       case 1: return Greater;
10344       }
10345     }
10346 
10347     llvm_unreachable("impossible compare result");
10348   }
10349 
10350   static llvm::Optional<StringRef>
10351   constantValue(BinaryOperatorKind Op, ComparisonResult R, bool ConstantOnRHS) {
10352     if (Op == BO_Cmp) {
10353       ComparisonResult LTFlag = LT, GTFlag = GT;
10354       if (ConstantOnRHS) std::swap(LTFlag, GTFlag);
10355 
10356       if (R & EQ) return StringRef("'std::strong_ordering::equal'");
10357       if (R & LTFlag) return StringRef("'std::strong_ordering::less'");
10358       if (R & GTFlag) return StringRef("'std::strong_ordering::greater'");
10359       return llvm::None;
10360     }
10361 
10362     ComparisonResult TrueFlag, FalseFlag;
10363     if (Op == BO_EQ) {
10364       TrueFlag = EQ;
10365       FalseFlag = NE;
10366     } else if (Op == BO_NE) {
10367       TrueFlag = NE;
10368       FalseFlag = EQ;
10369     } else {
10370       if ((Op == BO_LT || Op == BO_GE) ^ ConstantOnRHS) {
10371         TrueFlag = LT;
10372         FalseFlag = GE;
10373       } else {
10374         TrueFlag = GT;
10375         FalseFlag = LE;
10376       }
10377       if (Op == BO_GE || Op == BO_LE)
10378         std::swap(TrueFlag, FalseFlag);
10379     }
10380     if (R & TrueFlag)
10381       return StringRef("true");
10382     if (R & FalseFlag)
10383       return StringRef("false");
10384     return llvm::None;
10385   }
10386 };
10387 }
10388 
10389 static bool HasEnumType(Expr *E) {
10390   // Strip off implicit integral promotions.
10391   while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
10392     if (ICE->getCastKind() != CK_IntegralCast &&
10393         ICE->getCastKind() != CK_NoOp)
10394       break;
10395     E = ICE->getSubExpr();
10396   }
10397 
10398   return E->getType()->isEnumeralType();
10399 }
10400 
10401 static int classifyConstantValue(Expr *Constant) {
10402   // The values of this enumeration are used in the diagnostics
10403   // diag::warn_out_of_range_compare and diag::warn_tautological_bool_compare.
10404   enum ConstantValueKind {
10405     Miscellaneous = 0,
10406     LiteralTrue,
10407     LiteralFalse
10408   };
10409   if (auto *BL = dyn_cast<CXXBoolLiteralExpr>(Constant))
10410     return BL->getValue() ? ConstantValueKind::LiteralTrue
10411                           : ConstantValueKind::LiteralFalse;
10412   return ConstantValueKind::Miscellaneous;
10413 }
10414 
10415 static bool CheckTautologicalComparison(Sema &S, BinaryOperator *E,
10416                                         Expr *Constant, Expr *Other,
10417                                         const llvm::APSInt &Value,
10418                                         bool RhsConstant) {
10419   if (S.inTemplateInstantiation())
10420     return false;
10421 
10422   Expr *OriginalOther = Other;
10423 
10424   Constant = Constant->IgnoreParenImpCasts();
10425   Other = Other->IgnoreParenImpCasts();
10426 
10427   // Suppress warnings on tautological comparisons between values of the same
10428   // enumeration type. There are only two ways we could warn on this:
10429   //  - If the constant is outside the range of representable values of
10430   //    the enumeration. In such a case, we should warn about the cast
10431   //    to enumeration type, not about the comparison.
10432   //  - If the constant is the maximum / minimum in-range value. For an
10433   //    enumeratin type, such comparisons can be meaningful and useful.
10434   if (Constant->getType()->isEnumeralType() &&
10435       S.Context.hasSameUnqualifiedType(Constant->getType(), Other->getType()))
10436     return false;
10437 
10438   // TODO: Investigate using GetExprRange() to get tighter bounds
10439   // on the bit ranges.
10440   QualType OtherT = Other->getType();
10441   if (const auto *AT = OtherT->getAs<AtomicType>())
10442     OtherT = AT->getValueType();
10443   IntRange OtherRange = IntRange::forValueOfType(S.Context, OtherT);
10444 
10445   // Special case for ObjC BOOL on targets where its a typedef for a signed char
10446   // (Namely, macOS).
10447   bool IsObjCSignedCharBool = S.getLangOpts().ObjC &&
10448                               S.NSAPIObj->isObjCBOOLType(OtherT) &&
10449                               OtherT->isSpecificBuiltinType(BuiltinType::SChar);
10450 
10451   // Whether we're treating Other as being a bool because of the form of
10452   // expression despite it having another type (typically 'int' in C).
10453   bool OtherIsBooleanDespiteType =
10454       !OtherT->isBooleanType() && Other->isKnownToHaveBooleanValue();
10455   if (OtherIsBooleanDespiteType || IsObjCSignedCharBool)
10456     OtherRange = IntRange::forBoolType();
10457 
10458   // Determine the promoted range of the other type and see if a comparison of
10459   // the constant against that range is tautological.
10460   PromotedRange OtherPromotedRange(OtherRange, Value.getBitWidth(),
10461                                    Value.isUnsigned());
10462   auto Cmp = OtherPromotedRange.compare(Value);
10463   auto Result = PromotedRange::constantValue(E->getOpcode(), Cmp, RhsConstant);
10464   if (!Result)
10465     return false;
10466 
10467   // Suppress the diagnostic for an in-range comparison if the constant comes
10468   // from a macro or enumerator. We don't want to diagnose
10469   //
10470   //   some_long_value <= INT_MAX
10471   //
10472   // when sizeof(int) == sizeof(long).
10473   bool InRange = Cmp & PromotedRange::InRangeFlag;
10474   if (InRange && IsEnumConstOrFromMacro(S, Constant))
10475     return false;
10476 
10477   // If this is a comparison to an enum constant, include that
10478   // constant in the diagnostic.
10479   const EnumConstantDecl *ED = nullptr;
10480   if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Constant))
10481     ED = dyn_cast<EnumConstantDecl>(DR->getDecl());
10482 
10483   // Should be enough for uint128 (39 decimal digits)
10484   SmallString<64> PrettySourceValue;
10485   llvm::raw_svector_ostream OS(PrettySourceValue);
10486   if (ED) {
10487     OS << '\'' << *ED << "' (" << Value << ")";
10488   } else if (auto *BL = dyn_cast<ObjCBoolLiteralExpr>(
10489                Constant->IgnoreParenImpCasts())) {
10490     OS << (BL->getValue() ? "YES" : "NO");
10491   } else {
10492     OS << Value;
10493   }
10494 
10495   if (IsObjCSignedCharBool) {
10496     S.DiagRuntimeBehavior(E->getOperatorLoc(), E,
10497                           S.PDiag(diag::warn_tautological_compare_objc_bool)
10498                               << OS.str() << *Result);
10499     return true;
10500   }
10501 
10502   // FIXME: We use a somewhat different formatting for the in-range cases and
10503   // cases involving boolean values for historical reasons. We should pick a
10504   // consistent way of presenting these diagnostics.
10505   if (!InRange || Other->isKnownToHaveBooleanValue()) {
10506 
10507     S.DiagRuntimeBehavior(
10508         E->getOperatorLoc(), E,
10509         S.PDiag(!InRange ? diag::warn_out_of_range_compare
10510                          : diag::warn_tautological_bool_compare)
10511             << OS.str() << classifyConstantValue(Constant) << OtherT
10512             << OtherIsBooleanDespiteType << *Result
10513             << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange());
10514   } else {
10515     unsigned Diag = (isKnownToHaveUnsignedValue(OriginalOther) && Value == 0)
10516                         ? (HasEnumType(OriginalOther)
10517                                ? diag::warn_unsigned_enum_always_true_comparison
10518                                : diag::warn_unsigned_always_true_comparison)
10519                         : diag::warn_tautological_constant_compare;
10520 
10521     S.Diag(E->getOperatorLoc(), Diag)
10522         << RhsConstant << OtherT << E->getOpcodeStr() << OS.str() << *Result
10523         << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange();
10524   }
10525 
10526   return true;
10527 }
10528 
10529 /// Analyze the operands of the given comparison.  Implements the
10530 /// fallback case from AnalyzeComparison.
10531 static void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
10532   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
10533   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
10534 }
10535 
10536 /// Implements -Wsign-compare.
10537 ///
10538 /// \param E the binary operator to check for warnings
10539 static void AnalyzeComparison(Sema &S, BinaryOperator *E) {
10540   // The type the comparison is being performed in.
10541   QualType T = E->getLHS()->getType();
10542 
10543   // Only analyze comparison operators where both sides have been converted to
10544   // the same type.
10545   if (!S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType()))
10546     return AnalyzeImpConvsInComparison(S, E);
10547 
10548   // Don't analyze value-dependent comparisons directly.
10549   if (E->isValueDependent())
10550     return AnalyzeImpConvsInComparison(S, E);
10551 
10552   Expr *LHS = E->getLHS();
10553   Expr *RHS = E->getRHS();
10554 
10555   if (T->isIntegralType(S.Context)) {
10556     llvm::APSInt RHSValue;
10557     llvm::APSInt LHSValue;
10558 
10559     bool IsRHSIntegralLiteral = RHS->isIntegerConstantExpr(RHSValue, S.Context);
10560     bool IsLHSIntegralLiteral = LHS->isIntegerConstantExpr(LHSValue, S.Context);
10561 
10562     // We don't care about expressions whose result is a constant.
10563     if (IsRHSIntegralLiteral && IsLHSIntegralLiteral)
10564       return AnalyzeImpConvsInComparison(S, E);
10565 
10566     // We only care about expressions where just one side is literal
10567     if (IsRHSIntegralLiteral ^ IsLHSIntegralLiteral) {
10568       // Is the constant on the RHS or LHS?
10569       const bool RhsConstant = IsRHSIntegralLiteral;
10570       Expr *Const = RhsConstant ? RHS : LHS;
10571       Expr *Other = RhsConstant ? LHS : RHS;
10572       const llvm::APSInt &Value = RhsConstant ? RHSValue : LHSValue;
10573 
10574       // Check whether an integer constant comparison results in a value
10575       // of 'true' or 'false'.
10576       if (CheckTautologicalComparison(S, E, Const, Other, Value, RhsConstant))
10577         return AnalyzeImpConvsInComparison(S, E);
10578     }
10579   }
10580 
10581   if (!T->hasUnsignedIntegerRepresentation()) {
10582     // We don't do anything special if this isn't an unsigned integral
10583     // comparison:  we're only interested in integral comparisons, and
10584     // signed comparisons only happen in cases we don't care to warn about.
10585     return AnalyzeImpConvsInComparison(S, E);
10586   }
10587 
10588   LHS = LHS->IgnoreParenImpCasts();
10589   RHS = RHS->IgnoreParenImpCasts();
10590 
10591   if (!S.getLangOpts().CPlusPlus) {
10592     // Avoid warning about comparison of integers with different signs when
10593     // RHS/LHS has a `typeof(E)` type whose sign is different from the sign of
10594     // the type of `E`.
10595     if (const auto *TET = dyn_cast<TypeOfExprType>(LHS->getType()))
10596       LHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts();
10597     if (const auto *TET = dyn_cast<TypeOfExprType>(RHS->getType()))
10598       RHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts();
10599   }
10600 
10601   // Check to see if one of the (unmodified) operands is of different
10602   // signedness.
10603   Expr *signedOperand, *unsignedOperand;
10604   if (LHS->getType()->hasSignedIntegerRepresentation()) {
10605     assert(!RHS->getType()->hasSignedIntegerRepresentation() &&
10606            "unsigned comparison between two signed integer expressions?");
10607     signedOperand = LHS;
10608     unsignedOperand = RHS;
10609   } else if (RHS->getType()->hasSignedIntegerRepresentation()) {
10610     signedOperand = RHS;
10611     unsignedOperand = LHS;
10612   } else {
10613     return AnalyzeImpConvsInComparison(S, E);
10614   }
10615 
10616   // Otherwise, calculate the effective range of the signed operand.
10617   IntRange signedRange =
10618       GetExprRange(S.Context, signedOperand, S.isConstantEvaluated());
10619 
10620   // Go ahead and analyze implicit conversions in the operands.  Note
10621   // that we skip the implicit conversions on both sides.
10622   AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc());
10623   AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc());
10624 
10625   // If the signed range is non-negative, -Wsign-compare won't fire.
10626   if (signedRange.NonNegative)
10627     return;
10628 
10629   // For (in)equality comparisons, if the unsigned operand is a
10630   // constant which cannot collide with a overflowed signed operand,
10631   // then reinterpreting the signed operand as unsigned will not
10632   // change the result of the comparison.
10633   if (E->isEqualityOp()) {
10634     unsigned comparisonWidth = S.Context.getIntWidth(T);
10635     IntRange unsignedRange =
10636         GetExprRange(S.Context, unsignedOperand, S.isConstantEvaluated());
10637 
10638     // We should never be unable to prove that the unsigned operand is
10639     // non-negative.
10640     assert(unsignedRange.NonNegative && "unsigned range includes negative?");
10641 
10642     if (unsignedRange.Width < comparisonWidth)
10643       return;
10644   }
10645 
10646   S.DiagRuntimeBehavior(E->getOperatorLoc(), E,
10647                         S.PDiag(diag::warn_mixed_sign_comparison)
10648                             << LHS->getType() << RHS->getType()
10649                             << LHS->getSourceRange() << RHS->getSourceRange());
10650 }
10651 
10652 /// Analyzes an attempt to assign the given value to a bitfield.
10653 ///
10654 /// Returns true if there was something fishy about the attempt.
10655 static bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
10656                                       SourceLocation InitLoc) {
10657   assert(Bitfield->isBitField());
10658   if (Bitfield->isInvalidDecl())
10659     return false;
10660 
10661   // White-list bool bitfields.
10662   QualType BitfieldType = Bitfield->getType();
10663   if (BitfieldType->isBooleanType())
10664      return false;
10665 
10666   if (BitfieldType->isEnumeralType()) {
10667     EnumDecl *BitfieldEnumDecl = BitfieldType->getAs<EnumType>()->getDecl();
10668     // If the underlying enum type was not explicitly specified as an unsigned
10669     // type and the enum contain only positive values, MSVC++ will cause an
10670     // inconsistency by storing this as a signed type.
10671     if (S.getLangOpts().CPlusPlus11 &&
10672         !BitfieldEnumDecl->getIntegerTypeSourceInfo() &&
10673         BitfieldEnumDecl->getNumPositiveBits() > 0 &&
10674         BitfieldEnumDecl->getNumNegativeBits() == 0) {
10675       S.Diag(InitLoc, diag::warn_no_underlying_type_specified_for_enum_bitfield)
10676         << BitfieldEnumDecl->getNameAsString();
10677     }
10678   }
10679 
10680   if (Bitfield->getType()->isBooleanType())
10681     return false;
10682 
10683   // Ignore value- or type-dependent expressions.
10684   if (Bitfield->getBitWidth()->isValueDependent() ||
10685       Bitfield->getBitWidth()->isTypeDependent() ||
10686       Init->isValueDependent() ||
10687       Init->isTypeDependent())
10688     return false;
10689 
10690   Expr *OriginalInit = Init->IgnoreParenImpCasts();
10691   unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
10692 
10693   Expr::EvalResult Result;
10694   if (!OriginalInit->EvaluateAsInt(Result, S.Context,
10695                                    Expr::SE_AllowSideEffects)) {
10696     // The RHS is not constant.  If the RHS has an enum type, make sure the
10697     // bitfield is wide enough to hold all the values of the enum without
10698     // truncation.
10699     if (const auto *EnumTy = OriginalInit->getType()->getAs<EnumType>()) {
10700       EnumDecl *ED = EnumTy->getDecl();
10701       bool SignedBitfield = BitfieldType->isSignedIntegerType();
10702 
10703       // Enum types are implicitly signed on Windows, so check if there are any
10704       // negative enumerators to see if the enum was intended to be signed or
10705       // not.
10706       bool SignedEnum = ED->getNumNegativeBits() > 0;
10707 
10708       // Check for surprising sign changes when assigning enum values to a
10709       // bitfield of different signedness.  If the bitfield is signed and we
10710       // have exactly the right number of bits to store this unsigned enum,
10711       // suggest changing the enum to an unsigned type. This typically happens
10712       // on Windows where unfixed enums always use an underlying type of 'int'.
10713       unsigned DiagID = 0;
10714       if (SignedEnum && !SignedBitfield) {
10715         DiagID = diag::warn_unsigned_bitfield_assigned_signed_enum;
10716       } else if (SignedBitfield && !SignedEnum &&
10717                  ED->getNumPositiveBits() == FieldWidth) {
10718         DiagID = diag::warn_signed_bitfield_enum_conversion;
10719       }
10720 
10721       if (DiagID) {
10722         S.Diag(InitLoc, DiagID) << Bitfield << ED;
10723         TypeSourceInfo *TSI = Bitfield->getTypeSourceInfo();
10724         SourceRange TypeRange =
10725             TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange();
10726         S.Diag(Bitfield->getTypeSpecStartLoc(), diag::note_change_bitfield_sign)
10727             << SignedEnum << TypeRange;
10728       }
10729 
10730       // Compute the required bitwidth. If the enum has negative values, we need
10731       // one more bit than the normal number of positive bits to represent the
10732       // sign bit.
10733       unsigned BitsNeeded = SignedEnum ? std::max(ED->getNumPositiveBits() + 1,
10734                                                   ED->getNumNegativeBits())
10735                                        : ED->getNumPositiveBits();
10736 
10737       // Check the bitwidth.
10738       if (BitsNeeded > FieldWidth) {
10739         Expr *WidthExpr = Bitfield->getBitWidth();
10740         S.Diag(InitLoc, diag::warn_bitfield_too_small_for_enum)
10741             << Bitfield << ED;
10742         S.Diag(WidthExpr->getExprLoc(), diag::note_widen_bitfield)
10743             << BitsNeeded << ED << WidthExpr->getSourceRange();
10744       }
10745     }
10746 
10747     return false;
10748   }
10749 
10750   llvm::APSInt Value = Result.Val.getInt();
10751 
10752   unsigned OriginalWidth = Value.getBitWidth();
10753 
10754   if (!Value.isSigned() || Value.isNegative())
10755     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(OriginalInit))
10756       if (UO->getOpcode() == UO_Minus || UO->getOpcode() == UO_Not)
10757         OriginalWidth = Value.getMinSignedBits();
10758 
10759   if (OriginalWidth <= FieldWidth)
10760     return false;
10761 
10762   // Compute the value which the bitfield will contain.
10763   llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
10764   TruncatedValue.setIsSigned(BitfieldType->isSignedIntegerType());
10765 
10766   // Check whether the stored value is equal to the original value.
10767   TruncatedValue = TruncatedValue.extend(OriginalWidth);
10768   if (llvm::APSInt::isSameValue(Value, TruncatedValue))
10769     return false;
10770 
10771   // Special-case bitfields of width 1: booleans are naturally 0/1, and
10772   // therefore don't strictly fit into a signed bitfield of width 1.
10773   if (FieldWidth == 1 && Value == 1)
10774     return false;
10775 
10776   std::string PrettyValue = Value.toString(10);
10777   std::string PrettyTrunc = TruncatedValue.toString(10);
10778 
10779   S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant)
10780     << PrettyValue << PrettyTrunc << OriginalInit->getType()
10781     << Init->getSourceRange();
10782 
10783   return true;
10784 }
10785 
10786 /// Analyze the given simple or compound assignment for warning-worthy
10787 /// operations.
10788 static void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
10789   // Just recurse on the LHS.
10790   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
10791 
10792   // We want to recurse on the RHS as normal unless we're assigning to
10793   // a bitfield.
10794   if (FieldDecl *Bitfield = E->getLHS()->getSourceBitField()) {
10795     if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
10796                                   E->getOperatorLoc())) {
10797       // Recurse, ignoring any implicit conversions on the RHS.
10798       return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
10799                                         E->getOperatorLoc());
10800     }
10801   }
10802 
10803   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
10804 
10805   // Diagnose implicitly sequentially-consistent atomic assignment.
10806   if (E->getLHS()->getType()->isAtomicType())
10807     S.Diag(E->getRHS()->getBeginLoc(), diag::warn_atomic_implicit_seq_cst);
10808 }
10809 
10810 /// Diagnose an implicit cast;  purely a helper for CheckImplicitConversion.
10811 static void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
10812                             SourceLocation CContext, unsigned diag,
10813                             bool pruneControlFlow = false) {
10814   if (pruneControlFlow) {
10815     S.DiagRuntimeBehavior(E->getExprLoc(), E,
10816                           S.PDiag(diag)
10817                               << SourceType << T << E->getSourceRange()
10818                               << SourceRange(CContext));
10819     return;
10820   }
10821   S.Diag(E->getExprLoc(), diag)
10822     << SourceType << T << E->getSourceRange() << SourceRange(CContext);
10823 }
10824 
10825 /// Diagnose an implicit cast;  purely a helper for CheckImplicitConversion.
10826 static void DiagnoseImpCast(Sema &S, Expr *E, QualType T,
10827                             SourceLocation CContext,
10828                             unsigned diag, bool pruneControlFlow = false) {
10829   DiagnoseImpCast(S, E, E->getType(), T, CContext, diag, pruneControlFlow);
10830 }
10831 
10832 /// Diagnose an implicit cast from a floating point value to an integer value.
10833 static void DiagnoseFloatingImpCast(Sema &S, Expr *E, QualType T,
10834                                     SourceLocation CContext) {
10835   const bool IsBool = T->isSpecificBuiltinType(BuiltinType::Bool);
10836   const bool PruneWarnings = S.inTemplateInstantiation();
10837 
10838   Expr *InnerE = E->IgnoreParenImpCasts();
10839   // We also want to warn on, e.g., "int i = -1.234"
10840   if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE))
10841     if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus)
10842       InnerE = UOp->getSubExpr()->IgnoreParenImpCasts();
10843 
10844   const bool IsLiteral =
10845       isa<FloatingLiteral>(E) || isa<FloatingLiteral>(InnerE);
10846 
10847   llvm::APFloat Value(0.0);
10848   bool IsConstant =
10849     E->EvaluateAsFloat(Value, S.Context, Expr::SE_AllowSideEffects);
10850   if (!IsConstant) {
10851     return DiagnoseImpCast(S, E, T, CContext,
10852                            diag::warn_impcast_float_integer, PruneWarnings);
10853   }
10854 
10855   bool isExact = false;
10856 
10857   llvm::APSInt IntegerValue(S.Context.getIntWidth(T),
10858                             T->hasUnsignedIntegerRepresentation());
10859   llvm::APFloat::opStatus Result = Value.convertToInteger(
10860       IntegerValue, llvm::APFloat::rmTowardZero, &isExact);
10861 
10862   if (Result == llvm::APFloat::opOK && isExact) {
10863     if (IsLiteral) return;
10864     return DiagnoseImpCast(S, E, T, CContext, diag::warn_impcast_float_integer,
10865                            PruneWarnings);
10866   }
10867 
10868   // Conversion of a floating-point value to a non-bool integer where the
10869   // integral part cannot be represented by the integer type is undefined.
10870   if (!IsBool && Result == llvm::APFloat::opInvalidOp)
10871     return DiagnoseImpCast(
10872         S, E, T, CContext,
10873         IsLiteral ? diag::warn_impcast_literal_float_to_integer_out_of_range
10874                   : diag::warn_impcast_float_to_integer_out_of_range,
10875         PruneWarnings);
10876 
10877   unsigned DiagID = 0;
10878   if (IsLiteral) {
10879     // Warn on floating point literal to integer.
10880     DiagID = diag::warn_impcast_literal_float_to_integer;
10881   } else if (IntegerValue == 0) {
10882     if (Value.isZero()) {  // Skip -0.0 to 0 conversion.
10883       return DiagnoseImpCast(S, E, T, CContext,
10884                              diag::warn_impcast_float_integer, PruneWarnings);
10885     }
10886     // Warn on non-zero to zero conversion.
10887     DiagID = diag::warn_impcast_float_to_integer_zero;
10888   } else {
10889     if (IntegerValue.isUnsigned()) {
10890       if (!IntegerValue.isMaxValue()) {
10891         return DiagnoseImpCast(S, E, T, CContext,
10892                                diag::warn_impcast_float_integer, PruneWarnings);
10893       }
10894     } else {  // IntegerValue.isSigned()
10895       if (!IntegerValue.isMaxSignedValue() &&
10896           !IntegerValue.isMinSignedValue()) {
10897         return DiagnoseImpCast(S, E, T, CContext,
10898                                diag::warn_impcast_float_integer, PruneWarnings);
10899       }
10900     }
10901     // Warn on evaluatable floating point expression to integer conversion.
10902     DiagID = diag::warn_impcast_float_to_integer;
10903   }
10904 
10905   // FIXME: Force the precision of the source value down so we don't print
10906   // digits which are usually useless (we don't really care here if we
10907   // truncate a digit by accident in edge cases).  Ideally, APFloat::toString
10908   // would automatically print the shortest representation, but it's a bit
10909   // tricky to implement.
10910   SmallString<16> PrettySourceValue;
10911   unsigned precision = llvm::APFloat::semanticsPrecision(Value.getSemantics());
10912   precision = (precision * 59 + 195) / 196;
10913   Value.toString(PrettySourceValue, precision);
10914 
10915   SmallString<16> PrettyTargetValue;
10916   if (IsBool)
10917     PrettyTargetValue = Value.isZero() ? "false" : "true";
10918   else
10919     IntegerValue.toString(PrettyTargetValue);
10920 
10921   if (PruneWarnings) {
10922     S.DiagRuntimeBehavior(E->getExprLoc(), E,
10923                           S.PDiag(DiagID)
10924                               << E->getType() << T.getUnqualifiedType()
10925                               << PrettySourceValue << PrettyTargetValue
10926                               << E->getSourceRange() << SourceRange(CContext));
10927   } else {
10928     S.Diag(E->getExprLoc(), DiagID)
10929         << E->getType() << T.getUnqualifiedType() << PrettySourceValue
10930         << PrettyTargetValue << E->getSourceRange() << SourceRange(CContext);
10931   }
10932 }
10933 
10934 /// Analyze the given compound assignment for the possible losing of
10935 /// floating-point precision.
10936 static void AnalyzeCompoundAssignment(Sema &S, BinaryOperator *E) {
10937   assert(isa<CompoundAssignOperator>(E) &&
10938          "Must be compound assignment operation");
10939   // Recurse on the LHS and RHS in here
10940   AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
10941   AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
10942 
10943   if (E->getLHS()->getType()->isAtomicType())
10944     S.Diag(E->getOperatorLoc(), diag::warn_atomic_implicit_seq_cst);
10945 
10946   // Now check the outermost expression
10947   const auto *ResultBT = E->getLHS()->getType()->getAs<BuiltinType>();
10948   const auto *RBT = cast<CompoundAssignOperator>(E)
10949                         ->getComputationResultType()
10950                         ->getAs<BuiltinType>();
10951 
10952   // The below checks assume source is floating point.
10953   if (!ResultBT || !RBT || !RBT->isFloatingPoint()) return;
10954 
10955   // If source is floating point but target is an integer.
10956   if (ResultBT->isInteger())
10957     return DiagnoseImpCast(S, E, E->getRHS()->getType(), E->getLHS()->getType(),
10958                            E->getExprLoc(), diag::warn_impcast_float_integer);
10959 
10960   if (!ResultBT->isFloatingPoint())
10961     return;
10962 
10963   // If both source and target are floating points, warn about losing precision.
10964   int Order = S.getASTContext().getFloatingTypeSemanticOrder(
10965       QualType(ResultBT, 0), QualType(RBT, 0));
10966   if (Order < 0 && !S.SourceMgr.isInSystemMacro(E->getOperatorLoc()))
10967     // warn about dropping FP rank.
10968     DiagnoseImpCast(S, E->getRHS(), E->getLHS()->getType(), E->getOperatorLoc(),
10969                     diag::warn_impcast_float_result_precision);
10970 }
10971 
10972 static std::string PrettyPrintInRange(const llvm::APSInt &Value,
10973                                       IntRange Range) {
10974   if (!Range.Width) return "0";
10975 
10976   llvm::APSInt ValueInRange = Value;
10977   ValueInRange.setIsSigned(!Range.NonNegative);
10978   ValueInRange = ValueInRange.trunc(Range.Width);
10979   return ValueInRange.toString(10);
10980 }
10981 
10982 static bool IsImplicitBoolFloatConversion(Sema &S, Expr *Ex, bool ToBool) {
10983   if (!isa<ImplicitCastExpr>(Ex))
10984     return false;
10985 
10986   Expr *InnerE = Ex->IgnoreParenImpCasts();
10987   const Type *Target = S.Context.getCanonicalType(Ex->getType()).getTypePtr();
10988   const Type *Source =
10989     S.Context.getCanonicalType(InnerE->getType()).getTypePtr();
10990   if (Target->isDependentType())
10991     return false;
10992 
10993   const BuiltinType *FloatCandidateBT =
10994     dyn_cast<BuiltinType>(ToBool ? Source : Target);
10995   const Type *BoolCandidateType = ToBool ? Target : Source;
10996 
10997   return (BoolCandidateType->isSpecificBuiltinType(BuiltinType::Bool) &&
10998           FloatCandidateBT && (FloatCandidateBT->isFloatingPoint()));
10999 }
11000 
11001 static void CheckImplicitArgumentConversions(Sema &S, CallExpr *TheCall,
11002                                              SourceLocation CC) {
11003   unsigned NumArgs = TheCall->getNumArgs();
11004   for (unsigned i = 0; i < NumArgs; ++i) {
11005     Expr *CurrA = TheCall->getArg(i);
11006     if (!IsImplicitBoolFloatConversion(S, CurrA, true))
11007       continue;
11008 
11009     bool IsSwapped = ((i > 0) &&
11010         IsImplicitBoolFloatConversion(S, TheCall->getArg(i - 1), false));
11011     IsSwapped |= ((i < (NumArgs - 1)) &&
11012         IsImplicitBoolFloatConversion(S, TheCall->getArg(i + 1), false));
11013     if (IsSwapped) {
11014       // Warn on this floating-point to bool conversion.
11015       DiagnoseImpCast(S, CurrA->IgnoreParenImpCasts(),
11016                       CurrA->getType(), CC,
11017                       diag::warn_impcast_floating_point_to_bool);
11018     }
11019   }
11020 }
11021 
11022 static void DiagnoseNullConversion(Sema &S, Expr *E, QualType T,
11023                                    SourceLocation CC) {
11024   if (S.Diags.isIgnored(diag::warn_impcast_null_pointer_to_integer,
11025                         E->getExprLoc()))
11026     return;
11027 
11028   // Don't warn on functions which have return type nullptr_t.
11029   if (isa<CallExpr>(E))
11030     return;
11031 
11032   // Check for NULL (GNUNull) or nullptr (CXX11_nullptr).
11033   const Expr::NullPointerConstantKind NullKind =
11034       E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull);
11035   if (NullKind != Expr::NPCK_GNUNull && NullKind != Expr::NPCK_CXX11_nullptr)
11036     return;
11037 
11038   // Return if target type is a safe conversion.
11039   if (T->isAnyPointerType() || T->isBlockPointerType() ||
11040       T->isMemberPointerType() || !T->isScalarType() || T->isNullPtrType())
11041     return;
11042 
11043   SourceLocation Loc = E->getSourceRange().getBegin();
11044 
11045   // Venture through the macro stacks to get to the source of macro arguments.
11046   // The new location is a better location than the complete location that was
11047   // passed in.
11048   Loc = S.SourceMgr.getTopMacroCallerLoc(Loc);
11049   CC = S.SourceMgr.getTopMacroCallerLoc(CC);
11050 
11051   // __null is usually wrapped in a macro.  Go up a macro if that is the case.
11052   if (NullKind == Expr::NPCK_GNUNull && Loc.isMacroID()) {
11053     StringRef MacroName = Lexer::getImmediateMacroNameForDiagnostics(
11054         Loc, S.SourceMgr, S.getLangOpts());
11055     if (MacroName == "NULL")
11056       Loc = S.SourceMgr.getImmediateExpansionRange(Loc).getBegin();
11057   }
11058 
11059   // Only warn if the null and context location are in the same macro expansion.
11060   if (S.SourceMgr.getFileID(Loc) != S.SourceMgr.getFileID(CC))
11061     return;
11062 
11063   S.Diag(Loc, diag::warn_impcast_null_pointer_to_integer)
11064       << (NullKind == Expr::NPCK_CXX11_nullptr) << T << SourceRange(CC)
11065       << FixItHint::CreateReplacement(Loc,
11066                                       S.getFixItZeroLiteralForType(T, Loc));
11067 }
11068 
11069 static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
11070                                   ObjCArrayLiteral *ArrayLiteral);
11071 
11072 static void
11073 checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
11074                            ObjCDictionaryLiteral *DictionaryLiteral);
11075 
11076 /// Check a single element within a collection literal against the
11077 /// target element type.
11078 static void checkObjCCollectionLiteralElement(Sema &S,
11079                                               QualType TargetElementType,
11080                                               Expr *Element,
11081                                               unsigned ElementKind) {
11082   // Skip a bitcast to 'id' or qualified 'id'.
11083   if (auto ICE = dyn_cast<ImplicitCastExpr>(Element)) {
11084     if (ICE->getCastKind() == CK_BitCast &&
11085         ICE->getSubExpr()->getType()->getAs<ObjCObjectPointerType>())
11086       Element = ICE->getSubExpr();
11087   }
11088 
11089   QualType ElementType = Element->getType();
11090   ExprResult ElementResult(Element);
11091   if (ElementType->getAs<ObjCObjectPointerType>() &&
11092       S.CheckSingleAssignmentConstraints(TargetElementType,
11093                                          ElementResult,
11094                                          false, false)
11095         != Sema::Compatible) {
11096     S.Diag(Element->getBeginLoc(), diag::warn_objc_collection_literal_element)
11097         << ElementType << ElementKind << TargetElementType
11098         << Element->getSourceRange();
11099   }
11100 
11101   if (auto ArrayLiteral = dyn_cast<ObjCArrayLiteral>(Element))
11102     checkObjCArrayLiteral(S, TargetElementType, ArrayLiteral);
11103   else if (auto DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(Element))
11104     checkObjCDictionaryLiteral(S, TargetElementType, DictionaryLiteral);
11105 }
11106 
11107 /// Check an Objective-C array literal being converted to the given
11108 /// target type.
11109 static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
11110                                   ObjCArrayLiteral *ArrayLiteral) {
11111   if (!S.NSArrayDecl)
11112     return;
11113 
11114   const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>();
11115   if (!TargetObjCPtr)
11116     return;
11117 
11118   if (TargetObjCPtr->isUnspecialized() ||
11119       TargetObjCPtr->getInterfaceDecl()->getCanonicalDecl()
11120         != S.NSArrayDecl->getCanonicalDecl())
11121     return;
11122 
11123   auto TypeArgs = TargetObjCPtr->getTypeArgs();
11124   if (TypeArgs.size() != 1)
11125     return;
11126 
11127   QualType TargetElementType = TypeArgs[0];
11128   for (unsigned I = 0, N = ArrayLiteral->getNumElements(); I != N; ++I) {
11129     checkObjCCollectionLiteralElement(S, TargetElementType,
11130                                       ArrayLiteral->getElement(I),
11131                                       0);
11132   }
11133 }
11134 
11135 /// Check an Objective-C dictionary literal being converted to the given
11136 /// target type.
11137 static void
11138 checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
11139                            ObjCDictionaryLiteral *DictionaryLiteral) {
11140   if (!S.NSDictionaryDecl)
11141     return;
11142 
11143   const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>();
11144   if (!TargetObjCPtr)
11145     return;
11146 
11147   if (TargetObjCPtr->isUnspecialized() ||
11148       TargetObjCPtr->getInterfaceDecl()->getCanonicalDecl()
11149         != S.NSDictionaryDecl->getCanonicalDecl())
11150     return;
11151 
11152   auto TypeArgs = TargetObjCPtr->getTypeArgs();
11153   if (TypeArgs.size() != 2)
11154     return;
11155 
11156   QualType TargetKeyType = TypeArgs[0];
11157   QualType TargetObjectType = TypeArgs[1];
11158   for (unsigned I = 0, N = DictionaryLiteral->getNumElements(); I != N; ++I) {
11159     auto Element = DictionaryLiteral->getKeyValueElement(I);
11160     checkObjCCollectionLiteralElement(S, TargetKeyType, Element.Key, 1);
11161     checkObjCCollectionLiteralElement(S, TargetObjectType, Element.Value, 2);
11162   }
11163 }
11164 
11165 // Helper function to filter out cases for constant width constant conversion.
11166 // Don't warn on char array initialization or for non-decimal values.
11167 static bool isSameWidthConstantConversion(Sema &S, Expr *E, QualType T,
11168                                           SourceLocation CC) {
11169   // If initializing from a constant, and the constant starts with '0',
11170   // then it is a binary, octal, or hexadecimal.  Allow these constants
11171   // to fill all the bits, even if there is a sign change.
11172   if (auto *IntLit = dyn_cast<IntegerLiteral>(E->IgnoreParenImpCasts())) {
11173     const char FirstLiteralCharacter =
11174         S.getSourceManager().getCharacterData(IntLit->getBeginLoc())[0];
11175     if (FirstLiteralCharacter == '0')
11176       return false;
11177   }
11178 
11179   // If the CC location points to a '{', and the type is char, then assume
11180   // assume it is an array initialization.
11181   if (CC.isValid() && T->isCharType()) {
11182     const char FirstContextCharacter =
11183         S.getSourceManager().getCharacterData(CC)[0];
11184     if (FirstContextCharacter == '{')
11185       return false;
11186   }
11187 
11188   return true;
11189 }
11190 
11191 static bool isObjCSignedCharBool(Sema &S, QualType Ty) {
11192   return Ty->isSpecificBuiltinType(BuiltinType::SChar) &&
11193          S.getLangOpts().ObjC && S.NSAPIObj->isObjCBOOLType(Ty);
11194 }
11195 
11196 static void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
11197                                     SourceLocation CC,
11198                                     bool *ICContext = nullptr,
11199                                     bool IsListInit = false) {
11200   if (E->isTypeDependent() || E->isValueDependent()) return;
11201 
11202   const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr();
11203   const Type *Target = S.Context.getCanonicalType(T).getTypePtr();
11204   if (Source == Target) return;
11205   if (Target->isDependentType()) return;
11206 
11207   // If the conversion context location is invalid don't complain. We also
11208   // don't want to emit a warning if the issue occurs from the expansion of
11209   // a system macro. The problem is that 'getSpellingLoc()' is slow, so we
11210   // delay this check as long as possible. Once we detect we are in that
11211   // scenario, we just return.
11212   if (CC.isInvalid())
11213     return;
11214 
11215   if (Source->isAtomicType())
11216     S.Diag(E->getExprLoc(), diag::warn_atomic_implicit_seq_cst);
11217 
11218   // Diagnose implicit casts to bool.
11219   if (Target->isSpecificBuiltinType(BuiltinType::Bool)) {
11220     if (isa<StringLiteral>(E))
11221       // Warn on string literal to bool.  Checks for string literals in logical
11222       // and expressions, for instance, assert(0 && "error here"), are
11223       // prevented by a check in AnalyzeImplicitConversions().
11224       return DiagnoseImpCast(S, E, T, CC,
11225                              diag::warn_impcast_string_literal_to_bool);
11226     if (isa<ObjCStringLiteral>(E) || isa<ObjCArrayLiteral>(E) ||
11227         isa<ObjCDictionaryLiteral>(E) || isa<ObjCBoxedExpr>(E)) {
11228       // This covers the literal expressions that evaluate to Objective-C
11229       // objects.
11230       return DiagnoseImpCast(S, E, T, CC,
11231                              diag::warn_impcast_objective_c_literal_to_bool);
11232     }
11233     if (Source->isPointerType() || Source->canDecayToPointerType()) {
11234       // Warn on pointer to bool conversion that is always true.
11235       S.DiagnoseAlwaysNonNullPointer(E, Expr::NPCK_NotNull, /*IsEqual*/ false,
11236                                      SourceRange(CC));
11237     }
11238   }
11239 
11240   // If the we're converting a constant to an ObjC BOOL on a platform where BOOL
11241   // is a typedef for signed char (macOS), then that constant value has to be 1
11242   // or 0.
11243   if (isObjCSignedCharBool(S, T) && Source->isIntegralType(S.Context)) {
11244     Expr::EvalResult Result;
11245     if (E->EvaluateAsInt(Result, S.getASTContext(),
11246                          Expr::SE_AllowSideEffects) &&
11247         Result.Val.getInt() != 1 && Result.Val.getInt() != 0) {
11248       auto Builder = S.Diag(CC, diag::warn_impcast_constant_int_to_objc_bool)
11249                      << Result.Val.getInt().toString(10);
11250       Expr *Ignored = E->IgnoreImplicit();
11251       bool NeedsParens = isa<AbstractConditionalOperator>(Ignored) ||
11252                          isa<BinaryOperator>(Ignored) ||
11253                          isa<CXXOperatorCallExpr>(Ignored);
11254       SourceLocation EndLoc = S.getLocForEndOfToken(E->getEndLoc());
11255       if (NeedsParens)
11256         Builder << FixItHint::CreateInsertion(E->getBeginLoc(), "(")
11257                 << FixItHint::CreateInsertion(EndLoc, ")");
11258       Builder << FixItHint::CreateInsertion(EndLoc, " ? YES : NO");
11259       return;
11260     }
11261   }
11262 
11263   // Check implicit casts from Objective-C collection literals to specialized
11264   // collection types, e.g., NSArray<NSString *> *.
11265   if (auto *ArrayLiteral = dyn_cast<ObjCArrayLiteral>(E))
11266     checkObjCArrayLiteral(S, QualType(Target, 0), ArrayLiteral);
11267   else if (auto *DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(E))
11268     checkObjCDictionaryLiteral(S, QualType(Target, 0), DictionaryLiteral);
11269 
11270   // Strip vector types.
11271   if (isa<VectorType>(Source)) {
11272     if (!isa<VectorType>(Target)) {
11273       if (S.SourceMgr.isInSystemMacro(CC))
11274         return;
11275       return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
11276     }
11277 
11278     // If the vector cast is cast between two vectors of the same size, it is
11279     // a bitcast, not a conversion.
11280     if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target))
11281       return;
11282 
11283     Source = cast<VectorType>(Source)->getElementType().getTypePtr();
11284     Target = cast<VectorType>(Target)->getElementType().getTypePtr();
11285   }
11286   if (auto VecTy = dyn_cast<VectorType>(Target))
11287     Target = VecTy->getElementType().getTypePtr();
11288 
11289   // Strip complex types.
11290   if (isa<ComplexType>(Source)) {
11291     if (!isa<ComplexType>(Target)) {
11292       if (S.SourceMgr.isInSystemMacro(CC) || Target->isBooleanType())
11293         return;
11294 
11295       return DiagnoseImpCast(S, E, T, CC,
11296                              S.getLangOpts().CPlusPlus
11297                                  ? diag::err_impcast_complex_scalar
11298                                  : diag::warn_impcast_complex_scalar);
11299     }
11300 
11301     Source = cast<ComplexType>(Source)->getElementType().getTypePtr();
11302     Target = cast<ComplexType>(Target)->getElementType().getTypePtr();
11303   }
11304 
11305   const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source);
11306   const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target);
11307 
11308   // If the source is floating point...
11309   if (SourceBT && SourceBT->isFloatingPoint()) {
11310     // ...and the target is floating point...
11311     if (TargetBT && TargetBT->isFloatingPoint()) {
11312       // ...then warn if we're dropping FP rank.
11313 
11314       int Order = S.getASTContext().getFloatingTypeSemanticOrder(
11315           QualType(SourceBT, 0), QualType(TargetBT, 0));
11316       if (Order > 0) {
11317         // Don't warn about float constants that are precisely
11318         // representable in the target type.
11319         Expr::EvalResult result;
11320         if (E->EvaluateAsRValue(result, S.Context)) {
11321           // Value might be a float, a float vector, or a float complex.
11322           if (IsSameFloatAfterCast(result.Val,
11323                    S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
11324                    S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
11325             return;
11326         }
11327 
11328         if (S.SourceMgr.isInSystemMacro(CC))
11329           return;
11330 
11331         DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
11332       }
11333       // ... or possibly if we're increasing rank, too
11334       else if (Order < 0) {
11335         if (S.SourceMgr.isInSystemMacro(CC))
11336           return;
11337 
11338         DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_double_promotion);
11339       }
11340       return;
11341     }
11342 
11343     // If the target is integral, always warn.
11344     if (TargetBT && TargetBT->isInteger()) {
11345       if (S.SourceMgr.isInSystemMacro(CC))
11346         return;
11347 
11348       DiagnoseFloatingImpCast(S, E, T, CC);
11349     }
11350 
11351     // Detect the case where a call result is converted from floating-point to
11352     // to bool, and the final argument to the call is converted from bool, to
11353     // discover this typo:
11354     //
11355     //    bool b = fabs(x < 1.0);  // should be "bool b = fabs(x) < 1.0;"
11356     //
11357     // FIXME: This is an incredibly special case; is there some more general
11358     // way to detect this class of misplaced-parentheses bug?
11359     if (Target->isBooleanType() && isa<CallExpr>(E)) {
11360       // Check last argument of function call to see if it is an
11361       // implicit cast from a type matching the type the result
11362       // is being cast to.
11363       CallExpr *CEx = cast<CallExpr>(E);
11364       if (unsigned NumArgs = CEx->getNumArgs()) {
11365         Expr *LastA = CEx->getArg(NumArgs - 1);
11366         Expr *InnerE = LastA->IgnoreParenImpCasts();
11367         if (isa<ImplicitCastExpr>(LastA) &&
11368             InnerE->getType()->isBooleanType()) {
11369           // Warn on this floating-point to bool conversion
11370           DiagnoseImpCast(S, E, T, CC,
11371                           diag::warn_impcast_floating_point_to_bool);
11372         }
11373       }
11374     }
11375     return;
11376   }
11377 
11378   // Valid casts involving fixed point types should be accounted for here.
11379   if (Source->isFixedPointType()) {
11380     if (Target->isUnsaturatedFixedPointType()) {
11381       Expr::EvalResult Result;
11382       if (E->EvaluateAsFixedPoint(Result, S.Context, Expr::SE_AllowSideEffects,
11383                                   S.isConstantEvaluated())) {
11384         APFixedPoint Value = Result.Val.getFixedPoint();
11385         APFixedPoint MaxVal = S.Context.getFixedPointMax(T);
11386         APFixedPoint MinVal = S.Context.getFixedPointMin(T);
11387         if (Value > MaxVal || Value < MinVal) {
11388           S.DiagRuntimeBehavior(E->getExprLoc(), E,
11389                                 S.PDiag(diag::warn_impcast_fixed_point_range)
11390                                     << Value.toString() << T
11391                                     << E->getSourceRange()
11392                                     << clang::SourceRange(CC));
11393           return;
11394         }
11395       }
11396     } else if (Target->isIntegerType()) {
11397       Expr::EvalResult Result;
11398       if (!S.isConstantEvaluated() &&
11399           E->EvaluateAsFixedPoint(Result, S.Context,
11400                                   Expr::SE_AllowSideEffects)) {
11401         APFixedPoint FXResult = Result.Val.getFixedPoint();
11402 
11403         bool Overflowed;
11404         llvm::APSInt IntResult = FXResult.convertToInt(
11405             S.Context.getIntWidth(T),
11406             Target->isSignedIntegerOrEnumerationType(), &Overflowed);
11407 
11408         if (Overflowed) {
11409           S.DiagRuntimeBehavior(E->getExprLoc(), E,
11410                                 S.PDiag(diag::warn_impcast_fixed_point_range)
11411                                     << FXResult.toString() << T
11412                                     << E->getSourceRange()
11413                                     << clang::SourceRange(CC));
11414           return;
11415         }
11416       }
11417     }
11418   } else if (Target->isUnsaturatedFixedPointType()) {
11419     if (Source->isIntegerType()) {
11420       Expr::EvalResult Result;
11421       if (!S.isConstantEvaluated() &&
11422           E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects)) {
11423         llvm::APSInt Value = Result.Val.getInt();
11424 
11425         bool Overflowed;
11426         APFixedPoint IntResult = APFixedPoint::getFromIntValue(
11427             Value, S.Context.getFixedPointSemantics(T), &Overflowed);
11428 
11429         if (Overflowed) {
11430           S.DiagRuntimeBehavior(E->getExprLoc(), E,
11431                                 S.PDiag(diag::warn_impcast_fixed_point_range)
11432                                     << Value.toString(/*Radix=*/10) << T
11433                                     << E->getSourceRange()
11434                                     << clang::SourceRange(CC));
11435           return;
11436         }
11437       }
11438     }
11439   }
11440 
11441   // If we are casting an integer type to a floating point type without
11442   // initialization-list syntax, we might lose accuracy if the floating
11443   // point type has a narrower significand than the integer type.
11444   if (SourceBT && TargetBT && SourceBT->isIntegerType() &&
11445       TargetBT->isFloatingType() && !IsListInit) {
11446     // Determine the number of precision bits in the source integer type.
11447     IntRange SourceRange = GetExprRange(S.Context, E, S.isConstantEvaluated());
11448     unsigned int SourcePrecision = SourceRange.Width;
11449 
11450     // Determine the number of precision bits in the
11451     // target floating point type.
11452     unsigned int TargetPrecision = llvm::APFloatBase::semanticsPrecision(
11453         S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)));
11454 
11455     if (SourcePrecision > 0 && TargetPrecision > 0 &&
11456         SourcePrecision > TargetPrecision) {
11457 
11458       llvm::APSInt SourceInt;
11459       if (E->isIntegerConstantExpr(SourceInt, S.Context)) {
11460         // If the source integer is a constant, convert it to the target
11461         // floating point type. Issue a warning if the value changes
11462         // during the whole conversion.
11463         llvm::APFloat TargetFloatValue(
11464             S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)));
11465         llvm::APFloat::opStatus ConversionStatus =
11466             TargetFloatValue.convertFromAPInt(
11467                 SourceInt, SourceBT->isSignedInteger(),
11468                 llvm::APFloat::rmNearestTiesToEven);
11469 
11470         if (ConversionStatus != llvm::APFloat::opOK) {
11471           std::string PrettySourceValue = SourceInt.toString(10);
11472           SmallString<32> PrettyTargetValue;
11473           TargetFloatValue.toString(PrettyTargetValue, TargetPrecision);
11474 
11475           S.DiagRuntimeBehavior(
11476               E->getExprLoc(), E,
11477               S.PDiag(diag::warn_impcast_integer_float_precision_constant)
11478                   << PrettySourceValue << PrettyTargetValue << E->getType() << T
11479                   << E->getSourceRange() << clang::SourceRange(CC));
11480         }
11481       } else {
11482         // Otherwise, the implicit conversion may lose precision.
11483         DiagnoseImpCast(S, E, T, CC,
11484                         diag::warn_impcast_integer_float_precision);
11485       }
11486     }
11487   }
11488 
11489   DiagnoseNullConversion(S, E, T, CC);
11490 
11491   S.DiscardMisalignedMemberAddress(Target, E);
11492 
11493   if (!Source->isIntegerType() || !Target->isIntegerType())
11494     return;
11495 
11496   // TODO: remove this early return once the false positives for constant->bool
11497   // in templates, macros, etc, are reduced or removed.
11498   if (Target->isSpecificBuiltinType(BuiltinType::Bool))
11499     return;
11500 
11501   IntRange SourceRange = GetExprRange(S.Context, E, S.isConstantEvaluated());
11502   IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
11503 
11504   if (SourceRange.Width > TargetRange.Width) {
11505     // If the source is a constant, use a default-on diagnostic.
11506     // TODO: this should happen for bitfield stores, too.
11507     Expr::EvalResult Result;
11508     if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects,
11509                          S.isConstantEvaluated())) {
11510       llvm::APSInt Value(32);
11511       Value = Result.Val.getInt();
11512 
11513       if (S.SourceMgr.isInSystemMacro(CC))
11514         return;
11515 
11516       std::string PrettySourceValue = Value.toString(10);
11517       std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
11518 
11519       S.DiagRuntimeBehavior(
11520           E->getExprLoc(), E,
11521           S.PDiag(diag::warn_impcast_integer_precision_constant)
11522               << PrettySourceValue << PrettyTargetValue << E->getType() << T
11523               << E->getSourceRange() << clang::SourceRange(CC));
11524       return;
11525     }
11526 
11527     // People want to build with -Wshorten-64-to-32 and not -Wconversion.
11528     if (S.SourceMgr.isInSystemMacro(CC))
11529       return;
11530 
11531     if (TargetRange.Width == 32 && S.Context.getIntWidth(E->getType()) == 64)
11532       return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32,
11533                              /* pruneControlFlow */ true);
11534     return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
11535   }
11536 
11537   if (TargetRange.Width > SourceRange.Width) {
11538     if (auto *UO = dyn_cast<UnaryOperator>(E))
11539       if (UO->getOpcode() == UO_Minus)
11540         if (Source->isUnsignedIntegerType()) {
11541           if (Target->isUnsignedIntegerType())
11542             return DiagnoseImpCast(S, E, T, CC,
11543                                    diag::warn_impcast_high_order_zero_bits);
11544           if (Target->isSignedIntegerType())
11545             return DiagnoseImpCast(S, E, T, CC,
11546                                    diag::warn_impcast_nonnegative_result);
11547         }
11548   }
11549 
11550   if (TargetRange.Width == SourceRange.Width && !TargetRange.NonNegative &&
11551       SourceRange.NonNegative && Source->isSignedIntegerType()) {
11552     // Warn when doing a signed to signed conversion, warn if the positive
11553     // source value is exactly the width of the target type, which will
11554     // cause a negative value to be stored.
11555 
11556     Expr::EvalResult Result;
11557     if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects) &&
11558         !S.SourceMgr.isInSystemMacro(CC)) {
11559       llvm::APSInt Value = Result.Val.getInt();
11560       if (isSameWidthConstantConversion(S, E, T, CC)) {
11561         std::string PrettySourceValue = Value.toString(10);
11562         std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
11563 
11564         S.DiagRuntimeBehavior(
11565             E->getExprLoc(), E,
11566             S.PDiag(diag::warn_impcast_integer_precision_constant)
11567                 << PrettySourceValue << PrettyTargetValue << E->getType() << T
11568                 << E->getSourceRange() << clang::SourceRange(CC));
11569         return;
11570       }
11571     }
11572 
11573     // Fall through for non-constants to give a sign conversion warning.
11574   }
11575 
11576   if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
11577       (!TargetRange.NonNegative && SourceRange.NonNegative &&
11578        SourceRange.Width == TargetRange.Width)) {
11579     if (S.SourceMgr.isInSystemMacro(CC))
11580       return;
11581 
11582     unsigned DiagID = diag::warn_impcast_integer_sign;
11583 
11584     // Traditionally, gcc has warned about this under -Wsign-compare.
11585     // We also want to warn about it in -Wconversion.
11586     // So if -Wconversion is off, use a completely identical diagnostic
11587     // in the sign-compare group.
11588     // The conditional-checking code will
11589     if (ICContext) {
11590       DiagID = diag::warn_impcast_integer_sign_conditional;
11591       *ICContext = true;
11592     }
11593 
11594     return DiagnoseImpCast(S, E, T, CC, DiagID);
11595   }
11596 
11597   // Diagnose conversions between different enumeration types.
11598   // In C, we pretend that the type of an EnumConstantDecl is its enumeration
11599   // type, to give us better diagnostics.
11600   QualType SourceType = E->getType();
11601   if (!S.getLangOpts().CPlusPlus) {
11602     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
11603       if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
11604         EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext());
11605         SourceType = S.Context.getTypeDeclType(Enum);
11606         Source = S.Context.getCanonicalType(SourceType).getTypePtr();
11607       }
11608   }
11609 
11610   if (const EnumType *SourceEnum = Source->getAs<EnumType>())
11611     if (const EnumType *TargetEnum = Target->getAs<EnumType>())
11612       if (SourceEnum->getDecl()->hasNameForLinkage() &&
11613           TargetEnum->getDecl()->hasNameForLinkage() &&
11614           SourceEnum != TargetEnum) {
11615         if (S.SourceMgr.isInSystemMacro(CC))
11616           return;
11617 
11618         return DiagnoseImpCast(S, E, SourceType, T, CC,
11619                                diag::warn_impcast_different_enum_types);
11620       }
11621 }
11622 
11623 static void CheckConditionalOperator(Sema &S, ConditionalOperator *E,
11624                                      SourceLocation CC, QualType T);
11625 
11626 static void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
11627                                     SourceLocation CC, bool &ICContext) {
11628   E = E->IgnoreParenImpCasts();
11629 
11630   if (isa<ConditionalOperator>(E))
11631     return CheckConditionalOperator(S, cast<ConditionalOperator>(E), CC, T);
11632 
11633   AnalyzeImplicitConversions(S, E, CC);
11634   if (E->getType() != T)
11635     return CheckImplicitConversion(S, E, T, CC, &ICContext);
11636 }
11637 
11638 static void CheckConditionalOperator(Sema &S, ConditionalOperator *E,
11639                                      SourceLocation CC, QualType T) {
11640   AnalyzeImplicitConversions(S, E->getCond(), E->getQuestionLoc());
11641 
11642   bool Suspicious = false;
11643   CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
11644   CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
11645 
11646   // If -Wconversion would have warned about either of the candidates
11647   // for a signedness conversion to the context type...
11648   if (!Suspicious) return;
11649 
11650   // ...but it's currently ignored...
11651   if (!S.Diags.isIgnored(diag::warn_impcast_integer_sign_conditional, CC))
11652     return;
11653 
11654   // ...then check whether it would have warned about either of the
11655   // candidates for a signedness conversion to the condition type.
11656   if (E->getType() == T) return;
11657 
11658   Suspicious = false;
11659   CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
11660                           E->getType(), CC, &Suspicious);
11661   if (!Suspicious)
11662     CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
11663                             E->getType(), CC, &Suspicious);
11664 }
11665 
11666 /// Check conversion of given expression to boolean.
11667 /// Input argument E is a logical expression.
11668 static void CheckBoolLikeConversion(Sema &S, Expr *E, SourceLocation CC) {
11669   if (S.getLangOpts().Bool)
11670     return;
11671   if (E->IgnoreParenImpCasts()->getType()->isAtomicType())
11672     return;
11673   CheckImplicitConversion(S, E->IgnoreParenImpCasts(), S.Context.BoolTy, CC);
11674 }
11675 
11676 /// AnalyzeImplicitConversions - Find and report any interesting
11677 /// implicit conversions in the given expression.  There are a couple
11678 /// of competing diagnostics here, -Wconversion and -Wsign-compare.
11679 static void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC,
11680                                        bool IsListInit/*= false*/) {
11681   QualType T = OrigE->getType();
11682   Expr *E = OrigE->IgnoreParenImpCasts();
11683 
11684   // Propagate whether we are in a C++ list initialization expression.
11685   // If so, we do not issue warnings for implicit int-float conversion
11686   // precision loss, because C++11 narrowing already handles it.
11687   IsListInit =
11688       IsListInit || (isa<InitListExpr>(OrigE) && S.getLangOpts().CPlusPlus);
11689 
11690   if (E->isTypeDependent() || E->isValueDependent())
11691     return;
11692 
11693   // For conditional operators, we analyze the arguments as if they
11694   // were being fed directly into the output.
11695   if (isa<ConditionalOperator>(E)) {
11696     ConditionalOperator *CO = cast<ConditionalOperator>(E);
11697     CheckConditionalOperator(S, CO, CC, T);
11698     return;
11699   }
11700 
11701   // Check implicit argument conversions for function calls.
11702   if (CallExpr *Call = dyn_cast<CallExpr>(E))
11703     CheckImplicitArgumentConversions(S, Call, CC);
11704 
11705   // Go ahead and check any implicit conversions we might have skipped.
11706   // The non-canonical typecheck is just an optimization;
11707   // CheckImplicitConversion will filter out dead implicit conversions.
11708   if (E->getType() != T)
11709     CheckImplicitConversion(S, E, T, CC, nullptr, IsListInit);
11710 
11711   // Now continue drilling into this expression.
11712 
11713   if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) {
11714     // The bound subexpressions in a PseudoObjectExpr are not reachable
11715     // as transitive children.
11716     // FIXME: Use a more uniform representation for this.
11717     for (auto *SE : POE->semantics())
11718       if (auto *OVE = dyn_cast<OpaqueValueExpr>(SE))
11719         AnalyzeImplicitConversions(S, OVE->getSourceExpr(), CC, IsListInit);
11720   }
11721 
11722   // Skip past explicit casts.
11723   if (auto *CE = dyn_cast<ExplicitCastExpr>(E)) {
11724     E = CE->getSubExpr()->IgnoreParenImpCasts();
11725     if (!CE->getType()->isVoidType() && E->getType()->isAtomicType())
11726       S.Diag(E->getBeginLoc(), diag::warn_atomic_implicit_seq_cst);
11727     return AnalyzeImplicitConversions(S, E, CC, IsListInit);
11728   }
11729 
11730   if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
11731     // Do a somewhat different check with comparison operators.
11732     if (BO->isComparisonOp())
11733       return AnalyzeComparison(S, BO);
11734 
11735     // And with simple assignments.
11736     if (BO->getOpcode() == BO_Assign)
11737       return AnalyzeAssignment(S, BO);
11738     // And with compound assignments.
11739     if (BO->isAssignmentOp())
11740       return AnalyzeCompoundAssignment(S, BO);
11741   }
11742 
11743   // These break the otherwise-useful invariant below.  Fortunately,
11744   // we don't really need to recurse into them, because any internal
11745   // expressions should have been analyzed already when they were
11746   // built into statements.
11747   if (isa<StmtExpr>(E)) return;
11748 
11749   // Don't descend into unevaluated contexts.
11750   if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
11751 
11752   // Now just recurse over the expression's children.
11753   CC = E->getExprLoc();
11754   BinaryOperator *BO = dyn_cast<BinaryOperator>(E);
11755   bool IsLogicalAndOperator = BO && BO->getOpcode() == BO_LAnd;
11756   for (Stmt *SubStmt : E->children()) {
11757     Expr *ChildExpr = dyn_cast_or_null<Expr>(SubStmt);
11758     if (!ChildExpr)
11759       continue;
11760 
11761     if (IsLogicalAndOperator &&
11762         isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts()))
11763       // Ignore checking string literals that are in logical and operators.
11764       // This is a common pattern for asserts.
11765       continue;
11766     AnalyzeImplicitConversions(S, ChildExpr, CC, IsListInit);
11767   }
11768 
11769   if (BO && BO->isLogicalOp()) {
11770     Expr *SubExpr = BO->getLHS()->IgnoreParenImpCasts();
11771     if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr))
11772       ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc());
11773 
11774     SubExpr = BO->getRHS()->IgnoreParenImpCasts();
11775     if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr))
11776       ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc());
11777   }
11778 
11779   if (const UnaryOperator *U = dyn_cast<UnaryOperator>(E)) {
11780     if (U->getOpcode() == UO_LNot) {
11781       ::CheckBoolLikeConversion(S, U->getSubExpr(), CC);
11782     } else if (U->getOpcode() != UO_AddrOf) {
11783       if (U->getSubExpr()->getType()->isAtomicType())
11784         S.Diag(U->getSubExpr()->getBeginLoc(),
11785                diag::warn_atomic_implicit_seq_cst);
11786     }
11787   }
11788 }
11789 
11790 /// Diagnose integer type and any valid implicit conversion to it.
11791 static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E, const QualType &IntT) {
11792   // Taking into account implicit conversions,
11793   // allow any integer.
11794   if (!E->getType()->isIntegerType()) {
11795     S.Diag(E->getBeginLoc(),
11796            diag::err_opencl_enqueue_kernel_invalid_local_size_type);
11797     return true;
11798   }
11799   // Potentially emit standard warnings for implicit conversions if enabled
11800   // using -Wconversion.
11801   CheckImplicitConversion(S, E, IntT, E->getBeginLoc());
11802   return false;
11803 }
11804 
11805 // Helper function for Sema::DiagnoseAlwaysNonNullPointer.
11806 // Returns true when emitting a warning about taking the address of a reference.
11807 static bool CheckForReference(Sema &SemaRef, const Expr *E,
11808                               const PartialDiagnostic &PD) {
11809   E = E->IgnoreParenImpCasts();
11810 
11811   const FunctionDecl *FD = nullptr;
11812 
11813   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
11814     if (!DRE->getDecl()->getType()->isReferenceType())
11815       return false;
11816   } else if (const MemberExpr *M = dyn_cast<MemberExpr>(E)) {
11817     if (!M->getMemberDecl()->getType()->isReferenceType())
11818       return false;
11819   } else if (const CallExpr *Call = dyn_cast<CallExpr>(E)) {
11820     if (!Call->getCallReturnType(SemaRef.Context)->isReferenceType())
11821       return false;
11822     FD = Call->getDirectCallee();
11823   } else {
11824     return false;
11825   }
11826 
11827   SemaRef.Diag(E->getExprLoc(), PD);
11828 
11829   // If possible, point to location of function.
11830   if (FD) {
11831     SemaRef.Diag(FD->getLocation(), diag::note_reference_is_return_value) << FD;
11832   }
11833 
11834   return true;
11835 }
11836 
11837 // Returns true if the SourceLocation is expanded from any macro body.
11838 // Returns false if the SourceLocation is invalid, is from not in a macro
11839 // expansion, or is from expanded from a top-level macro argument.
11840 static bool IsInAnyMacroBody(const SourceManager &SM, SourceLocation Loc) {
11841   if (Loc.isInvalid())
11842     return false;
11843 
11844   while (Loc.isMacroID()) {
11845     if (SM.isMacroBodyExpansion(Loc))
11846       return true;
11847     Loc = SM.getImmediateMacroCallerLoc(Loc);
11848   }
11849 
11850   return false;
11851 }
11852 
11853 /// Diagnose pointers that are always non-null.
11854 /// \param E the expression containing the pointer
11855 /// \param NullKind NPCK_NotNull if E is a cast to bool, otherwise, E is
11856 /// compared to a null pointer
11857 /// \param IsEqual True when the comparison is equal to a null pointer
11858 /// \param Range Extra SourceRange to highlight in the diagnostic
11859 void Sema::DiagnoseAlwaysNonNullPointer(Expr *E,
11860                                         Expr::NullPointerConstantKind NullKind,
11861                                         bool IsEqual, SourceRange Range) {
11862   if (!E)
11863     return;
11864 
11865   // Don't warn inside macros.
11866   if (E->getExprLoc().isMacroID()) {
11867     const SourceManager &SM = getSourceManager();
11868     if (IsInAnyMacroBody(SM, E->getExprLoc()) ||
11869         IsInAnyMacroBody(SM, Range.getBegin()))
11870       return;
11871   }
11872   E = E->IgnoreImpCasts();
11873 
11874   const bool IsCompare = NullKind != Expr::NPCK_NotNull;
11875 
11876   if (isa<CXXThisExpr>(E)) {
11877     unsigned DiagID = IsCompare ? diag::warn_this_null_compare
11878                                 : diag::warn_this_bool_conversion;
11879     Diag(E->getExprLoc(), DiagID) << E->getSourceRange() << Range << IsEqual;
11880     return;
11881   }
11882 
11883   bool IsAddressOf = false;
11884 
11885   if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
11886     if (UO->getOpcode() != UO_AddrOf)
11887       return;
11888     IsAddressOf = true;
11889     E = UO->getSubExpr();
11890   }
11891 
11892   if (IsAddressOf) {
11893     unsigned DiagID = IsCompare
11894                           ? diag::warn_address_of_reference_null_compare
11895                           : diag::warn_address_of_reference_bool_conversion;
11896     PartialDiagnostic PD = PDiag(DiagID) << E->getSourceRange() << Range
11897                                          << IsEqual;
11898     if (CheckForReference(*this, E, PD)) {
11899       return;
11900     }
11901   }
11902 
11903   auto ComplainAboutNonnullParamOrCall = [&](const Attr *NonnullAttr) {
11904     bool IsParam = isa<NonNullAttr>(NonnullAttr);
11905     std::string Str;
11906     llvm::raw_string_ostream S(Str);
11907     E->printPretty(S, nullptr, getPrintingPolicy());
11908     unsigned DiagID = IsCompare ? diag::warn_nonnull_expr_compare
11909                                 : diag::warn_cast_nonnull_to_bool;
11910     Diag(E->getExprLoc(), DiagID) << IsParam << S.str()
11911       << E->getSourceRange() << Range << IsEqual;
11912     Diag(NonnullAttr->getLocation(), diag::note_declared_nonnull) << IsParam;
11913   };
11914 
11915   // If we have a CallExpr that is tagged with returns_nonnull, we can complain.
11916   if (auto *Call = dyn_cast<CallExpr>(E->IgnoreParenImpCasts())) {
11917     if (auto *Callee = Call->getDirectCallee()) {
11918       if (const Attr *A = Callee->getAttr<ReturnsNonNullAttr>()) {
11919         ComplainAboutNonnullParamOrCall(A);
11920         return;
11921       }
11922     }
11923   }
11924 
11925   // Expect to find a single Decl.  Skip anything more complicated.
11926   ValueDecl *D = nullptr;
11927   if (DeclRefExpr *R = dyn_cast<DeclRefExpr>(E)) {
11928     D = R->getDecl();
11929   } else if (MemberExpr *M = dyn_cast<MemberExpr>(E)) {
11930     D = M->getMemberDecl();
11931   }
11932 
11933   // Weak Decls can be null.
11934   if (!D || D->isWeak())
11935     return;
11936 
11937   // Check for parameter decl with nonnull attribute
11938   if (const auto* PV = dyn_cast<ParmVarDecl>(D)) {
11939     if (getCurFunction() &&
11940         !getCurFunction()->ModifiedNonNullParams.count(PV)) {
11941       if (const Attr *A = PV->getAttr<NonNullAttr>()) {
11942         ComplainAboutNonnullParamOrCall(A);
11943         return;
11944       }
11945 
11946       if (const auto *FD = dyn_cast<FunctionDecl>(PV->getDeclContext())) {
11947         // Skip function template not specialized yet.
11948         if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
11949           return;
11950         auto ParamIter = llvm::find(FD->parameters(), PV);
11951         assert(ParamIter != FD->param_end());
11952         unsigned ParamNo = std::distance(FD->param_begin(), ParamIter);
11953 
11954         for (const auto *NonNull : FD->specific_attrs<NonNullAttr>()) {
11955           if (!NonNull->args_size()) {
11956               ComplainAboutNonnullParamOrCall(NonNull);
11957               return;
11958           }
11959 
11960           for (const ParamIdx &ArgNo : NonNull->args()) {
11961             if (ArgNo.getASTIndex() == ParamNo) {
11962               ComplainAboutNonnullParamOrCall(NonNull);
11963               return;
11964             }
11965           }
11966         }
11967       }
11968     }
11969   }
11970 
11971   QualType T = D->getType();
11972   const bool IsArray = T->isArrayType();
11973   const bool IsFunction = T->isFunctionType();
11974 
11975   // Address of function is used to silence the function warning.
11976   if (IsAddressOf && IsFunction) {
11977     return;
11978   }
11979 
11980   // Found nothing.
11981   if (!IsAddressOf && !IsFunction && !IsArray)
11982     return;
11983 
11984   // Pretty print the expression for the diagnostic.
11985   std::string Str;
11986   llvm::raw_string_ostream S(Str);
11987   E->printPretty(S, nullptr, getPrintingPolicy());
11988 
11989   unsigned DiagID = IsCompare ? diag::warn_null_pointer_compare
11990                               : diag::warn_impcast_pointer_to_bool;
11991   enum {
11992     AddressOf,
11993     FunctionPointer,
11994     ArrayPointer
11995   } DiagType;
11996   if (IsAddressOf)
11997     DiagType = AddressOf;
11998   else if (IsFunction)
11999     DiagType = FunctionPointer;
12000   else if (IsArray)
12001     DiagType = ArrayPointer;
12002   else
12003     llvm_unreachable("Could not determine diagnostic.");
12004   Diag(E->getExprLoc(), DiagID) << DiagType << S.str() << E->getSourceRange()
12005                                 << Range << IsEqual;
12006 
12007   if (!IsFunction)
12008     return;
12009 
12010   // Suggest '&' to silence the function warning.
12011   Diag(E->getExprLoc(), diag::note_function_warning_silence)
12012       << FixItHint::CreateInsertion(E->getBeginLoc(), "&");
12013 
12014   // Check to see if '()' fixit should be emitted.
12015   QualType ReturnType;
12016   UnresolvedSet<4> NonTemplateOverloads;
12017   tryExprAsCall(*E, ReturnType, NonTemplateOverloads);
12018   if (ReturnType.isNull())
12019     return;
12020 
12021   if (IsCompare) {
12022     // There are two cases here.  If there is null constant, the only suggest
12023     // for a pointer return type.  If the null is 0, then suggest if the return
12024     // type is a pointer or an integer type.
12025     if (!ReturnType->isPointerType()) {
12026       if (NullKind == Expr::NPCK_ZeroExpression ||
12027           NullKind == Expr::NPCK_ZeroLiteral) {
12028         if (!ReturnType->isIntegerType())
12029           return;
12030       } else {
12031         return;
12032       }
12033     }
12034   } else { // !IsCompare
12035     // For function to bool, only suggest if the function pointer has bool
12036     // return type.
12037     if (!ReturnType->isSpecificBuiltinType(BuiltinType::Bool))
12038       return;
12039   }
12040   Diag(E->getExprLoc(), diag::note_function_to_function_call)
12041       << FixItHint::CreateInsertion(getLocForEndOfToken(E->getEndLoc()), "()");
12042 }
12043 
12044 /// Diagnoses "dangerous" implicit conversions within the given
12045 /// expression (which is a full expression).  Implements -Wconversion
12046 /// and -Wsign-compare.
12047 ///
12048 /// \param CC the "context" location of the implicit conversion, i.e.
12049 ///   the most location of the syntactic entity requiring the implicit
12050 ///   conversion
12051 void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
12052   // Don't diagnose in unevaluated contexts.
12053   if (isUnevaluatedContext())
12054     return;
12055 
12056   // Don't diagnose for value- or type-dependent expressions.
12057   if (E->isTypeDependent() || E->isValueDependent())
12058     return;
12059 
12060   // Check for array bounds violations in cases where the check isn't triggered
12061   // elsewhere for other Expr types (like BinaryOperators), e.g. when an
12062   // ArraySubscriptExpr is on the RHS of a variable initialization.
12063   CheckArrayAccess(E);
12064 
12065   // This is not the right CC for (e.g.) a variable initialization.
12066   AnalyzeImplicitConversions(*this, E, CC);
12067 }
12068 
12069 /// CheckBoolLikeConversion - Check conversion of given expression to boolean.
12070 /// Input argument E is a logical expression.
12071 void Sema::CheckBoolLikeConversion(Expr *E, SourceLocation CC) {
12072   ::CheckBoolLikeConversion(*this, E, CC);
12073 }
12074 
12075 /// Diagnose when expression is an integer constant expression and its evaluation
12076 /// results in integer overflow
12077 void Sema::CheckForIntOverflow (Expr *E) {
12078   // Use a work list to deal with nested struct initializers.
12079   SmallVector<Expr *, 2> Exprs(1, E);
12080 
12081   do {
12082     Expr *OriginalE = Exprs.pop_back_val();
12083     Expr *E = OriginalE->IgnoreParenCasts();
12084 
12085     if (isa<BinaryOperator>(E)) {
12086       E->EvaluateForOverflow(Context);
12087       continue;
12088     }
12089 
12090     if (auto InitList = dyn_cast<InitListExpr>(OriginalE))
12091       Exprs.append(InitList->inits().begin(), InitList->inits().end());
12092     else if (isa<ObjCBoxedExpr>(OriginalE))
12093       E->EvaluateForOverflow(Context);
12094     else if (auto Call = dyn_cast<CallExpr>(E))
12095       Exprs.append(Call->arg_begin(), Call->arg_end());
12096     else if (auto Message = dyn_cast<ObjCMessageExpr>(E))
12097       Exprs.append(Message->arg_begin(), Message->arg_end());
12098   } while (!Exprs.empty());
12099 }
12100 
12101 namespace {
12102 
12103 /// Visitor for expressions which looks for unsequenced operations on the
12104 /// same object.
12105 class SequenceChecker : public EvaluatedExprVisitor<SequenceChecker> {
12106   using Base = EvaluatedExprVisitor<SequenceChecker>;
12107 
12108   /// A tree of sequenced regions within an expression. Two regions are
12109   /// unsequenced if one is an ancestor or a descendent of the other. When we
12110   /// finish processing an expression with sequencing, such as a comma
12111   /// expression, we fold its tree nodes into its parent, since they are
12112   /// unsequenced with respect to nodes we will visit later.
12113   class SequenceTree {
12114     struct Value {
12115       explicit Value(unsigned Parent) : Parent(Parent), Merged(false) {}
12116       unsigned Parent : 31;
12117       unsigned Merged : 1;
12118     };
12119     SmallVector<Value, 8> Values;
12120 
12121   public:
12122     /// A region within an expression which may be sequenced with respect
12123     /// to some other region.
12124     class Seq {
12125       friend class SequenceTree;
12126 
12127       unsigned Index;
12128 
12129       explicit Seq(unsigned N) : Index(N) {}
12130 
12131     public:
12132       Seq() : Index(0) {}
12133     };
12134 
12135     SequenceTree() { Values.push_back(Value(0)); }
12136     Seq root() const { return Seq(0); }
12137 
12138     /// Create a new sequence of operations, which is an unsequenced
12139     /// subset of \p Parent. This sequence of operations is sequenced with
12140     /// respect to other children of \p Parent.
12141     Seq allocate(Seq Parent) {
12142       Values.push_back(Value(Parent.Index));
12143       return Seq(Values.size() - 1);
12144     }
12145 
12146     /// Merge a sequence of operations into its parent.
12147     void merge(Seq S) {
12148       Values[S.Index].Merged = true;
12149     }
12150 
12151     /// Determine whether two operations are unsequenced. This operation
12152     /// is asymmetric: \p Cur should be the more recent sequence, and \p Old
12153     /// should have been merged into its parent as appropriate.
12154     bool isUnsequenced(Seq Cur, Seq Old) {
12155       unsigned C = representative(Cur.Index);
12156       unsigned Target = representative(Old.Index);
12157       while (C >= Target) {
12158         if (C == Target)
12159           return true;
12160         C = Values[C].Parent;
12161       }
12162       return false;
12163     }
12164 
12165   private:
12166     /// Pick a representative for a sequence.
12167     unsigned representative(unsigned K) {
12168       if (Values[K].Merged)
12169         // Perform path compression as we go.
12170         return Values[K].Parent = representative(Values[K].Parent);
12171       return K;
12172     }
12173   };
12174 
12175   /// An object for which we can track unsequenced uses.
12176   using Object = NamedDecl *;
12177 
12178   /// Different flavors of object usage which we track. We only track the
12179   /// least-sequenced usage of each kind.
12180   enum UsageKind {
12181     /// A read of an object. Multiple unsequenced reads are OK.
12182     UK_Use,
12183 
12184     /// A modification of an object which is sequenced before the value
12185     /// computation of the expression, such as ++n in C++.
12186     UK_ModAsValue,
12187 
12188     /// A modification of an object which is not sequenced before the value
12189     /// computation of the expression, such as n++.
12190     UK_ModAsSideEffect,
12191 
12192     UK_Count = UK_ModAsSideEffect + 1
12193   };
12194 
12195   struct Usage {
12196     Expr *Use;
12197     SequenceTree::Seq Seq;
12198 
12199     Usage() : Use(nullptr), Seq() {}
12200   };
12201 
12202   struct UsageInfo {
12203     Usage Uses[UK_Count];
12204 
12205     /// Have we issued a diagnostic for this variable already?
12206     bool Diagnosed;
12207 
12208     UsageInfo() : Uses(), Diagnosed(false) {}
12209   };
12210   using UsageInfoMap = llvm::SmallDenseMap<Object, UsageInfo, 16>;
12211 
12212   Sema &SemaRef;
12213 
12214   /// Sequenced regions within the expression.
12215   SequenceTree Tree;
12216 
12217   /// Declaration modifications and references which we have seen.
12218   UsageInfoMap UsageMap;
12219 
12220   /// The region we are currently within.
12221   SequenceTree::Seq Region;
12222 
12223   /// Filled in with declarations which were modified as a side-effect
12224   /// (that is, post-increment operations).
12225   SmallVectorImpl<std::pair<Object, Usage>> *ModAsSideEffect = nullptr;
12226 
12227   /// Expressions to check later. We defer checking these to reduce
12228   /// stack usage.
12229   SmallVectorImpl<Expr *> &WorkList;
12230 
12231   /// RAII object wrapping the visitation of a sequenced subexpression of an
12232   /// expression. At the end of this process, the side-effects of the evaluation
12233   /// become sequenced with respect to the value computation of the result, so
12234   /// we downgrade any UK_ModAsSideEffect within the evaluation to
12235   /// UK_ModAsValue.
12236   struct SequencedSubexpression {
12237     SequencedSubexpression(SequenceChecker &Self)
12238       : Self(Self), OldModAsSideEffect(Self.ModAsSideEffect) {
12239       Self.ModAsSideEffect = &ModAsSideEffect;
12240     }
12241 
12242     ~SequencedSubexpression() {
12243       for (auto &M : llvm::reverse(ModAsSideEffect)) {
12244         UsageInfo &U = Self.UsageMap[M.first];
12245         auto &SideEffectUsage = U.Uses[UK_ModAsSideEffect];
12246         Self.addUsage(U, M.first, SideEffectUsage.Use, UK_ModAsValue);
12247         SideEffectUsage = M.second;
12248       }
12249       Self.ModAsSideEffect = OldModAsSideEffect;
12250     }
12251 
12252     SequenceChecker &Self;
12253     SmallVector<std::pair<Object, Usage>, 4> ModAsSideEffect;
12254     SmallVectorImpl<std::pair<Object, Usage>> *OldModAsSideEffect;
12255   };
12256 
12257   /// RAII object wrapping the visitation of a subexpression which we might
12258   /// choose to evaluate as a constant. If any subexpression is evaluated and
12259   /// found to be non-constant, this allows us to suppress the evaluation of
12260   /// the outer expression.
12261   class EvaluationTracker {
12262   public:
12263     EvaluationTracker(SequenceChecker &Self)
12264         : Self(Self), Prev(Self.EvalTracker) {
12265       Self.EvalTracker = this;
12266     }
12267 
12268     ~EvaluationTracker() {
12269       Self.EvalTracker = Prev;
12270       if (Prev)
12271         Prev->EvalOK &= EvalOK;
12272     }
12273 
12274     bool evaluate(const Expr *E, bool &Result) {
12275       if (!EvalOK || E->isValueDependent())
12276         return false;
12277       EvalOK = E->EvaluateAsBooleanCondition(
12278           Result, Self.SemaRef.Context, Self.SemaRef.isConstantEvaluated());
12279       return EvalOK;
12280     }
12281 
12282   private:
12283     SequenceChecker &Self;
12284     EvaluationTracker *Prev;
12285     bool EvalOK = true;
12286   } *EvalTracker = nullptr;
12287 
12288   /// Find the object which is produced by the specified expression,
12289   /// if any.
12290   Object getObject(Expr *E, bool Mod) const {
12291     E = E->IgnoreParenCasts();
12292     if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
12293       if (Mod && (UO->getOpcode() == UO_PreInc || UO->getOpcode() == UO_PreDec))
12294         return getObject(UO->getSubExpr(), Mod);
12295     } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
12296       if (BO->getOpcode() == BO_Comma)
12297         return getObject(BO->getRHS(), Mod);
12298       if (Mod && BO->isAssignmentOp())
12299         return getObject(BO->getLHS(), Mod);
12300     } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
12301       // FIXME: Check for more interesting cases, like "x.n = ++x.n".
12302       if (isa<CXXThisExpr>(ME->getBase()->IgnoreParenCasts()))
12303         return ME->getMemberDecl();
12304     } else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E))
12305       // FIXME: If this is a reference, map through to its value.
12306       return DRE->getDecl();
12307     return nullptr;
12308   }
12309 
12310   /// Note that an object was modified or used by an expression.
12311   void addUsage(UsageInfo &UI, Object O, Expr *Ref, UsageKind UK) {
12312     Usage &U = UI.Uses[UK];
12313     if (!U.Use || !Tree.isUnsequenced(Region, U.Seq)) {
12314       if (UK == UK_ModAsSideEffect && ModAsSideEffect)
12315         ModAsSideEffect->push_back(std::make_pair(O, U));
12316       U.Use = Ref;
12317       U.Seq = Region;
12318     }
12319   }
12320 
12321   /// Check whether a modification or use conflicts with a prior usage.
12322   void checkUsage(Object O, UsageInfo &UI, Expr *Ref, UsageKind OtherKind,
12323                   bool IsModMod) {
12324     if (UI.Diagnosed)
12325       return;
12326 
12327     const Usage &U = UI.Uses[OtherKind];
12328     if (!U.Use || !Tree.isUnsequenced(Region, U.Seq))
12329       return;
12330 
12331     Expr *Mod = U.Use;
12332     Expr *ModOrUse = Ref;
12333     if (OtherKind == UK_Use)
12334       std::swap(Mod, ModOrUse);
12335 
12336     SemaRef.DiagRuntimeBehavior(
12337         Mod->getExprLoc(), {Mod, ModOrUse},
12338         SemaRef.PDiag(IsModMod ? diag::warn_unsequenced_mod_mod
12339                                : diag::warn_unsequenced_mod_use)
12340             << O << SourceRange(ModOrUse->getExprLoc()));
12341     UI.Diagnosed = true;
12342   }
12343 
12344   void notePreUse(Object O, Expr *Use) {
12345     UsageInfo &U = UsageMap[O];
12346     // Uses conflict with other modifications.
12347     checkUsage(O, U, Use, UK_ModAsValue, false);
12348   }
12349 
12350   void notePostUse(Object O, Expr *Use) {
12351     UsageInfo &U = UsageMap[O];
12352     checkUsage(O, U, Use, UK_ModAsSideEffect, false);
12353     addUsage(U, O, Use, UK_Use);
12354   }
12355 
12356   void notePreMod(Object O, Expr *Mod) {
12357     UsageInfo &U = UsageMap[O];
12358     // Modifications conflict with other modifications and with uses.
12359     checkUsage(O, U, Mod, UK_ModAsValue, true);
12360     checkUsage(O, U, Mod, UK_Use, false);
12361   }
12362 
12363   void notePostMod(Object O, Expr *Use, UsageKind UK) {
12364     UsageInfo &U = UsageMap[O];
12365     checkUsage(O, U, Use, UK_ModAsSideEffect, true);
12366     addUsage(U, O, Use, UK);
12367   }
12368 
12369 public:
12370   SequenceChecker(Sema &S, Expr *E, SmallVectorImpl<Expr *> &WorkList)
12371       : Base(S.Context), SemaRef(S), Region(Tree.root()), WorkList(WorkList) {
12372     Visit(E);
12373   }
12374 
12375   void VisitStmt(Stmt *S) {
12376     // Skip all statements which aren't expressions for now.
12377   }
12378 
12379   void VisitExpr(Expr *E) {
12380     // By default, just recurse to evaluated subexpressions.
12381     Base::VisitStmt(E);
12382   }
12383 
12384   void VisitCastExpr(CastExpr *E) {
12385     Object O = Object();
12386     if (E->getCastKind() == CK_LValueToRValue)
12387       O = getObject(E->getSubExpr(), false);
12388 
12389     if (O)
12390       notePreUse(O, E);
12391     VisitExpr(E);
12392     if (O)
12393       notePostUse(O, E);
12394   }
12395 
12396   void VisitSequencedExpressions(Expr *SequencedBefore, Expr *SequencedAfter) {
12397     SequenceTree::Seq BeforeRegion = Tree.allocate(Region);
12398     SequenceTree::Seq AfterRegion = Tree.allocate(Region);
12399     SequenceTree::Seq OldRegion = Region;
12400 
12401     {
12402       SequencedSubexpression SeqBefore(*this);
12403       Region = BeforeRegion;
12404       Visit(SequencedBefore);
12405     }
12406 
12407     Region = AfterRegion;
12408     Visit(SequencedAfter);
12409 
12410     Region = OldRegion;
12411 
12412     Tree.merge(BeforeRegion);
12413     Tree.merge(AfterRegion);
12414   }
12415 
12416   void VisitArraySubscriptExpr(ArraySubscriptExpr *ASE) {
12417     // C++17 [expr.sub]p1:
12418     //   The expression E1[E2] is identical (by definition) to *((E1)+(E2)). The
12419     //   expression E1 is sequenced before the expression E2.
12420     if (SemaRef.getLangOpts().CPlusPlus17)
12421       VisitSequencedExpressions(ASE->getLHS(), ASE->getRHS());
12422     else
12423       Base::VisitStmt(ASE);
12424   }
12425 
12426   void VisitBinComma(BinaryOperator *BO) {
12427     // C++11 [expr.comma]p1:
12428     //   Every value computation and side effect associated with the left
12429     //   expression is sequenced before every value computation and side
12430     //   effect associated with the right expression.
12431     VisitSequencedExpressions(BO->getLHS(), BO->getRHS());
12432   }
12433 
12434   void VisitBinAssign(BinaryOperator *BO) {
12435     // The modification is sequenced after the value computation of the LHS
12436     // and RHS, so check it before inspecting the operands and update the
12437     // map afterwards.
12438     Object O = getObject(BO->getLHS(), true);
12439     if (!O)
12440       return VisitExpr(BO);
12441 
12442     notePreMod(O, BO);
12443 
12444     // C++11 [expr.ass]p7:
12445     //   E1 op= E2 is equivalent to E1 = E1 op E2, except that E1 is evaluated
12446     //   only once.
12447     //
12448     // Therefore, for a compound assignment operator, O is considered used
12449     // everywhere except within the evaluation of E1 itself.
12450     if (isa<CompoundAssignOperator>(BO))
12451       notePreUse(O, BO);
12452 
12453     Visit(BO->getLHS());
12454 
12455     if (isa<CompoundAssignOperator>(BO))
12456       notePostUse(O, BO);
12457 
12458     Visit(BO->getRHS());
12459 
12460     // C++11 [expr.ass]p1:
12461     //   the assignment is sequenced [...] before the value computation of the
12462     //   assignment expression.
12463     // C11 6.5.16/3 has no such rule.
12464     notePostMod(O, BO, SemaRef.getLangOpts().CPlusPlus ? UK_ModAsValue
12465                                                        : UK_ModAsSideEffect);
12466   }
12467 
12468   void VisitCompoundAssignOperator(CompoundAssignOperator *CAO) {
12469     VisitBinAssign(CAO);
12470   }
12471 
12472   void VisitUnaryPreInc(UnaryOperator *UO) { VisitUnaryPreIncDec(UO); }
12473   void VisitUnaryPreDec(UnaryOperator *UO) { VisitUnaryPreIncDec(UO); }
12474   void VisitUnaryPreIncDec(UnaryOperator *UO) {
12475     Object O = getObject(UO->getSubExpr(), true);
12476     if (!O)
12477       return VisitExpr(UO);
12478 
12479     notePreMod(O, UO);
12480     Visit(UO->getSubExpr());
12481     // C++11 [expr.pre.incr]p1:
12482     //   the expression ++x is equivalent to x+=1
12483     notePostMod(O, UO, SemaRef.getLangOpts().CPlusPlus ? UK_ModAsValue
12484                                                        : UK_ModAsSideEffect);
12485   }
12486 
12487   void VisitUnaryPostInc(UnaryOperator *UO) { VisitUnaryPostIncDec(UO); }
12488   void VisitUnaryPostDec(UnaryOperator *UO) { VisitUnaryPostIncDec(UO); }
12489   void VisitUnaryPostIncDec(UnaryOperator *UO) {
12490     Object O = getObject(UO->getSubExpr(), true);
12491     if (!O)
12492       return VisitExpr(UO);
12493 
12494     notePreMod(O, UO);
12495     Visit(UO->getSubExpr());
12496     notePostMod(O, UO, UK_ModAsSideEffect);
12497   }
12498 
12499   /// Don't visit the RHS of '&&' or '||' if it might not be evaluated.
12500   void VisitBinLOr(BinaryOperator *BO) {
12501     // The side-effects of the LHS of an '&&' are sequenced before the
12502     // value computation of the RHS, and hence before the value computation
12503     // of the '&&' itself, unless the LHS evaluates to zero. We treat them
12504     // as if they were unconditionally sequenced.
12505     EvaluationTracker Eval(*this);
12506     {
12507       SequencedSubexpression Sequenced(*this);
12508       Visit(BO->getLHS());
12509     }
12510 
12511     bool Result;
12512     if (Eval.evaluate(BO->getLHS(), Result)) {
12513       if (!Result)
12514         Visit(BO->getRHS());
12515     } else {
12516       // Check for unsequenced operations in the RHS, treating it as an
12517       // entirely separate evaluation.
12518       //
12519       // FIXME: If there are operations in the RHS which are unsequenced
12520       // with respect to operations outside the RHS, and those operations
12521       // are unconditionally evaluated, diagnose them.
12522       WorkList.push_back(BO->getRHS());
12523     }
12524   }
12525   void VisitBinLAnd(BinaryOperator *BO) {
12526     EvaluationTracker Eval(*this);
12527     {
12528       SequencedSubexpression Sequenced(*this);
12529       Visit(BO->getLHS());
12530     }
12531 
12532     bool Result;
12533     if (Eval.evaluate(BO->getLHS(), Result)) {
12534       if (Result)
12535         Visit(BO->getRHS());
12536     } else {
12537       WorkList.push_back(BO->getRHS());
12538     }
12539   }
12540 
12541   // Only visit the condition, unless we can be sure which subexpression will
12542   // be chosen.
12543   void VisitAbstractConditionalOperator(AbstractConditionalOperator *CO) {
12544     EvaluationTracker Eval(*this);
12545     {
12546       SequencedSubexpression Sequenced(*this);
12547       Visit(CO->getCond());
12548     }
12549 
12550     bool Result;
12551     if (Eval.evaluate(CO->getCond(), Result))
12552       Visit(Result ? CO->getTrueExpr() : CO->getFalseExpr());
12553     else {
12554       WorkList.push_back(CO->getTrueExpr());
12555       WorkList.push_back(CO->getFalseExpr());
12556     }
12557   }
12558 
12559   void VisitCallExpr(CallExpr *CE) {
12560     // C++11 [intro.execution]p15:
12561     //   When calling a function [...], every value computation and side effect
12562     //   associated with any argument expression, or with the postfix expression
12563     //   designating the called function, is sequenced before execution of every
12564     //   expression or statement in the body of the function [and thus before
12565     //   the value computation of its result].
12566     SequencedSubexpression Sequenced(*this);
12567     Base::VisitCallExpr(CE);
12568 
12569     // FIXME: CXXNewExpr and CXXDeleteExpr implicitly call functions.
12570   }
12571 
12572   void VisitCXXConstructExpr(CXXConstructExpr *CCE) {
12573     // This is a call, so all subexpressions are sequenced before the result.
12574     SequencedSubexpression Sequenced(*this);
12575 
12576     if (!CCE->isListInitialization())
12577       return VisitExpr(CCE);
12578 
12579     // In C++11, list initializations are sequenced.
12580     SmallVector<SequenceTree::Seq, 32> Elts;
12581     SequenceTree::Seq Parent = Region;
12582     for (CXXConstructExpr::arg_iterator I = CCE->arg_begin(),
12583                                         E = CCE->arg_end();
12584          I != E; ++I) {
12585       Region = Tree.allocate(Parent);
12586       Elts.push_back(Region);
12587       Visit(*I);
12588     }
12589 
12590     // Forget that the initializers are sequenced.
12591     Region = Parent;
12592     for (unsigned I = 0; I < Elts.size(); ++I)
12593       Tree.merge(Elts[I]);
12594   }
12595 
12596   void VisitInitListExpr(InitListExpr *ILE) {
12597     if (!SemaRef.getLangOpts().CPlusPlus11)
12598       return VisitExpr(ILE);
12599 
12600     // In C++11, list initializations are sequenced.
12601     SmallVector<SequenceTree::Seq, 32> Elts;
12602     SequenceTree::Seq Parent = Region;
12603     for (unsigned I = 0; I < ILE->getNumInits(); ++I) {
12604       Expr *E = ILE->getInit(I);
12605       if (!E) continue;
12606       Region = Tree.allocate(Parent);
12607       Elts.push_back(Region);
12608       Visit(E);
12609     }
12610 
12611     // Forget that the initializers are sequenced.
12612     Region = Parent;
12613     for (unsigned I = 0; I < Elts.size(); ++I)
12614       Tree.merge(Elts[I]);
12615   }
12616 };
12617 
12618 } // namespace
12619 
12620 void Sema::CheckUnsequencedOperations(Expr *E) {
12621   SmallVector<Expr *, 8> WorkList;
12622   WorkList.push_back(E);
12623   while (!WorkList.empty()) {
12624     Expr *Item = WorkList.pop_back_val();
12625     SequenceChecker(*this, Item, WorkList);
12626   }
12627 }
12628 
12629 void Sema::CheckCompletedExpr(Expr *E, SourceLocation CheckLoc,
12630                               bool IsConstexpr) {
12631   llvm::SaveAndRestore<bool> ConstantContext(
12632       isConstantEvaluatedOverride, IsConstexpr || isa<ConstantExpr>(E));
12633   CheckImplicitConversions(E, CheckLoc);
12634   if (!E->isInstantiationDependent())
12635     CheckUnsequencedOperations(E);
12636   if (!IsConstexpr && !E->isValueDependent())
12637     CheckForIntOverflow(E);
12638   DiagnoseMisalignedMembers();
12639 }
12640 
12641 void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
12642                                        FieldDecl *BitField,
12643                                        Expr *Init) {
12644   (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
12645 }
12646 
12647 static void diagnoseArrayStarInParamType(Sema &S, QualType PType,
12648                                          SourceLocation Loc) {
12649   if (!PType->isVariablyModifiedType())
12650     return;
12651   if (const auto *PointerTy = dyn_cast<PointerType>(PType)) {
12652     diagnoseArrayStarInParamType(S, PointerTy->getPointeeType(), Loc);
12653     return;
12654   }
12655   if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) {
12656     diagnoseArrayStarInParamType(S, ReferenceTy->getPointeeType(), Loc);
12657     return;
12658   }
12659   if (const auto *ParenTy = dyn_cast<ParenType>(PType)) {
12660     diagnoseArrayStarInParamType(S, ParenTy->getInnerType(), Loc);
12661     return;
12662   }
12663 
12664   const ArrayType *AT = S.Context.getAsArrayType(PType);
12665   if (!AT)
12666     return;
12667 
12668   if (AT->getSizeModifier() != ArrayType::Star) {
12669     diagnoseArrayStarInParamType(S, AT->getElementType(), Loc);
12670     return;
12671   }
12672 
12673   S.Diag(Loc, diag::err_array_star_in_function_definition);
12674 }
12675 
12676 /// CheckParmsForFunctionDef - Check that the parameters of the given
12677 /// function are appropriate for the definition of a function. This
12678 /// takes care of any checks that cannot be performed on the
12679 /// declaration itself, e.g., that the types of each of the function
12680 /// parameters are complete.
12681 bool Sema::CheckParmsForFunctionDef(ArrayRef<ParmVarDecl *> Parameters,
12682                                     bool CheckParameterNames) {
12683   bool HasInvalidParm = false;
12684   for (ParmVarDecl *Param : Parameters) {
12685     // C99 6.7.5.3p4: the parameters in a parameter type list in a
12686     // function declarator that is part of a function definition of
12687     // that function shall not have incomplete type.
12688     //
12689     // This is also C++ [dcl.fct]p6.
12690     if (!Param->isInvalidDecl() &&
12691         RequireCompleteType(Param->getLocation(), Param->getType(),
12692                             diag::err_typecheck_decl_incomplete_type)) {
12693       Param->setInvalidDecl();
12694       HasInvalidParm = true;
12695     }
12696 
12697     // C99 6.9.1p5: If the declarator includes a parameter type list, the
12698     // declaration of each parameter shall include an identifier.
12699     if (CheckParameterNames &&
12700         Param->getIdentifier() == nullptr &&
12701         !Param->isImplicit() &&
12702         !getLangOpts().CPlusPlus)
12703       Diag(Param->getLocation(), diag::err_parameter_name_omitted);
12704 
12705     // C99 6.7.5.3p12:
12706     //   If the function declarator is not part of a definition of that
12707     //   function, parameters may have incomplete type and may use the [*]
12708     //   notation in their sequences of declarator specifiers to specify
12709     //   variable length array types.
12710     QualType PType = Param->getOriginalType();
12711     // FIXME: This diagnostic should point the '[*]' if source-location
12712     // information is added for it.
12713     diagnoseArrayStarInParamType(*this, PType, Param->getLocation());
12714 
12715     // If the parameter is a c++ class type and it has to be destructed in the
12716     // callee function, declare the destructor so that it can be called by the
12717     // callee function. Do not perform any direct access check on the dtor here.
12718     if (!Param->isInvalidDecl()) {
12719       if (CXXRecordDecl *ClassDecl = Param->getType()->getAsCXXRecordDecl()) {
12720         if (!ClassDecl->isInvalidDecl() &&
12721             !ClassDecl->hasIrrelevantDestructor() &&
12722             !ClassDecl->isDependentContext() &&
12723             ClassDecl->isParamDestroyedInCallee()) {
12724           CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
12725           MarkFunctionReferenced(Param->getLocation(), Destructor);
12726           DiagnoseUseOfDecl(Destructor, Param->getLocation());
12727         }
12728       }
12729     }
12730 
12731     // Parameters with the pass_object_size attribute only need to be marked
12732     // constant at function definitions. Because we lack information about
12733     // whether we're on a declaration or definition when we're instantiating the
12734     // attribute, we need to check for constness here.
12735     if (const auto *Attr = Param->getAttr<PassObjectSizeAttr>())
12736       if (!Param->getType().isConstQualified())
12737         Diag(Param->getLocation(), diag::err_attribute_pointers_only)
12738             << Attr->getSpelling() << 1;
12739 
12740     // Check for parameter names shadowing fields from the class.
12741     if (LangOpts.CPlusPlus && !Param->isInvalidDecl()) {
12742       // The owning context for the parameter should be the function, but we
12743       // want to see if this function's declaration context is a record.
12744       DeclContext *DC = Param->getDeclContext();
12745       if (DC && DC->isFunctionOrMethod()) {
12746         if (auto *RD = dyn_cast<CXXRecordDecl>(DC->getParent()))
12747           CheckShadowInheritedFields(Param->getLocation(), Param->getDeclName(),
12748                                      RD, /*DeclIsField*/ false);
12749       }
12750     }
12751   }
12752 
12753   return HasInvalidParm;
12754 }
12755 
12756 /// A helper function to get the alignment of a Decl referred to by DeclRefExpr
12757 /// or MemberExpr.
12758 static CharUnits getDeclAlign(Expr *E, CharUnits TypeAlign,
12759                               ASTContext &Context) {
12760   if (const auto *DRE = dyn_cast<DeclRefExpr>(E))
12761     return Context.getDeclAlign(DRE->getDecl());
12762 
12763   if (const auto *ME = dyn_cast<MemberExpr>(E))
12764     return Context.getDeclAlign(ME->getMemberDecl());
12765 
12766   return TypeAlign;
12767 }
12768 
12769 /// CheckCastAlign - Implements -Wcast-align, which warns when a
12770 /// pointer cast increases the alignment requirements.
12771 void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) {
12772   // This is actually a lot of work to potentially be doing on every
12773   // cast; don't do it if we're ignoring -Wcast_align (as is the default).
12774   if (getDiagnostics().isIgnored(diag::warn_cast_align, TRange.getBegin()))
12775     return;
12776 
12777   // Ignore dependent types.
12778   if (T->isDependentType() || Op->getType()->isDependentType())
12779     return;
12780 
12781   // Require that the destination be a pointer type.
12782   const PointerType *DestPtr = T->getAs<PointerType>();
12783   if (!DestPtr) return;
12784 
12785   // If the destination has alignment 1, we're done.
12786   QualType DestPointee = DestPtr->getPointeeType();
12787   if (DestPointee->isIncompleteType()) return;
12788   CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee);
12789   if (DestAlign.isOne()) return;
12790 
12791   // Require that the source be a pointer type.
12792   const PointerType *SrcPtr = Op->getType()->getAs<PointerType>();
12793   if (!SrcPtr) return;
12794   QualType SrcPointee = SrcPtr->getPointeeType();
12795 
12796   // Whitelist casts from cv void*.  We already implicitly
12797   // whitelisted casts to cv void*, since they have alignment 1.
12798   // Also whitelist casts involving incomplete types, which implicitly
12799   // includes 'void'.
12800   if (SrcPointee->isIncompleteType()) return;
12801 
12802   CharUnits SrcAlign = Context.getTypeAlignInChars(SrcPointee);
12803 
12804   if (auto *CE = dyn_cast<CastExpr>(Op)) {
12805     if (CE->getCastKind() == CK_ArrayToPointerDecay)
12806       SrcAlign = getDeclAlign(CE->getSubExpr(), SrcAlign, Context);
12807   } else if (auto *UO = dyn_cast<UnaryOperator>(Op)) {
12808     if (UO->getOpcode() == UO_AddrOf)
12809       SrcAlign = getDeclAlign(UO->getSubExpr(), SrcAlign, Context);
12810   }
12811 
12812   if (SrcAlign >= DestAlign) return;
12813 
12814   Diag(TRange.getBegin(), diag::warn_cast_align)
12815     << Op->getType() << T
12816     << static_cast<unsigned>(SrcAlign.getQuantity())
12817     << static_cast<unsigned>(DestAlign.getQuantity())
12818     << TRange << Op->getSourceRange();
12819 }
12820 
12821 /// Check whether this array fits the idiom of a size-one tail padded
12822 /// array member of a struct.
12823 ///
12824 /// We avoid emitting out-of-bounds access warnings for such arrays as they are
12825 /// commonly used to emulate flexible arrays in C89 code.
12826 static bool IsTailPaddedMemberArray(Sema &S, const llvm::APInt &Size,
12827                                     const NamedDecl *ND) {
12828   if (Size != 1 || !ND) return false;
12829 
12830   const FieldDecl *FD = dyn_cast<FieldDecl>(ND);
12831   if (!FD) return false;
12832 
12833   // Don't consider sizes resulting from macro expansions or template argument
12834   // substitution to form C89 tail-padded arrays.
12835 
12836   TypeSourceInfo *TInfo = FD->getTypeSourceInfo();
12837   while (TInfo) {
12838     TypeLoc TL = TInfo->getTypeLoc();
12839     // Look through typedefs.
12840     if (TypedefTypeLoc TTL = TL.getAs<TypedefTypeLoc>()) {
12841       const TypedefNameDecl *TDL = TTL.getTypedefNameDecl();
12842       TInfo = TDL->getTypeSourceInfo();
12843       continue;
12844     }
12845     if (ConstantArrayTypeLoc CTL = TL.getAs<ConstantArrayTypeLoc>()) {
12846       const Expr *SizeExpr = dyn_cast<IntegerLiteral>(CTL.getSizeExpr());
12847       if (!SizeExpr || SizeExpr->getExprLoc().isMacroID())
12848         return false;
12849     }
12850     break;
12851   }
12852 
12853   const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext());
12854   if (!RD) return false;
12855   if (RD->isUnion()) return false;
12856   if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
12857     if (!CRD->isStandardLayout()) return false;
12858   }
12859 
12860   // See if this is the last field decl in the record.
12861   const Decl *D = FD;
12862   while ((D = D->getNextDeclInContext()))
12863     if (isa<FieldDecl>(D))
12864       return false;
12865   return true;
12866 }
12867 
12868 void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
12869                             const ArraySubscriptExpr *ASE,
12870                             bool AllowOnePastEnd, bool IndexNegated) {
12871   // Already diagnosed by the constant evaluator.
12872   if (isConstantEvaluated())
12873     return;
12874 
12875   IndexExpr = IndexExpr->IgnoreParenImpCasts();
12876   if (IndexExpr->isValueDependent())
12877     return;
12878 
12879   const Type *EffectiveType =
12880       BaseExpr->getType()->getPointeeOrArrayElementType();
12881   BaseExpr = BaseExpr->IgnoreParenCasts();
12882   const ConstantArrayType *ArrayTy =
12883       Context.getAsConstantArrayType(BaseExpr->getType());
12884 
12885   if (!ArrayTy)
12886     return;
12887 
12888   const Type *BaseType = ArrayTy->getElementType().getTypePtr();
12889   if (EffectiveType->isDependentType() || BaseType->isDependentType())
12890     return;
12891 
12892   Expr::EvalResult Result;
12893   if (!IndexExpr->EvaluateAsInt(Result, Context, Expr::SE_AllowSideEffects))
12894     return;
12895 
12896   llvm::APSInt index = Result.Val.getInt();
12897   if (IndexNegated)
12898     index = -index;
12899 
12900   const NamedDecl *ND = nullptr;
12901   if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
12902     ND = DRE->getDecl();
12903   if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
12904     ND = ME->getMemberDecl();
12905 
12906   if (index.isUnsigned() || !index.isNegative()) {
12907     // It is possible that the type of the base expression after
12908     // IgnoreParenCasts is incomplete, even though the type of the base
12909     // expression before IgnoreParenCasts is complete (see PR39746 for an
12910     // example). In this case we have no information about whether the array
12911     // access exceeds the array bounds. However we can still diagnose an array
12912     // access which precedes the array bounds.
12913     if (BaseType->isIncompleteType())
12914       return;
12915 
12916     llvm::APInt size = ArrayTy->getSize();
12917     if (!size.isStrictlyPositive())
12918       return;
12919 
12920     if (BaseType != EffectiveType) {
12921       // Make sure we're comparing apples to apples when comparing index to size
12922       uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType);
12923       uint64_t array_typesize = Context.getTypeSize(BaseType);
12924       // Handle ptrarith_typesize being zero, such as when casting to void*
12925       if (!ptrarith_typesize) ptrarith_typesize = 1;
12926       if (ptrarith_typesize != array_typesize) {
12927         // There's a cast to a different size type involved
12928         uint64_t ratio = array_typesize / ptrarith_typesize;
12929         // TODO: Be smarter about handling cases where array_typesize is not a
12930         // multiple of ptrarith_typesize
12931         if (ptrarith_typesize * ratio == array_typesize)
12932           size *= llvm::APInt(size.getBitWidth(), ratio);
12933       }
12934     }
12935 
12936     if (size.getBitWidth() > index.getBitWidth())
12937       index = index.zext(size.getBitWidth());
12938     else if (size.getBitWidth() < index.getBitWidth())
12939       size = size.zext(index.getBitWidth());
12940 
12941     // For array subscripting the index must be less than size, but for pointer
12942     // arithmetic also allow the index (offset) to be equal to size since
12943     // computing the next address after the end of the array is legal and
12944     // commonly done e.g. in C++ iterators and range-based for loops.
12945     if (AllowOnePastEnd ? index.ule(size) : index.ult(size))
12946       return;
12947 
12948     // Also don't warn for arrays of size 1 which are members of some
12949     // structure. These are often used to approximate flexible arrays in C89
12950     // code.
12951     if (IsTailPaddedMemberArray(*this, size, ND))
12952       return;
12953 
12954     // Suppress the warning if the subscript expression (as identified by the
12955     // ']' location) and the index expression are both from macro expansions
12956     // within a system header.
12957     if (ASE) {
12958       SourceLocation RBracketLoc = SourceMgr.getSpellingLoc(
12959           ASE->getRBracketLoc());
12960       if (SourceMgr.isInSystemHeader(RBracketLoc)) {
12961         SourceLocation IndexLoc =
12962             SourceMgr.getSpellingLoc(IndexExpr->getBeginLoc());
12963         if (SourceMgr.isWrittenInSameFile(RBracketLoc, IndexLoc))
12964           return;
12965       }
12966     }
12967 
12968     unsigned DiagID = diag::warn_ptr_arith_exceeds_bounds;
12969     if (ASE)
12970       DiagID = diag::warn_array_index_exceeds_bounds;
12971 
12972     DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
12973                         PDiag(DiagID) << index.toString(10, true)
12974                                       << size.toString(10, true)
12975                                       << (unsigned)size.getLimitedValue(~0U)
12976                                       << IndexExpr->getSourceRange());
12977   } else {
12978     unsigned DiagID = diag::warn_array_index_precedes_bounds;
12979     if (!ASE) {
12980       DiagID = diag::warn_ptr_arith_precedes_bounds;
12981       if (index.isNegative()) index = -index;
12982     }
12983 
12984     DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
12985                         PDiag(DiagID) << index.toString(10, true)
12986                                       << IndexExpr->getSourceRange());
12987   }
12988 
12989   if (!ND) {
12990     // Try harder to find a NamedDecl to point at in the note.
12991     while (const ArraySubscriptExpr *ASE =
12992            dyn_cast<ArraySubscriptExpr>(BaseExpr))
12993       BaseExpr = ASE->getBase()->IgnoreParenCasts();
12994     if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
12995       ND = DRE->getDecl();
12996     if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
12997       ND = ME->getMemberDecl();
12998   }
12999 
13000   if (ND)
13001     DiagRuntimeBehavior(ND->getBeginLoc(), BaseExpr,
13002                         PDiag(diag::note_array_index_out_of_bounds)
13003                             << ND->getDeclName());
13004 }
13005 
13006 void Sema::CheckArrayAccess(const Expr *expr) {
13007   int AllowOnePastEnd = 0;
13008   while (expr) {
13009     expr = expr->IgnoreParenImpCasts();
13010     switch (expr->getStmtClass()) {
13011       case Stmt::ArraySubscriptExprClass: {
13012         const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
13013         CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE,
13014                          AllowOnePastEnd > 0);
13015         expr = ASE->getBase();
13016         break;
13017       }
13018       case Stmt::MemberExprClass: {
13019         expr = cast<MemberExpr>(expr)->getBase();
13020         break;
13021       }
13022       case Stmt::OMPArraySectionExprClass: {
13023         const OMPArraySectionExpr *ASE = cast<OMPArraySectionExpr>(expr);
13024         if (ASE->getLowerBound())
13025           CheckArrayAccess(ASE->getBase(), ASE->getLowerBound(),
13026                            /*ASE=*/nullptr, AllowOnePastEnd > 0);
13027         return;
13028       }
13029       case Stmt::UnaryOperatorClass: {
13030         // Only unwrap the * and & unary operators
13031         const UnaryOperator *UO = cast<UnaryOperator>(expr);
13032         expr = UO->getSubExpr();
13033         switch (UO->getOpcode()) {
13034           case UO_AddrOf:
13035             AllowOnePastEnd++;
13036             break;
13037           case UO_Deref:
13038             AllowOnePastEnd--;
13039             break;
13040           default:
13041             return;
13042         }
13043         break;
13044       }
13045       case Stmt::ConditionalOperatorClass: {
13046         const ConditionalOperator *cond = cast<ConditionalOperator>(expr);
13047         if (const Expr *lhs = cond->getLHS())
13048           CheckArrayAccess(lhs);
13049         if (const Expr *rhs = cond->getRHS())
13050           CheckArrayAccess(rhs);
13051         return;
13052       }
13053       case Stmt::CXXOperatorCallExprClass: {
13054         const auto *OCE = cast<CXXOperatorCallExpr>(expr);
13055         for (const auto *Arg : OCE->arguments())
13056           CheckArrayAccess(Arg);
13057         return;
13058       }
13059       default:
13060         return;
13061     }
13062   }
13063 }
13064 
13065 //===--- CHECK: Objective-C retain cycles ----------------------------------//
13066 
13067 namespace {
13068 
13069 struct RetainCycleOwner {
13070   VarDecl *Variable = nullptr;
13071   SourceRange Range;
13072   SourceLocation Loc;
13073   bool Indirect = false;
13074 
13075   RetainCycleOwner() = default;
13076 
13077   void setLocsFrom(Expr *e) {
13078     Loc = e->getExprLoc();
13079     Range = e->getSourceRange();
13080   }
13081 };
13082 
13083 } // namespace
13084 
13085 /// Consider whether capturing the given variable can possibly lead to
13086 /// a retain cycle.
13087 static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) {
13088   // In ARC, it's captured strongly iff the variable has __strong
13089   // lifetime.  In MRR, it's captured strongly if the variable is
13090   // __block and has an appropriate type.
13091   if (var->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
13092     return false;
13093 
13094   owner.Variable = var;
13095   if (ref)
13096     owner.setLocsFrom(ref);
13097   return true;
13098 }
13099 
13100 static bool findRetainCycleOwner(Sema &S, Expr *e, RetainCycleOwner &owner) {
13101   while (true) {
13102     e = e->IgnoreParens();
13103     if (CastExpr *cast = dyn_cast<CastExpr>(e)) {
13104       switch (cast->getCastKind()) {
13105       case CK_BitCast:
13106       case CK_LValueBitCast:
13107       case CK_LValueToRValue:
13108       case CK_ARCReclaimReturnedObject:
13109         e = cast->getSubExpr();
13110         continue;
13111 
13112       default:
13113         return false;
13114       }
13115     }
13116 
13117     if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) {
13118       ObjCIvarDecl *ivar = ref->getDecl();
13119       if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong)
13120         return false;
13121 
13122       // Try to find a retain cycle in the base.
13123       if (!findRetainCycleOwner(S, ref->getBase(), owner))
13124         return false;
13125 
13126       if (ref->isFreeIvar()) owner.setLocsFrom(ref);
13127       owner.Indirect = true;
13128       return true;
13129     }
13130 
13131     if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) {
13132       VarDecl *var = dyn_cast<VarDecl>(ref->getDecl());
13133       if (!var) return false;
13134       return considerVariable(var, ref, owner);
13135     }
13136 
13137     if (MemberExpr *member = dyn_cast<MemberExpr>(e)) {
13138       if (member->isArrow()) return false;
13139 
13140       // Don't count this as an indirect ownership.
13141       e = member->getBase();
13142       continue;
13143     }
13144 
13145     if (PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) {
13146       // Only pay attention to pseudo-objects on property references.
13147       ObjCPropertyRefExpr *pre
13148         = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm()
13149                                               ->IgnoreParens());
13150       if (!pre) return false;
13151       if (pre->isImplicitProperty()) return false;
13152       ObjCPropertyDecl *property = pre->getExplicitProperty();
13153       if (!property->isRetaining() &&
13154           !(property->getPropertyIvarDecl() &&
13155             property->getPropertyIvarDecl()->getType()
13156               .getObjCLifetime() == Qualifiers::OCL_Strong))
13157           return false;
13158 
13159       owner.Indirect = true;
13160       if (pre->isSuperReceiver()) {
13161         owner.Variable = S.getCurMethodDecl()->getSelfDecl();
13162         if (!owner.Variable)
13163           return false;
13164         owner.Loc = pre->getLocation();
13165         owner.Range = pre->getSourceRange();
13166         return true;
13167       }
13168       e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase())
13169                               ->getSourceExpr());
13170       continue;
13171     }
13172 
13173     // Array ivars?
13174 
13175     return false;
13176   }
13177 }
13178 
13179 namespace {
13180 
13181   struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> {
13182     ASTContext &Context;
13183     VarDecl *Variable;
13184     Expr *Capturer = nullptr;
13185     bool VarWillBeReased = false;
13186 
13187     FindCaptureVisitor(ASTContext &Context, VarDecl *variable)
13188         : EvaluatedExprVisitor<FindCaptureVisitor>(Context),
13189           Context(Context), Variable(variable) {}
13190 
13191     void VisitDeclRefExpr(DeclRefExpr *ref) {
13192       if (ref->getDecl() == Variable && !Capturer)
13193         Capturer = ref;
13194     }
13195 
13196     void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) {
13197       if (Capturer) return;
13198       Visit(ref->getBase());
13199       if (Capturer && ref->isFreeIvar())
13200         Capturer = ref;
13201     }
13202 
13203     void VisitBlockExpr(BlockExpr *block) {
13204       // Look inside nested blocks
13205       if (block->getBlockDecl()->capturesVariable(Variable))
13206         Visit(block->getBlockDecl()->getBody());
13207     }
13208 
13209     void VisitOpaqueValueExpr(OpaqueValueExpr *OVE) {
13210       if (Capturer) return;
13211       if (OVE->getSourceExpr())
13212         Visit(OVE->getSourceExpr());
13213     }
13214 
13215     void VisitBinaryOperator(BinaryOperator *BinOp) {
13216       if (!Variable || VarWillBeReased || BinOp->getOpcode() != BO_Assign)
13217         return;
13218       Expr *LHS = BinOp->getLHS();
13219       if (const DeclRefExpr *DRE = dyn_cast_or_null<DeclRefExpr>(LHS)) {
13220         if (DRE->getDecl() != Variable)
13221           return;
13222         if (Expr *RHS = BinOp->getRHS()) {
13223           RHS = RHS->IgnoreParenCasts();
13224           llvm::APSInt Value;
13225           VarWillBeReased =
13226             (RHS && RHS->isIntegerConstantExpr(Value, Context) && Value == 0);
13227         }
13228       }
13229     }
13230   };
13231 
13232 } // namespace
13233 
13234 /// Check whether the given argument is a block which captures a
13235 /// variable.
13236 static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) {
13237   assert(owner.Variable && owner.Loc.isValid());
13238 
13239   e = e->IgnoreParenCasts();
13240 
13241   // Look through [^{...} copy] and Block_copy(^{...}).
13242   if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(e)) {
13243     Selector Cmd = ME->getSelector();
13244     if (Cmd.isUnarySelector() && Cmd.getNameForSlot(0) == "copy") {
13245       e = ME->getInstanceReceiver();
13246       if (!e)
13247         return nullptr;
13248       e = e->IgnoreParenCasts();
13249     }
13250   } else if (CallExpr *CE = dyn_cast<CallExpr>(e)) {
13251     if (CE->getNumArgs() == 1) {
13252       FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl());
13253       if (Fn) {
13254         const IdentifierInfo *FnI = Fn->getIdentifier();
13255         if (FnI && FnI->isStr("_Block_copy")) {
13256           e = CE->getArg(0)->IgnoreParenCasts();
13257         }
13258       }
13259     }
13260   }
13261 
13262   BlockExpr *block = dyn_cast<BlockExpr>(e);
13263   if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable))
13264     return nullptr;
13265 
13266   FindCaptureVisitor visitor(S.Context, owner.Variable);
13267   visitor.Visit(block->getBlockDecl()->getBody());
13268   return visitor.VarWillBeReased ? nullptr : visitor.Capturer;
13269 }
13270 
13271 static void diagnoseRetainCycle(Sema &S, Expr *capturer,
13272                                 RetainCycleOwner &owner) {
13273   assert(capturer);
13274   assert(owner.Variable && owner.Loc.isValid());
13275 
13276   S.Diag(capturer->getExprLoc(), diag::warn_arc_retain_cycle)
13277     << owner.Variable << capturer->getSourceRange();
13278   S.Diag(owner.Loc, diag::note_arc_retain_cycle_owner)
13279     << owner.Indirect << owner.Range;
13280 }
13281 
13282 /// Check for a keyword selector that starts with the word 'add' or
13283 /// 'set'.
13284 static bool isSetterLikeSelector(Selector sel) {
13285   if (sel.isUnarySelector()) return false;
13286 
13287   StringRef str = sel.getNameForSlot(0);
13288   while (!str.empty() && str.front() == '_') str = str.substr(1);
13289   if (str.startswith("set"))
13290     str = str.substr(3);
13291   else if (str.startswith("add")) {
13292     // Specially whitelist 'addOperationWithBlock:'.
13293     if (sel.getNumArgs() == 1 && str.startswith("addOperationWithBlock"))
13294       return false;
13295     str = str.substr(3);
13296   }
13297   else
13298     return false;
13299 
13300   if (str.empty()) return true;
13301   return !isLowercase(str.front());
13302 }
13303 
13304 static Optional<int> GetNSMutableArrayArgumentIndex(Sema &S,
13305                                                     ObjCMessageExpr *Message) {
13306   bool IsMutableArray = S.NSAPIObj->isSubclassOfNSClass(
13307                                                 Message->getReceiverInterface(),
13308                                                 NSAPI::ClassId_NSMutableArray);
13309   if (!IsMutableArray) {
13310     return None;
13311   }
13312 
13313   Selector Sel = Message->getSelector();
13314 
13315   Optional<NSAPI::NSArrayMethodKind> MKOpt =
13316     S.NSAPIObj->getNSArrayMethodKind(Sel);
13317   if (!MKOpt) {
13318     return None;
13319   }
13320 
13321   NSAPI::NSArrayMethodKind MK = *MKOpt;
13322 
13323   switch (MK) {
13324     case NSAPI::NSMutableArr_addObject:
13325     case NSAPI::NSMutableArr_insertObjectAtIndex:
13326     case NSAPI::NSMutableArr_setObjectAtIndexedSubscript:
13327       return 0;
13328     case NSAPI::NSMutableArr_replaceObjectAtIndex:
13329       return 1;
13330 
13331     default:
13332       return None;
13333   }
13334 
13335   return None;
13336 }
13337 
13338 static
13339 Optional<int> GetNSMutableDictionaryArgumentIndex(Sema &S,
13340                                                   ObjCMessageExpr *Message) {
13341   bool IsMutableDictionary = S.NSAPIObj->isSubclassOfNSClass(
13342                                             Message->getReceiverInterface(),
13343                                             NSAPI::ClassId_NSMutableDictionary);
13344   if (!IsMutableDictionary) {
13345     return None;
13346   }
13347 
13348   Selector Sel = Message->getSelector();
13349 
13350   Optional<NSAPI::NSDictionaryMethodKind> MKOpt =
13351     S.NSAPIObj->getNSDictionaryMethodKind(Sel);
13352   if (!MKOpt) {
13353     return None;
13354   }
13355 
13356   NSAPI::NSDictionaryMethodKind MK = *MKOpt;
13357 
13358   switch (MK) {
13359     case NSAPI::NSMutableDict_setObjectForKey:
13360     case NSAPI::NSMutableDict_setValueForKey:
13361     case NSAPI::NSMutableDict_setObjectForKeyedSubscript:
13362       return 0;
13363 
13364     default:
13365       return None;
13366   }
13367 
13368   return None;
13369 }
13370 
13371 static Optional<int> GetNSSetArgumentIndex(Sema &S, ObjCMessageExpr *Message) {
13372   bool IsMutableSet = S.NSAPIObj->isSubclassOfNSClass(
13373                                                 Message->getReceiverInterface(),
13374                                                 NSAPI::ClassId_NSMutableSet);
13375 
13376   bool IsMutableOrderedSet = S.NSAPIObj->isSubclassOfNSClass(
13377                                             Message->getReceiverInterface(),
13378                                             NSAPI::ClassId_NSMutableOrderedSet);
13379   if (!IsMutableSet && !IsMutableOrderedSet) {
13380     return None;
13381   }
13382 
13383   Selector Sel = Message->getSelector();
13384 
13385   Optional<NSAPI::NSSetMethodKind> MKOpt = S.NSAPIObj->getNSSetMethodKind(Sel);
13386   if (!MKOpt) {
13387     return None;
13388   }
13389 
13390   NSAPI::NSSetMethodKind MK = *MKOpt;
13391 
13392   switch (MK) {
13393     case NSAPI::NSMutableSet_addObject:
13394     case NSAPI::NSOrderedSet_setObjectAtIndex:
13395     case NSAPI::NSOrderedSet_setObjectAtIndexedSubscript:
13396     case NSAPI::NSOrderedSet_insertObjectAtIndex:
13397       return 0;
13398     case NSAPI::NSOrderedSet_replaceObjectAtIndexWithObject:
13399       return 1;
13400   }
13401 
13402   return None;
13403 }
13404 
13405 void Sema::CheckObjCCircularContainer(ObjCMessageExpr *Message) {
13406   if (!Message->isInstanceMessage()) {
13407     return;
13408   }
13409 
13410   Optional<int> ArgOpt;
13411 
13412   if (!(ArgOpt = GetNSMutableArrayArgumentIndex(*this, Message)) &&
13413       !(ArgOpt = GetNSMutableDictionaryArgumentIndex(*this, Message)) &&
13414       !(ArgOpt = GetNSSetArgumentIndex(*this, Message))) {
13415     return;
13416   }
13417 
13418   int ArgIndex = *ArgOpt;
13419 
13420   Expr *Arg = Message->getArg(ArgIndex)->IgnoreImpCasts();
13421   if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Arg)) {
13422     Arg = OE->getSourceExpr()->IgnoreImpCasts();
13423   }
13424 
13425   if (Message->getReceiverKind() == ObjCMessageExpr::SuperInstance) {
13426     if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) {
13427       if (ArgRE->isObjCSelfExpr()) {
13428         Diag(Message->getSourceRange().getBegin(),
13429              diag::warn_objc_circular_container)
13430           << ArgRE->getDecl() << StringRef("'super'");
13431       }
13432     }
13433   } else {
13434     Expr *Receiver = Message->getInstanceReceiver()->IgnoreImpCasts();
13435 
13436     if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Receiver)) {
13437       Receiver = OE->getSourceExpr()->IgnoreImpCasts();
13438     }
13439 
13440     if (DeclRefExpr *ReceiverRE = dyn_cast<DeclRefExpr>(Receiver)) {
13441       if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) {
13442         if (ReceiverRE->getDecl() == ArgRE->getDecl()) {
13443           ValueDecl *Decl = ReceiverRE->getDecl();
13444           Diag(Message->getSourceRange().getBegin(),
13445                diag::warn_objc_circular_container)
13446             << Decl << Decl;
13447           if (!ArgRE->isObjCSelfExpr()) {
13448             Diag(Decl->getLocation(),
13449                  diag::note_objc_circular_container_declared_here)
13450               << Decl;
13451           }
13452         }
13453       }
13454     } else if (ObjCIvarRefExpr *IvarRE = dyn_cast<ObjCIvarRefExpr>(Receiver)) {
13455       if (ObjCIvarRefExpr *IvarArgRE = dyn_cast<ObjCIvarRefExpr>(Arg)) {
13456         if (IvarRE->getDecl() == IvarArgRE->getDecl()) {
13457           ObjCIvarDecl *Decl = IvarRE->getDecl();
13458           Diag(Message->getSourceRange().getBegin(),
13459                diag::warn_objc_circular_container)
13460             << Decl << Decl;
13461           Diag(Decl->getLocation(),
13462                diag::note_objc_circular_container_declared_here)
13463             << Decl;
13464         }
13465       }
13466     }
13467   }
13468 }
13469 
13470 /// Check a message send to see if it's likely to cause a retain cycle.
13471 void Sema::checkRetainCycles(ObjCMessageExpr *msg) {
13472   // Only check instance methods whose selector looks like a setter.
13473   if (!msg->isInstanceMessage() || !isSetterLikeSelector(msg->getSelector()))
13474     return;
13475 
13476   // Try to find a variable that the receiver is strongly owned by.
13477   RetainCycleOwner owner;
13478   if (msg->getReceiverKind() == ObjCMessageExpr::Instance) {
13479     if (!findRetainCycleOwner(*this, msg->getInstanceReceiver(), owner))
13480       return;
13481   } else {
13482     assert(msg->getReceiverKind() == ObjCMessageExpr::SuperInstance);
13483     owner.Variable = getCurMethodDecl()->getSelfDecl();
13484     owner.Loc = msg->getSuperLoc();
13485     owner.Range = msg->getSuperLoc();
13486   }
13487 
13488   // Check whether the receiver is captured by any of the arguments.
13489   const ObjCMethodDecl *MD = msg->getMethodDecl();
13490   for (unsigned i = 0, e = msg->getNumArgs(); i != e; ++i) {
13491     if (Expr *capturer = findCapturingExpr(*this, msg->getArg(i), owner)) {
13492       // noescape blocks should not be retained by the method.
13493       if (MD && MD->parameters()[i]->hasAttr<NoEscapeAttr>())
13494         continue;
13495       return diagnoseRetainCycle(*this, capturer, owner);
13496     }
13497   }
13498 }
13499 
13500 /// Check a property assign to see if it's likely to cause a retain cycle.
13501 void Sema::checkRetainCycles(Expr *receiver, Expr *argument) {
13502   RetainCycleOwner owner;
13503   if (!findRetainCycleOwner(*this, receiver, owner))
13504     return;
13505 
13506   if (Expr *capturer = findCapturingExpr(*this, argument, owner))
13507     diagnoseRetainCycle(*this, capturer, owner);
13508 }
13509 
13510 void Sema::checkRetainCycles(VarDecl *Var, Expr *Init) {
13511   RetainCycleOwner Owner;
13512   if (!considerVariable(Var, /*DeclRefExpr=*/nullptr, Owner))
13513     return;
13514 
13515   // Because we don't have an expression for the variable, we have to set the
13516   // location explicitly here.
13517   Owner.Loc = Var->getLocation();
13518   Owner.Range = Var->getSourceRange();
13519 
13520   if (Expr *Capturer = findCapturingExpr(*this, Init, Owner))
13521     diagnoseRetainCycle(*this, Capturer, Owner);
13522 }
13523 
13524 static bool checkUnsafeAssignLiteral(Sema &S, SourceLocation Loc,
13525                                      Expr *RHS, bool isProperty) {
13526   // Check if RHS is an Objective-C object literal, which also can get
13527   // immediately zapped in a weak reference.  Note that we explicitly
13528   // allow ObjCStringLiterals, since those are designed to never really die.
13529   RHS = RHS->IgnoreParenImpCasts();
13530 
13531   // This enum needs to match with the 'select' in
13532   // warn_objc_arc_literal_assign (off-by-1).
13533   Sema::ObjCLiteralKind Kind = S.CheckLiteralKind(RHS);
13534   if (Kind == Sema::LK_String || Kind == Sema::LK_None)
13535     return false;
13536 
13537   S.Diag(Loc, diag::warn_arc_literal_assign)
13538     << (unsigned) Kind
13539     << (isProperty ? 0 : 1)
13540     << RHS->getSourceRange();
13541 
13542   return true;
13543 }
13544 
13545 static bool checkUnsafeAssignObject(Sema &S, SourceLocation Loc,
13546                                     Qualifiers::ObjCLifetime LT,
13547                                     Expr *RHS, bool isProperty) {
13548   // Strip off any implicit cast added to get to the one ARC-specific.
13549   while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
13550     if (cast->getCastKind() == CK_ARCConsumeObject) {
13551       S.Diag(Loc, diag::warn_arc_retained_assign)
13552         << (LT == Qualifiers::OCL_ExplicitNone)
13553         << (isProperty ? 0 : 1)
13554         << RHS->getSourceRange();
13555       return true;
13556     }
13557     RHS = cast->getSubExpr();
13558   }
13559 
13560   if (LT == Qualifiers::OCL_Weak &&
13561       checkUnsafeAssignLiteral(S, Loc, RHS, isProperty))
13562     return true;
13563 
13564   return false;
13565 }
13566 
13567 bool Sema::checkUnsafeAssigns(SourceLocation Loc,
13568                               QualType LHS, Expr *RHS) {
13569   Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime();
13570 
13571   if (LT != Qualifiers::OCL_Weak && LT != Qualifiers::OCL_ExplicitNone)
13572     return false;
13573 
13574   if (checkUnsafeAssignObject(*this, Loc, LT, RHS, false))
13575     return true;
13576 
13577   return false;
13578 }
13579 
13580 void Sema::checkUnsafeExprAssigns(SourceLocation Loc,
13581                               Expr *LHS, Expr *RHS) {
13582   QualType LHSType;
13583   // PropertyRef on LHS type need be directly obtained from
13584   // its declaration as it has a PseudoType.
13585   ObjCPropertyRefExpr *PRE
13586     = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens());
13587   if (PRE && !PRE->isImplicitProperty()) {
13588     const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
13589     if (PD)
13590       LHSType = PD->getType();
13591   }
13592 
13593   if (LHSType.isNull())
13594     LHSType = LHS->getType();
13595 
13596   Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime();
13597 
13598   if (LT == Qualifiers::OCL_Weak) {
13599     if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc))
13600       getCurFunction()->markSafeWeakUse(LHS);
13601   }
13602 
13603   if (checkUnsafeAssigns(Loc, LHSType, RHS))
13604     return;
13605 
13606   // FIXME. Check for other life times.
13607   if (LT != Qualifiers::OCL_None)
13608     return;
13609 
13610   if (PRE) {
13611     if (PRE->isImplicitProperty())
13612       return;
13613     const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
13614     if (!PD)
13615       return;
13616 
13617     unsigned Attributes = PD->getPropertyAttributes();
13618     if (Attributes & ObjCPropertyDecl::OBJC_PR_assign) {
13619       // when 'assign' attribute was not explicitly specified
13620       // by user, ignore it and rely on property type itself
13621       // for lifetime info.
13622       unsigned AsWrittenAttr = PD->getPropertyAttributesAsWritten();
13623       if (!(AsWrittenAttr & ObjCPropertyDecl::OBJC_PR_assign) &&
13624           LHSType->isObjCRetainableType())
13625         return;
13626 
13627       while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
13628         if (cast->getCastKind() == CK_ARCConsumeObject) {
13629           Diag(Loc, diag::warn_arc_retained_property_assign)
13630           << RHS->getSourceRange();
13631           return;
13632         }
13633         RHS = cast->getSubExpr();
13634       }
13635     }
13636     else if (Attributes & ObjCPropertyDecl::OBJC_PR_weak) {
13637       if (checkUnsafeAssignObject(*this, Loc, Qualifiers::OCL_Weak, RHS, true))
13638         return;
13639     }
13640   }
13641 }
13642 
13643 //===--- CHECK: Empty statement body (-Wempty-body) ---------------------===//
13644 
13645 static bool ShouldDiagnoseEmptyStmtBody(const SourceManager &SourceMgr,
13646                                         SourceLocation StmtLoc,
13647                                         const NullStmt *Body) {
13648   // Do not warn if the body is a macro that expands to nothing, e.g:
13649   //
13650   // #define CALL(x)
13651   // if (condition)
13652   //   CALL(0);
13653   if (Body->hasLeadingEmptyMacro())
13654     return false;
13655 
13656   // Get line numbers of statement and body.
13657   bool StmtLineInvalid;
13658   unsigned StmtLine = SourceMgr.getPresumedLineNumber(StmtLoc,
13659                                                       &StmtLineInvalid);
13660   if (StmtLineInvalid)
13661     return false;
13662 
13663   bool BodyLineInvalid;
13664   unsigned BodyLine = SourceMgr.getSpellingLineNumber(Body->getSemiLoc(),
13665                                                       &BodyLineInvalid);
13666   if (BodyLineInvalid)
13667     return false;
13668 
13669   // Warn if null statement and body are on the same line.
13670   if (StmtLine != BodyLine)
13671     return false;
13672 
13673   return true;
13674 }
13675 
13676 void Sema::DiagnoseEmptyStmtBody(SourceLocation StmtLoc,
13677                                  const Stmt *Body,
13678                                  unsigned DiagID) {
13679   // Since this is a syntactic check, don't emit diagnostic for template
13680   // instantiations, this just adds noise.
13681   if (CurrentInstantiationScope)
13682     return;
13683 
13684   // The body should be a null statement.
13685   const NullStmt *NBody = dyn_cast<NullStmt>(Body);
13686   if (!NBody)
13687     return;
13688 
13689   // Do the usual checks.
13690   if (!ShouldDiagnoseEmptyStmtBody(SourceMgr, StmtLoc, NBody))
13691     return;
13692 
13693   Diag(NBody->getSemiLoc(), DiagID);
13694   Diag(NBody->getSemiLoc(), diag::note_empty_body_on_separate_line);
13695 }
13696 
13697 void Sema::DiagnoseEmptyLoopBody(const Stmt *S,
13698                                  const Stmt *PossibleBody) {
13699   assert(!CurrentInstantiationScope); // Ensured by caller
13700 
13701   SourceLocation StmtLoc;
13702   const Stmt *Body;
13703   unsigned DiagID;
13704   if (const ForStmt *FS = dyn_cast<ForStmt>(S)) {
13705     StmtLoc = FS->getRParenLoc();
13706     Body = FS->getBody();
13707     DiagID = diag::warn_empty_for_body;
13708   } else if (const WhileStmt *WS = dyn_cast<WhileStmt>(S)) {
13709     StmtLoc = WS->getCond()->getSourceRange().getEnd();
13710     Body = WS->getBody();
13711     DiagID = diag::warn_empty_while_body;
13712   } else
13713     return; // Neither `for' nor `while'.
13714 
13715   // The body should be a null statement.
13716   const NullStmt *NBody = dyn_cast<NullStmt>(Body);
13717   if (!NBody)
13718     return;
13719 
13720   // Skip expensive checks if diagnostic is disabled.
13721   if (Diags.isIgnored(DiagID, NBody->getSemiLoc()))
13722     return;
13723 
13724   // Do the usual checks.
13725   if (!ShouldDiagnoseEmptyStmtBody(SourceMgr, StmtLoc, NBody))
13726     return;
13727 
13728   // `for(...);' and `while(...);' are popular idioms, so in order to keep
13729   // noise level low, emit diagnostics only if for/while is followed by a
13730   // CompoundStmt, e.g.:
13731   //    for (int i = 0; i < n; i++);
13732   //    {
13733   //      a(i);
13734   //    }
13735   // or if for/while is followed by a statement with more indentation
13736   // than for/while itself:
13737   //    for (int i = 0; i < n; i++);
13738   //      a(i);
13739   bool ProbableTypo = isa<CompoundStmt>(PossibleBody);
13740   if (!ProbableTypo) {
13741     bool BodyColInvalid;
13742     unsigned BodyCol = SourceMgr.getPresumedColumnNumber(
13743         PossibleBody->getBeginLoc(), &BodyColInvalid);
13744     if (BodyColInvalid)
13745       return;
13746 
13747     bool StmtColInvalid;
13748     unsigned StmtCol =
13749         SourceMgr.getPresumedColumnNumber(S->getBeginLoc(), &StmtColInvalid);
13750     if (StmtColInvalid)
13751       return;
13752 
13753     if (BodyCol > StmtCol)
13754       ProbableTypo = true;
13755   }
13756 
13757   if (ProbableTypo) {
13758     Diag(NBody->getSemiLoc(), DiagID);
13759     Diag(NBody->getSemiLoc(), diag::note_empty_body_on_separate_line);
13760   }
13761 }
13762 
13763 //===--- CHECK: Warn on self move with std::move. -------------------------===//
13764 
13765 /// DiagnoseSelfMove - Emits a warning if a value is moved to itself.
13766 void Sema::DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr,
13767                              SourceLocation OpLoc) {
13768   if (Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess, OpLoc))
13769     return;
13770 
13771   if (inTemplateInstantiation())
13772     return;
13773 
13774   // Strip parens and casts away.
13775   LHSExpr = LHSExpr->IgnoreParenImpCasts();
13776   RHSExpr = RHSExpr->IgnoreParenImpCasts();
13777 
13778   // Check for a call expression
13779   const CallExpr *CE = dyn_cast<CallExpr>(RHSExpr);
13780   if (!CE || CE->getNumArgs() != 1)
13781     return;
13782 
13783   // Check for a call to std::move
13784   if (!CE->isCallToStdMove())
13785     return;
13786 
13787   // Get argument from std::move
13788   RHSExpr = CE->getArg(0);
13789 
13790   const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
13791   const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
13792 
13793   // Two DeclRefExpr's, check that the decls are the same.
13794   if (LHSDeclRef && RHSDeclRef) {
13795     if (!LHSDeclRef->getDecl() || !RHSDeclRef->getDecl())
13796       return;
13797     if (LHSDeclRef->getDecl()->getCanonicalDecl() !=
13798         RHSDeclRef->getDecl()->getCanonicalDecl())
13799       return;
13800 
13801     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
13802                                         << LHSExpr->getSourceRange()
13803                                         << RHSExpr->getSourceRange();
13804     return;
13805   }
13806 
13807   // Member variables require a different approach to check for self moves.
13808   // MemberExpr's are the same if every nested MemberExpr refers to the same
13809   // Decl and that the base Expr's are DeclRefExpr's with the same Decl or
13810   // the base Expr's are CXXThisExpr's.
13811   const Expr *LHSBase = LHSExpr;
13812   const Expr *RHSBase = RHSExpr;
13813   const MemberExpr *LHSME = dyn_cast<MemberExpr>(LHSExpr);
13814   const MemberExpr *RHSME = dyn_cast<MemberExpr>(RHSExpr);
13815   if (!LHSME || !RHSME)
13816     return;
13817 
13818   while (LHSME && RHSME) {
13819     if (LHSME->getMemberDecl()->getCanonicalDecl() !=
13820         RHSME->getMemberDecl()->getCanonicalDecl())
13821       return;
13822 
13823     LHSBase = LHSME->getBase();
13824     RHSBase = RHSME->getBase();
13825     LHSME = dyn_cast<MemberExpr>(LHSBase);
13826     RHSME = dyn_cast<MemberExpr>(RHSBase);
13827   }
13828 
13829   LHSDeclRef = dyn_cast<DeclRefExpr>(LHSBase);
13830   RHSDeclRef = dyn_cast<DeclRefExpr>(RHSBase);
13831   if (LHSDeclRef && RHSDeclRef) {
13832     if (!LHSDeclRef->getDecl() || !RHSDeclRef->getDecl())
13833       return;
13834     if (LHSDeclRef->getDecl()->getCanonicalDecl() !=
13835         RHSDeclRef->getDecl()->getCanonicalDecl())
13836       return;
13837 
13838     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
13839                                         << LHSExpr->getSourceRange()
13840                                         << RHSExpr->getSourceRange();
13841     return;
13842   }
13843 
13844   if (isa<CXXThisExpr>(LHSBase) && isa<CXXThisExpr>(RHSBase))
13845     Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType()
13846                                         << LHSExpr->getSourceRange()
13847                                         << RHSExpr->getSourceRange();
13848 }
13849 
13850 //===--- Layout compatibility ----------------------------------------------//
13851 
13852 static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2);
13853 
13854 /// Check if two enumeration types are layout-compatible.
13855 static bool isLayoutCompatible(ASTContext &C, EnumDecl *ED1, EnumDecl *ED2) {
13856   // C++11 [dcl.enum] p8:
13857   // Two enumeration types are layout-compatible if they have the same
13858   // underlying type.
13859   return ED1->isComplete() && ED2->isComplete() &&
13860          C.hasSameType(ED1->getIntegerType(), ED2->getIntegerType());
13861 }
13862 
13863 /// Check if two fields are layout-compatible.
13864 static bool isLayoutCompatible(ASTContext &C, FieldDecl *Field1,
13865                                FieldDecl *Field2) {
13866   if (!isLayoutCompatible(C, Field1->getType(), Field2->getType()))
13867     return false;
13868 
13869   if (Field1->isBitField() != Field2->isBitField())
13870     return false;
13871 
13872   if (Field1->isBitField()) {
13873     // Make sure that the bit-fields are the same length.
13874     unsigned Bits1 = Field1->getBitWidthValue(C);
13875     unsigned Bits2 = Field2->getBitWidthValue(C);
13876 
13877     if (Bits1 != Bits2)
13878       return false;
13879   }
13880 
13881   return true;
13882 }
13883 
13884 /// Check if two standard-layout structs are layout-compatible.
13885 /// (C++11 [class.mem] p17)
13886 static bool isLayoutCompatibleStruct(ASTContext &C, RecordDecl *RD1,
13887                                      RecordDecl *RD2) {
13888   // If both records are C++ classes, check that base classes match.
13889   if (const CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(RD1)) {
13890     // If one of records is a CXXRecordDecl we are in C++ mode,
13891     // thus the other one is a CXXRecordDecl, too.
13892     const CXXRecordDecl *D2CXX = cast<CXXRecordDecl>(RD2);
13893     // Check number of base classes.
13894     if (D1CXX->getNumBases() != D2CXX->getNumBases())
13895       return false;
13896 
13897     // Check the base classes.
13898     for (CXXRecordDecl::base_class_const_iterator
13899                Base1 = D1CXX->bases_begin(),
13900            BaseEnd1 = D1CXX->bases_end(),
13901               Base2 = D2CXX->bases_begin();
13902          Base1 != BaseEnd1;
13903          ++Base1, ++Base2) {
13904       if (!isLayoutCompatible(C, Base1->getType(), Base2->getType()))
13905         return false;
13906     }
13907   } else if (const CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(RD2)) {
13908     // If only RD2 is a C++ class, it should have zero base classes.
13909     if (D2CXX->getNumBases() > 0)
13910       return false;
13911   }
13912 
13913   // Check the fields.
13914   RecordDecl::field_iterator Field2 = RD2->field_begin(),
13915                              Field2End = RD2->field_end(),
13916                              Field1 = RD1->field_begin(),
13917                              Field1End = RD1->field_end();
13918   for ( ; Field1 != Field1End && Field2 != Field2End; ++Field1, ++Field2) {
13919     if (!isLayoutCompatible(C, *Field1, *Field2))
13920       return false;
13921   }
13922   if (Field1 != Field1End || Field2 != Field2End)
13923     return false;
13924 
13925   return true;
13926 }
13927 
13928 /// Check if two standard-layout unions are layout-compatible.
13929 /// (C++11 [class.mem] p18)
13930 static bool isLayoutCompatibleUnion(ASTContext &C, RecordDecl *RD1,
13931                                     RecordDecl *RD2) {
13932   llvm::SmallPtrSet<FieldDecl *, 8> UnmatchedFields;
13933   for (auto *Field2 : RD2->fields())
13934     UnmatchedFields.insert(Field2);
13935 
13936   for (auto *Field1 : RD1->fields()) {
13937     llvm::SmallPtrSet<FieldDecl *, 8>::iterator
13938         I = UnmatchedFields.begin(),
13939         E = UnmatchedFields.end();
13940 
13941     for ( ; I != E; ++I) {
13942       if (isLayoutCompatible(C, Field1, *I)) {
13943         bool Result = UnmatchedFields.erase(*I);
13944         (void) Result;
13945         assert(Result);
13946         break;
13947       }
13948     }
13949     if (I == E)
13950       return false;
13951   }
13952 
13953   return UnmatchedFields.empty();
13954 }
13955 
13956 static bool isLayoutCompatible(ASTContext &C, RecordDecl *RD1,
13957                                RecordDecl *RD2) {
13958   if (RD1->isUnion() != RD2->isUnion())
13959     return false;
13960 
13961   if (RD1->isUnion())
13962     return isLayoutCompatibleUnion(C, RD1, RD2);
13963   else
13964     return isLayoutCompatibleStruct(C, RD1, RD2);
13965 }
13966 
13967 /// Check if two types are layout-compatible in C++11 sense.
13968 static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2) {
13969   if (T1.isNull() || T2.isNull())
13970     return false;
13971 
13972   // C++11 [basic.types] p11:
13973   // If two types T1 and T2 are the same type, then T1 and T2 are
13974   // layout-compatible types.
13975   if (C.hasSameType(T1, T2))
13976     return true;
13977 
13978   T1 = T1.getCanonicalType().getUnqualifiedType();
13979   T2 = T2.getCanonicalType().getUnqualifiedType();
13980 
13981   const Type::TypeClass TC1 = T1->getTypeClass();
13982   const Type::TypeClass TC2 = T2->getTypeClass();
13983 
13984   if (TC1 != TC2)
13985     return false;
13986 
13987   if (TC1 == Type::Enum) {
13988     return isLayoutCompatible(C,
13989                               cast<EnumType>(T1)->getDecl(),
13990                               cast<EnumType>(T2)->getDecl());
13991   } else if (TC1 == Type::Record) {
13992     if (!T1->isStandardLayoutType() || !T2->isStandardLayoutType())
13993       return false;
13994 
13995     return isLayoutCompatible(C,
13996                               cast<RecordType>(T1)->getDecl(),
13997                               cast<RecordType>(T2)->getDecl());
13998   }
13999 
14000   return false;
14001 }
14002 
14003 //===--- CHECK: pointer_with_type_tag attribute: datatypes should match ----//
14004 
14005 /// Given a type tag expression find the type tag itself.
14006 ///
14007 /// \param TypeExpr Type tag expression, as it appears in user's code.
14008 ///
14009 /// \param VD Declaration of an identifier that appears in a type tag.
14010 ///
14011 /// \param MagicValue Type tag magic value.
14012 ///
14013 /// \param isConstantEvaluated wether the evalaution should be performed in
14014 
14015 /// constant context.
14016 static bool FindTypeTagExpr(const Expr *TypeExpr, const ASTContext &Ctx,
14017                             const ValueDecl **VD, uint64_t *MagicValue,
14018                             bool isConstantEvaluated) {
14019   while(true) {
14020     if (!TypeExpr)
14021       return false;
14022 
14023     TypeExpr = TypeExpr->IgnoreParenImpCasts()->IgnoreParenCasts();
14024 
14025     switch (TypeExpr->getStmtClass()) {
14026     case Stmt::UnaryOperatorClass: {
14027       const UnaryOperator *UO = cast<UnaryOperator>(TypeExpr);
14028       if (UO->getOpcode() == UO_AddrOf || UO->getOpcode() == UO_Deref) {
14029         TypeExpr = UO->getSubExpr();
14030         continue;
14031       }
14032       return false;
14033     }
14034 
14035     case Stmt::DeclRefExprClass: {
14036       const DeclRefExpr *DRE = cast<DeclRefExpr>(TypeExpr);
14037       *VD = DRE->getDecl();
14038       return true;
14039     }
14040 
14041     case Stmt::IntegerLiteralClass: {
14042       const IntegerLiteral *IL = cast<IntegerLiteral>(TypeExpr);
14043       llvm::APInt MagicValueAPInt = IL->getValue();
14044       if (MagicValueAPInt.getActiveBits() <= 64) {
14045         *MagicValue = MagicValueAPInt.getZExtValue();
14046         return true;
14047       } else
14048         return false;
14049     }
14050 
14051     case Stmt::BinaryConditionalOperatorClass:
14052     case Stmt::ConditionalOperatorClass: {
14053       const AbstractConditionalOperator *ACO =
14054           cast<AbstractConditionalOperator>(TypeExpr);
14055       bool Result;
14056       if (ACO->getCond()->EvaluateAsBooleanCondition(Result, Ctx,
14057                                                      isConstantEvaluated)) {
14058         if (Result)
14059           TypeExpr = ACO->getTrueExpr();
14060         else
14061           TypeExpr = ACO->getFalseExpr();
14062         continue;
14063       }
14064       return false;
14065     }
14066 
14067     case Stmt::BinaryOperatorClass: {
14068       const BinaryOperator *BO = cast<BinaryOperator>(TypeExpr);
14069       if (BO->getOpcode() == BO_Comma) {
14070         TypeExpr = BO->getRHS();
14071         continue;
14072       }
14073       return false;
14074     }
14075 
14076     default:
14077       return false;
14078     }
14079   }
14080 }
14081 
14082 /// Retrieve the C type corresponding to type tag TypeExpr.
14083 ///
14084 /// \param TypeExpr Expression that specifies a type tag.
14085 ///
14086 /// \param MagicValues Registered magic values.
14087 ///
14088 /// \param FoundWrongKind Set to true if a type tag was found, but of a wrong
14089 ///        kind.
14090 ///
14091 /// \param TypeInfo Information about the corresponding C type.
14092 ///
14093 /// \param isConstantEvaluated wether the evalaution should be performed in
14094 /// constant context.
14095 ///
14096 /// \returns true if the corresponding C type was found.
14097 static bool GetMatchingCType(
14098     const IdentifierInfo *ArgumentKind, const Expr *TypeExpr,
14099     const ASTContext &Ctx,
14100     const llvm::DenseMap<Sema::TypeTagMagicValue, Sema::TypeTagData>
14101         *MagicValues,
14102     bool &FoundWrongKind, Sema::TypeTagData &TypeInfo,
14103     bool isConstantEvaluated) {
14104   FoundWrongKind = false;
14105 
14106   // Variable declaration that has type_tag_for_datatype attribute.
14107   const ValueDecl *VD = nullptr;
14108 
14109   uint64_t MagicValue;
14110 
14111   if (!FindTypeTagExpr(TypeExpr, Ctx, &VD, &MagicValue, isConstantEvaluated))
14112     return false;
14113 
14114   if (VD) {
14115     if (TypeTagForDatatypeAttr *I = VD->getAttr<TypeTagForDatatypeAttr>()) {
14116       if (I->getArgumentKind() != ArgumentKind) {
14117         FoundWrongKind = true;
14118         return false;
14119       }
14120       TypeInfo.Type = I->getMatchingCType();
14121       TypeInfo.LayoutCompatible = I->getLayoutCompatible();
14122       TypeInfo.MustBeNull = I->getMustBeNull();
14123       return true;
14124     }
14125     return false;
14126   }
14127 
14128   if (!MagicValues)
14129     return false;
14130 
14131   llvm::DenseMap<Sema::TypeTagMagicValue,
14132                  Sema::TypeTagData>::const_iterator I =
14133       MagicValues->find(std::make_pair(ArgumentKind, MagicValue));
14134   if (I == MagicValues->end())
14135     return false;
14136 
14137   TypeInfo = I->second;
14138   return true;
14139 }
14140 
14141 void Sema::RegisterTypeTagForDatatype(const IdentifierInfo *ArgumentKind,
14142                                       uint64_t MagicValue, QualType Type,
14143                                       bool LayoutCompatible,
14144                                       bool MustBeNull) {
14145   if (!TypeTagForDatatypeMagicValues)
14146     TypeTagForDatatypeMagicValues.reset(
14147         new llvm::DenseMap<TypeTagMagicValue, TypeTagData>);
14148 
14149   TypeTagMagicValue Magic(ArgumentKind, MagicValue);
14150   (*TypeTagForDatatypeMagicValues)[Magic] =
14151       TypeTagData(Type, LayoutCompatible, MustBeNull);
14152 }
14153 
14154 static bool IsSameCharType(QualType T1, QualType T2) {
14155   const BuiltinType *BT1 = T1->getAs<BuiltinType>();
14156   if (!BT1)
14157     return false;
14158 
14159   const BuiltinType *BT2 = T2->getAs<BuiltinType>();
14160   if (!BT2)
14161     return false;
14162 
14163   BuiltinType::Kind T1Kind = BT1->getKind();
14164   BuiltinType::Kind T2Kind = BT2->getKind();
14165 
14166   return (T1Kind == BuiltinType::SChar  && T2Kind == BuiltinType::Char_S) ||
14167          (T1Kind == BuiltinType::UChar  && T2Kind == BuiltinType::Char_U) ||
14168          (T1Kind == BuiltinType::Char_U && T2Kind == BuiltinType::UChar) ||
14169          (T1Kind == BuiltinType::Char_S && T2Kind == BuiltinType::SChar);
14170 }
14171 
14172 void Sema::CheckArgumentWithTypeTag(const ArgumentWithTypeTagAttr *Attr,
14173                                     const ArrayRef<const Expr *> ExprArgs,
14174                                     SourceLocation CallSiteLoc) {
14175   const IdentifierInfo *ArgumentKind = Attr->getArgumentKind();
14176   bool IsPointerAttr = Attr->getIsPointer();
14177 
14178   // Retrieve the argument representing the 'type_tag'.
14179   unsigned TypeTagIdxAST = Attr->getTypeTagIdx().getASTIndex();
14180   if (TypeTagIdxAST >= ExprArgs.size()) {
14181     Diag(CallSiteLoc, diag::err_tag_index_out_of_range)
14182         << 0 << Attr->getTypeTagIdx().getSourceIndex();
14183     return;
14184   }
14185   const Expr *TypeTagExpr = ExprArgs[TypeTagIdxAST];
14186   bool FoundWrongKind;
14187   TypeTagData TypeInfo;
14188   if (!GetMatchingCType(ArgumentKind, TypeTagExpr, Context,
14189                         TypeTagForDatatypeMagicValues.get(), FoundWrongKind,
14190                         TypeInfo, isConstantEvaluated())) {
14191     if (FoundWrongKind)
14192       Diag(TypeTagExpr->getExprLoc(),
14193            diag::warn_type_tag_for_datatype_wrong_kind)
14194         << TypeTagExpr->getSourceRange();
14195     return;
14196   }
14197 
14198   // Retrieve the argument representing the 'arg_idx'.
14199   unsigned ArgumentIdxAST = Attr->getArgumentIdx().getASTIndex();
14200   if (ArgumentIdxAST >= ExprArgs.size()) {
14201     Diag(CallSiteLoc, diag::err_tag_index_out_of_range)
14202         << 1 << Attr->getArgumentIdx().getSourceIndex();
14203     return;
14204   }
14205   const Expr *ArgumentExpr = ExprArgs[ArgumentIdxAST];
14206   if (IsPointerAttr) {
14207     // Skip implicit cast of pointer to `void *' (as a function argument).
14208     if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgumentExpr))
14209       if (ICE->getType()->isVoidPointerType() &&
14210           ICE->getCastKind() == CK_BitCast)
14211         ArgumentExpr = ICE->getSubExpr();
14212   }
14213   QualType ArgumentType = ArgumentExpr->getType();
14214 
14215   // Passing a `void*' pointer shouldn't trigger a warning.
14216   if (IsPointerAttr && ArgumentType->isVoidPointerType())
14217     return;
14218 
14219   if (TypeInfo.MustBeNull) {
14220     // Type tag with matching void type requires a null pointer.
14221     if (!ArgumentExpr->isNullPointerConstant(Context,
14222                                              Expr::NPC_ValueDependentIsNotNull)) {
14223       Diag(ArgumentExpr->getExprLoc(),
14224            diag::warn_type_safety_null_pointer_required)
14225           << ArgumentKind->getName()
14226           << ArgumentExpr->getSourceRange()
14227           << TypeTagExpr->getSourceRange();
14228     }
14229     return;
14230   }
14231 
14232   QualType RequiredType = TypeInfo.Type;
14233   if (IsPointerAttr)
14234     RequiredType = Context.getPointerType(RequiredType);
14235 
14236   bool mismatch = false;
14237   if (!TypeInfo.LayoutCompatible) {
14238     mismatch = !Context.hasSameType(ArgumentType, RequiredType);
14239 
14240     // C++11 [basic.fundamental] p1:
14241     // Plain char, signed char, and unsigned char are three distinct types.
14242     //
14243     // But we treat plain `char' as equivalent to `signed char' or `unsigned
14244     // char' depending on the current char signedness mode.
14245     if (mismatch)
14246       if ((IsPointerAttr && IsSameCharType(ArgumentType->getPointeeType(),
14247                                            RequiredType->getPointeeType())) ||
14248           (!IsPointerAttr && IsSameCharType(ArgumentType, RequiredType)))
14249         mismatch = false;
14250   } else
14251     if (IsPointerAttr)
14252       mismatch = !isLayoutCompatible(Context,
14253                                      ArgumentType->getPointeeType(),
14254                                      RequiredType->getPointeeType());
14255     else
14256       mismatch = !isLayoutCompatible(Context, ArgumentType, RequiredType);
14257 
14258   if (mismatch)
14259     Diag(ArgumentExpr->getExprLoc(), diag::warn_type_safety_type_mismatch)
14260         << ArgumentType << ArgumentKind
14261         << TypeInfo.LayoutCompatible << RequiredType
14262         << ArgumentExpr->getSourceRange()
14263         << TypeTagExpr->getSourceRange();
14264 }
14265 
14266 void Sema::AddPotentialMisalignedMembers(Expr *E, RecordDecl *RD, ValueDecl *MD,
14267                                          CharUnits Alignment) {
14268   MisalignedMembers.emplace_back(E, RD, MD, Alignment);
14269 }
14270 
14271 void Sema::DiagnoseMisalignedMembers() {
14272   for (MisalignedMember &m : MisalignedMembers) {
14273     const NamedDecl *ND = m.RD;
14274     if (ND->getName().empty()) {
14275       if (const TypedefNameDecl *TD = m.RD->getTypedefNameForAnonDecl())
14276         ND = TD;
14277     }
14278     Diag(m.E->getBeginLoc(), diag::warn_taking_address_of_packed_member)
14279         << m.MD << ND << m.E->getSourceRange();
14280   }
14281   MisalignedMembers.clear();
14282 }
14283 
14284 void Sema::DiscardMisalignedMemberAddress(const Type *T, Expr *E) {
14285   E = E->IgnoreParens();
14286   if (!T->isPointerType() && !T->isIntegerType())
14287     return;
14288   if (isa<UnaryOperator>(E) &&
14289       cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf) {
14290     auto *Op = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens();
14291     if (isa<MemberExpr>(Op)) {
14292       auto MA = llvm::find(MisalignedMembers, MisalignedMember(Op));
14293       if (MA != MisalignedMembers.end() &&
14294           (T->isIntegerType() ||
14295            (T->isPointerType() && (T->getPointeeType()->isIncompleteType() ||
14296                                    Context.getTypeAlignInChars(
14297                                        T->getPointeeType()) <= MA->Alignment))))
14298         MisalignedMembers.erase(MA);
14299     }
14300   }
14301 }
14302 
14303 void Sema::RefersToMemberWithReducedAlignment(
14304     Expr *E,
14305     llvm::function_ref<void(Expr *, RecordDecl *, FieldDecl *, CharUnits)>
14306         Action) {
14307   const auto *ME = dyn_cast<MemberExpr>(E);
14308   if (!ME)
14309     return;
14310 
14311   // No need to check expressions with an __unaligned-qualified type.
14312   if (E->getType().getQualifiers().hasUnaligned())
14313     return;
14314 
14315   // For a chain of MemberExpr like "a.b.c.d" this list
14316   // will keep FieldDecl's like [d, c, b].
14317   SmallVector<FieldDecl *, 4> ReverseMemberChain;
14318   const MemberExpr *TopME = nullptr;
14319   bool AnyIsPacked = false;
14320   do {
14321     QualType BaseType = ME->getBase()->getType();
14322     if (ME->isArrow())
14323       BaseType = BaseType->getPointeeType();
14324     RecordDecl *RD = BaseType->getAs<RecordType>()->getDecl();
14325     if (RD->isInvalidDecl())
14326       return;
14327 
14328     ValueDecl *MD = ME->getMemberDecl();
14329     auto *FD = dyn_cast<FieldDecl>(MD);
14330     // We do not care about non-data members.
14331     if (!FD || FD->isInvalidDecl())
14332       return;
14333 
14334     AnyIsPacked =
14335         AnyIsPacked || (RD->hasAttr<PackedAttr>() || MD->hasAttr<PackedAttr>());
14336     ReverseMemberChain.push_back(FD);
14337 
14338     TopME = ME;
14339     ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParens());
14340   } while (ME);
14341   assert(TopME && "We did not compute a topmost MemberExpr!");
14342 
14343   // Not the scope of this diagnostic.
14344   if (!AnyIsPacked)
14345     return;
14346 
14347   const Expr *TopBase = TopME->getBase()->IgnoreParenImpCasts();
14348   const auto *DRE = dyn_cast<DeclRefExpr>(TopBase);
14349   // TODO: The innermost base of the member expression may be too complicated.
14350   // For now, just disregard these cases. This is left for future
14351   // improvement.
14352   if (!DRE && !isa<CXXThisExpr>(TopBase))
14353       return;
14354 
14355   // Alignment expected by the whole expression.
14356   CharUnits ExpectedAlignment = Context.getTypeAlignInChars(E->getType());
14357 
14358   // No need to do anything else with this case.
14359   if (ExpectedAlignment.isOne())
14360     return;
14361 
14362   // Synthesize offset of the whole access.
14363   CharUnits Offset;
14364   for (auto I = ReverseMemberChain.rbegin(); I != ReverseMemberChain.rend();
14365        I++) {
14366     Offset += Context.toCharUnitsFromBits(Context.getFieldOffset(*I));
14367   }
14368 
14369   // Compute the CompleteObjectAlignment as the alignment of the whole chain.
14370   CharUnits CompleteObjectAlignment = Context.getTypeAlignInChars(
14371       ReverseMemberChain.back()->getParent()->getTypeForDecl());
14372 
14373   // The base expression of the innermost MemberExpr may give
14374   // stronger guarantees than the class containing the member.
14375   if (DRE && !TopME->isArrow()) {
14376     const ValueDecl *VD = DRE->getDecl();
14377     if (!VD->getType()->isReferenceType())
14378       CompleteObjectAlignment =
14379           std::max(CompleteObjectAlignment, Context.getDeclAlign(VD));
14380   }
14381 
14382   // Check if the synthesized offset fulfills the alignment.
14383   if (Offset % ExpectedAlignment != 0 ||
14384       // It may fulfill the offset it but the effective alignment may still be
14385       // lower than the expected expression alignment.
14386       CompleteObjectAlignment < ExpectedAlignment) {
14387     // If this happens, we want to determine a sensible culprit of this.
14388     // Intuitively, watching the chain of member expressions from right to
14389     // left, we start with the required alignment (as required by the field
14390     // type) but some packed attribute in that chain has reduced the alignment.
14391     // It may happen that another packed structure increases it again. But if
14392     // we are here such increase has not been enough. So pointing the first
14393     // FieldDecl that either is packed or else its RecordDecl is,
14394     // seems reasonable.
14395     FieldDecl *FD = nullptr;
14396     CharUnits Alignment;
14397     for (FieldDecl *FDI : ReverseMemberChain) {
14398       if (FDI->hasAttr<PackedAttr>() ||
14399           FDI->getParent()->hasAttr<PackedAttr>()) {
14400         FD = FDI;
14401         Alignment = std::min(
14402             Context.getTypeAlignInChars(FD->getType()),
14403             Context.getTypeAlignInChars(FD->getParent()->getTypeForDecl()));
14404         break;
14405       }
14406     }
14407     assert(FD && "We did not find a packed FieldDecl!");
14408     Action(E, FD->getParent(), FD, Alignment);
14409   }
14410 }
14411 
14412 void Sema::CheckAddressOfPackedMember(Expr *rhs) {
14413   using namespace std::placeholders;
14414 
14415   RefersToMemberWithReducedAlignment(
14416       rhs, std::bind(&Sema::AddPotentialMisalignedMembers, std::ref(*this), _1,
14417                      _2, _3, _4));
14418 }
14419