blob: 1b6390adc48d916745762e732561e0038ec9b991 [file] [log] [blame]
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00001//===- SemaChecking.cpp - Extra Semantic Checking -------------------------===//
Chris Lattnerb87b1b32007-08-10 20:18:51 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Chris Lattnerb87b1b32007-08-10 20:18:51 +00006//
7//===----------------------------------------------------------------------===//
8//
Mike Stump11289f42009-09-09 15:08:12 +00009// This file implements extra semantic analysis beyond what is enforced
Chris Lattnerb87b1b32007-08-10 20:18:51 +000010// by the C type system.
11//
12//===----------------------------------------------------------------------===//
13
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000014#include "clang/AST/APValue.h"
Chris Lattnerb87b1b32007-08-10 20:18:51 +000015#include "clang/AST/ASTContext.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000016#include "clang/AST/Attr.h"
17#include "clang/AST/AttrIterator.h"
Ken Dyck40775002010-01-11 17:06:35 +000018#include "clang/AST/CharUnits.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000019#include "clang/AST/Decl.h"
20#include "clang/AST/DeclBase.h"
John McCall28a0cf72010-08-25 07:42:41 +000021#include "clang/AST/DeclCXX.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000022#include "clang/AST/DeclObjC.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000023#include "clang/AST/DeclarationName.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000024#include "clang/AST/EvaluatedExprVisitor.h"
David Blaikie7555b6a2012-05-15 16:56:36 +000025#include "clang/AST/Expr.h"
Ted Kremenekc81614d2007-08-20 16:18:38 +000026#include "clang/AST/ExprCXX.h"
Ted Kremenek34f664d2008-06-16 18:00:42 +000027#include "clang/AST/ExprObjC.h"
Alexey Bataev1a3320e2015-08-25 14:24:04 +000028#include "clang/AST/ExprOpenMP.h"
Tim Northover314fbfa2018-11-02 13:14:11 +000029#include "clang/AST/FormatString.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000030#include "clang/AST/NSAPI.h"
Akira Hatanaka2be04412018-04-17 19:13:41 +000031#include "clang/AST/NonTrivialTypeVisitor.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000032#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"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000038#include "clang/Basic/AddressSpaces.h"
Jordan Rosea7d03842013-02-08 22:30:41 +000039#include "clang/Basic/CharInfo.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000040#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"
Yaxun Liu39195062017-08-04 18:16:31 +000050#include "clang/Basic/SyncScope.h"
Eric Christopher8d0c6212010-04-17 02:26:23 +000051#include "clang/Basic/TargetBuiltins.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000052#include "clang/Basic/TargetCXXABI.h"
Nate Begeman4904e322010-06-08 02:47:44 +000053#include "clang/Basic/TargetInfo.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000054#include "clang/Basic/TypeTraits.h"
Alp Tokerb6cc5922014-05-03 03:45:55 +000055#include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
Chandler Carruth3a022472012-12-04 09:13:33 +000056#include "clang/Sema/Initialization.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000057#include "clang/Sema/Lookup.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000058#include "clang/Sema/Ownership.h"
59#include "clang/Sema/Scope.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000060#include "clang/Sema/ScopeInfo.h"
61#include "clang/Sema/Sema.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000062#include "clang/Sema/SemaInternal.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000063#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"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000071#include "llvm/ADT/STLExtras.h"
Richard Smithd7293d72013-08-05 18:49:43 +000072#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000073#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000074#include "llvm/ADT/SmallString.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000075#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"
Mehdi Amini9670f842016-07-18 19:02:11 +000082#include "llvm/Support/ConvertUTF.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000083#include "llvm/Support/ErrorHandling.h"
Bruno Cardoso Lopes0c18d032016-03-29 17:35:02 +000084#include "llvm/Support/Format.h"
85#include "llvm/Support/Locale.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000086#include "llvm/Support/MathExtras.h"
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000087#include "llvm/Support/SaveAndRestore.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000088#include "llvm/Support/raw_ostream.h"
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000089#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>
Eugene Zelenko1ced5092016-02-12 22:53:10 +000098
Chris Lattnerb87b1b32007-08-10 20:18:51 +000099using namespace clang;
John McCallaab3e412010-08-25 08:40:02 +0000100using namespace sema;
Chris Lattnerb87b1b32007-08-10 20:18:51 +0000101
Chris Lattnera26fb342009-02-18 17:49:48 +0000102SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL,
103 unsigned ByteNo) const {
Alp Tokerb6cc5922014-05-03 03:45:55 +0000104 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts,
105 Context.getTargetInfo());
Chris Lattnera26fb342009-02-18 17:49:48 +0000106}
107
John McCallbebede42011-02-26 05:39:39 +0000108/// 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.
110static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) {
111 unsigned argCount = call->getNumArgs();
112 if (argCount == desiredArgCount) return false;
113
114 if (argCount < desiredArgCount)
Stephen Kelly1c301dc2018-08-09 21:09:38 +0000115 return S.Diag(call->getEndLoc(), diag::err_typecheck_call_too_few_args)
116 << 0 /*function call*/ << desiredArgCount << argCount
117 << call->getSourceRange();
John McCallbebede42011-02-26 05:39:39 +0000118
119 // Highlight all the excess arguments.
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000120 SourceRange range(call->getArg(desiredArgCount)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +0000121 call->getArg(argCount - 1)->getEndLoc());
Fangrui Song6907ce22018-07-30 19:24:48 +0000122
John McCallbebede42011-02-26 05:39:39 +0000123 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
Julien Lerouge4a5b4442012-04-28 17:39:16 +0000128/// Check that the first argument to __builtin_annotation is an integer
129/// and the second argument is a non-wide string literal.
130static 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000138 S.Diag(ValArg->getBeginLoc(), diag::err_builtin_annotation_first_arg)
139 << ValArg->getSourceRange();
Julien Lerouge5a6b6982011-09-09 22:41:49 +0000140 return true;
141 }
Julien Lerouge4a5b4442012-04-28 17:39:16 +0000142
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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000147 S.Diag(StrArg->getBeginLoc(), diag::err_builtin_annotation_second_arg)
148 << StrArg->getSourceRange();
Julien Lerouge4a5b4442012-04-28 17:39:16 +0000149 return true;
150 }
151
152 TheCall->setType(Ty);
Julien Lerouge5a6b6982011-09-09 22:41:49 +0000153 return false;
154}
155
Reid Kleckner30701ed2017-09-05 20:27:35 +0000156static bool SemaBuiltinMSVCAnnotation(Sema &S, CallExpr *TheCall) {
157 // We need at least one argument.
158 if (TheCall->getNumArgs() < 1) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +0000159 S.Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
Reid Kleckner30701ed2017-09-05 20:27:35 +0000160 << 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000169 S.Diag(Arg->getBeginLoc(), diag::err_msvc_annotation_wide_str)
Reid Kleckner30701ed2017-09-05 20:27:35 +0000170 << Arg->getSourceRange();
171 return true;
172 }
173 }
174
175 return false;
176}
177
Richard Smith6cbd65d2013-07-11 02:27:57 +0000178/// Check that the argument to __builtin_addressof is a glvalue, and set the
179/// result type to the corresponding pointer type.
180static bool SemaBuiltinAddressof(Sema &S, CallExpr *TheCall) {
181 if (checkArgCount(S, TheCall, 1))
182 return true;
183
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000184 ExprResult Arg(TheCall->getArg(0));
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000185 QualType ResultType = S.CheckAddressOfOperand(Arg, TheCall->getBeginLoc());
Richard Smith6cbd65d2013-07-11 02:27:57 +0000186 if (ResultType.isNull())
187 return true;
188
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000189 TheCall->setArg(0, Arg.get());
Richard Smith6cbd65d2013-07-11 02:27:57 +0000190 TheCall->setType(ResultType);
191 return false;
192}
193
Yonghong Song048493f2019-07-09 04:21:50 +0000194/// Check the number of arguments, and set the result type to
195/// the argument type.
196static 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
John McCall03107a42015-10-29 20:48:01 +0000204static 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) {
Erich Keane1d73d1a2018-06-13 13:25:11 +0000210 ExprResult Arg = TheCall->getArg(I);
211 QualType Ty = Arg.get()->getType();
John McCall03107a42015-10-29 20:48:01 +0000212 if (!Ty->isIntegerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000213 S.Diag(Arg.get()->getBeginLoc(), diag::err_overflow_builtin_must_be_int)
Erich Keane1d73d1a2018-06-13 13:25:11 +0000214 << Ty << Arg.get()->getSourceRange();
John McCall03107a42015-10-29 20:48:01 +0000215 return true;
216 }
Erich Keane1d73d1a2018-06-13 13:25:11 +0000217 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());
John McCall03107a42015-10-29 20:48:01 +0000223 }
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 {
Erich Keane1d73d1a2018-06-13 13:25:11 +0000229 ExprResult Arg = TheCall->getArg(2);
230 QualType Ty = Arg.get()->getType();
John McCall03107a42015-10-29 20:48:01 +0000231 const auto *PtrTy = Ty->getAs<PointerType>();
232 if (!(PtrTy && PtrTy->getPointeeType()->isIntegerType() &&
233 !PtrTy->getPointeeType().isConstQualified())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000234 S.Diag(Arg.get()->getBeginLoc(),
Erich Keane1d73d1a2018-06-13 13:25:11 +0000235 diag::err_overflow_builtin_must_be_ptr_int)
236 << Ty << Arg.get()->getSourceRange();
John McCall03107a42015-10-29 20:48:01 +0000237 return true;
238 }
Erich Keane1d73d1a2018-06-13 13:25:11 +0000239 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());
John McCall03107a42015-10-29 20:48:01 +0000245 }
John McCall03107a42015-10-29 20:48:01 +0000246 return false;
247}
248
Peter Collingbournef7706832014-12-12 23:41:25 +0000249static bool SemaBuiltinCallWithStaticChain(Sema &S, CallExpr *BuiltinCall) {
250 if (checkArgCount(S, BuiltinCall, 2))
251 return true;
252
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000253 SourceLocation BuiltinLoc = BuiltinCall->getBeginLoc();
Peter Collingbournef7706832014-12-12 23:41:25 +0000254 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
David Majnemerced8bdf2015-02-25 17:36:15 +0000294 QualType ReturnTy = CE->getCallReturnType(S.Context);
Peter Collingbournef7706832014-12-12 23:41:25 +0000295 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
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +0000312/// 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.
315void 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
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +0000321 if (TheCall->isValueDependent() || TheCall->isTypeDependent() ||
322 isConstantEvaluated())
Erik Pilkington233ff942019-03-29 19:53:41 +0000323 return;
324
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +0000325 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
Erik Pilkington81869802019-03-26 23:21:22 +0000449 DiagRuntimeBehavior(TheCall->getBeginLoc(), TheCall,
450 PDiag(DiagID)
451 << FunctionName << ObjectSize.toString(/*Radix=*/10)
452 << UsedSize.toString(/*Radix=*/10));
Erik Pilkingtonb6e16ea2019-03-18 19:23:45 +0000453}
454
Reid Kleckner1d59f992015-01-22 01:36:17 +0000455static 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.
Richard Smith51ec0cf2017-02-21 01:17:38 +0000461 if (SemaRef.inTemplateInstantiation())
Reid Kleckner1d59f992015-01-22 01:36:17 +0000462 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
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000477static 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.
483static 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();
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000503 ErrorLoc = BD->getParamDecl(ArgCounter)->getBeginLoc();
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000504 } else if (isa<DeclRefExpr>(BlockArg)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000505 ErrorLoc = cast<DeclRefExpr>(BlockArg)->getBeginLoc();
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000506 }
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
Joey Gouly84ae3362017-07-31 15:15:59 +0000516static bool checkOpenCLSubgroupExt(Sema &S, CallExpr *Call) {
517 if (!S.getOpenCLOptions().isEnabled("cl_khr_subgroups")) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000518 S.Diag(Call->getBeginLoc(), diag::err_opencl_requires_extension)
519 << 1 << Call->getDirectCallee() << "cl_khr_subgroups";
Joey Gouly84ae3362017-07-31 15:15:59 +0000520 return true;
521 }
522 return false;
523}
524
Joey Goulyfa76b492017-08-01 13:27:09 +0000525static 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);
Yaxun Liub7318e02017-10-13 03:37:48 +0000534 if (NDRangeArg->getType().getUnqualifiedType().getAsString() != "ndrange_t") {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000535 S.Diag(NDRangeArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
Joey Goulyfa76b492017-08-01 13:27:09 +0000536 << TheCall->getDirectCallee() << "'ndrange_t'";
537 return true;
538 }
539
540 Expr *BlockArg = TheCall->getArg(1);
541 if (!isBlockPointer(BlockArg)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000542 S.Diag(BlockArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
Joey Goulyfa76b492017-08-01 13:27:09 +0000543 << TheCall->getDirectCallee() << "block";
544 return true;
545 }
546 return checkOpenCLBlockArgs(S, BlockArg);
547}
548
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000549/// 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.
552static 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)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000558 S.Diag(BlockArg->getBeginLoc(), diag::err_opencl_builtin_expected_type)
Joey Gouly6b03d952017-07-04 11:50:23 +0000559 << TheCall->getDirectCallee() << "block";
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000560 return true;
561 }
562 return checkOpenCLBlockArgs(S, BlockArg);
563}
564
Simon Pilgrim2c518802017-03-30 14:13:19 +0000565/// Diagnose integer type and any valid implicit conversion to it.
Anastasia Stulova0df4ac32016-11-14 17:39:58 +0000566static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E,
567 const QualType &IntType);
568
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000569static bool checkOpenCLEnqueueLocalSizeArgs(Sema &S, CallExpr *TheCall,
Anastasia Stulova0df4ac32016-11-14 17:39:58 +0000570 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}
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000577
578/// OpenCL v2.0, s6.13.17.1 - Check that sizes are provided for all
579/// 'local void*' parameter of passed block.
580static 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) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000592 S.Diag(TheCall->getBeginLoc(),
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000593 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, ...)
628static bool SemaOpenCLBuiltinEnqueueKernel(Sema &S, CallExpr *TheCall) {
629 unsigned NumArgs = TheCall->getNumArgs();
630
631 if (NumArgs < 4) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000632 S.Diag(TheCall->getBeginLoc(), diag::err_typecheck_call_too_few_args);
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000633 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000643 S.Diag(TheCall->getArg(0)->getBeginLoc(),
Joey Gouly6b03d952017-07-04 11:50:23 +0000644 diag::err_opencl_builtin_expected_type)
645 << TheCall->getDirectCallee() << S.Context.OCLQueueTy;
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000646 return true;
647 }
648
649 // Second argument always needs to be a kernel_enqueue_flags_t enum value.
650 if (!Arg1->getType()->isIntegerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000651 S.Diag(TheCall->getArg(1)->getBeginLoc(),
Joey Gouly6b03d952017-07-04 11:50:23 +0000652 diag::err_opencl_builtin_expected_type)
653 << TheCall->getDirectCallee() << "'kernel_enqueue_flags_t' (i.e. uint)";
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000654 return true;
655 }
656
657 // Third argument is always an ndrange_t type.
Anastasia Stulovab42f3c02017-04-21 15:13:24 +0000658 if (Arg2->getType().getUnqualifiedType().getAsString() != "ndrange_t") {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000659 S.Diag(TheCall->getArg(2)->getBeginLoc(),
Joey Gouly6b03d952017-07-04 11:50:23 +0000660 diag::err_opencl_builtin_expected_type)
661 << TheCall->getDirectCallee() << "'ndrange_t'";
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000662 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)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000670 S.Diag(Arg3->getBeginLoc(), diag::err_opencl_builtin_expected_type)
Joey Gouly6b03d952017-07-04 11:50:23 +0000671 << TheCall->getDirectCallee() << "block";
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000672 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) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000678 S.Diag(Arg3->getBeginLoc(),
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000679 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)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000693 S.Diag(Arg6->getBeginLoc(), diag::err_opencl_builtin_expected_type)
Joey Gouly6b03d952017-07-04 11:50:23 +0000694 << TheCall->getDirectCallee() << "block";
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000695 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000702 S.Diag(TheCall->getArg(3)->getBeginLoc(),
Joey Gouly6b03d952017-07-04 11:50:23 +0000703 diag::err_opencl_builtin_expected_type)
704 << TheCall->getDirectCallee() << "integer";
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000705 return true;
706 }
707 // check remaining common arguments.
708 Expr *Arg4 = TheCall->getArg(4);
709 Expr *Arg5 = TheCall->getArg(5);
710
Anastasia Stulova2b461202016-11-14 15:34:01 +0000711 // 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000715 S.Diag(TheCall->getArg(4)->getBeginLoc(),
Joey Gouly6b03d952017-07-04 11:50:23 +0000716 diag::err_opencl_builtin_expected_type)
717 << TheCall->getDirectCallee()
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000718 << S.Context.getPointerType(S.Context.OCLClkEventTy);
719 return true;
720 }
721
Anastasia Stulova2b461202016-11-14 15:34:01 +0000722 // 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() &&
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000726 Arg5->getType()->getPointeeType()->isClkEventT())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000727 S.Diag(TheCall->getArg(5)->getBeginLoc(),
Joey Gouly6b03d952017-07-04 11:50:23 +0000728 diag::err_opencl_builtin_expected_type)
729 << TheCall->getDirectCallee()
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000730 << 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
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000741 S.Diag(TheCall->getBeginLoc(),
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +0000742 diag::err_opencl_enqueue_kernel_incorrect_args);
743 return true;
744}
745
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000746/// Returns OpenCL access qual.
Xiuli Pan11e13f62016-02-26 03:13:03 +0000747static OpenCLAccessAttr *getOpenCLArgAccess(const Decl *D) {
Xiuli Pan11e13f62016-02-26 03:13:03 +0000748 return D->getAttr<OpenCLAccessAttr>();
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000749}
750
751/// Returns true if pipe element type is different from the pointer.
752static 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000756 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg)
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000757 << Call->getDirectCallee() << Arg0->getSourceRange();
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000758 return true;
759 }
Xiuli Pan11e13f62016-02-26 03:13:03 +0000760 OpenCLAccessAttr *AccessQual =
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000761 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.
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000766 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())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000775 S.Diag(Arg0->getBeginLoc(),
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000776 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())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000789 S.Diag(Arg0->getBeginLoc(),
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000790 diag::err_opencl_builtin_pipe_invalid_access_modifier)
791 << "write_only" << Arg0->getSourceRange();
792 return true;
793 }
794 break;
795 default:
796 break;
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000797 }
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000798 return false;
799}
800
801/// Returns true if pipe element type is different from the pointer.
802static 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());
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000806 const QualType EltTy = PipeTy->getElementType();
807 const PointerType *ArgTy = ArgIdx->getType()->getAs<PointerType>();
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000808 // 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.
Xiuli Pan0a1c6c22016-03-30 04:46:32 +0000810 if (!ArgTy ||
811 !S.Context.hasSameType(
812 EltTy, ArgTy->getPointeeType()->getCanonicalTypeInternal())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000813 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000814 << Call->getDirectCallee() << S.Context.getPointerType(EltTy)
Xiuli Pan0a1c6c22016-03-30 04:46:32 +0000815 << ArgIdx->getType() << ArgIdx->getSourceRange();
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000816 return true;
817 }
818 return false;
819}
820
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000821// Performs semantic analysis for the read/write_pipe call.
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000822// \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.
825static bool SemaBuiltinRWPipe(Sema &S, CallExpr *Call) {
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000826 // OpenCL v2.0 s6.13.16.2 - The built-in read/write
827 // functions have two forms.
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000828 switch (Call->getNumArgs()) {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +0000829 case 2:
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000830 if (checkOpenCLPipeArg(S, Call))
831 return true;
832 // The call with 2 arguments should be
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000833 // read/write_pipe(pipe T, T*).
834 // Check packet type T.
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000835 if (checkOpenCLPipePacketType(S, Call, 1))
836 return true;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +0000837 break;
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000838
839 case 4: {
840 if (checkOpenCLPipeArg(S, Call))
841 return true;
842 // The call with 4 arguments should be
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000843 // read/write_pipe(pipe T, reserve_id_t, uint, T*).
844 // Check reserve_id_t.
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000845 if (!Call->getArg(1)->getType()->isReserveIDT()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000846 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000847 << Call->getDirectCallee() << S.Context.OCLReserveIDTy
Xiuli Pan0a1c6c22016-03-30 04:46:32 +0000848 << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange();
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000849 return true;
850 }
851
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000852 // Check the index.
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000853 const Expr *Arg2 = Call->getArg(2);
854 if (!Arg2->getType()->isIntegerType() &&
855 !Arg2->getType()->isUnsignedIntegerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000856 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000857 << Call->getDirectCallee() << S.Context.UnsignedIntTy
Xiuli Pan0a1c6c22016-03-30 04:46:32 +0000858 << Arg2->getType() << Arg2->getSourceRange();
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000859 return true;
860 }
861
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000862 // Check packet type T.
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000863 if (checkOpenCLPipePacketType(S, Call, 3))
864 return true;
865 } break;
866 default:
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000867 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_arg_num)
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000868 << Call->getDirectCallee() << Call->getSourceRange();
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000869 return true;
870 }
871
872 return false;
873}
874
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000875// Performs a semantic analysis on the {work_group_/sub_group_
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000876// /_}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.
880static 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
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000887 // Check the reserve size.
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000888 if (!Call->getArg(1)->getType()->isIntegerType() &&
889 !Call->getArg(1)->getType()->isUnsignedIntegerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000890 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
Xiuli Pan4415bdb2016-03-04 07:11:16 +0000891 << Call->getDirectCallee() << S.Context.UnsignedIntTy
Xiuli Pan0a1c6c22016-03-30 04:46:32 +0000892 << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange();
Xiuli Panbb4d8d32016-01-26 04:03:48 +0000893 return true;
894 }
895
Joey Gouly922ca232017-08-09 14:52:47 +0000896 // Since return type of reserve_read/write_pipe built-in function is
Aaron Ballman68d50642018-06-19 14:53:20 +0000897 // 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.
909static 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000918 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg)
Aaron Ballman68d50642018-06-19 14:53:20 +0000919 << 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.
932static bool SemaBuiltinPipePackets(Sema &S, CallExpr *Call) {
933 if (checkArgCount(S, Call, 1))
934 return true;
935
936 if (!Call->getArg(0)->getType()->isPipeType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000937 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg)
Aaron Ballman68d50642018-06-19 14:53:20 +0000938 << 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.
951static bool SemaOpenCLBuiltinToAddr(Sema &S, unsigned BuiltinID,
952 CallExpr *Call) {
953 if (Call->getNumArgs() != 1) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000954 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_to_addr_arg_num)
Aaron Ballman68d50642018-06-19 14:53:20 +0000955 << 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) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000962 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_to_addr_invalid_arg)
Aaron Ballman68d50642018-06-19 14:53:20 +0000963 << Call->getArg(0) << Call->getDirectCallee() << Call->getSourceRange();
964 return true;
965 }
966
Sven van Haastregt1076cc22018-09-20 10:07:27 +0000967 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
Aaron Ballman68d50642018-06-19 14:53:20 +0000974 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
Eric Fiselier26187502018-12-14 21:11:28 +0000995static 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
Aaron Ballman68d50642018-06-19 14:53:20 +00001055// Emit an error and return true if the current architecture is not in the list
1056// of supported architectures.
1057static bool
1058CheckBuiltinTargetSupport(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;
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001064 S.Diag(TheCall->getBeginLoc(), diag::err_builtin_target_unsupported)
Aaron Ballman68d50642018-06-19 14:53:20 +00001065 << TheCall->getSourceRange();
1066 return true;
1067}
1068
1069ExprResult
1070Sema::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.
Fangrui Song6907ce22018-07-30 19:24:48 +00001080
Aaron Ballman68d50642018-06-19 14:53:20 +00001081 // 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;
Fangrui Song6907ce22018-07-30 19:24:48 +00001085
Aaron Ballman68d50642018-06-19 14:53:20 +00001086 llvm::APSInt Result;
1087 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
1088 return true;
1089 ICEArguments &= ~(1 << ArgNo);
1090 }
Fangrui Song6907ce22018-07-30 19:24:48 +00001091
Aaron Ballman68d50642018-06-19 14:53:20 +00001092 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()) {
Martin Storsjo0b339e42018-09-27 08:24:15 +00001107 case llvm::Triple::aarch64:
Aaron Ballman68d50642018-06-19 14:53:20 +00001108 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:
Aaron Ballmandd0e2b02018-06-19 14:59:11 +00001165 case Builtin::BI__builtin_signbit:
1166 case Builtin::BI__builtin_signbitf:
1167 case Builtin::BI__builtin_signbitl:
Aaron Ballman68d50642018-06-19 14:53:20 +00001168 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();
George Burgess IV9d045a52019-07-25 22:23:40 +00001182 LLVM_FALLTHROUGH;
1183 case Builtin::BI__builtin_alloca:
1184 Diag(TheCall->getBeginLoc(), diag::warn_alloca)
1185 << TheCall->getDirectCallee();
Aaron Ballman68d50642018-06-19 14:53:20 +00001186 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;
Erik Pilkington9c3b5882019-01-30 20:34:53 +00001196 case Builtin::BI__builtin_dynamic_object_size:
Aaron Ballman68d50642018-06-19 14:53:20 +00001197 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;
Richard Smith31cfb312019-04-27 02:58:17 +00001218 case Builtin::BI__builtin_constant_p: {
Aaron Ballman68d50642018-06-19 14:53:20 +00001219 if (checkArgCount(*this, TheCall, 1)) return true;
Richard Smith31cfb312019-04-27 02:58:17 +00001220 ExprResult Arg = DefaultFunctionArrayLvalueConversion(TheCall->getArg(0));
1221 if (Arg.isInvalid()) return true;
1222 TheCall->setArg(0, Arg.get());
Aaron Ballman68d50642018-06-19 14:53:20 +00001223 TheCall->setType(Context.IntTy);
1224 break;
Richard Smith31cfb312019-04-27 02:58:17 +00001225 }
Eric Fiselier26187502018-12-14 21:11:28 +00001226 case Builtin::BI__builtin_launder:
1227 return SemaBuiltinLaunder(*this, TheCall);
Aaron Ballman68d50642018-06-19 14:53:20 +00001228 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);
JF Bastiene77b48b2018-09-10 20:42:56 +00001331 case Builtin::BI__sync_synchronize:
1332 Diag(TheCall->getBeginLoc(), diag::warn_atomic_implicit_seq_cst)
1333 << TheCall->getCallee()->getSourceRange();
1334 break;
Aaron Ballman68d50642018-06-19 14:53:20 +00001335 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001379 Diag(PtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
Aaron Ballman68d50642018-06-19 14:53:20 +00001380 << PtrArgType << "structure pointer" << 1 << 0 << 3 << 1 << PtrArgType
1381 << "structure pointer";
1382 return ExprError();
Aaron Ballman06525342018-04-10 21:58:13 +00001383 }
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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001389 Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1390 << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 << 2
1391 << FnPtrArgType << "'int (*)(const char *, ...)'";
Aaron Ballman06525342018-04-10 21:58:13 +00001392 return ExprError();
1393 }
1394
1395 const auto *FuncType =
1396 FnPtrArgType->getPointeeType()->getAs<FunctionType>();
1397
1398 if (!FuncType) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001399 Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
1400 << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 << 2
1401 << FnPtrArgType << "'int (*)(const char *, ...)'";
Aaron Ballman06525342018-04-10 21:58:13 +00001402 return ExprError();
1403 }
1404
1405 if (const auto *FT = dyn_cast<FunctionProtoType>(FuncType)) {
1406 if (!FT->getNumParams()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001407 Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
Aaron Ballman06525342018-04-10 21:58:13 +00001408 << 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001416 Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible)
Aaron Ballman06525342018-04-10 21:58:13 +00001417 << 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 }
Yonghong Song048493f2019-07-09 04:21:50 +00001426 case Builtin::BI__builtin_preserve_access_index:
1427 if (SemaBuiltinPreserveAI(*this, TheCall))
1428 return ExprError();
1429 break;
Peter Collingbournef7706832014-12-12 23:41:25 +00001430 case Builtin::BI__builtin_call_with_static_chain:
1431 if (SemaBuiltinCallWithStaticChain(*this, TheCall))
1432 return ExprError();
1433 break;
Reid Kleckner1d59f992015-01-22 01:36:17 +00001434 case Builtin::BI__exception_code:
Eugene Zelenko1ced5092016-02-12 22:53:10 +00001435 case Builtin::BI_exception_code:
Reid Kleckner1d59f992015-01-22 01:36:17 +00001436 if (SemaBuiltinSEHScopeCheck(*this, TheCall, Scope::SEHExceptScope,
1437 diag::err_seh___except_block))
1438 return ExprError();
1439 break;
Reid Kleckner1d59f992015-01-22 01:36:17 +00001440 case Builtin::BI__exception_info:
Eugene Zelenko1ced5092016-02-12 22:53:10 +00001441 case Builtin::BI_exception_info:
Reid Kleckner1d59f992015-01-22 01:36:17 +00001442 if (SemaBuiltinSEHScopeCheck(*this, TheCall, Scope::SEHFilterScope,
1443 diag::err_seh___except_filter))
1444 return ExprError();
1445 break;
David Majnemerba3e5ec2015-03-13 18:26:17 +00001446 case Builtin::BI__GetExceptionInfo:
1447 if (checkArgCount(*this, TheCall, 1))
1448 return ExprError();
1449
1450 if (CheckCXXThrowOperand(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001451 TheCall->getBeginLoc(),
David Majnemerba3e5ec2015-03-13 18:26:17 +00001452 Context.getExceptionObjectType(FDecl->getParamDecl(0)->getType()),
1453 TheCall))
1454 return ExprError();
1455
1456 TheCall->setType(Context.VoidPtrTy);
1457 break;
Anastasia Stulova7f8d6dc2016-07-04 16:07:18 +00001458 // OpenCL v2.0, s6.13.16 - Pipe functions
Xiuli Panbb4d8d32016-01-26 04:03:48 +00001459 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:
Joey Gouly84ae3362017-07-31 15:15:59 +00001470 if (SemaBuiltinReserveRWPipe(*this, TheCall))
1471 return ExprError();
Joey Gouly84ae3362017-07-31 15:15:59 +00001472 break;
Xiuli Panbb4d8d32016-01-26 04:03:48 +00001473 case Builtin::BIsub_group_reserve_read_pipe:
1474 case Builtin::BIsub_group_reserve_write_pipe:
Joey Gouly84ae3362017-07-31 15:15:59 +00001475 if (checkOpenCLSubgroupExt(*this, TheCall) ||
1476 SemaBuiltinReserveRWPipe(*this, TheCall))
Xiuli Panbb4d8d32016-01-26 04:03:48 +00001477 return ExprError();
Xiuli Panbb4d8d32016-01-26 04:03:48 +00001478 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:
Joey Gouly84ae3362017-07-31 15:15:59 +00001483 if (SemaBuiltinCommitRWPipe(*this, TheCall))
1484 return ExprError();
1485 break;
Xiuli Panbb4d8d32016-01-26 04:03:48 +00001486 case Builtin::BIsub_group_commit_read_pipe:
1487 case Builtin::BIsub_group_commit_write_pipe:
Joey Gouly84ae3362017-07-31 15:15:59 +00001488 if (checkOpenCLSubgroupExt(*this, TheCall) ||
1489 SemaBuiltinCommitRWPipe(*this, TheCall))
Xiuli Panbb4d8d32016-01-26 04:03:48 +00001490 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;
Yaxun Liuf7449a12016-05-20 19:54:38 +00001497 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;
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +00001503 // 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();
Mehdi Amini06d367c2016-10-24 20:39:34 +00001512 break;
Joey Goulyfa76b492017-08-01 13:27:09 +00001513 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;
Mehdi Amini06d367c2016-10-24 20:39:34 +00001518 case Builtin::BI__builtin_os_log_format:
1519 case Builtin::BI__builtin_os_log_format_buffer_size:
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00001520 if (SemaBuiltinOSLogFormat(TheCall))
Mehdi Amini06d367c2016-10-24 20:39:34 +00001521 return ExprError();
Mehdi Amini06d367c2016-10-24 20:39:34 +00001522 break;
Nate Begeman4904e322010-06-08 02:47:44 +00001523 }
Richard Smith760520b2014-06-03 23:27:44 +00001524
Nate Begeman4904e322010-06-08 02:47:44 +00001525 // Since the target specific builtins for each arch overlap, only check those
1526 // of the arch we are compiling for.
Artem Belevich9674a642015-09-22 17:23:05 +00001527 if (Context.BuiltinInfo.isTSBuiltin(BuiltinID)) {
Douglas Gregore8bbc122011-09-02 00:18:52 +00001528 switch (Context.getTargetInfo().getTriple().getArch()) {
Nate Begeman4904e322010-06-08 02:47:44 +00001529 case llvm::Triple::arm:
Christian Pirkerf01cd6f2014-03-28 14:40:46 +00001530 case llvm::Triple::armeb:
Nate Begeman4904e322010-06-08 02:47:44 +00001531 case llvm::Triple::thumb:
Christian Pirkerf01cd6f2014-03-28 14:40:46 +00001532 case llvm::Triple::thumbeb:
Nate Begeman4904e322010-06-08 02:47:44 +00001533 if (CheckARMBuiltinFunctionCall(BuiltinID, TheCall))
1534 return ExprError();
1535 break;
Tim Northover25e8a672014-05-24 12:51:25 +00001536 case llvm::Triple::aarch64:
1537 case llvm::Triple::aarch64_be:
Tim Northover573cbee2014-05-24 12:52:07 +00001538 if (CheckAArch64BuiltinFunctionCall(BuiltinID, TheCall))
Tim Northovera2ee4332014-03-29 15:09:45 +00001539 return ExprError();
1540 break;
Krzysztof Parzyszek45850682018-05-11 16:41:51 +00001541 case llvm::Triple::hexagon:
1542 if (CheckHexagonBuiltinFunctionCall(BuiltinID, TheCall))
1543 return ExprError();
1544 break;
Simon Atanasyanecedf3d2012-07-08 09:30:00 +00001545 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;
Ulrich Weigand3a610eb2015-04-01 12:54:25 +00001552 case llvm::Triple::systemz:
1553 if (CheckSystemZBuiltinFunctionCall(BuiltinID, TheCall))
1554 return ExprError();
1555 break;
Warren Hunt20e4a5d2014-02-21 23:08:53 +00001556 case llvm::Triple::x86:
1557 case llvm::Triple::x86_64:
1558 if (CheckX86BuiltinFunctionCall(BuiltinID, TheCall))
1559 return ExprError();
1560 break;
Kit Bartone50adcb2015-03-30 19:40:59 +00001561 case llvm::Triple::ppc:
1562 case llvm::Triple::ppc64:
1563 case llvm::Triple::ppc64le:
1564 if (CheckPPCBuiltinFunctionCall(BuiltinID, TheCall))
1565 return ExprError();
1566 break;
Nate Begeman4904e322010-06-08 02:47:44 +00001567 default:
1568 break;
1569 }
1570 }
1571
Benjamin Kramer62b95d82012-08-23 21:35:17 +00001572 return TheCallResult;
Nate Begeman4904e322010-06-08 02:47:44 +00001573}
1574
Nate Begeman91e1fea2010-06-14 05:21:25 +00001575// Get the valid immediate range for the specified NEON type code.
Tim Northover3402dc72014-02-12 12:04:59 +00001576static unsigned RFT(unsigned t, bool shift = false, bool ForceQuad = false) {
Bob Wilson98bc98c2011-11-08 01:16:11 +00001577 NeonTypeFlags Type(t);
Tim Northover3402dc72014-02-12 12:04:59 +00001578 int IsQuad = ForceQuad ? true : Type.isQuad();
Bob Wilson98bc98c2011-11-08 01:16:11 +00001579 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:
Kevin Qincaac85e2013-11-14 03:29:16 +00001589 case NeonTypeFlags::Poly64:
Bob Wilson98bc98c2011-11-08 01:16:11 +00001590 return shift ? 63 : (1 << IsQuad) - 1;
Kevin Qinfb79d7f2013-12-10 06:49:01 +00001591 case NeonTypeFlags::Poly128:
1592 return shift ? 127 : (1 << IsQuad) - 1;
Bob Wilson98bc98c2011-11-08 01:16:11 +00001593 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;
Tim Northover2fe823a2013-08-01 09:23:19 +00001599 case NeonTypeFlags::Float64:
1600 assert(!shift && "cannot shift float types!");
1601 return (1 << IsQuad) - 1;
Nate Begeman91e1fea2010-06-14 05:21:25 +00001602 }
David Blaikie8a40f702012-01-17 06:56:22 +00001603 llvm_unreachable("Invalid NeonTypeFlag!");
Nate Begeman91e1fea2010-06-14 05:21:25 +00001604}
1605
Bob Wilsone4d77232011-11-08 05:04:11 +00001606/// 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.
Kevin Qincaac85e2013-11-14 03:29:16 +00001609static QualType getNeonEltType(NeonTypeFlags Flags, ASTContext &Context,
Tim Northovera2ee4332014-03-29 15:09:45 +00001610 bool IsPolyUnsigned, bool IsInt64Long) {
Bob Wilsone4d77232011-11-08 05:04:11 +00001611 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:
Tim Northovera2ee4332014-03-29 15:09:45 +00001619 if (IsInt64Long)
Kevin Qinad64f6d2014-02-24 02:45:03 +00001620 return Flags.isUnsigned() ? Context.UnsignedLongTy : Context.LongTy;
1621 else
1622 return Flags.isUnsigned() ? Context.UnsignedLongLongTy
1623 : Context.LongLongTy;
Bob Wilsone4d77232011-11-08 05:04:11 +00001624 case NeonTypeFlags::Poly8:
Tim Northovera2ee4332014-03-29 15:09:45 +00001625 return IsPolyUnsigned ? Context.UnsignedCharTy : Context.SignedCharTy;
Bob Wilsone4d77232011-11-08 05:04:11 +00001626 case NeonTypeFlags::Poly16:
Tim Northovera2ee4332014-03-29 15:09:45 +00001627 return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy;
Kevin Qincaac85e2013-11-14 03:29:16 +00001628 case NeonTypeFlags::Poly64:
Kevin Qin78b86532015-05-14 08:18:05 +00001629 if (IsInt64Long)
1630 return Context.UnsignedLongTy;
1631 else
1632 return Context.UnsignedLongLongTy;
Kevin Qinfb79d7f2013-12-10 06:49:01 +00001633 case NeonTypeFlags::Poly128:
1634 break;
Bob Wilsone4d77232011-11-08 05:04:11 +00001635 case NeonTypeFlags::Float16:
Kevin Qincaac85e2013-11-14 03:29:16 +00001636 return Context.HalfTy;
Bob Wilsone4d77232011-11-08 05:04:11 +00001637 case NeonTypeFlags::Float32:
1638 return Context.FloatTy;
Tim Northover2fe823a2013-08-01 09:23:19 +00001639 case NeonTypeFlags::Float64:
1640 return Context.DoubleTy;
Bob Wilsone4d77232011-11-08 05:04:11 +00001641 }
David Blaikie8a40f702012-01-17 06:56:22 +00001642 llvm_unreachable("Invalid NeonTypeFlag!");
Bob Wilsone4d77232011-11-08 05:04:11 +00001643}
1644
Tim Northover12670412014-02-19 10:37:05 +00001645bool Sema::CheckNeonBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Tim Northover2fe823a2013-08-01 09:23:19 +00001646 llvm::APSInt Result;
Tim Northover2fe823a2013-08-01 09:23:19 +00001647 uint64_t mask = 0;
1648 unsigned TV = 0;
1649 int PtrArgNum = -1;
1650 bool HasConstPtr = false;
1651 switch (BuiltinID) {
Tim Northover12670412014-02-19 10:37:05 +00001652#define GET_NEON_OVERLOAD_CHECK
Tim Northover2fe823a2013-08-01 09:23:19 +00001653#include "clang/Basic/arm_neon.inc"
Abderrazek Zaafranice8746d2018-01-19 23:11:18 +00001654#include "clang/Basic/arm_fp16.inc"
Tim Northover12670412014-02-19 10:37:05 +00001655#undef GET_NEON_OVERLOAD_CHECK
Tim Northover2fe823a2013-08-01 09:23:19 +00001656 }
1657
1658 // For NEON intrinsics which are overloaded on vector element type, validate
1659 // the immediate which specifies which variant to emit.
Tim Northover12670412014-02-19 10:37:05 +00001660 unsigned ImmArg = TheCall->getNumArgs()-1;
Tim Northover2fe823a2013-08-01 09:23:19 +00001661 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001667 return Diag(TheCall->getBeginLoc(), diag::err_invalid_neon_type_code)
1668 << TheCall->getArg(ImmArg)->getSourceRange();
Tim Northover2fe823a2013-08-01 09:23:19 +00001669 }
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();
Tim Northover12670412014-02-19 10:37:05 +00001678
Tim Northovera2ee4332014-03-29 15:09:45 +00001679 llvm::Triple::ArchType Arch = Context.getTargetInfo().getTriple().getArch();
Joerg Sonnenberger47006c52017-01-09 11:40:41 +00001680 bool IsPolyUnsigned = Arch == llvm::Triple::aarch64 ||
1681 Arch == llvm::Triple::aarch64_be;
Tim Northovera2ee4332014-03-29 15:09:45 +00001682 bool IsInt64Long =
1683 Context.getTargetInfo().getInt64Type() == TargetInfo::SignedLong;
1684 QualType EltTy =
1685 getNeonEltType(NeonTypeFlags(TV), Context, IsPolyUnsigned, IsInt64Long);
Tim Northover2fe823a2013-08-01 09:23:19 +00001686 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;
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001693 if (DiagnoseAssignmentResult(ConvTy, Arg->getBeginLoc(), LHSTy, RHSTy,
Tim Northover2fe823a2013-08-01 09:23:19 +00001694 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;
Luke Geesondc54b372018-06-12 09:54:27 +00001704 #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
Tim Northover2fe823a2013-08-01 09:23:19 +00001708 }
Tim Northover2fe823a2013-08-01 09:23:19 +00001709
Richard Sandiford28940af2014-04-16 08:47:51 +00001710 return SemaBuiltinConstantArgRange(TheCall, i, l, u + l);
Tim Northover2fe823a2013-08-01 09:23:19 +00001711}
1712
Tim Northovera2ee4332014-03-29 15:09:45 +00001713bool Sema::CheckARMBuiltinExclusiveCall(unsigned BuiltinID, CallExpr *TheCall,
1714 unsigned MaxWidth) {
Tim Northover6aacd492013-07-16 09:47:53 +00001715 assert((BuiltinID == ARM::BI__builtin_arm_ldrex ||
Tim Northover3acd6bd2014-07-02 12:56:02 +00001716 BuiltinID == ARM::BI__builtin_arm_ldaex ||
Tim Northovera2ee4332014-03-29 15:09:45 +00001717 BuiltinID == ARM::BI__builtin_arm_strex ||
Tim Northover3acd6bd2014-07-02 12:56:02 +00001718 BuiltinID == ARM::BI__builtin_arm_stlex ||
Tim Northover573cbee2014-05-24 12:52:07 +00001719 BuiltinID == AArch64::BI__builtin_arm_ldrex ||
Tim Northover3acd6bd2014-07-02 12:56:02 +00001720 BuiltinID == AArch64::BI__builtin_arm_ldaex ||
1721 BuiltinID == AArch64::BI__builtin_arm_strex ||
1722 BuiltinID == AArch64::BI__builtin_arm_stlex) &&
Tim Northover6aacd492013-07-16 09:47:53 +00001723 "unexpected ARM builtin");
Tim Northovera2ee4332014-03-29 15:09:45 +00001724 bool IsLdrex = BuiltinID == ARM::BI__builtin_arm_ldrex ||
Tim Northover3acd6bd2014-07-02 12:56:02 +00001725 BuiltinID == ARM::BI__builtin_arm_ldaex ||
1726 BuiltinID == AArch64::BI__builtin_arm_ldrex ||
1727 BuiltinID == AArch64::BI__builtin_arm_ldaex;
Tim Northover6aacd492013-07-16 09:47:53 +00001728
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;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001743 PointerArg = PointerArgRes.get();
Tim Northover6aacd492013-07-16 09:47:53 +00001744
1745 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>();
1746 if (!pointerType) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001747 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer)
1748 << PointerArg->getType() << PointerArg->getSourceRange();
Tim Northover6aacd492013-07-16 09:47:53 +00001749 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;
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001764 Diag(DRE->getBeginLoc(), diag::ext_typecheck_convert_discards_qualifiers)
1765 << PointerArg->getType() << Context.getPointerType(AddrType)
1766 << AA_Passing << PointerArg->getSourceRange();
Tim Northover6aacd492013-07-16 09:47:53 +00001767 }
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;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001774 PointerArg = PointerArgRes.get();
Tim Northover6aacd492013-07-16 09:47:53 +00001775
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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001781 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer_intfltptr)
1782 << PointerArg->getType() << PointerArg->getSourceRange();
Tim Northover6aacd492013-07-16 09:47:53 +00001783 return true;
1784 }
1785
1786 // But ARM doesn't have instructions to deal with 128-bit versions.
Tim Northovera2ee4332014-03-29 15:09:45 +00001787 if (Context.getTypeSize(ValType) > MaxWidth) {
1788 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate");
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001789 Diag(DRE->getBeginLoc(), diag::err_atomic_exclusive_builtin_pointer_size)
1790 << PointerArg->getType() << PointerArg->getSourceRange();
Tim Northover6aacd492013-07-16 09:47:53 +00001791 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:
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001803 Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership)
1804 << ValType << PointerArg->getSourceRange();
Tim Northover6aacd492013-07-16 09:47:53 +00001805 return true;
1806 }
1807
Tim Northover6aacd492013-07-16 09:47:53 +00001808 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;
Tim Northover6aacd492013-07-16 09:47:53 +00001820 TheCall->setArg(0, ValArg.get());
Tim Northover58d2bb12013-10-29 12:32:58 +00001821
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);
Tim Northover6aacd492013-07-16 09:47:53 +00001825 return false;
1826}
1827
Nate Begeman4904e322010-06-08 02:47:44 +00001828bool Sema::CheckARMBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Tim Northover6aacd492013-07-16 09:47:53 +00001829 if (BuiltinID == ARM::BI__builtin_arm_ldrex ||
Tim Northover3acd6bd2014-07-02 12:56:02 +00001830 BuiltinID == ARM::BI__builtin_arm_ldaex ||
1831 BuiltinID == ARM::BI__builtin_arm_strex ||
1832 BuiltinID == ARM::BI__builtin_arm_stlex) {
Tim Northovera2ee4332014-03-29 15:09:45 +00001833 return CheckARMBuiltinExclusiveCall(BuiltinID, TheCall, 64);
Tim Northover6aacd492013-07-16 09:47:53 +00001834 }
1835
Yi Kong26d104a2014-08-13 19:18:14 +00001836 if (BuiltinID == ARM::BI__builtin_arm_prefetch) {
1837 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) ||
1838 SemaBuiltinConstantArgRange(TheCall, 2, 0, 1);
1839 }
1840
Luke Cheeseman59b2d832015-06-15 17:51:01 +00001841 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
Tim Northover12670412014-02-19 10:37:05 +00001851 if (CheckNeonBuiltinFunctionCall(BuiltinID, TheCall))
1852 return true;
Nico Weber0e6daef2013-12-26 23:38:39 +00001853
Yi Kong4efadfb2014-07-03 16:01:25 +00001854 // For intrinsics which take an immediate value as part of the instruction,
1855 // range check them here.
Sjoerd Meijer293da702017-12-07 09:54:39 +00001856 // FIXME: VFP Intrinsics should error if VFP not present.
Nate Begemand773fe62010-06-13 04:47:52 +00001857 switch (BuiltinID) {
1858 default: return false;
Sjoerd Meijer293da702017-12-07 09:54:39 +00001859 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);
Nate Begemanf568b072010-08-03 21:32:34 +00001867 case ARM::BI__builtin_arm_vcvtr_f:
Sjoerd Meijer293da702017-12-07 09:54:39 +00001868 case ARM::BI__builtin_arm_vcvtr_d:
1869 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1);
Weiming Zhao87bb4922013-11-12 21:42:50 +00001870 case ARM::BI__builtin_arm_dmb:
Yi Kong4efadfb2014-07-03 16:01:25 +00001871 case ARM::BI__builtin_arm_dsb:
Yi Kong1d268af2014-08-26 12:48:06 +00001872 case ARM::BI__builtin_arm_isb:
Sjoerd Meijer293da702017-12-07 09:54:39 +00001873 case ARM::BI__builtin_arm_dbg:
1874 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 15);
Richard Sandiford28940af2014-04-16 08:47:51 +00001875 }
Anders Carlssonbc4c1072009-08-16 01:56:34 +00001876}
Daniel Dunbardd9b2d12008-10-02 18:44:07 +00001877
Tim Northover573cbee2014-05-24 12:52:07 +00001878bool Sema::CheckAArch64BuiltinFunctionCall(unsigned BuiltinID,
Tim Northovera2ee4332014-03-29 15:09:45 +00001879 CallExpr *TheCall) {
Tim Northover573cbee2014-05-24 12:52:07 +00001880 if (BuiltinID == AArch64::BI__builtin_arm_ldrex ||
Tim Northover3acd6bd2014-07-02 12:56:02 +00001881 BuiltinID == AArch64::BI__builtin_arm_ldaex ||
1882 BuiltinID == AArch64::BI__builtin_arm_strex ||
1883 BuiltinID == AArch64::BI__builtin_arm_stlex) {
Tim Northovera2ee4332014-03-29 15:09:45 +00001884 return CheckARMBuiltinExclusiveCall(BuiltinID, TheCall, 128);
1885 }
1886
Yi Konga5548432014-08-13 19:18:20 +00001887 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
Luke Cheeseman59b2d832015-06-15 17:51:01 +00001894 if (BuiltinID == AArch64::BI__builtin_arm_rsr64 ||
1895 BuiltinID == AArch64::BI__builtin_arm_wsr64)
Tim Northover54e50002016-04-13 17:08:55 +00001896 return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true);
Luke Cheeseman59b2d832015-06-15 17:51:01 +00001897
Javed Absar18b0c402019-04-26 21:08:11 +00001898 // 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
Luke Cheeseman59b2d832015-06-15 17:51:01 +00001908 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
Mandeep Singh Grang2147b1a2018-10-18 23:35:35 +00001914 // 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
Mandeep Singh Grangecc82ef2018-10-04 22:32:42 +00001921 if (BuiltinID == AArch64::BI__getReg)
1922 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31);
1923
Tim Northovera2ee4332014-03-29 15:09:45 +00001924 if (CheckNeonBuiltinFunctionCall(BuiltinID, TheCall))
1925 return true;
1926
Yi Kong19a29ac2014-07-17 10:52:06 +00001927 // 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;
Momchil Velikova36d3142019-07-31 12:52:17 +00001935 case AArch64::BI__builtin_arm_tcancel: l = 0; u = 65535; break;
Yi Kong19a29ac2014-07-17 10:52:06 +00001936 }
1937
Yi Kong19a29ac2014-07-17 10:52:06 +00001938 return SemaBuiltinConstantArgRange(TheCall, i, l, u + l);
Tim Northovera2ee4332014-03-29 15:09:45 +00001939}
1940
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00001941bool Sema::CheckHexagonBuiltinCpu(unsigned BuiltinID, CallExpr *TheCall) {
Reid Kleckner9e9606e2018-10-25 22:37:30 +00001942 struct BuiltinAndString {
1943 unsigned BuiltinID;
1944 const char *Str;
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00001945 };
1946
Reid Kleckner9e9606e2018-10-25 22:37:30 +00001947 static BuiltinAndString ValidCPU[] = {
Krzysztof Parzyszek2a0c7c92018-12-05 22:03:04 +00001948 { 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" },
Reid Kleckner9e9606e2018-10-25 22:37:30 +00001971 };
1972
1973 static BuiltinAndString ValidHVX[] = {
Krzysztof Parzyszek2a0c7c92018-12-05 22:03:04 +00001974 { 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" },
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002542 { 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" },
Krzysztof Parzyszek2a0c7c92018-12-05 22:03:04 +00002546 { 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" },
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002570 { 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" },
Krzysztof Parzyszek2a0c7c92018-12-05 22:03:04 +00002574 { 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" },
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002706 };
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 =
Mandeep Singh Grang50dadaa42019-01-14 23:45:58 +00002713 (llvm::sort(ValidCPU, SortCmp),
2714 llvm::sort(ValidHVX, SortCmp), true);
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002715 (void)SortOnce;
2716 auto LowerBoundCmp = [](const BuiltinAndString &BI, unsigned BuiltinID) {
2717 return BI.BuiltinID < BuiltinID;
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00002718 };
2719
2720 const TargetInfo &TI = Context.getTargetInfo();
2721
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002722 const BuiltinAndString *FC =
Fangrui Song7264a472019-07-03 08:13:17 +00002723 llvm::lower_bound(ValidCPU, BuiltinID, LowerBoundCmp);
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002724 if (FC != std::end(ValidCPU) && FC->BuiltinID == BuiltinID) {
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00002725 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");
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002730 SmallVector<StringRef, 3> CPUs;
2731 StringRef(FC->Str).split(CPUs, ',');
2732 if (llvm::none_of(CPUs, [CPU](StringRef S) { return S == CPU; }))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002733 return Diag(TheCall->getBeginLoc(),
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00002734 diag::err_hexagon_builtin_unsupported_cpu);
2735 }
2736 }
2737
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002738 const BuiltinAndString *FH =
Fangrui Song7264a472019-07-03 08:13:17 +00002739 llvm::lower_bound(ValidHVX, BuiltinID, LowerBoundCmp);
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002740 if (FH != std::end(ValidHVX) && FH->BuiltinID == BuiltinID) {
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00002741 if (!TI.hasFeature("hvx"))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002742 return Diag(TheCall->getBeginLoc(),
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00002743 diag::err_hexagon_builtin_requires_hvx);
2744
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002745 SmallVector<StringRef, 3> HVXs;
2746 StringRef(FH->Str).split(HVXs, ',');
2747 bool IsValid = llvm::any_of(HVXs,
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00002748 [&TI] (StringRef V) {
2749 std::string F = "hvx" + V.str();
2750 return TI.hasFeature(F);
2751 });
2752 if (!IsValid)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002753 return Diag(TheCall->getBeginLoc(),
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00002754 diag::err_hexagon_builtin_unsupported_hvx);
2755 }
2756
2757 return false;
2758}
2759
2760bool Sema::CheckHexagonBuiltinArgument(unsigned BuiltinID, CallExpr *TheCall) {
Krzysztof Parzyszek45850682018-05-11 16:41:51 +00002761 struct ArgInfo {
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002762 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];
Krzysztof Parzyszek45850682018-05-11 16:41:51 +00002770 };
2771
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002772 static BuiltinInfo Infos[] = {
Krzysztof Parzyszek45850682018-05-11 16:41:51 +00002773 { 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
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002958 // Use a dynamically initialized static to sort the table exactly once on
2959 // first run.
2960 static const bool SortOnce =
Mandeep Singh Grang50dadaa42019-01-14 23:45:58 +00002961 (llvm::sort(Infos,
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002962 [](const BuiltinInfo &LHS, const BuiltinInfo &RHS) {
2963 return LHS.BuiltinID < RHS.BuiltinID;
2964 }),
2965 true);
2966 (void)SortOnce;
2967
Fangrui Song7264a472019-07-03 08:13:17 +00002968 const BuiltinInfo *F = llvm::partition_point(
2969 Infos, [=](const BuiltinInfo &BI) { return BI.BuiltinID < BuiltinID; });
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002970 if (F == std::end(Infos) || F->BuiltinID != BuiltinID)
Krzysztof Parzyszek45850682018-05-11 16:41:51 +00002971 return false;
2972
2973 bool Error = false;
2974
Reid Kleckner9e9606e2018-10-25 22:37:30 +00002975 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;
Krzysztof Parzyszek45850682018-05-11 16:41:51 +00002982 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
Krzysztof Parzyszek762dee52018-07-12 18:54:04 +00002995bool Sema::CheckHexagonBuiltinFunctionCall(unsigned BuiltinID,
2996 CallExpr *TheCall) {
2997 return CheckHexagonBuiltinCpu(BuiltinID, TheCall) ||
2998 CheckHexagonBuiltinArgument(BuiltinID, TheCall);
2999}
3000
3001
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003002// 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.
Simon Atanasyanecedf3d2012-07-08 09:30:00 +00003011bool Sema::CheckMipsBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003012 unsigned i = 0, l = 0, u = 0, m = 0;
Simon Atanasyanecedf3d2012-07-08 09:30:00 +00003013 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;
Simon Atanasyan8f06f2f2012-08-27 12:29:20 +00003017 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;
Raphael Isemannb23ccec2018-12-10 12:37:46 +00003022 // MSA intrinsics. Instructions (which the intrinsics maps to) which use the
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003023 // 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;
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00003050 // These intrinsics take an unsigned 5 bit immediate.
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003051 // The first block of intrinsics actually have an unsigned 5 bit field,
3052 // not a df/n field.
Simon Atanasyanc7f0b332019-05-29 14:59:32 +00003053 case Mips::BI__builtin_msa_cfcmsa:
3054 case Mips::BI__builtin_msa_ctcmsa: i = 0; l = 0; u = 31; break;
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003055 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;
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003142 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;
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003148 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;
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003154 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;
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003160 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.
Petar Jovanovic9b8b9e82017-03-31 16:16:43 +00003163 case Mips::BI__builtin_msa_ldi_b: i = 0; l = -128; u = 255; break;
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003164 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;
Aleksandar Beserminjie5921162018-11-07 11:37:05 +00003167 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;
Richard Sandiford28940af2014-04-16 08:47:51 +00003175 }
Simon Atanasyanecedf3d2012-07-08 09:30:00 +00003176
Simon Dardis1f90f2d2016-10-19 17:50:52 +00003177 if (!m)
3178 return SemaBuiltinConstantArgRange(TheCall, i, l, u);
3179
3180 return SemaBuiltinConstantArgRange(TheCall, i, l, u) ||
3181 SemaBuiltinConstantArgMultiple(TheCall, i, m);
Simon Atanasyanecedf3d2012-07-08 09:30:00 +00003182}
3183
Kit Bartone50adcb2015-03-30 19:40:59 +00003184bool Sema::CheckPPCBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
3185 unsigned i = 0, l = 0, u = 0;
Nemanja Ivanovic239eec72015-04-09 23:58:16 +00003186 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003199 return Diag(TheCall->getBeginLoc(), diag::err_64_bit_builtin_32_bit_tgt)
3200 << TheCall->getSourceRange();
Nemanja Ivanovic239eec72015-04-09 23:58:16 +00003201
3202 if ((IsBltinExtDiv && !Context.getTargetInfo().hasFeature("extdiv")) ||
3203 (BuiltinID == PPC::BI__builtin_bpermd &&
3204 !Context.getTargetInfo().hasFeature("bpermd")))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003205 return Diag(TheCall->getBeginLoc(), diag::err_ppc_builtin_only_on_pwr7)
Nemanja Ivanovic239eec72015-04-09 23:58:16 +00003206 << TheCall->getSourceRange();
3207
QingShan Zhangaccb65b2018-09-20 05:04:57 +00003208 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
Kit Bartone50adcb2015-03-30 19:40:59 +00003215 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);
Tony Jiangbbc48e92017-05-24 15:13:32 +00003230 case PPC::BI__builtin_vsx_xxpermdi:
Tony Jiang9aa2c032017-05-24 15:54:13 +00003231 case PPC::BI__builtin_vsx_xxsldwi:
Tony Jiangbbc48e92017-05-24 15:13:32 +00003232 return SemaBuiltinVSX(TheCall);
QingShan Zhangaccb65b2018-09-20 05:04:57 +00003233 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);
Kit Bartone50adcb2015-03-30 19:40:59 +00003238 }
3239 return SemaBuiltinConstantArgRange(TheCall, i, l, u);
3240}
3241
Ulrich Weigand3a610eb2015-04-01 12:54:25 +00003242bool 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003249 return Diag(Arg->getBeginLoc(), diag::err_systemz_invalid_tabort_code)
Ulrich Weigand3a610eb2015-04-01 12:54:25 +00003250 << Arg->getSourceRange();
3251 }
3252
Ulrich Weigand5722c0f2015-05-05 19:36:42 +00003253 // 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;
Ulrich Weigandcac24ab2017-07-17 17:45:57 +00003275 case SystemZ::BI__builtin_s390_vfisb:
Ulrich Weigand5722c0f2015-05-05 19:36:42 +00003276 case SystemZ::BI__builtin_s390_vfidb:
3277 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15) ||
3278 SemaBuiltinConstantArgRange(TheCall, 2, 0, 15);
Ulrich Weigandcac24ab2017-07-17 17:45:57 +00003279 case SystemZ::BI__builtin_s390_vftcisb:
Ulrich Weigand5722c0f2015-05-05 19:36:42 +00003280 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;
Ulrich Weigandcac24ab2017-07-17 17:45:57 +00003296 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;
Ulrich Weigandb98bf602019-07-12 18:14:51 +00003301 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;
Ulrich Weigand5722c0f2015-05-05 19:36:42 +00003303 }
3304 return SemaBuiltinConstantArgRange(TheCall, i, l, u);
Ulrich Weigand3a610eb2015-04-01 12:54:25 +00003305}
3306
Craig Topper5ba2c502015-11-07 08:08:31 +00003307/// 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.
3310static 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()))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003315 return S.Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
Craig Topper5ba2c502015-11-07 08:08:31 +00003316 << 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))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003322 return S.Diag(TheCall->getBeginLoc(), diag::err_invalid_cpu_supports)
Craig Topper5ba2c502015-11-07 08:08:31 +00003323 << Arg->getSourceRange();
3324 return false;
3325}
3326
Craig Topper699ae0c2017-08-10 20:28:30 +00003327/// 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.
3330static 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()))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003335 return S.Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
Craig Topper699ae0c2017-08-10 20:28:30 +00003336 << 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))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003342 return S.Diag(TheCall->getBeginLoc(), diag::err_invalid_cpu_is)
Craig Topper699ae0c2017-08-10 20:28:30 +00003343 << Arg->getSourceRange();
3344 return false;
3345}
3346
Craig Toppera7e253e2016-09-23 04:48:31 +00003347// Check if the rounding mode is legal.
3348bool 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;
Craig Topper2da60bc2018-06-21 05:01:01 +00003366 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;
Craig Toppera7e253e2016-09-23 04:48:31 +00003372 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:
Craig Topper8e066312016-11-07 07:01:09 +00003398 case X86::BI__builtin_ia32_cvtss2sd_round_mask:
Craig Toppera7e253e2016-09-23 04:48:31 +00003399 case X86::BI__builtin_ia32_getexpsd128_round_mask:
3400 case X86::BI__builtin_ia32_getexpss128_round_mask:
Craig Topper902f6492019-05-28 23:26:22 +00003401 case X86::BI__builtin_ia32_getmantpd512_mask:
3402 case X86::BI__builtin_ia32_getmantps512_mask:
Craig Topper8e066312016-11-07 07:01:09 +00003403 case X86::BI__builtin_ia32_maxsd_round_mask:
3404 case X86::BI__builtin_ia32_maxss_round_mask:
Craig Topper8e066312016-11-07 07:01:09 +00003405 case X86::BI__builtin_ia32_minsd_round_mask:
3406 case X86::BI__builtin_ia32_minss_round_mask:
Craig Toppera7e253e2016-09-23 04:48:31 +00003407 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:
Craig Topper7609f1c2016-10-01 21:03:50 +00003418 case X86::BI__builtin_ia32_fixupimmpd512_maskz:
Craig Toppera7e253e2016-09-23 04:48:31 +00003419 case X86::BI__builtin_ia32_fixupimmps512_mask:
Craig Topper7609f1c2016-10-01 21:03:50 +00003420 case X86::BI__builtin_ia32_fixupimmps512_maskz:
Craig Toppera7e253e2016-09-23 04:48:31 +00003421 case X86::BI__builtin_ia32_fixupimmsd_mask:
Craig Topper7609f1c2016-10-01 21:03:50 +00003422 case X86::BI__builtin_ia32_fixupimmsd_maskz:
Craig Toppera7e253e2016-09-23 04:48:31 +00003423 case X86::BI__builtin_ia32_fixupimmss_mask:
Craig Topper7609f1c2016-10-01 21:03:50 +00003424 case X86::BI__builtin_ia32_fixupimmss_maskz:
Craig Topper902f6492019-05-28 23:26:22 +00003425 case X86::BI__builtin_ia32_getmantsd_round_mask:
3426 case X86::BI__builtin_ia32_getmantss_round_mask:
Craig Toppera7e253e2016-09-23 04:48:31 +00003427 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;
Craig Topper7609f1c2016-10-01 21:03:50 +00003437 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:
Craig Topper8bf793f2018-06-29 05:43:33 +00003445 case X86::BI__builtin_ia32_sqrtpd512:
3446 case X86::BI__builtin_ia32_sqrtps512:
Craig Topper7609f1c2016-10-01 21:03:50 +00003447 ArgNum = 1;
3448 HasRC = true;
3449 break;
Craig Topper3614b412018-06-10 06:01:42 +00003450 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:
Craig Topper8e066312016-11-07 07:01:09 +00003458 case X86::BI__builtin_ia32_cvtsi2sd64:
3459 case X86::BI__builtin_ia32_cvtsi2ss32:
3460 case X86::BI__builtin_ia32_cvtsi2ss64:
Craig Topper7609f1c2016-10-01 21:03:50 +00003461 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:
Craig Topper1b62c752019-04-08 17:05:57 +00003470 case X86::BI__builtin_ia32_cvtpd2dq512_mask:
Craig Topper7609f1c2016-10-01 21:03:50 +00003471 case X86::BI__builtin_ia32_cvtpd2qq512_mask:
Craig Topper1b62c752019-04-08 17:05:57 +00003472 case X86::BI__builtin_ia32_cvtpd2udq512_mask:
Craig Topper7609f1c2016-10-01 21:03:50 +00003473 case X86::BI__builtin_ia32_cvtpd2uqq512_mask:
Craig Topper1b62c752019-04-08 17:05:57 +00003474 case X86::BI__builtin_ia32_cvtps2dq512_mask:
Craig Topper7609f1c2016-10-01 21:03:50 +00003475 case X86::BI__builtin_ia32_cvtps2qq512_mask:
Craig Topper1b62c752019-04-08 17:05:57 +00003476 case X86::BI__builtin_ia32_cvtps2udq512_mask:
Craig Topper7609f1c2016-10-01 21:03:50 +00003477 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;
Craig Topper7609f1c2016-10-01 21:03:50 +00003485 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:
Craig Topper8e066312016-11-07 07:01:09 +00003497 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:
Craig Topper7609f1c2016-10-01 21:03:50 +00003500 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:
Craig Topperb92c77d2018-06-07 02:46:02 +00003506 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:
Craig Topper7609f1c2016-10-01 21:03:50 +00003522 ArgNum = 4;
3523 HasRC = true;
3524 break;
Craig Toppera7e253e2016-09-23 04:48:31 +00003525 }
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
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003546 return Diag(TheCall->getBeginLoc(), diag::err_x86_builtin_invalid_rounding)
3547 << Arg->getSourceRange();
Craig Toppera7e253e2016-09-23 04:48:31 +00003548}
3549
Craig Topperdf5beb22017-03-13 17:16:50 +00003550// Check if the gather/scatter scale is legal.
3551bool 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
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003649 return Diag(TheCall->getBeginLoc(), diag::err_x86_builtin_invalid_scale)
3650 << Arg->getSourceRange();
Craig Topperdf5beb22017-03-13 17:16:50 +00003651}
3652
Craig Topper51738f82018-04-26 20:14:46 +00003653static 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
Craig Topperf0ddc892016-09-23 04:48:27 +00003664bool Sema::CheckX86BuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
3665 if (BuiltinID == X86::BI__builtin_cpu_supports)
3666 return SemaBuiltinCpuSupports(*this, TheCall);
3667
Craig Topper699ae0c2017-08-10 20:28:30 +00003668 if (BuiltinID == X86::BI__builtin_cpu_is)
3669 return SemaBuiltinCpuIs(*this, TheCall);
3670
Craig Topper51738f82018-04-26 20:14:46 +00003671 // 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))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003674 return Diag(TheCall->getCallee()->getBeginLoc(),
Craig Topper51738f82018-04-26 20:14:46 +00003675 diag::err_32_bit_builtin_64_bit_tgt);
3676
Craig Toppera7e253e2016-09-23 04:48:31 +00003677 // If the intrinsic has rounding or SAE make sure its valid.
3678 if (CheckX86BuiltinRoundingOrSAE(BuiltinID, TheCall))
3679 return true;
3680
Craig Topperdf5beb22017-03-13 17:16:50 +00003681 // If the intrinsic has a gather/scatter scale immediate make sure its valid.
3682 if (CheckX86BuiltinGatherScatterScale(BuiltinID, TheCall))
3683 return true;
3684
Craig Topperf0ddc892016-09-23 04:48:27 +00003685 // 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;
Craig Topper11899b02018-06-05 21:54:35 +00003691 case X86::BI__builtin_ia32_vec_ext_v2si:
Craig Topperf3914b72018-06-06 00:24:55 +00003692 case X86::BI__builtin_ia32_vec_ext_v2di:
Craig Topper3428bee2018-06-08 03:24:47 +00003693 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:
Craig Topper5f50f3382018-06-08 21:50:07 +00003697 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:
Craig Topper11899b02018-06-05 21:54:35 +00003705 i = 1; l = 0; u = 1;
3706 break;
Craig Topperf3914b72018-06-06 00:24:55 +00003707 case X86::BI__builtin_ia32_vec_set_v2di:
Craig Topper3428bee2018-06-08 03:24:47 +00003708 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:
Craig Topperf3914b72018-06-06 00:24:55 +00003720 i = 2; l = 0; u = 1;
3721 break;
Craig Topperacf56012018-06-08 00:59:27 +00003722 case X86::BI__builtin_ia32_vpermilpd:
Craig Topper11899b02018-06-05 21:54:35 +00003723 case X86::BI__builtin_ia32_vec_ext_v4hi:
Craig Topperf3914b72018-06-06 00:24:55 +00003724 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:
Craig Topper5f50f3382018-06-08 21:50:07 +00003727 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:
Craig Topper11899b02018-06-05 21:54:35 +00003731 i = 1; l = 0; u = 3;
3732 break;
Craig Topperf3914b72018-06-06 00:24:55 +00003733 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;
Richard Trieucc3949d2016-02-18 22:34:54 +00003738 case X86::BI__builtin_ia32_sha1rnds4:
Craig Topper7d17d722018-06-08 00:00:21 +00003739 case X86::BI__builtin_ia32_blendpd:
Craig Topper422a1bb2018-06-08 07:18:33 +00003740 case X86::BI__builtin_ia32_shufpd:
Craig Topper11899b02018-06-05 21:54:35 +00003741 case X86::BI__builtin_ia32_vec_set_v4hi:
Craig Topperf3914b72018-06-06 00:24:55 +00003742 case X86::BI__builtin_ia32_vec_set_v4si:
3743 case X86::BI__builtin_ia32_vec_set_v4di:
Craig Topper93921362018-06-07 23:03:08 +00003744 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:
Craig Topper3428bee2018-06-08 03:24:47 +00003748 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:
Craig Topper39c87102016-05-18 03:18:12 +00003752 i = 2; l = 0; u = 3;
Richard Trieucc3949d2016-02-18 22:34:54 +00003753 break;
Craig Topper1a8b0472015-01-31 08:57:52 +00003754 case X86::BI__builtin_ia32_vpermil2pd:
3755 case X86::BI__builtin_ia32_vpermil2pd256:
3756 case X86::BI__builtin_ia32_vpermil2ps:
Richard Trieucc3949d2016-02-18 22:34:54 +00003757 case X86::BI__builtin_ia32_vpermil2ps256:
Craig Topper39c87102016-05-18 03:18:12 +00003758 i = 3; l = 0; u = 3;
Richard Trieucc3949d2016-02-18 22:34:54 +00003759 break;
Craig Topper95b0d732015-01-25 23:30:05 +00003760 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:
Richard Trieucc3949d2016-02-18 22:34:54 +00003783 case X86::BI__builtin_ia32_ucmpq512_mask:
Craig Topper8dd7d0d2015-02-13 06:04:48 +00003784 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:
Richard Trieucc3949d2016-02-18 22:34:54 +00003791 case X86::BI__builtin_ia32_vpcomq:
Craig Topperf3914b72018-06-06 00:24:55 +00003792 case X86::BI__builtin_ia32_vec_set_v8hi:
3793 case X86::BI__builtin_ia32_vec_set_v8si:
Craig Topper39c87102016-05-18 03:18:12 +00003794 i = 2; l = 0; u = 7;
3795 break;
Craig Topperacf56012018-06-08 00:59:27 +00003796 case X86::BI__builtin_ia32_vpermilpd256:
Craig Topper39c87102016-05-18 03:18:12 +00003797 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:
Craig Topper03a1d482018-06-15 17:03:32 +00003801 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:
Craig Topperf3914b72018-06-06 00:24:55 +00003807 case X86::BI__builtin_ia32_vec_ext_v16qi:
3808 case X86::BI__builtin_ia32_vec_ext_v16hi:
Craig Topper39c87102016-05-18 03:18:12 +00003809 i = 1; l = 0; u = 15;
3810 break;
Craig Topper7d17d722018-06-08 00:00:21 +00003811 case X86::BI__builtin_ia32_pblendd128:
3812 case X86::BI__builtin_ia32_blendps:
3813 case X86::BI__builtin_ia32_blendpd256:
Craig Topper422a1bb2018-06-08 07:18:33 +00003814 case X86::BI__builtin_ia32_shufpd256:
Craig Topper39c87102016-05-18 03:18:12 +00003815 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:
Craig Topperf3914b72018-06-06 00:24:55 +00003825 case X86::BI__builtin_ia32_vec_set_v16qi:
3826 case X86::BI__builtin_ia32_vec_set_v16hi:
Craig Topper39c87102016-05-18 03:18:12 +00003827 i = 2; l = 0; u = 15;
3828 break;
Craig Topperf3914b72018-06-06 00:24:55 +00003829 case X86::BI__builtin_ia32_vec_ext_v32qi:
3830 i = 1; l = 0; u = 31;
3831 break;
Craig Topper39c87102016-05-18 03:18:12 +00003832 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:
Craig Topperf3914b72018-06-06 00:24:55 +00003846 case X86::BI__builtin_ia32_vec_set_v32qi:
Craig Topper39c87102016-05-18 03:18:12 +00003847 i = 2; l = 0; u = 31;
3848 break;
Craig Topper03f4f042018-06-08 18:00:25 +00003849 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:
Craig Topperacf56012018-06-08 00:59:27 +00003853 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:
Craig Topper03de1662018-06-08 06:13:16 +00003857 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:
Craig Topper39c87102016-05-18 03:18:12 +00003866 case X86::BI__builtin_ia32_vcvtps2ph:
Craig Topper23a30222017-11-08 04:54:26 +00003867 case X86::BI__builtin_ia32_vcvtps2ph_mask:
Craig Topper39c87102016-05-18 03:18:12 +00003868 case X86::BI__builtin_ia32_vcvtps2ph256:
Craig Topper23a30222017-11-08 04:54:26 +00003869 case X86::BI__builtin_ia32_vcvtps2ph256_mask:
3870 case X86::BI__builtin_ia32_vcvtps2ph512_mask:
Craig Topper39c87102016-05-18 03:18:12 +00003871 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:
Craig Topper0e9de762018-06-30 01:32:14 +00003883 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:
Craig Topper39c87102016-05-18 03:18:12 +00003895 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:
Craig Topper31730ae2018-06-14 22:02:35 +00003903 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:
Craig Topper2aa8efc2018-08-31 18:22:52 +00003909 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:
Craig Topper39c87102016-05-18 03:18:12 +00003917 i = 1; l = 0; u = 255;
3918 break;
Craig Topper9d3962f2018-06-08 18:00:22 +00003919 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:
Craig Topper7d17d722018-06-08 00:00:21 +00003923 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:
Craig Topper39c87102016-05-18 03:18:12 +00003927 case X86::BI__builtin_ia32_palignr128:
3928 case X86::BI__builtin_ia32_palignr256:
Craig Topper8e3689c2018-05-22 20:48:24 +00003929 case X86::BI__builtin_ia32_palignr512:
Craig Toppere56819e2018-06-07 21:27:41 +00003930 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:
Craig Topper39c87102016-05-18 03:18:12 +00003936 case X86::BI__builtin_ia32_vcomisd:
3937 case X86::BI__builtin_ia32_vcomiss:
Craig Topper93921362018-06-07 23:03:08 +00003938 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:
Craig Topper422a1bb2018-06-08 07:18:33 +00003942 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:
Craig Topper91bbe982018-06-11 06:18:29 +00003946 case X86::BI__builtin_ia32_dbpsadbw128:
3947 case X86::BI__builtin_ia32_dbpsadbw256:
3948 case X86::BI__builtin_ia32_dbpsadbw512:
Craig Topper2527c372018-06-13 07:19:28 +00003949 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:
Craig Topper39c87102016-05-18 03:18:12 +00003967 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;
Craig Topper9625db02017-03-12 22:19:10 +00003999 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:
Craig Topperf771f79b2017-03-31 17:22:30 +00004007 i = 4; l = 2; u = 3;
Craig Topper9625db02017-03-12 22:19:10 +00004008 break;
Craig Topper9967a6c2019-06-14 23:23:19 +00004009 case X86::BI__builtin_ia32_reducesd_mask:
4010 case X86::BI__builtin_ia32_reducess_mask:
Craig Topper39c87102016-05-18 03:18:12 +00004011 case X86::BI__builtin_ia32_rndscalesd_round_mask:
4012 case X86::BI__builtin_ia32_rndscaless_round_mask:
4013 i = 4; l = 0; u = 255;
Richard Trieucc3949d2016-02-18 22:34:54 +00004014 break;
Warren Hunt20e4a5d2014-02-21 23:08:53 +00004015 }
Chandler Carruth16e6bc22018-06-21 23:46:09 +00004016
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);
Warren Hunt20e4a5d2014-02-21 23:08:53 +00004022}
4023
Richard Smith55ce3522012-06-25 20:30:08 +00004024/// 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.
4028bool 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;
Anders Carlssonbc4c1072009-08-16 01:56:34 +00004033
Richard Smith55ce3522012-06-25 20:30:08 +00004034 // 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}
Mike Stump11289f42009-09-09 15:08:12 +00004046
Ted Kremenekef9e7f82014-01-22 06:10:28 +00004047/// Checks if a the given expression evaluates to null.
4048///
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004049/// Returns true if the value evaluates to null.
George Burgess IV850269a2015-12-08 22:02:00 +00004050static bool CheckNonNullExpr(Sema &S, const Expr *Expr) {
Douglas Gregorb4866e82015-06-19 18:13:19 +00004051 // 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
Ted Kremeneka146db32014-01-17 06:24:47 +00004058 // As a special case, transparent unions initialized with zero are
4059 // considered null for the purposes of the nonnull attribute.
Ted Kremenekef9e7f82014-01-22 06:10:28 +00004060 if (const RecordType *UT = Expr->getType()->getAsUnionType()) {
Ted Kremeneka146db32014-01-17 06:24:47 +00004061 if (UT->getDecl()->hasAttr<TransparentUnionAttr>())
4062 if (const CompoundLiteralExpr *CLE =
Ted Kremenekef9e7f82014-01-22 06:10:28 +00004063 dyn_cast<CompoundLiteralExpr>(Expr))
Ted Kremeneka146db32014-01-17 06:24:47 +00004064 if (const InitListExpr *ILE =
4065 dyn_cast<InitListExpr>(CLE->getInitializer()))
Ted Kremenekef9e7f82014-01-22 06:10:28 +00004066 Expr = ILE->getInit(0);
Ted Kremeneka146db32014-01-17 06:24:47 +00004067 }
4068
4069 bool Result;
Artyom Skrobov9f213442014-01-24 11:10:39 +00004070 return (!Expr->isValueDependent() &&
4071 Expr->EvaluateAsBooleanCondition(Result, S.Context) &&
4072 !Result);
Ted Kremenekef9e7f82014-01-22 06:10:28 +00004073}
4074
4075static void CheckNonNullArgument(Sema &S,
4076 const Expr *ArgExpr,
4077 SourceLocation CallSiteLoc) {
4078 if (CheckNonNullExpr(S, ArgExpr))
Eric Fiselier18677d52015-10-09 00:17:57 +00004079 S.DiagRuntimeBehavior(CallSiteLoc, ArgExpr,
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00004080 S.PDiag(diag::warn_null_arg)
4081 << ArgExpr->getSourceRange());
Ted Kremeneka146db32014-01-17 06:24:47 +00004082}
4083
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00004084bool 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}
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004093
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004094/// Diagnose use of %s directive in an NSString which is being passed
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00004095/// as formatting string to formatting method.
4096static void
4097DiagnoseCStringFormatDirectiveInCFAPI(Sema &S,
4098 const NamedDecl *FDecl,
4099 Expr **Args,
4100 unsigned NumArgs) {
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00004101 unsigned Idx = 0;
4102 bool Format = false;
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00004103 ObjCStringFormatFamily SFFamily = FDecl->getObjCFStringFormattingFamily();
4104 if (SFFamily == ObjCStringFormatFamily::SFF_CFString) {
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00004105 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 }
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00004114 }
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00004115 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();
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00004133 }
4134}
4135
Douglas Gregorb4866e82015-06-19 18:13:19 +00004136/// Determine whether the given type has a non-null nullability annotation.
4137static bool isNonNullType(ASTContext &ctx, QualType type) {
4138 if (auto nullability = type->getNullability(ctx))
4139 return *nullability == NullabilityKind::NonNull;
Fangrui Song6907ce22018-07-30 19:24:48 +00004140
Douglas Gregorb4866e82015-06-19 18:13:19 +00004141 return false;
4142}
4143
Ted Kremenek2bc73332014-01-17 06:24:43 +00004144static void CheckNonNullArguments(Sema &S,
Ted Kremeneka146db32014-01-17 06:24:47 +00004145 const NamedDecl *FDecl,
Douglas Gregorb4866e82015-06-19 18:13:19 +00004146 const FunctionProtoType *Proto,
Richard Smith588bd9b2014-08-27 04:59:42 +00004147 ArrayRef<const Expr *> Args,
Ted Kremenek2bc73332014-01-17 06:24:43 +00004148 SourceLocation CallSiteLoc) {
Douglas Gregorb4866e82015-06-19 18:13:19 +00004149 assert((FDecl || Proto) && "Need a function declaration or prototype");
4150
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00004151 // Already checked by by constant evaluator.
4152 if (S.isConstantEvaluated())
4153 return;
Ted Kremenek9aedc152014-01-17 06:24:56 +00004154 // Check the attributes attached to the method/function itself.
Richard Smith588bd9b2014-08-27 04:59:42 +00004155 llvm::SmallBitVector NonNullArgs;
Douglas Gregorb4866e82015-06-19 18:13:19 +00004156 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 }
Richard Smith588bd9b2014-08-27 04:59:42 +00004166
Joel E. Denny81508102018-03-13 14:51:22 +00004167 for (const ParamIdx &Idx : NonNull->args()) {
4168 unsigned IdxAST = Idx.getASTIndex();
4169 if (IdxAST >= Args.size())
Douglas Gregorb4866e82015-06-19 18:13:19 +00004170 continue;
4171 if (NonNullArgs.empty())
4172 NonNullArgs.resize(Args.size());
Joel E. Denny81508102018-03-13 14:51:22 +00004173 NonNullArgs.set(IdxAST);
Douglas Gregorb4866e82015-06-19 18:13:19 +00004174 }
Richard Smith588bd9b2014-08-27 04:59:42 +00004175 }
Ted Kremenek2bc73332014-01-17 06:24:43 +00004176 }
Ted Kremenek9aedc152014-01-17 06:24:56 +00004177
Douglas Gregorb4866e82015-06-19 18:13:19 +00004178 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();
Fangrui Song6907ce22018-07-30 19:24:48 +00004186
Douglas Gregorb4866e82015-06-19 18:13:19 +00004187 unsigned ParamIndex = 0;
4188 for (ArrayRef<ParmVarDecl*>::iterator I = parms.begin(), E = parms.end();
4189 I != E; ++I, ++ParamIndex) {
4190 const ParmVarDecl *PVD = *I;
Fangrui Song6907ce22018-07-30 19:24:48 +00004191 if (PVD->hasAttr<NonNullAttr>() ||
Douglas Gregorb4866e82015-06-19 18:13:19 +00004192 isNonNullType(S.Context, PVD->getType())) {
4193 if (NonNullArgs.empty())
4194 NonNullArgs.resize(Args.size());
Ted Kremenek9aedc152014-01-17 06:24:56 +00004195
Douglas Gregorb4866e82015-06-19 18:13:19 +00004196 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>();
Fangrui Song6907ce22018-07-30 19:24:48 +00004213 }
Douglas Gregorb4866e82015-06-19 18:13:19 +00004214 }
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());
Fangrui Song6907ce22018-07-30 19:24:48 +00004224
Douglas Gregorb4866e82015-06-19 18:13:19 +00004225 NonNullArgs.set(Index);
4226 }
Fangrui Song6907ce22018-07-30 19:24:48 +00004227
Douglas Gregorb4866e82015-06-19 18:13:19 +00004228 ++Index;
4229 }
4230 }
Ted Kremenek9aedc152014-01-17 06:24:56 +00004231 }
Richard Smith588bd9b2014-08-27 04:59:42 +00004232
Douglas Gregorb4866e82015-06-19 18:13:19 +00004233 // Check for non-null arguments.
Fangrui Song6907ce22018-07-30 19:24:48 +00004234 for (unsigned ArgIndex = 0, ArgIndexEnd = NonNullArgs.size();
Douglas Gregorb4866e82015-06-19 18:13:19 +00004235 ArgIndex != ArgIndexEnd; ++ArgIndex) {
Richard Smith588bd9b2014-08-27 04:59:42 +00004236 if (NonNullArgs[ArgIndex])
4237 CheckNonNullArgument(S, Args[ArgIndex], CallSiteLoc);
Douglas Gregorb4866e82015-06-19 18:13:19 +00004238 }
Ted Kremenek2bc73332014-01-17 06:24:43 +00004239}
4240
Richard Smith55ce3522012-06-25 20:30:08 +00004241/// Handles the checks for format strings, non-POD arguments to vararg
George Burgess IVce6284b2017-01-28 02:19:40 +00004242/// functions, NULL arguments passed to non-NULL parameters, and diagnose_if
4243/// attributes.
Douglas Gregorb4866e82015-06-19 18:13:19 +00004244void Sema::checkCall(NamedDecl *FDecl, const FunctionProtoType *Proto,
George Burgess IVce6284b2017-01-28 02:19:40 +00004245 const Expr *ThisArg, ArrayRef<const Expr *> Args,
4246 bool IsMemberFunction, SourceLocation Loc,
4247 SourceRange Range, VariadicCallType CallType) {
Richard Smithd7293d72013-08-05 18:49:43 +00004248 // FIXME: We should check as much as we can in the template definition.
Jordan Rose3c14b232012-10-02 01:49:54 +00004249 if (CurContext->isDependentContext())
4250 return;
Daniel Dunbardd9b2d12008-10-02 18:44:07 +00004251
Ted Kremenekb8176da2010-09-09 04:33:05 +00004252 // Printf and scanf checking.
Richard Smithd7293d72013-08-05 18:49:43 +00004253 llvm::SmallBitVector CheckedVarArgs;
4254 if (FDecl) {
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00004255 for (const auto *I : FDecl->specific_attrs<FormatAttr>()) {
Benjamin Kramer989ab8b2013-08-09 09:39:17 +00004256 // Only create vector if there are format attributes.
4257 CheckedVarArgs.resize(Args.size());
4258
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00004259 CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range,
Benjamin Kramerf62e81d2013-08-08 11:08:26 +00004260 CheckedVarArgs);
Benjamin Kramer989ab8b2013-08-09 09:39:17 +00004261 }
Richard Smithd7293d72013-08-05 18:49:43 +00004262 }
Richard Smith55ce3522012-06-25 20:30:08 +00004263
4264 // Refuse POD arguments that weren't caught by the format string
4265 // checks above.
Richard Smith836de6b2016-12-19 23:59:34 +00004266 auto *FD = dyn_cast_or_null<FunctionDecl>(FDecl);
4267 if (CallType != VariadicDoesNotApply &&
4268 (!FD || FD->getBuiltinID() != Builtin::BI__noop)) {
Douglas Gregorb4866e82015-06-19 18:13:19 +00004269 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
Alp Toker9cacbab2014-01-20 20:26:09 +00004276 for (unsigned ArgIdx = NumParams; ArgIdx < Args.size(); ++ArgIdx) {
Ted Kremenek241f1ef2012-10-11 19:06:43 +00004277 // Args[ArgIdx] can be null in malformed code.
Richard Smithd7293d72013-08-05 18:49:43 +00004278 if (const Expr *Arg = Args[ArgIdx]) {
4279 if (CheckedVarArgs.empty() || !CheckedVarArgs[ArgIdx])
4280 checkVariadicArgument(Arg, CallType);
4281 }
Ted Kremenek241f1ef2012-10-11 19:06:43 +00004282 }
Richard Smithd7293d72013-08-05 18:49:43 +00004283 }
Mike Stump11289f42009-09-09 15:08:12 +00004284
Douglas Gregorb4866e82015-06-19 18:13:19 +00004285 if (FDecl || Proto) {
4286 CheckNonNullArguments(*this, FDecl, Proto, Args, Loc);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004287
Richard Trieu41bc0992013-06-22 00:20:41 +00004288 // Type safety checking.
Douglas Gregorb4866e82015-06-19 18:13:19 +00004289 if (FDecl) {
4290 for (const auto *I : FDecl->specific_attrs<ArgumentWithTypeTagAttr>())
Aaron Ballmand1f6dcd2017-11-29 23:10:14 +00004291 CheckArgumentWithTypeTag(I, Args, Loc);
Douglas Gregorb4866e82015-06-19 18:13:19 +00004292 }
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +00004293 }
George Burgess IVce6284b2017-01-28 02:19:40 +00004294
4295 if (FD)
4296 diagnoseArgDependentDiagnoseIfAttrs(FD, ThisArg, Args, Loc);
Richard Smith55ce3522012-06-25 20:30:08 +00004297}
4298
4299/// CheckConstructorCall - Check a constructor call for correctness and safety
4300/// properties not enforced by the C type system.
Dmitri Gribenko765396f2013-01-13 20:46:02 +00004301void Sema::CheckConstructorCall(FunctionDecl *FDecl,
4302 ArrayRef<const Expr *> Args,
Richard Smith55ce3522012-06-25 20:30:08 +00004303 const FunctionProtoType *Proto,
4304 SourceLocation Loc) {
4305 VariadicCallType CallType =
4306 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply;
George Burgess IVce6284b2017-01-28 02:19:40 +00004307 checkCall(FDecl, Proto, /*ThisArg=*/nullptr, Args, /*IsMemberFunction=*/true,
4308 Loc, SourceRange(), CallType);
Richard Smith55ce3522012-06-25 20:30:08 +00004309}
4310
4311/// CheckFunctionCall - Check a direct function call for various correctness
4312/// and safety properties not strictly enforced by the C type system.
4313bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall,
4314 const FunctionProtoType *Proto) {
Eli Friedman726d11c2012-10-11 00:30:58 +00004315 bool IsMemberOperatorCall = isa<CXXOperatorCallExpr>(TheCall) &&
4316 isa<CXXMethodDecl>(FDecl);
4317 bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) ||
4318 IsMemberOperatorCall;
Richard Smith55ce3522012-06-25 20:30:08 +00004319 VariadicCallType CallType = getVariadicCallType(FDecl, Proto,
4320 TheCall->getCallee());
Eli Friedman726d11c2012-10-11 00:30:58 +00004321 Expr** Args = TheCall->getArgs();
4322 unsigned NumArgs = TheCall->getNumArgs();
George Burgess IVce6284b2017-01-28 02:19:40 +00004323
4324 Expr *ImplicitThis = nullptr;
Eli Friedmanadf42182012-10-11 00:34:15 +00004325 if (IsMemberOperatorCall) {
Eli Friedman726d11c2012-10-11 00:30:58 +00004326 // 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.
George Burgess IVce6284b2017-01-28 02:19:40 +00004329 ImplicitThis = Args[0];
Eli Friedman726d11c2012-10-11 00:30:58 +00004330 ++Args;
4331 --NumArgs;
George Burgess IVce6284b2017-01-28 02:19:40 +00004332 } else if (IsMemberFunction)
4333 ImplicitThis =
4334 cast<CXXMemberCallExpr>(TheCall)->getImplicitObjectArgument();
4335
4336 checkCall(FDecl, Proto, ImplicitThis, llvm::makeArrayRef(Args, NumArgs),
Richard Smith55ce3522012-06-25 20:30:08 +00004337 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;
Sebastian Redlc215cfc2009-01-19 00:08:26 +00004345
Richard Trieua7f30b12016-12-06 01:42:28 +00004346 CheckAbsoluteValueFunction(TheCall, FDecl);
4347 CheckMaxUnsignedZero(TheCall, FDecl);
Richard Trieu67c00712016-12-05 23:41:46 +00004348
Erik Pilkingtonfa983902018-10-30 20:31:30 +00004349 if (getLangOpts().ObjC)
Fariborz Jahanianfba4fe62014-09-11 19:13:23 +00004350 DiagnoseCStringFormatDirectiveInCFAPI(*this, FDecl, Args, NumArgs);
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00004351
Anna Zaks22122702012-01-17 00:37:07 +00004352 unsigned CMId = FDecl->getMemoryFunctionKind();
4353 if (CMId == 0)
Anna Zaks201d4892012-01-13 21:52:01 +00004354 return false;
Ted Kremenek6865f772011-08-18 20:55:45 +00004355
Anna Zaks201d4892012-01-13 21:52:01 +00004356 // Handle memory setting and copying functions.
Anna Zaks22122702012-01-17 00:37:07 +00004357 if (CMId == Builtin::BIstrlcpy || CMId == Builtin::BIstrlcat)
Ted Kremenek6865f772011-08-18 20:55:45 +00004358 CheckStrlcpycatArguments(TheCall, FnInfo);
Anna Zaks314cd092012-02-01 19:08:57 +00004359 else if (CMId == Builtin::BIstrncat)
4360 CheckStrncatArguments(TheCall, FnInfo);
Anna Zaks201d4892012-01-13 21:52:01 +00004361 else
Anna Zaks22122702012-01-17 00:37:07 +00004362 CheckMemaccessArguments(TheCall, CMId, FnInfo);
Chandler Carruth53caa4d2011-04-27 07:05:31 +00004363
Anders Carlssonbc4c1072009-08-16 01:56:34 +00004364 return false;
Anders Carlsson98f07902007-08-17 05:31:46 +00004365}
4366
Fangrui Song6907ce22018-07-30 19:24:48 +00004367bool Sema::CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation lbrac,
Dmitri Gribenko1debc462013-05-05 19:42:09 +00004368 ArrayRef<const Expr *> Args) {
Richard Smith55ce3522012-06-25 20:30:08 +00004369 VariadicCallType CallType =
4370 Method->isVariadic() ? VariadicMethod : VariadicDoesNotApply;
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00004371
George Burgess IVce6284b2017-01-28 02:19:40 +00004372 checkCall(Method, nullptr, /*ThisArg=*/nullptr, Args,
4373 /*IsMemberFunction=*/false, lbrac, Method->getSourceRange(),
Douglas Gregorb4866e82015-06-19 18:13:19 +00004374 CallType);
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00004375
4376 return false;
4377}
4378
Richard Trieu664c4c62013-06-20 21:03:13 +00004379bool Sema::CheckPointerCall(NamedDecl *NDecl, CallExpr *TheCall,
4380 const FunctionProtoType *Proto) {
Aaron Ballmanb673c652015-04-23 16:14:19 +00004381 QualType Ty;
4382 if (const auto *V = dyn_cast<VarDecl>(NDecl))
Douglas Gregorb4866e82015-06-19 18:13:19 +00004383 Ty = V->getType().getNonReferenceType();
Aaron Ballmanb673c652015-04-23 16:14:19 +00004384 else if (const auto *F = dyn_cast<FieldDecl>(NDecl))
Douglas Gregorb4866e82015-06-19 18:13:19 +00004385 Ty = F->getType().getNonReferenceType();
Aaron Ballmanb673c652015-04-23 16:14:19 +00004386 else
Anders Carlssonbc4c1072009-08-16 01:56:34 +00004387 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004388
Douglas Gregorb4866e82015-06-19 18:13:19 +00004389 if (!Ty->isBlockPointerType() && !Ty->isFunctionPointerType() &&
4390 !Ty->isFunctionProtoType())
Anders Carlssonbc4c1072009-08-16 01:56:34 +00004391 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004392
Richard Trieu664c4c62013-06-20 21:03:13 +00004393 VariadicCallType CallType;
Richard Trieu72ae1732013-06-20 23:21:54 +00004394 if (!Proto || !Proto->isVariadic()) {
Richard Trieu664c4c62013-06-20 21:03:13 +00004395 CallType = VariadicDoesNotApply;
4396 } else if (Ty->isBlockPointerType()) {
4397 CallType = VariadicBlock;
4398 } else { // Ty->isFunctionPointerType()
4399 CallType = VariadicFunction;
4400 }
Anders Carlssonbc4c1072009-08-16 01:56:34 +00004401
George Burgess IVce6284b2017-01-28 02:19:40 +00004402 checkCall(NDecl, Proto, /*ThisArg=*/nullptr,
Douglas Gregorb4866e82015-06-19 18:13:19 +00004403 llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()),
4404 /*IsMemberFunction=*/false, TheCall->getRParenLoc(),
Richard Smith55ce3522012-06-25 20:30:08 +00004405 TheCall->getCallee()->getSourceRange(), CallType);
Alp Toker9cacbab2014-01-20 20:26:09 +00004406
Anders Carlssonbc4c1072009-08-16 01:56:34 +00004407 return false;
Fariborz Jahanianc1585be2009-05-18 21:05:18 +00004408}
4409
Richard Trieu41bc0992013-06-22 00:20:41 +00004410/// Checks function calls when a FunctionDecl or a NamedDecl is not available,
4411/// such as function pointers returned from functions.
4412bool Sema::CheckOtherCall(CallExpr *TheCall, const FunctionProtoType *Proto) {
Craig Topperc3ec1492014-05-26 06:22:03 +00004413 VariadicCallType CallType = getVariadicCallType(/*FDecl=*/nullptr, Proto,
Richard Trieu41bc0992013-06-22 00:20:41 +00004414 TheCall->getCallee());
George Burgess IVce6284b2017-01-28 02:19:40 +00004415 checkCall(/*FDecl=*/nullptr, Proto, /*ThisArg=*/nullptr,
Craig Topper8c2a2a02014-08-30 16:55:39 +00004416 llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()),
Douglas Gregorb4866e82015-06-19 18:13:19 +00004417 /*IsMemberFunction=*/false, TheCall->getRParenLoc(),
Richard Trieu41bc0992013-06-22 00:20:41 +00004418 TheCall->getCallee()->getSourceRange(), CallType);
4419
4420 return false;
4421}
4422
Tim Northovere94a34c2014-03-11 10:49:14 +00004423static bool isValidOrderingForOp(int64_t Ordering, AtomicExpr::AtomicOp Op) {
JF Bastiendda2cb12016-04-18 18:01:49 +00004424 if (!llvm::isValidAtomicOrderingCABI(Ordering))
Tim Northovere94a34c2014-03-11 10:49:14 +00004425 return false;
4426
JF Bastiendda2cb12016-04-18 18:01:49 +00004427 auto OrderingCABI = (llvm::AtomicOrderingCABI)Ordering;
Tim Northovere94a34c2014-03-11 10:49:14 +00004428 switch (Op) {
4429 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +00004430 case AtomicExpr::AO__opencl_atomic_init:
Tim Northovere94a34c2014-03-11 10:49:14 +00004431 llvm_unreachable("There is no ordering argument for an init");
4432
4433 case AtomicExpr::AO__c11_atomic_load:
Yaxun Liu39195062017-08-04 18:16:31 +00004434 case AtomicExpr::AO__opencl_atomic_load:
Tim Northovere94a34c2014-03-11 10:49:14 +00004435 case AtomicExpr::AO__atomic_load_n:
4436 case AtomicExpr::AO__atomic_load:
JF Bastiendda2cb12016-04-18 18:01:49 +00004437 return OrderingCABI != llvm::AtomicOrderingCABI::release &&
4438 OrderingCABI != llvm::AtomicOrderingCABI::acq_rel;
Tim Northovere94a34c2014-03-11 10:49:14 +00004439
4440 case AtomicExpr::AO__c11_atomic_store:
Yaxun Liu39195062017-08-04 18:16:31 +00004441 case AtomicExpr::AO__opencl_atomic_store:
Tim Northovere94a34c2014-03-11 10:49:14 +00004442 case AtomicExpr::AO__atomic_store:
4443 case AtomicExpr::AO__atomic_store_n:
JF Bastiendda2cb12016-04-18 18:01:49 +00004444 return OrderingCABI != llvm::AtomicOrderingCABI::consume &&
4445 OrderingCABI != llvm::AtomicOrderingCABI::acquire &&
4446 OrderingCABI != llvm::AtomicOrderingCABI::acq_rel;
Tim Northovere94a34c2014-03-11 10:49:14 +00004447
4448 default:
4449 return true;
4450 }
4451}
4452
Richard Smithfeea8832012-04-12 05:08:17 +00004453ExprResult Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult,
4454 AtomicExpr::AtomicOp Op) {
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004455 CallExpr *TheCall = cast<CallExpr>(TheCallResult.get());
4456 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004457
Yaxun Liu39195062017-08-04 18:16:31 +00004458 // 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.
Richard Smithfeea8832012-04-12 05:08:17 +00004461 enum {
4462 // C __c11_atomic_init(A *, C)
4463 Init,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004464
Richard Smithfeea8832012-04-12 05:08:17 +00004465 // C __c11_atomic_load(A *, int)
4466 Load,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004467
Richard Smithfeea8832012-04-12 05:08:17 +00004468 // void __atomic_load(A *, CP, int)
Eric Fiselier8d662442016-03-30 23:39:56 +00004469 LoadCopy,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004470
Eric Fiselier8d662442016-03-30 23:39:56 +00004471 // void __atomic_store(A *, CP, int)
Richard Smithfeea8832012-04-12 05:08:17 +00004472 Copy,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004473
Richard Smithfeea8832012-04-12 05:08:17 +00004474 // C __c11_atomic_add(A *, M, int)
4475 Arithmetic,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004476
Richard Smithfeea8832012-04-12 05:08:17 +00004477 // C __atomic_exchange_n(A *, CP, int)
4478 Xchg,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004479
Richard Smithfeea8832012-04-12 05:08:17 +00004480 // void __atomic_exchange(A *, C *, CP, int)
4481 GNUXchg,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004482
Richard Smithfeea8832012-04-12 05:08:17 +00004483 // bool __c11_atomic_compare_exchange_strong(A *, C *, CP, int, int)
4484 C11CmpXchg,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004485
Richard Smithfeea8832012-04-12 05:08:17 +00004486 // bool __atomic_compare_exchange(A *, C *, CP, bool, int, int)
4487 GNUCmpXchg
4488 } Form = Init;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00004489
Yaxun Liu39195062017-08-04 18:16:31 +00004490 const unsigned NumForm = GNUCmpXchg + 1;
Eric Fiselier8d662442016-03-30 23:39:56 +00004491 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 };
Richard Smithfeea8832012-04-12 05:08:17 +00004493 // 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.
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004499
Yaxun Liu39195062017-08-04 18:16:31 +00004500 static_assert(sizeof(NumArgs)/sizeof(NumArgs[0]) == NumForm
4501 && sizeof(NumVals)/sizeof(NumVals[0]) == NumForm,
4502 "need to update code for modified forms");
Gabor Horvath98bd0982015-03-16 09:59:54 +00004503 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");
Yaxun Liu39195062017-08-04 18:16:31 +00004507 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;
Richard Smithfeea8832012-04-12 05:08:17 +00004512 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;
Elena Demikhovskyd31327d2018-05-13 07:45:58 +00004517 bool IsMinMax = false;
Richard Smithfeea8832012-04-12 05:08:17 +00004518
4519 switch (Op) {
4520 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +00004521 case AtomicExpr::AO__opencl_atomic_init:
Richard Smithfeea8832012-04-12 05:08:17 +00004522 Form = Init;
4523 break;
4524
4525 case AtomicExpr::AO__c11_atomic_load:
Yaxun Liu39195062017-08-04 18:16:31 +00004526 case AtomicExpr::AO__opencl_atomic_load:
Richard Smithfeea8832012-04-12 05:08:17 +00004527 case AtomicExpr::AO__atomic_load_n:
4528 Form = Load;
4529 break;
4530
Richard Smithfeea8832012-04-12 05:08:17 +00004531 case AtomicExpr::AO__atomic_load:
Eric Fiselier8d662442016-03-30 23:39:56 +00004532 Form = LoadCopy;
4533 break;
4534
4535 case AtomicExpr::AO__c11_atomic_store:
Yaxun Liu39195062017-08-04 18:16:31 +00004536 case AtomicExpr::AO__opencl_atomic_store:
Richard Smithfeea8832012-04-12 05:08:17 +00004537 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:
Yaxun Liu39195062017-08-04 18:16:31 +00004544 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:
Richard Smithfeea8832012-04-12 05:08:17 +00004548 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;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00004553 LLVM_FALLTHROUGH;
Richard Smithfeea8832012-04-12 05:08:17 +00004554 case AtomicExpr::AO__c11_atomic_fetch_and:
4555 case AtomicExpr::AO__c11_atomic_fetch_or:
4556 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +00004557 case AtomicExpr::AO__opencl_atomic_fetch_and:
4558 case AtomicExpr::AO__opencl_atomic_fetch_or:
4559 case AtomicExpr::AO__opencl_atomic_fetch_xor:
Richard Smithfeea8832012-04-12 05:08:17 +00004560 case AtomicExpr::AO__atomic_fetch_and:
4561 case AtomicExpr::AO__atomic_fetch_or:
4562 case AtomicExpr::AO__atomic_fetch_xor:
Richard Smithd65cee92012-04-13 06:31:38 +00004563 case AtomicExpr::AO__atomic_fetch_nand:
Richard Smithfeea8832012-04-12 05:08:17 +00004564 case AtomicExpr::AO__atomic_and_fetch:
4565 case AtomicExpr::AO__atomic_or_fetch:
4566 case AtomicExpr::AO__atomic_xor_fetch:
Richard Smithd65cee92012-04-13 06:31:38 +00004567 case AtomicExpr::AO__atomic_nand_fetch:
Richard Smithfeea8832012-04-12 05:08:17 +00004568 Form = Arithmetic;
4569 break;
4570
Elena Demikhovskyd31327d2018-05-13 07:45:58 +00004571 case AtomicExpr::AO__atomic_fetch_min:
4572 case AtomicExpr::AO__atomic_fetch_max:
4573 IsMinMax = true;
4574 Form = Arithmetic;
4575 break;
4576
Richard Smithfeea8832012-04-12 05:08:17 +00004577 case AtomicExpr::AO__c11_atomic_exchange:
Yaxun Liu39195062017-08-04 18:16:31 +00004578 case AtomicExpr::AO__opencl_atomic_exchange:
Richard Smithfeea8832012-04-12 05:08:17 +00004579 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:
Yaxun Liu39195062017-08-04 18:16:31 +00004589 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
4590 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
Richard Smithfeea8832012-04-12 05:08:17 +00004591 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
Yaxun Liu39195062017-08-04 18:16:31 +00004600 unsigned AdjustedNumArgs = NumArgs[Form];
4601 if (IsOpenCL && Op != AtomicExpr::AO__opencl_atomic_init)
4602 ++AdjustedNumArgs;
Richard Smithfeea8832012-04-12 05:08:17 +00004603 // Check we have the right number of arguments.
Yaxun Liu39195062017-08-04 18:16:31 +00004604 if (TheCall->getNumArgs() < AdjustedNumArgs) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00004605 Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
4606 << 0 << AdjustedNumArgs << TheCall->getNumArgs()
4607 << TheCall->getCallee()->getSourceRange();
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004608 return ExprError();
Yaxun Liu39195062017-08-04 18:16:31 +00004609 } else if (TheCall->getNumArgs() > AdjustedNumArgs) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004610 Diag(TheCall->getArg(AdjustedNumArgs)->getBeginLoc(),
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004611 diag::err_typecheck_call_too_many_args)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004612 << 0 << AdjustedNumArgs << TheCall->getNumArgs()
4613 << TheCall->getCallee()->getSourceRange();
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004614 return ExprError();
4615 }
4616
Richard Smithfeea8832012-04-12 05:08:17 +00004617 // Inspect the first argument of the atomic operation.
Eli Friedman8d3e43f2011-10-14 22:48:56 +00004618 Expr *Ptr = TheCall->getArg(0);
George Burgess IV92b43a42016-07-21 03:28:13 +00004619 ExprResult ConvertedPtr = DefaultFunctionArrayLvalueConversion(Ptr);
4620 if (ConvertedPtr.isInvalid())
4621 return ExprError();
4622
4623 Ptr = ConvertedPtr.get();
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004624 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>();
4625 if (!pointerType) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004626 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer)
4627 << Ptr->getType() << Ptr->getSourceRange();
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004628 return ExprError();
4629 }
4630
Richard Smithfeea8832012-04-12 05:08:17 +00004631 // 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004636 Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_atomic)
4637 << Ptr->getType() << Ptr->getSourceRange();
Richard Smithfeea8832012-04-12 05:08:17 +00004638 return ExprError();
4639 }
JF Bastienb4b1f592018-08-02 17:35:46 +00004640 if ((Form != Load && Form != LoadCopy && AtomTy.isConstQualified()) ||
Yaxun Liu39195062017-08-04 18:16:31 +00004641 AtomTy.getAddressSpace() == LangAS::opencl_constant) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004642 Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_non_const_atomic)
Yaxun Liu39195062017-08-04 18:16:31 +00004643 << (AtomTy.isConstQualified() ? 0 : 1) << Ptr->getType()
4644 << Ptr->getSourceRange();
Richard Smithe00921a2012-09-15 06:09:58 +00004645 return ExprError();
4646 }
Richard Smithfeea8832012-04-12 05:08:17 +00004647 ValType = AtomTy->getAs<AtomicType>()->getValueType();
Eric Fiselier8d662442016-03-30 23:39:56 +00004648 } else if (Form != Load && Form != LoadCopy) {
Eric Fiseliera3a7c562015-10-04 00:11:02 +00004649 if (ValType.isConstQualified()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004650 Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_non_const_pointer)
4651 << Ptr->getType() << Ptr->getSourceRange();
Eric Fiseliera3a7c562015-10-04 00:11:02 +00004652 return ExprError();
4653 }
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004654 }
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004655
Richard Smithfeea8832012-04-12 05:08:17 +00004656 // 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.
Elena Demikhovskyd31327d2018-05-13 07:45:58 +00004659 if (IsAddSub && !ValType->isIntegerType()
4660 && !ValType->isPointerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004661 Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_atomic_int_or_ptr)
4662 << IsC11 << Ptr->getType() << Ptr->getSourceRange();
Richard Smithfeea8832012-04-12 05:08:17 +00004663 return ExprError();
4664 }
Elena Demikhovskyd31327d2018-05-13 07:45:58 +00004665 if (IsMinMax) {
4666 const BuiltinType *BT = ValType->getAs<BuiltinType>();
4667 if (!BT || (BT->getKind() != BuiltinType::Int &&
4668 BT->getKind() != BuiltinType::UInt)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004669 Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_int32_or_ptr);
Elena Demikhovskyd31327d2018-05-13 07:45:58 +00004670 return ExprError();
4671 }
4672 }
4673 if (!IsAddSub && !IsMinMax && !ValType->isIntegerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004674 Diag(DRE->getBeginLoc(), diag::err_atomic_op_bitwise_needs_atomic_int)
4675 << IsC11 << Ptr->getType() << Ptr->getSourceRange();
Richard Smithfeea8832012-04-12 05:08:17 +00004676 return ExprError();
4677 }
David Majnemere85cff82015-01-28 05:48:06 +00004678 if (IsC11 && ValType->isPointerType() &&
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004679 RequireCompleteType(Ptr->getBeginLoc(), ValType->getPointeeType(),
David Majnemere85cff82015-01-28 05:48:06 +00004680 diag::err_incomplete_type)) {
4681 return ExprError();
4682 }
Richard Smithfeea8832012-04-12 05:08:17 +00004683 } 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.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004686 Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_atomic_int_or_ptr)
4687 << IsC11 << Ptr->getType() << Ptr->getSourceRange();
Richard Smithfeea8832012-04-12 05:08:17 +00004688 return ExprError();
4689 }
4690
Eli Friedmanaa769812013-09-11 03:49:34 +00004691 if (!IsC11 && !AtomTy.isTriviallyCopyableType(Context) &&
4692 !AtomTy->isScalarType()) {
Richard Smithfeea8832012-04-12 05:08:17 +00004693 // For GNU atomics, require a trivially-copyable type. This is not part of
4694 // the GNU atomics specification, but we enforce it for sanity.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004695 Diag(DRE->getBeginLoc(), diag::err_atomic_op_needs_trivial_copy)
4696 << Ptr->getType() << Ptr->getSourceRange();
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004697 return ExprError();
4698 }
4699
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004700 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:
Richard Smithfeea8832012-04-12 05:08:17 +00004709 // FIXME: Can this happen? By this point, ValType should be known
4710 // to be trivially copyable.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004711 Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership)
4712 << ValType << Ptr->getSourceRange();
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004713 return ExprError();
4714 }
4715
JF Bastien7f0a05a2018-05-25 00:07:09 +00004716 // 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'.
David Majnemerc6eb6502015-06-03 00:26:35 +00004720 ValType.removeLocalVolatile();
Eric Fiselier8d662442016-03-30 23:39:56 +00004721 ValType.removeLocalConst();
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004722 QualType ResultType = ValType;
Yaxun Liu39195062017-08-04 18:16:31 +00004723 if (Form == Copy || Form == LoadCopy || Form == GNUXchg ||
4724 Form == Init)
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004725 ResultType = Context.VoidTy;
Richard Smithfeea8832012-04-12 05:08:17 +00004726 else if (Form == C11CmpXchg || Form == GNUCmpXchg)
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004727 ResultType = Context.BoolTy;
4728
Richard Smithfeea8832012-04-12 05:08:17 +00004729 // 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'
JF Bastien7f0a05a2018-05-25 00:07:09 +00004732 bool IsPassedByAddress = false;
4733 if (!IsC11 && !IsN) {
Richard Smithfeea8832012-04-12 05:08:17 +00004734 ByValType = Ptr->getType();
JF Bastien7f0a05a2018-05-25 00:07:09 +00004735 IsPassedByAddress = true;
4736 }
Richard Smithfeea8832012-04-12 05:08:17 +00004737
JF Bastien7f0a05a2018-05-25 00:07:09 +00004738 // 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) {
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004744 QualType Ty;
Richard Smithfeea8832012-04-12 05:08:17 +00004745 if (i < NumVals[Form] + 1) {
4746 switch (i) {
JF Bastien7f0a05a2018-05-25 00:07:09 +00004747 case 0:
4748 // The first argument is always a pointer. It has a fixed type.
4749 // It is always dereferenced, a nullptr is undefined.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004750 CheckNonNullArgument(*this, TheCall->getArg(i), DRE->getBeginLoc());
JF Bastien7f0a05a2018-05-25 00:07:09 +00004751 // Nothing else to do: we already know all we want about this pointer.
4752 continue;
Richard Smithfeea8832012-04-12 05:08:17 +00004753 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;
JF Bastien7f0a05a2018-05-25 00:07:09 +00004761 else if (Form == Copy || Form == Xchg) {
4762 if (IsPassedByAddress)
4763 // The value pointer is always dereferenced, a nullptr is undefined.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004764 CheckNonNullArgument(*this, TheCall->getArg(i), DRE->getBeginLoc());
Richard Smithfeea8832012-04-12 05:08:17 +00004765 Ty = ByValType;
JF Bastien7f0a05a2018-05-25 00:07:09 +00004766 } else if (Form == Arithmetic)
Richard Smithfeea8832012-04-12 05:08:17 +00004767 Ty = Context.getPointerDiffType();
Anastasia Stulova76fd1052015-12-22 15:14:54 +00004768 else {
4769 Expr *ValArg = TheCall->getArg(i);
JF Bastien7f0a05a2018-05-25 00:07:09 +00004770 // The value pointer is always dereferenced, a nullptr is undefined.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004771 CheckNonNullArgument(*this, ValArg, DRE->getBeginLoc());
Alexander Richardson6d989432017-10-15 18:48:14 +00004772 LangAS AS = LangAS::Default;
Anastasia Stulova76fd1052015-12-22 15:14:54 +00004773 // 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 }
Richard Smithfeea8832012-04-12 05:08:17 +00004781 break;
4782 case 2:
JF Bastien7f0a05a2018-05-25 00:07:09 +00004783 // The third argument to compare_exchange / GNU exchange is the desired
JF Bastien7853d5f2018-05-25 17:36:49 +00004784 // value, either by-value (for the C11 and *_n variant) or as a pointer.
4785 if (IsPassedByAddress)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004786 CheckNonNullArgument(*this, TheCall->getArg(i), DRE->getBeginLoc());
Richard Smithfeea8832012-04-12 05:08:17 +00004787 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 }
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004794 } else {
Yaxun Liu39195062017-08-04 18:16:31 +00004795 // The order(s) and scope are always converted to int.
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004796 Ty = Context.IntTy;
4797 }
Richard Smithfeea8832012-04-12 05:08:17 +00004798
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004799 InitializedEntity Entity =
4800 InitializedEntity::InitializeParameter(Context, Ty, false);
Richard Smithfeea8832012-04-12 05:08:17 +00004801 ExprResult Arg = TheCall->getArg(i);
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004802 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
4803 if (Arg.isInvalid())
4804 return true;
4805 TheCall->setArg(i, Arg.get());
4806 }
4807
Richard Smithfeea8832012-04-12 05:08:17 +00004808 // Permute the arguments into a 'consistent' order.
Eli Friedman8d3e43f2011-10-14 22:48:56 +00004809 SmallVector<Expr*, 5> SubExprs;
4810 SubExprs.push_back(Ptr);
Richard Smithfeea8832012-04-12 05:08:17 +00004811 switch (Form) {
4812 case Init:
4813 // Note, AtomicExpr::getVal1() has a special case for this atomic.
David Chisnallfa35df62012-01-16 17:27:18 +00004814 SubExprs.push_back(TheCall->getArg(1)); // Val1
Richard Smithfeea8832012-04-12 05:08:17 +00004815 break;
4816 case Load:
4817 SubExprs.push_back(TheCall->getArg(1)); // Order
4818 break;
Eric Fiselier8d662442016-03-30 23:39:56 +00004819 case LoadCopy:
Richard Smithfeea8832012-04-12 05:08:17 +00004820 case Copy:
4821 case Arithmetic:
4822 case Xchg:
Eli Friedman8d3e43f2011-10-14 22:48:56 +00004823 SubExprs.push_back(TheCall->getArg(2)); // Order
4824 SubExprs.push_back(TheCall->getArg(1)); // Val1
Richard Smithfeea8832012-04-12 05:08:17 +00004825 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:
Eli Friedman8d3e43f2011-10-14 22:48:56 +00004833 SubExprs.push_back(TheCall->getArg(3)); // Order
4834 SubExprs.push_back(TheCall->getArg(1)); // Val1
Eli Friedman8d3e43f2011-10-14 22:48:56 +00004835 SubExprs.push_back(TheCall->getArg(4)); // OrderFail
David Chisnall891ec282012-03-29 17:58:59 +00004836 SubExprs.push_back(TheCall->getArg(2)); // Val2
Richard Smithfeea8832012-04-12 05:08:17 +00004837 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;
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004845 }
Tim Northovere94a34c2014-03-11 10:49:14 +00004846
4847 if (SubExprs.size() >= 2 && Form != Init) {
4848 llvm::APSInt Result(32);
4849 if (SubExprs[1]->isIntegerConstantExpr(Result, Context) &&
4850 !isValidOrderingForOp(Result.getSExtValue(), Op))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004851 Diag(SubExprs[1]->getBeginLoc(),
Tim Northoverc83472e2014-03-11 11:35:10 +00004852 diag::warn_atomic_op_has_invalid_memory_order)
4853 << SubExprs[1]->getSourceRange();
Tim Northovere94a34c2014-03-11 10:49:14 +00004854 }
4855
Yaxun Liu30d652a2017-08-15 16:02:49 +00004856 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())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004861 Diag(Scope->getBeginLoc(), diag::err_atomic_op_has_invalid_synch_scope)
Yaxun Liu30d652a2017-08-15 16:02:49 +00004862 << Scope->getSourceRange();
4863 }
4864 SubExprs.push_back(Scope);
4865 }
4866
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004867 AtomicExpr *AE =
4868 new (Context) AtomicExpr(TheCall->getCallee()->getBeginLoc(), SubExprs,
4869 ResultType, Op, TheCall->getRParenLoc());
Fangrui Song6907ce22018-07-30 19:24:48 +00004870
Fariborz Jahanian615de762013-05-28 17:37:39 +00004871 if ((Op == AtomicExpr::AO__c11_atomic_load ||
Yaxun Liu39195062017-08-04 18:16:31 +00004872 Op == AtomicExpr::AO__c11_atomic_store ||
4873 Op == AtomicExpr::AO__opencl_atomic_load ||
4874 Op == AtomicExpr::AO__opencl_atomic_store ) &&
Fariborz Jahanian615de762013-05-28 17:37:39 +00004875 Context.AtomicUsesUnsupportedLibcall(AE))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004876 Diag(AE->getBeginLoc(), diag::err_atomic_load_store_uses_lib)
Yaxun Liu39195062017-08-04 18:16:31 +00004877 << ((Op == AtomicExpr::AO__c11_atomic_load ||
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004878 Op == AtomicExpr::AO__opencl_atomic_load)
4879 ? 0
4880 : 1);
Eli Friedman8d3e43f2011-10-14 22:48:56 +00004881
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004882 return AE;
Eli Friedmandf14b3a2011-10-11 02:20:01 +00004883}
4884
John McCall29ad95b2011-08-27 01:09:30 +00004885/// 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.
4892static 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
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004905 E->setArg(ArgIndex, Arg.get());
John McCall29ad95b2011-08-27 01:09:30 +00004906 return false;
4907}
4908
JF Bastiene77b48b2018-09-10 20:42:56 +00004909/// 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.
Richard Smith255b85f2019-05-08 01:36:36 +00004911/// The main BuildCallExpr routines have already promoted the types of
JF Bastiene77b48b2018-09-10 20:42:56 +00004912/// arguments because all of these calls are prototyped as void(...).
Chris Lattnerdc046542009-05-08 06:58:22 +00004913///
4914/// This function goes through and does final semantic checking for these
JF Bastiene77b48b2018-09-10 20:42:56 +00004915/// builtins, as well as generating any warnings.
John McCalldadc5752010-08-24 06:29:42 +00004916ExprResult
4917Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) {
JF Bastiene77b48b2018-09-10 20:42:56 +00004918 CallExpr *TheCall = static_cast<CallExpr *>(TheCallResult.get());
4919 Expr *Callee = TheCall->getCallee();
4920 DeclRefExpr *DRE = cast<DeclRefExpr>(Callee->IgnoreParenCasts());
Chris Lattnerdc046542009-05-08 06:58:22 +00004921 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl());
4922
4923 // Ensure that we have at least one argument to do type inference from.
Chandler Carruth741e5ce2010-07-09 18:59:35 +00004924 if (TheCall->getNumArgs() < 1) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00004925 Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
JF Bastiene77b48b2018-09-10 20:42:56 +00004926 << 0 << 1 << TheCall->getNumArgs() << Callee->getSourceRange();
Chandler Carruth741e5ce2010-07-09 18:59:35 +00004927 return ExprError();
4928 }
Mike Stump11289f42009-09-09 15:08:12 +00004929
Chris Lattnerdc046542009-05-08 06:58:22 +00004930 // 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.
Chandler Carruth741e5ce2010-07-09 18:59:35 +00004934 // FIXME: We don't allow floating point scalars as input.
Chris Lattnerdc046542009-05-08 06:58:22 +00004935 Expr *FirstArg = TheCall->getArg(0);
Eli Friedman844f9452012-01-23 02:35:22 +00004936 ExprResult FirstArgResult = DefaultFunctionArrayLvalueConversion(FirstArg);
4937 if (FirstArgResult.isInvalid())
4938 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004939 FirstArg = FirstArgResult.get();
Eli Friedman844f9452012-01-23 02:35:22 +00004940 TheCall->setArg(0, FirstArg);
4941
John McCall31168b02011-06-15 23:02:42 +00004942 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>();
4943 if (!pointerType) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004944 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer)
4945 << FirstArg->getType() << FirstArg->getSourceRange();
Chandler Carruth741e5ce2010-07-09 18:59:35 +00004946 return ExprError();
4947 }
Mike Stump11289f42009-09-09 15:08:12 +00004948
John McCall31168b02011-06-15 23:02:42 +00004949 QualType ValType = pointerType->getPointeeType();
Chris Lattnerbb3bcd82010-09-17 21:12:38 +00004950 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() &&
Chandler Carruth741e5ce2010-07-09 18:59:35 +00004951 !ValType->isBlockPointerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004952 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer_intptr)
4953 << FirstArg->getType() << FirstArg->getSourceRange();
Chandler Carruth741e5ce2010-07-09 18:59:35 +00004954 return ExprError();
4955 }
Chris Lattnerdc046542009-05-08 06:58:22 +00004956
Aaron Ballmana383c942018-05-05 17:38:42 +00004957 if (ValType.isConstQualified()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004958 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_cannot_be_const)
Aaron Ballmana383c942018-05-05 17:38:42 +00004959 << FirstArg->getType() << FirstArg->getSourceRange();
4960 return ExprError();
4961 }
4962
John McCall31168b02011-06-15 23:02:42 +00004963 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:
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004972 Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership)
4973 << ValType << FirstArg->getSourceRange();
John McCall31168b02011-06-15 23:02:42 +00004974 return ExprError();
4975 }
4976
John McCallb50451a2011-10-05 07:41:44 +00004977 // Strip any qualifiers off ValType.
4978 ValType = ValType.getUnqualifiedType();
4979
Chandler Carruth3973af72010-07-18 20:54:12 +00004980 // 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
Chris Lattnerdc046542009-05-08 06:58:22 +00004984 // 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 }
Mike Stump11289f42009-09-09 15:08:12 +00004990
Chris Lattnerdc046542009-05-08 06:58:22 +00004991 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),
Hal Finkeld2208b52014-10-02 20:53:50 +00004997 BUILTIN_ROW(__sync_fetch_and_nand),
Mike Stump11289f42009-09-09 15:08:12 +00004998
Chris Lattnerdc046542009-05-08 06:58:22 +00004999 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),
Hal Finkeld2208b52014-10-02 20:53:50 +00005004 BUILTIN_ROW(__sync_nand_and_fetch),
Mike Stump11289f42009-09-09 15:08:12 +00005005
Chris Lattnerdc046542009-05-08 06:58:22 +00005006 BUILTIN_ROW(__sync_val_compare_and_swap),
5007 BUILTIN_ROW(__sync_bool_compare_and_swap),
5008 BUILTIN_ROW(__sync_lock_test_and_set),
Chris Lattner9cb59fa2011-04-09 03:57:26 +00005009 BUILTIN_ROW(__sync_lock_release),
5010 BUILTIN_ROW(__sync_swap)
Chris Lattnerdc046542009-05-08 06:58:22 +00005011 };
Mike Stump11289f42009-09-09 15:08:12 +00005012#undef BUILTIN_ROW
5013
Chris Lattnerdc046542009-05-08 06:58:22 +00005014 // Determine the index of the size.
5015 unsigned SizeIndex;
Ken Dyck40775002010-01-11 17:06:35 +00005016 switch (Context.getTypeSizeInChars(ValType).getQuantity()) {
Chris Lattnerdc046542009-05-08 06:58:22 +00005017 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:
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005023 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_pointer_size)
5024 << FirstArg->getType() << FirstArg->getSourceRange();
Chandler Carruth741e5ce2010-07-09 18:59:35 +00005025 return ExprError();
Chris Lattnerdc046542009-05-08 06:58:22 +00005026 }
Mike Stump11289f42009-09-09 15:08:12 +00005027
Chris Lattnerdc046542009-05-08 06:58:22 +00005028 // 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.
Douglas Gregor15fc9562009-09-12 00:22:50 +00005032 unsigned BuiltinID = FDecl->getBuiltinID();
Chris Lattnerdc046542009-05-08 06:58:22 +00005033 unsigned BuiltinIndex, NumFixed = 1;
Hal Finkeld2208b52014-10-02 20:53:50 +00005034 bool WarnAboutSemanticsChange = false;
Chris Lattnerdc046542009-05-08 06:58:22 +00005035 switch (BuiltinID) {
David Blaikie83d382b2011-09-23 05:06:16 +00005036 default: llvm_unreachable("Unknown overloaded atomic builtin!");
Fangrui Song6907ce22018-07-30 19:24:48 +00005037 case Builtin::BI__sync_fetch_and_add:
Douglas Gregor73722482011-11-28 16:30:08 +00005038 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005043 BuiltinIndex = 0;
Douglas Gregor73722482011-11-28 16:30:08 +00005044 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005045
5046 case Builtin::BI__sync_fetch_and_sub:
Douglas Gregor73722482011-11-28 16:30:08 +00005047 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005052 BuiltinIndex = 1;
Douglas Gregor73722482011-11-28 16:30:08 +00005053 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005054
5055 case Builtin::BI__sync_fetch_and_or:
Douglas Gregor73722482011-11-28 16:30:08 +00005056 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005061 BuiltinIndex = 2;
Douglas Gregor73722482011-11-28 16:30:08 +00005062 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005063
5064 case Builtin::BI__sync_fetch_and_and:
Douglas Gregor73722482011-11-28 16:30:08 +00005065 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005070 BuiltinIndex = 3;
Douglas Gregor73722482011-11-28 16:30:08 +00005071 break;
Mike Stump11289f42009-09-09 15:08:12 +00005072
Fangrui Song6907ce22018-07-30 19:24:48 +00005073 case Builtin::BI__sync_fetch_and_xor:
Douglas Gregor73722482011-11-28 16:30:08 +00005074 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005079 BuiltinIndex = 4;
Douglas Gregor73722482011-11-28 16:30:08 +00005080 break;
5081
Fangrui Song6907ce22018-07-30 19:24:48 +00005082 case Builtin::BI__sync_fetch_and_nand:
Hal Finkeld2208b52014-10-02 20:53:50 +00005083 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
Fangrui Song6907ce22018-07-30 19:24:48 +00005092 case Builtin::BI__sync_add_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +00005093 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005098 BuiltinIndex = 6;
Douglas Gregor73722482011-11-28 16:30:08 +00005099 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005100
5101 case Builtin::BI__sync_sub_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +00005102 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005107 BuiltinIndex = 7;
Douglas Gregor73722482011-11-28 16:30:08 +00005108 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005109
5110 case Builtin::BI__sync_and_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +00005111 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005116 BuiltinIndex = 8;
Douglas Gregor73722482011-11-28 16:30:08 +00005117 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005118
5119 case Builtin::BI__sync_or_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +00005120 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005125 BuiltinIndex = 9;
Douglas Gregor73722482011-11-28 16:30:08 +00005126 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005127
5128 case Builtin::BI__sync_xor_and_fetch:
Douglas Gregor73722482011-11-28 16:30:08 +00005129 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:
Hal Finkeld2208b52014-10-02 20:53:50 +00005134 BuiltinIndex = 10;
5135 break;
5136
Fangrui Song6907ce22018-07-30 19:24:48 +00005137 case Builtin::BI__sync_nand_and_fetch:
Hal Finkeld2208b52014-10-02 20:53:50 +00005138 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;
Douglas Gregor73722482011-11-28 16:30:08 +00005145 break;
Mike Stump11289f42009-09-09 15:08:12 +00005146
Chris Lattnerdc046542009-05-08 06:58:22 +00005147 case Builtin::BI__sync_val_compare_and_swap:
Douglas Gregor73722482011-11-28 16:30:08 +00005148 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:
Hal Finkeld2208b52014-10-02 20:53:50 +00005153 BuiltinIndex = 12;
Chris Lattnerdc046542009-05-08 06:58:22 +00005154 NumFixed = 2;
5155 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005156
Chris Lattnerdc046542009-05-08 06:58:22 +00005157 case Builtin::BI__sync_bool_compare_and_swap:
Douglas Gregor73722482011-11-28 16:30:08 +00005158 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:
Hal Finkeld2208b52014-10-02 20:53:50 +00005163 BuiltinIndex = 13;
Chris Lattnerdc046542009-05-08 06:58:22 +00005164 NumFixed = 2;
Chandler Carruth3973af72010-07-18 20:54:12 +00005165 ResultType = Context.BoolTy;
Chris Lattnerdc046542009-05-08 06:58:22 +00005166 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005167
JF Bastien7f0a05a2018-05-25 00:07:09 +00005168 case Builtin::BI__sync_lock_test_and_set:
Douglas Gregor73722482011-11-28 16:30:08 +00005169 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005174 BuiltinIndex = 14;
Douglas Gregor73722482011-11-28 16:30:08 +00005175 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005176
Chris Lattnerdc046542009-05-08 06:58:22 +00005177 case Builtin::BI__sync_lock_release:
Douglas Gregor73722482011-11-28 16:30:08 +00005178 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:
Hal Finkeld2208b52014-10-02 20:53:50 +00005183 BuiltinIndex = 15;
Chris Lattnerdc046542009-05-08 06:58:22 +00005184 NumFixed = 0;
Chandler Carruth3973af72010-07-18 20:54:12 +00005185 ResultType = Context.VoidTy;
Chris Lattnerdc046542009-05-08 06:58:22 +00005186 break;
Fangrui Song6907ce22018-07-30 19:24:48 +00005187
5188 case Builtin::BI__sync_swap:
Douglas Gregor73722482011-11-28 16:30:08 +00005189 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:
Fangrui Song6907ce22018-07-30 19:24:48 +00005194 BuiltinIndex = 16;
Douglas Gregor73722482011-11-28 16:30:08 +00005195 break;
Chris Lattnerdc046542009-05-08 06:58:22 +00005196 }
Mike Stump11289f42009-09-09 15:08:12 +00005197
Chris Lattnerdc046542009-05-08 06:58:22 +00005198 // Now that we know how many fixed arguments we expect, first check that we
5199 // have at least that many.
Chandler Carruth741e5ce2010-07-09 18:59:35 +00005200 if (TheCall->getNumArgs() < 1+NumFixed) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005201 Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least)
5202 << 0 << 1 + NumFixed << TheCall->getNumArgs()
JF Bastiene77b48b2018-09-10 20:42:56 +00005203 << Callee->getSourceRange();
Chandler Carruth741e5ce2010-07-09 18:59:35 +00005204 return ExprError();
5205 }
Mike Stump11289f42009-09-09 15:08:12 +00005206
JF Bastiene77b48b2018-09-10 20:42:56 +00005207 Diag(TheCall->getEndLoc(), diag::warn_atomic_implicit_seq_cst)
5208 << Callee->getSourceRange();
5209
Hal Finkeld2208b52014-10-02 20:53:50 +00005210 if (WarnAboutSemanticsChange) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005211 Diag(TheCall->getEndLoc(), diag::warn_sync_fetch_and_nand_semantics_change)
JF Bastiene77b48b2018-09-10 20:42:56 +00005212 << Callee->getSourceRange();
Hal Finkeld2208b52014-10-02 20:53:50 +00005213 }
5214
Chris Lattner5b9241b2009-05-08 15:36:58 +00005215 // 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];
Mehdi Amini7186a432016-10-11 19:04:24 +00005218 const char *NewBuiltinName = Context.BuiltinInfo.getName(NewBuiltinID);
Abramo Bagnara6cba23a2012-09-22 09:05:22 +00005219 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));
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005225 LookupResult Res(*this, DN, DRE->getBeginLoc(), LookupOrdinaryName);
Abramo Bagnara6cba23a2012-09-22 09:05:22 +00005226 LookupName(Res, TUScope, /*AllowBuiltinCreation=*/true);
5227 assert(Res.getFoundDecl());
5228 NewBuiltinDecl = dyn_cast<FunctionDecl>(Res.getFoundDecl());
Craig Topperc3ec1492014-05-26 06:22:03 +00005229 if (!NewBuiltinDecl)
Abramo Bagnara6cba23a2012-09-22 09:05:22 +00005230 return ExprError();
5231 }
Chandler Carruth741e5ce2010-07-09 18:59:35 +00005232
John McCallcf142162010-08-07 06:22:56 +00005233 // 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.
Chris Lattnerdc046542009-05-08 06:58:22 +00005236 for (unsigned i = 0; i != NumFixed; ++i) {
John Wiegley01296292011-04-08 18:41:53 +00005237 ExprResult Arg = TheCall->getArg(i+1);
Mike Stump11289f42009-09-09 15:08:12 +00005238
Chris Lattnerdc046542009-05-08 06:58:22 +00005239 // 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.
John McCallb50451a2011-10-05 07:41:44 +00005241 // Initialize the argument.
5242 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context,
5243 ValType, /*consume*/ false);
5244 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg);
John Wiegley01296292011-04-08 18:41:53 +00005245 if (Arg.isInvalid())
Chandler Carruth741e5ce2010-07-09 18:59:35 +00005246 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00005247
Chris Lattnerdc046542009-05-08 06:58:22 +00005248 // 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.
Mike Stump11289f42009-09-09 15:08:12 +00005253 // FIXME: Do this check.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005254 TheCall->setArg(i+1, Arg.get());
Chris Lattnerdc046542009-05-08 06:58:22 +00005255 }
Mike Stump11289f42009-09-09 15:08:12 +00005256
Douglas Gregor6b3bcf22011-09-09 16:51:10 +00005257 // Create a new DeclRefExpr to refer to the new decl.
Richard Smith715f7a12019-06-11 17:50:32 +00005258 DeclRefExpr *NewDRE = DeclRefExpr::Create(
5259 Context, DRE->getQualifierLoc(), SourceLocation(), NewBuiltinDecl,
5260 /*enclosing*/ false, DRE->getLocation(), Context.BuiltinFnTy,
5261 DRE->getValueKind(), nullptr, nullptr, DRE->isNonOdrUse());
Mike Stump11289f42009-09-09 15:08:12 +00005262
Chris Lattnerdc046542009-05-08 06:58:22 +00005263 // Set the callee in the CallExpr.
Eli Friedman34866c72012-08-31 00:14:07 +00005264 // FIXME: This loses syntactic information.
5265 QualType CalleePtrTy = Context.getPointerType(NewBuiltinDecl->getType());
5266 ExprResult PromotedCall = ImpCastExprToType(NewDRE, CalleePtrTy,
5267 CK_BuiltinFnToFnPtr);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005268 TheCall->setCallee(PromotedCall.get());
Mike Stump11289f42009-09-09 15:08:12 +00005269
Chandler Carruthbc8cab12010-07-18 07:23:17 +00005270 // 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.
Chandler Carruth3973af72010-07-18 20:54:12 +00005273 TheCall->setType(ResultType);
Chandler Carruth741e5ce2010-07-09 18:59:35 +00005274
Benjamin Kramer62b95d82012-08-23 21:35:17 +00005275 return TheCallResult;
Chris Lattnerdc046542009-05-08 06:58:22 +00005276}
5277
Michael Zolotukhin84df1232015-09-08 23:52:33 +00005278/// 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.
5284ExprResult 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) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005315 Diag(DRE->getBeginLoc(), diag::err_nontemporal_builtin_must_be_pointer)
Michael Zolotukhin84df1232015-09-08 23:52:33 +00005316 << 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()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005327 Diag(DRE->getBeginLoc(),
Michael Zolotukhin84df1232015-09-08 23:52:33 +00005328 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
Chris Lattner6436fb62009-02-18 06:01:06 +00005350/// CheckObjCString - Checks that the argument to the builtin
Anders Carlsson98f07902007-08-17 05:31:46 +00005351/// CFString constructor is correct
Steve Narofffb46e862009-04-13 20:26:29 +00005352/// Note: It might also make sense to do the UTF-16 conversion here (would
5353/// simplify the backend).
Chris Lattner6436fb62009-02-18 06:01:06 +00005354bool Sema::CheckObjCString(Expr *Arg) {
Chris Lattnerf2660962008-02-13 01:02:39 +00005355 Arg = Arg->IgnoreParenCasts();
Anders Carlsson98f07902007-08-17 05:31:46 +00005356 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg);
5357
Douglas Gregorfb65e592011-07-27 05:40:30 +00005358 if (!Literal || !Literal->isAscii()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005359 Diag(Arg->getBeginLoc(), diag::err_cfstring_literal_not_string_constant)
5360 << Arg->getSourceRange();
Anders Carlssona3a9c432007-08-17 15:44:17 +00005361 return true;
Anders Carlsson98f07902007-08-17 05:31:46 +00005362 }
Mike Stump11289f42009-09-09 15:08:12 +00005363
Fariborz Jahanian56603ef2010-09-07 19:38:13 +00005364 if (Literal->containsNonAsciiOrNull()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005365 StringRef String = Literal->getString();
Fariborz Jahanian56603ef2010-09-07 19:38:13 +00005366 unsigned NumBytes = String.size();
Justin Lebar90910552016-09-30 00:38:45 +00005367 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);
Fariborz Jahanian56603ef2010-09-07 19:38:13 +00005374 // Check for conversion failure.
Justin Lebar90910552016-09-30 00:38:45 +00005375 if (Result != llvm::conversionOK)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005376 Diag(Arg->getBeginLoc(), diag::warn_cfstring_truncated)
5377 << Arg->getSourceRange();
Fariborz Jahanian56603ef2010-09-07 19:38:13 +00005378 }
Anders Carlssona3a9c432007-08-17 15:44:17 +00005379 return false;
Chris Lattnerb87b1b32007-08-10 20:18:51 +00005380}
5381
Mehdi Amini06d367c2016-10-24 20:39:34 +00005382/// CheckObjCString - Checks that the format string argument to the os_log()
5383/// and os_trace() functions is correct, and converts it to const char *.
5384ExprResult 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(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005395 Diag(Arg->getBeginLoc(), diag::err_os_log_format_not_string_constant)
Mehdi Amini06d367c2016-10-24 20:39:34 +00005396 << 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
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005407/// Check that the user is calling the appropriate va_start builtin for the
5408/// target and calling convention.
5409static 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;
Martin Storsjo022e7822017-07-17 20:49:45 +00005412 bool IsAArch64 = TT.getArch() == llvm::Triple::aarch64;
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005413 bool IsWindows = TT.isOSWindows();
Martin Storsjo022e7822017-07-17 20:49:45 +00005414 bool IsMSVAStart = BuiltinID == Builtin::BI__builtin_ms_va_start;
5415 if (IsX64 || IsAArch64) {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00005416 CallingConv CC = CC_C;
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005417 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.
Martin Storsjo022e7822017-07-17 20:49:45 +00005421 if (CC == CC_X86_64SysV || (!IsWindows && CC != CC_Win64))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005422 return S.Diag(Fn->getBeginLoc(),
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005423 diag::err_ms_va_start_used_in_sysv_function);
5424 } else {
Martin Storsjo022e7822017-07-17 20:49:45 +00005425 // On x86-64/AArch64 Unix, don't allow this in Win64 ABI functions.
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005426 // 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) ||
Martin Storsjo022e7822017-07-17 20:49:45 +00005430 (!IsWindows && CC == CC_Win64))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005431 return S.Diag(Fn->getBeginLoc(),
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005432 diag::err_va_start_used_in_wrong_abi_function)
5433 << !IsWindows;
5434 }
5435 return false;
5436 }
5437
5438 if (IsMSVAStart)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005439 return S.Diag(Fn->getBeginLoc(), diag::err_builtin_x64_aarch64_only);
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005440 return false;
5441}
5442
5443static 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;
Reid Klecknerf1deb832017-05-04 19:51:05 +00005449 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)) {
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005454 IsVariadic = FD->isVariadic();
5455 Params = FD->parameters();
Reid Klecknerf1deb832017-05-04 19:51:05 +00005456 } else if (auto *MD = dyn_cast<ObjCMethodDecl>(Caller)) {
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005457 IsVariadic = MD->isVariadic();
5458 // FIXME: This isn't correct for methods (results in bogus warning).
5459 Params = MD->parameters();
Reid Klecknerf1deb832017-05-04 19:51:05 +00005460 } else if (isa<CapturedDecl>(Caller)) {
5461 // We don't support va_start in a CapturedDecl.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005462 S.Diag(Fn->getBeginLoc(), diag::err_va_start_captured_stmt);
Reid Klecknerf1deb832017-05-04 19:51:05 +00005463 return true;
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005464 } else {
Reid Klecknerf1deb832017-05-04 19:51:05 +00005465 // This must be some other declcontext that parses exprs.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005466 S.Diag(Fn->getBeginLoc(), diag::err_va_start_outside_function);
Reid Klecknerf1deb832017-05-04 19:51:05 +00005467 return true;
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005468 }
5469
5470 if (!IsVariadic) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005471 S.Diag(Fn->getBeginLoc(), diag::err_va_start_fixed_function);
Reid Kleckner2b0fa122017-05-02 20:10:03 +00005472 return true;
5473 }
5474
5475 if (LastParam)
5476 *LastParam = Params.empty() ? nullptr : Params.back();
5477
5478 return false;
5479}
5480
Aaron Ballman68d50642018-06-19 14:53:20 +00005481/// 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.
5484bool 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) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005491 Diag(TheCall->getArg(2)->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005492 diag::err_typecheck_call_too_many_args)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005493 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
5494 << Fn->getSourceRange()
5495 << SourceRange(TheCall->getArg(2)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005496 (*(TheCall->arg_end() - 1))->getEndLoc());
Aaron Ballman68d50642018-06-19 14:53:20 +00005497 return true;
5498 }
5499
5500 if (TheCall->getNumArgs() < 2) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005501 return Diag(TheCall->getEndLoc(),
5502 diag::err_typecheck_call_too_few_args_at_least)
5503 << 0 /*function call*/ << 2 << TheCall->getNumArgs();
Aaron Ballman68d50642018-06-19 14:53:20 +00005504 }
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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005538 Diag(TheCall->getArg(1)->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005539 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;
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005555 Diag(Arg->getBeginLoc(), diag::warn_va_start_type_is_undefined) << Reason;
Aaron Ballman68d50642018-06-19 14:53:20 +00005556 Diag(ParamLoc, diag::note_parameter_type) << Type;
5557 }
5558
5559 TheCall->setType(Context.VoidTy);
5560 return false;
5561}
5562
5563bool 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)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005570 return Diag(Call->getEndLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005571 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005594 Diag(Arg1->getBeginLoc(), diag::err_typecheck_convert_incompatible)
5595 << Arg1->getType() << ConstCharPtrTy << 1 /* different class */
5596 << 0 /* qualifier difference */
5597 << 3 /* parameter mismatch */
Aaron Ballman68d50642018-06-19 14:53:20 +00005598 << 2 << Arg1->getType() << ConstCharPtrTy;
5599
5600 const QualType SizeTy = Context.getSizeType();
5601 if (Arg2Ty->getCanonicalTypeInternal().withoutLocalFastQualifiers() != SizeTy)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005602 Diag(Arg2->getBeginLoc(), diag::err_typecheck_convert_incompatible)
5603 << Arg2->getType() << SizeTy << 1 /* different class */
5604 << 0 /* qualifier difference */
5605 << 3 /* parameter mismatch */
Aaron Ballman68d50642018-06-19 14:53:20 +00005606 << 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.
5613bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) {
5614 if (TheCall->getNumArgs() < 2)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005615 return Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
5616 << 0 << 2 << TheCall->getNumArgs() /*function call*/;
Aaron Ballman68d50642018-06-19 14:53:20 +00005617 if (TheCall->getNumArgs() > 2)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005618 return Diag(TheCall->getArg(2)->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005619 diag::err_typecheck_call_too_many_args)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005620 << 0 /*function call*/ << 2 << TheCall->getNumArgs()
5621 << SourceRange(TheCall->getArg(2)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005622 (*(TheCall->arg_end() - 1))->getEndLoc());
Aaron Ballman68d50642018-06-19 14:53:20 +00005623
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())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005645 return Diag(OrigArg0.get()->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005646 diag::err_typecheck_call_invalid_ordered_compare)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005647 << OrigArg0.get()->getType() << OrigArg1.get()->getType()
5648 << SourceRange(OrigArg0.get()->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005649 OrigArg1.get()->getEndLoc());
Aaron Ballman68d50642018-06-19 14:53:20 +00005650
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.
5658bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) {
5659 if (TheCall->getNumArgs() < NumArgs)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005660 return Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
5661 << 0 << NumArgs << TheCall->getNumArgs() /*function call*/;
Aaron Ballman68d50642018-06-19 14:53:20 +00005662 if (TheCall->getNumArgs() > NumArgs)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005663 return Diag(TheCall->getArg(NumArgs)->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005664 diag::err_typecheck_call_too_many_args)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005665 << 0 /*function call*/ << NumArgs << TheCall->getNumArgs()
5666 << SourceRange(TheCall->getArg(NumArgs)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005667 (*(TheCall->arg_end() - 1))->getEndLoc());
Aaron Ballman68d50642018-06-19 14:53:20 +00005668
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())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005676 return Diag(OrigArg->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005677 diag::err_typecheck_call_invalid_unary_fp)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005678 << OrigArg->getType() << OrigArg->getSourceRange();
Aaron Ballman68d50642018-06-19 14:53:20 +00005679
Aaron Ballmandd0e2b02018-06-19 14:59:11 +00005680 // If this is an implicit conversion from float -> float, double, or
5681 // long double, remove it.
Aaron Ballman68d50642018-06-19 14:53:20 +00005682 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)) {
Aaron Ballmandd0e2b02018-06-19 14:59:11 +00005687 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");
Aaron Ballman68d50642018-06-19 14:53:20 +00005693 Cast->setSubExpr(nullptr);
5694 TheCall->setArg(NumArgs-1, CastArg);
5695 }
5696 }
5697 }
Fangrui Song6907ce22018-07-30 19:24:48 +00005698
Aaron Ballman68d50642018-06-19 14:53:20 +00005699 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);
5709bool Sema::SemaBuiltinVSX(CallExpr *TheCall) {
5710 unsigned ExpectedNumArgs = 3;
5711 if (TheCall->getNumArgs() < ExpectedNumArgs)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005712 return Diag(TheCall->getEndLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005713 diag::err_typecheck_call_too_few_args_at_least)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005714 << 0 /*function call*/ << ExpectedNumArgs << TheCall->getNumArgs()
Aaron Ballman68d50642018-06-19 14:53:20 +00005715 << TheCall->getSourceRange();
5716
5717 if (TheCall->getNumArgs() > ExpectedNumArgs)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005718 return Diag(TheCall->getEndLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005719 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))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005726 return Diag(TheCall->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005727 diag::err_vsx_builtin_nonconstant_argument)
5728 << 3 /* argument index */ << TheCall->getDirectCallee()
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005729 << SourceRange(TheCall->getArg(2)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005730 TheCall->getArg(2)->getEndLoc());
Aaron Ballman68d50642018-06-19 14:53:20 +00005731
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.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005736 SourceLocation BuiltinLoc = TheCall->getBeginLoc();
Aaron Ballman68d50642018-06-19 14:53:20 +00005737 if ((!Arg1Ty->isVectorType() && !Arg1Ty->isDependentType()) ||
5738 (!Arg2Ty->isVectorType() && !Arg2Ty->isDependentType())) {
5739 return Diag(BuiltinLoc, diag::err_vec_builtin_non_vector)
5740 << TheCall->getDirectCallee()
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005741 << SourceRange(TheCall->getArg(0)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005742 TheCall->getArg(1)->getEndLoc());
Aaron Ballman68d50642018-06-19 14:53:20 +00005743 }
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()
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005749 << SourceRange(TheCall->getArg(0)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005750 TheCall->getArg(1)->getEndLoc());
Aaron Ballman68d50642018-06-19 14:53:20 +00005751 }
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.
5763ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) {
5764 if (TheCall->getNumArgs() < 2)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005765 return ExprError(Diag(TheCall->getEndLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005766 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())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005782 return ExprError(
5783 Diag(TheCall->getBeginLoc(), diag::err_vec_builtin_non_vector)
5784 << TheCall->getDirectCallee()
5785 << SourceRange(TheCall->getArg(0)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005786 TheCall->getArg(1)->getEndLoc()));
Aaron Ballman68d50642018-06-19 14:53:20 +00005787
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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005797 return ExprError(Diag(TheCall->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005798 diag::err_vec_builtin_incompatible_vector)
5799 << TheCall->getDirectCallee()
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005800 << SourceRange(TheCall->getArg(1)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005801 TheCall->getArg(1)->getEndLoc()));
Aaron Ballman68d50642018-06-19 14:53:20 +00005802 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005803 return ExprError(Diag(TheCall->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005804 diag::err_vec_builtin_incompatible_vector)
5805 << TheCall->getDirectCallee()
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005806 << SourceRange(TheCall->getArg(0)->getBeginLoc(),
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005807 TheCall->getArg(1)->getEndLoc()));
Aaron Ballman68d50642018-06-19 14:53:20 +00005808 } 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))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005822 return ExprError(Diag(TheCall->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005823 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005831 return ExprError(Diag(TheCall->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005832 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,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005844 TheCall->getCallee()->getBeginLoc(),
Aaron Ballman68d50642018-06-19 14:53:20 +00005845 TheCall->getRParenLoc());
5846}
5847
5848/// SemaConvertVectorExpr - Handle __builtin_convertvector
5849ExprResult 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.
5881bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) {
5882 unsigned NumArgs = TheCall->getNumArgs();
5883
5884 if (NumArgs > 3)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005885 return Diag(TheCall->getEndLoc(),
5886 diag::err_typecheck_call_too_many_args_at_most)
5887 << 0 /*function call*/ << 3 << NumArgs << TheCall->getSourceRange();
Aaron Ballman68d50642018-06-19 14:53:20 +00005888
5889 // Argument 0 is checked for us and the remaining arguments must be
5890 // constant integers.
5891 for (unsigned i = 1; i != NumArgs; ++i)
Richard Sandiford28940af2014-04-16 08:47:51 +00005892 if (SemaBuiltinConstantArgRange(TheCall, i, 0, i == 1 ? 1 : 3))
Eric Christopher8d0c6212010-04-17 02:26:23 +00005893 return true;
Mike Stump11289f42009-09-09 15:08:12 +00005894
Warren Hunt20e4a5d2014-02-21 23:08:53 +00005895 return false;
5896}
5897
Hal Finkelf0417332014-07-17 14:25:55 +00005898/// SemaBuiltinAssume - Handle __assume (MS Extension).
5899// __assume does not evaluate its arguments, and should warn if its argument
5900// has side effects.
5901bool Sema::SemaBuiltinAssume(CallExpr *TheCall) {
5902 Expr *Arg = TheCall->getArg(0);
5903 if (Arg->isInstantiationDependent()) return false;
5904
5905 if (Arg->HasSideEffects(Context))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005906 Diag(Arg->getBeginLoc(), diag::warn_assume_side_effects)
5907 << Arg->getSourceRange()
5908 << cast<FunctionDecl>(TheCall->getCalleeDecl())->getIdentifier();
Hal Finkelbcc06082014-09-07 22:58:14 +00005909
5910 return false;
5911}
5912
David Majnemer86b1bfa2016-10-31 18:07:57 +00005913/// Handle __builtin_alloca_with_align. This is declared
David Majnemer51169932016-10-31 05:37:48 +00005914/// as (size_t, size_t) where the second size_t must be a power of 2 greater
5915/// than 8.
5916bool 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()) {
David Majnemer86b1bfa2016-10-31 18:07:57 +00005922 if (const auto *UE =
5923 dyn_cast<UnaryExprOrTypeTraitExpr>(Arg->IgnoreParenImpCasts()))
Richard Smith6822bd72018-10-26 19:26:45 +00005924 if (UE->getKind() == UETT_AlignOf ||
5925 UE->getKind() == UETT_PreferredAlignOf)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005926 Diag(TheCall->getBeginLoc(), diag::warn_alloca_align_alignof)
5927 << Arg->getSourceRange();
David Majnemer86b1bfa2016-10-31 18:07:57 +00005928
David Majnemer51169932016-10-31 05:37:48 +00005929 llvm::APSInt Result = Arg->EvaluateKnownConstInt(Context);
5930
5931 if (!Result.isPowerOf2())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005932 return Diag(TheCall->getBeginLoc(), diag::err_alignment_not_power_of_two)
5933 << Arg->getSourceRange();
David Majnemer51169932016-10-31 05:37:48 +00005934
5935 if (Result < Context.getCharWidth())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005936 return Diag(TheCall->getBeginLoc(), diag::err_alignment_too_small)
5937 << (unsigned)Context.getCharWidth() << Arg->getSourceRange();
David Majnemer51169932016-10-31 05:37:48 +00005938
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00005939 if (Result > std::numeric_limits<int32_t>::max())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005940 return Diag(TheCall->getBeginLoc(), diag::err_alignment_too_big)
5941 << std::numeric_limits<int32_t>::max() << Arg->getSourceRange();
David Majnemer51169932016-10-31 05:37:48 +00005942 }
5943
5944 return false;
5945}
5946
5947/// Handle __builtin_assume_aligned. This is declared
Hal Finkelbcc06082014-09-07 22:58:14 +00005948/// as (const void*, size_t, ...) and can take one optional constant int arg.
5949bool Sema::SemaBuiltinAssumeAligned(CallExpr *TheCall) {
5950 unsigned NumArgs = TheCall->getNumArgs();
5951
5952 if (NumArgs > 3)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005953 return Diag(TheCall->getEndLoc(),
5954 diag::err_typecheck_call_too_many_args_at_most)
5955 << 0 /*function call*/ << 3 << NumArgs << TheCall->getSourceRange();
Hal Finkelbcc06082014-09-07 22:58:14 +00005956
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())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00005967 return Diag(TheCall->getBeginLoc(), diag::err_alignment_not_power_of_two)
5968 << Arg->getSourceRange();
Hal Finkelbcc06082014-09-07 22:58:14 +00005969 }
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 }
Hal Finkelf0417332014-07-17 14:25:55 +00005979
5980 return false;
5981}
5982
Mehdi Amini06d367c2016-10-24 20:39:34 +00005983bool 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) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005991 return Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args)
Mehdi Amini06d367c2016-10-24 20:39:34 +00005992 << 0 /* function call */ << NumRequiredArgs << NumArgs
5993 << TheCall->getSourceRange();
5994 }
5995 if (NumArgs >= NumRequiredArgs + 0x100) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00005996 return Diag(TheCall->getEndLoc(),
Mehdi Amini06d367c2016-10-24 20:39:34 +00005997 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) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00006034 return Diag(Arg.get()->getEndLoc(), diag::err_os_log_argument_too_big)
Mehdi Amini06d367c2016-10-24 20:39:34 +00006035 << 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,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006049 VariadicFunction, TheCall->getBeginLoc(), SourceRange(),
Mehdi Amini06d367c2016-10-24 20:39:34 +00006050 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
Eric Christopher8d0c6212010-04-17 02:26:23 +00006063/// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr
6064/// TheCall is a constant expression.
6065bool 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());
Fangrui Song6907ce22018-07-30 19:24:48 +00006070
Eric Christopher8d0c6212010-04-17 02:26:23 +00006071 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false;
Fangrui Song6907ce22018-07-30 19:24:48 +00006072
Eric Christopher8d0c6212010-04-17 02:26:23 +00006073 if (!Arg->isIntegerConstantExpr(Result, Context))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006074 return Diag(TheCall->getBeginLoc(), diag::err_constant_integer_arg_type)
6075 << FDecl->getDeclName() << Arg->getSourceRange();
Fangrui Song6907ce22018-07-30 19:24:48 +00006076
Chris Lattnerd545ad12009-09-23 06:06:36 +00006077 return false;
6078}
6079
Richard Sandiford28940af2014-04-16 08:47:51 +00006080/// SemaBuiltinConstantArgRange - Handle a check if argument ArgNum of CallExpr
6081/// TheCall is a constant expression in the range [Low, High].
6082bool Sema::SemaBuiltinConstantArgRange(CallExpr *TheCall, int ArgNum,
Chandler Carruth16e6bc22018-06-21 23:46:09 +00006083 int Low, int High, bool RangeIsError) {
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00006084 if (isConstantEvaluated())
6085 return false;
Eric Christopher8d0c6212010-04-17 02:26:23 +00006086 llvm::APSInt Result;
Douglas Gregor98c3cfc2012-06-29 01:05:22 +00006087
6088 // We can't check the value of a dependent argument.
Richard Sandiford28940af2014-04-16 08:47:51 +00006089 Expr *Arg = TheCall->getArg(ArgNum);
6090 if (Arg->isTypeDependent() || Arg->isValueDependent())
Douglas Gregor98c3cfc2012-06-29 01:05:22 +00006091 return false;
6092
Eric Christopher8d0c6212010-04-17 02:26:23 +00006093 // Check constant-ness first.
Richard Sandiford28940af2014-04-16 08:47:51 +00006094 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result))
Eric Christopher8d0c6212010-04-17 02:26:23 +00006095 return true;
6096
Chandler Carruth16e6bc22018-06-21 23:46:09 +00006097 if (Result.getSExtValue() < Low || Result.getSExtValue() > High) {
6098 if (RangeIsError)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006099 return Diag(TheCall->getBeginLoc(), diag::err_argument_invalid_range)
Chandler Carruth16e6bc22018-06-21 23:46:09 +00006100 << 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.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006104 DiagRuntimeBehavior(TheCall->getBeginLoc(), TheCall,
6105 PDiag(diag::warn_argument_invalid_range)
6106 << Result.toString(10) << Low << High
6107 << Arg->getSourceRange());
Chandler Carruth16e6bc22018-06-21 23:46:09 +00006108 }
Daniel Dunbarb0d34c82008-09-03 21:13:56 +00006109
6110 return false;
6111}
6112
Simon Dardis1f90f2d2016-10-19 17:50:52 +00006113/// SemaBuiltinConstantArgMultiple - Handle a check if argument ArgNum of CallExpr
6114/// TheCall is a constant expression is a multiple of Num..
6115bool 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006129 return Diag(TheCall->getBeginLoc(), diag::err_argument_not_multiple)
6130 << Num << Arg->getSourceRange();
Simon Dardis1f90f2d2016-10-19 17:50:52 +00006131
6132 return false;
6133}
6134
Javed Absar18b0c402019-04-26 21:08:11 +00006135/// SemaBuiltinARMMemoryTaggingCall - Handle calls of memory tagging extensions
6136bool 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
Luke Cheeseman59b2d832015-06-15 17:51:01 +00006289/// SemaBuiltinARMSpecialReg - Handle a check if argument ArgNum of CallExpr
6290/// TheCall is an ARM/AArch64 special register string literal.
6291bool 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()))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006315 return Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal)
Luke Cheeseman59b2d832015-06-15 17:51:01 +00006316 << 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))
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006324 return Diag(TheCall->getBeginLoc(), diag::err_arm_invalid_specialreg)
Luke Cheeseman59b2d832015-06-15 17:51:01 +00006325 << 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)
Oleg Ranevskyy85d93a82016-11-18 21:00:08 +00006355 Ranges.append({IsAArch64Builtin ? 1 : 15, 7, 15, 15, 7});
Luke Cheeseman59b2d832015-06-15 17:51:01 +00006356 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006366 return Diag(TheCall->getBeginLoc(), diag::err_arm_invalid_specialreg)
Luke Cheeseman59b2d832015-06-15 17:51:01 +00006367 << Arg->getSourceRange();
Luke Cheeseman59b2d832015-06-15 17:51:01 +00006368 } 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
Eli Friedmanc97d0142009-05-03 06:04:26 +00006389/// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val).
Joerg Sonnenberger27173282015-03-11 23:46:32 +00006390/// This checks that the target supports __builtin_longjmp and
6391/// that val is a constant 1.
Eli Friedmaneed8ad22009-05-03 04:46:36 +00006392bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) {
Joerg Sonnenberger27173282015-03-11 23:46:32 +00006393 if (!Context.getTargetInfo().hasSjLjLowering())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006394 return Diag(TheCall->getBeginLoc(), diag::err_builtin_longjmp_unsupported)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00006395 << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc());
Joerg Sonnenberger27173282015-03-11 23:46:32 +00006396
Eli Friedmaneed8ad22009-05-03 04:46:36 +00006397 Expr *Arg = TheCall->getArg(1);
Eric Christopher8d0c6212010-04-17 02:26:23 +00006398 llvm::APSInt Result;
Douglas Gregorc25f7662009-05-19 22:10:17 +00006399
Eric Christopher8d0c6212010-04-17 02:26:23 +00006400 // TODO: This is less than ideal. Overload this to take a value.
6401 if (SemaBuiltinConstantArg(TheCall, 1, Result))
6402 return true;
Fangrui Song6907ce22018-07-30 19:24:48 +00006403
Eric Christopher8d0c6212010-04-17 02:26:23 +00006404 if (Result != 1)
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006405 return Diag(TheCall->getBeginLoc(), diag::err_builtin_longjmp_invalid_val)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00006406 << SourceRange(Arg->getBeginLoc(), Arg->getEndLoc());
Eli Friedmaneed8ad22009-05-03 04:46:36 +00006407
6408 return false;
6409}
6410
Joerg Sonnenberger27173282015-03-11 23:46:32 +00006411/// SemaBuiltinSetjmp - Handle __builtin_setjmp(void *env[5]).
6412/// This checks that the target supports __builtin_setjmp.
6413bool Sema::SemaBuiltinSetjmp(CallExpr *TheCall) {
6414 if (!Context.getTargetInfo().hasSjLjLowering())
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006415 return Diag(TheCall->getBeginLoc(), diag::err_builtin_setjmp_unsupported)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00006416 << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc());
Joerg Sonnenberger27173282015-03-11 23:46:32 +00006417 return false;
6418}
6419
Richard Smithd7293d72013-08-05 18:49:43 +00006420namespace {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006421
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006422class UncoveredArgHandler {
6423 enum { Unknown = -1, AllCovered = -2 };
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006424
6425 signed FirstUncoveredArg = Unknown;
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006426 SmallVector<const Expr *, 4> DiagnosticExprs;
6427
6428public:
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006429 UncoveredArgHandler() = default;
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006430
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
Richard Smithd7293d72013-08-05 18:49:43 +00006468enum StringLiteralCheckType {
6469 SLCT_NotALiteral,
6470 SLCT_UncheckedLiteral,
6471 SLCT_CheckedLiteral
6472};
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006473
6474} // namespace
Richard Smithd7293d72013-08-05 18:49:43 +00006475
Stephen Hines648c3692016-09-16 01:07:04 +00006476static 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) {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006507 assert(BitWidth <= std::numeric_limits<unsigned>::max() / 2 &&
6508 "index (intermediate) result too big");
Stephen Hinesfec73ad2016-09-16 07:21:24 +00006509 Offset = Offset.sext(2 * BitWidth);
Stephen Hines648c3692016-09-16 01:07:04 +00006510 sumOffsets(Offset, Addend, BinOpKind, AddendIsRight);
6511 return;
6512 }
6513
6514 Offset = ResOffset;
6515}
6516
6517namespace {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006518
Stephen Hines648c3692016-09-16 01:07:04 +00006519// 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.
6522class 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 }
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006537
Stephen Hines648c3692016-09-16 01:07:04 +00006538 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
Stephen Kelly724e9e52018-08-09 20:05:03 +00006560 SourceLocation getBeginLoc() const LLVM_READONLY {
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006561 return FExpr->getBeginLoc().getLocWithOffset(Offset);
Stephen Hines648c3692016-09-16 01:07:04 +00006562 }
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006563
Stephen Kelly1c301dc2018-08-09 21:09:38 +00006564 SourceLocation getEndLoc() const LLVM_READONLY { return FExpr->getEndLoc(); }
Stephen Hines648c3692016-09-16 01:07:04 +00006565};
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006566
6567} // namespace
Stephen Hines648c3692016-09-16 01:07:04 +00006568
6569static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr,
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00006570 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,
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006577 llvm::SmallBitVector &CheckedVarArgs,
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006578 UncoveredArgHandler &UncoveredArg,
6579 bool IgnoreStringsWithoutSpecifiers);
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00006580
Richard Smith55ce3522012-06-25 20:30:08 +00006581// 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.
Richard Smithd7293d72013-08-05 18:49:43 +00006585static StringLiteralCheckType
6586checkFormatStringExpr(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,
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006590 llvm::SmallBitVector &CheckedVarArgs,
Stephen Hines648c3692016-09-16 01:07:04 +00006591 UncoveredArgHandler &UncoveredArg,
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006592 llvm::APSInt Offset,
6593 bool IgnoreStringsWithoutSpecifiers = false) {
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00006594 if (S.isConstantEvaluated())
6595 return SLCT_NotALiteral;
Ted Kremenek808829352010-09-09 03:51:39 +00006596 tryAgain:
Stephen Hines648c3692016-09-16 01:07:04 +00006597 assert(Offset.isSigned() && "invalid offset");
6598
Douglas Gregorc25f7662009-05-19 22:10:17 +00006599 if (E->isTypeDependent() || E->isValueDependent())
Richard Smith55ce3522012-06-25 20:30:08 +00006600 return SLCT_NotALiteral;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006601
Jean-Daniel Dupas028573e72012-01-30 08:46:47 +00006602 E = E->IgnoreParenCasts();
Peter Collingbourne91147592011-04-15 00:35:48 +00006603
Richard Smithd7293d72013-08-05 18:49:43 +00006604 if (E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull))
David Blaikie59fe3f82012-02-10 21:07:25 +00006605 // 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.
Richard Smithd7293d72013-08-05 18:49:43 +00006609 return SLCT_UncheckedLiteral;
David Blaikie59fe3f82012-02-10 21:07:25 +00006610
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006611 switch (E->getStmtClass()) {
John McCallc07a0c72011-02-17 10:25:35 +00006612 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006613 case Stmt::ConditionalOperatorClass: {
Richard Smith55ce3522012-06-25 20:30:08 +00006614 // 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);
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006618
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;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00006625 if (C->getCond()->EvaluateAsBooleanCondition(Cond, S.getASTContext(),
6626 S.isConstantEvaluated())) {
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006627 if (Cond)
6628 CheckRight = false;
6629 else
6630 CheckLeft = false;
6631 }
6632
Stephen Hines648c3692016-09-16 01:07:04 +00006633 // 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.
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006637 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,
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006644 CheckedVarArgs, UncoveredArg, Offset,
6645 IgnoreStringsWithoutSpecifiers);
Stephen Hines648c3692016-09-16 01:07:04 +00006646 if (Left == SLCT_NotALiteral || !CheckRight) {
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006647 return Left;
Stephen Hines648c3692016-09-16 01:07:04 +00006648 }
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006649 }
6650
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006651 StringLiteralCheckType Right = checkFormatStringExpr(
6652 S, C->getFalseExpr(), Args, HasVAListArg, format_idx, firstDataArg,
6653 Type, CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
6654 IgnoreStringsWithoutSpecifiers);
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006655
6656 return (CheckLeft && Left < Right) ? Left : Right;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006657 }
6658
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006659 case Stmt::ImplicitCastExprClass:
Ted Kremenek808829352010-09-09 03:51:39 +00006660 E = cast<ImplicitCastExpr>(E)->getSubExpr();
6661 goto tryAgain;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006662
John McCallc07a0c72011-02-17 10:25:35 +00006663 case Stmt::OpaqueValueExprClass:
6664 if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) {
6665 E = src;
6666 goto tryAgain;
6667 }
Richard Smith55ce3522012-06-25 20:30:08 +00006668 return SLCT_NotALiteral;
John McCallc07a0c72011-02-17 10:25:35 +00006669
Ted Kremeneka8890832011-02-24 23:03:04 +00006670 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.
Richard Smith55ce3522012-06-25 20:30:08 +00006674 return SLCT_UncheckedLiteral;
Fangrui Song6907ce22018-07-30 19:24:48 +00006675
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006676 case Stmt::DeclRefExprClass: {
6677 const DeclRefExpr *DR = cast<DeclRefExpr>(E);
Mike Stump11289f42009-09-09 15:08:12 +00006678
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006679 // 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();
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006684
Richard Smithd7293d72013-08-05 18:49:43 +00006685 if (const ArrayType *AT = S.Context.getAsArrayType(T)) {
6686 isConstant = AT->getElementType().isConstant(S.Context);
Mike Stump12b8ce12009-08-04 21:02:39 +00006687 } else if (const PointerType *PT = T->getAs<PointerType>()) {
Richard Smithd7293d72013-08-05 18:49:43 +00006688 isConstant = T.isConstant(S.Context) &&
6689 PT->getPointeeType().isConstant(S.Context);
Jean-Daniel Dupasd5f7ef42012-01-25 10:35:33 +00006690 } 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.
Richard Smithd7293d72013-08-05 18:49:43 +00006693 isConstant = T.isConstant(S.Context);
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006694 }
Mike Stump11289f42009-09-09 15:08:12 +00006695
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006696 if (isConstant) {
Matt Beaumont-Gayd8735082012-05-11 22:10:59 +00006697 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 }
Richard Smithd7293d72013-08-05 18:49:43 +00006703 return checkFormatStringExpr(S, Init, Args,
Richard Smith55ce3522012-06-25 20:30:08 +00006704 HasVAListArg, format_idx,
Jordan Rose3e0ec582012-07-19 18:10:23 +00006705 firstDataArg, Type, CallType,
Stephen Hines648c3692016-09-16 01:07:04 +00006706 /*InFunctionCall*/ false, CheckedVarArgs,
6707 UncoveredArg, Offset);
Matt Beaumont-Gayd8735082012-05-11 22:10:59 +00006708 }
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006709 }
Mike Stump11289f42009-09-09 15:08:12 +00006710
Anders Carlssonb012ca92009-06-28 19:55:58 +00006711 // 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 // ...
Richard Smithd7293d72013-08-05 18:49:43 +00006724 // }
Jean-Daniel Dupas58dab682012-02-21 20:00:53 +00006725 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;
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00006729 for (const auto *PVFormat : ND->specific_attrs<FormatAttr>()) {
Jean-Daniel Dupas58dab682012-02-21 20:00:53 +00006730 // 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() &&
Richard Smithd7293d72013-08-05 18:49:43 +00006737 Type == S.GetFormatStringType(PVFormat))
Richard Smith55ce3522012-06-25 20:30:08 +00006738 return SLCT_UncheckedLiteral;
Jean-Daniel Dupas58dab682012-02-21 20:00:53 +00006739 }
6740 }
6741 }
6742 }
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006743 }
Mike Stump11289f42009-09-09 15:08:12 +00006744
Richard Smith55ce3522012-06-25 20:30:08 +00006745 return SLCT_NotALiteral;
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006746 }
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006747
Jean-Daniel Dupas6255bd12012-02-07 19:01:42 +00006748 case Stmt::CallExprClass:
6749 case Stmt::CXXMemberCallExprClass: {
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00006750 const CallExpr *CE = cast<CallExpr>(E);
Jean-Daniel Dupas6255bd12012-02-07 19:01:42 +00006751 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
Michael Krusef18adbb2018-07-04 01:37:11 +00006752 bool IsFirst = true;
6753 StringLiteralCheckType CommonResult;
6754 for (const auto *FA : ND->specific_attrs<FormatArgAttr>()) {
Joel E. Denny81508102018-03-13 14:51:22 +00006755 const Expr *Arg = CE->getArg(FA->getFormatIdx().getASTIndex());
Michael Krusef18adbb2018-07-04 01:37:11 +00006756 StringLiteralCheckType Result = checkFormatStringExpr(
6757 S, Arg, Args, HasVAListArg, format_idx, firstDataArg, Type,
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006758 CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
6759 IgnoreStringsWithoutSpecifiers);
Michael Krusef18adbb2018-07-04 01:37:11 +00006760 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)) {
Jordan Rose97c6f2b2012-06-04 23:52:23 +00006769 unsigned BuiltinID = FD->getBuiltinID();
6770 if (BuiltinID == Builtin::BI__builtin___CFStringMakeConstantString ||
6771 BuiltinID == Builtin::BI__builtin___NSStringMakeConstantString) {
6772 const Expr *Arg = CE->getArg(0);
Richard Smithd7293d72013-08-05 18:49:43 +00006773 return checkFormatStringExpr(S, Arg, Args,
Richard Smith55ce3522012-06-25 20:30:08 +00006774 HasVAListArg, format_idx,
Jordan Rose3e0ec582012-07-19 18:10:23 +00006775 firstDataArg, Type, CallType,
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006776 InFunctionCall, CheckedVarArgs,
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006777 UncoveredArg, Offset,
6778 IgnoreStringsWithoutSpecifiers);
Jordan Rose97c6f2b2012-06-04 23:52:23 +00006779 }
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00006780 }
6781 }
Mike Stump11289f42009-09-09 15:08:12 +00006782
Richard Smith55ce3522012-06-25 20:30:08 +00006783 return SLCT_NotALiteral;
Anders Carlssonf0a7f3b2009-06-27 04:05:33 +00006784 }
Alex Lorenzd9007142016-10-24 09:42:34 +00006785 case Stmt::ObjCMessageExprClass: {
6786 const auto *ME = cast<ObjCMessageExpr>(E);
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006787 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
Joel E. Denny81508102018-03-13 14:51:22 +00006804 const Expr *Arg = ME->getArg(FA->getFormatIdx().getASTIndex());
Alex Lorenzd9007142016-10-24 09:42:34 +00006805 return checkFormatStringExpr(
6806 S, Arg, Args, HasVAListArg, format_idx, firstDataArg, Type,
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006807 CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset,
6808 IgnoreStringsWithoutSpecifiers);
Alex Lorenzd9007142016-10-24 09:42:34 +00006809 }
6810 }
6811
6812 return SLCT_NotALiteral;
6813 }
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006814 case Stmt::ObjCStringLiteralClass:
6815 case Stmt::StringLiteralClass: {
Craig Topperc3ec1492014-05-26 06:22:03 +00006816 const StringLiteral *StrE = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00006817
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006818 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E))
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006819 StrE = ObjCFExpr->getString();
6820 else
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006821 StrE = cast<StringLiteral>(E);
Mike Stump11289f42009-09-09 15:08:12 +00006822
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006823 if (StrE) {
Stephen Hines648c3692016-09-16 01:07:04 +00006824 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,
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00006831 firstDataArg, Type, InFunctionCall, CallType,
Erik Pilkingtonaa385562019-08-14 16:57:11 +00006832 CheckedVarArgs, UncoveredArg,
6833 IgnoreStringsWithoutSpecifiers);
Richard Smith55ce3522012-06-25 20:30:08 +00006834 return SLCT_CheckedLiteral;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006835 }
Mike Stump11289f42009-09-09 15:08:12 +00006836
Richard Smith55ce3522012-06-25 20:30:08 +00006837 return SLCT_NotALiteral;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006838 }
Stephen Hines648c3692016-09-16 01:07:04 +00006839 case Stmt::BinaryOperatorClass: {
Stephen Hines648c3692016-09-16 01:07:04 +00006840 const BinaryOperator *BinOp = cast<BinaryOperator>(E);
6841
6842 // A string literal + an int offset is still a string literal.
6843 if (BinOp->isAdditiveOp()) {
Fangrui Song407659a2018-11-30 23:41:18 +00006844 Expr::EvalResult LResult, RResult;
6845
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00006846 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());
Stephen Hines648c3692016-09-16 01:07:04 +00006850
6851 if (LIsInt != RIsInt) {
6852 BinaryOperatorKind BinOpKind = BinOp->getOpcode();
6853
6854 if (LIsInt) {
6855 if (BinOpKind == BO_Add) {
Fangrui Song407659a2018-11-30 23:41:18 +00006856 sumOffsets(Offset, LResult.Val.getInt(), BinOpKind, RIsInt);
Stephen Hines648c3692016-09-16 01:07:04 +00006857 E = BinOp->getRHS();
6858 goto tryAgain;
6859 }
6860 } else {
Fangrui Song407659a2018-11-30 23:41:18 +00006861 sumOffsets(Offset, RResult.Val.getInt(), BinOpKind, RIsInt);
Stephen Hines648c3692016-09-16 01:07:04 +00006862 E = BinOp->getLHS();
6863 goto tryAgain;
6864 }
6865 }
Stephen Hines648c3692016-09-16 01:07:04 +00006866 }
George Burgess IVd273aab2016-09-22 00:00:26 +00006867
6868 return SLCT_NotALiteral;
Stephen Hines648c3692016-09-16 01:07:04 +00006869 }
6870 case Stmt::UnaryOperatorClass: {
6871 const UnaryOperator *UnaOp = cast<UnaryOperator>(E);
6872 auto ASE = dyn_cast<ArraySubscriptExpr>(UnaOp->getSubExpr());
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00006873 if (UnaOp->getOpcode() == UO_AddrOf && ASE) {
Fangrui Song407659a2018-11-30 23:41:18 +00006874 Expr::EvalResult IndexResult;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00006875 if (ASE->getRHS()->EvaluateAsInt(IndexResult, S.Context,
6876 Expr::SE_NoSideEffects,
6877 S.isConstantEvaluated())) {
Fangrui Song407659a2018-11-30 23:41:18 +00006878 sumOffsets(Offset, IndexResult.Val.getInt(), BO_Add,
6879 /*RHS is int*/ true);
Stephen Hines648c3692016-09-16 01:07:04 +00006880 E = ASE->getBase();
6881 goto tryAgain;
6882 }
6883 }
6884
6885 return SLCT_NotALiteral;
6886 }
Mike Stump11289f42009-09-09 15:08:12 +00006887
Ted Kremenekdfd72c22009-03-20 21:35:28 +00006888 default:
Richard Smith55ce3522012-06-25 20:30:08 +00006889 return SLCT_NotALiteral;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00006890 }
6891}
6892
Jean-Daniel Dupas028573e72012-01-30 08:46:47 +00006893Sema::FormatStringType Sema::GetFormatStringType(const FormatAttr *Format) {
Aaron Ballmanf58070b2013-09-03 21:02:22 +00006894 return llvm::StringSwitch<FormatStringType>(Format->getType()->getName())
Mehdi Amini06d367c2016-10-24 20:39:34 +00006895 .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);
Jean-Daniel Dupas028573e72012-01-30 08:46:47 +00006905}
6906
Jordan Rose3e0ec582012-07-19 18:10:23 +00006907/// CheckFormatArguments - Check calls to printf and scanf (and similar
Ted Kremenek02087932010-07-16 02:11:22 +00006908/// functions) for correct use of format strings.
Richard Smith55ce3522012-06-25 20:30:08 +00006909/// Returns true if a format string has been fully checked.
Dmitri Gribenko765396f2013-01-13 20:46:02 +00006910bool Sema::CheckFormatArguments(const FormatAttr *Format,
6911 ArrayRef<const Expr *> Args,
6912 bool IsCXXMember,
Jordan Rose3e0ec582012-07-19 18:10:23 +00006913 VariadicCallType CallType,
Richard Smithd7293d72013-08-05 18:49:43 +00006914 SourceLocation Loc, SourceRange Range,
6915 llvm::SmallBitVector &CheckedVarArgs) {
Richard Smith55ce3522012-06-25 20:30:08 +00006916 FormatStringInfo FSI;
6917 if (getFormatStringInfo(Format, IsCXXMember, &FSI))
Dmitri Gribenko765396f2013-01-13 20:46:02 +00006918 return CheckFormatArguments(Args, FSI.HasVAListArg, FSI.FormatIdx,
Richard Smith55ce3522012-06-25 20:30:08 +00006919 FSI.FirstDataArg, GetFormatStringType(Format),
Richard Smithd7293d72013-08-05 18:49:43 +00006920 CallType, Loc, Range, CheckedVarArgs);
Richard Smith55ce3522012-06-25 20:30:08 +00006921 return false;
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00006922}
Sebastian Redl6eedcc12009-11-17 18:02:24 +00006923
Dmitri Gribenko765396f2013-01-13 20:46:02 +00006924bool Sema::CheckFormatArguments(ArrayRef<const Expr *> Args,
Jean-Daniel Dupas028573e72012-01-30 08:46:47 +00006925 bool HasVAListArg, unsigned format_idx,
6926 unsigned firstDataArg, FormatStringType Type,
Jordan Rose3e0ec582012-07-19 18:10:23 +00006927 VariadicCallType CallType,
Richard Smithd7293d72013-08-05 18:49:43 +00006928 SourceLocation Loc, SourceRange Range,
6929 llvm::SmallBitVector &CheckedVarArgs) {
Ted Kremenek02087932010-07-16 02:11:22 +00006930 // CHECK: printf/scanf-like function is called with no format string.
Dmitri Gribenko765396f2013-01-13 20:46:02 +00006931 if (format_idx >= Args.size()) {
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00006932 Diag(Loc, diag::warn_missing_format_string) << Range;
Richard Smith55ce3522012-06-25 20:30:08 +00006933 return false;
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00006934 }
Mike Stump11289f42009-09-09 15:08:12 +00006935
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00006936 const Expr *OrigFormatExpr = Args[format_idx]->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00006937
Chris Lattnerb87b1b32007-08-10 20:18:51 +00006938 // CHECK: format string is not a string literal.
Mike Stump11289f42009-09-09 15:08:12 +00006939 //
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00006940 // 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.
Ted Kremenek34f664d2008-06-16 18:00:42 +00006945
Mike Stump11289f42009-09-09 15:08:12 +00006946 // Format string can be either ObjC string (e.g. @"%d") or
Ted Kremenek34f664d2008-06-16 18:00:42 +00006947 // C string (e.g. "%d")
Mike Stump11289f42009-09-09 15:08:12 +00006948 // ObjC string uses the same format specifiers as C string, so we can use
Ted Kremenek34f664d2008-06-16 18:00:42 +00006949 // the same format string checking logic for both ObjC and C strings.
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006950 UncoveredArgHandler UncoveredArg;
Richard Smith55ce3522012-06-25 20:30:08 +00006951 StringLiteralCheckType CT =
Richard Smithd7293d72013-08-05 18:49:43 +00006952 checkFormatStringExpr(*this, OrigFormatExpr, Args, HasVAListArg,
6953 format_idx, firstDataArg, Type, CallType,
Stephen Hines648c3692016-09-16 01:07:04 +00006954 /*IsFunctionCall*/ true, CheckedVarArgs,
6955 UncoveredArg,
6956 /*no string offset*/ llvm::APSInt(64, false) = 0);
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00006957
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
Richard Smith55ce3522012-06-25 20:30:08 +00006965 if (CT != SLCT_NotALiteral)
6966 // Literal format string found, check done!
6967 return CT == SLCT_CheckedLiteral;
Ted Kremenek34f664d2008-06-16 18:00:42 +00006968
Jean-Daniel Dupas6567f482012-02-07 23:10:53 +00006969 // 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)
Richard Smith55ce3522012-06-25 20:30:08 +00006972 return false;
Jean-Daniel Dupas6567f482012-02-07 23:10:53 +00006973
Jean-Daniel Dupas537aa1a2012-01-30 19:46:17 +00006974 // 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.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00006978 SourceLocation FormatLoc = Args[format_idx]->getBeginLoc();
Bob Wilsoncf2cf0d2016-03-11 21:55:37 +00006979 if (Type == FST_NSString && SourceMgr.isInSystemMacro(FormatLoc))
Richard Smith55ce3522012-06-25 20:30:08 +00006980 return false;
Jean-Daniel Dupas537aa1a2012-01-30 19:46:17 +00006981
Chris Lattnercc5d1c22009-04-29 04:59:47 +00006982 // If there are no arguments specified, warn with -Wformat-security, otherwise
6983 // warn only with -Wformat-nonliteral.
Bob Wilsoncf2cf0d2016-03-11 21:55:37 +00006984 if (Args.size() == firstDataArg) {
Bob Wilson57819fc2016-03-15 20:56:38 +00006985 Diag(FormatLoc, diag::warn_format_nonliteral_noargs)
6986 << OrigFormatExpr->getSourceRange();
Bob Wilsoncf2cf0d2016-03-11 21:55:37 +00006987 switch (Type) {
6988 default:
Bob Wilsoncf2cf0d2016-03-11 21:55:37 +00006989 break;
6990 case FST_Kprintf:
6991 case FST_FreeBSDKPrintf:
6992 case FST_Printf:
Bob Wilson57819fc2016-03-15 20:56:38 +00006993 Diag(FormatLoc, diag::note_format_security_fixit)
6994 << FixItHint::CreateInsertion(FormatLoc, "\"%s\", ");
Bob Wilsoncf2cf0d2016-03-11 21:55:37 +00006995 break;
6996 case FST_NSString:
Bob Wilson57819fc2016-03-15 20:56:38 +00006997 Diag(FormatLoc, diag::note_format_security_fixit)
6998 << FixItHint::CreateInsertion(FormatLoc, "@\"%@\", ");
Bob Wilsoncf2cf0d2016-03-11 21:55:37 +00006999 break;
7000 }
7001 } else {
7002 Diag(FormatLoc, diag::warn_format_nonliteral)
Chris Lattnercc5d1c22009-04-29 04:59:47 +00007003 << OrigFormatExpr->getSourceRange();
Bob Wilsoncf2cf0d2016-03-11 21:55:37 +00007004 }
Richard Smith55ce3522012-06-25 20:30:08 +00007005 return false;
Ted Kremenek6dfeb552009-01-12 23:09:09 +00007006}
Ted Kremeneke68f1aa2007-08-14 17:39:48 +00007007
Ted Kremenekab278de2010-01-28 23:39:18 +00007008namespace {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00007009
Ted Kremenek02087932010-07-16 02:11:22 +00007010class CheckFormatHandler : public analyze_format_string::FormatStringHandler {
7011protected:
Ted Kremenekab278de2010-01-28 23:39:18 +00007012 Sema &S;
Stephen Hines648c3692016-09-16 01:07:04 +00007013 const FormatStringLiteral *FExpr;
Ted Kremenekab278de2010-01-28 23:39:18 +00007014 const Expr *OrigFormatExpr;
Mehdi Amini06d367c2016-10-24 20:39:34 +00007015 const Sema::FormatStringType FSType;
Ted Kremenek4d745dd2010-03-25 03:59:12 +00007016 const unsigned FirstDataArg;
Ted Kremenekab278de2010-01-28 23:39:18 +00007017 const unsigned NumDataArgs;
Ted Kremenekab278de2010-01-28 23:39:18 +00007018 const char *Beg; // Start of format string.
Ted Kremenek5739de72010-01-29 01:06:55 +00007019 const bool HasVAListArg;
Dmitri Gribenko765396f2013-01-13 20:46:02 +00007020 ArrayRef<const Expr *> Args;
Ted Kremenek5739de72010-01-29 01:06:55 +00007021 unsigned FormatIdx;
Richard Smithd7293d72013-08-05 18:49:43 +00007022 llvm::SmallBitVector CoveredArgs;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00007023 bool usesPositionalArgs = false;
7024 bool atFirstArg = true;
Richard Trieu03cf7b72011-10-28 00:41:25 +00007025 bool inFunctionCall;
Jordan Rose3e0ec582012-07-19 18:10:23 +00007026 Sema::VariadicCallType CallType;
Richard Smithd7293d72013-08-05 18:49:43 +00007027 llvm::SmallBitVector &CheckedVarArgs;
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00007028 UncoveredArgHandler &UncoveredArg;
Eugene Zelenko1ced5092016-02-12 22:53:10 +00007029
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007030public:
Stephen Hines648c3692016-09-16 01:07:04 +00007031 CheckFormatHandler(Sema &s, const FormatStringLiteral *fexpr,
Mehdi Amini06d367c2016-10-24 20:39:34 +00007032 const Expr *origFormatExpr,
7033 const Sema::FormatStringType type, unsigned firstDataArg,
Jordan Rose97c6f2b2012-06-04 23:52:23 +00007034 unsigned numDataArgs, const char *beg, bool hasVAListArg,
Mehdi Amini06d367c2016-10-24 20:39:34 +00007035 ArrayRef<const Expr *> Args, unsigned formatIdx,
7036 bool inFunctionCall, Sema::VariadicCallType callType,
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00007037 llvm::SmallBitVector &CheckedVarArgs,
7038 UncoveredArgHandler &UncoveredArg)
Mehdi Amini06d367c2016-10-24 20:39:34 +00007039 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr), FSType(type),
7040 FirstDataArg(firstDataArg), NumDataArgs(numDataArgs), Beg(beg),
7041 HasVAListArg(hasVAListArg), Args(Args), FormatIdx(formatIdx),
Mehdi Amini06d367c2016-10-24 20:39:34 +00007042 inFunctionCall(inFunctionCall), CallType(callType),
7043 CheckedVarArgs(CheckedVarArgs), UncoveredArg(UncoveredArg) {
Richard Smithd7293d72013-08-05 18:49:43 +00007044 CoveredArgs.resize(numDataArgs);
7045 CoveredArgs.reset();
7046 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007047
Ted Kremenek019d2242010-01-29 01:50:07 +00007048 void DoneProcessing();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007049
Ted Kremenek02087932010-07-16 02:11:22 +00007050 void HandleIncompleteSpecifier(const char *startSpecifier,
Craig Toppere14c0f82014-03-12 04:55:44 +00007051 unsigned specifierLen) override;
Hans Wennborgc9dd9462012-02-22 10:17:01 +00007052
Jordan Rose92303592012-09-08 04:00:03 +00007053 void HandleInvalidLengthModifier(
Craig Toppere14c0f82014-03-12 04:55:44 +00007054 const analyze_format_string::FormatSpecifier &FS,
7055 const analyze_format_string::ConversionSpecifier &CS,
7056 const char *startSpecifier, unsigned specifierLen,
7057 unsigned DiagID);
Jordan Rose92303592012-09-08 04:00:03 +00007058
Hans Wennborgc9dd9462012-02-22 10:17:01 +00007059 void HandleNonStandardLengthModifier(
Craig Toppere14c0f82014-03-12 04:55:44 +00007060 const analyze_format_string::FormatSpecifier &FS,
7061 const char *startSpecifier, unsigned specifierLen);
Hans Wennborgc9dd9462012-02-22 10:17:01 +00007062
7063 void HandleNonStandardConversionSpecifier(
Craig Toppere14c0f82014-03-12 04:55:44 +00007064 const analyze_format_string::ConversionSpecifier &CS,
7065 const char *startSpecifier, unsigned specifierLen);
Hans Wennborgc9dd9462012-02-22 10:17:01 +00007066
Craig Toppere14c0f82014-03-12 04:55:44 +00007067 void HandlePosition(const char *startPos, unsigned posLen) override;
Hans Wennborgaa8c61c2012-03-09 10:10:54 +00007068
Craig Toppere14c0f82014-03-12 04:55:44 +00007069 void HandleInvalidPosition(const char *startSpecifier,
7070 unsigned specifierLen,
7071 analyze_format_string::PositionContext p) override;
Ted Kremenekd1668192010-02-27 01:41:03 +00007072
Craig Toppere14c0f82014-03-12 04:55:44 +00007073 void HandleZeroPosition(const char *startPos, unsigned posLen) override;
Ted Kremenekd1668192010-02-27 01:41:03 +00007074
Craig Toppere14c0f82014-03-12 04:55:44 +00007075 void HandleNullChar(const char *nullCharacter) override;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007076
Richard Trieu03cf7b72011-10-28 00:41:25 +00007077 template <typename Range>
Benjamin Kramer7320b992016-06-15 14:20:56 +00007078 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);
Richard Trieu03cf7b72011-10-28 00:41:25 +00007083
Ted Kremenek02087932010-07-16 02:11:22 +00007084protected:
Ted Kremenekce815422010-07-19 21:25:57 +00007085 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc,
7086 const char *startSpec,
7087 unsigned specifierLen,
7088 const char *csStart, unsigned csLen);
Richard Trieu03cf7b72011-10-28 00:41:25 +00007089
7090 void HandlePositionalNonpositionalArgs(SourceLocation Loc,
7091 const char *startSpec,
7092 unsigned specifierLen);
Fangrui Song6907ce22018-07-30 19:24:48 +00007093
Ted Kremenek8d9842d2010-01-29 20:55:36 +00007094 SourceRange getFormatStringRange();
Ted Kremenek02087932010-07-16 02:11:22 +00007095 CharSourceRange getSpecifierRange(const char *startSpecifier,
7096 unsigned specifierLen);
Ted Kremenekab278de2010-01-28 23:39:18 +00007097 SourceLocation getLocationOfByte(const char *x);
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007098
Ted Kremenek5739de72010-01-29 01:06:55 +00007099 const Expr *getDataArg(unsigned i) const;
Fangrui Song6907ce22018-07-30 19:24:48 +00007100
Ted Kremenek6adb7e32010-07-26 19:45:42 +00007101 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS,
7102 const analyze_format_string::ConversionSpecifier &CS,
7103 const char *startSpecifier, unsigned specifierLen,
7104 unsigned argIndex);
Richard Trieu03cf7b72011-10-28 00:41:25 +00007105
7106 template <typename Range>
7107 void EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation StringLoc,
7108 bool IsStringLocation, Range StringRange,
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00007109 ArrayRef<FixItHint> Fixit = None);
Ted Kremenekab278de2010-01-28 23:39:18 +00007110};
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00007111
7112} // namespace
Ted Kremenekab278de2010-01-28 23:39:18 +00007113
Ted Kremenek02087932010-07-16 02:11:22 +00007114SourceRange CheckFormatHandler::getFormatStringRange() {
Ted Kremenekab278de2010-01-28 23:39:18 +00007115 return OrigFormatExpr->getSourceRange();
7116}
7117
Ted Kremenek02087932010-07-16 02:11:22 +00007118CharSourceRange CheckFormatHandler::
7119getSpecifierRange(const char *startSpecifier, unsigned specifierLen) {
Tom Care3f272b82010-06-21 21:21:01 +00007120 SourceLocation Start = getLocationOfByte(startSpecifier);
7121 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1);
7122
7123 // Advance the end SourceLocation by one due to half-open ranges.
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +00007124 End = End.getLocWithOffset(1);
Tom Care3f272b82010-06-21 21:21:01 +00007125
7126 return CharSourceRange::getCharRange(Start, End);
Ted Kremenek8d9842d2010-01-29 20:55:36 +00007127}
7128
Ted Kremenek02087932010-07-16 02:11:22 +00007129SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) {
Stephen Hines648c3692016-09-16 01:07:04 +00007130 return FExpr->getLocationOfByte(x - Beg, S.getSourceManager(),
7131 S.getLangOpts(), S.Context.getTargetInfo());
Ted Kremenekab278de2010-01-28 23:39:18 +00007132}
7133
Ted Kremenek02087932010-07-16 02:11:22 +00007134void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier,
7135 unsigned specifierLen){
Richard Trieu03cf7b72011-10-28 00:41:25 +00007136 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_incomplete_specifier),
7137 getLocationOfByte(startSpecifier),
7138 /*IsStringLocation*/true,
7139 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenekc22f78d2010-01-29 03:16:21 +00007140}
7141
Jordan Rose92303592012-09-08 04:00:03 +00007142void CheckFormatHandler::HandleInvalidLengthModifier(
7143 const analyze_format_string::FormatSpecifier &FS,
7144 const analyze_format_string::ConversionSpecifier &CS,
Jordan Rose2f9cc042012-09-08 04:00:12 +00007145 const char *startSpecifier, unsigned specifierLen, unsigned DiagID) {
Jordan Rose92303592012-09-08 04:00:03 +00007146 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.
David Blaikie05785d12013-02-20 22:23:23 +00007152 Optional<LengthModifier> FixedLM = FS.getCorrectedLengthModifier();
Jordan Rose92303592012-09-08 04:00:03 +00007153 if (FixedLM) {
Jordan Rose2f9cc042012-09-08 04:00:12 +00007154 EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(),
Jordan Rose92303592012-09-08 04:00:03 +00007155 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 {
Jordan Rose2f9cc042012-09-08 04:00:12 +00007164 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(),
Jordan Rose92303592012-09-08 04:00:03 +00007169 getLocationOfByte(LM.getStart()),
7170 /*IsStringLocation*/true,
7171 getSpecifierRange(startSpecifier, specifierLen),
Jordan Rose2f9cc042012-09-08 04:00:12 +00007172 Hint);
Jordan Rose92303592012-09-08 04:00:03 +00007173 }
7174}
7175
Hans Wennborgc9dd9462012-02-22 10:17:01 +00007176void CheckFormatHandler::HandleNonStandardLengthModifier(
Jordan Rose2f9cc042012-09-08 04:00:12 +00007177 const analyze_format_string::FormatSpecifier &FS,
Hans Wennborgc9dd9462012-02-22 10:17:01 +00007178 const char *startSpecifier, unsigned specifierLen) {
Jordan Rose2f9cc042012-09-08 04:00:12 +00007179 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.
David Blaikie05785d12013-02-20 22:23:23 +00007185 Optional<LengthModifier> FixedLM = FS.getCorrectedLengthModifier();
Jordan Rose2f9cc042012-09-08 04:00:12 +00007186 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 }
Hans Wennborgc9dd9462012-02-22 10:17:01 +00007204}
7205
7206void CheckFormatHandler::HandleNonStandardConversionSpecifier(
7207 const analyze_format_string::ConversionSpecifier &CS,
7208 const char *startSpecifier, unsigned specifierLen) {
Jordan Rose4c266aa2012-09-13 02:11:15 +00007209 using namespace analyze_format_string;
7210
7211 // See if we know how to fix this conversion specifier.
David Blaikie05785d12013-02-20 22:23:23 +00007212 Optional<ConversionSpecifier> FixedCS = CS.getStandardSpecifier();
Jordan Rose4c266aa2012-09-13 02:11:15 +00007213 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 }
Hans Wennborgc9dd9462012-02-22 10:17:01 +00007231}
7232
Hans Wennborgaa8c61c2012-03-09 10:10:54 +00007233void 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
Ted Kremenekd1668192010-02-27 01:41:03 +00007241void
Ted Kremenek02087932010-07-16 02:11:22 +00007242CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen,
7243 analyze_format_string::PositionContext p) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00007244 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_positional_specifier)
7245 << (unsigned) p,
7246 getLocationOfByte(startPos), /*IsStringLocation*/true,
7247 getSpecifierRange(startPos, posLen));
Ted Kremenekd1668192010-02-27 01:41:03 +00007248}
7249
Ted Kremenek02087932010-07-16 02:11:22 +00007250void CheckFormatHandler::HandleZeroPosition(const char *startPos,
Ted Kremenekd1668192010-02-27 01:41:03 +00007251 unsigned posLen) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00007252 EmitFormatDiagnostic(S.PDiag(diag::warn_format_zero_positional_specifier),
7253 getLocationOfByte(startPos),
7254 /*IsStringLocation*/true,
7255 getSpecifierRange(startPos, posLen));
Ted Kremenekd1668192010-02-27 01:41:03 +00007256}
7257
Ted Kremenek02087932010-07-16 02:11:22 +00007258void CheckFormatHandler::HandleNullChar(const char *nullCharacter) {
Jordan Rose97c6f2b2012-06-04 23:52:23 +00007259 if (!isa<ObjCStringLiteral>(OrigFormatExpr)) {
Ted Kremenek0d5b9ef2011-03-15 21:18:48 +00007260 // The presence of a null character is likely an error.
Richard Trieu03cf7b72011-10-28 00:41:25 +00007261 EmitFormatDiagnostic(
7262 S.PDiag(diag::warn_printf_format_string_contains_null_char),
7263 getLocationOfByte(nullCharacter), /*IsStringLocation*/true,
7264 getFormatStringRange());
Ted Kremenek0d5b9ef2011-03-15 21:18:48 +00007265 }
Ted Kremenek02087932010-07-16 02:11:22 +00007266}
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007267
Jordan Rose58bbe422012-07-19 18:10:08 +00007268// Note that this may return NULL if there was an error parsing or building
7269// one of the argument expressions.
Ted Kremenek02087932010-07-16 02:11:22 +00007270const Expr *CheckFormatHandler::getDataArg(unsigned i) const {
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00007271 return Args[FirstDataArg + i];
Ted Kremenek02087932010-07-16 02:11:22 +00007272}
7273
7274void CheckFormatHandler::DoneProcessing() {
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00007275 // Does the number of data arguments exceed the number of
7276 // format conversions in the format string?
Ted Kremenek02087932010-07-16 02:11:22 +00007277 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);
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00007283 UncoveredArg.Update(notCoveredArg, OrigFormatExpr);
7284 } else {
7285 UncoveredArg.setAllCovered();
Ted Kremenek02087932010-07-16 02:11:22 +00007286 }
7287 }
7288}
7289
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00007290void 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
Stephen Kellyf2ceec42018-08-09 21:08:08 +00007298 SourceLocation Loc = ArgExpr->getBeginLoc();
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00007299
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
Ted Kremenekce815422010-07-19 21:25:57 +00007313bool
7314CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex,
7315 SourceLocation Loc,
7316 const char *startSpec,
7317 unsigned specifierLen,
7318 const char *csStart,
7319 unsigned csLen) {
Ted Kremenekce815422010-07-19 21:25:57 +00007320 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 }
Bruno Cardoso Lopes0c18d032016-03-29 17:35:02 +00007334
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)) {
Justin Lebar90910552016-09-30 00:38:45 +00007342 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);
Bruno Cardoso Lopes0c18d032016-03-29 17:35:02 +00007348
Justin Lebar90910552016-09-30 00:38:45 +00007349 if (Result != llvm::conversionOK) {
Bruno Cardoso Lopes0c18d032016-03-29 17:35:02 +00007350 unsigned char FirstChar = *csStart;
Justin Lebar90910552016-09-30 00:38:45 +00007351 CodePoint = (llvm::UTF32)FirstChar;
Bruno Cardoso Lopes0c18d032016-03-29 17:35:02 +00007352 }
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
Ted Kremenekce815422010-07-19 21:25:57 +00007369 return keepGoing;
7370}
7371
Richard Trieu03cf7b72011-10-28 00:41:25 +00007372void
7373CheckFormatHandler::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
Ted Kremenek6adb7e32010-07-26 19:45:42 +00007381bool
7382CheckFormatHandler::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) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00007388 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));
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00007395
7396 // Since more arguments than conversion tokens are given, by extension
7397 // all arguments are covered, so mark this as so.
7398 UncoveredArg.setAllCovered();
Ted Kremenek6adb7e32010-07-26 19:45:42 +00007399 return false;
7400 }
7401 return true;
7402}
7403
Richard Trieu03cf7b72011-10-28 00:41:25 +00007404template<typename Range>
7405void CheckFormatHandler::EmitFormatDiagnostic(PartialDiagnostic PDiag,
7406 SourceLocation Loc,
7407 bool IsStringLocation,
7408 Range StringRange,
Jordan Roseaee34382012-09-05 22:56:26 +00007409 ArrayRef<FixItHint> FixIt) {
Jean-Daniel Dupas0ae6e672012-01-17 20:03:31 +00007410 EmitFormatDiagnostic(S, inFunctionCall, Args[FormatIdx], PDiag,
Richard Trieu03cf7b72011-10-28 00:41:25 +00007411 Loc, IsStringLocation, StringRange, FixIt);
7412}
7413
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00007414/// If the format string is not within the function call, emit a note
Richard Trieu03cf7b72011-10-28 00:41:25 +00007415/// so that the function call and string are in diagnostic messages.
7416///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00007417/// \param InFunctionCall if true, the format string is within the function
Richard Trieu03cf7b72011-10-28 00:41:25 +00007418/// 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///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00007440/// \param FixIt optional fix it hint for the format string.
Benjamin Kramer7320b992016-06-15 14:20:56 +00007441template <typename Range>
7442void CheckFormatHandler::EmitFormatDiagnostic(
7443 Sema &S, bool InFunctionCall, const Expr *ArgumentExpr,
7444 const PartialDiagnostic &PDiag, SourceLocation Loc, bool IsStringLocation,
7445 Range StringRange, ArrayRef<FixItHint> FixIt) {
Jordan Roseaee34382012-09-05 22:56:26 +00007446 if (InFunctionCall) {
7447 const Sema::SemaDiagnosticBuilder &D = S.Diag(Loc, PDiag);
7448 D << StringRange;
Alexander Kornienkoa9b01eb2015-02-25 14:40:56 +00007449 D << FixIt;
Jordan Roseaee34382012-09-05 22:56:26 +00007450 } else {
Richard Trieu03cf7b72011-10-28 00:41:25 +00007451 S.Diag(IsStringLocation ? ArgumentExpr->getExprLoc() : Loc, PDiag)
7452 << ArgumentExpr->getSourceRange();
Jordan Roseaee34382012-09-05 22:56:26 +00007453
7454 const Sema::SemaDiagnosticBuilder &Note =
7455 S.Diag(IsStringLocation ? Loc : StringRange.getBegin(),
7456 diag::note_format_string_defined);
7457
7458 Note << StringRange;
Alexander Kornienkoa9b01eb2015-02-25 14:40:56 +00007459 Note << FixIt;
Richard Trieu03cf7b72011-10-28 00:41:25 +00007460 }
7461}
7462
Ted Kremenek02087932010-07-16 02:11:22 +00007463//===--- CHECK: Printf format string checking ------------------------------===//
7464
7465namespace {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00007466
Ted Kremenek02087932010-07-16 02:11:22 +00007467class CheckPrintfHandler : public CheckFormatHandler {
7468public:
Stephen Hines648c3692016-09-16 01:07:04 +00007469 CheckPrintfHandler(Sema &s, const FormatStringLiteral *fexpr,
Mehdi Amini06d367c2016-10-24 20:39:34 +00007470 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,
Jordan Rose3e0ec582012-07-19 18:10:23 +00007474 unsigned formatIdx, bool inFunctionCall,
Richard Smithd7293d72013-08-05 18:49:43 +00007475 Sema::VariadicCallType CallType,
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00007476 llvm::SmallBitVector &CheckedVarArgs,
7477 UncoveredArgHandler &UncoveredArg)
Mehdi Amini06d367c2016-10-24 20:39:34 +00007478 : 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 }
Jordan Rose3e0ec582012-07-19 18:10:23 +00007490
Ted Kremenek02087932010-07-16 02:11:22 +00007491 bool HandleInvalidPrintfConversionSpecifier(
7492 const analyze_printf::PrintfSpecifier &FS,
7493 const char *startSpecifier,
Craig Toppere14c0f82014-03-12 04:55:44 +00007494 unsigned specifierLen) override;
7495
Akira Hatanakad572cf42018-11-06 07:05:14 +00007496 void handleInvalidMaskType(StringRef MaskType) override;
7497
Ted Kremenek02087932010-07-16 02:11:22 +00007498 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS,
7499 const char *startSpecifier,
Craig Toppere14c0f82014-03-12 04:55:44 +00007500 unsigned specifierLen) override;
Richard Smith55ce3522012-06-25 20:30:08 +00007501 bool checkFormatExpr(const analyze_printf::PrintfSpecifier &FS,
7502 const char *StartSpecifier,
7503 unsigned SpecifierLen,
7504 const Expr *E);
7505
Ted Kremenek02087932010-07-16 02:11:22 +00007506 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);
Hans Wennborgc3b3da02012-08-07 08:11:26 +00007519 bool checkForCStrMembers(const analyze_printf::ArgType &AT,
Richard Smith2868a732014-02-28 01:36:39 +00007520 const Expr *E);
Fangrui Song6907ce22018-07-30 19:24:48 +00007521
Ted Kremenek2b417712015-07-02 05:39:16 +00007522 void HandleEmptyObjCModifierFlag(const char *startFlag,
7523 unsigned flagLen) override;
Richard Smith55ce3522012-06-25 20:30:08 +00007524
Ted Kremenek2b417712015-07-02 05:39:16 +00007525 void HandleInvalidObjCModifierFlag(const char *startFlag,
7526 unsigned flagLen) override;
7527
7528 void HandleObjCFlagsWithNonObjCConversion(const char *flagsStart,
7529 const char *flagsEnd,
Fangrui Song6907ce22018-07-30 19:24:48 +00007530 const char *conversionPosition)
Ted Kremenek2b417712015-07-02 05:39:16 +00007531 override;
7532};
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00007533
7534} // namespace
Ted Kremenek02087932010-07-16 02:11:22 +00007535
7536bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier(
7537 const analyze_printf::PrintfSpecifier &FS,
7538 const char *startSpecifier,
7539 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00007540 const analyze_printf::PrintfConversionSpecifier &CS =
Ted Kremenekce815422010-07-19 21:25:57 +00007541 FS.getConversionSpecifier();
Fangrui Song6907ce22018-07-30 19:24:48 +00007542
Ted Kremenekce815422010-07-19 21:25:57 +00007543 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
7544 getLocationOfByte(CS.getStart()),
7545 startSpecifier, specifierLen,
7546 CS.getStart(), CS.getLength());
Ted Kremenek94af5752010-01-29 02:40:24 +00007547}
7548
Akira Hatanakad572cf42018-11-06 07:05:14 +00007549void CheckPrintfHandler::handleInvalidMaskType(StringRef MaskType) {
7550 S.Diag(getLocationOfByte(MaskType.data()), diag::err_invalid_mask_type_size);
7551}
7552
Ted Kremenek02087932010-07-16 02:11:22 +00007553bool CheckPrintfHandler::HandleAmount(
7554 const analyze_format_string::OptionalAmount &Amt,
7555 unsigned k, const char *startSpecifier,
7556 unsigned specifierLen) {
Ted Kremenek5739de72010-01-29 01:06:55 +00007557 if (Amt.hasDataArgument()) {
Ted Kremenek5739de72010-01-29 01:06:55 +00007558 if (!HasVAListArg) {
Ted Kremenek4a49d982010-02-26 19:18:41 +00007559 unsigned argIndex = Amt.getArgIndex();
7560 if (argIndex >= NumDataArgs) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00007561 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_missing_arg)
7562 << k,
7563 getLocationOfByte(Amt.getStart()),
7564 /*IsStringLocation*/true,
7565 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek5739de72010-01-29 01:06:55 +00007566 // Don't do any more checking. We will just emit
7567 // spurious errors.
7568 return false;
7569 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007570
Ted Kremenek5739de72010-01-29 01:06:55 +00007571 // Type check the data argument. It should be an 'int'.
Ted Kremenek605b0112010-01-29 23:32:22 +00007572 // 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.
Ted Kremenek4a49d982010-02-26 19:18:41 +00007575 CoveredArgs.set(argIndex);
7576 const Expr *Arg = getDataArg(argIndex);
Jordan Rose58bbe422012-07-19 18:10:08 +00007577 if (!Arg)
7578 return false;
7579
Ted Kremenek5739de72010-01-29 01:06:55 +00007580 QualType T = Arg->getType();
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007581
Hans Wennborgc3b3da02012-08-07 08:11:26 +00007582 const analyze_printf::ArgType &AT = Amt.getArgType(S.Context);
7583 assert(AT.isValid());
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007584
Hans Wennborgc3b3da02012-08-07 08:11:26 +00007585 if (!AT.matchesType(S.Context, T)) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00007586 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_wrong_type)
Hans Wennborgc3b3da02012-08-07 08:11:26 +00007587 << k << AT.getRepresentativeTypeName(S.Context)
Richard Trieu03cf7b72011-10-28 00:41:25 +00007588 << T << Arg->getSourceRange(),
7589 getLocationOfByte(Amt.getStart()),
7590 /*IsStringLocation*/true,
7591 getSpecifierRange(startSpecifier, specifierLen));
Ted Kremenek5739de72010-01-29 01:06:55 +00007592 // Don't do any more checking. We will just emit
7593 // spurious errors.
7594 return false;
7595 }
7596 }
7597 }
7598 return true;
7599}
Ted Kremenek5739de72010-01-29 01:06:55 +00007600
Tom Careb49ec692010-06-17 19:00:27 +00007601void CheckPrintfHandler::HandleInvalidAmount(
Ted Kremenek02087932010-07-16 02:11:22 +00007602 const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00007603 const analyze_printf::OptionalAmount &Amt,
7604 unsigned type,
7605 const char *startSpecifier,
7606 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00007607 const analyze_printf::PrintfConversionSpecifier &CS =
7608 FS.getConversionSpecifier();
Tom Careb49ec692010-06-17 19:00:27 +00007609
Richard Trieu03cf7b72011-10-28 00:41:25 +00007610 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);
Tom Careb49ec692010-06-17 19:00:27 +00007622}
7623
Ted Kremenek02087932010-07-16 02:11:22 +00007624void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00007625 const analyze_printf::OptionalFlag &flag,
7626 const char *startSpecifier,
7627 unsigned specifierLen) {
7628 // Warn about pointless flag with a fixit removal.
Ted Kremenekf03e6d852010-07-20 20:04:27 +00007629 const analyze_printf::PrintfConversionSpecifier &CS =
7630 FS.getConversionSpecifier();
Richard Trieu03cf7b72011-10-28 00:41:25 +00007631 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)));
Tom Careb49ec692010-06-17 19:00:27 +00007638}
7639
7640void CheckPrintfHandler::HandleIgnoredFlag(
Ted Kremenek02087932010-07-16 02:11:22 +00007641 const analyze_printf::PrintfSpecifier &FS,
Tom Careb49ec692010-06-17 19:00:27 +00007642 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.
Richard Trieu03cf7b72011-10-28 00:41:25 +00007647 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)));
Tom Careb49ec692010-06-17 19:00:27 +00007654}
7655
Ted Kremenek2b417712015-07-02 05:39:16 +00007656void 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
7665void 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
7676void 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
Richard Smith55ce3522012-06-25 20:30:08 +00007687// 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()").
7690template<typename MemberKind>
7691static llvm::SmallPtrSet<MemberKind*, 1>
7692CXXRecordMembersNamed(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());
Richard Smith2868a732014-02-28 01:36:39 +00007699 if (!RD || !RD->getDefinition())
Richard Smith55ce3522012-06-25 20:30:08 +00007700 return Results;
7701
Alp Tokerb6cc5922014-05-03 03:45:55 +00007702 LookupResult R(S, &S.Context.Idents.get(Name), SourceLocation(),
Richard Smith55ce3522012-06-25 20:30:08 +00007703 Sema::LookupMemberName);
Richard Smith2868a732014-02-28 01:36:39 +00007704 R.suppressDiagnostics();
Richard Smith55ce3522012-06-25 20:30:08 +00007705
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
Richard Smith2868a732014-02-28 01:36:39 +00007717/// 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).
7721bool Sema::hasCStrMethod(const Expr *E) {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00007722 using MethodSet = llvm::SmallPtrSet<CXXMethodDecl *, 1>;
7723
Richard Smith2868a732014-02-28 01:36:39 +00007724 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
Richard Smith55ce3522012-06-25 20:30:08 +00007733// Check if a (w)string was passed when a (w)char* was needed, and offer a
Hans Wennborgc3b3da02012-08-07 08:11:26 +00007734// better diagnostic if so. AT is assumed to be valid.
Richard Smith55ce3522012-06-25 20:30:08 +00007735// Returns true when a c_str() conversion method is found.
7736bool CheckPrintfHandler::checkForCStrMembers(
Richard Smith2868a732014-02-28 01:36:39 +00007737 const analyze_printf::ArgType &AT, const Expr *E) {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00007738 using MethodSet = llvm::SmallPtrSet<CXXMethodDecl *, 1>;
Richard Smith55ce3522012-06-25 20:30:08 +00007739
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;
Richard Smith2868a732014-02-28 01:36:39 +00007746 if (Method->getMinRequiredArguments() == 0 &&
Alp Toker314cc812014-01-25 16:55:45 +00007747 AT.matchesType(S.Context, Method->getReturnType())) {
Richard Smith55ce3522012-06-25 20:30:08 +00007748 // FIXME: Suggest parens if the expression needs them.
Stephen Kelly1c301dc2018-08-09 21:09:38 +00007749 SourceLocation EndLoc = S.getLocForEndOfToken(E->getEndLoc());
Stephen Kellyf2ceec42018-08-09 21:08:08 +00007750 S.Diag(E->getBeginLoc(), diag::note_printf_c_str)
7751 << "c_str()" << FixItHint::CreateInsertion(EndLoc, ".c_str()");
Richard Smith55ce3522012-06-25 20:30:08 +00007752 return true;
7753 }
7754 }
7755
7756 return false;
7757}
7758
Ted Kremenekab278de2010-01-28 23:39:18 +00007759bool
Ted Kremenek02087932010-07-16 02:11:22 +00007760CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier
Ted Kremenekd31b2632010-02-11 09:27:41 +00007761 &FS,
Ted Kremenekab278de2010-01-28 23:39:18 +00007762 const char *startSpecifier,
7763 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00007764 using namespace analyze_format_string;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00007765 using namespace analyze_printf;
7766
Ted Kremenekf03e6d852010-07-20 20:04:27 +00007767 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenekab278de2010-01-28 23:39:18 +00007768
Ted Kremenek6cd69422010-07-19 22:01:06 +00007769 if (FS.consumesDataArgument()) {
7770 if (atFirstArg) {
7771 atFirstArg = false;
7772 usesPositionalArgs = FS.usesPositionalArg();
7773 }
7774 else if (usesPositionalArgs != FS.usesPositionalArg()) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00007775 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
7776 startSpecifier, specifierLen);
Ted Kremenek6cd69422010-07-19 22:01:06 +00007777 return false;
7778 }
Ted Kremenek5739de72010-01-29 01:06:55 +00007779 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007780
Ted Kremenekd1668192010-02-27 01:41:03 +00007781 // 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)) {
Ted Kremenek5739de72010-01-29 01:06:55 +00007790 return false;
7791 }
7792
Ted Kremenek8d9842d2010-01-29 20:55:36 +00007793 if (!CS.consumesDataArgument()) {
7794 // FIXME: Technically specifying a precision or field width here
7795 // makes no sense. Worth issuing a warning at some point.
Ted Kremenekfb45d352010-02-10 02:16:30 +00007796 return true;
Ted Kremenek8d9842d2010-01-29 20:55:36 +00007797 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007798
Ted Kremenek4a49d982010-02-26 19:18:41 +00007799 // Consume the argument.
7800 unsigned argIndex = FS.getArgIndex();
Ted Kremenek09597b42010-02-27 08:34:51 +00007801 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 }
Ted Kremenek4a49d982010-02-26 19:18:41 +00007807
Dimitry Andric6b5ed342015-02-19 22:32:33 +00007808 // 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(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00007825 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));
Dimitry Andric6b5ed342015-02-19 22:32:33 +00007830
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(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00007836 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));
Dimitry Andric6b5ed342015-02-19 22:32:33 +00007841
7842 return true;
7843 }
7844
Ted Kremenek4a49d982010-02-26 19:18:41 +00007845 // Check for using an Objective-C specific conversion specifier
7846 // in a non-ObjC literal.
Mehdi Amini06d367c2016-10-24 20:39:34 +00007847 if (!allowsObjCArg() && CS.isObjCArg()) {
Ted Kremenek02087932010-07-16 02:11:22 +00007848 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier,
7849 specifierLen);
Ted Kremenek4a49d982010-02-26 19:18:41 +00007850 }
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007851
Mehdi Amini06d367c2016-10-24 20:39:34 +00007852 // %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
Tom Careb49ec692010-06-17 19:00:27 +00007895 // Check for invalid use of field width
7896 if (!FS.hasValidFieldWidth()) {
Tom Care3f272b82010-06-21 21:21:01 +00007897 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0,
Tom Careb49ec692010-06-17 19:00:27 +00007898 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
Mehdi Amini06d367c2016-10-24 20:39:34 +00007907 // 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
Tom Careb49ec692010-06-17 19:00:27 +00007916 // Check each flag does not conflict with any other component.
Ted Kremenekbf4832c2011-01-08 05:28:46 +00007917 if (!FS.hasValidThousandsGroupingPrefix())
7918 HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00007919 if (!FS.hasValidLeadingZeros())
7920 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen);
7921 if (!FS.hasValidPlusPrefix())
7922 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen);
Tom Care3f272b82010-06-21 21:21:01 +00007923 if (!FS.hasValidSpacePrefix())
7924 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00007925 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
Tom Care3f272b82010-06-21 21:21:01 +00007931 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+'
7932 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(),
7933 startSpecifier, specifierLen);
Tom Careb49ec692010-06-17 19:00:27 +00007934 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.
Matt Arsenault58fc8082019-01-29 20:49:54 +00007939 if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(),
7940 S.getLangOpts()))
Jordan Rose2f9cc042012-09-08 04:00:12 +00007941 HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
7942 diag::warn_format_nonsensical_length);
Jordan Rose92303592012-09-08 04:00:03 +00007943 else if (!FS.hasStandardLengthModifier())
Jordan Rose2f9cc042012-09-08 04:00:12 +00007944 HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen);
Jordan Rose92303592012-09-08 04:00:03 +00007945 else if (!FS.hasStandardLengthConversionCombination())
Jordan Rose2f9cc042012-09-08 04:00:12 +00007946 HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
7947 diag::warn_format_non_standard_conversion_spec);
Tom Careb49ec692010-06-17 19:00:27 +00007948
Jordan Rose92303592012-09-08 04:00:03 +00007949 if (!FS.hasStandardConversionSpecifier(S.getLangOpts()))
7950 HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen);
7951
Ted Kremenek9fcd8302010-01-29 01:43:31 +00007952 // The remaining checks depend on the data arguments.
7953 if (HasVAListArg)
7954 return true;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007955
Ted Kremenek6adb7e32010-07-26 19:45:42 +00007956 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek9fcd8302010-01-29 01:43:31 +00007957 return false;
Ted Kremenekc8b188d2010-02-16 01:46:59 +00007958
Jordan Rose58bbe422012-07-19 18:10:08 +00007959 const Expr *Arg = getDataArg(argIndex);
7960 if (!Arg)
7961 return true;
7962
7963 return checkFormatExpr(FS, startSpecifier, specifierLen, Arg);
Richard Smith55ce3522012-06-25 20:30:08 +00007964}
7965
Jordan Roseaee34382012-09-05 22:56:26 +00007966static 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:
Jordan Roseea0fdfe2012-12-05 18:44:44 +00007977 case Stmt::CharacterLiteralClass:
7978 case Stmt::CXXBoolLiteralExprClass:
Jordan Roseaee34382012-09-05 22:56:26 +00007979 case Stmt::DeclRefExprClass:
Jordan Roseea0fdfe2012-12-05 18:44:44 +00007980 case Stmt::FloatingLiteralClass:
7981 case Stmt::IntegerLiteralClass:
Jordan Roseaee34382012-09-05 22:56:26 +00007982 case Stmt::MemberExprClass:
Jordan Roseea0fdfe2012-12-05 18:44:44 +00007983 case Stmt::ObjCArrayLiteralClass:
7984 case Stmt::ObjCBoolLiteralExprClass:
7985 case Stmt::ObjCBoxedExprClass:
7986 case Stmt::ObjCDictionaryLiteralClass:
7987 case Stmt::ObjCEncodeExprClass:
Jordan Roseaee34382012-09-05 22:56:26 +00007988 case Stmt::ObjCIvarRefExprClass:
7989 case Stmt::ObjCMessageExprClass:
7990 case Stmt::ObjCPropertyRefExprClass:
Jordan Roseea0fdfe2012-12-05 18:44:44 +00007991 case Stmt::ObjCStringLiteralClass:
7992 case Stmt::ObjCSubscriptRefExprClass:
Jordan Roseaee34382012-09-05 22:56:26 +00007993 case Stmt::ParenExprClass:
Jordan Roseea0fdfe2012-12-05 18:44:44 +00007994 case Stmt::StringLiteralClass:
Jordan Roseaee34382012-09-05 22:56:26 +00007995 case Stmt::UnaryOperatorClass:
7996 return false;
7997 default:
7998 return true;
7999 }
8000}
8001
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00008002static std::pair<QualType, StringRef>
8003shouldNotPrintDirectly(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)
Saleem Abdulrasoola01ed932017-10-17 17:39:32 +00008011 .Case("CFIndex", Context.getNSIntegerType())
8012 .Case("NSInteger", Context.getNSIntegerType())
8013 .Case("NSUInteger", Context.getNSUIntegerType())
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00008014 .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
Aaron Ballman94d2d092018-12-18 15:54:38 +00008058/// 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.
8061static bool
8062isArithmeticArgumentPromotion(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
Richard Smith55ce3522012-06-25 20:30:08 +00008082bool
8083CheckPrintfHandler::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;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00008089
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00008090 // Now type check the data expression that matches the
8091 // format specifier.
Mehdi Amini06d367c2016-10-24 20:39:34 +00008092 const analyze_printf::ArgType &AT = FS.getArgType(S.Context, isObjCContext());
Jordan Rose22b74712012-09-05 22:56:19 +00008093 if (!AT.isValid())
8094 return true;
Jordan Roseaee34382012-09-05 22:56:26 +00008095
Jordan Rose598ec092012-12-05 18:44:40 +00008096 QualType ExprTy = E->getType();
Ted Kremenek3365e522013-04-10 06:26:26 +00008097 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) {
8098 ExprTy = TET->getUnderlyingExpr()->getType();
8099 }
8100
JF Bastienec7d7f32018-06-22 21:54:40 +00008101 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)
Jordan Rose22b74712012-09-05 22:56:19 +00008105 return true;
Jordan Rose98709982012-06-04 22:48:57 +00008106
Jordan Rose22b74712012-09-05 22:56:19 +00008107 // Look through argument promotions for our error message's reported type.
8108 // This includes the integral and floating promotions, but excludes array
Aaron Ballman94d2d092018-12-18 15:54:38 +00008109 // 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).
Jordan Rose22b74712012-09-05 22:56:19 +00008112 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
Aaron Ballman94d2d092018-12-18 15:54:38 +00008113 if (isArithmeticArgumentPromotion(S, ICE)) {
Jordan Rose22b74712012-09-05 22:56:19 +00008114 E = ICE->getSubExpr();
Jordan Rose598ec092012-12-05 18:44:40 +00008115 ExprTy = E->getType();
Jordan Rose22b74712012-09-05 22:56:19 +00008116
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) {
Nathan Huckleberrycc01d642019-08-23 18:01:57 +00008122 // 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)
Jordan Rose22b74712012-09-05 22:56:19 +00008126 return true;
Nathan Huckleberrycc01d642019-08-23 18:01:57 +00008127 if (ImplicitMatch == analyze_printf::ArgType::NoMatchPedantic)
8128 Pedantic = true;
Ted Kremenek12a37de2010-10-21 04:00:58 +00008129 }
Jordan Rose98709982012-06-04 22:48:57 +00008130 }
Jordan Rose598ec092012-12-05 18:44:40 +00008131 } 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;
Jordan Rose22b74712012-09-05 22:56:19 +00008138 }
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00008139
Jordan Rosebc53ed12014-05-31 04:12:14 +00008140 // 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
Jordan Rose0e5badd2012-12-05 18:44:49 +00008147 // %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.
Jordan Rose598ec092012-12-05 18:44:40 +00008150 QualType IntendedTy = ExprTy;
Mehdi Amini06d367c2016-10-24 20:39:34 +00008151 if (isObjCContext() &&
Jordan Rose0e5badd2012-12-05 18:44:49 +00008152 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;
Ted Kremenekda2f4052013-10-15 05:25:17 +00008158
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
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008167 LookupResult Result(S, &S.Context.Idents.get("unichar"), E->getBeginLoc(),
Jordan Rose0e5badd2012-12-05 18:44:49 +00008168 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.
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00008180 bool ShouldNotPrintDirectly = false; StringRef CastTyName;
Jordan Roseaee34382012-09-05 22:56:26 +00008181 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) {
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00008182 QualType CastTy;
8183 std::tie(CastTy, CastTyName) = shouldNotPrintDirectly(S.Context, IntendedTy, E);
8184 if (!CastTy.isNull()) {
Alex Lorenzb2043ac2018-07-05 22:51:11 +00008185 // %zi/%zu and %td/%tu are OK to use for NSInteger/NSUInteger of type int
JF Bastienec7d7f32018-06-22 21:54:40 +00008186 // (long in ASTContext). Only complain to pedants.
8187 if ((CastTyName == "NSInteger" || CastTyName == "NSUInteger") &&
Alex Lorenzb2043ac2018-07-05 22:51:11 +00008188 (AT.isSizeT() || AT.isPtrdiffT()) &&
8189 AT.matchesType(S.Context, CastTy))
JF Bastienec7d7f32018-06-22 21:54:40 +00008190 Pedantic = true;
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00008191 IntendedTy = CastTy;
8192 ShouldNotPrintDirectly = true;
Jordan Roseaee34382012-09-05 22:56:26 +00008193 }
8194 }
8195
Jordan Rose22b74712012-09-05 22:56:19 +00008196 // We may be able to offer a FixItHint if it is a supported type.
8197 PrintfSpecifier fixedFS = FS;
JF Bastienec7d7f32018-06-22 21:54:40 +00008198 bool Success =
Mehdi Amini06d367c2016-10-24 20:39:34 +00008199 fixedFS.fixType(IntendedTy, S.getLangOpts(), S.Context, isObjCContext());
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00008200
JF Bastienec7d7f32018-06-22 21:54:40 +00008201 if (Success) {
Jordan Rose22b74712012-09-05 22:56:19 +00008202 // Get the fix string from the fixed format specifier
8203 SmallString<16> buf;
8204 llvm::raw_svector_ostream os(buf);
8205 fixedFS.toString(os);
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00008206
Jordan Roseaee34382012-09-05 22:56:26 +00008207 CharSourceRange SpecRange = getSpecifierRange(StartSpecifier, SpecifierLen);
8208
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00008209 if (IntendedTy == ExprTy && !ShouldNotPrintDirectly) {
JF Bastienec7d7f32018-06-22 21:54:40 +00008210 unsigned Diag =
8211 Pedantic
8212 ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8213 : diag::warn_format_conversion_argument_type_mismatch;
Jordan Rose0e5badd2012-12-05 18:44:49 +00008214 // In this case, the specifier is wrong and should be changed to match
8215 // the argument.
JF Bastienec7d7f32018-06-22 21:54:40 +00008216 EmitFormatDiagnostic(S.PDiag(Diag)
Daniel Jasperad8d8492015-03-04 14:18:20 +00008217 << AT.getRepresentativeTypeName(S.Context)
8218 << IntendedTy << IsEnum << E->getSourceRange(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008219 E->getBeginLoc(),
Daniel Jasperad8d8492015-03-04 14:18:20 +00008220 /*IsStringLocation*/ false, SpecRange,
8221 FixItHint::CreateReplacement(SpecRange, os.str()));
Jordan Rose0e5badd2012-12-05 18:44:49 +00008222 } else {
Jordan Roseaee34382012-09-05 22:56:26 +00008223 // 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;
Fangrui Song6907ce22018-07-30 19:24:48 +00008237 if (!AT.matchesType(S.Context, IntendedTy) || ShouldNotPrintDirectly)
Jordan Roseaee34382012-09-05 22:56:26 +00008238 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.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008248 Hints.push_back(
8249 FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str()));
Jordan Roseaee34382012-09-05 22:56:26 +00008250 } else {
8251 // Otherwise, add parens around the expression as well as the cast.
8252 CastFix << "(";
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008253 Hints.push_back(
8254 FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str()));
Jordan Roseaee34382012-09-05 22:56:26 +00008255
Stephen Kelly1c301dc2018-08-09 21:09:38 +00008256 SourceLocation After = S.getLocForEndOfToken(E->getEndLoc());
Jordan Roseaee34382012-09-05 22:56:26 +00008257 Hints.push_back(FixItHint::CreateInsertion(After, ")"));
8258 }
8259
Jordan Rose0e5badd2012-12-05 18:44:49 +00008260 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.
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00008264 StringRef Name;
8265 if (const TypedefType *TypedefTy = dyn_cast<TypedefType>(ExprTy))
8266 Name = TypedefTy->getDecl()->getName();
8267 else
8268 Name = CastTyName;
JF Bastienec7d7f32018-06-22 21:54:40 +00008269 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(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008274 E->getBeginLoc(), /*IsStringLocation=*/false,
Jordan Rose0e5badd2012-12-05 18:44:49 +00008275 SpecRange, Hints);
8276 } else {
8277 // In this case, the expression could be printed using a different
Fangrui Song6907ce22018-07-30 19:24:48 +00008278 // specifier, but we've decided that the specifier is probably correct
Jordan Rose0e5badd2012-12-05 18:44:49 +00008279 // and we should cast instead. Just use the normal warning message.
8280 EmitFormatDiagnostic(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008281 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);
Jordan Rose0e5badd2012-12-05 18:44:49 +00008285 }
Jordan Roseaee34382012-09-05 22:56:26 +00008286 }
Jordan Rose22b74712012-09-05 22:56:19 +00008287 } 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.
Richard Smithd7293d72013-08-05 18:49:43 +00008293 switch (S.isValidVarArgType(ExprTy)) {
8294 case Sema::VAK_Valid:
Seth Cantrellb4802962015-03-04 03:12:10 +00008295 case Sema::VAK_ValidInCXX11: {
JF Bastienec7d7f32018-06-22 21:54:40 +00008296 unsigned Diag =
8297 Pedantic
8298 ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8299 : diag::warn_format_conversion_argument_type_mismatch;
Richard Smithd7293d72013-08-05 18:49:43 +00008300
Seth Cantrellb4802962015-03-04 03:12:10 +00008301 EmitFormatDiagnostic(
JF Bastienec7d7f32018-06-22 21:54:40 +00008302 S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context) << ExprTy
Seth Cantrellb4802962015-03-04 03:12:10 +00008303 << IsEnum << CSR << E->getSourceRange(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008304 E->getBeginLoc(), /*IsStringLocation*/ false, CSR);
Seth Cantrellb4802962015-03-04 03:12:10 +00008305 break;
8306 }
Richard Smithd7293d72013-08-05 18:49:43 +00008307 case Sema::VAK_Undefined:
Hans Wennborgd9dd4d22014-09-29 23:06:57 +00008308 case Sema::VAK_MSVCUndefined:
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008309 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);
Richard Smith2868a732014-02-28 01:36:39 +00008315 checkForCStrMembers(AT, E);
Richard Smithd7293d72013-08-05 18:49:43 +00008316 break;
8317
8318 case Sema::VAK_Invalid:
8319 if (ExprTy->isObjCObjectType())
8320 EmitFormatDiagnostic(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008321 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);
Richard Smithd7293d72013-08-05 18:49:43 +00008326 else
8327 // FIXME: If this is an initializer list, suggest removing the braces
8328 // or inserting a cast to the target type.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008329 S.Diag(E->getBeginLoc(), diag::err_cannot_pass_to_vararg_format)
8330 << isa<InitListExpr>(E) << ExprTy << CallType
8331 << AT.getRepresentativeTypeName(S.Context) << E->getSourceRange();
Richard Smithd7293d72013-08-05 18:49:43 +00008332 break;
8333 }
8334
8335 assert(FirstDataArg + FS.getArgIndex() < CheckedVarArgs.size() &&
8336 "format string specifier index out of range");
8337 CheckedVarArgs[FirstDataArg + FS.getArgIndex()] = true;
Michael J. Spencer2c35bc12010-07-27 04:46:02 +00008338 }
8339
Ted Kremenekab278de2010-01-28 23:39:18 +00008340 return true;
8341}
8342
Ted Kremenek02087932010-07-16 02:11:22 +00008343//===--- CHECK: Scanf format string checking ------------------------------===//
8344
Fangrui Song6907ce22018-07-30 19:24:48 +00008345namespace {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00008346
Ted Kremenek02087932010-07-16 02:11:22 +00008347class CheckScanfHandler : public CheckFormatHandler {
8348public:
Stephen Hines648c3692016-09-16 01:07:04 +00008349 CheckScanfHandler(Sema &s, const FormatStringLiteral *fexpr,
Mehdi Amini06d367c2016-10-24 20:39:34 +00008350 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,
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00008355 llvm::SmallBitVector &CheckedVarArgs,
8356 UncoveredArgHandler &UncoveredArg)
Mehdi Amini06d367c2016-10-24 20:39:34 +00008357 : CheckFormatHandler(s, fexpr, origFormatExpr, type, firstDataArg,
8358 numDataArgs, beg, hasVAListArg, Args, formatIdx,
8359 inFunctionCall, CallType, CheckedVarArgs,
8360 UncoveredArg) {}
8361
Ted Kremenek02087932010-07-16 02:11:22 +00008362 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS,
8363 const char *startSpecifier,
Craig Toppere14c0f82014-03-12 04:55:44 +00008364 unsigned specifierLen) override;
Fangrui Song6907ce22018-07-30 19:24:48 +00008365
Ted Kremenekce815422010-07-19 21:25:57 +00008366 bool HandleInvalidScanfConversionSpecifier(
8367 const analyze_scanf::ScanfSpecifier &FS,
8368 const char *startSpecifier,
Craig Toppere14c0f82014-03-12 04:55:44 +00008369 unsigned specifierLen) override;
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00008370
Craig Toppere14c0f82014-03-12 04:55:44 +00008371 void HandleIncompleteScanList(const char *start, const char *end) override;
Ted Kremenek02087932010-07-16 02:11:22 +00008372};
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00008373
8374} // namespace
Ted Kremenekab278de2010-01-28 23:39:18 +00008375
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00008376void CheckScanfHandler::HandleIncompleteScanList(const char *start,
8377 const char *end) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00008378 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete),
8379 getLocationOfByte(end), /*IsStringLocation*/true,
8380 getSpecifierRange(start, end - start));
Ted Kremenekd7b31cc2010-07-16 18:28:03 +00008381}
8382
Ted Kremenekce815422010-07-19 21:25:57 +00008383bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier(
8384 const analyze_scanf::ScanfSpecifier &FS,
8385 const char *startSpecifier,
8386 unsigned specifierLen) {
Ted Kremenekf03e6d852010-07-20 20:04:27 +00008387 const analyze_scanf::ScanfConversionSpecifier &CS =
Ted Kremenekce815422010-07-19 21:25:57 +00008388 FS.getConversionSpecifier();
8389
8390 return HandleInvalidConversionSpecifier(FS.getArgIndex(),
8391 getLocationOfByte(CS.getStart()),
8392 startSpecifier, specifierLen,
8393 CS.getStart(), CS.getLength());
8394}
8395
Ted Kremenek02087932010-07-16 02:11:22 +00008396bool CheckScanfHandler::HandleScanfSpecifier(
8397 const analyze_scanf::ScanfSpecifier &FS,
8398 const char *startSpecifier,
8399 unsigned specifierLen) {
Ted Kremenek02087932010-07-16 02:11:22 +00008400 using namespace analyze_scanf;
Fangrui Song6907ce22018-07-30 19:24:48 +00008401 using namespace analyze_format_string;
Ted Kremenek02087932010-07-16 02:11:22 +00008402
Ted Kremenekf03e6d852010-07-20 20:04:27 +00008403 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier();
Ted Kremenek02087932010-07-16 02:11:22 +00008404
Ted Kremenek6cd69422010-07-19 22:01:06 +00008405 // 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()) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00008413 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()),
8414 startSpecifier, specifierLen);
Ted Kremenek6cd69422010-07-19 22:01:06 +00008415 return false;
8416 }
Ted Kremenek02087932010-07-16 02:11:22 +00008417 }
Fangrui Song6907ce22018-07-30 19:24:48 +00008418
Ted Kremenek02087932010-07-16 02:11:22 +00008419 // 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());
Richard Trieu03cf7b72011-10-28 00:41:25 +00008425 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width),
8426 getLocationOfByte(Amt.getStart()),
8427 /*IsStringLocation*/true, R,
8428 FixItHint::CreateRemoval(R));
Ted Kremenek02087932010-07-16 02:11:22 +00008429 }
8430 }
Seth Cantrellb4802962015-03-04 03:12:10 +00008431
Ted Kremenek02087932010-07-16 02:11:22 +00008432 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 }
Seth Cantrellb4802962015-03-04 03:12:10 +00008437
Ted Kremenek02087932010-07-16 02:11:22 +00008438 // 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 }
Seth Cantrellb4802962015-03-04 03:12:10 +00008446
Ted Kremenek4407ea42010-07-20 20:04:47 +00008447 // Check the length modifier is valid with the given conversion specifier.
Matt Arsenault58fc8082019-01-29 20:49:54 +00008448 if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(),
8449 S.getLangOpts()))
Jordan Rose2f9cc042012-09-08 04:00:12 +00008450 HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
8451 diag::warn_format_nonsensical_length);
Jordan Rose92303592012-09-08 04:00:03 +00008452 else if (!FS.hasStandardLengthModifier())
Jordan Rose2f9cc042012-09-08 04:00:12 +00008453 HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen);
Jordan Rose92303592012-09-08 04:00:03 +00008454 else if (!FS.hasStandardLengthConversionCombination())
Jordan Rose2f9cc042012-09-08 04:00:12 +00008455 HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen,
8456 diag::warn_format_non_standard_conversion_spec);
Hans Wennborgc9dd9462012-02-22 10:17:01 +00008457
Jordan Rose92303592012-09-08 04:00:03 +00008458 if (!FS.hasStandardConversionSpecifier(S.getLangOpts()))
8459 HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen);
8460
Ted Kremenek02087932010-07-16 02:11:22 +00008461 // The remaining checks depend on the data arguments.
8462 if (HasVAListArg)
8463 return true;
Seth Cantrellb4802962015-03-04 03:12:10 +00008464
Ted Kremenek6adb7e32010-07-26 19:45:42 +00008465 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex))
Ted Kremenek02087932010-07-16 02:11:22 +00008466 return false;
Seth Cantrellb4802962015-03-04 03:12:10 +00008467
Hans Wennborgb1a5e092011-12-10 13:20:11 +00008468 // Check that the argument type matches the format specifier.
8469 const Expr *Ex = getDataArg(argIndex);
Jordan Rose58bbe422012-07-19 18:10:08 +00008470 if (!Ex)
8471 return true;
8472
Hans Wennborgb1ab2a82012-08-07 08:59:46 +00008473 const analyze_format_string::ArgType &AT = FS.getArgType(S.Context);
Seth Cantrell79340072015-03-04 05:58:08 +00008474
8475 if (!AT.isValid()) {
8476 return true;
8477 }
8478
JF Bastienec7d7f32018-06-22 21:54:40 +00008479 analyze_format_string::ArgType::MatchKind Match =
Seth Cantrellb4802962015-03-04 03:12:10 +00008480 AT.matchesType(S.Context, Ex->getType());
JF Bastienec7d7f32018-06-22 21:54:40 +00008481 bool Pedantic = Match == analyze_format_string::ArgType::NoMatchPedantic;
8482 if (Match == analyze_format_string::ArgType::Match)
Seth Cantrell79340072015-03-04 05:58:08 +00008483 return true;
Seth Cantrellb4802962015-03-04 03:12:10 +00008484
Seth Cantrell79340072015-03-04 05:58:08 +00008485 ScanfSpecifier fixedFS = FS;
JF Bastienec7d7f32018-06-22 21:54:40 +00008486 bool Success = fixedFS.fixType(Ex->getType(), Ex->IgnoreImpCasts()->getType(),
Seth Cantrell79340072015-03-04 05:58:08 +00008487 S.getLangOpts(), S.Context);
Hans Wennborgb1a5e092011-12-10 13:20:11 +00008488
JF Bastienec7d7f32018-06-22 21:54:40 +00008489 unsigned Diag =
8490 Pedantic ? diag::warn_format_conversion_argument_type_mismatch_pedantic
8491 : diag::warn_format_conversion_argument_type_mismatch;
Hans Wennborgb1a5e092011-12-10 13:20:11 +00008492
JF Bastienec7d7f32018-06-22 21:54:40 +00008493 if (Success) {
Seth Cantrell79340072015-03-04 05:58:08 +00008494 // 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(
JF Bastienec7d7f32018-06-22 21:54:40 +00008500 S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context)
Seth Cantrell79340072015-03-04 05:58:08 +00008501 << Ex->getType() << false << Ex->getSourceRange(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008502 Ex->getBeginLoc(),
Seth Cantrell79340072015-03-04 05:58:08 +00008503 /*IsStringLocation*/ false,
8504 getSpecifierRange(startSpecifier, specifierLen),
8505 FixItHint::CreateReplacement(
8506 getSpecifierRange(startSpecifier, specifierLen), os.str()));
8507 } else {
JF Bastienec7d7f32018-06-22 21:54:40 +00008508 EmitFormatDiagnostic(S.PDiag(Diag)
Seth Cantrell79340072015-03-04 05:58:08 +00008509 << AT.getRepresentativeTypeName(S.Context)
8510 << Ex->getType() << false << Ex->getSourceRange(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008511 Ex->getBeginLoc(),
Seth Cantrell79340072015-03-04 05:58:08 +00008512 /*IsStringLocation*/ false,
8513 getSpecifierRange(startSpecifier, specifierLen));
Hans Wennborgb1a5e092011-12-10 13:20:11 +00008514 }
8515
Ted Kremenek02087932010-07-16 02:11:22 +00008516 return true;
8517}
8518
Stephen Hines648c3692016-09-16 01:07:04 +00008519static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr,
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008520 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,
Andy Gibbs9a31b3b2016-02-26 15:35:16 +00008527 llvm::SmallBitVector &CheckedVarArgs,
Erik Pilkingtonaa385562019-08-14 16:57:11 +00008528 UncoveredArgHandler &UncoveredArg,
8529 bool IgnoreStringsWithoutSpecifiers) {
Ted Kremenekab278de2010-01-28 23:39:18 +00008530 // CHECK: is the format string a wide literal?
Richard Smith4060f772012-06-13 05:37:23 +00008531 if (!FExpr->isAscii() && !FExpr->isUTF8()) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00008532 CheckFormatHandler::EmitFormatDiagnostic(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008533 S, inFunctionCall, Args[format_idx],
8534 S.PDiag(diag::warn_format_string_is_wide_literal), FExpr->getBeginLoc(),
8535 /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange());
Ted Kremenekab278de2010-01-28 23:39:18 +00008536 return;
8537 }
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008538
Ted Kremenekab278de2010-01-28 23:39:18 +00008539 // Str - The format string. NOTE: this is NOT null-terminated!
Chris Lattner0e62c1c2011-07-23 10:55:15 +00008540 StringRef StrRef = FExpr->getString();
Benjamin Kramer35b077e2010-08-17 12:54:38 +00008541 const char *Str = StrRef.data();
Benjamin Kramer6c6a4f42014-02-20 17:05:38 +00008542 // Account for cases where the string literal is truncated in a declaration.
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008543 const ConstantArrayType *T =
8544 S.Context.getAsConstantArrayType(FExpr->getType());
Benjamin Kramer6c6a4f42014-02-20 17:05:38 +00008545 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());
Dmitri Gribenko765396f2013-01-13 20:46:02 +00008548 const unsigned numDataArgs = Args.size() - firstDataArg;
Benjamin Kramer6c6a4f42014-02-20 17:05:38 +00008549
Erik Pilkingtonaa385562019-08-14 16:57:11 +00008550 if (IgnoreStringsWithoutSpecifiers &&
8551 !analyze_format_string::parseFormatStringHasFormattingSpecifiers(
8552 Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo()))
8553 return;
8554
Benjamin Kramer6c6a4f42014-02-20 17:05:38 +00008555 // 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(
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008560 S, inFunctionCall, Args[format_idx],
8561 S.PDiag(diag::warn_printf_format_string_not_null_terminated),
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008562 FExpr->getBeginLoc(),
Benjamin Kramer6c6a4f42014-02-20 17:05:38 +00008563 /*IsStringLocation=*/true, OrigFormatExpr->getSourceRange());
8564 return;
8565 }
8566
Ted Kremenekab278de2010-01-28 23:39:18 +00008567 // CHECK: empty format string?
Ted Kremenek6e302b22011-09-29 05:52:16 +00008568 if (StrLen == 0 && numDataArgs > 0) {
Richard Trieu03cf7b72011-10-28 00:41:25 +00008569 CheckFormatHandler::EmitFormatDiagnostic(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00008570 S, inFunctionCall, Args[format_idx],
8571 S.PDiag(diag::warn_empty_format_string), FExpr->getBeginLoc(),
8572 /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange());
Ted Kremenekab278de2010-01-28 23:39:18 +00008573 return;
8574 }
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008575
8576 if (Type == Sema::FST_Printf || Type == Sema::FST_NSString ||
Mehdi Amini06d367c2016-10-24 20:39:34 +00008577 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);
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008584
Hans Wennborg23926bd2011-12-15 10:25:47 +00008585 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008586 S.getLangOpts(),
8587 S.Context.getTargetInfo(),
8588 Type == Sema::FST_FreeBSDKPrintf))
Ted Kremenek02087932010-07-16 02:11:22 +00008589 H.DoneProcessing();
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008590 } else if (Type == Sema::FST_Scanf) {
Mehdi Amini06d367c2016-10-24 20:39:34 +00008591 CheckScanfHandler H(S, FExpr, OrigFormatExpr, Type, firstDataArg,
8592 numDataArgs, Str, HasVAListArg, Args, format_idx,
8593 inFunctionCall, CallType, CheckedVarArgs, UncoveredArg);
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008594
Hans Wennborg23926bd2011-12-15 10:25:47 +00008595 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
Andy Gibbs4b3e3c82016-02-22 13:00:43 +00008596 S.getLangOpts(),
8597 S.Context.getTargetInfo()))
Ted Kremenek02087932010-07-16 02:11:22 +00008598 H.DoneProcessing();
Jean-Daniel Dupas028573e72012-01-30 08:46:47 +00008599 } // TODO: handle other formats
Ted Kremenekc70ee862010-01-28 01:18:22 +00008600}
8601
Fariborz Jahanian6485fe42014-09-09 23:10:54 +00008602bool 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
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008616//===--- 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.
8620static 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.
8670static 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.
8692static 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
8711enum AbsoluteValueKind {
8712 AVK_Integer,
8713 AVK_Floating,
8714 AVK_Complex
8715};
8716
8717static 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.
8730static 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
Benjamin Kramer3d6220d2014-03-01 17:21:22 +00008794static unsigned getAbsoluteValueFunctionKind(const FunctionDecl *FDecl) {
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008795 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.
8827static void emitReplacement(Sema &S, SourceLocation Loc, SourceRange Range,
Richard Trieubeffb832014-04-15 23:47:53 +00008828 unsigned AbsKind, QualType ArgType) {
8829 bool EmitHeaderHint = true;
Craig Topperc3ec1492014-05-26 06:22:03 +00008830 const char *HeaderName = nullptr;
Mehdi Amini7186a432016-10-11 19:04:24 +00008831 const char *FunctionName = nullptr;
Richard Trieubeffb832014-04-15 23:47:53 +00008832 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");
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008840 }
Richard Trieubeffb832014-04-15 23:47:53 +00008841
8842 // Lookup all std::abs
8843 if (NamespaceDecl *Std = S.getStdNamespace()) {
Alp Tokerb6cc5922014-05-03 03:45:55 +00008844 LookupResult R(S, &S.Context.Idents.get("abs"), Loc, Sema::LookupAnyName);
Richard Trieubeffb832014-04-15 23:47:53 +00008845 R.suppressDiagnostics();
8846 S.LookupQualifiedName(R, Std);
8847
8848 for (const auto *I : R) {
Craig Topperc3ec1492014-05-26 06:22:03 +00008849 const FunctionDecl *FDecl = nullptr;
Richard Trieubeffb832014-04-15 23:47:53 +00008850 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 }
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008871 }
Richard Trieubeffb832014-04-15 23:47:53 +00008872 }
8873 } else {
Eric Christopher02d5d862015-08-06 01:01:12 +00008874 FunctionName = S.Context.BuiltinInfo.getName(AbsKind);
Richard Trieubeffb832014-04-15 23:47:53 +00008875 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 }
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008893 }
8894 }
8895
8896 S.Diag(Loc, diag::note_replace_abs_function)
Richard Trieubeffb832014-04-15 23:47:53 +00008897 << FunctionName << FixItHint::CreateReplacement(Range, FunctionName);
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008898
Richard Trieubeffb832014-04-15 23:47:53 +00008899 if (!HeaderName)
8900 return;
8901
8902 if (!EmitHeaderHint)
8903 return;
8904
Alp Toker5d96e0a2014-07-11 20:53:51 +00008905 S.Diag(Loc, diag::note_include_header_or_declare) << HeaderName
8906 << FunctionName;
Richard Trieubeffb832014-04-15 23:47:53 +00008907}
8908
Richard Trieua7f30b12016-12-06 01:42:28 +00008909template <std::size_t StrLen>
8910static bool IsStdFunction(const FunctionDecl *FDecl,
8911 const char (&Str)[StrLen]) {
Richard Trieubeffb832014-04-15 23:47:53 +00008912 if (!FDecl)
8913 return false;
Richard Trieua7f30b12016-12-06 01:42:28 +00008914 if (!FDecl->getIdentifier() || !FDecl->getIdentifier()->isStr(Str))
Richard Trieubeffb832014-04-15 23:47:53 +00008915 return false;
Richard Trieua7f30b12016-12-06 01:42:28 +00008916 if (!FDecl->isInStdNamespace())
Richard Trieubeffb832014-04-15 23:47:53 +00008917 return false;
8918
8919 return true;
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008920}
8921
8922// Warn when using the wrong abs() function.
8923void Sema::CheckAbsoluteValueFunction(const CallExpr *Call,
Richard Trieua7f30b12016-12-06 01:42:28 +00008924 const FunctionDecl *FDecl) {
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008925 if (Call->getNumArgs() != 1)
8926 return;
8927
8928 unsigned AbsKind = getAbsoluteValueFunctionKind(FDecl);
Richard Trieua7f30b12016-12-06 01:42:28 +00008929 bool IsStdAbs = IsStdFunction(FDecl, "abs");
Richard Trieubeffb832014-04-15 23:47:53 +00008930 if (AbsKind == 0 && !IsStdAbs)
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008931 return;
8932
8933 QualType ArgType = Call->getArg(0)->IgnoreParenImpCasts()->getType();
8934 QualType ParamType = Call->getArg(0)->getType();
8935
Alp Toker5d96e0a2014-07-11 20:53:51 +00008936 // Unsigned types cannot be negative. Suggest removing the absolute value
8937 // function call.
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008938 if (ArgType->isUnsignedIntegerType()) {
Mehdi Amini7186a432016-10-11 19:04:24 +00008939 const char *FunctionName =
Eric Christopher02d5d862015-08-06 01:01:12 +00008940 IsStdAbs ? "std::abs" : Context.BuiltinInfo.getName(AbsKind);
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008941 Diag(Call->getExprLoc(), diag::warn_unsigned_abs) << ArgType << ParamType;
8942 Diag(Call->getExprLoc(), diag::note_remove_abs)
Richard Trieubeffb832014-04-15 23:47:53 +00008943 << FunctionName
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008944 << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange());
8945 return;
8946 }
8947
David Majnemer7f77eb92015-11-15 03:04:34 +00008948 // 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
Richard Trieubeffb832014-04-15 23:47:53 +00008961 // std::abs has overloads which prevent most of the absolute value problems
8962 // from occurring.
8963 if (IsStdAbs)
8964 return;
8965
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008966 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(),
Richard Trieubeffb832014-04-15 23:47:53 +00008983 Call->getCallee()->getSourceRange(), NewAbsKind, ArgType);
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00008984 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(),
Richard Trieubeffb832014-04-15 23:47:53 +00008999 Call->getCallee()->getSourceRange(), NewAbsKind, ArgType);
Richard Trieu7eb0b2c2014-02-26 01:17:28 +00009000}
9001
Richard Trieu67c00712016-12-05 23:41:46 +00009002//===--- CHECK: Warn on use of std::max and unsigned zero. r---------------===//
Richard Trieua7f30b12016-12-06 01:42:28 +00009003void Sema::CheckMaxUnsignedZero(const CallExpr *Call,
9004 const FunctionDecl *FDecl) {
Richard Trieu67c00712016-12-05 23:41:46 +00009005 if (!Call || !FDecl) return;
9006
9007 // Ignore template specializations and macros.
Richard Smith51ec0cf2017-02-21 01:17:38 +00009008 if (inTemplateInstantiation()) return;
Richard Trieu67c00712016-12-05 23:41:46 +00009009 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;
Richard Trieua7f30b12016-12-06 01:42:28 +00009013 if (!IsStdFunction(FDecl, "max")) return;
Richard Trieu67c00712016-12-05 23:41:46 +00009014 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
Chandler Carruth53caa4d2011-04-27 07:05:31 +00009065//===--- CHECK: Standard memory functions ---------------------------------===//
9066
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00009067/// Takes the expression passed to the size_t parameter of functions
Nico Weber0e6daef2013-12-26 23:38:39 +00009068/// 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))`.
9071static 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
Richard Smithc70f1d62017-12-14 15:16:18 +00009079 // if E is binop and op is <=>, >, <, >=, <=, ==, &&, ||:
9080 if (!Size->isComparisonOp() && !Size->isLogicalOp())
Nico Weber0e6daef2013-12-26 23:38:39 +00009081 return false;
9082
Nico Weber0e6daef2013-12-26 23:38:39 +00009083 SourceRange SizeRange = Size->getSourceRange();
9084 S.Diag(Size->getOperatorLoc(), diag::warn_memsize_comparison)
9085 << SizeRange << FnName;
Alp Tokerb0869032014-05-17 01:13:18 +00009086 S.Diag(FnLoc, diag::note_memsize_comparison_paren)
Stephen Kelly1c301dc2018-08-09 21:09:38 +00009087 << FnName
9088 << FixItHint::CreateInsertion(
9089 S.getLocForEndOfToken(Size->getLHS()->getEndLoc()), ")")
Nico Weber0e6daef2013-12-26 23:38:39 +00009090 << FixItHint::CreateRemoval(RParenLoc);
Alp Tokerb0869032014-05-17 01:13:18 +00009091 S.Diag(SizeRange.getBegin(), diag::note_memsize_comparison_cast_silence)
Nico Weber0e6daef2013-12-26 23:38:39 +00009092 << FixItHint::CreateInsertion(SizeRange.getBegin(), "(size_t)(")
Alp Tokerb6cc5922014-05-03 03:45:55 +00009093 << FixItHint::CreateInsertion(S.getLocForEndOfToken(SizeRange.getEnd()),
9094 ")");
Nico Weber0e6daef2013-12-26 23:38:39 +00009095
9096 return true;
9097}
9098
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00009099/// Determine whether the given type is or contains a dynamic class type
Reid Kleckner5fb5b122014-06-27 23:58:21 +00009100/// (e.g., whether it has a vtable).
9101static 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;
Richard Trieu1c7237a2016-03-31 04:18:07 +00009109 if (!RD || RD->isInvalidDecl())
Reid Kleckner5fb5b122014-06-27 23:58:21 +00009110 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;
Douglas Gregora74926b2011-05-03 20:05:22 +00009128}
9129
Erik Pilkingtond1cf2762018-07-19 16:46:15 +00009130static 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00009137/// If E is a sizeof expression, returns its argument expression,
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009138/// otherwise returns NULL.
Nico Weberc44b35e2015-03-21 17:37:46 +00009139static const Expr *getSizeOfExprArg(const Expr *E) {
Erik Pilkingtond1cf2762018-07-19 16:46:15 +00009140 if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E))
9141 if (!SizeOf->isArgumentType())
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009142 return SizeOf->getArgumentExpr()->IgnoreParenImpCasts();
Craig Topperc3ec1492014-05-26 06:22:03 +00009143 return nullptr;
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009144}
9145
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00009146/// If E is a sizeof expression, returns its argument type.
Nico Weberc44b35e2015-03-21 17:37:46 +00009147static QualType getSizeOfArgType(const Expr *E) {
Erik Pilkingtond1cf2762018-07-19 16:46:15 +00009148 if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E))
9149 return SizeOf->getTypeOfArgument();
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009150 return QualType();
Nico Weberc5e73862011-06-14 16:14:58 +00009151}
9152
Akira Hatanaka2be04412018-04-17 19:13:41 +00009153namespace {
9154
9155struct 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
9198struct 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
Erik Pilkingtond1cf2762018-07-19 16:46:15 +00009245/// Detect if \c SizeofExpr is likely to calculate the sizeof an object.
9246static 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).
9270static 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.
9282static 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
Erik Pilkingtonc79b8812018-07-23 16:24:14 +00009289 auto isLiteralZero = [](const Expr *E) {
9290 return isa<IntegerLiteral>(E) && cast<IntegerLiteral>(E)->getValue() == 0;
9291 };
9292
Erik Pilkingtond1cf2762018-07-19 16:46:15 +00009293 // If we're memsetting or bzeroing 0 bytes, then this is likely an error.
9294 SourceLocation CallLoc = Call->getRParenLoc();
9295 SourceManager &SM = S.getSourceManager();
Erik Pilkingtonc79b8812018-07-23 16:24:14 +00009296 if (isLiteralZero(SizeArg) &&
Erik Pilkingtond1cf2762018-07-19 16:46:15 +00009297 !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);
Erik Pilkingtonc79b8812018-07-23 16:24:14 +00009308 } else if (!isLiteralZero(Call->getArg(1)->IgnoreImpCasts())) {
Erik Pilkingtond1cf2762018-07-19 16:46:15 +00009309 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00009328/// Check for dangerous or invalid arguments to memset().
Chandler Carruth53caa4d2011-04-27 07:05:31 +00009329///
Chandler Carruthac687262011-06-03 06:23:57 +00009330/// This issues warnings on known problematic, dangerous or unspecified
Matt Beaumont-Gay3c489902011-08-05 00:22:34 +00009331/// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp'
9332/// function calls.
Chandler Carruth53caa4d2011-04-27 07:05:31 +00009333///
9334/// \param Call The call expression to diagnose.
Matt Beaumont-Gay3c489902011-08-05 00:22:34 +00009335void Sema::CheckMemaccessArguments(const CallExpr *Call,
Anna Zaks22122702012-01-17 00:37:07 +00009336 unsigned BId,
Matt Beaumont-Gay3c489902011-08-05 00:22:34 +00009337 IdentifierInfo *FnName) {
Anna Zaks22122702012-01-17 00:37:07 +00009338 assert(BId != 0);
9339
Ted Kremenekb5fabb22011-04-28 01:38:02 +00009340 // It is possible to have a non-standard definition of memset. Validate
Douglas Gregor18739c32011-06-16 17:56:04 +00009341 // we have enough arguments, and if not, abort further checking.
Bruno Cardoso Lopes7ea9fd22016-08-10 18:34:47 +00009342 unsigned ExpectedNumArgs =
9343 (BId == Builtin::BIstrndup || BId == Builtin::BIbzero ? 2 : 3);
Nico Weber39bfed82011-10-13 22:30:23 +00009344 if (Call->getNumArgs() < ExpectedNumArgs)
Ted Kremenekb5fabb22011-04-28 01:38:02 +00009345 return;
9346
Bruno Cardoso Lopes7ea9fd22016-08-10 18:34:47 +00009347 unsigned LastArg = (BId == Builtin::BImemset || BId == Builtin::BIbzero ||
Anna Zaks22122702012-01-17 00:37:07 +00009348 BId == Builtin::BIstrndup ? 1 : 2);
Bruno Cardoso Lopes7ea9fd22016-08-10 18:34:47 +00009349 unsigned LenArg =
9350 (BId == Builtin::BIbzero || BId == Builtin::BIstrndup ? 1 : 2);
Nico Weber39bfed82011-10-13 22:30:23 +00009351 const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts();
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009352
Nico Weber0e6daef2013-12-26 23:38:39 +00009353 if (CheckMemorySizeofForComparison(*this, LenExpr, FnName,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00009354 Call->getBeginLoc(), Call->getRParenLoc()))
Nico Weber0e6daef2013-12-26 23:38:39 +00009355 return;
9356
Erik Pilkingtond1cf2762018-07-19 16:46:15 +00009357 // Catch cases like 'memset(buf, sizeof(buf), 0)'.
9358 CheckMemaccessSize(*this, BId, Call);
9359
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009360 // 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
Bruno Cardoso Lopesc73e4c32016-08-11 18:33:15 +00009365 // 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
Douglas Gregor3bb2a812011-05-03 20:37:33 +00009372 for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) {
9373 const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts();
Nico Weberc5e73862011-06-14 16:14:58 +00009374 SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange();
Chandler Carruth53caa4d2011-04-27 07:05:31 +00009375
Douglas Gregor3bb2a812011-05-03 20:37:33 +00009376 QualType DestTy = Dest->getType();
Nico Weberc44b35e2015-03-21 17:37:46 +00009377 QualType PointeeTy;
Douglas Gregor3bb2a812011-05-03 20:37:33 +00009378 if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) {
Nico Weberc44b35e2015-03-21 17:37:46 +00009379 PointeeTy = DestPtrTy->getPointeeType();
John McCall31168b02011-06-15 23:02:42 +00009380
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009381 // Never warn about void type pointers. This can be used to suppress
9382 // false positives.
9383 if (PointeeTy->isVoidType())
Douglas Gregor3bb2a812011-05-03 20:37:33 +00009384 continue;
Chandler Carruth53caa4d2011-04-27 07:05:31 +00009385
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009386 // 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 &&
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00009391 !Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess,
9392 SizeOfArg->getExprLoc())) {
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009393 // 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) {
Nico Weber39bfed82011-10-13 22:30:23 +00009400 // TODO: For strncpy() and friends, this could suggest sizeof(dst)
9401 // over sizeof(src) as well.
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009402 unsigned ActionIdx = 0; // Default is to suggest dereferencing.
Anna Zaks869aecc2012-05-30 00:34:21 +00009403 StringRef ReadableName = FnName->getName();
9404
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009405 if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest))
Anna Zaksd08d9152012-05-30 23:14:52 +00009406 if (UnaryOp->getOpcode() == UO_AddrOf)
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009407 ActionIdx = 1; // If its an address-of operator, just remove it.
Fariborz Jahanian4d365ba2013-01-30 01:12:44 +00009408 if (!PointeeTy->isIncompleteType() &&
9409 (Context.getTypeSize(PointeeTy) == Context.getCharWidth()))
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009410 ActionIdx = 2; // If the pointee's size is sizeof(char),
9411 // suggest an explicit length.
Anna Zaks869aecc2012-05-30 00:34:21 +00009412
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();
Alp Tokerb6cc5922014-05-03 03:45:55 +00009418 SourceManager &SM = getSourceManager();
Anna Zaks869aecc2012-05-30 00:34:21 +00009419
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
Anna Zaksd08d9152012-05-30 23:14:52 +00009429 DiagRuntimeBehavior(SL, SizeOfArg,
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009430 PDiag(diag::warn_sizeof_pointer_expr_memaccess)
Anna Zaks869aecc2012-05-30 00:34:21 +00009431 << ReadableName
Anna Zaksd08d9152012-05-30 23:14:52 +00009432 << PointeeTy
9433 << DestTy
Anna Zaks869aecc2012-05-30 00:34:21 +00009434 << DSR
Anna Zaksd08d9152012-05-30 23:14:52 +00009435 << SSR);
9436 DiagRuntimeBehavior(SL, SizeOfArg,
9437 PDiag(diag::warn_sizeof_pointer_expr_memaccess_note)
9438 << ActionIdx
9439 << SSR);
9440
Chandler Carruth8b9e5a72011-06-16 09:09:40 +00009441 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 }
Nico Weberc5e73862011-06-14 16:14:58 +00009458 }
Nico Weberbac8b6b2015-03-21 17:56:44 +00009459 } else if (DestTy->isArrayType()) {
9460 PointeeTy = DestTy;
Nico Weberc44b35e2015-03-21 17:37:46 +00009461 }
Nico Weberc5e73862011-06-14 16:14:58 +00009462
Nico Weberc44b35e2015-03-21 17:37:46 +00009463 if (PointeeTy == QualType())
9464 continue;
Anna Zaks22122702012-01-17 00:37:07 +00009465
Nico Weberc44b35e2015-03-21 17:37:46 +00009466 // Always complain about dynamic classes.
9467 bool IsContained;
9468 if (const CXXRecordDecl *ContainedRD =
9469 getContainedDynamicClass(PointeeTy, IsContained)) {
John McCall31168b02011-06-15 23:02:42 +00009470
Nico Weberc44b35e2015-03-21 17:37:46 +00009471 unsigned OperationType = 0;
Clement Courbet8c3343d2019-02-14 12:00:34 +00009472 const bool IsCmp = BId == Builtin::BImemcmp || BId == Builtin::BIbcmp;
Nico Weberc44b35e2015-03-21 17:37:46 +00009473 // "overwritten" if we're warning about the destination for any call
9474 // but memcmp; otherwise a verb appropriate to the call.
Clement Courbet8c3343d2019-02-14 12:00:34 +00009475 if (ArgIdx != 0 || IsCmp) {
Nico Weberc44b35e2015-03-21 17:37:46 +00009476 if (BId == Builtin::BImemcpy)
9477 OperationType = 1;
9478 else if(BId == Builtin::BImemmove)
9479 OperationType = 2;
Clement Courbet8c3343d2019-02-14 12:00:34 +00009480 else if (IsCmp)
Nico Weberc44b35e2015-03-21 17:37:46 +00009481 OperationType = 3;
9482 }
Fangrui Song6907ce22018-07-30 19:24:48 +00009483
Clement Courbet8c3343d2019-02-14 12:00:34 +00009484 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());
Nico Weberc44b35e2015-03-21 17:37:46 +00009489 } 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());
Akira Hatanaka2be04412018-04-17 19:13:41 +00009496 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
Nico Weberc44b35e2015-03-21 17:37:46 +00009513 continue;
9514
9515 DiagRuntimeBehavior(
9516 Dest->getExprLoc(), Dest,
9517 PDiag(diag::note_bad_memaccess_silence)
9518 << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)"));
9519 break;
Chandler Carruth53caa4d2011-04-27 07:05:31 +00009520 }
9521}
9522
Ted Kremenek6865f772011-08-18 20:55:45 +00009523// 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().
9526static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) {
9527 Ex = Ex->IgnoreParenCasts();
9528
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00009529 while (true) {
Ted Kremenek6865f772011-08-18 20:55:45 +00009530 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();
Fangrui Song6907ce22018-07-30 19:24:48 +00009536
Ted Kremenek6865f772011-08-18 20:55:45 +00009537 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
Anna Zaks13b08572012-08-08 21:42:23 +00009548static 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
Ted Kremenek6865f772011-08-18 20:55:45 +00009561// Warn if the user has made the 'size' argument to strlcpy or strlcat
9562// be the size of the source, instead of the destination.
9563void Sema::CheckStrlcpycatArguments(const CallExpr *Call,
9564 IdentifierInfo *FnName) {
9565
9566 // Don't crash if the user has the wrong number of arguments
Fariborz Jahanianab4fe982014-09-12 18:44:36 +00009567 unsigned NumArgs = Call->getNumArgs();
9568 if ((NumArgs != 3) && (NumArgs != 4))
Ted Kremenek6865f772011-08-18 20:55:45 +00009569 return;
9570
9571 const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context);
9572 const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context);
Craig Topperc3ec1492014-05-26 06:22:03 +00009573 const Expr *CompareWithSrc = nullptr;
Nico Weber0e6daef2013-12-26 23:38:39 +00009574
9575 if (CheckMemorySizeofForComparison(*this, SizeArg, FnName,
Stephen Kellyf2ceec42018-08-09 21:08:08 +00009576 Call->getBeginLoc(), Call->getRParenLoc()))
Nico Weber0e6daef2013-12-26 23:38:39 +00009577 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00009578
Ted Kremenek6865f772011-08-18 20:55:45 +00009579 // 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)) {
Alp Tokera724cff2013-12-28 21:59:02 +00009585 if (SizeCall->getBuiltinCallee() == Builtin::BIstrlen &&
9586 SizeCall->getNumArgs() == 1)
Ted Kremenek6865f772011-08-18 20:55:45 +00009587 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;
Fangrui Song6907ce22018-07-30 19:24:48 +00009601
Ted Kremenek6865f772011-08-18 20:55:45 +00009602 const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc);
Fangrui Song6907ce22018-07-30 19:24:48 +00009603 if (!CompareWithSrcDRE ||
Ted Kremenek6865f772011-08-18 20:55:45 +00009604 SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl())
9605 return;
Fangrui Song6907ce22018-07-30 19:24:48 +00009606
Ted Kremenek6865f772011-08-18 20:55:45 +00009607 const Expr *OriginalSizeArg = Call->getArg(2);
Stephen Kellyf2ceec42018-08-09 21:08:08 +00009608 Diag(CompareWithSrcDRE->getBeginLoc(), diag::warn_strlcpycat_wrong_size)
9609 << OriginalSizeArg->getSourceRange() << FnName;
Fangrui Song6907ce22018-07-30 19:24:48 +00009610
Ted Kremenek6865f772011-08-18 20:55:45 +00009611 // 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();
Anna Zaks13b08572012-08-08 21:42:23 +00009616 if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context))
Ted Kremenek18db5d42011-08-18 22:48:41 +00009617 return;
Ted Kremenek18db5d42011-08-18 22:48:41 +00009618
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00009619 SmallString<128> sizeString;
Ted Kremenek18db5d42011-08-18 22:48:41 +00009620 llvm::raw_svector_ostream OS(sizeString);
9621 OS << "sizeof(";
Craig Topperc3ec1492014-05-26 06:22:03 +00009622 DstArg->printPretty(OS, nullptr, getPrintingPolicy());
Ted Kremenek18db5d42011-08-18 22:48:41 +00009623 OS << ")";
Fangrui Song6907ce22018-07-30 19:24:48 +00009624
Stephen Kellyf2ceec42018-08-09 21:08:08 +00009625 Diag(OriginalSizeArg->getBeginLoc(), diag::note_strlcpycat_wrong_size)
9626 << FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(),
9627 OS.str());
Ted Kremenek6865f772011-08-18 20:55:45 +00009628}
9629
Anna Zaks314cd092012-02-01 19:08:57 +00009630/// Check if two expressions refer to the same declaration.
9631static 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
9638static 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)
Craig Topperc3ec1492014-05-26 06:22:03 +00009642 return nullptr;
Anna Zaks314cd092012-02-01 19:08:57 +00009643 return CE->getArg(0)->IgnoreParenCasts();
9644 }
Craig Topperc3ec1492014-05-26 06:22:03 +00009645 return nullptr;
Anna Zaks314cd092012-02-01 19:08:57 +00009646}
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);
9651void 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
Stephen Kellyf2ceec42018-08-09 21:08:08 +00009660 if (CheckMemorySizeofForComparison(*this, LenArg, FnName, CE->getBeginLoc(),
Nico Weber0e6daef2013-12-26 23:38:39 +00009661 CE->getRParenLoc()))
9662 return;
9663
Anna Zaks314cd092012-02-01 19:08:57 +00009664 // 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
Anna Zaks5069aa32012-02-03 01:27:37 +00009691 // Generate the diagnostic.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00009692 SourceLocation SL = LenArg->getBeginLoc();
Anna Zaks5069aa32012-02-03 01:27:37 +00009693 SourceRange SR = LenArg->getSourceRange();
Alp Tokerb6cc5922014-05-03 03:45:55 +00009694 SourceManager &SM = getSourceManager();
Anna Zaks5069aa32012-02-03 01:27:37 +00009695
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
Anna Zaks13b08572012-08-08 21:42:23 +00009703 // 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
Anna Zaks314cd092012-02-01 19:08:57 +00009715 if (PatternType == 1)
Anna Zaks5069aa32012-02-03 01:27:37 +00009716 Diag(SL, diag::warn_strncat_large_size) << SR;
Anna Zaks314cd092012-02-01 19:08:57 +00009717 else
Anna Zaks5069aa32012-02-03 01:27:37 +00009718 Diag(SL, diag::warn_strncat_src_size) << SR;
Anna Zaks314cd092012-02-01 19:08:57 +00009719
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00009720 SmallString<128> sizeString;
Anna Zaks314cd092012-02-01 19:08:57 +00009721 llvm::raw_svector_ostream OS(sizeString);
9722 OS << "sizeof(";
Craig Topperc3ec1492014-05-26 06:22:03 +00009723 DstArg->printPretty(OS, nullptr, getPrintingPolicy());
Anna Zaks314cd092012-02-01 19:08:57 +00009724 OS << ") - ";
9725 OS << "strlen(";
Craig Topperc3ec1492014-05-26 06:22:03 +00009726 DstArg->printPretty(OS, nullptr, getPrintingPolicy());
Anna Zaks314cd092012-02-01 19:08:57 +00009727 OS << ") - 1";
9728
Anna Zaks5069aa32012-02-03 01:27:37 +00009729 Diag(SL, diag::note_strncat_wrong_size)
9730 << FixItHint::CreateReplacement(SR, OS.str());
Anna Zaks314cd092012-02-01 19:08:57 +00009731}
9732
Ted Kremenekef9e7f82014-01-22 06:10:28 +00009733void
9734Sema::CheckReturnValExpr(Expr *RetValExp, QualType lhsType,
9735 SourceLocation ReturnLoc,
9736 bool isObjCMethod,
Artyom Skrobov9f213442014-01-24 11:10:39 +00009737 const AttrVec *Attrs,
9738 const FunctionDecl *FD) {
Ted Kremenekef9e7f82014-01-22 06:10:28 +00009739 // Check if the return value is null but should not be.
Douglas Gregorb4866e82015-06-19 18:13:19 +00009740 if (((Attrs && hasSpecificAttr<ReturnsNonNullAttr>(*Attrs)) ||
9741 (!isObjCMethod && isNonNullType(Context, lhsType))) &&
Benjamin Kramerae852a62014-02-23 14:34:50 +00009742 CheckNonNullExpr(*this, RetValExp))
9743 Diag(ReturnLoc, diag::warn_null_ret)
9744 << (isObjCMethod ? 1 : 0) << RetValExp->getSourceRange();
Artyom Skrobov9f213442014-01-24 11:10:39 +00009745
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>();
Richard Smitheaf11ad2018-05-03 03:58:32 +00009756 if (!Proto->isNothrow(/*ResultIfDependent*/true) &&
Artyom Skrobov9f213442014-01-24 11:10:39 +00009757 CheckNonNullExpr(*this, RetValExp))
9758 Diag(ReturnLoc, diag::warn_operator_new_returns_null)
9759 << FD << getLangOpts().CPlusPlus11;
9760 }
9761 }
Ted Kremenekef9e7f82014-01-22 06:10:28 +00009762}
9763
Ted Kremenek43fb8b02007-11-25 00:58:00 +00009764//===--- 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.
Richard Trieu82402a02011-09-15 21:56:47 +00009769void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) {
Richard Trieu82402a02011-09-15 21:56:47 +00009770 Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts();
9771 Expr* RightExprSansParen = RHS->IgnoreParenImpCasts();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00009772
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())
David Blaikie1f4ff152012-07-16 20:47:22 +00009778 return;
Mike Stump11289f42009-09-09 15:08:12 +00009779
Ted Kremenekeda40e22007-11-29 00:59:04 +00009780 // 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.
David Blaikie1f4ff152012-07-16 20:47:22 +00009785 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;
Mike Stump11289f42009-09-09 15:08:12 +00009792
Ted Kremenek43fb8b02007-11-25 00:58:00 +00009793 // Check for comparisons with builtin types.
David Blaikie1f4ff152012-07-16 20:47:22 +00009794 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen))
Alp Tokera724cff2013-12-28 21:59:02 +00009795 if (CL->getBuiltinCallee())
David Blaikie1f4ff152012-07-16 20:47:22 +00009796 return;
Mike Stump11289f42009-09-09 15:08:12 +00009797
David Blaikie1f4ff152012-07-16 20:47:22 +00009798 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen))
Alp Tokera724cff2013-12-28 21:59:02 +00009799 if (CR->getBuiltinCallee())
David Blaikie1f4ff152012-07-16 20:47:22 +00009800 return;
Mike Stump11289f42009-09-09 15:08:12 +00009801
Ted Kremenek43fb8b02007-11-25 00:58:00 +00009802 // Emit the diagnostic.
David Blaikie1f4ff152012-07-16 20:47:22 +00009803 Diag(Loc, diag::warn_floatingpoint_eq)
9804 << LHS->getSourceRange() << RHS->getSourceRange();
Ted Kremenek43fb8b02007-11-25 00:58:00 +00009805}
John McCallca01b222010-01-04 23:21:16 +00009806
John McCall70aa5392010-01-06 05:24:50 +00009807//===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
9808//===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===//
John McCallca01b222010-01-04 23:21:16 +00009809
John McCall70aa5392010-01-06 05:24:50 +00009810namespace {
John McCallca01b222010-01-04 23:21:16 +00009811
John McCall70aa5392010-01-06 05:24:50 +00009812/// Structure recording the 'active' range of an integer-valued
9813/// expression.
9814struct IntRange {
9815 /// The number of bits active in the int.
9816 unsigned Width;
John McCallca01b222010-01-04 23:21:16 +00009817
John McCall70aa5392010-01-06 05:24:50 +00009818 /// True if the int is known not to have negative values.
9819 bool NonNegative;
John McCallca01b222010-01-04 23:21:16 +00009820
John McCall70aa5392010-01-06 05:24:50 +00009821 IntRange(unsigned Width, bool NonNegative)
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00009822 : Width(Width), NonNegative(NonNegative) {}
John McCallca01b222010-01-04 23:21:16 +00009823
John McCall817d4af2010-11-10 23:38:19 +00009824 /// Returns the range of the bool type.
John McCall70aa5392010-01-06 05:24:50 +00009825 static IntRange forBoolType() {
9826 return IntRange(1, true);
John McCall263a48b2010-01-04 23:31:57 +00009827 }
9828
John McCall817d4af2010-11-10 23:38:19 +00009829 /// 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());
John McCall263a48b2010-01-04 23:31:57 +00009833 }
9834
John McCall817d4af2010-11-10 23:38:19 +00009835 /// Returns the range of an opaque value of a canonical integral type.
9836 static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) {
John McCall70aa5392010-01-06 05:24:50 +00009837 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();
Justin Bogner4f42fc42014-07-21 18:01:53 +00009843 if (const AtomicType *AT = dyn_cast<AtomicType>(T))
9844 T = AT->getValueType().getTypePtr();
John McCallcc7e5bf2010-05-06 08:58:33 +00009845
Roman Lebedevca1aaac2017-10-21 16:44:03 +00009846 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.
David Majnemer6a426652013-06-07 22:07:20 +00009852 EnumDecl *Enum = ET->getDecl();
Richard Smith371e9e8a2017-12-06 03:00:51 +00009853 // In C++11, enums can have a fixed underlying type. Use this type to
9854 // compute the range.
9855 if (Enum->isFixed()) {
Erich Keane69dbbb02017-09-21 19:58:55 +00009856 return IntRange(C.getIntWidth(QualType(T, 0)),
9857 !ET->isSignedIntegerOrEnumerationType());
Richard Smith371e9e8a2017-12-06 03:00:51 +00009858 }
John McCall18a2c2c2010-11-09 22:22:12 +00009859
David Majnemer6a426652013-06-07 22:07:20 +00009860 unsigned NumPositive = Enum->getNumPositiveBits();
9861 unsigned NumNegative = Enum->getNumNegativeBits();
John McCallcc7e5bf2010-05-06 08:58:33 +00009862
David Majnemer6a426652013-06-07 22:07:20 +00009863 if (NumNegative == 0)
9864 return IntRange(NumPositive, true/*NonNegative*/);
9865 else
9866 return IntRange(std::max(NumPositive + 1, NumNegative),
9867 false/*NonNegative*/);
John McCallcc7e5bf2010-05-06 08:58:33 +00009868 }
John McCall70aa5392010-01-06 05:24:50 +00009869
9870 const BuiltinType *BT = cast<BuiltinType>(T);
9871 assert(BT->isInteger());
9872
9873 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger());
9874 }
9875
John McCall817d4af2010-11-10 23:38:19 +00009876 /// 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();
Justin Bogner4f42fc42014-07-21 18:01:53 +00009888 if (const AtomicType *AT = dyn_cast<AtomicType>(T))
9889 T = AT->getValueType().getTypePtr();
John McCall817d4af2010-11-10 23:38:19 +00009890 if (const EnumType *ET = dyn_cast<EnumType>(T))
Douglas Gregor3168dcf2011-09-08 23:29:05 +00009891 T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr();
John McCall817d4af2010-11-10 23:38:19 +00009892
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.
John McCallff96ccd2010-02-23 19:22:29 +00009900 static IntRange join(IntRange L, IntRange R) {
John McCall70aa5392010-01-06 05:24:50 +00009901 return IntRange(std::max(L.Width, R.Width),
John McCall2ce81ad2010-01-06 22:07:33 +00009902 L.NonNegative && R.NonNegative);
9903 }
9904
John McCall817d4af2010-11-10 23:38:19 +00009905 /// Returns the infinum of two ranges: i.e. their aggressive merge.
John McCallff96ccd2010-02-23 19:22:29 +00009906 static IntRange meet(IntRange L, IntRange R) {
John McCall2ce81ad2010-01-06 22:07:33 +00009907 return IntRange(std::min(L.Width, R.Width),
9908 L.NonNegative || R.NonNegative);
John McCall70aa5392010-01-06 05:24:50 +00009909 }
9910};
9911
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00009912} // namespace
9913
9914static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value,
9915 unsigned MaxWidth) {
John McCall70aa5392010-01-06 05:24:50 +00009916 if (value.isSigned() && value.isNegative())
9917 return IntRange(value.getMinSignedBits(), false);
9918
9919 if (value.getBitWidth() > MaxWidth)
Jay Foad6d4db0c2010-12-07 08:25:34 +00009920 value = value.trunc(MaxWidth);
John McCall70aa5392010-01-06 05:24:50 +00009921
9922 // isNonNegative() just checks the sign bit without considering
9923 // signedness.
9924 return IntRange(value.getActiveBits(), true);
9925}
9926
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00009927static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty,
9928 unsigned MaxWidth) {
John McCall70aa5392010-01-06 05:24:50 +00009929 if (result.isInt())
9930 return GetValueRange(C, result.getInt(), MaxWidth);
9931
9932 if (result.isVector()) {
John McCall74430522010-01-06 22:57:21 +00009933 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 }
John McCall70aa5392010-01-06 05:24:50 +00009938 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);
John McCall263a48b2010-01-04 23:31:57 +00009945 }
9946
9947 // This can happen with lossless casts to intptr_t of "based" lvalues.
9948 // Assume it might use arbitrary bits.
John McCall74430522010-01-06 22:57:21 +00009949 // 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.
Eli Friedmanfd5e54d2012-01-04 23:13:47 +00009952 assert(result.isLValue() || result.isAddrLabelDiff());
Douglas Gregor61b6e492011-05-21 16:28:01 +00009953 return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType());
John McCall263a48b2010-01-04 23:31:57 +00009954}
John McCall70aa5392010-01-06 05:24:50 +00009955
Eugene Zelenko11a7ef82017-11-15 22:00:04 +00009956static QualType GetExprType(const Expr *E) {
Eli Friedmane6d33952013-07-08 20:20:06 +00009957 QualType Ty = E->getType();
9958 if (const AtomicType *AtomicRHS = Ty->getAs<AtomicType>())
9959 Ty = AtomicRHS->getValueType();
9960 return Ty;
9961}
9962
John McCall70aa5392010-01-06 05:24:50 +00009963/// 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
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00009967static IntRange GetExprRange(ASTContext &C, const Expr *E, unsigned MaxWidth,
9968 bool InConstantContext) {
John McCall70aa5392010-01-06 05:24:50 +00009969 E = E->IgnoreParens();
9970
9971 // Try a full evaluation first.
9972 Expr::EvalResult result;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00009973 if (E->EvaluateAsRValue(result, C, InConstantContext))
Eli Friedmane6d33952013-07-08 20:20:06 +00009974 return GetValueRange(C, result.Val, GetExprType(E), MaxWidth);
John McCall70aa5392010-01-06 05:24:50 +00009975
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.
Daniel Marjamakid3e1ded2016-01-25 09:29:38 +00009979 if (const auto *CE = dyn_cast<ImplicitCastExpr>(E)) {
Eli Friedman8349dc12011-12-15 02:41:52 +00009980 if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue)
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00009981 return GetExprRange(C, CE->getSubExpr(), MaxWidth, InConstantContext);
John McCall70aa5392010-01-06 05:24:50 +00009982
Eli Friedmane6d33952013-07-08 20:20:06 +00009983 IntRange OutputTypeRange = IntRange::forValueOfType(C, GetExprType(CE));
John McCall70aa5392010-01-06 05:24:50 +00009984
George Burgess IVdf1ed002016-01-13 01:52:39 +00009985 bool isIntegerCast = CE->getCastKind() == CK_IntegralCast ||
9986 CE->getCastKind() == CK_BooleanToSignedIntegral;
John McCall2ce81ad2010-01-06 22:07:33 +00009987
John McCall70aa5392010-01-06 05:24:50 +00009988 // Assume that non-integer casts can span the full range of the type.
John McCall2ce81ad2010-01-06 22:07:33 +00009989 if (!isIntegerCast)
John McCall70aa5392010-01-06 05:24:50 +00009990 return OutputTypeRange;
9991
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +00009992 IntRange SubRange = GetExprRange(C, CE->getSubExpr(),
9993 std::min(MaxWidth, OutputTypeRange.Width),
9994 InConstantContext);
John McCall70aa5392010-01-06 05:24:50 +00009995
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
Daniel Marjamakid3e1ded2016-01-25 09:29:38 +000010006 if (const auto *CO = dyn_cast<ConditionalOperator>(E)) {
John McCall70aa5392010-01-06 05:24:50 +000010007 // If we can fold the condition, just take that operand.
10008 bool CondResult;
10009 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C))
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010010 return GetExprRange(C,
10011 CondResult ? CO->getTrueExpr() : CO->getFalseExpr(),
10012 MaxWidth, InConstantContext);
John McCall70aa5392010-01-06 05:24:50 +000010013
10014 // Otherwise, conservatively merge.
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010015 IntRange L =
10016 GetExprRange(C, CO->getTrueExpr(), MaxWidth, InConstantContext);
10017 IntRange R =
10018 GetExprRange(C, CO->getFalseExpr(), MaxWidth, InConstantContext);
John McCall70aa5392010-01-06 05:24:50 +000010019 return IntRange::join(L, R);
10020 }
10021
Daniel Marjamakid3e1ded2016-01-25 09:29:38 +000010022 if (const auto *BO = dyn_cast<BinaryOperator>(E)) {
John McCall70aa5392010-01-06 05:24:50 +000010023 switch (BO->getOpcode()) {
Richard Smithc70f1d62017-12-14 15:16:18 +000010024 case BO_Cmp:
10025 llvm_unreachable("builtin <=> should have class type");
John McCall70aa5392010-01-06 05:24:50 +000010026
10027 // Boolean-valued operations are single-bit and positive.
John McCalle3027922010-08-25 11:45:40 +000010028 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:
John McCall70aa5392010-01-06 05:24:50 +000010036 return IntRange::forBoolType();
10037
John McCallc3688382011-07-13 06:35:24 +000010038 // The type of the assignments is the type of the LHS, so the RHS
10039 // is not necessarily the same type.
John McCalle3027922010-08-25 11:45:40 +000010040 case BO_MulAssign:
10041 case BO_DivAssign:
10042 case BO_RemAssign:
10043 case BO_AddAssign:
10044 case BO_SubAssign:
John McCallc3688382011-07-13 06:35:24 +000010045 case BO_XorAssign:
10046 case BO_OrAssign:
10047 // TODO: bitfields?
Eli Friedmane6d33952013-07-08 20:20:06 +000010048 return IntRange::forValueOfType(C, GetExprType(E));
John McCallff96ccd2010-02-23 19:22:29 +000010049
John McCallc3688382011-07-13 06:35:24 +000010050 // Simple assignments just pass through the RHS, which will have
10051 // been coerced to the LHS type.
10052 case BO_Assign:
10053 // TODO: bitfields?
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010054 return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
John McCallc3688382011-07-13 06:35:24 +000010055
John McCall70aa5392010-01-06 05:24:50 +000010056 // Operations with opaque sources are black-listed.
John McCalle3027922010-08-25 11:45:40 +000010057 case BO_PtrMemD:
10058 case BO_PtrMemI:
Eli Friedmane6d33952013-07-08 20:20:06 +000010059 return IntRange::forValueOfType(C, GetExprType(E));
John McCall70aa5392010-01-06 05:24:50 +000010060
John McCall2ce81ad2010-01-06 22:07:33 +000010061 // Bitwise-and uses the *infinum* of the two source ranges.
John McCalle3027922010-08-25 11:45:40 +000010062 case BO_And:
10063 case BO_AndAssign:
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010064 return IntRange::meet(
10065 GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext),
10066 GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext));
John McCall2ce81ad2010-01-06 22:07:33 +000010067
John McCall70aa5392010-01-06 05:24:50 +000010068 // Left shift gets black-listed based on a judgement call.
John McCalle3027922010-08-25 11:45:40 +000010069 case BO_Shl:
John McCall1bff9932010-04-07 01:14:35 +000010070 // ...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) {
Eli Friedmane6d33952013-07-08 20:20:06 +000010075 IntRange R = IntRange::forValueOfType(C, GetExprType(E));
John McCall1bff9932010-04-07 01:14:35 +000010076 return IntRange(R.Width, /*NonNegative*/ true);
10077 }
10078 }
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +000010079 LLVM_FALLTHROUGH;
John McCall1bff9932010-04-07 01:14:35 +000010080
John McCalle3027922010-08-25 11:45:40 +000010081 case BO_ShlAssign:
Eli Friedmane6d33952013-07-08 20:20:06 +000010082 return IntRange::forValueOfType(C, GetExprType(E));
John McCall70aa5392010-01-06 05:24:50 +000010083
John McCall2ce81ad2010-01-06 22:07:33 +000010084 // Right shift by a constant can narrow its left argument.
John McCalle3027922010-08-25 11:45:40 +000010085 case BO_Shr:
10086 case BO_ShrAssign: {
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010087 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext);
John McCall2ce81ad2010-01-06 22:07:33 +000010088
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.
John McCalle3027922010-08-25 11:45:40 +000010105 case BO_Comma:
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010106 return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
John McCall70aa5392010-01-06 05:24:50 +000010107
John McCall2ce81ad2010-01-06 22:07:33 +000010108 // Black-list pointer subtractions.
John McCalle3027922010-08-25 11:45:40 +000010109 case BO_Sub:
John McCall70aa5392010-01-06 05:24:50 +000010110 if (BO->getLHS()->getType()->isPointerType())
Eli Friedmane6d33952013-07-08 20:20:06 +000010111 return IntRange::forValueOfType(C, GetExprType(E));
John McCall51431812011-07-14 22:39:48 +000010112 break;
Ted Kremenekc8b188d2010-02-16 01:46:59 +000010113
John McCall51431812011-07-14 22:39:48 +000010114 // 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.
Eli Friedmane6d33952013-07-08 20:20:06 +000010118 unsigned opWidth = C.getIntWidth(GetExprType(E));
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010119 IntRange L = GetExprRange(C, BO->getLHS(), opWidth, InConstantContext);
John McCall51431812011-07-14 22:39:48 +000010120
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.
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010133 IntRange R = GetExprRange(C, BO->getRHS(), opWidth, InConstantContext);
John McCall51431812011-07-14 22:39:48 +000010134 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.
Eli Friedmane6d33952013-07-08 20:20:06 +000010141 unsigned opWidth = C.getIntWidth(GetExprType(E));
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010142 IntRange L = GetExprRange(C, BO->getLHS(), opWidth, InConstantContext);
10143 IntRange R = GetExprRange(C, BO->getRHS(), opWidth, InConstantContext);
John McCall51431812011-07-14 22:39:48 +000010144
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:
John McCall70aa5392010-01-06 05:24:50 +000010155 break;
10156 }
10157
John McCall51431812011-07-14 22:39:48 +000010158 // The default case is to treat the operation as if it were closed
10159 // on the narrowest type that encompasses both operands.
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010160 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext);
10161 IntRange R = GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext);
John McCall70aa5392010-01-06 05:24:50 +000010162 return IntRange::join(L, R);
10163 }
10164
Daniel Marjamakid3e1ded2016-01-25 09:29:38 +000010165 if (const auto *UO = dyn_cast<UnaryOperator>(E)) {
John McCall70aa5392010-01-06 05:24:50 +000010166 switch (UO->getOpcode()) {
10167 // Boolean-valued operations are white-listed.
John McCalle3027922010-08-25 11:45:40 +000010168 case UO_LNot:
John McCall70aa5392010-01-06 05:24:50 +000010169 return IntRange::forBoolType();
10170
10171 // Operations with opaque sources are black-listed.
John McCalle3027922010-08-25 11:45:40 +000010172 case UO_Deref:
10173 case UO_AddrOf: // should be impossible
Eli Friedmane6d33952013-07-08 20:20:06 +000010174 return IntRange::forValueOfType(C, GetExprType(E));
John McCall70aa5392010-01-06 05:24:50 +000010175
10176 default:
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010177 return GetExprRange(C, UO->getSubExpr(), MaxWidth, InConstantContext);
John McCall70aa5392010-01-06 05:24:50 +000010178 }
10179 }
10180
Daniel Marjamakid3e1ded2016-01-25 09:29:38 +000010181 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010182 return GetExprRange(C, OVE->getSourceExpr(), MaxWidth, InConstantContext);
Ted Kremeneka553fbf2013-10-14 18:55:27 +000010183
Daniel Marjamakid3e1ded2016-01-25 09:29:38 +000010184 if (const auto *BitField = E->getSourceBitField())
Richard Smithcaf33902011-10-10 18:28:20 +000010185 return IntRange(BitField->getBitWidthValue(C),
Douglas Gregor61b6e492011-05-21 16:28:01 +000010186 BitField->getType()->isUnsignedIntegerOrEnumerationType());
John McCall70aa5392010-01-06 05:24:50 +000010187
Eli Friedmane6d33952013-07-08 20:20:06 +000010188 return IntRange::forValueOfType(C, GetExprType(E));
John McCall70aa5392010-01-06 05:24:50 +000010189}
John McCall263a48b2010-01-04 23:31:57 +000010190
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010191static IntRange GetExprRange(ASTContext &C, const Expr *E,
10192 bool InConstantContext) {
10193 return GetExprRange(C, E, C.getIntWidth(GetExprType(E)), InConstantContext);
John McCallcc7e5bf2010-05-06 08:58:33 +000010194}
10195
John McCall263a48b2010-01-04 23:31:57 +000010196/// Checks whether the given value, which currently has the given
10197/// source semantics, has the same value when coerced through the
10198/// target semantics.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010199static bool IsSameFloatAfterCast(const llvm::APFloat &value,
10200 const llvm::fltSemantics &Src,
10201 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +000010202 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).
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010216static bool IsSameFloatAfterCast(const APValue &value,
10217 const llvm::fltSemantics &Src,
10218 const llvm::fltSemantics &Tgt) {
John McCall263a48b2010-01-04 23:31:57 +000010219 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
Ziang Wan87b668b2019-08-01 00:16:43 +000010234static void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC,
10235 bool IsListInit = false);
John McCallcc7e5bf2010-05-06 08:58:33 +000010236
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010237static bool IsEnumConstOrFromMacro(Sema &S, Expr *E) {
Ted Kremenek6274be42010-09-23 21:43:44 +000010238 // 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()))
Roman Lebedev6de129e2017-10-15 20:13:17 +000010242 return true;
Ted Kremenek6274be42010-09-23 21:43:44 +000010243
Erik Pilkingtonfa591c32019-07-08 23:42:52 +000010244 // 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 }
Ted Kremenek6274be42010-09-23 21:43:44 +000010254
Roman Lebedev6de129e2017-10-15 20:13:17 +000010255 return false;
10256}
10257
Richard Smith692f66ab2017-12-06 19:23:19 +000010258static bool isKnownToHaveUnsignedValue(Expr *E) {
10259 return E->getType()->isIntegerType() &&
Roman Lebedev6de129e2017-10-15 20:13:17 +000010260 (!E->getType()->isSignedIntegerType() ||
10261 !E->IgnoreParenImpCasts()->getType()->isSignedIntegerType());
10262}
10263
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010264namespace {
Richard Smitha5370fb2017-12-08 22:57:11 +000010265/// 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).
10275struct 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;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010280
Richard Smitha5370fb2017-12-08 22:57:11 +000010281 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
Richard Smithc70f1d62017-12-14 15:16:18 +000010350 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
Richard Smitha5370fb2017-12-08 22:57:11 +000010362 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)
Richard Smithc70f1d62017-12-14 15:16:18 +000010381 return StringRef("true");
Richard Smitha5370fb2017-12-08 22:57:11 +000010382 if (R & FalseFlag)
Richard Smithc70f1d62017-12-14 15:16:18 +000010383 return StringRef("false");
Richard Smitha5370fb2017-12-08 22:57:11 +000010384 return llvm::None;
10385 }
Roman Lebedev6de129e2017-10-15 20:13:17 +000010386};
John McCallcc7e5bf2010-05-06 08:58:33 +000010387}
10388
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010389static bool HasEnumType(Expr *E) {
John McCall2551c1b2010-10-06 00:25:24 +000010390 // Strip off implicit integral promotions.
10391 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
Argyrios Kyrtzidis15a9edc2010-10-07 21:52:18 +000010392 if (ICE->getCastKind() != CK_IntegralCast &&
10393 ICE->getCastKind() != CK_NoOp)
John McCall2551c1b2010-10-06 00:25:24 +000010394 break;
Argyrios Kyrtzidis15a9edc2010-10-07 21:52:18 +000010395 E = ICE->getSubExpr();
John McCall2551c1b2010-10-06 00:25:24 +000010396 }
10397
10398 return E->getType()->isEnumeralType();
10399}
10400
Richard Smith692f66ab2017-12-06 19:23:19 +000010401static 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
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010415static bool CheckTautologicalComparison(Sema &S, BinaryOperator *E,
10416 Expr *Constant, Expr *Other,
10417 const llvm::APSInt &Value,
10418 bool RhsConstant) {
Hans Wennborg5bb88e02017-12-08 05:19:12 +000010419 if (S.inTemplateInstantiation())
10420 return false;
10421
Richard Smitha5370fb2017-12-08 22:57:11 +000010422 Expr *OriginalOther = Other;
10423
Hans Wennborg5bb88e02017-12-08 05:19:12 +000010424 Constant = Constant->IgnoreParenImpCasts();
10425 Other = Other->IgnoreParenImpCasts();
10426
Richard Smitha5370fb2017-12-08 22:57:11 +000010427 // 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
Hans Wennborg5bb88e02017-12-08 05:19:12 +000010438 // 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
Erik Pilkingtonfa591c32019-07-08 23:42:52 +000010445 // 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
Hans Wennborg5bb88e02017-12-08 05:19:12 +000010451 // 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();
Erik Pilkingtonfa591c32019-07-08 23:42:52 +000010455 if (OtherIsBooleanDespiteType || IsObjCSignedCharBool)
Hans Wennborg5bb88e02017-12-08 05:19:12 +000010456 OtherRange = IntRange::forBoolType();
10457
Richard Smitha5370fb2017-12-08 22:57:11 +000010458 // 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;
Hans Wennborg5791ce72017-12-08 16:54:08 +000010466
Richard Smitha5370fb2017-12-08 22:57:11 +000010467 // 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;
Ted Kremenekb7d7dd42013-03-15 21:50:10 +000010476
10477 // If this is a comparison to an enum constant, include that
10478 // constant in the diagnostic.
Craig Topperc3ec1492014-05-26 06:22:03 +000010479 const EnumConstantDecl *ED = nullptr;
Ted Kremenekb7d7dd42013-03-15 21:50:10 +000010480 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Constant))
10481 ED = dyn_cast<EnumConstantDecl>(DR->getDecl());
10482
Richard Smitha5370fb2017-12-08 22:57:11 +000010483 // Should be enough for uint128 (39 decimal digits)
Ted Kremenekb7d7dd42013-03-15 21:50:10 +000010484 SmallString<64> PrettySourceValue;
10485 llvm::raw_svector_ostream OS(PrettySourceValue);
Erik Pilkingtonfa591c32019-07-08 23:42:52 +000010486 if (ED) {
Ted Kremeneke943ce12013-03-15 22:02:46 +000010487 OS << '\'' << *ED << "' (" << Value << ")";
Erik Pilkingtonfa591c32019-07-08 23:42:52 +000010488 } else if (auto *BL = dyn_cast<ObjCBoolLiteralExpr>(
10489 Constant->IgnoreParenImpCasts())) {
10490 OS << (BL->getValue() ? "YES" : "NO");
10491 } else {
Ted Kremenekb7d7dd42013-03-15 21:50:10 +000010492 OS << Value;
Erik Pilkingtonfa591c32019-07-08 23:42:52 +000010493 }
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 }
Ted Kremenekb7d7dd42013-03-15 21:50:10 +000010501
Richard Smitha5370fb2017-12-08 22:57:11 +000010502 // 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()) {
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010506
Richard Smitha5370fb2017-12-08 22:57:11 +000010507 S.DiagRuntimeBehavior(
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010508 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());
Richard Smitha5370fb2017-12-08 22:57:11 +000010514 } 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;
Roman Lebedev6de129e2017-10-15 20:13:17 +000010520
Richard Smitha5370fb2017-12-08 22:57:11 +000010521 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;
Fariborz Jahanianb1885422012-09-18 17:37:21 +000010527}
10528
John McCallcc7e5bf2010-05-06 08:58:33 +000010529/// Analyze the operands of the given comparison. Implements the
10530/// fallback case from AnalyzeComparison.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010531static void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) {
John McCallacf0ee52010-10-08 02:01:28 +000010532 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc());
10533 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
John McCallcc7e5bf2010-05-06 08:58:33 +000010534}
John McCall263a48b2010-01-04 23:31:57 +000010535
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000010536/// Implements -Wsign-compare.
John McCallca01b222010-01-04 23:21:16 +000010537///
Richard Trieu82402a02011-09-15 21:56:47 +000010538/// \param E the binary operator to check for warnings
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010539static void AnalyzeComparison(Sema &S, BinaryOperator *E) {
John McCallcc7e5bf2010-05-06 08:58:33 +000010540 // The type the comparison is being performed in.
10541 QualType T = E->getLHS()->getType();
Chandler Carruthb29a7432014-10-11 11:03:30 +000010542
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.
Fariborz Jahanian282071e2012-09-18 17:46:26 +000010549 if (E->isValueDependent())
10550 return AnalyzeImpConvsInComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +000010551
Roman Lebedev6de129e2017-10-15 20:13:17 +000010552 Expr *LHS = E->getLHS();
10553 Expr *RHS = E->getRHS();
10554
Fariborz Jahanianb1885422012-09-18 17:37:21 +000010555 if (T->isIntegralType(S.Context)) {
10556 llvm::APSInt RHSValue;
Fariborz Jahanianb1885422012-09-18 17:37:21 +000010557 llvm::APSInt LHSValue;
Roman Lebedev6aa34aa2017-09-07 22:14:25 +000010558
Roman Lebedev6de129e2017-10-15 20:13:17 +000010559 bool IsRHSIntegralLiteral = RHS->isIntegerConstantExpr(RHSValue, S.Context);
10560 bool IsLHSIntegralLiteral = LHS->isIntegerConstantExpr(LHSValue, S.Context);
Roman Lebedevbd1fc222017-10-12 20:16:51 +000010561
Roman Lebedev6de129e2017-10-15 20:13:17 +000010562 // We don't care about expressions whose result is a constant.
10563 if (IsRHSIntegralLiteral && IsLHSIntegralLiteral)
10564 return AnalyzeImpConvsInComparison(S, E);
Roman Lebedev6f405db2017-10-12 22:03:20 +000010565
Roman Lebedev6de129e2017-10-15 20:13:17 +000010566 // 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'.
Roman Lebedev6de129e2017-10-15 20:13:17 +000010576 if (CheckTautologicalComparison(S, E, Const, Other, Value, RhsConstant))
10577 return AnalyzeImpConvsInComparison(S, E);
Roman Lebedev6de129e2017-10-15 20:13:17 +000010578 }
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.
Roman Lebedev6f405db2017-10-12 22:03:20 +000010585 return AnalyzeImpConvsInComparison(S, E);
Roman Lebedev6de129e2017-10-15 20:13:17 +000010586 }
10587
10588 LHS = LHS->IgnoreParenImpCasts();
10589 RHS = RHS->IgnoreParenImpCasts();
Roman Lebedev6aa34aa2017-09-07 22:14:25 +000010590
Alex Lorenzb57409f2018-02-07 20:45:39 +000010591 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
John McCallcc7e5bf2010-05-06 08:58:33 +000010601 // Check to see if one of the (unmodified) operands is of different
10602 // signedness.
10603 Expr *signedOperand, *unsignedOperand;
Richard Trieu82402a02011-09-15 21:56:47 +000010604 if (LHS->getType()->hasSignedIntegerRepresentation()) {
10605 assert(!RHS->getType()->hasSignedIntegerRepresentation() &&
John McCallcc7e5bf2010-05-06 08:58:33 +000010606 "unsigned comparison between two signed integer expressions?");
Richard Trieu82402a02011-09-15 21:56:47 +000010607 signedOperand = LHS;
10608 unsignedOperand = RHS;
10609 } else if (RHS->getType()->hasSignedIntegerRepresentation()) {
10610 signedOperand = RHS;
10611 unsignedOperand = LHS;
John McCallca01b222010-01-04 23:21:16 +000010612 } else {
John McCallcc7e5bf2010-05-06 08:58:33 +000010613 return AnalyzeImpConvsInComparison(S, E);
John McCallca01b222010-01-04 23:21:16 +000010614 }
10615
John McCallcc7e5bf2010-05-06 08:58:33 +000010616 // Otherwise, calculate the effective range of the signed operand.
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010617 IntRange signedRange =
10618 GetExprRange(S.Context, signedOperand, S.isConstantEvaluated());
John McCall70aa5392010-01-06 05:24:50 +000010619
John McCallcc7e5bf2010-05-06 08:58:33 +000010620 // Go ahead and analyze implicit conversions in the operands. Note
10621 // that we skip the implicit conversions on both sides.
Richard Trieu82402a02011-09-15 21:56:47 +000010622 AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc());
10623 AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc());
John McCallca01b222010-01-04 23:21:16 +000010624
Roman Lebedev6aa34aa2017-09-07 22:14:25 +000010625 // If the signed range is non-negative, -Wsign-compare won't fire.
John McCallcc7e5bf2010-05-06 08:58:33 +000010626 if (signedRange.NonNegative)
Roman Lebedev6aa34aa2017-09-07 22:14:25 +000010627 return;
John McCallca01b222010-01-04 23:21:16 +000010628
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.
John McCallcc7e5bf2010-05-06 08:58:33 +000010633 if (E->isEqualityOp()) {
10634 unsigned comparisonWidth = S.Context.getIntWidth(T);
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010635 IntRange unsignedRange =
10636 GetExprRange(S.Context, unsignedOperand, S.isConstantEvaluated());
John McCallca01b222010-01-04 23:21:16 +000010637
John McCallcc7e5bf2010-05-06 08:58:33 +000010638 // 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
Douglas Gregorbfb4a212012-05-01 01:53:49 +000010646 S.DiagRuntimeBehavior(E->getOperatorLoc(), E,
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010647 S.PDiag(diag::warn_mixed_sign_comparison)
10648 << LHS->getType() << RHS->getType()
10649 << LHS->getSourceRange() << RHS->getSourceRange());
John McCallca01b222010-01-04 23:21:16 +000010650}
10651
John McCall1f425642010-11-11 03:21:53 +000010652/// Analyzes an attempt to assign the given value to a bitfield.
10653///
10654/// Returns true if there was something fishy about the attempt.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010655static bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init,
10656 SourceLocation InitLoc) {
John McCall1f425642010-11-11 03:21:53 +000010657 assert(Bitfield->isBitField());
10658 if (Bitfield->isInvalidDecl())
10659 return false;
10660
John McCalldeebbcf2010-11-11 05:33:51 +000010661 // White-list bool bitfields.
Reid Klecknerad425622016-11-16 23:40:00 +000010662 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
John McCalldeebbcf2010-11-11 05:33:51 +000010680 if (Bitfield->getType()->isBooleanType())
10681 return false;
10682
Douglas Gregor789adec2011-02-04 13:09:01 +000010683 // 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
John McCall1f425642010-11-11 03:21:53 +000010690 Expr *OriginalInit = Init->IgnoreParenImpCasts();
Reid Kleckner329f24d2017-03-14 18:01:02 +000010691 unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context);
John McCall1f425642010-11-11 03:21:53 +000010692
Fangrui Song407659a2018-11-30 23:41:18 +000010693 Expr::EvalResult Result;
10694 if (!OriginalInit->EvaluateAsInt(Result, S.Context,
Reid Kleckner329f24d2017-03-14 18:01:02 +000010695 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
John McCall1f425642010-11-11 03:21:53 +000010747 return false;
Reid Kleckner329f24d2017-03-14 18:01:02 +000010748 }
John McCall1f425642010-11-11 03:21:53 +000010749
Fangrui Song407659a2018-11-30 23:41:18 +000010750 llvm::APSInt Value = Result.Val.getInt();
10751
John McCall1f425642010-11-11 03:21:53 +000010752 unsigned OriginalWidth = Value.getBitWidth();
John McCall1f425642010-11-11 03:21:53 +000010753
Daniel Marjamakiee5b5f52016-09-22 14:13:46 +000010754 if (!Value.isSigned() || Value.isNegative())
Richard Trieu7561ed02016-08-05 02:39:30 +000010755 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(OriginalInit))
Daniel Marjamakiee5b5f52016-09-22 14:13:46 +000010756 if (UO->getOpcode() == UO_Minus || UO->getOpcode() == UO_Not)
10757 OriginalWidth = Value.getMinSignedBits();
Richard Trieu7561ed02016-08-05 02:39:30 +000010758
John McCall1f425642010-11-11 03:21:53 +000010759 if (OriginalWidth <= FieldWidth)
10760 return false;
10761
Eli Friedmanc267a322012-01-26 23:11:39 +000010762 // Compute the value which the bitfield will contain.
Jay Foad6d4db0c2010-12-07 08:25:34 +000010763 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth);
Reid Klecknerad425622016-11-16 23:40:00 +000010764 TruncatedValue.setIsSigned(BitfieldType->isSignedIntegerType());
John McCall1f425642010-11-11 03:21:53 +000010765
Eli Friedmanc267a322012-01-26 23:11:39 +000010766 // Check whether the stored value is equal to the original value.
10767 TruncatedValue = TruncatedValue.extend(OriginalWidth);
Richard Trieuc320c742012-07-23 20:21:35 +000010768 if (llvm::APSInt::isSameValue(Value, TruncatedValue))
John McCall1f425642010-11-11 03:21:53 +000010769 return false;
10770
Eli Friedmanc267a322012-01-26 23:11:39 +000010771 // Special-case bitfields of width 1: booleans are naturally 0/1, and
Eli Friedmane1ffd492012-02-02 00:40:20 +000010772 // therefore don't strictly fit into a signed bitfield of width 1.
10773 if (FieldWidth == 1 && Value == 1)
Eli Friedmanc267a322012-01-26 23:11:39 +000010774 return false;
10775
John McCall1f425642010-11-11 03:21:53 +000010776 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
John McCalld2a53122010-11-09 23:24:47 +000010786/// Analyze the given simple or compound assignment for warning-worthy
10787/// operations.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010788static void AnalyzeAssignment(Sema &S, BinaryOperator *E) {
John McCalld2a53122010-11-09 23:24:47 +000010789 // 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.
John McCalld25db7e2013-05-06 21:39:12 +000010794 if (FieldDecl *Bitfield = E->getLHS()->getSourceBitField()) {
Timur Iskhodzhanov554bdc62013-03-29 00:22:03 +000010795 if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(),
John McCall1f425642010-11-11 03:21:53 +000010796 E->getOperatorLoc())) {
10797 // Recurse, ignoring any implicit conversions on the RHS.
10798 return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(),
10799 E->getOperatorLoc());
John McCalld2a53122010-11-09 23:24:47 +000010800 }
10801 }
10802
10803 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc());
Richard Smith6822bd72018-10-26 19:26:45 +000010804
JF Bastiene77b48b2018-09-10 20:42:56 +000010805 // Diagnose implicitly sequentially-consistent atomic assignment.
10806 if (E->getLHS()->getType()->isAtomicType())
10807 S.Diag(E->getRHS()->getBeginLoc(), diag::warn_atomic_implicit_seq_cst);
John McCalld2a53122010-11-09 23:24:47 +000010808}
10809
John McCall263a48b2010-01-04 23:31:57 +000010810/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
Fangrui Song6907ce22018-07-30 19:24:48 +000010811static void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010812 SourceLocation CContext, unsigned diag,
10813 bool pruneControlFlow = false) {
Anna Zaks314cd092012-02-01 19:08:57 +000010814 if (pruneControlFlow) {
10815 S.DiagRuntimeBehavior(E->getExprLoc(), E,
10816 S.PDiag(diag)
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000010817 << SourceType << T << E->getSourceRange()
10818 << SourceRange(CContext));
Anna Zaks314cd092012-02-01 19:08:57 +000010819 return;
10820 }
Douglas Gregor364f7db2011-03-12 00:14:31 +000010821 S.Diag(E->getExprLoc(), diag)
10822 << SourceType << T << E->getSourceRange() << SourceRange(CContext);
10823}
10824
Chandler Carruth7f3654f2011-04-05 06:47:57 +000010825/// Diagnose an implicit cast; purely a helper for CheckImplicitConversion.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010826static void DiagnoseImpCast(Sema &S, Expr *E, QualType T,
10827 SourceLocation CContext,
10828 unsigned diag, bool pruneControlFlow = false) {
Anna Zaks314cd092012-02-01 19:08:57 +000010829 DiagnoseImpCast(S, E, E->getType(), T, CContext, diag, pruneControlFlow);
Chandler Carruth7f3654f2011-04-05 06:47:57 +000010830}
10831
Richard Trieube234c32016-04-21 21:04:55 +000010832/// Diagnose an implicit cast from a floating point value to an integer value.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010833static void DiagnoseFloatingImpCast(Sema &S, Expr *E, QualType T,
10834 SourceLocation CContext) {
Richard Trieube234c32016-04-21 21:04:55 +000010835 const bool IsBool = T->isSpecificBuiltinType(BuiltinType::Bool);
Richard Smith51ec0cf2017-02-21 01:17:38 +000010836 const bool PruneWarnings = S.inTemplateInstantiation();
Richard Trieube234c32016-04-21 21:04:55 +000010837
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) {
Richard Trieu891f0f12016-04-22 22:14:32 +000010851 return DiagnoseImpCast(S, E, T, CContext,
10852 diag::warn_impcast_float_integer, PruneWarnings);
Richard Trieube234c32016-04-21 21:04:55 +000010853 }
10854
Chandler Carruth016ef402011-04-10 08:36:24 +000010855 bool isExact = false;
Richard Trieube234c32016-04-21 21:04:55 +000010856
Jeffrey Yasskind0f079d2011-07-15 17:03:07 +000010857 llvm::APSInt IntegerValue(S.Context.getIntWidth(T),
10858 T->hasUnsignedIntegerRepresentation());
Erich Keanea4c48c62018-05-08 21:26:21 +000010859 llvm::APFloat::opStatus Result = Value.convertToInteger(
10860 IntegerValue, llvm::APFloat::rmTowardZero, &isExact);
10861
10862 if (Result == llvm::APFloat::opOK && isExact) {
Richard Trieube234c32016-04-21 21:04:55 +000010863 if (IsLiteral) return;
10864 return DiagnoseImpCast(S, E, T, CContext, diag::warn_impcast_float_integer,
10865 PruneWarnings);
10866 }
10867
Erich Keanea4c48c62018-05-08 21:26:21 +000010868 // 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
Richard Trieua2b8fe62018-05-14 23:21:48 +000010874 : diag::warn_impcast_float_to_integer_out_of_range,
10875 PruneWarnings);
Erich Keanea4c48c62018-05-08 21:26:21 +000010876
Richard Trieube234c32016-04-21 21:04:55 +000010877 unsigned DiagID = 0;
Richard Trieu891f0f12016-04-22 22:14:32 +000010878 if (IsLiteral) {
Richard Trieube234c32016-04-21 21:04:55 +000010879 // 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 }
Chandler Carruth016ef402011-04-10 08:36:24 +000010904
David Bolvansky3cc2ef82018-11-14 14:27:51 +000010905 // 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.
David Blaikie7555b6a2012-05-15 16:56:36 +000010910 SmallString<16> PrettySourceValue;
David Bolvansky3cc2ef82018-11-14 14:27:51 +000010911 unsigned precision = llvm::APFloat::semanticsPrecision(Value.getSemantics());
10912 precision = (precision * 59 + 195) / 196;
10913 Value.toString(PrettySourceValue, precision);
Eli Friedman07185912013-08-29 23:44:43 +000010914
David Blaikie9b88cc02012-05-15 17:18:27 +000010915 SmallString<16> PrettyTargetValue;
Richard Trieube234c32016-04-21 21:04:55 +000010916 if (IsBool)
Aaron Ballmandbc441e2015-12-30 14:26:07 +000010917 PrettyTargetValue = Value.isZero() ? "false" : "true";
David Blaikie7555b6a2012-05-15 16:56:36 +000010918 else
David Blaikie9b88cc02012-05-15 17:18:27 +000010919 IntegerValue.toString(PrettyTargetValue);
David Blaikie7555b6a2012-05-15 16:56:36 +000010920
Richard Trieube234c32016-04-21 21:04:55 +000010921 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 }
Chandler Carruth016ef402011-04-10 08:36:24 +000010932}
10933
Nick Desaulniers1aaf5242018-08-13 16:38:07 +000010934/// Analyze the given compound assignment for the possible losing of
10935/// floating-point precision.
10936static 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
JF Bastiene77b48b2018-09-10 20:42:56 +000010943 if (E->getLHS()->getType()->isAtomicType())
10944 S.Diag(E->getOperatorLoc(), diag::warn_atomic_implicit_seq_cst);
10945
Nick Desaulniers1aaf5242018-08-13 16:38:07 +000010946 // 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
Erik Pilkingtond5b017d2019-02-14 22:48:01 +000010955 // If source is floating point but target is an integer.
10956 if (ResultBT->isInteger())
Erik Pilkingtoneac7c3f2019-02-16 01:11:47 +000010957 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()))
Nick Desaulniers1aaf5242018-08-13 16:38:07 +000010967 // warn about dropping FP rank.
10968 DiagnoseImpCast(S, E->getRHS(), E->getLHS()->getType(), E->getOperatorLoc(),
10969 diag::warn_impcast_float_result_precision);
10970}
10971
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010972static std::string PrettyPrintInRange(const llvm::APSInt &Value,
10973 IntRange Range) {
John McCall18a2c2c2010-11-09 22:22:12 +000010974 if (!Range.Width) return "0";
10975
10976 llvm::APSInt ValueInRange = Value;
10977 ValueInRange.setIsSigned(!Range.NonNegative);
Jay Foad6d4db0c2010-12-07 08:25:34 +000010978 ValueInRange = ValueInRange.trunc(Range.Width);
John McCall18a2c2c2010-11-09 22:22:12 +000010979 return ValueInRange.toString(10);
10980}
10981
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000010982static bool IsImplicitBoolFloatConversion(Sema &S, Expr *Ex, bool ToBool) {
Hans Wennborgf4ad2322012-08-28 15:44:30 +000010983 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
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011001static void CheckImplicitArgumentConversions(Sema &S, CallExpr *TheCall,
11002 SourceLocation CC) {
Hans Wennborgf4ad2322012-08-28 15:44:30 +000011003 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
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011022static void DiagnoseNullConversion(Sema &S, Expr *E, QualType T,
11023 SourceLocation CC) {
Richard Trieu5b993502014-10-15 03:42:06 +000011024 if (S.Diags.isIgnored(diag::warn_impcast_null_pointer_to_integer,
11025 E->getExprLoc()))
11026 return;
11027
Richard Trieu09d6b802016-01-08 23:35:06 +000011028 // Don't warn on functions which have return type nullptr_t.
11029 if (isa<CallExpr>(E))
11030 return;
11031
Richard Trieu5b993502014-10-15 03:42:06 +000011032 // 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
Richard Trieu0a5e1662016-02-13 00:58:53 +000011045 // 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.
George Karpenkov441e8fd2018-02-09 23:30:07 +000011048 Loc = S.SourceMgr.getTopMacroCallerLoc(Loc);
11049 CC = S.SourceMgr.getTopMacroCallerLoc(CC);
Richard Trieu0a5e1662016-02-13 00:58:53 +000011050
Richard Trieu5b993502014-10-15 03:42:06 +000011051 // __null is usually wrapped in a macro. Go up a macro if that is the case.
Richard Trieu0a5e1662016-02-13 00:58:53 +000011052 if (NullKind == Expr::NPCK_GNUNull && Loc.isMacroID()) {
11053 StringRef MacroName = Lexer::getImmediateMacroNameForDiagnostics(
11054 Loc, S.SourceMgr, S.getLangOpts());
11055 if (MacroName == "NULL")
Richard Smithb5f81712018-04-30 05:25:48 +000011056 Loc = S.SourceMgr.getImmediateExpansionRange(Loc).getBegin();
Richard Trieu5b993502014-10-15 03:42:06 +000011057 }
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)
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011064 << (NullKind == Expr::NPCK_CXX11_nullptr) << T << SourceRange(CC)
Richard Trieu5b993502014-10-15 03:42:06 +000011065 << FixItHint::CreateReplacement(Loc,
11066 S.getFixItZeroLiteralForType(T, Loc));
11067}
11068
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011069static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
11070 ObjCArrayLiteral *ArrayLiteral);
11071
11072static void
11073checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
11074 ObjCDictionaryLiteral *DictionaryLiteral);
Douglas Gregor5054cb02015-07-07 03:58:22 +000011075
11076/// Check a single element within a collection literal against the
11077/// target element type.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011078static void checkObjCCollectionLiteralElement(Sema &S,
11079 QualType TargetElementType,
11080 Expr *Element,
11081 unsigned ElementKind) {
Douglas Gregor5054cb02015-07-07 03:58:22 +000011082 // 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) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011096 S.Diag(Element->getBeginLoc(), diag::warn_objc_collection_literal_element)
11097 << ElementType << ElementKind << TargetElementType
11098 << Element->getSourceRange();
Douglas Gregor5054cb02015-07-07 03:58:22 +000011099 }
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.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011109static void checkObjCArrayLiteral(Sema &S, QualType TargetType,
11110 ObjCArrayLiteral *ArrayLiteral) {
Douglas Gregor5054cb02015-07-07 03:58:22 +000011111 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.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011137static void
11138checkObjCDictionaryLiteral(Sema &S, QualType TargetType,
11139 ObjCDictionaryLiteral *DictionaryLiteral) {
Douglas Gregor5054cb02015-07-07 03:58:22 +000011140 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
Richard Trieufc404c72016-02-05 23:02:38 +000011165// Helper function to filter out cases for constant width constant conversion.
11166// Don't warn on char array initialization or for non-decimal values.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011167static bool isSameWidthConstantConversion(Sema &S, Expr *E, QualType T,
11168 SourceLocation CC) {
Richard Trieufc404c72016-02-05 23:02:38 +000011169 // 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 =
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011174 S.getSourceManager().getCharacterData(IntLit->getBeginLoc())[0];
Richard Trieufc404c72016-02-05 23:02:38 +000011175 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
Erik Pilkingtonabffae3a52019-07-09 17:29:40 +000011191static bool isObjCSignedCharBool(Sema &S, QualType Ty) {
11192 return Ty->isSpecificBuiltinType(BuiltinType::SChar) &&
11193 S.getLangOpts().ObjC && S.NSAPIObj->isObjCBOOLType(Ty);
11194}
11195
Ziang Wan87b668b2019-08-01 00:16:43 +000011196static void CheckImplicitConversion(Sema &S, Expr *E, QualType T,
11197 SourceLocation CC,
11198 bool *ICContext = nullptr,
11199 bool IsListInit = false) {
John McCallcc7e5bf2010-05-06 08:58:33 +000011200 if (E->isTypeDependent() || E->isValueDependent()) return;
John McCall263a48b2010-01-04 23:31:57 +000011201
John McCallcc7e5bf2010-05-06 08:58:33 +000011202 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;
John McCall263a48b2010-01-04 23:31:57 +000011206
Chandler Carruthc22845a2011-07-26 05:40:03 +000011207 // 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.
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011212 if (CC.isInvalid())
John McCallacf0ee52010-10-08 02:01:28 +000011213 return;
11214
JF Bastiene77b48b2018-09-10 20:42:56 +000011215 if (Source->isAtomicType())
11216 S.Diag(E->getExprLoc(), diag::warn_atomic_implicit_seq_cst);
11217
Richard Trieu021baa32011-09-23 20:10:00 +000011218 // 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
Richard Trieu955231d2014-01-25 01:10:35 +000011222 // and expressions, for instance, assert(0 && "error here"), are
11223 // prevented by a check in AnalyzeImplicitConversions().
Richard Trieu021baa32011-09-23 20:10:00 +000011224 return DiagnoseImpCast(S, E, T, CC,
11225 diag::warn_impcast_string_literal_to_bool);
Richard Trieu1e632af2014-01-28 23:40:26 +000011226 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 }
Richard Trieu3bb8b562014-02-26 02:36:06 +000011233 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));
Lang Hamesdf5c1212011-12-05 20:49:50 +000011237 }
Richard Trieu021baa32011-09-23 20:10:00 +000011238 }
John McCall263a48b2010-01-04 23:31:57 +000011239
Erik Pilkingtonabffae3a52019-07-09 17:29:40 +000011240 // 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
Douglas Gregor5054cb02015-07-07 03:58:22 +000011263 // 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
John McCall263a48b2010-01-04 23:31:57 +000011270 // Strip vector types.
11271 if (isa<VectorType>(Source)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011272 if (!isa<VectorType>(Target)) {
Matt Beaumont-Gay7a57ada2012-01-06 22:43:58 +000011273 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011274 return;
John McCallacf0ee52010-10-08 02:01:28 +000011275 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar);
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011276 }
Andrew V. Tischenko5704dc02018-03-15 10:03:35 +000011277
Chris Lattneree7286f2011-06-14 04:51:15 +000011278 // 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;
John McCall263a48b2010-01-04 23:31:57 +000011282
11283 Source = cast<VectorType>(Source)->getElementType().getTypePtr();
11284 Target = cast<VectorType>(Target)->getElementType().getTypePtr();
11285 }
Stephen Canon3ba640d2014-04-03 10:33:25 +000011286 if (auto VecTy = dyn_cast<VectorType>(Target))
11287 Target = VecTy->getElementType().getTypePtr();
John McCall263a48b2010-01-04 23:31:57 +000011288
11289 // Strip complex types.
11290 if (isa<ComplexType>(Source)) {
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011291 if (!isa<ComplexType>(Target)) {
Tim Northover02416372017-08-08 23:18:05 +000011292 if (S.SourceMgr.isInSystemMacro(CC) || Target->isBooleanType())
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011293 return;
11294
Tim Northover02416372017-08-08 23:18:05 +000011295 return DiagnoseImpCast(S, E, T, CC,
11296 S.getLangOpts().CPlusPlus
11297 ? diag::err_impcast_complex_scalar
11298 : diag::warn_impcast_complex_scalar);
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011299 }
John McCall263a48b2010-01-04 23:31:57 +000011300
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
Erik Pilkingtoneac7c3f2019-02-16 01:11:47 +000011314 int Order = S.getASTContext().getFloatingTypeSemanticOrder(
11315 QualType(SourceBT, 0), QualType(TargetBT, 0));
11316 if (Order > 0) {
John McCall263a48b2010-01-04 23:31:57 +000011317 // Don't warn about float constants that are precisely
11318 // representable in the target type.
11319 Expr::EvalResult result;
Richard Smith7b553f12011-10-29 00:50:52 +000011320 if (E->EvaluateAsRValue(result, S.Context)) {
John McCall263a48b2010-01-04 23:31:57 +000011321 // Value might be a float, a float vector, or a float complex.
11322 if (IsSameFloatAfterCast(result.Val,
John McCallcc7e5bf2010-05-06 08:58:33 +000011323 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)),
11324 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0))))
John McCall263a48b2010-01-04 23:31:57 +000011325 return;
11326 }
11327
Matt Beaumont-Gay7a57ada2012-01-06 22:43:58 +000011328 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011329 return;
11330
John McCallacf0ee52010-10-08 02:01:28 +000011331 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision);
George Burgess IV148e0d32015-10-29 00:28:52 +000011332 }
11333 // ... or possibly if we're increasing rank, too
Erik Pilkingtoneac7c3f2019-02-16 01:11:47 +000011334 else if (Order < 0) {
George Burgess IV148e0d32015-10-29 00:28:52 +000011335 if (S.SourceMgr.isInSystemMacro(CC))
11336 return;
11337
11338 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_double_promotion);
John McCall263a48b2010-01-04 23:31:57 +000011339 }
11340 return;
11341 }
11342
Richard Trieube234c32016-04-21 21:04:55 +000011343 // If the target is integral, always warn.
David Blaikie7555b6a2012-05-15 16:56:36 +000011344 if (TargetBT && TargetBT->isInteger()) {
Matt Beaumont-Gay7a57ada2012-01-06 22:43:58 +000011345 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011346 return;
Matt Beaumont-Gay042ce8e2011-09-08 22:30:47 +000011347
Richard Trieube234c32016-04-21 21:04:55 +000011348 DiagnoseFloatingImpCast(S, E, T, CC);
Chandler Carruth22c7a792011-02-17 11:05:49 +000011349 }
John McCall263a48b2010-01-04 23:31:57 +000011350
Richard Smith54894fd2015-12-30 01:06:52 +000011351 // 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)) {
Hans Wennborgf4ad2322012-08-28 15:44:30 +000011360 // 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);
Richard Smith54894fd2015-12-30 01:06:52 +000011364 if (unsigned NumArgs = CEx->getNumArgs()) {
Hans Wennborgf4ad2322012-08-28 15:44:30 +000011365 Expr *LastA = CEx->getArg(NumArgs - 1);
11366 Expr *InnerE = LastA->IgnoreParenImpCasts();
Richard Smith54894fd2015-12-30 01:06:52 +000011367 if (isa<ImplicitCastExpr>(LastA) &&
11368 InnerE->getType()->isBooleanType()) {
Hans Wennborgf4ad2322012-08-28 15:44:30 +000011369 // 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 }
John McCall263a48b2010-01-04 23:31:57 +000011375 return;
11376 }
11377
Leonard Chan8f7caae2019-03-06 00:28:43 +000011378 // Valid casts involving fixed point types should be accounted for here.
Leonard Chand3f3e162019-01-18 21:04:25 +000011379 if (Source->isFixedPointType()) {
Leonard Chan8f7caae2019-03-06 00:28:43 +000011380 if (Target->isUnsaturatedFixedPointType()) {
Leonard Chand3f3e162019-01-18 21:04:25 +000011381 Expr::EvalResult Result;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000011382 if (E->EvaluateAsFixedPoint(Result, S.Context, Expr::SE_AllowSideEffects,
11383 S.isConstantEvaluated())) {
Leonard Chand3f3e162019-01-18 21:04:25 +000011384 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 }
Leonard Chan8f7caae2019-03-06 00:28:43 +000011396 } else if (Target->isIntegerType()) {
11397 Expr::EvalResult Result;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000011398 if (!S.isConstantEvaluated() &&
11399 E->EvaluateAsFixedPoint(Result, S.Context,
Leonard Chan8f7caae2019-03-06 00:28:43 +000011400 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;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000011421 if (!S.isConstantEvaluated() &&
11422 E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects)) {
Leonard Chan8f7caae2019-03-06 00:28:43 +000011423 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)
Rui Ueyama49a3ad22019-07-16 04:46:31 +000011432 << Value.toString(/*Radix=*/10) << T
Leonard Chan8f7caae2019-03-06 00:28:43 +000011433 << E->getSourceRange()
11434 << clang::SourceRange(CC));
11435 return;
11436 }
11437 }
Leonard Chand3f3e162019-01-18 21:04:25 +000011438 }
11439 }
11440
Ziang Wan87b668b2019-08-01 00:16:43 +000011441 // 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
Richard Trieu5b993502014-10-15 03:42:06 +000011489 DiagnoseNullConversion(S, E, T, CC);
Richard Trieubeaf3452011-05-29 19:59:02 +000011490
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000011491 S.DiscardMisalignedMemberAddress(Target, E);
11492
David Blaikie9366d2b2012-06-19 21:19:06 +000011493 if (!Source->isIntegerType() || !Target->isIntegerType())
11494 return;
11495
David Blaikie7555b6a2012-05-15 16:56:36 +000011496 // 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
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000011501 IntRange SourceRange = GetExprRange(S.Context, E, S.isConstantEvaluated());
John McCall817d4af2010-11-10 23:38:19 +000011502 IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target);
John McCall70aa5392010-01-06 05:24:50 +000011503
Timur Iskhodzhanov554bdc62013-03-29 00:22:03 +000011504 if (SourceRange.Width > TargetRange.Width) {
Sam Panzer6fffec62013-03-28 19:07:11 +000011505 // If the source is a constant, use a default-on diagnostic.
Timur Iskhodzhanov554bdc62013-03-29 00:22:03 +000011506 // TODO: this should happen for bitfield stores, too.
Fangrui Song407659a2018-11-30 23:41:18 +000011507 Expr::EvalResult Result;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000011508 if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects,
11509 S.isConstantEvaluated())) {
Fangrui Song407659a2018-11-30 23:41:18 +000011510 llvm::APSInt Value(32);
11511 Value = Result.Val.getInt();
11512
Timur Iskhodzhanov554bdc62013-03-29 00:22:03 +000011513 if (S.SourceMgr.isInSystemMacro(CC))
11514 return;
11515
John McCall18a2c2c2010-11-09 22:22:12 +000011516 std::string PrettySourceValue = Value.toString(10);
11517 std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
Timur Iskhodzhanov554bdc62013-03-29 00:22:03 +000011518
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000011519 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));
John McCall18a2c2c2010-11-09 22:22:12 +000011524 return;
11525 }
11526
Timur Iskhodzhanov554bdc62013-03-29 00:22:03 +000011527 // People want to build with -Wshorten-64-to-32 and not -Wconversion.
11528 if (S.SourceMgr.isInSystemMacro(CC))
11529 return;
11530
David Blaikie9455da02012-04-12 22:40:54 +000011531 if (TargetRange.Width == 32 && S.Context.getIntWidth(E->getType()) == 64)
Anna Zaks314cd092012-02-01 19:08:57 +000011532 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32,
11533 /* pruneControlFlow */ true);
John McCallacf0ee52010-10-08 02:01:28 +000011534 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision);
John McCallcc7e5bf2010-05-06 08:58:33 +000011535 }
11536
David Bolvanskycf7d2252018-10-02 06:02:30 +000011537 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
Richard Trieudcb55572016-01-29 23:51:16 +000011550 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
Fangrui Song407659a2018-11-30 23:41:18 +000011556 Expr::EvalResult Result;
11557 if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects) &&
Richard Trieufc404c72016-02-05 23:02:38 +000011558 !S.SourceMgr.isInSystemMacro(CC)) {
Fangrui Song407659a2018-11-30 23:41:18 +000011559 llvm::APSInt Value = Result.Val.getInt();
Richard Trieufc404c72016-02-05 23:02:38 +000011560 if (isSameWidthConstantConversion(S, E, T, CC)) {
11561 std::string PrettySourceValue = Value.toString(10);
11562 std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange);
Richard Trieudcb55572016-01-29 23:51:16 +000011563
Richard Trieufc404c72016-02-05 23:02:38 +000011564 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;
Richard Trieudcb55572016-01-29 23:51:16 +000011570 }
11571 }
Richard Trieufc404c72016-02-05 23:02:38 +000011572
Richard Trieudcb55572016-01-29 23:51:16 +000011573 // Fall through for non-constants to give a sign conversion warning.
11574 }
11575
John McCallcc7e5bf2010-05-06 08:58:33 +000011576 if ((TargetRange.NonNegative && !SourceRange.NonNegative) ||
11577 (!TargetRange.NonNegative && SourceRange.NonNegative &&
11578 SourceRange.Width == TargetRange.Width)) {
Matt Beaumont-Gay7a57ada2012-01-06 22:43:58 +000011579 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011580 return;
11581
John McCallcc7e5bf2010-05-06 08:58:33 +000011582 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.
Fangrui Song6907ce22018-07-30 19:24:48 +000011588 // The conditional-checking code will
John McCallcc7e5bf2010-05-06 08:58:33 +000011589 if (ICContext) {
11590 DiagID = diag::warn_impcast_integer_sign_conditional;
11591 *ICContext = true;
11592 }
11593
John McCallacf0ee52010-10-08 02:01:28 +000011594 return DiagnoseImpCast(S, E, T, CC, DiagID);
John McCall263a48b2010-01-04 23:31:57 +000011595 }
11596
Douglas Gregora78f1932011-02-22 02:45:07 +000011597 // Diagnose conversions between different enumeration types.
Douglas Gregor364f7db2011-03-12 00:14:31 +000011598 // 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();
David Blaikiebbafb8a2012-03-11 07:00:24 +000011601 if (!S.getLangOpts().CPlusPlus) {
Douglas Gregor364f7db2011-03-12 00:14:31 +000011602 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 }
Fangrui Song6907ce22018-07-30 19:24:48 +000011609
Douglas Gregora78f1932011-02-22 02:45:07 +000011610 if (const EnumType *SourceEnum = Source->getAs<EnumType>())
11611 if (const EnumType *TargetEnum = Target->getAs<EnumType>())
John McCall5ea95772013-03-09 00:54:27 +000011612 if (SourceEnum->getDecl()->hasNameForLinkage() &&
11613 TargetEnum->getDecl()->hasNameForLinkage() &&
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011614 SourceEnum != TargetEnum) {
Matt Beaumont-Gay7a57ada2012-01-06 22:43:58 +000011615 if (S.SourceMgr.isInSystemMacro(CC))
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011616 return;
11617
Fangrui Song6907ce22018-07-30 19:24:48 +000011618 return DiagnoseImpCast(S, E, SourceType, T, CC,
Douglas Gregora78f1932011-02-22 02:45:07 +000011619 diag::warn_impcast_different_enum_types);
Ted Kremenek4c0826c2011-03-10 20:03:42 +000011620 }
John McCall263a48b2010-01-04 23:31:57 +000011621}
11622
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011623static void CheckConditionalOperator(Sema &S, ConditionalOperator *E,
11624 SourceLocation CC, QualType T);
John McCallcc7e5bf2010-05-06 08:58:33 +000011625
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011626static void CheckConditionalOperand(Sema &S, Expr *E, QualType T,
11627 SourceLocation CC, bool &ICContext) {
John McCallcc7e5bf2010-05-06 08:58:33 +000011628 E = E->IgnoreParenImpCasts();
11629
11630 if (isa<ConditionalOperator>(E))
David Blaikie18e9ac72012-05-15 21:57:38 +000011631 return CheckConditionalOperator(S, cast<ConditionalOperator>(E), CC, T);
John McCallcc7e5bf2010-05-06 08:58:33 +000011632
John McCallacf0ee52010-10-08 02:01:28 +000011633 AnalyzeImplicitConversions(S, E, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +000011634 if (E->getType() != T)
John McCallacf0ee52010-10-08 02:01:28 +000011635 return CheckImplicitConversion(S, E, T, CC, &ICContext);
John McCallcc7e5bf2010-05-06 08:58:33 +000011636}
11637
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011638static void CheckConditionalOperator(Sema &S, ConditionalOperator *E,
11639 SourceLocation CC, QualType T) {
Richard Trieubd3305b2014-08-07 02:09:05 +000011640 AnalyzeImplicitConversions(S, E->getCond(), E->getQuestionLoc());
John McCallcc7e5bf2010-05-06 08:58:33 +000011641
11642 bool Suspicious = false;
John McCallacf0ee52010-10-08 02:01:28 +000011643 CheckConditionalOperand(S, E->getTrueExpr(), T, CC, Suspicious);
11644 CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious);
John McCallcc7e5bf2010-05-06 08:58:33 +000011645
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...
Alp Tokerd4a3f0e2014-06-15 23:30:39 +000011651 if (!S.Diags.isIgnored(diag::warn_impcast_integer_sign_conditional, CC))
John McCallcc7e5bf2010-05-06 08:58:33 +000011652 return;
11653
John McCallcc7e5bf2010-05-06 08:58:33 +000011654 // ...then check whether it would have warned about either of the
11655 // candidates for a signedness conversion to the condition type.
Richard Trieubb43dec2011-07-21 02:46:28 +000011656 if (E->getType() == T) return;
Fangrui Song6907ce22018-07-30 19:24:48 +000011657
Richard Trieubb43dec2011-07-21 02:46:28 +000011658 Suspicious = false;
11659 CheckImplicitConversion(S, E->getTrueExpr()->IgnoreParenImpCasts(),
11660 E->getType(), CC, &Suspicious);
11661 if (!Suspicious)
11662 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(),
John McCallacf0ee52010-10-08 02:01:28 +000011663 E->getType(), CC, &Suspicious);
John McCallcc7e5bf2010-05-06 08:58:33 +000011664}
11665
JF Bastiene77b48b2018-09-10 20:42:56 +000011666/// Check conversion of given expression to boolean.
Richard Trieu65724892014-11-15 06:37:39 +000011667/// Input argument E is a logical expression.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000011668static void CheckBoolLikeConversion(Sema &S, Expr *E, SourceLocation CC) {
Richard Trieu65724892014-11-15 06:37:39 +000011669 if (S.getLangOpts().Bool)
11670 return;
JF Bastiene77b48b2018-09-10 20:42:56 +000011671 if (E->IgnoreParenImpCasts()->getType()->isAtomicType())
11672 return;
Richard Trieu65724892014-11-15 06:37:39 +000011673 CheckImplicitConversion(S, E->IgnoreParenImpCasts(), S.Context.BoolTy, CC);
11674}
11675
John McCallcc7e5bf2010-05-06 08:58:33 +000011676/// 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.
Ziang Wan87b668b2019-08-01 00:16:43 +000011679static void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC,
11680 bool IsListInit/*= false*/) {
Fariborz Jahanian148c8c82014-04-07 16:32:54 +000011681 QualType T = OrigE->getType();
John McCallcc7e5bf2010-05-06 08:58:33 +000011682 Expr *E = OrigE->IgnoreParenImpCasts();
11683
Ziang Wan87b668b2019-08-01 00:16:43 +000011684 // 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
Douglas Gregor6e8da6a2011-10-10 17:38:18 +000011690 if (E->isTypeDependent() || E->isValueDependent())
11691 return;
Andrew V. Tischenko5704dc02018-03-15 10:03:35 +000011692
John McCallcc7e5bf2010-05-06 08:58:33 +000011693 // 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);
David Blaikie18e9ac72012-05-15 21:57:38 +000011697 CheckConditionalOperator(S, CO, CC, T);
John McCallcc7e5bf2010-05-06 08:58:33 +000011698 return;
11699 }
11700
Hans Wennborgf4ad2322012-08-28 15:44:30 +000011701 // Check implicit argument conversions for function calls.
11702 if (CallExpr *Call = dyn_cast<CallExpr>(E))
11703 CheckImplicitArgumentConversions(S, Call, CC);
11704
John McCallcc7e5bf2010-05-06 08:58:33 +000011705 // 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)
Ziang Wan87b668b2019-08-01 00:16:43 +000011709 CheckImplicitConversion(S, E, T, CC, nullptr, IsListInit);
John McCallcc7e5bf2010-05-06 08:58:33 +000011710
11711 // Now continue drilling into this expression.
Richard Smithd7bed4d2015-11-22 02:57:17 +000011712
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))
Ziang Wan87b668b2019-08-01 00:16:43 +000011719 AnalyzeImplicitConversions(S, OVE->getSourceExpr(), CC, IsListInit);
Fariborz Jahanian2cb4a952013-05-15 19:03:04 +000011720 }
Richard Smithd7bed4d2015-11-22 02:57:17 +000011721
John McCallcc7e5bf2010-05-06 08:58:33 +000011722 // Skip past explicit casts.
JF Bastiene77b48b2018-09-10 20:42:56 +000011723 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);
Ziang Wan87b668b2019-08-01 00:16:43 +000011727 return AnalyzeImplicitConversions(S, E, CC, IsListInit);
John McCallcc7e5bf2010-05-06 08:58:33 +000011728 }
11729
John McCalld2a53122010-11-09 23:24:47 +000011730 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
Timur Iskhodzhanov554bdc62013-03-29 00:22:03 +000011735 // And with simple assignments.
11736 if (BO->getOpcode() == BO_Assign)
John McCalld2a53122010-11-09 23:24:47 +000011737 return AnalyzeAssignment(S, BO);
Andrew V. Tischenko5704dc02018-03-15 10:03:35 +000011738 // And with compound assignments.
11739 if (BO->isAssignmentOp())
11740 return AnalyzeCompoundAssignment(S, BO);
John McCalld2a53122010-11-09 23:24:47 +000011741 }
John McCallcc7e5bf2010-05-06 08:58:33 +000011742
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.
Peter Collingbournee190dee2011-03-11 19:24:49 +000011750 if (isa<UnaryExprOrTypeTraitExpr>(E)) return;
John McCallcc7e5bf2010-05-06 08:58:33 +000011751
11752 // Now just recurse over the expression's children.
John McCallacf0ee52010-10-08 02:01:28 +000011753 CC = E->getExprLoc();
Richard Trieu021baa32011-09-23 20:10:00 +000011754 BinaryOperator *BO = dyn_cast<BinaryOperator>(E);
Richard Trieu955231d2014-01-25 01:10:35 +000011755 bool IsLogicalAndOperator = BO && BO->getOpcode() == BO_LAnd;
Benjamin Kramer642f1732015-07-02 21:03:14 +000011756 for (Stmt *SubStmt : E->children()) {
11757 Expr *ChildExpr = dyn_cast_or_null<Expr>(SubStmt);
Douglas Gregor8c50e7c2012-02-09 00:47:04 +000011758 if (!ChildExpr)
11759 continue;
11760
Richard Trieu955231d2014-01-25 01:10:35 +000011761 if (IsLogicalAndOperator &&
Richard Trieu021baa32011-09-23 20:10:00 +000011762 isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts()))
Richard Trieu955231d2014-01-25 01:10:35 +000011763 // Ignore checking string literals that are in logical and operators.
11764 // This is a common pattern for asserts.
Richard Trieu021baa32011-09-23 20:10:00 +000011765 continue;
Ziang Wan87b668b2019-08-01 00:16:43 +000011766 AnalyzeImplicitConversions(S, ChildExpr, CC, IsListInit);
Richard Trieu021baa32011-09-23 20:10:00 +000011767 }
Richard Trieu791b86e2014-11-19 06:08:18 +000011768
Fariborz Jahanianb7859dd2014-11-14 17:12:50 +000011769 if (BO && BO->isLogicalOp()) {
Richard Trieu791b86e2014-11-19 06:08:18 +000011770 Expr *SubExpr = BO->getLHS()->IgnoreParenImpCasts();
11771 if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr))
Fariborz Jahanian0fc95ad2014-12-18 23:14:51 +000011772 ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc());
Richard Trieu791b86e2014-11-19 06:08:18 +000011773
11774 SubExpr = BO->getRHS()->IgnoreParenImpCasts();
11775 if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr))
Fariborz Jahanian0fc95ad2014-12-18 23:14:51 +000011776 ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc());
Fariborz Jahanianb7859dd2014-11-14 17:12:50 +000011777 }
Richard Trieu791b86e2014-11-19 06:08:18 +000011778
JF Bastiene77b48b2018-09-10 20:42:56 +000011779 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(E)) {
11780 if (U->getOpcode() == UO_LNot) {
Richard Trieu65724892014-11-15 06:37:39 +000011781 ::CheckBoolLikeConversion(S, U->getSubExpr(), CC);
JF Bastiene77b48b2018-09-10 20:42:56 +000011782 } 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 }
John McCallcc7e5bf2010-05-06 08:58:33 +000011788}
11789
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +000011790/// Diagnose integer type and any valid implicit conversion to it.
Anastasia Stulova0df4ac32016-11-14 17:39:58 +000011791static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E, const QualType &IntT) {
11792 // Taking into account implicit conversions,
11793 // allow any integer.
11794 if (!E->getType()->isIntegerType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011795 S.Diag(E->getBeginLoc(),
Anastasia Stulova0df4ac32016-11-14 17:39:58 +000011796 diag::err_opencl_enqueue_kernel_invalid_local_size_type);
11797 return true;
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +000011798 }
Anastasia Stulova0df4ac32016-11-14 17:39:58 +000011799 // Potentially emit standard warnings for implicit conversions if enabled
11800 // using -Wconversion.
Stephen Kellyf2ceec42018-08-09 21:08:08 +000011801 CheckImplicitConversion(S, E, IntT, E->getBeginLoc());
Anastasia Stulova0df4ac32016-11-14 17:39:58 +000011802 return false;
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +000011803}
11804
Richard Trieuc1888e02014-06-28 23:25:37 +000011805// Helper function for Sema::DiagnoseAlwaysNonNullPointer.
11806// Returns true when emitting a warning about taking the address of a reference.
11807static bool CheckForReference(Sema &SemaRef, const Expr *E,
Benjamin Kramer7320b992016-06-15 14:20:56 +000011808 const PartialDiagnostic &PD) {
Richard Trieuc1888e02014-06-28 23:25:37 +000011809 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)) {
David Majnemerced8bdf2015-02-25 17:36:15 +000011820 if (!Call->getCallReturnType(SemaRef.Context)->isReferenceType())
Richard Trieuc1888e02014-06-28 23:25:37 +000011821 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
Richard Trieu4cbff5c2014-08-08 22:41:43 +000011837// 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.
11840static 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000011853/// Diagnose pointers that are always non-null.
Richard Trieu3bb8b562014-02-26 02:36:06 +000011854/// \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
11859void Sema::DiagnoseAlwaysNonNullPointer(Expr *E,
11860 Expr::NullPointerConstantKind NullKind,
11861 bool IsEqual, SourceRange Range) {
Richard Trieuddd01ce2014-06-09 22:53:25 +000011862 if (!E)
11863 return;
Richard Trieu3bb8b562014-02-26 02:36:06 +000011864
11865 // Don't warn inside macros.
Richard Trieu4cbff5c2014-08-08 22:41:43 +000011866 if (E->getExprLoc().isMacroID()) {
11867 const SourceManager &SM = getSourceManager();
11868 if (IsInAnyMacroBody(SM, E->getExprLoc()) ||
11869 IsInAnyMacroBody(SM, Range.getBegin()))
Richard Trieu3bb8b562014-02-26 02:36:06 +000011870 return;
Richard Trieu4cbff5c2014-08-08 22:41:43 +000011871 }
Richard Trieu3bb8b562014-02-26 02:36:06 +000011872 E = E->IgnoreImpCasts();
11873
11874 const bool IsCompare = NullKind != Expr::NPCK_NotNull;
11875
Richard Trieuf7432752014-06-06 21:39:26 +000011876 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
Richard Trieu3bb8b562014-02-26 02:36:06 +000011883 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
Richard Trieuc1888e02014-06-28 23:25:37 +000011892 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
Nick Lewyckybc85ec82016-06-15 05:18:39 +000011903 auto ComplainAboutNonnullParamOrCall = [&](const Attr *NonnullAttr) {
11904 bool IsParam = isa<NonNullAttr>(NonnullAttr);
George Burgess IV850269a2015-12-08 22:02:00 +000011905 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;
Nick Lewyckybc85ec82016-06-15 05:18:39 +000011912 Diag(NonnullAttr->getLocation(), diag::note_declared_nonnull) << IsParam;
George Burgess IV850269a2015-12-08 22:02:00 +000011913 };
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()) {
Nick Lewyckybc85ec82016-06-15 05:18:39 +000011918 if (const Attr *A = Callee->getAttr<ReturnsNonNullAttr>()) {
11919 ComplainAboutNonnullParamOrCall(A);
George Burgess IV850269a2015-12-08 22:02:00 +000011920 return;
11921 }
11922 }
11923 }
11924
Richard Trieu3bb8b562014-02-26 02:36:06 +000011925 // Expect to find a single Decl. Skip anything more complicated.
Craig Topperc3ec1492014-05-26 06:22:03 +000011926 ValueDecl *D = nullptr;
Richard Trieu3bb8b562014-02-26 02:36:06 +000011927 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;
George Burgess IV850269a2015-12-08 22:02:00 +000011936
Fariborz Jahanianef202d92014-11-18 21:57:54 +000011937 // Check for parameter decl with nonnull attribute
George Burgess IV850269a2015-12-08 22:02:00 +000011938 if (const auto* PV = dyn_cast<ParmVarDecl>(D)) {
11939 if (getCurFunction() &&
11940 !getCurFunction()->ModifiedNonNullParams.count(PV)) {
Nick Lewyckybc85ec82016-06-15 05:18:39 +000011941 if (const Attr *A = PV->getAttr<NonNullAttr>()) {
11942 ComplainAboutNonnullParamOrCall(A);
George Burgess IV850269a2015-12-08 22:02:00 +000011943 return;
11944 }
11945
11946 if (const auto *FD = dyn_cast<FunctionDecl>(PV->getDeclContext())) {
Michael Liaoce389922019-03-29 03:55:52 +000011947 // Skip function template not specialized yet.
11948 if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate)
11949 return;
David Majnemera3debed2016-06-24 05:33:44 +000011950 auto ParamIter = llvm::find(FD->parameters(), PV);
George Burgess IV850269a2015-12-08 22:02:00 +000011951 assert(ParamIter != FD->param_end());
11952 unsigned ParamNo = std::distance(FD->param_begin(), ParamIter);
11953
Fariborz Jahanianef202d92014-11-18 21:57:54 +000011954 for (const auto *NonNull : FD->specific_attrs<NonNullAttr>()) {
11955 if (!NonNull->args_size()) {
Nick Lewyckybc85ec82016-06-15 05:18:39 +000011956 ComplainAboutNonnullParamOrCall(NonNull);
George Burgess IV850269a2015-12-08 22:02:00 +000011957 return;
Fariborz Jahanianef202d92014-11-18 21:57:54 +000011958 }
George Burgess IV850269a2015-12-08 22:02:00 +000011959
Joel E. Denny81508102018-03-13 14:51:22 +000011960 for (const ParamIdx &ArgNo : NonNull->args()) {
11961 if (ArgNo.getASTIndex() == ParamNo) {
Nick Lewyckybc85ec82016-06-15 05:18:39 +000011962 ComplainAboutNonnullParamOrCall(NonNull);
Fariborz Jahanianef202d92014-11-18 21:57:54 +000011963 return;
11964 }
George Burgess IV850269a2015-12-08 22:02:00 +000011965 }
11966 }
Fariborz Jahanianef202d92014-11-18 21:57:54 +000011967 }
11968 }
George Burgess IV850269a2015-12-08 22:02:00 +000011969 }
11970
Richard Trieu3bb8b562014-02-26 02:36:06 +000011971 QualType T = D->getType();
11972 const bool IsArray = T->isArrayType();
11973 const bool IsFunction = T->isFunctionType();
11974
Richard Trieuc1888e02014-06-28 23:25:37 +000011975 // Address of function is used to silence the function warning.
11976 if (IsAddressOf && IsFunction) {
11977 return;
Richard Trieu3bb8b562014-02-26 02:36:06 +000011978 }
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);
Craig Topperc3ec1492014-05-26 06:22:03 +000011987 E->printPretty(S, nullptr, getPrintingPolicy());
Richard Trieu3bb8b562014-02-26 02:36:06 +000011988
11989 unsigned DiagID = IsCompare ? diag::warn_null_pointer_compare
11990 : diag::warn_impcast_pointer_to_bool;
Craig Topperfa1340f2015-12-23 05:44:46 +000011991 enum {
11992 AddressOf,
11993 FunctionPointer,
11994 ArrayPointer
11995 } DiagType;
Richard Trieu3bb8b562014-02-26 02:36:06 +000011996 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +000012012 << FixItHint::CreateInsertion(E->getBeginLoc(), "&");
Richard Trieu3bb8b562014-02-26 02:36:06 +000012013
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)
Stephen Kelly1c301dc2018-08-09 21:09:38 +000012041 << FixItHint::CreateInsertion(getLocForEndOfToken(E->getEndLoc()), "()");
Richard Trieu3bb8b562014-02-26 02:36:06 +000012042}
12043
John McCallcc7e5bf2010-05-06 08:58:33 +000012044/// Diagnoses "dangerous" implicit conversions within the given
12045/// expression (which is a full expression). Implements -Wconversion
12046/// and -Wsign-compare.
John McCallacf0ee52010-10-08 02:01:28 +000012047///
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
12051void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) {
John McCallcc7e5bf2010-05-06 08:58:33 +000012052 // Don't diagnose in unevaluated contexts.
David Blaikie131fcb42012-08-06 22:47:24 +000012053 if (isUnevaluatedContext())
John McCallcc7e5bf2010-05-06 08:58:33 +000012054 return;
12055
12056 // Don't diagnose for value- or type-dependent expressions.
12057 if (E->isTypeDependent() || E->isValueDependent())
12058 return;
12059
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012060 // 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
John McCallacf0ee52010-10-08 02:01:28 +000012065 // This is not the right CC for (e.g.) a variable initialization.
12066 AnalyzeImplicitConversions(*this, E, CC);
John McCallcc7e5bf2010-05-06 08:58:33 +000012067}
12068
Richard Trieu65724892014-11-15 06:37:39 +000012069/// CheckBoolLikeConversion - Check conversion of given expression to boolean.
12070/// Input argument E is a logical expression.
12071void Sema::CheckBoolLikeConversion(Expr *E, SourceLocation CC) {
12072 ::CheckBoolLikeConversion(*this, E, CC);
12073}
12074
Richard Smith9f7df0c2017-06-26 23:19:32 +000012075/// Diagnose when expression is an integer constant expression and its evaluation
12076/// results in integer overflow
12077void 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 {
Volodymyr Sapsaica7902f2018-03-27 21:29:05 +000012082 Expr *OriginalE = Exprs.pop_back_val();
12083 Expr *E = OriginalE->IgnoreParenCasts();
Richard Smith9f7df0c2017-06-26 23:19:32 +000012084
Volodymyr Sapsaica7902f2018-03-27 21:29:05 +000012085 if (isa<BinaryOperator>(E)) {
12086 E->EvaluateForOverflow(Context);
Richard Smith9f7df0c2017-06-26 23:19:32 +000012087 continue;
12088 }
12089
Volodymyr Sapsaica7902f2018-03-27 21:29:05 +000012090 if (auto InitList = dyn_cast<InitListExpr>(OriginalE))
Richard Smith9f7df0c2017-06-26 23:19:32 +000012091 Exprs.append(InitList->inits().begin(), InitList->inits().end());
Volodymyr Sapsaica7902f2018-03-27 21:29:05 +000012092 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());
Richard Smith9f7df0c2017-06-26 23:19:32 +000012098 } while (!Exprs.empty());
12099}
12100
Richard Smithc406cb72013-01-17 01:17:56 +000012101namespace {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012102
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012103/// Visitor for expressions which looks for unsequenced operations on the
Richard Smithc406cb72013-01-17 01:17:56 +000012104/// same object.
12105class SequenceChecker : public EvaluatedExprVisitor<SequenceChecker> {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012106 using Base = EvaluatedExprVisitor<SequenceChecker>;
Richard Smithe3dbfe02013-06-30 10:40:20 +000012107
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012108 /// A tree of sequenced regions within an expression. Two regions are
Richard Smithc406cb72013-01-17 01:17:56 +000012109 /// 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;
Aaron Ballmanaffa1c32016-07-06 18:33:01 +000012117 unsigned Merged : 1;
Richard Smithc406cb72013-01-17 01:17:56 +000012118 };
Robert Wilhelmb869a8f2013-08-10 12:33:24 +000012119 SmallVector<Value, 8> Values;
Richard Smithc406cb72013-01-17 01:17:56 +000012120
12121 public:
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012122 /// A region within an expression which may be sequenced with respect
Richard Smithc406cb72013-01-17 01:17:56 +000012123 /// to some other region.
12124 class Seq {
Richard Smithc406cb72013-01-17 01:17:56 +000012125 friend class SequenceTree;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012126
Serge Gueltonbe885392019-01-20 21:19:56 +000012127 unsigned Index;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012128
12129 explicit Seq(unsigned N) : Index(N) {}
12130
Richard Smithc406cb72013-01-17 01:17:56 +000012131 public:
Serge Gueltonbe885392019-01-20 21:19:56 +000012132 Seq() : Index(0) {}
Richard Smithc406cb72013-01-17 01:17:56 +000012133 };
12134
12135 SequenceTree() { Values.push_back(Value(0)); }
12136 Seq root() const { return Seq(0); }
12137
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012138 /// Create a new sequence of operations, which is an unsequenced
Richard Smithc406cb72013-01-17 01:17:56 +000012139 /// 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012146 /// Merge a sequence of operations into its parent.
Richard Smithc406cb72013-01-17 01:17:56 +000012147 void merge(Seq S) {
12148 Values[S.Index].Merged = true;
12149 }
12150
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012151 /// Determine whether two operations are unsequenced. This operation
Richard Smithc406cb72013-01-17 01:17:56 +000012152 /// 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:
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012166 /// Pick a representative for a sequence.
Richard Smithc406cb72013-01-17 01:17:56 +000012167 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.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012176 using Object = NamedDecl *;
Richard Smithc406cb72013-01-17 01:17:56 +000012177
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,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012183
Richard Smithc406cb72013-01-17 01:17:56 +000012184 /// A modification of an object which is sequenced before the value
Richard Smith83e37bee2013-06-26 23:16:51 +000012185 /// computation of the expression, such as ++n in C++.
Richard Smithc406cb72013-01-17 01:17:56 +000012186 UK_ModAsValue,
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012187
Richard Smithc406cb72013-01-17 01:17:56 +000012188 /// 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 {
Serge Gueltonc1904042019-01-20 23:43:37 +000012196 Expr *Use;
Richard Smithc406cb72013-01-17 01:17:56 +000012197 SequenceTree::Seq Seq;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012198
Serge Gueltonc1904042019-01-20 23:43:37 +000012199 Usage() : Use(nullptr), Seq() {}
Richard Smithc406cb72013-01-17 01:17:56 +000012200 };
12201
12202 struct UsageInfo {
Richard Smithc406cb72013-01-17 01:17:56 +000012203 Usage Uses[UK_Count];
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012204
Richard Smithc406cb72013-01-17 01:17:56 +000012205 /// Have we issued a diagnostic for this variable already?
Serge Gueltonc1904042019-01-20 23:43:37 +000012206 bool Diagnosed;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012207
Serge Gueltonc1904042019-01-20 23:43:37 +000012208 UsageInfo() : Uses(), Diagnosed(false) {}
Richard Smithc406cb72013-01-17 01:17:56 +000012209 };
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012210 using UsageInfoMap = llvm::SmallDenseMap<Object, UsageInfo, 16>;
Richard Smithc406cb72013-01-17 01:17:56 +000012211
12212 Sema &SemaRef;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012213
Richard Smithc406cb72013-01-17 01:17:56 +000012214 /// Sequenced regions within the expression.
12215 SequenceTree Tree;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012216
Richard Smithc406cb72013-01-17 01:17:56 +000012217 /// Declaration modifications and references which we have seen.
12218 UsageInfoMap UsageMap;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012219
Richard Smithc406cb72013-01-17 01:17:56 +000012220 /// The region we are currently within.
12221 SequenceTree::Seq Region;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012222
Richard Smithc406cb72013-01-17 01:17:56 +000012223 /// Filled in with declarations which were modified as a side-effect
12224 /// (that is, post-increment operations).
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012225 SmallVectorImpl<std::pair<Object, Usage>> *ModAsSideEffect = nullptr;
12226
Richard Smithd33f5202013-01-17 23:18:09 +000012227 /// Expressions to check later. We defer checking these to reduce
12228 /// stack usage.
Robert Wilhelmb869a8f2013-08-10 12:33:24 +000012229 SmallVectorImpl<Expr *> &WorkList;
Richard Smithc406cb72013-01-17 01:17:56 +000012230
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 }
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012241
Richard Smithc406cb72013-01-17 01:17:56 +000012242 ~SequencedSubexpression() {
David Majnemerf7e36092016-06-23 00:15:04 +000012243 for (auto &M : llvm::reverse(ModAsSideEffect)) {
12244 UsageInfo &U = Self.UsageMap[M.first];
Richard Smithe8efd992014-12-03 01:05:50 +000012245 auto &SideEffectUsage = U.Uses[UK_ModAsSideEffect];
David Majnemerf7e36092016-06-23 00:15:04 +000012246 Self.addUsage(U, M.first, SideEffectUsage.Use, UK_ModAsValue);
12247 SideEffectUsage = M.second;
Richard Smithc406cb72013-01-17 01:17:56 +000012248 }
12249 Self.ModAsSideEffect = OldModAsSideEffect;
12250 }
12251
12252 SequenceChecker &Self;
Robert Wilhelmb869a8f2013-08-10 12:33:24 +000012253 SmallVector<std::pair<Object, Usage>, 4> ModAsSideEffect;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012254 SmallVectorImpl<std::pair<Object, Usage>> *OldModAsSideEffect;
Richard Smithc406cb72013-01-17 01:17:56 +000012255 };
12256
Richard Smith40238f02013-06-20 22:21:56 +000012257 /// 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)
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012264 : Self(Self), Prev(Self.EvalTracker) {
Richard Smith40238f02013-06-20 22:21:56 +000012265 Self.EvalTracker = this;
12266 }
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012267
Richard Smith40238f02013-06-20 22:21:56 +000012268 ~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;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000012277 EvalOK = E->EvaluateAsBooleanCondition(
12278 Result, Self.SemaRef.Context, Self.SemaRef.isConstantEvaluated());
Richard Smith40238f02013-06-20 22:21:56 +000012279 return EvalOK;
12280 }
12281
12282 private:
12283 SequenceChecker &Self;
12284 EvaluationTracker *Prev;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012285 bool EvalOK = true;
12286 } *EvalTracker = nullptr;
Richard Smith40238f02013-06-20 22:21:56 +000012287
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012288 /// Find the object which is produced by the specified expression,
Richard Smithc406cb72013-01-17 01:17:56 +000012289 /// 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();
Craig Topperc3ec1492014-05-26 06:22:03 +000012307 return nullptr;
Richard Smithc406cb72013-01-17 01:17:56 +000012308 }
12309
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012310 /// Note that an object was modified or used by an expression.
Richard Smithc406cb72013-01-17 01:17:56 +000012311 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 }
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012320
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012321 /// Check whether a modification or use conflicts with a prior usage.
Richard Smithc406cb72013-01-17 01:17:56 +000012322 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
Richard Smith7d02ca42019-05-06 04:14:01 +000012336 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()));
Richard Smithc406cb72013-01-17 01:17:56 +000012341 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 }
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012349
Richard Smithc406cb72013-01-17 01:17:56 +000012350 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 }
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012362
Richard Smithc406cb72013-01-17 01:17:56 +000012363 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
12369public:
Robert Wilhelmb869a8f2013-08-10 12:33:24 +000012370 SequenceChecker(Sema &S, Expr *E, SmallVectorImpl<Expr *> &WorkList)
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012371 : Base(S.Context), SemaRef(S), Region(Tree.root()), WorkList(WorkList) {
Richard Smithc406cb72013-01-17 01:17:56 +000012372 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.
Richard Smithe3dbfe02013-06-30 10:40:20 +000012381 Base::VisitStmt(E);
Richard Smithc406cb72013-01-17 01:17:56 +000012382 }
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
Nicolas Lesser5610cd82019-01-10 19:03:33 +000012396 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
Richard Smithc406cb72013-01-17 01:17:56 +000012426 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.
Nicolas Lesser5610cd82019-01-10 19:03:33 +000012431 VisitSequencedExpressions(BO->getLHS(), BO->getRHS());
Richard Smithc406cb72013-01-17 01:17:56 +000012432 }
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
Richard Smith83e37bee2013-06-26 23:16:51 +000012460 // 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);
Richard Smithc406cb72013-01-17 01:17:56 +000012466 }
Eugene Zelenko1ced5092016-02-12 22:53:10 +000012467
Richard Smithc406cb72013-01-17 01:17:56 +000012468 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());
Richard Smith83e37bee2013-06-26 23:16:51 +000012481 // 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);
Richard Smithc406cb72013-01-17 01:17:56 +000012485 }
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.
Richard Smith40238f02013-06-20 22:21:56 +000012505 EvaluationTracker Eval(*this);
Richard Smithc406cb72013-01-17 01:17:56 +000012506 {
12507 SequencedSubexpression Sequenced(*this);
12508 Visit(BO->getLHS());
12509 }
12510
12511 bool Result;
Richard Smith40238f02013-06-20 22:21:56 +000012512 if (Eval.evaluate(BO->getLHS(), Result)) {
Richard Smith01a7fba2013-01-17 22:06:26 +000012513 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.
Richard Smithd33f5202013-01-17 23:18:09 +000012522 WorkList.push_back(BO->getRHS());
Richard Smith01a7fba2013-01-17 22:06:26 +000012523 }
Richard Smithc406cb72013-01-17 01:17:56 +000012524 }
12525 void VisitBinLAnd(BinaryOperator *BO) {
Richard Smith40238f02013-06-20 22:21:56 +000012526 EvaluationTracker Eval(*this);
Richard Smithc406cb72013-01-17 01:17:56 +000012527 {
12528 SequencedSubexpression Sequenced(*this);
12529 Visit(BO->getLHS());
12530 }
12531
12532 bool Result;
Richard Smith40238f02013-06-20 22:21:56 +000012533 if (Eval.evaluate(BO->getLHS(), Result)) {
Richard Smith01a7fba2013-01-17 22:06:26 +000012534 if (Result)
12535 Visit(BO->getRHS());
12536 } else {
Richard Smithd33f5202013-01-17 23:18:09 +000012537 WorkList.push_back(BO->getRHS());
Richard Smith01a7fba2013-01-17 22:06:26 +000012538 }
Richard Smithc406cb72013-01-17 01:17:56 +000012539 }
12540
12541 // Only visit the condition, unless we can be sure which subexpression will
12542 // be chosen.
12543 void VisitAbstractConditionalOperator(AbstractConditionalOperator *CO) {
Richard Smith40238f02013-06-20 22:21:56 +000012544 EvaluationTracker Eval(*this);
Richard Smith83e37bee2013-06-26 23:16:51 +000012545 {
12546 SequencedSubexpression Sequenced(*this);
12547 Visit(CO->getCond());
12548 }
Richard Smithc406cb72013-01-17 01:17:56 +000012549
12550 bool Result;
Richard Smith40238f02013-06-20 22:21:56 +000012551 if (Eval.evaluate(CO->getCond(), Result))
Richard Smithc406cb72013-01-17 01:17:56 +000012552 Visit(Result ? CO->getTrueExpr() : CO->getFalseExpr());
Richard Smith01a7fba2013-01-17 22:06:26 +000012553 else {
Richard Smithd33f5202013-01-17 23:18:09 +000012554 WorkList.push_back(CO->getTrueExpr());
12555 WorkList.push_back(CO->getFalseExpr());
Richard Smith01a7fba2013-01-17 22:06:26 +000012556 }
Richard Smithc406cb72013-01-17 01:17:56 +000012557 }
12558
Richard Smithe3dbfe02013-06-30 10:40:20 +000012559 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
Richard Smithc406cb72013-01-17 01:17:56 +000012572 void VisitCXXConstructExpr(CXXConstructExpr *CCE) {
Richard Smithe3dbfe02013-06-30 10:40:20 +000012573 // This is a call, so all subexpressions are sequenced before the result.
12574 SequencedSubexpression Sequenced(*this);
12575
Richard Smithc406cb72013-01-17 01:17:56 +000012576 if (!CCE->isListInitialization())
12577 return VisitExpr(CCE);
12578
12579 // In C++11, list initializations are sequenced.
Robert Wilhelmb869a8f2013-08-10 12:33:24 +000012580 SmallVector<SequenceTree::Seq, 32> Elts;
Richard Smithc406cb72013-01-17 01:17:56 +000012581 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.
Robert Wilhelmb869a8f2013-08-10 12:33:24 +000012601 SmallVector<SequenceTree::Seq, 32> Elts;
Richard Smithc406cb72013-01-17 01:17:56 +000012602 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};
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000012617
12618} // namespace
Richard Smithc406cb72013-01-17 01:17:56 +000012619
12620void Sema::CheckUnsequencedOperations(Expr *E) {
Robert Wilhelmb869a8f2013-08-10 12:33:24 +000012621 SmallVector<Expr *, 8> WorkList;
Richard Smithd33f5202013-01-17 23:18:09 +000012622 WorkList.push_back(E);
12623 while (!WorkList.empty()) {
Robert Wilhelm25284cc2013-08-23 16:11:15 +000012624 Expr *Item = WorkList.pop_back_val();
Richard Smithd33f5202013-01-17 23:18:09 +000012625 SequenceChecker(*this, Item, WorkList);
12626 }
Richard Smithc406cb72013-01-17 01:17:56 +000012627}
12628
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000012629void Sema::CheckCompletedExpr(Expr *E, SourceLocation CheckLoc,
12630 bool IsConstexpr) {
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000012631 llvm::SaveAndRestore<bool> ConstantContext(
12632 isConstantEvaluatedOverride, IsConstexpr || isa<ConstantExpr>(E));
Richard Smithc406cb72013-01-17 01:17:56 +000012633 CheckImplicitConversions(E, CheckLoc);
Richard Trieu71d74d42016-08-05 21:02:34 +000012634 if (!E->isInstantiationDependent())
12635 CheckUnsequencedOperations(E);
Fariborz Jahaniane735ff92013-01-24 22:11:45 +000012636 if (!IsConstexpr && !E->isValueDependent())
Richard Smith9f7df0c2017-06-26 23:19:32 +000012637 CheckForIntOverflow(E);
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000012638 DiagnoseMisalignedMembers();
Richard Smithc406cb72013-01-17 01:17:56 +000012639}
12640
John McCall1f425642010-11-11 03:21:53 +000012641void Sema::CheckBitFieldInitialization(SourceLocation InitLoc,
12642 FieldDecl *BitField,
12643 Expr *Init) {
12644 (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc);
12645}
12646
David Majnemer61a5bbf2015-04-07 22:08:51 +000012647static 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 }
David Majnemerdf8f73f2015-04-09 19:53:25 +000012655 if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) {
12656 diagnoseArrayStarInParamType(S, ReferenceTy->getPointeeType(), Loc);
12657 return;
12658 }
David Majnemer61a5bbf2015-04-07 22:08:51 +000012659 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
Mike Stump0c2ec772010-01-21 03:59:47 +000012676/// 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.
David Majnemer59f77922016-06-24 04:05:48 +000012681bool Sema::CheckParmsForFunctionDef(ArrayRef<ParmVarDecl *> Parameters,
Douglas Gregorb524d902010-11-01 18:37:59 +000012682 bool CheckParameterNames) {
Mike Stump0c2ec772010-01-21 03:59:47 +000012683 bool HasInvalidParm = false;
David Majnemer59f77922016-06-24 04:05:48 +000012684 for (ParmVarDecl *Param : Parameters) {
Mike Stump0c2ec772010-01-21 03:59:47 +000012685 // 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(),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +000012692 diag::err_typecheck_decl_incomplete_type)) {
Mike Stump0c2ec772010-01-21 03:59:47 +000012693 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.
Douglas Gregorb524d902010-11-01 18:37:59 +000012699 if (CheckParameterNames &&
Craig Topperc3ec1492014-05-26 06:22:03 +000012700 Param->getIdentifier() == nullptr &&
Mike Stump0c2ec772010-01-21 03:59:47 +000012701 !Param->isImplicit() &&
David Blaikiebbafb8a2012-03-11 07:00:24 +000012702 !getLangOpts().CPlusPlus)
Mike Stump0c2ec772010-01-21 03:59:47 +000012703 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
Sam Weinigdeb55d52010-02-01 05:02:49 +000012704
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();
David Majnemer61a5bbf2015-04-07 22:08:51 +000012711 // FIXME: This diagnostic should point the '[*]' if source-location
12712 // information is added for it.
12713 diagnoseArrayStarInParamType(*this, PType, Param->getLocation());
Reid Kleckner23f4c4b2013-06-21 12:45:15 +000012714
Akira Hatanaka02914dc2018-02-05 20:23:22 +000012715 // 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
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +000012717 // callee function. Do not perform any direct access check on the dtor here.
Akira Hatanaka02914dc2018-02-05 20:23:22 +000012718 if (!Param->isInvalidDecl()) {
12719 if (CXXRecordDecl *ClassDecl = Param->getType()->getAsCXXRecordDecl()) {
12720 if (!ClassDecl->isInvalidDecl() &&
12721 !ClassDecl->hasIrrelevantDestructor() &&
12722 !ClassDecl->isDependentContext() &&
Akira Hatanaka85282972018-05-15 21:00:30 +000012723 ClassDecl->isParamDestroyedInCallee()) {
Akira Hatanaka02914dc2018-02-05 20:23:22 +000012724 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl);
12725 MarkFunctionReferenced(Param->getLocation(), Destructor);
12726 DiagnoseUseOfDecl(Destructor, Param->getLocation());
Hans Wennborg0f3c10c2014-01-13 17:23:24 +000012727 }
12728 }
Reid Kleckner23f4c4b2013-06-21 12:45:15 +000012729 }
George Burgess IV3e3bb95b2015-12-02 21:58:08 +000012730
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;
Aaron Ballmanc3463f62018-12-05 18:56:57 +000012739
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 }
Mike Stump0c2ec772010-01-21 03:59:47 +000012751 }
12752
12753 return HasInvalidParm;
12754}
John McCall2b5c1b22010-08-12 21:44:57 +000012755
Akira Hatanaka21e5fdd2016-11-30 19:42:03 +000012756/// A helper function to get the alignment of a Decl referred to by DeclRefExpr
12757/// or MemberExpr.
12758static 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
John McCall2b5c1b22010-08-12 21:44:57 +000012769/// CheckCastAlign - Implements -Wcast-align, which warns when a
12770/// pointer cast increases the alignment requirements.
12771void 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).
Alp Tokerd4a3f0e2014-06-15 23:30:39 +000012774 if (getDiagnostics().isIgnored(diag::warn_cast_align, TRange.getBegin()))
John McCall2b5c1b22010-08-12 21:44:57 +000012775 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);
Akira Hatanaka21e5fdd2016-11-30 19:42:03 +000012803
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
John McCall2b5c1b22010-08-12 21:44:57 +000012812 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000012821/// Check whether this array fits the idiom of a size-one tail padded
Chandler Carruth28389f02011-08-05 09:10:50 +000012822/// 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.
Benjamin Kramer7320b992016-06-15 14:20:56 +000012826static bool IsTailPaddedMemberArray(Sema &S, const llvm::APInt &Size,
Chandler Carruth28389f02011-08-05 09:10:50 +000012827 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.
Sean Callanan06a48a62012-05-04 18:22:53 +000012835
12836 TypeSourceInfo *TInfo = FD->getTypeSourceInfo();
Ted Kremenek7ebb4932012-05-09 05:35:08 +000012837 while (TInfo) {
12838 TypeLoc TL = TInfo->getTypeLoc();
12839 // Look through typedefs.
David Blaikie6adc78e2013-02-18 22:06:02 +000012840 if (TypedefTypeLoc TTL = TL.getAs<TypedefTypeLoc>()) {
12841 const TypedefNameDecl *TDL = TTL.getTypedefNameDecl();
Ted Kremenek7ebb4932012-05-09 05:35:08 +000012842 TInfo = TDL->getTypeSourceInfo();
12843 continue;
12844 }
David Blaikie6adc78e2013-02-18 22:06:02 +000012845 if (ConstantArrayTypeLoc CTL = TL.getAs<ConstantArrayTypeLoc>()) {
12846 const Expr *SizeExpr = dyn_cast<IntegerLiteral>(CTL.getSizeExpr());
Chad Rosier70299922013-02-06 00:58:34 +000012847 if (!SizeExpr || SizeExpr->getExprLoc().isMacroID())
12848 return false;
12849 }
Ted Kremenek7ebb4932012-05-09 05:35:08 +000012850 break;
Sean Callanan06a48a62012-05-04 18:22:53 +000012851 }
Chandler Carruth28389f02011-08-05 09:10:50 +000012852
12853 const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext());
Matt Beaumont-Gayc93b4892011-11-29 22:43:53 +000012854 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 }
Chandler Carruth28389f02011-08-05 09:10:50 +000012859
Benjamin Kramer8c543672011-08-06 03:04:42 +000012860 // 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;
Chandler Carruth28389f02011-08-05 09:10:50 +000012866}
12867
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012868void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr,
Matt Beaumont-Gay5533a552011-12-14 16:02:15 +000012869 const ArraySubscriptExpr *ASE,
Richard Smith13f67182011-12-16 19:31:14 +000012870 bool AllowOnePastEnd, bool IndexNegated) {
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000012871 // Already diagnosed by the constant evaluator.
12872 if (isConstantEvaluated())
12873 return;
12874
Eli Friedman84e6e5c2012-02-27 21:21:40 +000012875 IndexExpr = IndexExpr->IgnoreParenImpCasts();
Matt Beaumont-Gay5533a552011-12-14 16:02:15 +000012876 if (IndexExpr->isValueDependent())
12877 return;
12878
Anastasia Stulovadb7a31c2016-07-05 11:31:24 +000012879 const Type *EffectiveType =
12880 BaseExpr->getType()->getPointeeOrArrayElementType();
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012881 BaseExpr = BaseExpr->IgnoreParenCasts();
Chandler Carruth2a666fc2011-02-17 20:55:08 +000012882 const ConstantArrayType *ArrayTy =
Bruno Riccied414842018-12-20 20:05:11 +000012883 Context.getAsConstantArrayType(BaseExpr->getType());
12884
Chandler Carruth2a666fc2011-02-17 20:55:08 +000012885 if (!ArrayTy)
Ted Kremenek64699be2011-02-16 01:57:07 +000012886 return;
Chandler Carruth1af88f12011-02-17 21:10:52 +000012887
Bruno Riccied414842018-12-20 20:05:11 +000012888 const Type *BaseType = ArrayTy->getElementType().getTypePtr();
Bruno Ricci95550e42019-03-25 21:37:10 +000012889 if (EffectiveType->isDependentType() || BaseType->isDependentType())
12890 return;
Bruno Riccied414842018-12-20 20:05:11 +000012891
Fangrui Song407659a2018-11-30 23:41:18 +000012892 Expr::EvalResult Result;
12893 if (!IndexExpr->EvaluateAsInt(Result, Context, Expr::SE_AllowSideEffects))
Ted Kremenek64699be2011-02-16 01:57:07 +000012894 return;
Fangrui Song407659a2018-11-30 23:41:18 +000012895
12896 llvm::APSInt index = Result.Val.getInt();
Richard Smith13f67182011-12-16 19:31:14 +000012897 if (IndexNegated)
12898 index = -index;
Ted Kremenek108b2d52011-02-16 04:01:44 +000012899
Craig Topperc3ec1492014-05-26 06:22:03 +000012900 const NamedDecl *ND = nullptr;
Chandler Carruth126b1552011-08-05 08:07:29 +000012901 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr))
George Burgess IV00f70bd2018-03-01 05:43:23 +000012902 ND = DRE->getDecl();
Chandler Carruth28389f02011-08-05 09:10:50 +000012903 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
George Burgess IV00f70bd2018-03-01 05:43:23 +000012904 ND = ME->getMemberDecl();
Chandler Carruth126b1552011-08-05 08:07:29 +000012905
Ted Kremeneke4b316c2011-02-23 23:06:04 +000012906 if (index.isUnsigned() || !index.isNegative()) {
Bruno Riccif605e822019-01-08 13:52:54 +000012907 // 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
Ted Kremeneka7ced2c2011-02-18 02:27:00 +000012916 llvm::APInt size = ArrayTy->getSize();
Chandler Carruth1af88f12011-02-17 21:10:52 +000012917 if (!size.isStrictlyPositive())
12918 return;
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012919
Nico Weber7c299802011-09-17 22:59:41 +000012920 if (BaseType != EffectiveType) {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012921 // 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);
Kaelyn Uhrain0fb0bb12011-08-10 19:47:25 +000012924 // Handle ptrarith_typesize being zero, such as when casting to void*
Kaelyn Uhraine5353762011-08-10 18:49:28 +000012925 if (!ptrarith_typesize) ptrarith_typesize = 1;
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012926 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
Chandler Carruth2a666fc2011-02-17 20:55:08 +000012936 if (size.getBitWidth() > index.getBitWidth())
Eli Friedman84e6e5c2012-02-27 21:21:40 +000012937 index = index.zext(size.getBitWidth());
Ted Kremeneka7ced2c2011-02-18 02:27:00 +000012938 else if (size.getBitWidth() < index.getBitWidth())
Eli Friedman84e6e5c2012-02-27 21:21:40 +000012939 size = size.zext(index.getBitWidth());
Ted Kremeneka7ced2c2011-02-18 02:27:00 +000012940
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012941 // 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.
Eli Friedman84e6e5c2012-02-27 21:21:40 +000012945 if (AllowOnePastEnd ? index.ule(size) : index.ult(size))
Chandler Carruth126b1552011-08-05 08:07:29 +000012946 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.
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012951 if (IsTailPaddedMemberArray(*this, size, ND))
Ted Kremenek108b2d52011-02-16 04:01:44 +000012952 return;
Chandler Carruth2a666fc2011-02-17 20:55:08 +000012953
Matt Beaumont-Gay5533a552011-12-14 16:02:15 +000012954 // 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)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +000012961 SourceLocation IndexLoc =
12962 SourceMgr.getSpellingLoc(IndexExpr->getBeginLoc());
Eli Friedman5ba37d52013-08-22 00:27:10 +000012963 if (SourceMgr.isWrittenInSameFile(RBracketLoc, IndexLoc))
Matt Beaumont-Gay5533a552011-12-14 16:02:15 +000012964 return;
12965 }
12966 }
12967
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012968 unsigned DiagID = diag::warn_ptr_arith_exceeds_bounds;
Matt Beaumont-Gay5533a552011-12-14 16:02:15 +000012969 if (ASE)
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012970 DiagID = diag::warn_array_index_exceeds_bounds;
12971
Stephen Kellyf2ceec42018-08-09 21:08:08 +000012972 DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012973 PDiag(DiagID) << index.toString(10, true)
Stephen Kellyf2ceec42018-08-09 21:08:08 +000012974 << size.toString(10, true)
12975 << (unsigned)size.getLimitedValue(~0U)
12976 << IndexExpr->getSourceRange());
Chandler Carruth2a666fc2011-02-17 20:55:08 +000012977 } else {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012978 unsigned DiagID = diag::warn_array_index_precedes_bounds;
Matt Beaumont-Gay5533a552011-12-14 16:02:15 +000012979 if (!ASE) {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012980 DiagID = diag::warn_ptr_arith_precedes_bounds;
12981 if (index.isNegative()) index = -index;
12982 }
12983
Stephen Kellyf2ceec42018-08-09 21:08:08 +000012984 DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr,
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000012985 PDiag(DiagID) << index.toString(10, true)
Stephen Kellyf2ceec42018-08-09 21:08:08 +000012986 << IndexExpr->getSourceRange());
Ted Kremenek64699be2011-02-16 01:57:07 +000012987 }
Chandler Carruth1af88f12011-02-17 21:10:52 +000012988
Matt Beaumont-Gayb2339822011-11-29 19:27:11 +000012989 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))
George Burgess IV00f70bd2018-03-01 05:43:23 +000012995 ND = DRE->getDecl();
Matt Beaumont-Gayb2339822011-11-29 19:27:11 +000012996 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr))
George Burgess IV00f70bd2018-03-01 05:43:23 +000012997 ND = ME->getMemberDecl();
Matt Beaumont-Gayb2339822011-11-29 19:27:11 +000012998 }
12999
Chandler Carruth1af88f12011-02-17 21:10:52 +000013000 if (ND)
Stephen Kellyf2ceec42018-08-09 21:08:08 +000013001 DiagRuntimeBehavior(ND->getBeginLoc(), BaseExpr,
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000013002 PDiag(diag::note_array_index_out_of_bounds)
Stephen Kellyf2ceec42018-08-09 21:08:08 +000013003 << ND->getDeclName());
Ted Kremenek64699be2011-02-16 01:57:07 +000013004}
13005
Ted Kremenekdf26df72011-03-01 18:41:00 +000013006void Sema::CheckArrayAccess(const Expr *expr) {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000013007 int AllowOnePastEnd = 0;
13008 while (expr) {
13009 expr = expr->IgnoreParenImpCasts();
Ted Kremenekdf26df72011-03-01 18:41:00 +000013010 switch (expr->getStmtClass()) {
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000013011 case Stmt::ArraySubscriptExprClass: {
13012 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr);
Matt Beaumont-Gay5533a552011-12-14 16:02:15 +000013013 CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE,
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000013014 AllowOnePastEnd > 0);
Aaron Ballman93c6ba12018-04-24 19:21:04 +000013015 expr = ASE->getBase();
13016 break;
13017 }
13018 case Stmt::MemberExprClass: {
13019 expr = cast<MemberExpr>(expr)->getBase();
13020 break;
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000013021 }
Alexey Bataev1a3320e2015-08-25 14:24:04 +000013022 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 }
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000013029 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 }
Ted Kremenekdf26df72011-03-01 18:41:00 +000013045 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 }
Daniel Marjamaki20a209e2017-02-28 14:53:50 +000013053 case Stmt::CXXOperatorCallExprClass: {
13054 const auto *OCE = cast<CXXOperatorCallExpr>(expr);
13055 for (const auto *Arg : OCE->arguments())
13056 CheckArrayAccess(Arg);
13057 return;
13058 }
Ted Kremenekdf26df72011-03-01 18:41:00 +000013059 default:
13060 return;
13061 }
Peter Collingbourne91147592011-04-15 00:35:48 +000013062 }
Ted Kremenekdf26df72011-03-01 18:41:00 +000013063}
John McCall31168b02011-06-15 23:02:42 +000013064
13065//===--- CHECK: Objective-C retain cycles ----------------------------------//
13066
13067namespace {
John McCall31168b02011-06-15 23:02:42 +000013068
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013069struct 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
John McCall31168b02011-06-15 23:02:42 +000013084
13085/// Consider whether capturing the given variable can possibly lead to
13086/// a retain cycle.
13087static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) {
Sylvestre Ledru33b5baf2012-09-27 10:16:10 +000013088 // In ARC, it's captured strongly iff the variable has __strong
John McCall31168b02011-06-15 23:02:42 +000013089 // 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;
Jordan Rosefa9e4ba2012-09-15 02:48:31 +000013095 if (ref)
13096 owner.setLocsFrom(ref);
John McCall31168b02011-06-15 23:02:42 +000013097 return true;
13098}
13099
Fariborz Jahanianedbc3452012-01-10 19:28:26 +000013100static bool findRetainCycleOwner(Sema &S, Expr *e, RetainCycleOwner &owner) {
John McCall31168b02011-06-15 23:02:42 +000013101 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:
John McCall2d637d22011-09-10 06:18:15 +000013108 case CK_ARCReclaimReturnedObject:
John McCall31168b02011-06-15 23:02:42 +000013109 e = cast->getSubExpr();
13110 continue;
13111
John McCall31168b02011-06-15 23:02:42 +000013112 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.
Fariborz Jahanianedbc3452012-01-10 19:28:26 +000013123 if (!findRetainCycleOwner(S, ref->getBase(), owner))
John McCall31168b02011-06-15 23:02:42 +000013124 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
John McCall31168b02011-06-15 23:02:42 +000013137 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
John McCallfe96e0b2011-11-06 09:01:30 +000013145 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;
Fariborz Jahanianedbc3452012-01-10 19:28:26 +000013160 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 }
John McCallfe96e0b2011-11-06 09:01:30 +000013168 e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase())
13169 ->getSourceExpr());
13170 continue;
13171 }
13172
John McCall31168b02011-06-15 23:02:42 +000013173 // Array ivars?
13174
13175 return false;
13176 }
13177}
13178
13179namespace {
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013180
John McCall31168b02011-06-15 23:02:42 +000013181 struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> {
Fariborz Jahanian8df9e242014-06-12 20:57:14 +000013182 ASTContext &Context;
John McCall31168b02011-06-15 23:02:42 +000013183 VarDecl *Variable;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013184 Expr *Capturer = nullptr;
13185 bool VarWillBeReased = false;
13186
13187 FindCaptureVisitor(ASTContext &Context, VarDecl *variable)
13188 : EvaluatedExprVisitor<FindCaptureVisitor>(Context),
13189 Context(Context), Variable(variable) {}
John McCall31168b02011-06-15 23:02:42 +000013190
13191 void VisitDeclRefExpr(DeclRefExpr *ref) {
13192 if (ref->getDecl() == Variable && !Capturer)
13193 Capturer = ref;
13194 }
13195
John McCall31168b02011-06-15 23:02:42 +000013196 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) {
Fangrui Song6907ce22018-07-30 19:24:48 +000013204 // Look inside nested blocks
John McCall31168b02011-06-15 23:02:42 +000013205 if (block->getBlockDecl()->capturesVariable(Variable))
13206 Visit(block->getBlockDecl()->getBody());
13207 }
Fangrui Song6907ce22018-07-30 19:24:48 +000013208
Fariborz Jahanian0e337542012-08-31 20:04:47 +000013209 void VisitOpaqueValueExpr(OpaqueValueExpr *OVE) {
13210 if (Capturer) return;
13211 if (OVE->getSourceExpr())
13212 Visit(OVE->getSourceExpr());
13213 }
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013214
Fariborz Jahanian8df9e242014-06-12 20:57:14 +000013215 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 }
John McCall31168b02011-06-15 23:02:42 +000013230 };
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013231
13232} // namespace
John McCall31168b02011-06-15 23:02:42 +000013233
13234/// Check whether the given argument is a block which captures a
13235/// variable.
13236static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) {
13237 assert(owner.Variable && owner.Loc.isValid());
13238
13239 e = e->IgnoreParenCasts();
Jordan Rose67e887c2012-09-17 17:54:30 +000013240
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)
Craig Topperc3ec1492014-05-26 06:22:03 +000013247 return nullptr;
Jordan Rose67e887c2012-09-17 17:54:30 +000013248 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());
Ted Kremenekb67c6cc2012-10-02 04:36:54 +000013253 if (Fn) {
13254 const IdentifierInfo *FnI = Fn->getIdentifier();
13255 if (FnI && FnI->isStr("_Block_copy")) {
13256 e = CE->getArg(0)->IgnoreParenCasts();
13257 }
13258 }
Jordan Rose67e887c2012-09-17 17:54:30 +000013259 }
13260 }
Fangrui Song6907ce22018-07-30 19:24:48 +000013261
John McCall31168b02011-06-15 23:02:42 +000013262 BlockExpr *block = dyn_cast<BlockExpr>(e);
13263 if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable))
Craig Topperc3ec1492014-05-26 06:22:03 +000013264 return nullptr;
John McCall31168b02011-06-15 23:02:42 +000013265
13266 FindCaptureVisitor visitor(S.Context, owner.Variable);
13267 visitor.Visit(block->getBlockDecl()->getBody());
Fariborz Jahanian8df9e242014-06-12 20:57:14 +000013268 return visitor.VarWillBeReased ? nullptr : visitor.Capturer;
John McCall31168b02011-06-15 23:02:42 +000013269}
13270
13271static 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'.
13284static bool isSetterLikeSelector(Selector sel) {
13285 if (sel.isUnarySelector()) return false;
13286
Chris Lattner0e62c1c2011-07-23 10:55:15 +000013287 StringRef str = sel.getNameForSlot(0);
John McCall31168b02011-06-15 23:02:42 +000013288 while (!str.empty() && str.front() == '_') str = str.substr(1);
Ted Kremenek764d63a2011-12-01 00:59:21 +000013289 if (str.startswith("set"))
John McCall31168b02011-06-15 23:02:42 +000013290 str = str.substr(3);
Ted Kremenek764d63a2011-12-01 00:59:21 +000013291 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 }
John McCall31168b02011-06-15 23:02:42 +000013297 else
13298 return false;
13299
13300 if (str.empty()) return true;
Jordan Rosea7d03842013-02-08 22:30:41 +000013301 return !isLowercase(str.front());
John McCall31168b02011-06-15 23:02:42 +000013302}
13303
Benjamin Kramer3a743452015-03-09 15:03:32 +000013304static Optional<int> GetNSMutableArrayArgumentIndex(Sema &S,
13305 ObjCMessageExpr *Message) {
Alex Denisov5dfac812015-08-06 04:51:14 +000013306 bool IsMutableArray = S.NSAPIObj->isSubclassOfNSClass(
13307 Message->getReceiverInterface(),
13308 NSAPI::ClassId_NSMutableArray);
13309 if (!IsMutableArray) {
Alex Denisove1d882c2015-03-04 17:55:52 +000013310 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
13338static
13339Optional<int> GetNSMutableDictionaryArgumentIndex(Sema &S,
13340 ObjCMessageExpr *Message) {
Alex Denisov5dfac812015-08-06 04:51:14 +000013341 bool IsMutableDictionary = S.NSAPIObj->isSubclassOfNSClass(
13342 Message->getReceiverInterface(),
13343 NSAPI::ClassId_NSMutableDictionary);
13344 if (!IsMutableDictionary) {
Alex Denisove1d882c2015-03-04 17:55:52 +000013345 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
13371static Optional<int> GetNSSetArgumentIndex(Sema &S, ObjCMessageExpr *Message) {
Alex Denisov5dfac812015-08-06 04:51:14 +000013372 bool IsMutableSet = S.NSAPIObj->isSubclassOfNSClass(
13373 Message->getReceiverInterface(),
13374 NSAPI::ClassId_NSMutableSet);
Alex Denisove1d882c2015-03-04 17:55:52 +000013375
Alex Denisov5dfac812015-08-06 04:51:14 +000013376 bool IsMutableOrderedSet = S.NSAPIObj->isSubclassOfNSClass(
13377 Message->getReceiverInterface(),
13378 NSAPI::ClassId_NSMutableOrderedSet);
13379 if (!IsMutableSet && !IsMutableOrderedSet) {
Alex Denisove1d882c2015-03-04 17:55:52 +000013380 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
13405void 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
Alex Denisove1d882c2015-03-04 17:55:52 +000013420 Expr *Arg = Message->getArg(ArgIndex)->IgnoreImpCasts();
13421 if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Arg)) {
13422 Arg = OE->getSourceExpr()->IgnoreImpCasts();
13423 }
13424
Alex Denisov5dfac812015-08-06 04:51:14 +000013425 if (Message->getReceiverKind() == ObjCMessageExpr::SuperInstance) {
Alex Denisove1d882c2015-03-04 17:55:52 +000013426 if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) {
Alex Denisov5dfac812015-08-06 04:51:14 +000013427 if (ArgRE->isObjCSelfExpr()) {
Alex Denisove1d882c2015-03-04 17:55:52 +000013428 Diag(Message->getSourceRange().getBegin(),
13429 diag::warn_objc_circular_container)
Richard Trieub4025802018-03-28 04:16:13 +000013430 << ArgRE->getDecl() << StringRef("'super'");
Alex Denisove1d882c2015-03-04 17:55:52 +000013431 }
13432 }
Alex Denisov5dfac812015-08-06 04:51:14 +000013433 } 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)
Richard Trieub4025802018-03-28 04:16:13 +000013446 << Decl << Decl;
Alex Denisov5dfac812015-08-06 04:51:14 +000013447 if (!ArgRE->isObjCSelfExpr()) {
13448 Diag(Decl->getLocation(),
13449 diag::note_objc_circular_container_declared_here)
Richard Trieub4025802018-03-28 04:16:13 +000013450 << Decl;
Alex Denisov5dfac812015-08-06 04:51:14 +000013451 }
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)
Richard Trieub4025802018-03-28 04:16:13 +000013460 << Decl << Decl;
Alex Denisov5dfac812015-08-06 04:51:14 +000013461 Diag(Decl->getLocation(),
13462 diag::note_objc_circular_container_declared_here)
Richard Trieub4025802018-03-28 04:16:13 +000013463 << Decl;
Alex Denisov5dfac812015-08-06 04:51:14 +000013464 }
Alex Denisove1d882c2015-03-04 17:55:52 +000013465 }
13466 }
13467 }
Alex Denisove1d882c2015-03-04 17:55:52 +000013468}
13469
John McCall31168b02011-06-15 23:02:42 +000013470/// Check a message send to see if it's likely to cause a retain cycle.
13471void 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) {
Fariborz Jahanianedbc3452012-01-10 19:28:26 +000013479 if (!findRetainCycleOwner(*this, msg->getInstanceReceiver(), owner))
John McCall31168b02011-06-15 23:02:42 +000013480 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.
Alex Lorenz42a97a92017-11-17 20:44:25 +000013489 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;
John McCall31168b02011-06-15 23:02:42 +000013495 return diagnoseRetainCycle(*this, capturer, owner);
Alex Lorenz42a97a92017-11-17 20:44:25 +000013496 }
13497 }
John McCall31168b02011-06-15 23:02:42 +000013498}
13499
13500/// Check a property assign to see if it's likely to cause a retain cycle.
13501void Sema::checkRetainCycles(Expr *receiver, Expr *argument) {
13502 RetainCycleOwner owner;
Fariborz Jahanianedbc3452012-01-10 19:28:26 +000013503 if (!findRetainCycleOwner(*this, receiver, owner))
John McCall31168b02011-06-15 23:02:42 +000013504 return;
13505
13506 if (Expr *capturer = findCapturingExpr(*this, argument, owner))
13507 diagnoseRetainCycle(*this, capturer, owner);
13508}
13509
Jordan Rosefa9e4ba2012-09-15 02:48:31 +000013510void Sema::checkRetainCycles(VarDecl *Var, Expr *Init) {
13511 RetainCycleOwner Owner;
Craig Topperc3ec1492014-05-26 06:22:03 +000013512 if (!considerVariable(Var, /*DeclRefExpr=*/nullptr, Owner))
Jordan Rosefa9e4ba2012-09-15 02:48:31 +000013513 return;
Fangrui Song6907ce22018-07-30 19:24:48 +000013514
Jordan Rosefa9e4ba2012-09-15 02:48:31 +000013515 // 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();
Fangrui Song6907ce22018-07-30 19:24:48 +000013519
Jordan Rosefa9e4ba2012-09-15 02:48:31 +000013520 if (Expr *Capturer = findCapturingExpr(*this, Init, Owner))
13521 diagnoseRetainCycle(*this, Capturer, Owner);
13522}
13523
Ted Kremenek9304da92012-12-21 08:04:28 +000013524static 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();
Ted Kremenek44c2a2a2012-12-21 21:59:39 +000013530
Ted Kremenek64873352012-12-21 22:46:35 +000013531 // 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;
Ted Kremenek44c2a2a2012-12-21 21:59:39 +000013536
13537 S.Diag(Loc, diag::warn_arc_literal_assign)
Ted Kremenek64873352012-12-21 22:46:35 +000013538 << (unsigned) Kind
Ted Kremenek9304da92012-12-21 08:04:28 +000013539 << (isProperty ? 0 : 1)
13540 << RHS->getSourceRange();
Ted Kremenek44c2a2a2012-12-21 21:59:39 +000013541
13542 return true;
Ted Kremenek9304da92012-12-21 08:04:28 +000013543}
13544
Ted Kremenekc1f014a2012-12-21 19:45:30 +000013545static 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
Ted Kremenekb36234d2012-12-21 08:04:20 +000013567bool 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
Fariborz Jahanian5f98da02011-06-24 18:25:34 +000013580void Sema::checkUnsafeExprAssigns(SourceLocation Loc,
13581 Expr *LHS, Expr *RHS) {
Fariborz Jahanianc72a8072012-01-17 22:58:16 +000013582 QualType LHSType;
13583 // PropertyRef on LHS type need be directly obtained from
Alp Tokerf6a24ce2013-12-05 16:25:25 +000013584 // its declaration as it has a PseudoType.
Fariborz Jahanianc72a8072012-01-17 22:58:16 +000013585 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 }
Fangrui Song6907ce22018-07-30 19:24:48 +000013592
Fariborz Jahanianc72a8072012-01-17 22:58:16 +000013593 if (LHSType.isNull())
13594 LHSType = LHS->getType();
Jordan Rose657b5f42012-09-28 22:21:35 +000013595
13596 Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime();
13597
13598 if (LT == Qualifiers::OCL_Weak) {
Alp Tokerd4a3f0e2014-06-15 23:30:39 +000013599 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc))
Jordan Rose657b5f42012-09-28 22:21:35 +000013600 getCurFunction()->markSafeWeakUse(LHS);
13601 }
13602
Fariborz Jahanian5f98da02011-06-24 18:25:34 +000013603 if (checkUnsafeAssigns(Loc, LHSType, RHS))
13604 return;
Jordan Rose657b5f42012-09-28 22:21:35 +000013605
Fariborz Jahanian5f98da02011-06-24 18:25:34 +000013606 // FIXME. Check for other life times.
13607 if (LT != Qualifiers::OCL_None)
13608 return;
Fangrui Song6907ce22018-07-30 19:24:48 +000013609
Fariborz Jahanianc72a8072012-01-17 22:58:16 +000013610 if (PRE) {
Fariborz Jahanian5f98da02011-06-24 18:25:34 +000013611 if (PRE->isImplicitProperty())
13612 return;
13613 const ObjCPropertyDecl *PD = PRE->getExplicitProperty();
13614 if (!PD)
13615 return;
Fangrui Song6907ce22018-07-30 19:24:48 +000013616
Bill Wendling44426052012-12-20 19:22:21 +000013617 unsigned Attributes = PD->getPropertyAttributes();
13618 if (Attributes & ObjCPropertyDecl::OBJC_PR_assign) {
Fariborz Jahanianc72a8072012-01-17 22:58:16 +000013619 // 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;
Fangrui Song6907ce22018-07-30 19:24:48 +000013626
Fariborz Jahanian5f98da02011-06-24 18:25:34 +000013627 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) {
John McCall2d637d22011-09-10 06:18:15 +000013628 if (cast->getCastKind() == CK_ARCConsumeObject) {
Fariborz Jahanian5f98da02011-06-24 18:25:34 +000013629 Diag(Loc, diag::warn_arc_retained_property_assign)
13630 << RHS->getSourceRange();
13631 return;
13632 }
13633 RHS = cast->getSubExpr();
13634 }
Fariborz Jahanianc72a8072012-01-17 22:58:16 +000013635 }
Bill Wendling44426052012-12-20 19:22:21 +000013636 else if (Attributes & ObjCPropertyDecl::OBJC_PR_weak) {
Ted Kremenekb36234d2012-12-21 08:04:20 +000013637 if (checkUnsafeAssignObject(*this, Loc, Qualifiers::OCL_Weak, RHS, true))
13638 return;
Fariborz Jahaniandabd1332012-07-06 21:09:27 +000013639 }
Fariborz Jahanian5f98da02011-06-24 18:25:34 +000013640 }
13641}
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000013642
13643//===--- CHECK: Empty statement body (-Wempty-body) ---------------------===//
13644
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013645static bool ShouldDiagnoseEmptyStmtBody(const SourceManager &SourceMgr,
13646 SourceLocation StmtLoc,
13647 const NullStmt *Body) {
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000013648 // 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);
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000013653 if (Body->hasLeadingEmptyMacro())
13654 return false;
13655
13656 // Get line numbers of statement and body.
13657 bool StmtLineInvalid;
Hans Wennborg95419752017-11-20 17:38:16 +000013658 unsigned StmtLine = SourceMgr.getPresumedLineNumber(StmtLoc,
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000013659 &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}
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000013675
13676void 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
13697void 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.
Alp Tokerd4a3f0e2014-06-15 23:30:39 +000013721 if (Diags.isIgnored(DiagID, NBody->getSemiLoc()))
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000013722 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(
Stephen Kellyf2ceec42018-08-09 21:08:08 +000013743 PossibleBody->getBeginLoc(), &BodyColInvalid);
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000013744 if (BodyColInvalid)
13745 return;
13746
13747 bool StmtColInvalid;
Stephen Kellyf2ceec42018-08-09 21:08:08 +000013748 unsigned StmtCol =
13749 SourceMgr.getPresumedColumnNumber(S->getBeginLoc(), &StmtColInvalid);
Dmitri Gribenko800ddf32012-02-14 22:14:32 +000013750 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}
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013762
Richard Trieu36d0b2b2015-01-13 02:32:02 +000013763//===--- CHECK: Warn on self move with std::move. -------------------------===//
13764
13765/// DiagnoseSelfMove - Emits a warning if a value is moved to itself.
13766void Sema::DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr,
13767 SourceLocation OpLoc) {
Richard Trieu36d0b2b2015-01-13 02:32:02 +000013768 if (Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess, OpLoc))
13769 return;
13770
Richard Smith51ec0cf2017-02-21 01:17:38 +000013771 if (inTemplateInstantiation())
Richard Trieu36d0b2b2015-01-13 02:32:02 +000013772 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
Nico Weberb688d132017-09-28 16:16:39 +000013784 if (!CE->isCallToStdMove())
Richard Trieu36d0b2b2015-01-13 02:32:02 +000013785 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
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013850//===--- Layout compatibility ----------------------------------------------//
13851
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013852static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013853
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000013854/// Check if two enumeration types are layout-compatible.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013855static bool isLayoutCompatible(ASTContext &C, EnumDecl *ED1, EnumDecl *ED2) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013856 // 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000013863/// Check if two fields are layout-compatible.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013864static bool isLayoutCompatible(ASTContext &C, FieldDecl *Field1,
13865 FieldDecl *Field2) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013866 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000013884/// Check if two standard-layout structs are layout-compatible.
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013885/// (C++11 [class.mem] p17)
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013886static bool isLayoutCompatibleStruct(ASTContext &C, RecordDecl *RD1,
13887 RecordDecl *RD2) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013888 // 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000013928/// Check if two standard-layout unions are layout-compatible.
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013929/// (C++11 [class.mem] p18)
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013930static bool isLayoutCompatibleUnion(ASTContext &C, RecordDecl *RD1,
13931 RecordDecl *RD2) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013932 llvm::SmallPtrSet<FieldDecl *, 8> UnmatchedFields;
Aaron Ballmane8a8bae2014-03-08 20:12:42 +000013933 for (auto *Field2 : RD2->fields())
13934 UnmatchedFields.insert(Field2);
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013935
Aaron Ballmane8a8bae2014-03-08 20:12:42 +000013936 for (auto *Field1 : RD1->fields()) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013937 llvm::SmallPtrSet<FieldDecl *, 8>::iterator
13938 I = UnmatchedFields.begin(),
13939 E = UnmatchedFields.end();
13940
13941 for ( ; I != E; ++I) {
Aaron Ballmane8a8bae2014-03-08 20:12:42 +000013942 if (isLayoutCompatible(C, Field1, *I)) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013943 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
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013956static bool isLayoutCompatible(ASTContext &C, RecordDecl *RD1,
13957 RecordDecl *RD2) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013958 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000013967/// Check if two types are layout-compatible in C++11 sense.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000013968static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000013969 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}
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014002
14003//===--- CHECK: pointer_with_type_tag attribute: datatypes should match ----//
14004
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000014005/// Given a type tag expression find the type tag itself.
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014006///
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.
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000014012///
14013/// \param isConstantEvaluated wether the evalaution should be performed in
14014
14015/// constant context.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000014016static bool FindTypeTagExpr(const Expr *TypeExpr, const ASTContext &Ctx,
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000014017 const ValueDecl **VD, uint64_t *MagicValue,
14018 bool isConstantEvaluated) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014019 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;
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000014056 if (ACO->getCond()->EvaluateAsBooleanCondition(Result, Ctx,
14057 isConstantEvaluated)) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014058 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
Adrian Prantl9fc8faf2018-05-09 01:00:01 +000014082/// Retrieve the C type corresponding to type tag TypeExpr.
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014083///
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///
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000014093/// \param isConstantEvaluated wether the evalaution should be performed in
14094/// constant context.
14095///
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014096/// \returns true if the corresponding C type was found.
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000014097static bool GetMatchingCType(
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000014098 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) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014104 FoundWrongKind = false;
14105
14106 // Variable declaration that has type_tag_for_datatype attribute.
Craig Topperc3ec1492014-05-26 06:22:03 +000014107 const ValueDecl *VD = nullptr;
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014108
14109 uint64_t MagicValue;
14110
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000014111 if (!FindTypeTagExpr(TypeExpr, Ctx, &VD, &MagicValue, isConstantEvaluated))
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014112 return false;
14113
14114 if (VD) {
Benjamin Kramerae852a62014-02-23 14:34:50 +000014115 if (TypeTagForDatatypeAttr *I = VD->getAttr<TypeTagForDatatypeAttr>()) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014116 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}
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014140
14141void 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
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000014154static bool IsSameCharType(QualType T1, QualType T2) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014155 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}
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014171
14172void Sema::CheckArgumentWithTypeTag(const ArgumentWithTypeTagAttr *Attr,
Aaron Ballmand1f6dcd2017-11-29 23:10:14 +000014173 const ArrayRef<const Expr *> ExprArgs,
14174 SourceLocation CallSiteLoc) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014175 const IdentifierInfo *ArgumentKind = Attr->getArgumentKind();
14176 bool IsPointerAttr = Attr->getIsPointer();
14177
Aaron Ballmand1f6dcd2017-11-29 23:10:14 +000014178 // Retrieve the argument representing the 'type_tag'.
Joel E. Denny81508102018-03-13 14:51:22 +000014179 unsigned TypeTagIdxAST = Attr->getTypeTagIdx().getASTIndex();
14180 if (TypeTagIdxAST >= ExprArgs.size()) {
Aaron Ballmand1f6dcd2017-11-29 23:10:14 +000014181 Diag(CallSiteLoc, diag::err_tag_index_out_of_range)
Joel E. Denny81508102018-03-13 14:51:22 +000014182 << 0 << Attr->getTypeTagIdx().getSourceIndex();
Aaron Ballmand1f6dcd2017-11-29 23:10:14 +000014183 return;
14184 }
Joel E. Denny81508102018-03-13 14:51:22 +000014185 const Expr *TypeTagExpr = ExprArgs[TypeTagIdxAST];
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014186 bool FoundWrongKind;
14187 TypeTagData TypeInfo;
14188 if (!GetMatchingCType(ArgumentKind, TypeTagExpr, Context,
Gauthier Harnisch0bb4d462019-06-15 08:32:56 +000014189 TypeTagForDatatypeMagicValues.get(), FoundWrongKind,
14190 TypeInfo, isConstantEvaluated())) {
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014191 if (FoundWrongKind)
14192 Diag(TypeTagExpr->getExprLoc(),
14193 diag::warn_type_tag_for_datatype_wrong_kind)
14194 << TypeTagExpr->getSourceRange();
14195 return;
14196 }
14197
Aaron Ballmand1f6dcd2017-11-29 23:10:14 +000014198 // Retrieve the argument representing the 'arg_idx'.
Joel E. Denny81508102018-03-13 14:51:22 +000014199 unsigned ArgumentIdxAST = Attr->getArgumentIdx().getASTIndex();
14200 if (ArgumentIdxAST >= ExprArgs.size()) {
Aaron Ballmand1f6dcd2017-11-29 23:10:14 +000014201 Diag(CallSiteLoc, diag::err_tag_index_out_of_range)
Joel E. Denny81508102018-03-13 14:51:22 +000014202 << 1 << Attr->getArgumentIdx().getSourceIndex();
Aaron Ballmand1f6dcd2017-11-29 23:10:14 +000014203 return;
14204 }
Joel E. Denny81508102018-03-13 14:51:22 +000014205 const Expr *ArgumentExpr = ExprArgs[ArgumentIdxAST];
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014206 if (IsPointerAttr) {
14207 // Skip implicit cast of pointer to `void *' (as a function argument).
14208 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgumentExpr))
Dmitri Gribenko5ac744e2012-11-03 16:07:49 +000014209 if (ICE->getType()->isVoidPointerType() &&
Dmitri Gribenkof21203b2012-11-03 22:10:18 +000014210 ICE->getCastKind() == CK_BitCast)
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014211 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)
Aaron Ballman25dc1e12014-01-03 02:14:08 +000014260 << ArgumentType << ArgumentKind
Dmitri Gribenkoe4a5a902012-08-17 00:08:38 +000014261 << TypeInfo.LayoutCompatible << RequiredType
14262 << ArgumentExpr->getSourceRange()
14263 << TypeTagExpr->getSourceRange();
14264}
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014265
14266void Sema::AddPotentialMisalignedMembers(Expr *E, RecordDecl *RD, ValueDecl *MD,
14267 CharUnits Alignment) {
14268 MisalignedMembers.emplace_back(E, RD, MD, Alignment);
14269}
14270
14271void Sema::DiagnoseMisalignedMembers() {
14272 for (MisalignedMember &m : MisalignedMembers) {
Alex Lorenz014181e2016-10-05 09:27:48 +000014273 const NamedDecl *ND = m.RD;
14274 if (ND->getName().empty()) {
14275 if (const TypedefNameDecl *TD = m.RD->getTypedefNameForAnonDecl())
14276 ND = TD;
14277 }
Stephen Kellyf2ceec42018-08-09 21:08:08 +000014278 Diag(m.E->getBeginLoc(), diag::warn_taking_address_of_packed_member)
Alex Lorenz014181e2016-10-05 09:27:48 +000014279 << m.MD << ND << m.E->getSourceRange();
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014280 }
14281 MisalignedMembers.clear();
14282}
14283
14284void Sema::DiscardMisalignedMemberAddress(const Type *T, Expr *E) {
Roger Ferrer Ibaneze3d80262016-11-14 08:53:27 +000014285 E = E->IgnoreParens();
14286 if (!T->isPointerType() && !T->isIntegerType())
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014287 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)) {
Fangrui Song75e74e02019-03-31 08:48:19 +000014292 auto MA = llvm::find(MisalignedMembers, MisalignedMember(Op));
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014293 if (MA != MisalignedMembers.end() &&
Roger Ferrer Ibaneze3d80262016-11-14 08:53:27 +000014294 (T->isIntegerType() ||
Roger Ferrer Ibanezd80d6c52017-12-07 09:23:50 +000014295 (T->isPointerType() && (T->getPointeeType()->isIncompleteType() ||
14296 Context.getTypeAlignInChars(
14297 T->getPointeeType()) <= MA->Alignment))))
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014298 MisalignedMembers.erase(MA);
14299 }
14300 }
14301}
14302
14303void Sema::RefersToMemberWithReducedAlignment(
14304 Expr *E,
Benjamin Kramera8c3e672016-12-12 14:41:19 +000014305 llvm::function_ref<void(Expr *, RecordDecl *, FieldDecl *, CharUnits)>
14306 Action) {
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014307 const auto *ME = dyn_cast<MemberExpr>(E);
Roger Ferrer Ibaneze3d80262016-11-14 08:53:27 +000014308 if (!ME)
14309 return;
14310
Roger Ferrer Ibanez9f963472017-03-13 13:18:21 +000014311 // No need to check expressions with an __unaligned-qualified type.
14312 if (E->getType().getQualifiers().hasUnaligned())
14313 return;
14314
Roger Ferrer Ibaneze3d80262016-11-14 08:53:27 +000014315 // 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 {
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014321 QualType BaseType = ME->getBase()->getType();
14322 if (ME->isArrow())
14323 BaseType = BaseType->getPointeeType();
14324 RecordDecl *RD = BaseType->getAs<RecordType>()->getDecl();
Olivier Goffart67049f02017-07-07 09:38:59 +000014325 if (RD->isInvalidDecl())
14326 return;
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014327
14328 ValueDecl *MD = ME->getMemberDecl();
Roger Ferrer Ibaneze3d80262016-11-14 08:53:27 +000014329 auto *FD = dyn_cast<FieldDecl>(MD);
14330 // We do not care about non-data members.
14331 if (!FD || FD->isInvalidDecl())
14332 return;
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014333
Roger Ferrer Ibaneze3d80262016-11-14 08:53:27 +000014334 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 }
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014406 }
Roger Ferrer Ibaneze3d80262016-11-14 08:53:27 +000014407 assert(FD && "We did not find a packed FieldDecl!");
14408 Action(E, FD->getParent(), FD, Alignment);
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014409 }
14410}
14411
14412void Sema::CheckAddressOfPackedMember(Expr *rhs) {
14413 using namespace std::placeholders;
Eugene Zelenko11a7ef82017-11-15 22:00:04 +000014414
Roger Ferrer Ibanez722a4db2016-08-12 08:04:13 +000014415 RefersToMemberWithReducedAlignment(
14416 rhs, std::bind(&Sema::AddPotentialMisalignedMembers, std::ref(*this), _1,
14417 _2, _3, _4));
14418}