1 //===- SemaChecking.cpp - Extra Semantic Checking -------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements extra semantic analysis beyond what is enforced 10 // by the C type system. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/AST/APValue.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/Attr.h" 17 #include "clang/AST/AttrIterator.h" 18 #include "clang/AST/CharUnits.h" 19 #include "clang/AST/Decl.h" 20 #include "clang/AST/DeclBase.h" 21 #include "clang/AST/DeclCXX.h" 22 #include "clang/AST/DeclObjC.h" 23 #include "clang/AST/DeclarationName.h" 24 #include "clang/AST/EvaluatedExprVisitor.h" 25 #include "clang/AST/Expr.h" 26 #include "clang/AST/ExprCXX.h" 27 #include "clang/AST/ExprObjC.h" 28 #include "clang/AST/ExprOpenMP.h" 29 #include "clang/AST/FormatString.h" 30 #include "clang/AST/NSAPI.h" 31 #include "clang/AST/NonTrivialTypeVisitor.h" 32 #include "clang/AST/OperationKinds.h" 33 #include "clang/AST/RecordLayout.h" 34 #include "clang/AST/Stmt.h" 35 #include "clang/AST/TemplateBase.h" 36 #include "clang/AST/Type.h" 37 #include "clang/AST/TypeLoc.h" 38 #include "clang/AST/UnresolvedSet.h" 39 #include "clang/Basic/AddressSpaces.h" 40 #include "clang/Basic/CharInfo.h" 41 #include "clang/Basic/Diagnostic.h" 42 #include "clang/Basic/IdentifierTable.h" 43 #include "clang/Basic/LLVM.h" 44 #include "clang/Basic/LangOptions.h" 45 #include "clang/Basic/OpenCLOptions.h" 46 #include "clang/Basic/OperatorKinds.h" 47 #include "clang/Basic/PartialDiagnostic.h" 48 #include "clang/Basic/SourceLocation.h" 49 #include "clang/Basic/SourceManager.h" 50 #include "clang/Basic/Specifiers.h" 51 #include "clang/Basic/SyncScope.h" 52 #include "clang/Basic/TargetBuiltins.h" 53 #include "clang/Basic/TargetCXXABI.h" 54 #include "clang/Basic/TargetInfo.h" 55 #include "clang/Basic/TypeTraits.h" 56 #include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering. 57 #include "clang/Sema/Initialization.h" 58 #include "clang/Sema/Lookup.h" 59 #include "clang/Sema/Ownership.h" 60 #include "clang/Sema/Scope.h" 61 #include "clang/Sema/ScopeInfo.h" 62 #include "clang/Sema/Sema.h" 63 #include "clang/Sema/SemaInternal.h" 64 #include "llvm/ADT/APFloat.h" 65 #include "llvm/ADT/APInt.h" 66 #include "llvm/ADT/APSInt.h" 67 #include "llvm/ADT/ArrayRef.h" 68 #include "llvm/ADT/DenseMap.h" 69 #include "llvm/ADT/FoldingSet.h" 70 #include "llvm/ADT/None.h" 71 #include "llvm/ADT/Optional.h" 72 #include "llvm/ADT/STLExtras.h" 73 #include "llvm/ADT/SmallBitVector.h" 74 #include "llvm/ADT/SmallPtrSet.h" 75 #include "llvm/ADT/SmallString.h" 76 #include "llvm/ADT/SmallVector.h" 77 #include "llvm/ADT/StringRef.h" 78 #include "llvm/ADT/StringSet.h" 79 #include "llvm/ADT/StringSwitch.h" 80 #include "llvm/ADT/Triple.h" 81 #include "llvm/Support/AtomicOrdering.h" 82 #include "llvm/Support/Casting.h" 83 #include "llvm/Support/Compiler.h" 84 #include "llvm/Support/ConvertUTF.h" 85 #include "llvm/Support/ErrorHandling.h" 86 #include "llvm/Support/Format.h" 87 #include "llvm/Support/Locale.h" 88 #include "llvm/Support/MathExtras.h" 89 #include "llvm/Support/SaveAndRestore.h" 90 #include "llvm/Support/raw_ostream.h" 91 #include <algorithm> 92 #include <bitset> 93 #include <cassert> 94 #include <cctype> 95 #include <cstddef> 96 #include <cstdint> 97 #include <functional> 98 #include <limits> 99 #include <string> 100 #include <tuple> 101 #include <utility> 102 103 using namespace clang; 104 using namespace sema; 105 106 SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL, 107 unsigned ByteNo) const { 108 return SL->getLocationOfByte(ByteNo, getSourceManager(), LangOpts, 109 Context.getTargetInfo()); 110 } 111 112 /// Checks that a call expression's argument count is the desired number. 113 /// This is useful when doing custom type-checking. Returns true on error. 114 static bool checkArgCount(Sema &S, CallExpr *call, unsigned desiredArgCount) { 115 unsigned argCount = call->getNumArgs(); 116 if (argCount == desiredArgCount) return false; 117 118 if (argCount < desiredArgCount) 119 return S.Diag(call->getEndLoc(), diag::err_typecheck_call_too_few_args) 120 << 0 /*function call*/ << desiredArgCount << argCount 121 << call->getSourceRange(); 122 123 // Highlight all the excess arguments. 124 SourceRange range(call->getArg(desiredArgCount)->getBeginLoc(), 125 call->getArg(argCount - 1)->getEndLoc()); 126 127 return S.Diag(range.getBegin(), diag::err_typecheck_call_too_many_args) 128 << 0 /*function call*/ << desiredArgCount << argCount 129 << call->getArg(1)->getSourceRange(); 130 } 131 132 /// Check that the first argument to __builtin_annotation is an integer 133 /// and the second argument is a non-wide string literal. 134 static bool SemaBuiltinAnnotation(Sema &S, CallExpr *TheCall) { 135 if (checkArgCount(S, TheCall, 2)) 136 return true; 137 138 // First argument should be an integer. 139 Expr *ValArg = TheCall->getArg(0); 140 QualType Ty = ValArg->getType(); 141 if (!Ty->isIntegerType()) { 142 S.Diag(ValArg->getBeginLoc(), diag::err_builtin_annotation_first_arg) 143 << ValArg->getSourceRange(); 144 return true; 145 } 146 147 // Second argument should be a constant string. 148 Expr *StrArg = TheCall->getArg(1)->IgnoreParenCasts(); 149 StringLiteral *Literal = dyn_cast<StringLiteral>(StrArg); 150 if (!Literal || !Literal->isAscii()) { 151 S.Diag(StrArg->getBeginLoc(), diag::err_builtin_annotation_second_arg) 152 << StrArg->getSourceRange(); 153 return true; 154 } 155 156 TheCall->setType(Ty); 157 return false; 158 } 159 160 static bool SemaBuiltinMSVCAnnotation(Sema &S, CallExpr *TheCall) { 161 // We need at least one argument. 162 if (TheCall->getNumArgs() < 1) { 163 S.Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least) 164 << 0 << 1 << TheCall->getNumArgs() 165 << TheCall->getCallee()->getSourceRange(); 166 return true; 167 } 168 169 // All arguments should be wide string literals. 170 for (Expr *Arg : TheCall->arguments()) { 171 auto *Literal = dyn_cast<StringLiteral>(Arg->IgnoreParenCasts()); 172 if (!Literal || !Literal->isWide()) { 173 S.Diag(Arg->getBeginLoc(), diag::err_msvc_annotation_wide_str) 174 << Arg->getSourceRange(); 175 return true; 176 } 177 } 178 179 return false; 180 } 181 182 /// Check that the argument to __builtin_addressof is a glvalue, and set the 183 /// result type to the corresponding pointer type. 184 static bool SemaBuiltinAddressof(Sema &S, CallExpr *TheCall) { 185 if (checkArgCount(S, TheCall, 1)) 186 return true; 187 188 ExprResult Arg(TheCall->getArg(0)); 189 QualType ResultType = S.CheckAddressOfOperand(Arg, TheCall->getBeginLoc()); 190 if (ResultType.isNull()) 191 return true; 192 193 TheCall->setArg(0, Arg.get()); 194 TheCall->setType(ResultType); 195 return false; 196 } 197 198 /// Check the number of arguments and set the result type to 199 /// the argument type. 200 static bool SemaBuiltinPreserveAI(Sema &S, CallExpr *TheCall) { 201 if (checkArgCount(S, TheCall, 1)) 202 return true; 203 204 TheCall->setType(TheCall->getArg(0)->getType()); 205 return false; 206 } 207 208 /// Check that the value argument for __builtin_is_aligned(value, alignment) and 209 /// __builtin_aligned_{up,down}(value, alignment) is an integer or a pointer 210 /// type (but not a function pointer) and that the alignment is a power-of-two. 211 static bool SemaBuiltinAlignment(Sema &S, CallExpr *TheCall, unsigned ID) { 212 if (checkArgCount(S, TheCall, 2)) 213 return true; 214 215 clang::Expr *Source = TheCall->getArg(0); 216 bool IsBooleanAlignBuiltin = ID == Builtin::BI__builtin_is_aligned; 217 218 auto IsValidIntegerType = [](QualType Ty) { 219 return Ty->isIntegerType() && !Ty->isEnumeralType() && !Ty->isBooleanType(); 220 }; 221 QualType SrcTy = Source->getType(); 222 // We should also be able to use it with arrays (but not functions!). 223 if (SrcTy->canDecayToPointerType() && SrcTy->isArrayType()) { 224 SrcTy = S.Context.getDecayedType(SrcTy); 225 } 226 if ((!SrcTy->isPointerType() && !IsValidIntegerType(SrcTy)) || 227 SrcTy->isFunctionPointerType()) { 228 // FIXME: this is not quite the right error message since we don't allow 229 // floating point types, or member pointers. 230 S.Diag(Source->getExprLoc(), diag::err_typecheck_expect_scalar_operand) 231 << SrcTy; 232 return true; 233 } 234 235 clang::Expr *AlignOp = TheCall->getArg(1); 236 if (!IsValidIntegerType(AlignOp->getType())) { 237 S.Diag(AlignOp->getExprLoc(), diag::err_typecheck_expect_int) 238 << AlignOp->getType(); 239 return true; 240 } 241 Expr::EvalResult AlignResult; 242 unsigned MaxAlignmentBits = S.Context.getIntWidth(SrcTy) - 1; 243 // We can't check validity of alignment if it is value dependent. 244 if (!AlignOp->isValueDependent() && 245 AlignOp->EvaluateAsInt(AlignResult, S.Context, 246 Expr::SE_AllowSideEffects)) { 247 llvm::APSInt AlignValue = AlignResult.Val.getInt(); 248 llvm::APSInt MaxValue( 249 llvm::APInt::getOneBitSet(MaxAlignmentBits + 1, MaxAlignmentBits)); 250 if (AlignValue < 1) { 251 S.Diag(AlignOp->getExprLoc(), diag::err_alignment_too_small) << 1; 252 return true; 253 } 254 if (llvm::APSInt::compareValues(AlignValue, MaxValue) > 0) { 255 S.Diag(AlignOp->getExprLoc(), diag::err_alignment_too_big) 256 << toString(MaxValue, 10); 257 return true; 258 } 259 if (!AlignValue.isPowerOf2()) { 260 S.Diag(AlignOp->getExprLoc(), diag::err_alignment_not_power_of_two); 261 return true; 262 } 263 if (AlignValue == 1) { 264 S.Diag(AlignOp->getExprLoc(), diag::warn_alignment_builtin_useless) 265 << IsBooleanAlignBuiltin; 266 } 267 } 268 269 ExprResult SrcArg = S.PerformCopyInitialization( 270 InitializedEntity::InitializeParameter(S.Context, SrcTy, false), 271 SourceLocation(), Source); 272 if (SrcArg.isInvalid()) 273 return true; 274 TheCall->setArg(0, SrcArg.get()); 275 ExprResult AlignArg = 276 S.PerformCopyInitialization(InitializedEntity::InitializeParameter( 277 S.Context, AlignOp->getType(), false), 278 SourceLocation(), AlignOp); 279 if (AlignArg.isInvalid()) 280 return true; 281 TheCall->setArg(1, AlignArg.get()); 282 // For align_up/align_down, the return type is the same as the (potentially 283 // decayed) argument type including qualifiers. For is_aligned(), the result 284 // is always bool. 285 TheCall->setType(IsBooleanAlignBuiltin ? S.Context.BoolTy : SrcTy); 286 return false; 287 } 288 289 static bool SemaBuiltinOverflow(Sema &S, CallExpr *TheCall, 290 unsigned BuiltinID) { 291 if (checkArgCount(S, TheCall, 3)) 292 return true; 293 294 // First two arguments should be integers. 295 for (unsigned I = 0; I < 2; ++I) { 296 ExprResult Arg = S.DefaultFunctionArrayLvalueConversion(TheCall->getArg(I)); 297 if (Arg.isInvalid()) return true; 298 TheCall->setArg(I, Arg.get()); 299 300 QualType Ty = Arg.get()->getType(); 301 if (!Ty->isIntegerType()) { 302 S.Diag(Arg.get()->getBeginLoc(), diag::err_overflow_builtin_must_be_int) 303 << Ty << Arg.get()->getSourceRange(); 304 return true; 305 } 306 } 307 308 // Third argument should be a pointer to a non-const integer. 309 // IRGen correctly handles volatile, restrict, and address spaces, and 310 // the other qualifiers aren't possible. 311 { 312 ExprResult Arg = S.DefaultFunctionArrayLvalueConversion(TheCall->getArg(2)); 313 if (Arg.isInvalid()) return true; 314 TheCall->setArg(2, Arg.get()); 315 316 QualType Ty = Arg.get()->getType(); 317 const auto *PtrTy = Ty->getAs<PointerType>(); 318 if (!PtrTy || 319 !PtrTy->getPointeeType()->isIntegerType() || 320 PtrTy->getPointeeType().isConstQualified()) { 321 S.Diag(Arg.get()->getBeginLoc(), 322 diag::err_overflow_builtin_must_be_ptr_int) 323 << Ty << Arg.get()->getSourceRange(); 324 return true; 325 } 326 } 327 328 // Disallow signed ExtIntType args larger than 128 bits to mul function until 329 // we improve backend support. 330 if (BuiltinID == Builtin::BI__builtin_mul_overflow) { 331 for (unsigned I = 0; I < 3; ++I) { 332 const auto Arg = TheCall->getArg(I); 333 // Third argument will be a pointer. 334 auto Ty = I < 2 ? Arg->getType() : Arg->getType()->getPointeeType(); 335 if (Ty->isExtIntType() && Ty->isSignedIntegerType() && 336 S.getASTContext().getIntWidth(Ty) > 128) 337 return S.Diag(Arg->getBeginLoc(), 338 diag::err_overflow_builtin_ext_int_max_size) 339 << 128; 340 } 341 } 342 343 return false; 344 } 345 346 static bool SemaBuiltinCallWithStaticChain(Sema &S, CallExpr *BuiltinCall) { 347 if (checkArgCount(S, BuiltinCall, 2)) 348 return true; 349 350 SourceLocation BuiltinLoc = BuiltinCall->getBeginLoc(); 351 Expr *Builtin = BuiltinCall->getCallee()->IgnoreImpCasts(); 352 Expr *Call = BuiltinCall->getArg(0); 353 Expr *Chain = BuiltinCall->getArg(1); 354 355 if (Call->getStmtClass() != Stmt::CallExprClass) { 356 S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_not_call) 357 << Call->getSourceRange(); 358 return true; 359 } 360 361 auto CE = cast<CallExpr>(Call); 362 if (CE->getCallee()->getType()->isBlockPointerType()) { 363 S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_block_call) 364 << Call->getSourceRange(); 365 return true; 366 } 367 368 const Decl *TargetDecl = CE->getCalleeDecl(); 369 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(TargetDecl)) 370 if (FD->getBuiltinID()) { 371 S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_builtin_call) 372 << Call->getSourceRange(); 373 return true; 374 } 375 376 if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens())) { 377 S.Diag(BuiltinLoc, diag::err_first_argument_to_cwsc_pdtor_call) 378 << Call->getSourceRange(); 379 return true; 380 } 381 382 ExprResult ChainResult = S.UsualUnaryConversions(Chain); 383 if (ChainResult.isInvalid()) 384 return true; 385 if (!ChainResult.get()->getType()->isPointerType()) { 386 S.Diag(BuiltinLoc, diag::err_second_argument_to_cwsc_not_pointer) 387 << Chain->getSourceRange(); 388 return true; 389 } 390 391 QualType ReturnTy = CE->getCallReturnType(S.Context); 392 QualType ArgTys[2] = { ReturnTy, ChainResult.get()->getType() }; 393 QualType BuiltinTy = S.Context.getFunctionType( 394 ReturnTy, ArgTys, FunctionProtoType::ExtProtoInfo()); 395 QualType BuiltinPtrTy = S.Context.getPointerType(BuiltinTy); 396 397 Builtin = 398 S.ImpCastExprToType(Builtin, BuiltinPtrTy, CK_BuiltinFnToFnPtr).get(); 399 400 BuiltinCall->setType(CE->getType()); 401 BuiltinCall->setValueKind(CE->getValueKind()); 402 BuiltinCall->setObjectKind(CE->getObjectKind()); 403 BuiltinCall->setCallee(Builtin); 404 BuiltinCall->setArg(1, ChainResult.get()); 405 406 return false; 407 } 408 409 namespace { 410 411 class EstimateSizeFormatHandler 412 : public analyze_format_string::FormatStringHandler { 413 size_t Size; 414 415 public: 416 EstimateSizeFormatHandler(StringRef Format) 417 : Size(std::min(Format.find(0), Format.size()) + 418 1 /* null byte always written by sprintf */) {} 419 420 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS, 421 const char *, unsigned SpecifierLen) override { 422 423 const size_t FieldWidth = computeFieldWidth(FS); 424 const size_t Precision = computePrecision(FS); 425 426 // The actual format. 427 switch (FS.getConversionSpecifier().getKind()) { 428 // Just a char. 429 case analyze_format_string::ConversionSpecifier::cArg: 430 case analyze_format_string::ConversionSpecifier::CArg: 431 Size += std::max(FieldWidth, (size_t)1); 432 break; 433 // Just an integer. 434 case analyze_format_string::ConversionSpecifier::dArg: 435 case analyze_format_string::ConversionSpecifier::DArg: 436 case analyze_format_string::ConversionSpecifier::iArg: 437 case analyze_format_string::ConversionSpecifier::oArg: 438 case analyze_format_string::ConversionSpecifier::OArg: 439 case analyze_format_string::ConversionSpecifier::uArg: 440 case analyze_format_string::ConversionSpecifier::UArg: 441 case analyze_format_string::ConversionSpecifier::xArg: 442 case analyze_format_string::ConversionSpecifier::XArg: 443 Size += std::max(FieldWidth, Precision); 444 break; 445 446 // %g style conversion switches between %f or %e style dynamically. 447 // %f always takes less space, so default to it. 448 case analyze_format_string::ConversionSpecifier::gArg: 449 case analyze_format_string::ConversionSpecifier::GArg: 450 451 // Floating point number in the form '[+]ddd.ddd'. 452 case analyze_format_string::ConversionSpecifier::fArg: 453 case analyze_format_string::ConversionSpecifier::FArg: 454 Size += std::max(FieldWidth, 1 /* integer part */ + 455 (Precision ? 1 + Precision 456 : 0) /* period + decimal */); 457 break; 458 459 // Floating point number in the form '[-]d.ddde[+-]dd'. 460 case analyze_format_string::ConversionSpecifier::eArg: 461 case analyze_format_string::ConversionSpecifier::EArg: 462 Size += 463 std::max(FieldWidth, 464 1 /* integer part */ + 465 (Precision ? 1 + Precision : 0) /* period + decimal */ + 466 1 /* e or E letter */ + 2 /* exponent */); 467 break; 468 469 // Floating point number in the form '[-]0xh.hhhhp±dd'. 470 case analyze_format_string::ConversionSpecifier::aArg: 471 case analyze_format_string::ConversionSpecifier::AArg: 472 Size += 473 std::max(FieldWidth, 474 2 /* 0x */ + 1 /* integer part */ + 475 (Precision ? 1 + Precision : 0) /* period + decimal */ + 476 1 /* p or P letter */ + 1 /* + or - */ + 1 /* value */); 477 break; 478 479 // Just a string. 480 case analyze_format_string::ConversionSpecifier::sArg: 481 case analyze_format_string::ConversionSpecifier::SArg: 482 Size += FieldWidth; 483 break; 484 485 // Just a pointer in the form '0xddd'. 486 case analyze_format_string::ConversionSpecifier::pArg: 487 Size += std::max(FieldWidth, 2 /* leading 0x */ + Precision); 488 break; 489 490 // A plain percent. 491 case analyze_format_string::ConversionSpecifier::PercentArg: 492 Size += 1; 493 break; 494 495 default: 496 break; 497 } 498 499 Size += FS.hasPlusPrefix() || FS.hasSpacePrefix(); 500 501 if (FS.hasAlternativeForm()) { 502 switch (FS.getConversionSpecifier().getKind()) { 503 default: 504 break; 505 // Force a leading '0'. 506 case analyze_format_string::ConversionSpecifier::oArg: 507 Size += 1; 508 break; 509 // Force a leading '0x'. 510 case analyze_format_string::ConversionSpecifier::xArg: 511 case analyze_format_string::ConversionSpecifier::XArg: 512 Size += 2; 513 break; 514 // Force a period '.' before decimal, even if precision is 0. 515 case analyze_format_string::ConversionSpecifier::aArg: 516 case analyze_format_string::ConversionSpecifier::AArg: 517 case analyze_format_string::ConversionSpecifier::eArg: 518 case analyze_format_string::ConversionSpecifier::EArg: 519 case analyze_format_string::ConversionSpecifier::fArg: 520 case analyze_format_string::ConversionSpecifier::FArg: 521 case analyze_format_string::ConversionSpecifier::gArg: 522 case analyze_format_string::ConversionSpecifier::GArg: 523 Size += (Precision ? 0 : 1); 524 break; 525 } 526 } 527 assert(SpecifierLen <= Size && "no underflow"); 528 Size -= SpecifierLen; 529 return true; 530 } 531 532 size_t getSizeLowerBound() const { return Size; } 533 534 private: 535 static size_t computeFieldWidth(const analyze_printf::PrintfSpecifier &FS) { 536 const analyze_format_string::OptionalAmount &FW = FS.getFieldWidth(); 537 size_t FieldWidth = 0; 538 if (FW.getHowSpecified() == analyze_format_string::OptionalAmount::Constant) 539 FieldWidth = FW.getConstantAmount(); 540 return FieldWidth; 541 } 542 543 static size_t computePrecision(const analyze_printf::PrintfSpecifier &FS) { 544 const analyze_format_string::OptionalAmount &FW = FS.getPrecision(); 545 size_t Precision = 0; 546 547 // See man 3 printf for default precision value based on the specifier. 548 switch (FW.getHowSpecified()) { 549 case analyze_format_string::OptionalAmount::NotSpecified: 550 switch (FS.getConversionSpecifier().getKind()) { 551 default: 552 break; 553 case analyze_format_string::ConversionSpecifier::dArg: // %d 554 case analyze_format_string::ConversionSpecifier::DArg: // %D 555 case analyze_format_string::ConversionSpecifier::iArg: // %i 556 Precision = 1; 557 break; 558 case analyze_format_string::ConversionSpecifier::oArg: // %d 559 case analyze_format_string::ConversionSpecifier::OArg: // %D 560 case analyze_format_string::ConversionSpecifier::uArg: // %d 561 case analyze_format_string::ConversionSpecifier::UArg: // %D 562 case analyze_format_string::ConversionSpecifier::xArg: // %d 563 case analyze_format_string::ConversionSpecifier::XArg: // %D 564 Precision = 1; 565 break; 566 case analyze_format_string::ConversionSpecifier::fArg: // %f 567 case analyze_format_string::ConversionSpecifier::FArg: // %F 568 case analyze_format_string::ConversionSpecifier::eArg: // %e 569 case analyze_format_string::ConversionSpecifier::EArg: // %E 570 case analyze_format_string::ConversionSpecifier::gArg: // %g 571 case analyze_format_string::ConversionSpecifier::GArg: // %G 572 Precision = 6; 573 break; 574 case analyze_format_string::ConversionSpecifier::pArg: // %d 575 Precision = 1; 576 break; 577 } 578 break; 579 case analyze_format_string::OptionalAmount::Constant: 580 Precision = FW.getConstantAmount(); 581 break; 582 default: 583 break; 584 } 585 return Precision; 586 } 587 }; 588 589 } // namespace 590 591 void Sema::checkFortifiedBuiltinMemoryFunction(FunctionDecl *FD, 592 CallExpr *TheCall) { 593 if (TheCall->isValueDependent() || TheCall->isTypeDependent() || 594 isConstantEvaluated()) 595 return; 596 597 unsigned BuiltinID = FD->getBuiltinID(/*ConsiderWrappers=*/true); 598 if (!BuiltinID) 599 return; 600 601 const TargetInfo &TI = getASTContext().getTargetInfo(); 602 unsigned SizeTypeWidth = TI.getTypeWidth(TI.getSizeType()); 603 604 auto ComputeExplicitObjectSizeArgument = 605 [&](unsigned Index) -> Optional<llvm::APSInt> { 606 Expr::EvalResult Result; 607 Expr *SizeArg = TheCall->getArg(Index); 608 if (!SizeArg->EvaluateAsInt(Result, getASTContext())) 609 return llvm::None; 610 return Result.Val.getInt(); 611 }; 612 613 auto ComputeSizeArgument = [&](unsigned Index) -> Optional<llvm::APSInt> { 614 // If the parameter has a pass_object_size attribute, then we should use its 615 // (potentially) more strict checking mode. Otherwise, conservatively assume 616 // type 0. 617 int BOSType = 0; 618 if (const auto *POS = 619 FD->getParamDecl(Index)->getAttr<PassObjectSizeAttr>()) 620 BOSType = POS->getType(); 621 622 const Expr *ObjArg = TheCall->getArg(Index); 623 uint64_t Result; 624 if (!ObjArg->tryEvaluateObjectSize(Result, getASTContext(), BOSType)) 625 return llvm::None; 626 627 // Get the object size in the target's size_t width. 628 return llvm::APSInt::getUnsigned(Result).extOrTrunc(SizeTypeWidth); 629 }; 630 631 auto ComputeStrLenArgument = [&](unsigned Index) -> Optional<llvm::APSInt> { 632 Expr *ObjArg = TheCall->getArg(Index); 633 uint64_t Result; 634 if (!ObjArg->tryEvaluateStrLen(Result, getASTContext())) 635 return llvm::None; 636 // Add 1 for null byte. 637 return llvm::APSInt::getUnsigned(Result + 1).extOrTrunc(SizeTypeWidth); 638 }; 639 640 Optional<llvm::APSInt> SourceSize; 641 Optional<llvm::APSInt> DestinationSize; 642 unsigned DiagID = 0; 643 bool IsChkVariant = false; 644 645 switch (BuiltinID) { 646 default: 647 return; 648 case Builtin::BI__builtin_strcpy: 649 case Builtin::BIstrcpy: { 650 DiagID = diag::warn_fortify_strlen_overflow; 651 SourceSize = ComputeStrLenArgument(1); 652 DestinationSize = ComputeSizeArgument(0); 653 break; 654 } 655 656 case Builtin::BI__builtin___strcpy_chk: { 657 DiagID = diag::warn_fortify_strlen_overflow; 658 SourceSize = ComputeStrLenArgument(1); 659 DestinationSize = ComputeExplicitObjectSizeArgument(2); 660 IsChkVariant = true; 661 break; 662 } 663 664 case Builtin::BIsprintf: 665 case Builtin::BI__builtin___sprintf_chk: { 666 size_t FormatIndex = BuiltinID == Builtin::BIsprintf ? 1 : 3; 667 auto *FormatExpr = TheCall->getArg(FormatIndex)->IgnoreParenImpCasts(); 668 669 if (auto *Format = dyn_cast<StringLiteral>(FormatExpr)) { 670 671 if (!Format->isAscii() && !Format->isUTF8()) 672 return; 673 674 StringRef FormatStrRef = Format->getString(); 675 EstimateSizeFormatHandler H(FormatStrRef); 676 const char *FormatBytes = FormatStrRef.data(); 677 const ConstantArrayType *T = 678 Context.getAsConstantArrayType(Format->getType()); 679 assert(T && "String literal not of constant array type!"); 680 size_t TypeSize = T->getSize().getZExtValue(); 681 682 // In case there's a null byte somewhere. 683 size_t StrLen = 684 std::min(std::max(TypeSize, size_t(1)) - 1, FormatStrRef.find(0)); 685 if (!analyze_format_string::ParsePrintfString( 686 H, FormatBytes, FormatBytes + StrLen, getLangOpts(), 687 Context.getTargetInfo(), false)) { 688 DiagID = diag::warn_fortify_source_format_overflow; 689 SourceSize = llvm::APSInt::getUnsigned(H.getSizeLowerBound()) 690 .extOrTrunc(SizeTypeWidth); 691 if (BuiltinID == Builtin::BI__builtin___sprintf_chk) { 692 DestinationSize = ComputeExplicitObjectSizeArgument(2); 693 IsChkVariant = true; 694 } else { 695 DestinationSize = ComputeSizeArgument(0); 696 } 697 break; 698 } 699 } 700 return; 701 } 702 case Builtin::BI__builtin___memcpy_chk: 703 case Builtin::BI__builtin___memmove_chk: 704 case Builtin::BI__builtin___memset_chk: 705 case Builtin::BI__builtin___strlcat_chk: 706 case Builtin::BI__builtin___strlcpy_chk: 707 case Builtin::BI__builtin___strncat_chk: 708 case Builtin::BI__builtin___strncpy_chk: 709 case Builtin::BI__builtin___stpncpy_chk: 710 case Builtin::BI__builtin___memccpy_chk: 711 case Builtin::BI__builtin___mempcpy_chk: { 712 DiagID = diag::warn_builtin_chk_overflow; 713 SourceSize = ComputeExplicitObjectSizeArgument(TheCall->getNumArgs() - 2); 714 DestinationSize = 715 ComputeExplicitObjectSizeArgument(TheCall->getNumArgs() - 1); 716 IsChkVariant = true; 717 break; 718 } 719 720 case Builtin::BI__builtin___snprintf_chk: 721 case Builtin::BI__builtin___vsnprintf_chk: { 722 DiagID = diag::warn_builtin_chk_overflow; 723 SourceSize = ComputeExplicitObjectSizeArgument(1); 724 DestinationSize = ComputeExplicitObjectSizeArgument(3); 725 IsChkVariant = true; 726 break; 727 } 728 729 case Builtin::BIstrncat: 730 case Builtin::BI__builtin_strncat: 731 case Builtin::BIstrncpy: 732 case Builtin::BI__builtin_strncpy: 733 case Builtin::BIstpncpy: 734 case Builtin::BI__builtin_stpncpy: { 735 // Whether these functions overflow depends on the runtime strlen of the 736 // string, not just the buffer size, so emitting the "always overflow" 737 // diagnostic isn't quite right. We should still diagnose passing a buffer 738 // size larger than the destination buffer though; this is a runtime abort 739 // in _FORTIFY_SOURCE mode, and is quite suspicious otherwise. 740 DiagID = diag::warn_fortify_source_size_mismatch; 741 SourceSize = ComputeExplicitObjectSizeArgument(TheCall->getNumArgs() - 1); 742 DestinationSize = ComputeSizeArgument(0); 743 break; 744 } 745 746 case Builtin::BImemcpy: 747 case Builtin::BI__builtin_memcpy: 748 case Builtin::BImemmove: 749 case Builtin::BI__builtin_memmove: 750 case Builtin::BImemset: 751 case Builtin::BI__builtin_memset: 752 case Builtin::BImempcpy: 753 case Builtin::BI__builtin_mempcpy: { 754 DiagID = diag::warn_fortify_source_overflow; 755 SourceSize = ComputeExplicitObjectSizeArgument(TheCall->getNumArgs() - 1); 756 DestinationSize = ComputeSizeArgument(0); 757 break; 758 } 759 case Builtin::BIsnprintf: 760 case Builtin::BI__builtin_snprintf: 761 case Builtin::BIvsnprintf: 762 case Builtin::BI__builtin_vsnprintf: { 763 DiagID = diag::warn_fortify_source_size_mismatch; 764 SourceSize = ComputeExplicitObjectSizeArgument(1); 765 DestinationSize = ComputeSizeArgument(0); 766 break; 767 } 768 } 769 770 if (!SourceSize || !DestinationSize || 771 SourceSize.getValue().ule(DestinationSize.getValue())) 772 return; 773 774 StringRef FunctionName = getASTContext().BuiltinInfo.getName(BuiltinID); 775 // Skim off the details of whichever builtin was called to produce a better 776 // diagnostic, as it's unlikely that the user wrote the __builtin explicitly. 777 if (IsChkVariant) { 778 FunctionName = FunctionName.drop_front(std::strlen("__builtin___")); 779 FunctionName = FunctionName.drop_back(std::strlen("_chk")); 780 } else if (FunctionName.startswith("__builtin_")) { 781 FunctionName = FunctionName.drop_front(std::strlen("__builtin_")); 782 } 783 784 SmallString<16> DestinationStr; 785 SmallString<16> SourceStr; 786 DestinationSize->toString(DestinationStr, /*Radix=*/10); 787 SourceSize->toString(SourceStr, /*Radix=*/10); 788 DiagRuntimeBehavior(TheCall->getBeginLoc(), TheCall, 789 PDiag(DiagID) 790 << FunctionName << DestinationStr << SourceStr); 791 } 792 793 static bool SemaBuiltinSEHScopeCheck(Sema &SemaRef, CallExpr *TheCall, 794 Scope::ScopeFlags NeededScopeFlags, 795 unsigned DiagID) { 796 // Scopes aren't available during instantiation. Fortunately, builtin 797 // functions cannot be template args so they cannot be formed through template 798 // instantiation. Therefore checking once during the parse is sufficient. 799 if (SemaRef.inTemplateInstantiation()) 800 return false; 801 802 Scope *S = SemaRef.getCurScope(); 803 while (S && !S->isSEHExceptScope()) 804 S = S->getParent(); 805 if (!S || !(S->getFlags() & NeededScopeFlags)) { 806 auto *DRE = cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); 807 SemaRef.Diag(TheCall->getExprLoc(), DiagID) 808 << DRE->getDecl()->getIdentifier(); 809 return true; 810 } 811 812 return false; 813 } 814 815 static inline bool isBlockPointer(Expr *Arg) { 816 return Arg->getType()->isBlockPointerType(); 817 } 818 819 /// OpenCL C v2.0, s6.13.17.2 - Checks that the block parameters are all local 820 /// void*, which is a requirement of device side enqueue. 821 static bool checkOpenCLBlockArgs(Sema &S, Expr *BlockArg) { 822 const BlockPointerType *BPT = 823 cast<BlockPointerType>(BlockArg->getType().getCanonicalType()); 824 ArrayRef<QualType> Params = 825 BPT->getPointeeType()->castAs<FunctionProtoType>()->getParamTypes(); 826 unsigned ArgCounter = 0; 827 bool IllegalParams = false; 828 // Iterate through the block parameters until either one is found that is not 829 // a local void*, or the block is valid. 830 for (ArrayRef<QualType>::iterator I = Params.begin(), E = Params.end(); 831 I != E; ++I, ++ArgCounter) { 832 if (!(*I)->isPointerType() || !(*I)->getPointeeType()->isVoidType() || 833 (*I)->getPointeeType().getQualifiers().getAddressSpace() != 834 LangAS::opencl_local) { 835 // Get the location of the error. If a block literal has been passed 836 // (BlockExpr) then we can point straight to the offending argument, 837 // else we just point to the variable reference. 838 SourceLocation ErrorLoc; 839 if (isa<BlockExpr>(BlockArg)) { 840 BlockDecl *BD = cast<BlockExpr>(BlockArg)->getBlockDecl(); 841 ErrorLoc = BD->getParamDecl(ArgCounter)->getBeginLoc(); 842 } else if (isa<DeclRefExpr>(BlockArg)) { 843 ErrorLoc = cast<DeclRefExpr>(BlockArg)->getBeginLoc(); 844 } 845 S.Diag(ErrorLoc, 846 diag::err_opencl_enqueue_kernel_blocks_non_local_void_args); 847 IllegalParams = true; 848 } 849 } 850 851 return IllegalParams; 852 } 853 854 static bool checkOpenCLSubgroupExt(Sema &S, CallExpr *Call) { 855 if (!S.getOpenCLOptions().isSupported("cl_khr_subgroups", S.getLangOpts())) { 856 S.Diag(Call->getBeginLoc(), diag::err_opencl_requires_extension) 857 << 1 << Call->getDirectCallee() << "cl_khr_subgroups"; 858 return true; 859 } 860 return false; 861 } 862 863 static bool SemaOpenCLBuiltinNDRangeAndBlock(Sema &S, CallExpr *TheCall) { 864 if (checkArgCount(S, TheCall, 2)) 865 return true; 866 867 if (checkOpenCLSubgroupExt(S, TheCall)) 868 return true; 869 870 // First argument is an ndrange_t type. 871 Expr *NDRangeArg = TheCall->getArg(0); 872 if (NDRangeArg->getType().getUnqualifiedType().getAsString() != "ndrange_t") { 873 S.Diag(NDRangeArg->getBeginLoc(), diag::err_opencl_builtin_expected_type) 874 << TheCall->getDirectCallee() << "'ndrange_t'"; 875 return true; 876 } 877 878 Expr *BlockArg = TheCall->getArg(1); 879 if (!isBlockPointer(BlockArg)) { 880 S.Diag(BlockArg->getBeginLoc(), diag::err_opencl_builtin_expected_type) 881 << TheCall->getDirectCallee() << "block"; 882 return true; 883 } 884 return checkOpenCLBlockArgs(S, BlockArg); 885 } 886 887 /// OpenCL C v2.0, s6.13.17.6 - Check the argument to the 888 /// get_kernel_work_group_size 889 /// and get_kernel_preferred_work_group_size_multiple builtin functions. 890 static bool SemaOpenCLBuiltinKernelWorkGroupSize(Sema &S, CallExpr *TheCall) { 891 if (checkArgCount(S, TheCall, 1)) 892 return true; 893 894 Expr *BlockArg = TheCall->getArg(0); 895 if (!isBlockPointer(BlockArg)) { 896 S.Diag(BlockArg->getBeginLoc(), diag::err_opencl_builtin_expected_type) 897 << TheCall->getDirectCallee() << "block"; 898 return true; 899 } 900 return checkOpenCLBlockArgs(S, BlockArg); 901 } 902 903 /// Diagnose integer type and any valid implicit conversion to it. 904 static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E, 905 const QualType &IntType); 906 907 static bool checkOpenCLEnqueueLocalSizeArgs(Sema &S, CallExpr *TheCall, 908 unsigned Start, unsigned End) { 909 bool IllegalParams = false; 910 for (unsigned I = Start; I <= End; ++I) 911 IllegalParams |= checkOpenCLEnqueueIntType(S, TheCall->getArg(I), 912 S.Context.getSizeType()); 913 return IllegalParams; 914 } 915 916 /// OpenCL v2.0, s6.13.17.1 - Check that sizes are provided for all 917 /// 'local void*' parameter of passed block. 918 static bool checkOpenCLEnqueueVariadicArgs(Sema &S, CallExpr *TheCall, 919 Expr *BlockArg, 920 unsigned NumNonVarArgs) { 921 const BlockPointerType *BPT = 922 cast<BlockPointerType>(BlockArg->getType().getCanonicalType()); 923 unsigned NumBlockParams = 924 BPT->getPointeeType()->castAs<FunctionProtoType>()->getNumParams(); 925 unsigned TotalNumArgs = TheCall->getNumArgs(); 926 927 // For each argument passed to the block, a corresponding uint needs to 928 // be passed to describe the size of the local memory. 929 if (TotalNumArgs != NumBlockParams + NumNonVarArgs) { 930 S.Diag(TheCall->getBeginLoc(), 931 diag::err_opencl_enqueue_kernel_local_size_args); 932 return true; 933 } 934 935 // Check that the sizes of the local memory are specified by integers. 936 return checkOpenCLEnqueueLocalSizeArgs(S, TheCall, NumNonVarArgs, 937 TotalNumArgs - 1); 938 } 939 940 /// OpenCL C v2.0, s6.13.17 - Enqueue kernel function contains four different 941 /// overload formats specified in Table 6.13.17.1. 942 /// int enqueue_kernel(queue_t queue, 943 /// kernel_enqueue_flags_t flags, 944 /// const ndrange_t ndrange, 945 /// void (^block)(void)) 946 /// int enqueue_kernel(queue_t queue, 947 /// kernel_enqueue_flags_t flags, 948 /// const ndrange_t ndrange, 949 /// uint num_events_in_wait_list, 950 /// clk_event_t *event_wait_list, 951 /// clk_event_t *event_ret, 952 /// void (^block)(void)) 953 /// int enqueue_kernel(queue_t queue, 954 /// kernel_enqueue_flags_t flags, 955 /// const ndrange_t ndrange, 956 /// void (^block)(local void*, ...), 957 /// uint size0, ...) 958 /// int enqueue_kernel(queue_t queue, 959 /// kernel_enqueue_flags_t flags, 960 /// const ndrange_t ndrange, 961 /// uint num_events_in_wait_list, 962 /// clk_event_t *event_wait_list, 963 /// clk_event_t *event_ret, 964 /// void (^block)(local void*, ...), 965 /// uint size0, ...) 966 static bool SemaOpenCLBuiltinEnqueueKernel(Sema &S, CallExpr *TheCall) { 967 unsigned NumArgs = TheCall->getNumArgs(); 968 969 if (NumArgs < 4) { 970 S.Diag(TheCall->getBeginLoc(), 971 diag::err_typecheck_call_too_few_args_at_least) 972 << 0 << 4 << NumArgs; 973 return true; 974 } 975 976 Expr *Arg0 = TheCall->getArg(0); 977 Expr *Arg1 = TheCall->getArg(1); 978 Expr *Arg2 = TheCall->getArg(2); 979 Expr *Arg3 = TheCall->getArg(3); 980 981 // First argument always needs to be a queue_t type. 982 if (!Arg0->getType()->isQueueT()) { 983 S.Diag(TheCall->getArg(0)->getBeginLoc(), 984 diag::err_opencl_builtin_expected_type) 985 << TheCall->getDirectCallee() << S.Context.OCLQueueTy; 986 return true; 987 } 988 989 // Second argument always needs to be a kernel_enqueue_flags_t enum value. 990 if (!Arg1->getType()->isIntegerType()) { 991 S.Diag(TheCall->getArg(1)->getBeginLoc(), 992 diag::err_opencl_builtin_expected_type) 993 << TheCall->getDirectCallee() << "'kernel_enqueue_flags_t' (i.e. uint)"; 994 return true; 995 } 996 997 // Third argument is always an ndrange_t type. 998 if (Arg2->getType().getUnqualifiedType().getAsString() != "ndrange_t") { 999 S.Diag(TheCall->getArg(2)->getBeginLoc(), 1000 diag::err_opencl_builtin_expected_type) 1001 << TheCall->getDirectCallee() << "'ndrange_t'"; 1002 return true; 1003 } 1004 1005 // With four arguments, there is only one form that the function could be 1006 // called in: no events and no variable arguments. 1007 if (NumArgs == 4) { 1008 // check that the last argument is the right block type. 1009 if (!isBlockPointer(Arg3)) { 1010 S.Diag(Arg3->getBeginLoc(), diag::err_opencl_builtin_expected_type) 1011 << TheCall->getDirectCallee() << "block"; 1012 return true; 1013 } 1014 // we have a block type, check the prototype 1015 const BlockPointerType *BPT = 1016 cast<BlockPointerType>(Arg3->getType().getCanonicalType()); 1017 if (BPT->getPointeeType()->castAs<FunctionProtoType>()->getNumParams() > 0) { 1018 S.Diag(Arg3->getBeginLoc(), 1019 diag::err_opencl_enqueue_kernel_blocks_no_args); 1020 return true; 1021 } 1022 return false; 1023 } 1024 // we can have block + varargs. 1025 if (isBlockPointer(Arg3)) 1026 return (checkOpenCLBlockArgs(S, Arg3) || 1027 checkOpenCLEnqueueVariadicArgs(S, TheCall, Arg3, 4)); 1028 // last two cases with either exactly 7 args or 7 args and varargs. 1029 if (NumArgs >= 7) { 1030 // check common block argument. 1031 Expr *Arg6 = TheCall->getArg(6); 1032 if (!isBlockPointer(Arg6)) { 1033 S.Diag(Arg6->getBeginLoc(), diag::err_opencl_builtin_expected_type) 1034 << TheCall->getDirectCallee() << "block"; 1035 return true; 1036 } 1037 if (checkOpenCLBlockArgs(S, Arg6)) 1038 return true; 1039 1040 // Forth argument has to be any integer type. 1041 if (!Arg3->getType()->isIntegerType()) { 1042 S.Diag(TheCall->getArg(3)->getBeginLoc(), 1043 diag::err_opencl_builtin_expected_type) 1044 << TheCall->getDirectCallee() << "integer"; 1045 return true; 1046 } 1047 // check remaining common arguments. 1048 Expr *Arg4 = TheCall->getArg(4); 1049 Expr *Arg5 = TheCall->getArg(5); 1050 1051 // Fifth argument is always passed as a pointer to clk_event_t. 1052 if (!Arg4->isNullPointerConstant(S.Context, 1053 Expr::NPC_ValueDependentIsNotNull) && 1054 !Arg4->getType()->getPointeeOrArrayElementType()->isClkEventT()) { 1055 S.Diag(TheCall->getArg(4)->getBeginLoc(), 1056 diag::err_opencl_builtin_expected_type) 1057 << TheCall->getDirectCallee() 1058 << S.Context.getPointerType(S.Context.OCLClkEventTy); 1059 return true; 1060 } 1061 1062 // Sixth argument is always passed as a pointer to clk_event_t. 1063 if (!Arg5->isNullPointerConstant(S.Context, 1064 Expr::NPC_ValueDependentIsNotNull) && 1065 !(Arg5->getType()->isPointerType() && 1066 Arg5->getType()->getPointeeType()->isClkEventT())) { 1067 S.Diag(TheCall->getArg(5)->getBeginLoc(), 1068 diag::err_opencl_builtin_expected_type) 1069 << TheCall->getDirectCallee() 1070 << S.Context.getPointerType(S.Context.OCLClkEventTy); 1071 return true; 1072 } 1073 1074 if (NumArgs == 7) 1075 return false; 1076 1077 return checkOpenCLEnqueueVariadicArgs(S, TheCall, Arg6, 7); 1078 } 1079 1080 // None of the specific case has been detected, give generic error 1081 S.Diag(TheCall->getBeginLoc(), 1082 diag::err_opencl_enqueue_kernel_incorrect_args); 1083 return true; 1084 } 1085 1086 /// Returns OpenCL access qual. 1087 static OpenCLAccessAttr *getOpenCLArgAccess(const Decl *D) { 1088 return D->getAttr<OpenCLAccessAttr>(); 1089 } 1090 1091 /// Returns true if pipe element type is different from the pointer. 1092 static bool checkOpenCLPipeArg(Sema &S, CallExpr *Call) { 1093 const Expr *Arg0 = Call->getArg(0); 1094 // First argument type should always be pipe. 1095 if (!Arg0->getType()->isPipeType()) { 1096 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg) 1097 << Call->getDirectCallee() << Arg0->getSourceRange(); 1098 return true; 1099 } 1100 OpenCLAccessAttr *AccessQual = 1101 getOpenCLArgAccess(cast<DeclRefExpr>(Arg0)->getDecl()); 1102 // Validates the access qualifier is compatible with the call. 1103 // OpenCL v2.0 s6.13.16 - The access qualifiers for pipe should only be 1104 // read_only and write_only, and assumed to be read_only if no qualifier is 1105 // specified. 1106 switch (Call->getDirectCallee()->getBuiltinID()) { 1107 case Builtin::BIread_pipe: 1108 case Builtin::BIreserve_read_pipe: 1109 case Builtin::BIcommit_read_pipe: 1110 case Builtin::BIwork_group_reserve_read_pipe: 1111 case Builtin::BIsub_group_reserve_read_pipe: 1112 case Builtin::BIwork_group_commit_read_pipe: 1113 case Builtin::BIsub_group_commit_read_pipe: 1114 if (!(!AccessQual || AccessQual->isReadOnly())) { 1115 S.Diag(Arg0->getBeginLoc(), 1116 diag::err_opencl_builtin_pipe_invalid_access_modifier) 1117 << "read_only" << Arg0->getSourceRange(); 1118 return true; 1119 } 1120 break; 1121 case Builtin::BIwrite_pipe: 1122 case Builtin::BIreserve_write_pipe: 1123 case Builtin::BIcommit_write_pipe: 1124 case Builtin::BIwork_group_reserve_write_pipe: 1125 case Builtin::BIsub_group_reserve_write_pipe: 1126 case Builtin::BIwork_group_commit_write_pipe: 1127 case Builtin::BIsub_group_commit_write_pipe: 1128 if (!(AccessQual && AccessQual->isWriteOnly())) { 1129 S.Diag(Arg0->getBeginLoc(), 1130 diag::err_opencl_builtin_pipe_invalid_access_modifier) 1131 << "write_only" << Arg0->getSourceRange(); 1132 return true; 1133 } 1134 break; 1135 default: 1136 break; 1137 } 1138 return false; 1139 } 1140 1141 /// Returns true if pipe element type is different from the pointer. 1142 static bool checkOpenCLPipePacketType(Sema &S, CallExpr *Call, unsigned Idx) { 1143 const Expr *Arg0 = Call->getArg(0); 1144 const Expr *ArgIdx = Call->getArg(Idx); 1145 const PipeType *PipeTy = cast<PipeType>(Arg0->getType()); 1146 const QualType EltTy = PipeTy->getElementType(); 1147 const PointerType *ArgTy = ArgIdx->getType()->getAs<PointerType>(); 1148 // The Idx argument should be a pointer and the type of the pointer and 1149 // the type of pipe element should also be the same. 1150 if (!ArgTy || 1151 !S.Context.hasSameType( 1152 EltTy, ArgTy->getPointeeType()->getCanonicalTypeInternal())) { 1153 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg) 1154 << Call->getDirectCallee() << S.Context.getPointerType(EltTy) 1155 << ArgIdx->getType() << ArgIdx->getSourceRange(); 1156 return true; 1157 } 1158 return false; 1159 } 1160 1161 // Performs semantic analysis for the read/write_pipe call. 1162 // \param S Reference to the semantic analyzer. 1163 // \param Call A pointer to the builtin call. 1164 // \return True if a semantic error has been found, false otherwise. 1165 static bool SemaBuiltinRWPipe(Sema &S, CallExpr *Call) { 1166 // OpenCL v2.0 s6.13.16.2 - The built-in read/write 1167 // functions have two forms. 1168 switch (Call->getNumArgs()) { 1169 case 2: 1170 if (checkOpenCLPipeArg(S, Call)) 1171 return true; 1172 // The call with 2 arguments should be 1173 // read/write_pipe(pipe T, T*). 1174 // Check packet type T. 1175 if (checkOpenCLPipePacketType(S, Call, 1)) 1176 return true; 1177 break; 1178 1179 case 4: { 1180 if (checkOpenCLPipeArg(S, Call)) 1181 return true; 1182 // The call with 4 arguments should be 1183 // read/write_pipe(pipe T, reserve_id_t, uint, T*). 1184 // Check reserve_id_t. 1185 if (!Call->getArg(1)->getType()->isReserveIDT()) { 1186 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg) 1187 << Call->getDirectCallee() << S.Context.OCLReserveIDTy 1188 << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange(); 1189 return true; 1190 } 1191 1192 // Check the index. 1193 const Expr *Arg2 = Call->getArg(2); 1194 if (!Arg2->getType()->isIntegerType() && 1195 !Arg2->getType()->isUnsignedIntegerType()) { 1196 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg) 1197 << Call->getDirectCallee() << S.Context.UnsignedIntTy 1198 << Arg2->getType() << Arg2->getSourceRange(); 1199 return true; 1200 } 1201 1202 // Check packet type T. 1203 if (checkOpenCLPipePacketType(S, Call, 3)) 1204 return true; 1205 } break; 1206 default: 1207 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_arg_num) 1208 << Call->getDirectCallee() << Call->getSourceRange(); 1209 return true; 1210 } 1211 1212 return false; 1213 } 1214 1215 // Performs a semantic analysis on the {work_group_/sub_group_ 1216 // /_}reserve_{read/write}_pipe 1217 // \param S Reference to the semantic analyzer. 1218 // \param Call The call to the builtin function to be analyzed. 1219 // \return True if a semantic error was found, false otherwise. 1220 static bool SemaBuiltinReserveRWPipe(Sema &S, CallExpr *Call) { 1221 if (checkArgCount(S, Call, 2)) 1222 return true; 1223 1224 if (checkOpenCLPipeArg(S, Call)) 1225 return true; 1226 1227 // Check the reserve size. 1228 if (!Call->getArg(1)->getType()->isIntegerType() && 1229 !Call->getArg(1)->getType()->isUnsignedIntegerType()) { 1230 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg) 1231 << Call->getDirectCallee() << S.Context.UnsignedIntTy 1232 << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange(); 1233 return true; 1234 } 1235 1236 // Since return type of reserve_read/write_pipe built-in function is 1237 // reserve_id_t, which is not defined in the builtin def file , we used int 1238 // as return type and need to override the return type of these functions. 1239 Call->setType(S.Context.OCLReserveIDTy); 1240 1241 return false; 1242 } 1243 1244 // Performs a semantic analysis on {work_group_/sub_group_ 1245 // /_}commit_{read/write}_pipe 1246 // \param S Reference to the semantic analyzer. 1247 // \param Call The call to the builtin function to be analyzed. 1248 // \return True if a semantic error was found, false otherwise. 1249 static bool SemaBuiltinCommitRWPipe(Sema &S, CallExpr *Call) { 1250 if (checkArgCount(S, Call, 2)) 1251 return true; 1252 1253 if (checkOpenCLPipeArg(S, Call)) 1254 return true; 1255 1256 // Check reserve_id_t. 1257 if (!Call->getArg(1)->getType()->isReserveIDT()) { 1258 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_invalid_arg) 1259 << Call->getDirectCallee() << S.Context.OCLReserveIDTy 1260 << Call->getArg(1)->getType() << Call->getArg(1)->getSourceRange(); 1261 return true; 1262 } 1263 1264 return false; 1265 } 1266 1267 // Performs a semantic analysis on the call to built-in Pipe 1268 // Query Functions. 1269 // \param S Reference to the semantic analyzer. 1270 // \param Call The call to the builtin function to be analyzed. 1271 // \return True if a semantic error was found, false otherwise. 1272 static bool SemaBuiltinPipePackets(Sema &S, CallExpr *Call) { 1273 if (checkArgCount(S, Call, 1)) 1274 return true; 1275 1276 if (!Call->getArg(0)->getType()->isPipeType()) { 1277 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg) 1278 << Call->getDirectCallee() << Call->getArg(0)->getSourceRange(); 1279 return true; 1280 } 1281 1282 return false; 1283 } 1284 1285 // OpenCL v2.0 s6.13.9 - Address space qualifier functions. 1286 // Performs semantic analysis for the to_global/local/private call. 1287 // \param S Reference to the semantic analyzer. 1288 // \param BuiltinID ID of the builtin function. 1289 // \param Call A pointer to the builtin call. 1290 // \return True if a semantic error has been found, false otherwise. 1291 static bool SemaOpenCLBuiltinToAddr(Sema &S, unsigned BuiltinID, 1292 CallExpr *Call) { 1293 if (checkArgCount(S, Call, 1)) 1294 return true; 1295 1296 auto RT = Call->getArg(0)->getType(); 1297 if (!RT->isPointerType() || RT->getPointeeType() 1298 .getAddressSpace() == LangAS::opencl_constant) { 1299 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_to_addr_invalid_arg) 1300 << Call->getArg(0) << Call->getDirectCallee() << Call->getSourceRange(); 1301 return true; 1302 } 1303 1304 if (RT->getPointeeType().getAddressSpace() != LangAS::opencl_generic) { 1305 S.Diag(Call->getArg(0)->getBeginLoc(), 1306 diag::warn_opencl_generic_address_space_arg) 1307 << Call->getDirectCallee()->getNameInfo().getAsString() 1308 << Call->getArg(0)->getSourceRange(); 1309 } 1310 1311 RT = RT->getPointeeType(); 1312 auto Qual = RT.getQualifiers(); 1313 switch (BuiltinID) { 1314 case Builtin::BIto_global: 1315 Qual.setAddressSpace(LangAS::opencl_global); 1316 break; 1317 case Builtin::BIto_local: 1318 Qual.setAddressSpace(LangAS::opencl_local); 1319 break; 1320 case Builtin::BIto_private: 1321 Qual.setAddressSpace(LangAS::opencl_private); 1322 break; 1323 default: 1324 llvm_unreachable("Invalid builtin function"); 1325 } 1326 Call->setType(S.Context.getPointerType(S.Context.getQualifiedType( 1327 RT.getUnqualifiedType(), Qual))); 1328 1329 return false; 1330 } 1331 1332 static ExprResult SemaBuiltinLaunder(Sema &S, CallExpr *TheCall) { 1333 if (checkArgCount(S, TheCall, 1)) 1334 return ExprError(); 1335 1336 // Compute __builtin_launder's parameter type from the argument. 1337 // The parameter type is: 1338 // * The type of the argument if it's not an array or function type, 1339 // Otherwise, 1340 // * The decayed argument type. 1341 QualType ParamTy = [&]() { 1342 QualType ArgTy = TheCall->getArg(0)->getType(); 1343 if (const ArrayType *Ty = ArgTy->getAsArrayTypeUnsafe()) 1344 return S.Context.getPointerType(Ty->getElementType()); 1345 if (ArgTy->isFunctionType()) { 1346 return S.Context.getPointerType(ArgTy); 1347 } 1348 return ArgTy; 1349 }(); 1350 1351 TheCall->setType(ParamTy); 1352 1353 auto DiagSelect = [&]() -> llvm::Optional<unsigned> { 1354 if (!ParamTy->isPointerType()) 1355 return 0; 1356 if (ParamTy->isFunctionPointerType()) 1357 return 1; 1358 if (ParamTy->isVoidPointerType()) 1359 return 2; 1360 return llvm::Optional<unsigned>{}; 1361 }(); 1362 if (DiagSelect.hasValue()) { 1363 S.Diag(TheCall->getBeginLoc(), diag::err_builtin_launder_invalid_arg) 1364 << DiagSelect.getValue() << TheCall->getSourceRange(); 1365 return ExprError(); 1366 } 1367 1368 // We either have an incomplete class type, or we have a class template 1369 // whose instantiation has not been forced. Example: 1370 // 1371 // template <class T> struct Foo { T value; }; 1372 // Foo<int> *p = nullptr; 1373 // auto *d = __builtin_launder(p); 1374 if (S.RequireCompleteType(TheCall->getBeginLoc(), ParamTy->getPointeeType(), 1375 diag::err_incomplete_type)) 1376 return ExprError(); 1377 1378 assert(ParamTy->getPointeeType()->isObjectType() && 1379 "Unhandled non-object pointer case"); 1380 1381 InitializedEntity Entity = 1382 InitializedEntity::InitializeParameter(S.Context, ParamTy, false); 1383 ExprResult Arg = 1384 S.PerformCopyInitialization(Entity, SourceLocation(), TheCall->getArg(0)); 1385 if (Arg.isInvalid()) 1386 return ExprError(); 1387 TheCall->setArg(0, Arg.get()); 1388 1389 return TheCall; 1390 } 1391 1392 // Emit an error and return true if the current architecture is not in the list 1393 // of supported architectures. 1394 static bool 1395 CheckBuiltinTargetSupport(Sema &S, unsigned BuiltinID, CallExpr *TheCall, 1396 ArrayRef<llvm::Triple::ArchType> SupportedArchs) { 1397 llvm::Triple::ArchType CurArch = 1398 S.getASTContext().getTargetInfo().getTriple().getArch(); 1399 if (llvm::is_contained(SupportedArchs, CurArch)) 1400 return false; 1401 S.Diag(TheCall->getBeginLoc(), diag::err_builtin_target_unsupported) 1402 << TheCall->getSourceRange(); 1403 return true; 1404 } 1405 1406 static void CheckNonNullArgument(Sema &S, const Expr *ArgExpr, 1407 SourceLocation CallSiteLoc); 1408 1409 bool Sema::CheckTSBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID, 1410 CallExpr *TheCall) { 1411 switch (TI.getTriple().getArch()) { 1412 default: 1413 // Some builtins don't require additional checking, so just consider these 1414 // acceptable. 1415 return false; 1416 case llvm::Triple::arm: 1417 case llvm::Triple::armeb: 1418 case llvm::Triple::thumb: 1419 case llvm::Triple::thumbeb: 1420 return CheckARMBuiltinFunctionCall(TI, BuiltinID, TheCall); 1421 case llvm::Triple::aarch64: 1422 case llvm::Triple::aarch64_32: 1423 case llvm::Triple::aarch64_be: 1424 return CheckAArch64BuiltinFunctionCall(TI, BuiltinID, TheCall); 1425 case llvm::Triple::bpfeb: 1426 case llvm::Triple::bpfel: 1427 return CheckBPFBuiltinFunctionCall(BuiltinID, TheCall); 1428 case llvm::Triple::hexagon: 1429 return CheckHexagonBuiltinFunctionCall(BuiltinID, TheCall); 1430 case llvm::Triple::mips: 1431 case llvm::Triple::mipsel: 1432 case llvm::Triple::mips64: 1433 case llvm::Triple::mips64el: 1434 return CheckMipsBuiltinFunctionCall(TI, BuiltinID, TheCall); 1435 case llvm::Triple::systemz: 1436 return CheckSystemZBuiltinFunctionCall(BuiltinID, TheCall); 1437 case llvm::Triple::x86: 1438 case llvm::Triple::x86_64: 1439 return CheckX86BuiltinFunctionCall(TI, BuiltinID, TheCall); 1440 case llvm::Triple::ppc: 1441 case llvm::Triple::ppcle: 1442 case llvm::Triple::ppc64: 1443 case llvm::Triple::ppc64le: 1444 return CheckPPCBuiltinFunctionCall(TI, BuiltinID, TheCall); 1445 case llvm::Triple::amdgcn: 1446 return CheckAMDGCNBuiltinFunctionCall(BuiltinID, TheCall); 1447 case llvm::Triple::riscv32: 1448 case llvm::Triple::riscv64: 1449 return CheckRISCVBuiltinFunctionCall(TI, BuiltinID, TheCall); 1450 } 1451 } 1452 1453 ExprResult 1454 Sema::CheckBuiltinFunctionCall(FunctionDecl *FDecl, unsigned BuiltinID, 1455 CallExpr *TheCall) { 1456 ExprResult TheCallResult(TheCall); 1457 1458 // Find out if any arguments are required to be integer constant expressions. 1459 unsigned ICEArguments = 0; 1460 ASTContext::GetBuiltinTypeError Error; 1461 Context.GetBuiltinType(BuiltinID, Error, &ICEArguments); 1462 if (Error != ASTContext::GE_None) 1463 ICEArguments = 0; // Don't diagnose previously diagnosed errors. 1464 1465 // If any arguments are required to be ICE's, check and diagnose. 1466 for (unsigned ArgNo = 0; ICEArguments != 0; ++ArgNo) { 1467 // Skip arguments not required to be ICE's. 1468 if ((ICEArguments & (1 << ArgNo)) == 0) continue; 1469 1470 llvm::APSInt Result; 1471 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result)) 1472 return true; 1473 ICEArguments &= ~(1 << ArgNo); 1474 } 1475 1476 switch (BuiltinID) { 1477 case Builtin::BI__builtin___CFStringMakeConstantString: 1478 assert(TheCall->getNumArgs() == 1 && 1479 "Wrong # arguments to builtin CFStringMakeConstantString"); 1480 if (CheckObjCString(TheCall->getArg(0))) 1481 return ExprError(); 1482 break; 1483 case Builtin::BI__builtin_ms_va_start: 1484 case Builtin::BI__builtin_stdarg_start: 1485 case Builtin::BI__builtin_va_start: 1486 if (SemaBuiltinVAStart(BuiltinID, TheCall)) 1487 return ExprError(); 1488 break; 1489 case Builtin::BI__va_start: { 1490 switch (Context.getTargetInfo().getTriple().getArch()) { 1491 case llvm::Triple::aarch64: 1492 case llvm::Triple::arm: 1493 case llvm::Triple::thumb: 1494 if (SemaBuiltinVAStartARMMicrosoft(TheCall)) 1495 return ExprError(); 1496 break; 1497 default: 1498 if (SemaBuiltinVAStart(BuiltinID, TheCall)) 1499 return ExprError(); 1500 break; 1501 } 1502 break; 1503 } 1504 1505 // The acquire, release, and no fence variants are ARM and AArch64 only. 1506 case Builtin::BI_interlockedbittestandset_acq: 1507 case Builtin::BI_interlockedbittestandset_rel: 1508 case Builtin::BI_interlockedbittestandset_nf: 1509 case Builtin::BI_interlockedbittestandreset_acq: 1510 case Builtin::BI_interlockedbittestandreset_rel: 1511 case Builtin::BI_interlockedbittestandreset_nf: 1512 if (CheckBuiltinTargetSupport( 1513 *this, BuiltinID, TheCall, 1514 {llvm::Triple::arm, llvm::Triple::thumb, llvm::Triple::aarch64})) 1515 return ExprError(); 1516 break; 1517 1518 // The 64-bit bittest variants are x64, ARM, and AArch64 only. 1519 case Builtin::BI_bittest64: 1520 case Builtin::BI_bittestandcomplement64: 1521 case Builtin::BI_bittestandreset64: 1522 case Builtin::BI_bittestandset64: 1523 case Builtin::BI_interlockedbittestandreset64: 1524 case Builtin::BI_interlockedbittestandset64: 1525 if (CheckBuiltinTargetSupport(*this, BuiltinID, TheCall, 1526 {llvm::Triple::x86_64, llvm::Triple::arm, 1527 llvm::Triple::thumb, llvm::Triple::aarch64})) 1528 return ExprError(); 1529 break; 1530 1531 case Builtin::BI__builtin_isgreater: 1532 case Builtin::BI__builtin_isgreaterequal: 1533 case Builtin::BI__builtin_isless: 1534 case Builtin::BI__builtin_islessequal: 1535 case Builtin::BI__builtin_islessgreater: 1536 case Builtin::BI__builtin_isunordered: 1537 if (SemaBuiltinUnorderedCompare(TheCall)) 1538 return ExprError(); 1539 break; 1540 case Builtin::BI__builtin_fpclassify: 1541 if (SemaBuiltinFPClassification(TheCall, 6)) 1542 return ExprError(); 1543 break; 1544 case Builtin::BI__builtin_isfinite: 1545 case Builtin::BI__builtin_isinf: 1546 case Builtin::BI__builtin_isinf_sign: 1547 case Builtin::BI__builtin_isnan: 1548 case Builtin::BI__builtin_isnormal: 1549 case Builtin::BI__builtin_signbit: 1550 case Builtin::BI__builtin_signbitf: 1551 case Builtin::BI__builtin_signbitl: 1552 if (SemaBuiltinFPClassification(TheCall, 1)) 1553 return ExprError(); 1554 break; 1555 case Builtin::BI__builtin_shufflevector: 1556 return SemaBuiltinShuffleVector(TheCall); 1557 // TheCall will be freed by the smart pointer here, but that's fine, since 1558 // SemaBuiltinShuffleVector guts it, but then doesn't release it. 1559 case Builtin::BI__builtin_prefetch: 1560 if (SemaBuiltinPrefetch(TheCall)) 1561 return ExprError(); 1562 break; 1563 case Builtin::BI__builtin_alloca_with_align: 1564 if (SemaBuiltinAllocaWithAlign(TheCall)) 1565 return ExprError(); 1566 LLVM_FALLTHROUGH; 1567 case Builtin::BI__builtin_alloca: 1568 Diag(TheCall->getBeginLoc(), diag::warn_alloca) 1569 << TheCall->getDirectCallee(); 1570 break; 1571 case Builtin::BI__arithmetic_fence: 1572 if (SemaBuiltinArithmeticFence(TheCall)) 1573 return ExprError(); 1574 break; 1575 case Builtin::BI__assume: 1576 case Builtin::BI__builtin_assume: 1577 if (SemaBuiltinAssume(TheCall)) 1578 return ExprError(); 1579 break; 1580 case Builtin::BI__builtin_assume_aligned: 1581 if (SemaBuiltinAssumeAligned(TheCall)) 1582 return ExprError(); 1583 break; 1584 case Builtin::BI__builtin_dynamic_object_size: 1585 case Builtin::BI__builtin_object_size: 1586 if (SemaBuiltinConstantArgRange(TheCall, 1, 0, 3)) 1587 return ExprError(); 1588 break; 1589 case Builtin::BI__builtin_longjmp: 1590 if (SemaBuiltinLongjmp(TheCall)) 1591 return ExprError(); 1592 break; 1593 case Builtin::BI__builtin_setjmp: 1594 if (SemaBuiltinSetjmp(TheCall)) 1595 return ExprError(); 1596 break; 1597 case Builtin::BI__builtin_classify_type: 1598 if (checkArgCount(*this, TheCall, 1)) return true; 1599 TheCall->setType(Context.IntTy); 1600 break; 1601 case Builtin::BI__builtin_complex: 1602 if (SemaBuiltinComplex(TheCall)) 1603 return ExprError(); 1604 break; 1605 case Builtin::BI__builtin_constant_p: { 1606 if (checkArgCount(*this, TheCall, 1)) return true; 1607 ExprResult Arg = DefaultFunctionArrayLvalueConversion(TheCall->getArg(0)); 1608 if (Arg.isInvalid()) return true; 1609 TheCall->setArg(0, Arg.get()); 1610 TheCall->setType(Context.IntTy); 1611 break; 1612 } 1613 case Builtin::BI__builtin_launder: 1614 return SemaBuiltinLaunder(*this, TheCall); 1615 case Builtin::BI__sync_fetch_and_add: 1616 case Builtin::BI__sync_fetch_and_add_1: 1617 case Builtin::BI__sync_fetch_and_add_2: 1618 case Builtin::BI__sync_fetch_and_add_4: 1619 case Builtin::BI__sync_fetch_and_add_8: 1620 case Builtin::BI__sync_fetch_and_add_16: 1621 case Builtin::BI__sync_fetch_and_sub: 1622 case Builtin::BI__sync_fetch_and_sub_1: 1623 case Builtin::BI__sync_fetch_and_sub_2: 1624 case Builtin::BI__sync_fetch_and_sub_4: 1625 case Builtin::BI__sync_fetch_and_sub_8: 1626 case Builtin::BI__sync_fetch_and_sub_16: 1627 case Builtin::BI__sync_fetch_and_or: 1628 case Builtin::BI__sync_fetch_and_or_1: 1629 case Builtin::BI__sync_fetch_and_or_2: 1630 case Builtin::BI__sync_fetch_and_or_4: 1631 case Builtin::BI__sync_fetch_and_or_8: 1632 case Builtin::BI__sync_fetch_and_or_16: 1633 case Builtin::BI__sync_fetch_and_and: 1634 case Builtin::BI__sync_fetch_and_and_1: 1635 case Builtin::BI__sync_fetch_and_and_2: 1636 case Builtin::BI__sync_fetch_and_and_4: 1637 case Builtin::BI__sync_fetch_and_and_8: 1638 case Builtin::BI__sync_fetch_and_and_16: 1639 case Builtin::BI__sync_fetch_and_xor: 1640 case Builtin::BI__sync_fetch_and_xor_1: 1641 case Builtin::BI__sync_fetch_and_xor_2: 1642 case Builtin::BI__sync_fetch_and_xor_4: 1643 case Builtin::BI__sync_fetch_and_xor_8: 1644 case Builtin::BI__sync_fetch_and_xor_16: 1645 case Builtin::BI__sync_fetch_and_nand: 1646 case Builtin::BI__sync_fetch_and_nand_1: 1647 case Builtin::BI__sync_fetch_and_nand_2: 1648 case Builtin::BI__sync_fetch_and_nand_4: 1649 case Builtin::BI__sync_fetch_and_nand_8: 1650 case Builtin::BI__sync_fetch_and_nand_16: 1651 case Builtin::BI__sync_add_and_fetch: 1652 case Builtin::BI__sync_add_and_fetch_1: 1653 case Builtin::BI__sync_add_and_fetch_2: 1654 case Builtin::BI__sync_add_and_fetch_4: 1655 case Builtin::BI__sync_add_and_fetch_8: 1656 case Builtin::BI__sync_add_and_fetch_16: 1657 case Builtin::BI__sync_sub_and_fetch: 1658 case Builtin::BI__sync_sub_and_fetch_1: 1659 case Builtin::BI__sync_sub_and_fetch_2: 1660 case Builtin::BI__sync_sub_and_fetch_4: 1661 case Builtin::BI__sync_sub_and_fetch_8: 1662 case Builtin::BI__sync_sub_and_fetch_16: 1663 case Builtin::BI__sync_and_and_fetch: 1664 case Builtin::BI__sync_and_and_fetch_1: 1665 case Builtin::BI__sync_and_and_fetch_2: 1666 case Builtin::BI__sync_and_and_fetch_4: 1667 case Builtin::BI__sync_and_and_fetch_8: 1668 case Builtin::BI__sync_and_and_fetch_16: 1669 case Builtin::BI__sync_or_and_fetch: 1670 case Builtin::BI__sync_or_and_fetch_1: 1671 case Builtin::BI__sync_or_and_fetch_2: 1672 case Builtin::BI__sync_or_and_fetch_4: 1673 case Builtin::BI__sync_or_and_fetch_8: 1674 case Builtin::BI__sync_or_and_fetch_16: 1675 case Builtin::BI__sync_xor_and_fetch: 1676 case Builtin::BI__sync_xor_and_fetch_1: 1677 case Builtin::BI__sync_xor_and_fetch_2: 1678 case Builtin::BI__sync_xor_and_fetch_4: 1679 case Builtin::BI__sync_xor_and_fetch_8: 1680 case Builtin::BI__sync_xor_and_fetch_16: 1681 case Builtin::BI__sync_nand_and_fetch: 1682 case Builtin::BI__sync_nand_and_fetch_1: 1683 case Builtin::BI__sync_nand_and_fetch_2: 1684 case Builtin::BI__sync_nand_and_fetch_4: 1685 case Builtin::BI__sync_nand_and_fetch_8: 1686 case Builtin::BI__sync_nand_and_fetch_16: 1687 case Builtin::BI__sync_val_compare_and_swap: 1688 case Builtin::BI__sync_val_compare_and_swap_1: 1689 case Builtin::BI__sync_val_compare_and_swap_2: 1690 case Builtin::BI__sync_val_compare_and_swap_4: 1691 case Builtin::BI__sync_val_compare_and_swap_8: 1692 case Builtin::BI__sync_val_compare_and_swap_16: 1693 case Builtin::BI__sync_bool_compare_and_swap: 1694 case Builtin::BI__sync_bool_compare_and_swap_1: 1695 case Builtin::BI__sync_bool_compare_and_swap_2: 1696 case Builtin::BI__sync_bool_compare_and_swap_4: 1697 case Builtin::BI__sync_bool_compare_and_swap_8: 1698 case Builtin::BI__sync_bool_compare_and_swap_16: 1699 case Builtin::BI__sync_lock_test_and_set: 1700 case Builtin::BI__sync_lock_test_and_set_1: 1701 case Builtin::BI__sync_lock_test_and_set_2: 1702 case Builtin::BI__sync_lock_test_and_set_4: 1703 case Builtin::BI__sync_lock_test_and_set_8: 1704 case Builtin::BI__sync_lock_test_and_set_16: 1705 case Builtin::BI__sync_lock_release: 1706 case Builtin::BI__sync_lock_release_1: 1707 case Builtin::BI__sync_lock_release_2: 1708 case Builtin::BI__sync_lock_release_4: 1709 case Builtin::BI__sync_lock_release_8: 1710 case Builtin::BI__sync_lock_release_16: 1711 case Builtin::BI__sync_swap: 1712 case Builtin::BI__sync_swap_1: 1713 case Builtin::BI__sync_swap_2: 1714 case Builtin::BI__sync_swap_4: 1715 case Builtin::BI__sync_swap_8: 1716 case Builtin::BI__sync_swap_16: 1717 return SemaBuiltinAtomicOverloaded(TheCallResult); 1718 case Builtin::BI__sync_synchronize: 1719 Diag(TheCall->getBeginLoc(), diag::warn_atomic_implicit_seq_cst) 1720 << TheCall->getCallee()->getSourceRange(); 1721 break; 1722 case Builtin::BI__builtin_nontemporal_load: 1723 case Builtin::BI__builtin_nontemporal_store: 1724 return SemaBuiltinNontemporalOverloaded(TheCallResult); 1725 case Builtin::BI__builtin_memcpy_inline: { 1726 clang::Expr *SizeOp = TheCall->getArg(2); 1727 // We warn about copying to or from `nullptr` pointers when `size` is 1728 // greater than 0. When `size` is value dependent we cannot evaluate its 1729 // value so we bail out. 1730 if (SizeOp->isValueDependent()) 1731 break; 1732 if (!SizeOp->EvaluateKnownConstInt(Context).isNullValue()) { 1733 CheckNonNullArgument(*this, TheCall->getArg(0), TheCall->getExprLoc()); 1734 CheckNonNullArgument(*this, TheCall->getArg(1), TheCall->getExprLoc()); 1735 } 1736 break; 1737 } 1738 #define BUILTIN(ID, TYPE, ATTRS) 1739 #define ATOMIC_BUILTIN(ID, TYPE, ATTRS) \ 1740 case Builtin::BI##ID: \ 1741 return SemaAtomicOpsOverloaded(TheCallResult, AtomicExpr::AO##ID); 1742 #include "clang/Basic/Builtins.def" 1743 case Builtin::BI__annotation: 1744 if (SemaBuiltinMSVCAnnotation(*this, TheCall)) 1745 return ExprError(); 1746 break; 1747 case Builtin::BI__builtin_annotation: 1748 if (SemaBuiltinAnnotation(*this, TheCall)) 1749 return ExprError(); 1750 break; 1751 case Builtin::BI__builtin_addressof: 1752 if (SemaBuiltinAddressof(*this, TheCall)) 1753 return ExprError(); 1754 break; 1755 case Builtin::BI__builtin_is_aligned: 1756 case Builtin::BI__builtin_align_up: 1757 case Builtin::BI__builtin_align_down: 1758 if (SemaBuiltinAlignment(*this, TheCall, BuiltinID)) 1759 return ExprError(); 1760 break; 1761 case Builtin::BI__builtin_add_overflow: 1762 case Builtin::BI__builtin_sub_overflow: 1763 case Builtin::BI__builtin_mul_overflow: 1764 if (SemaBuiltinOverflow(*this, TheCall, BuiltinID)) 1765 return ExprError(); 1766 break; 1767 case Builtin::BI__builtin_operator_new: 1768 case Builtin::BI__builtin_operator_delete: { 1769 bool IsDelete = BuiltinID == Builtin::BI__builtin_operator_delete; 1770 ExprResult Res = 1771 SemaBuiltinOperatorNewDeleteOverloaded(TheCallResult, IsDelete); 1772 if (Res.isInvalid()) 1773 CorrectDelayedTyposInExpr(TheCallResult.get()); 1774 return Res; 1775 } 1776 case Builtin::BI__builtin_dump_struct: { 1777 // We first want to ensure we are called with 2 arguments 1778 if (checkArgCount(*this, TheCall, 2)) 1779 return ExprError(); 1780 // Ensure that the first argument is of type 'struct XX *' 1781 const Expr *PtrArg = TheCall->getArg(0)->IgnoreParenImpCasts(); 1782 const QualType PtrArgType = PtrArg->getType(); 1783 if (!PtrArgType->isPointerType() || 1784 !PtrArgType->getPointeeType()->isRecordType()) { 1785 Diag(PtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible) 1786 << PtrArgType << "structure pointer" << 1 << 0 << 3 << 1 << PtrArgType 1787 << "structure pointer"; 1788 return ExprError(); 1789 } 1790 1791 // Ensure that the second argument is of type 'FunctionType' 1792 const Expr *FnPtrArg = TheCall->getArg(1)->IgnoreImpCasts(); 1793 const QualType FnPtrArgType = FnPtrArg->getType(); 1794 if (!FnPtrArgType->isPointerType()) { 1795 Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible) 1796 << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 << 2 1797 << FnPtrArgType << "'int (*)(const char *, ...)'"; 1798 return ExprError(); 1799 } 1800 1801 const auto *FuncType = 1802 FnPtrArgType->getPointeeType()->getAs<FunctionType>(); 1803 1804 if (!FuncType) { 1805 Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible) 1806 << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 << 2 1807 << FnPtrArgType << "'int (*)(const char *, ...)'"; 1808 return ExprError(); 1809 } 1810 1811 if (const auto *FT = dyn_cast<FunctionProtoType>(FuncType)) { 1812 if (!FT->getNumParams()) { 1813 Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible) 1814 << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 1815 << 2 << FnPtrArgType << "'int (*)(const char *, ...)'"; 1816 return ExprError(); 1817 } 1818 QualType PT = FT->getParamType(0); 1819 if (!FT->isVariadic() || FT->getReturnType() != Context.IntTy || 1820 !PT->isPointerType() || !PT->getPointeeType()->isCharType() || 1821 !PT->getPointeeType().isConstQualified()) { 1822 Diag(FnPtrArg->getBeginLoc(), diag::err_typecheck_convert_incompatible) 1823 << FnPtrArgType << "'int (*)(const char *, ...)'" << 1 << 0 << 3 1824 << 2 << FnPtrArgType << "'int (*)(const char *, ...)'"; 1825 return ExprError(); 1826 } 1827 } 1828 1829 TheCall->setType(Context.IntTy); 1830 break; 1831 } 1832 case Builtin::BI__builtin_expect_with_probability: { 1833 // We first want to ensure we are called with 3 arguments 1834 if (checkArgCount(*this, TheCall, 3)) 1835 return ExprError(); 1836 // then check probability is constant float in range [0.0, 1.0] 1837 const Expr *ProbArg = TheCall->getArg(2); 1838 SmallVector<PartialDiagnosticAt, 8> Notes; 1839 Expr::EvalResult Eval; 1840 Eval.Diag = &Notes; 1841 if ((!ProbArg->EvaluateAsConstantExpr(Eval, Context)) || 1842 !Eval.Val.isFloat()) { 1843 Diag(ProbArg->getBeginLoc(), diag::err_probability_not_constant_float) 1844 << ProbArg->getSourceRange(); 1845 for (const PartialDiagnosticAt &PDiag : Notes) 1846 Diag(PDiag.first, PDiag.second); 1847 return ExprError(); 1848 } 1849 llvm::APFloat Probability = Eval.Val.getFloat(); 1850 bool LoseInfo = false; 1851 Probability.convert(llvm::APFloat::IEEEdouble(), 1852 llvm::RoundingMode::Dynamic, &LoseInfo); 1853 if (!(Probability >= llvm::APFloat(0.0) && 1854 Probability <= llvm::APFloat(1.0))) { 1855 Diag(ProbArg->getBeginLoc(), diag::err_probability_out_of_range) 1856 << ProbArg->getSourceRange(); 1857 return ExprError(); 1858 } 1859 break; 1860 } 1861 case Builtin::BI__builtin_preserve_access_index: 1862 if (SemaBuiltinPreserveAI(*this, TheCall)) 1863 return ExprError(); 1864 break; 1865 case Builtin::BI__builtin_call_with_static_chain: 1866 if (SemaBuiltinCallWithStaticChain(*this, TheCall)) 1867 return ExprError(); 1868 break; 1869 case Builtin::BI__exception_code: 1870 case Builtin::BI_exception_code: 1871 if (SemaBuiltinSEHScopeCheck(*this, TheCall, Scope::SEHExceptScope, 1872 diag::err_seh___except_block)) 1873 return ExprError(); 1874 break; 1875 case Builtin::BI__exception_info: 1876 case Builtin::BI_exception_info: 1877 if (SemaBuiltinSEHScopeCheck(*this, TheCall, Scope::SEHFilterScope, 1878 diag::err_seh___except_filter)) 1879 return ExprError(); 1880 break; 1881 case Builtin::BI__GetExceptionInfo: 1882 if (checkArgCount(*this, TheCall, 1)) 1883 return ExprError(); 1884 1885 if (CheckCXXThrowOperand( 1886 TheCall->getBeginLoc(), 1887 Context.getExceptionObjectType(FDecl->getParamDecl(0)->getType()), 1888 TheCall)) 1889 return ExprError(); 1890 1891 TheCall->setType(Context.VoidPtrTy); 1892 break; 1893 // OpenCL v2.0, s6.13.16 - Pipe functions 1894 case Builtin::BIread_pipe: 1895 case Builtin::BIwrite_pipe: 1896 // Since those two functions are declared with var args, we need a semantic 1897 // check for the argument. 1898 if (SemaBuiltinRWPipe(*this, TheCall)) 1899 return ExprError(); 1900 break; 1901 case Builtin::BIreserve_read_pipe: 1902 case Builtin::BIreserve_write_pipe: 1903 case Builtin::BIwork_group_reserve_read_pipe: 1904 case Builtin::BIwork_group_reserve_write_pipe: 1905 if (SemaBuiltinReserveRWPipe(*this, TheCall)) 1906 return ExprError(); 1907 break; 1908 case Builtin::BIsub_group_reserve_read_pipe: 1909 case Builtin::BIsub_group_reserve_write_pipe: 1910 if (checkOpenCLSubgroupExt(*this, TheCall) || 1911 SemaBuiltinReserveRWPipe(*this, TheCall)) 1912 return ExprError(); 1913 break; 1914 case Builtin::BIcommit_read_pipe: 1915 case Builtin::BIcommit_write_pipe: 1916 case Builtin::BIwork_group_commit_read_pipe: 1917 case Builtin::BIwork_group_commit_write_pipe: 1918 if (SemaBuiltinCommitRWPipe(*this, TheCall)) 1919 return ExprError(); 1920 break; 1921 case Builtin::BIsub_group_commit_read_pipe: 1922 case Builtin::BIsub_group_commit_write_pipe: 1923 if (checkOpenCLSubgroupExt(*this, TheCall) || 1924 SemaBuiltinCommitRWPipe(*this, TheCall)) 1925 return ExprError(); 1926 break; 1927 case Builtin::BIget_pipe_num_packets: 1928 case Builtin::BIget_pipe_max_packets: 1929 if (SemaBuiltinPipePackets(*this, TheCall)) 1930 return ExprError(); 1931 break; 1932 case Builtin::BIto_global: 1933 case Builtin::BIto_local: 1934 case Builtin::BIto_private: 1935 if (SemaOpenCLBuiltinToAddr(*this, BuiltinID, TheCall)) 1936 return ExprError(); 1937 break; 1938 // OpenCL v2.0, s6.13.17 - Enqueue kernel functions. 1939 case Builtin::BIenqueue_kernel: 1940 if (SemaOpenCLBuiltinEnqueueKernel(*this, TheCall)) 1941 return ExprError(); 1942 break; 1943 case Builtin::BIget_kernel_work_group_size: 1944 case Builtin::BIget_kernel_preferred_work_group_size_multiple: 1945 if (SemaOpenCLBuiltinKernelWorkGroupSize(*this, TheCall)) 1946 return ExprError(); 1947 break; 1948 case Builtin::BIget_kernel_max_sub_group_size_for_ndrange: 1949 case Builtin::BIget_kernel_sub_group_count_for_ndrange: 1950 if (SemaOpenCLBuiltinNDRangeAndBlock(*this, TheCall)) 1951 return ExprError(); 1952 break; 1953 case Builtin::BI__builtin_os_log_format: 1954 Cleanup.setExprNeedsCleanups(true); 1955 LLVM_FALLTHROUGH; 1956 case Builtin::BI__builtin_os_log_format_buffer_size: 1957 if (SemaBuiltinOSLogFormat(TheCall)) 1958 return ExprError(); 1959 break; 1960 case Builtin::BI__builtin_frame_address: 1961 case Builtin::BI__builtin_return_address: { 1962 if (SemaBuiltinConstantArgRange(TheCall, 0, 0, 0xFFFF)) 1963 return ExprError(); 1964 1965 // -Wframe-address warning if non-zero passed to builtin 1966 // return/frame address. 1967 Expr::EvalResult Result; 1968 if (!TheCall->getArg(0)->isValueDependent() && 1969 TheCall->getArg(0)->EvaluateAsInt(Result, getASTContext()) && 1970 Result.Val.getInt() != 0) 1971 Diag(TheCall->getBeginLoc(), diag::warn_frame_address) 1972 << ((BuiltinID == Builtin::BI__builtin_return_address) 1973 ? "__builtin_return_address" 1974 : "__builtin_frame_address") 1975 << TheCall->getSourceRange(); 1976 break; 1977 } 1978 1979 case Builtin::BI__builtin_matrix_transpose: 1980 return SemaBuiltinMatrixTranspose(TheCall, TheCallResult); 1981 1982 case Builtin::BI__builtin_matrix_column_major_load: 1983 return SemaBuiltinMatrixColumnMajorLoad(TheCall, TheCallResult); 1984 1985 case Builtin::BI__builtin_matrix_column_major_store: 1986 return SemaBuiltinMatrixColumnMajorStore(TheCall, TheCallResult); 1987 1988 case Builtin::BI__builtin_get_device_side_mangled_name: { 1989 auto Check = [](CallExpr *TheCall) { 1990 if (TheCall->getNumArgs() != 1) 1991 return false; 1992 auto *DRE = dyn_cast<DeclRefExpr>(TheCall->getArg(0)->IgnoreImpCasts()); 1993 if (!DRE) 1994 return false; 1995 auto *D = DRE->getDecl(); 1996 if (!isa<FunctionDecl>(D) && !isa<VarDecl>(D)) 1997 return false; 1998 return D->hasAttr<CUDAGlobalAttr>() || D->hasAttr<CUDADeviceAttr>() || 1999 D->hasAttr<CUDAConstantAttr>() || D->hasAttr<HIPManagedAttr>(); 2000 }; 2001 if (!Check(TheCall)) { 2002 Diag(TheCall->getBeginLoc(), 2003 diag::err_hip_invalid_args_builtin_mangled_name); 2004 return ExprError(); 2005 } 2006 } 2007 } 2008 2009 // Since the target specific builtins for each arch overlap, only check those 2010 // of the arch we are compiling for. 2011 if (Context.BuiltinInfo.isTSBuiltin(BuiltinID)) { 2012 if (Context.BuiltinInfo.isAuxBuiltinID(BuiltinID)) { 2013 assert(Context.getAuxTargetInfo() && 2014 "Aux Target Builtin, but not an aux target?"); 2015 2016 if (CheckTSBuiltinFunctionCall( 2017 *Context.getAuxTargetInfo(), 2018 Context.BuiltinInfo.getAuxBuiltinID(BuiltinID), TheCall)) 2019 return ExprError(); 2020 } else { 2021 if (CheckTSBuiltinFunctionCall(Context.getTargetInfo(), BuiltinID, 2022 TheCall)) 2023 return ExprError(); 2024 } 2025 } 2026 2027 return TheCallResult; 2028 } 2029 2030 // Get the valid immediate range for the specified NEON type code. 2031 static unsigned RFT(unsigned t, bool shift = false, bool ForceQuad = false) { 2032 NeonTypeFlags Type(t); 2033 int IsQuad = ForceQuad ? true : Type.isQuad(); 2034 switch (Type.getEltType()) { 2035 case NeonTypeFlags::Int8: 2036 case NeonTypeFlags::Poly8: 2037 return shift ? 7 : (8 << IsQuad) - 1; 2038 case NeonTypeFlags::Int16: 2039 case NeonTypeFlags::Poly16: 2040 return shift ? 15 : (4 << IsQuad) - 1; 2041 case NeonTypeFlags::Int32: 2042 return shift ? 31 : (2 << IsQuad) - 1; 2043 case NeonTypeFlags::Int64: 2044 case NeonTypeFlags::Poly64: 2045 return shift ? 63 : (1 << IsQuad) - 1; 2046 case NeonTypeFlags::Poly128: 2047 return shift ? 127 : (1 << IsQuad) - 1; 2048 case NeonTypeFlags::Float16: 2049 assert(!shift && "cannot shift float types!"); 2050 return (4 << IsQuad) - 1; 2051 case NeonTypeFlags::Float32: 2052 assert(!shift && "cannot shift float types!"); 2053 return (2 << IsQuad) - 1; 2054 case NeonTypeFlags::Float64: 2055 assert(!shift && "cannot shift float types!"); 2056 return (1 << IsQuad) - 1; 2057 case NeonTypeFlags::BFloat16: 2058 assert(!shift && "cannot shift float types!"); 2059 return (4 << IsQuad) - 1; 2060 } 2061 llvm_unreachable("Invalid NeonTypeFlag!"); 2062 } 2063 2064 /// getNeonEltType - Return the QualType corresponding to the elements of 2065 /// the vector type specified by the NeonTypeFlags. This is used to check 2066 /// the pointer arguments for Neon load/store intrinsics. 2067 static QualType getNeonEltType(NeonTypeFlags Flags, ASTContext &Context, 2068 bool IsPolyUnsigned, bool IsInt64Long) { 2069 switch (Flags.getEltType()) { 2070 case NeonTypeFlags::Int8: 2071 return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy; 2072 case NeonTypeFlags::Int16: 2073 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy; 2074 case NeonTypeFlags::Int32: 2075 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy; 2076 case NeonTypeFlags::Int64: 2077 if (IsInt64Long) 2078 return Flags.isUnsigned() ? Context.UnsignedLongTy : Context.LongTy; 2079 else 2080 return Flags.isUnsigned() ? Context.UnsignedLongLongTy 2081 : Context.LongLongTy; 2082 case NeonTypeFlags::Poly8: 2083 return IsPolyUnsigned ? Context.UnsignedCharTy : Context.SignedCharTy; 2084 case NeonTypeFlags::Poly16: 2085 return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy; 2086 case NeonTypeFlags::Poly64: 2087 if (IsInt64Long) 2088 return Context.UnsignedLongTy; 2089 else 2090 return Context.UnsignedLongLongTy; 2091 case NeonTypeFlags::Poly128: 2092 break; 2093 case NeonTypeFlags::Float16: 2094 return Context.HalfTy; 2095 case NeonTypeFlags::Float32: 2096 return Context.FloatTy; 2097 case NeonTypeFlags::Float64: 2098 return Context.DoubleTy; 2099 case NeonTypeFlags::BFloat16: 2100 return Context.BFloat16Ty; 2101 } 2102 llvm_unreachable("Invalid NeonTypeFlag!"); 2103 } 2104 2105 bool Sema::CheckSVEBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) { 2106 // Range check SVE intrinsics that take immediate values. 2107 SmallVector<std::tuple<int,int,int>, 3> ImmChecks; 2108 2109 switch (BuiltinID) { 2110 default: 2111 return false; 2112 #define GET_SVE_IMMEDIATE_CHECK 2113 #include "clang/Basic/arm_sve_sema_rangechecks.inc" 2114 #undef GET_SVE_IMMEDIATE_CHECK 2115 } 2116 2117 // Perform all the immediate checks for this builtin call. 2118 bool HasError = false; 2119 for (auto &I : ImmChecks) { 2120 int ArgNum, CheckTy, ElementSizeInBits; 2121 std::tie(ArgNum, CheckTy, ElementSizeInBits) = I; 2122 2123 typedef bool(*OptionSetCheckFnTy)(int64_t Value); 2124 2125 // Function that checks whether the operand (ArgNum) is an immediate 2126 // that is one of the predefined values. 2127 auto CheckImmediateInSet = [&](OptionSetCheckFnTy CheckImm, 2128 int ErrDiag) -> bool { 2129 // We can't check the value of a dependent argument. 2130 Expr *Arg = TheCall->getArg(ArgNum); 2131 if (Arg->isTypeDependent() || Arg->isValueDependent()) 2132 return false; 2133 2134 // Check constant-ness first. 2135 llvm::APSInt Imm; 2136 if (SemaBuiltinConstantArg(TheCall, ArgNum, Imm)) 2137 return true; 2138 2139 if (!CheckImm(Imm.getSExtValue())) 2140 return Diag(TheCall->getBeginLoc(), ErrDiag) << Arg->getSourceRange(); 2141 return false; 2142 }; 2143 2144 switch ((SVETypeFlags::ImmCheckType)CheckTy) { 2145 case SVETypeFlags::ImmCheck0_31: 2146 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 31)) 2147 HasError = true; 2148 break; 2149 case SVETypeFlags::ImmCheck0_13: 2150 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 13)) 2151 HasError = true; 2152 break; 2153 case SVETypeFlags::ImmCheck1_16: 2154 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 1, 16)) 2155 HasError = true; 2156 break; 2157 case SVETypeFlags::ImmCheck0_7: 2158 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 7)) 2159 HasError = true; 2160 break; 2161 case SVETypeFlags::ImmCheckExtract: 2162 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 2163 (2048 / ElementSizeInBits) - 1)) 2164 HasError = true; 2165 break; 2166 case SVETypeFlags::ImmCheckShiftRight: 2167 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 1, ElementSizeInBits)) 2168 HasError = true; 2169 break; 2170 case SVETypeFlags::ImmCheckShiftRightNarrow: 2171 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 1, 2172 ElementSizeInBits / 2)) 2173 HasError = true; 2174 break; 2175 case SVETypeFlags::ImmCheckShiftLeft: 2176 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 2177 ElementSizeInBits - 1)) 2178 HasError = true; 2179 break; 2180 case SVETypeFlags::ImmCheckLaneIndex: 2181 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 2182 (128 / (1 * ElementSizeInBits)) - 1)) 2183 HasError = true; 2184 break; 2185 case SVETypeFlags::ImmCheckLaneIndexCompRotate: 2186 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 2187 (128 / (2 * ElementSizeInBits)) - 1)) 2188 HasError = true; 2189 break; 2190 case SVETypeFlags::ImmCheckLaneIndexDot: 2191 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 2192 (128 / (4 * ElementSizeInBits)) - 1)) 2193 HasError = true; 2194 break; 2195 case SVETypeFlags::ImmCheckComplexRot90_270: 2196 if (CheckImmediateInSet([](int64_t V) { return V == 90 || V == 270; }, 2197 diag::err_rotation_argument_to_cadd)) 2198 HasError = true; 2199 break; 2200 case SVETypeFlags::ImmCheckComplexRotAll90: 2201 if (CheckImmediateInSet( 2202 [](int64_t V) { 2203 return V == 0 || V == 90 || V == 180 || V == 270; 2204 }, 2205 diag::err_rotation_argument_to_cmla)) 2206 HasError = true; 2207 break; 2208 case SVETypeFlags::ImmCheck0_1: 2209 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 1)) 2210 HasError = true; 2211 break; 2212 case SVETypeFlags::ImmCheck0_2: 2213 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 2)) 2214 HasError = true; 2215 break; 2216 case SVETypeFlags::ImmCheck0_3: 2217 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, 3)) 2218 HasError = true; 2219 break; 2220 } 2221 } 2222 2223 return HasError; 2224 } 2225 2226 bool Sema::CheckNeonBuiltinFunctionCall(const TargetInfo &TI, 2227 unsigned BuiltinID, CallExpr *TheCall) { 2228 llvm::APSInt Result; 2229 uint64_t mask = 0; 2230 unsigned TV = 0; 2231 int PtrArgNum = -1; 2232 bool HasConstPtr = false; 2233 switch (BuiltinID) { 2234 #define GET_NEON_OVERLOAD_CHECK 2235 #include "clang/Basic/arm_neon.inc" 2236 #include "clang/Basic/arm_fp16.inc" 2237 #undef GET_NEON_OVERLOAD_CHECK 2238 } 2239 2240 // For NEON intrinsics which are overloaded on vector element type, validate 2241 // the immediate which specifies which variant to emit. 2242 unsigned ImmArg = TheCall->getNumArgs()-1; 2243 if (mask) { 2244 if (SemaBuiltinConstantArg(TheCall, ImmArg, Result)) 2245 return true; 2246 2247 TV = Result.getLimitedValue(64); 2248 if ((TV > 63) || (mask & (1ULL << TV)) == 0) 2249 return Diag(TheCall->getBeginLoc(), diag::err_invalid_neon_type_code) 2250 << TheCall->getArg(ImmArg)->getSourceRange(); 2251 } 2252 2253 if (PtrArgNum >= 0) { 2254 // Check that pointer arguments have the specified type. 2255 Expr *Arg = TheCall->getArg(PtrArgNum); 2256 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Arg)) 2257 Arg = ICE->getSubExpr(); 2258 ExprResult RHS = DefaultFunctionArrayLvalueConversion(Arg); 2259 QualType RHSTy = RHS.get()->getType(); 2260 2261 llvm::Triple::ArchType Arch = TI.getTriple().getArch(); 2262 bool IsPolyUnsigned = Arch == llvm::Triple::aarch64 || 2263 Arch == llvm::Triple::aarch64_32 || 2264 Arch == llvm::Triple::aarch64_be; 2265 bool IsInt64Long = TI.getInt64Type() == TargetInfo::SignedLong; 2266 QualType EltTy = 2267 getNeonEltType(NeonTypeFlags(TV), Context, IsPolyUnsigned, IsInt64Long); 2268 if (HasConstPtr) 2269 EltTy = EltTy.withConst(); 2270 QualType LHSTy = Context.getPointerType(EltTy); 2271 AssignConvertType ConvTy; 2272 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS); 2273 if (RHS.isInvalid()) 2274 return true; 2275 if (DiagnoseAssignmentResult(ConvTy, Arg->getBeginLoc(), LHSTy, RHSTy, 2276 RHS.get(), AA_Assigning)) 2277 return true; 2278 } 2279 2280 // For NEON intrinsics which take an immediate value as part of the 2281 // instruction, range check them here. 2282 unsigned i = 0, l = 0, u = 0; 2283 switch (BuiltinID) { 2284 default: 2285 return false; 2286 #define GET_NEON_IMMEDIATE_CHECK 2287 #include "clang/Basic/arm_neon.inc" 2288 #include "clang/Basic/arm_fp16.inc" 2289 #undef GET_NEON_IMMEDIATE_CHECK 2290 } 2291 2292 return SemaBuiltinConstantArgRange(TheCall, i, l, u + l); 2293 } 2294 2295 bool Sema::CheckMVEBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) { 2296 switch (BuiltinID) { 2297 default: 2298 return false; 2299 #include "clang/Basic/arm_mve_builtin_sema.inc" 2300 } 2301 } 2302 2303 bool Sema::CheckCDEBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID, 2304 CallExpr *TheCall) { 2305 bool Err = false; 2306 switch (BuiltinID) { 2307 default: 2308 return false; 2309 #include "clang/Basic/arm_cde_builtin_sema.inc" 2310 } 2311 2312 if (Err) 2313 return true; 2314 2315 return CheckARMCoprocessorImmediate(TI, TheCall->getArg(0), /*WantCDE*/ true); 2316 } 2317 2318 bool Sema::CheckARMCoprocessorImmediate(const TargetInfo &TI, 2319 const Expr *CoprocArg, bool WantCDE) { 2320 if (isConstantEvaluated()) 2321 return false; 2322 2323 // We can't check the value of a dependent argument. 2324 if (CoprocArg->isTypeDependent() || CoprocArg->isValueDependent()) 2325 return false; 2326 2327 llvm::APSInt CoprocNoAP = *CoprocArg->getIntegerConstantExpr(Context); 2328 int64_t CoprocNo = CoprocNoAP.getExtValue(); 2329 assert(CoprocNo >= 0 && "Coprocessor immediate must be non-negative"); 2330 2331 uint32_t CDECoprocMask = TI.getARMCDECoprocMask(); 2332 bool IsCDECoproc = CoprocNo <= 7 && (CDECoprocMask & (1 << CoprocNo)); 2333 2334 if (IsCDECoproc != WantCDE) 2335 return Diag(CoprocArg->getBeginLoc(), diag::err_arm_invalid_coproc) 2336 << (int)CoprocNo << (int)WantCDE << CoprocArg->getSourceRange(); 2337 2338 return false; 2339 } 2340 2341 bool Sema::CheckARMBuiltinExclusiveCall(unsigned BuiltinID, CallExpr *TheCall, 2342 unsigned MaxWidth) { 2343 assert((BuiltinID == ARM::BI__builtin_arm_ldrex || 2344 BuiltinID == ARM::BI__builtin_arm_ldaex || 2345 BuiltinID == ARM::BI__builtin_arm_strex || 2346 BuiltinID == ARM::BI__builtin_arm_stlex || 2347 BuiltinID == AArch64::BI__builtin_arm_ldrex || 2348 BuiltinID == AArch64::BI__builtin_arm_ldaex || 2349 BuiltinID == AArch64::BI__builtin_arm_strex || 2350 BuiltinID == AArch64::BI__builtin_arm_stlex) && 2351 "unexpected ARM builtin"); 2352 bool IsLdrex = BuiltinID == ARM::BI__builtin_arm_ldrex || 2353 BuiltinID == ARM::BI__builtin_arm_ldaex || 2354 BuiltinID == AArch64::BI__builtin_arm_ldrex || 2355 BuiltinID == AArch64::BI__builtin_arm_ldaex; 2356 2357 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); 2358 2359 // Ensure that we have the proper number of arguments. 2360 if (checkArgCount(*this, TheCall, IsLdrex ? 1 : 2)) 2361 return true; 2362 2363 // Inspect the pointer argument of the atomic builtin. This should always be 2364 // a pointer type, whose element is an integral scalar or pointer type. 2365 // Because it is a pointer type, we don't have to worry about any implicit 2366 // casts here. 2367 Expr *PointerArg = TheCall->getArg(IsLdrex ? 0 : 1); 2368 ExprResult PointerArgRes = DefaultFunctionArrayLvalueConversion(PointerArg); 2369 if (PointerArgRes.isInvalid()) 2370 return true; 2371 PointerArg = PointerArgRes.get(); 2372 2373 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>(); 2374 if (!pointerType) { 2375 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer) 2376 << PointerArg->getType() << PointerArg->getSourceRange(); 2377 return true; 2378 } 2379 2380 // ldrex takes a "const volatile T*" and strex takes a "volatile T*". Our next 2381 // task is to insert the appropriate casts into the AST. First work out just 2382 // what the appropriate type is. 2383 QualType ValType = pointerType->getPointeeType(); 2384 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); 2385 if (IsLdrex) 2386 AddrType.addConst(); 2387 2388 // Issue a warning if the cast is dodgy. 2389 CastKind CastNeeded = CK_NoOp; 2390 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { 2391 CastNeeded = CK_BitCast; 2392 Diag(DRE->getBeginLoc(), diag::ext_typecheck_convert_discards_qualifiers) 2393 << PointerArg->getType() << Context.getPointerType(AddrType) 2394 << AA_Passing << PointerArg->getSourceRange(); 2395 } 2396 2397 // Finally, do the cast and replace the argument with the corrected version. 2398 AddrType = Context.getPointerType(AddrType); 2399 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded); 2400 if (PointerArgRes.isInvalid()) 2401 return true; 2402 PointerArg = PointerArgRes.get(); 2403 2404 TheCall->setArg(IsLdrex ? 0 : 1, PointerArg); 2405 2406 // In general, we allow ints, floats and pointers to be loaded and stored. 2407 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() && 2408 !ValType->isBlockPointerType() && !ValType->isFloatingType()) { 2409 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer_intfltptr) 2410 << PointerArg->getType() << PointerArg->getSourceRange(); 2411 return true; 2412 } 2413 2414 // But ARM doesn't have instructions to deal with 128-bit versions. 2415 if (Context.getTypeSize(ValType) > MaxWidth) { 2416 assert(MaxWidth == 64 && "Diagnostic unexpectedly inaccurate"); 2417 Diag(DRE->getBeginLoc(), diag::err_atomic_exclusive_builtin_pointer_size) 2418 << PointerArg->getType() << PointerArg->getSourceRange(); 2419 return true; 2420 } 2421 2422 switch (ValType.getObjCLifetime()) { 2423 case Qualifiers::OCL_None: 2424 case Qualifiers::OCL_ExplicitNone: 2425 // okay 2426 break; 2427 2428 case Qualifiers::OCL_Weak: 2429 case Qualifiers::OCL_Strong: 2430 case Qualifiers::OCL_Autoreleasing: 2431 Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership) 2432 << ValType << PointerArg->getSourceRange(); 2433 return true; 2434 } 2435 2436 if (IsLdrex) { 2437 TheCall->setType(ValType); 2438 return false; 2439 } 2440 2441 // Initialize the argument to be stored. 2442 ExprResult ValArg = TheCall->getArg(0); 2443 InitializedEntity Entity = InitializedEntity::InitializeParameter( 2444 Context, ValType, /*consume*/ false); 2445 ValArg = PerformCopyInitialization(Entity, SourceLocation(), ValArg); 2446 if (ValArg.isInvalid()) 2447 return true; 2448 TheCall->setArg(0, ValArg.get()); 2449 2450 // __builtin_arm_strex always returns an int. It's marked as such in the .def, 2451 // but the custom checker bypasses all default analysis. 2452 TheCall->setType(Context.IntTy); 2453 return false; 2454 } 2455 2456 bool Sema::CheckARMBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID, 2457 CallExpr *TheCall) { 2458 if (BuiltinID == ARM::BI__builtin_arm_ldrex || 2459 BuiltinID == ARM::BI__builtin_arm_ldaex || 2460 BuiltinID == ARM::BI__builtin_arm_strex || 2461 BuiltinID == ARM::BI__builtin_arm_stlex) { 2462 return CheckARMBuiltinExclusiveCall(BuiltinID, TheCall, 64); 2463 } 2464 2465 if (BuiltinID == ARM::BI__builtin_arm_prefetch) { 2466 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) || 2467 SemaBuiltinConstantArgRange(TheCall, 2, 0, 1); 2468 } 2469 2470 if (BuiltinID == ARM::BI__builtin_arm_rsr64 || 2471 BuiltinID == ARM::BI__builtin_arm_wsr64) 2472 return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 3, false); 2473 2474 if (BuiltinID == ARM::BI__builtin_arm_rsr || 2475 BuiltinID == ARM::BI__builtin_arm_rsrp || 2476 BuiltinID == ARM::BI__builtin_arm_wsr || 2477 BuiltinID == ARM::BI__builtin_arm_wsrp) 2478 return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true); 2479 2480 if (CheckNeonBuiltinFunctionCall(TI, BuiltinID, TheCall)) 2481 return true; 2482 if (CheckMVEBuiltinFunctionCall(BuiltinID, TheCall)) 2483 return true; 2484 if (CheckCDEBuiltinFunctionCall(TI, BuiltinID, TheCall)) 2485 return true; 2486 2487 // For intrinsics which take an immediate value as part of the instruction, 2488 // range check them here. 2489 // FIXME: VFP Intrinsics should error if VFP not present. 2490 switch (BuiltinID) { 2491 default: return false; 2492 case ARM::BI__builtin_arm_ssat: 2493 return SemaBuiltinConstantArgRange(TheCall, 1, 1, 32); 2494 case ARM::BI__builtin_arm_usat: 2495 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 31); 2496 case ARM::BI__builtin_arm_ssat16: 2497 return SemaBuiltinConstantArgRange(TheCall, 1, 1, 16); 2498 case ARM::BI__builtin_arm_usat16: 2499 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15); 2500 case ARM::BI__builtin_arm_vcvtr_f: 2501 case ARM::BI__builtin_arm_vcvtr_d: 2502 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1); 2503 case ARM::BI__builtin_arm_dmb: 2504 case ARM::BI__builtin_arm_dsb: 2505 case ARM::BI__builtin_arm_isb: 2506 case ARM::BI__builtin_arm_dbg: 2507 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 15); 2508 case ARM::BI__builtin_arm_cdp: 2509 case ARM::BI__builtin_arm_cdp2: 2510 case ARM::BI__builtin_arm_mcr: 2511 case ARM::BI__builtin_arm_mcr2: 2512 case ARM::BI__builtin_arm_mrc: 2513 case ARM::BI__builtin_arm_mrc2: 2514 case ARM::BI__builtin_arm_mcrr: 2515 case ARM::BI__builtin_arm_mcrr2: 2516 case ARM::BI__builtin_arm_mrrc: 2517 case ARM::BI__builtin_arm_mrrc2: 2518 case ARM::BI__builtin_arm_ldc: 2519 case ARM::BI__builtin_arm_ldcl: 2520 case ARM::BI__builtin_arm_ldc2: 2521 case ARM::BI__builtin_arm_ldc2l: 2522 case ARM::BI__builtin_arm_stc: 2523 case ARM::BI__builtin_arm_stcl: 2524 case ARM::BI__builtin_arm_stc2: 2525 case ARM::BI__builtin_arm_stc2l: 2526 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 15) || 2527 CheckARMCoprocessorImmediate(TI, TheCall->getArg(0), 2528 /*WantCDE*/ false); 2529 } 2530 } 2531 2532 bool Sema::CheckAArch64BuiltinFunctionCall(const TargetInfo &TI, 2533 unsigned BuiltinID, 2534 CallExpr *TheCall) { 2535 if (BuiltinID == AArch64::BI__builtin_arm_ldrex || 2536 BuiltinID == AArch64::BI__builtin_arm_ldaex || 2537 BuiltinID == AArch64::BI__builtin_arm_strex || 2538 BuiltinID == AArch64::BI__builtin_arm_stlex) { 2539 return CheckARMBuiltinExclusiveCall(BuiltinID, TheCall, 128); 2540 } 2541 2542 if (BuiltinID == AArch64::BI__builtin_arm_prefetch) { 2543 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) || 2544 SemaBuiltinConstantArgRange(TheCall, 2, 0, 2) || 2545 SemaBuiltinConstantArgRange(TheCall, 3, 0, 1) || 2546 SemaBuiltinConstantArgRange(TheCall, 4, 0, 1); 2547 } 2548 2549 if (BuiltinID == AArch64::BI__builtin_arm_rsr64 || 2550 BuiltinID == AArch64::BI__builtin_arm_wsr64) 2551 return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true); 2552 2553 // Memory Tagging Extensions (MTE) Intrinsics 2554 if (BuiltinID == AArch64::BI__builtin_arm_irg || 2555 BuiltinID == AArch64::BI__builtin_arm_addg || 2556 BuiltinID == AArch64::BI__builtin_arm_gmi || 2557 BuiltinID == AArch64::BI__builtin_arm_ldg || 2558 BuiltinID == AArch64::BI__builtin_arm_stg || 2559 BuiltinID == AArch64::BI__builtin_arm_subp) { 2560 return SemaBuiltinARMMemoryTaggingCall(BuiltinID, TheCall); 2561 } 2562 2563 if (BuiltinID == AArch64::BI__builtin_arm_rsr || 2564 BuiltinID == AArch64::BI__builtin_arm_rsrp || 2565 BuiltinID == AArch64::BI__builtin_arm_wsr || 2566 BuiltinID == AArch64::BI__builtin_arm_wsrp) 2567 return SemaBuiltinARMSpecialReg(BuiltinID, TheCall, 0, 5, true); 2568 2569 // Only check the valid encoding range. Any constant in this range would be 2570 // converted to a register of the form S1_2_C3_C4_5. Let the hardware throw 2571 // an exception for incorrect registers. This matches MSVC behavior. 2572 if (BuiltinID == AArch64::BI_ReadStatusReg || 2573 BuiltinID == AArch64::BI_WriteStatusReg) 2574 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 0x7fff); 2575 2576 if (BuiltinID == AArch64::BI__getReg) 2577 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31); 2578 2579 if (CheckNeonBuiltinFunctionCall(TI, BuiltinID, TheCall)) 2580 return true; 2581 2582 if (CheckSVEBuiltinFunctionCall(BuiltinID, TheCall)) 2583 return true; 2584 2585 // For intrinsics which take an immediate value as part of the instruction, 2586 // range check them here. 2587 unsigned i = 0, l = 0, u = 0; 2588 switch (BuiltinID) { 2589 default: return false; 2590 case AArch64::BI__builtin_arm_dmb: 2591 case AArch64::BI__builtin_arm_dsb: 2592 case AArch64::BI__builtin_arm_isb: l = 0; u = 15; break; 2593 case AArch64::BI__builtin_arm_tcancel: l = 0; u = 65535; break; 2594 } 2595 2596 return SemaBuiltinConstantArgRange(TheCall, i, l, u + l); 2597 } 2598 2599 static bool isValidBPFPreserveFieldInfoArg(Expr *Arg) { 2600 if (Arg->getType()->getAsPlaceholderType()) 2601 return false; 2602 2603 // The first argument needs to be a record field access. 2604 // If it is an array element access, we delay decision 2605 // to BPF backend to check whether the access is a 2606 // field access or not. 2607 return (Arg->IgnoreParens()->getObjectKind() == OK_BitField || 2608 dyn_cast<MemberExpr>(Arg->IgnoreParens()) || 2609 dyn_cast<ArraySubscriptExpr>(Arg->IgnoreParens())); 2610 } 2611 2612 static bool isEltOfVectorTy(ASTContext &Context, CallExpr *Call, Sema &S, 2613 QualType VectorTy, QualType EltTy) { 2614 QualType VectorEltTy = VectorTy->castAs<VectorType>()->getElementType(); 2615 if (!Context.hasSameType(VectorEltTy, EltTy)) { 2616 S.Diag(Call->getBeginLoc(), diag::err_typecheck_call_different_arg_types) 2617 << Call->getSourceRange() << VectorEltTy << EltTy; 2618 return false; 2619 } 2620 return true; 2621 } 2622 2623 static bool isValidBPFPreserveTypeInfoArg(Expr *Arg) { 2624 QualType ArgType = Arg->getType(); 2625 if (ArgType->getAsPlaceholderType()) 2626 return false; 2627 2628 // for TYPE_EXISTENCE/TYPE_SIZEOF reloc type 2629 // format: 2630 // 1. __builtin_preserve_type_info(*(<type> *)0, flag); 2631 // 2. <type> var; 2632 // __builtin_preserve_type_info(var, flag); 2633 if (!dyn_cast<DeclRefExpr>(Arg->IgnoreParens()) && 2634 !dyn_cast<UnaryOperator>(Arg->IgnoreParens())) 2635 return false; 2636 2637 // Typedef type. 2638 if (ArgType->getAs<TypedefType>()) 2639 return true; 2640 2641 // Record type or Enum type. 2642 const Type *Ty = ArgType->getUnqualifiedDesugaredType(); 2643 if (const auto *RT = Ty->getAs<RecordType>()) { 2644 if (!RT->getDecl()->getDeclName().isEmpty()) 2645 return true; 2646 } else if (const auto *ET = Ty->getAs<EnumType>()) { 2647 if (!ET->getDecl()->getDeclName().isEmpty()) 2648 return true; 2649 } 2650 2651 return false; 2652 } 2653 2654 static bool isValidBPFPreserveEnumValueArg(Expr *Arg) { 2655 QualType ArgType = Arg->getType(); 2656 if (ArgType->getAsPlaceholderType()) 2657 return false; 2658 2659 // for ENUM_VALUE_EXISTENCE/ENUM_VALUE reloc type 2660 // format: 2661 // __builtin_preserve_enum_value(*(<enum_type> *)<enum_value>, 2662 // flag); 2663 const auto *UO = dyn_cast<UnaryOperator>(Arg->IgnoreParens()); 2664 if (!UO) 2665 return false; 2666 2667 const auto *CE = dyn_cast<CStyleCastExpr>(UO->getSubExpr()); 2668 if (!CE) 2669 return false; 2670 if (CE->getCastKind() != CK_IntegralToPointer && 2671 CE->getCastKind() != CK_NullToPointer) 2672 return false; 2673 2674 // The integer must be from an EnumConstantDecl. 2675 const auto *DR = dyn_cast<DeclRefExpr>(CE->getSubExpr()); 2676 if (!DR) 2677 return false; 2678 2679 const EnumConstantDecl *Enumerator = 2680 dyn_cast<EnumConstantDecl>(DR->getDecl()); 2681 if (!Enumerator) 2682 return false; 2683 2684 // The type must be EnumType. 2685 const Type *Ty = ArgType->getUnqualifiedDesugaredType(); 2686 const auto *ET = Ty->getAs<EnumType>(); 2687 if (!ET) 2688 return false; 2689 2690 // The enum value must be supported. 2691 for (auto *EDI : ET->getDecl()->enumerators()) { 2692 if (EDI == Enumerator) 2693 return true; 2694 } 2695 2696 return false; 2697 } 2698 2699 bool Sema::CheckBPFBuiltinFunctionCall(unsigned BuiltinID, 2700 CallExpr *TheCall) { 2701 assert((BuiltinID == BPF::BI__builtin_preserve_field_info || 2702 BuiltinID == BPF::BI__builtin_btf_type_id || 2703 BuiltinID == BPF::BI__builtin_preserve_type_info || 2704 BuiltinID == BPF::BI__builtin_preserve_enum_value) && 2705 "unexpected BPF builtin"); 2706 2707 if (checkArgCount(*this, TheCall, 2)) 2708 return true; 2709 2710 // The second argument needs to be a constant int 2711 Expr *Arg = TheCall->getArg(1); 2712 Optional<llvm::APSInt> Value = Arg->getIntegerConstantExpr(Context); 2713 diag::kind kind; 2714 if (!Value) { 2715 if (BuiltinID == BPF::BI__builtin_preserve_field_info) 2716 kind = diag::err_preserve_field_info_not_const; 2717 else if (BuiltinID == BPF::BI__builtin_btf_type_id) 2718 kind = diag::err_btf_type_id_not_const; 2719 else if (BuiltinID == BPF::BI__builtin_preserve_type_info) 2720 kind = diag::err_preserve_type_info_not_const; 2721 else 2722 kind = diag::err_preserve_enum_value_not_const; 2723 Diag(Arg->getBeginLoc(), kind) << 2 << Arg->getSourceRange(); 2724 return true; 2725 } 2726 2727 // The first argument 2728 Arg = TheCall->getArg(0); 2729 bool InvalidArg = false; 2730 bool ReturnUnsignedInt = true; 2731 if (BuiltinID == BPF::BI__builtin_preserve_field_info) { 2732 if (!isValidBPFPreserveFieldInfoArg(Arg)) { 2733 InvalidArg = true; 2734 kind = diag::err_preserve_field_info_not_field; 2735 } 2736 } else if (BuiltinID == BPF::BI__builtin_preserve_type_info) { 2737 if (!isValidBPFPreserveTypeInfoArg(Arg)) { 2738 InvalidArg = true; 2739 kind = diag::err_preserve_type_info_invalid; 2740 } 2741 } else if (BuiltinID == BPF::BI__builtin_preserve_enum_value) { 2742 if (!isValidBPFPreserveEnumValueArg(Arg)) { 2743 InvalidArg = true; 2744 kind = diag::err_preserve_enum_value_invalid; 2745 } 2746 ReturnUnsignedInt = false; 2747 } else if (BuiltinID == BPF::BI__builtin_btf_type_id) { 2748 ReturnUnsignedInt = false; 2749 } 2750 2751 if (InvalidArg) { 2752 Diag(Arg->getBeginLoc(), kind) << 1 << Arg->getSourceRange(); 2753 return true; 2754 } 2755 2756 if (ReturnUnsignedInt) 2757 TheCall->setType(Context.UnsignedIntTy); 2758 else 2759 TheCall->setType(Context.UnsignedLongTy); 2760 return false; 2761 } 2762 2763 bool Sema::CheckHexagonBuiltinArgument(unsigned BuiltinID, CallExpr *TheCall) { 2764 struct ArgInfo { 2765 uint8_t OpNum; 2766 bool IsSigned; 2767 uint8_t BitWidth; 2768 uint8_t Align; 2769 }; 2770 struct BuiltinInfo { 2771 unsigned BuiltinID; 2772 ArgInfo Infos[2]; 2773 }; 2774 2775 static BuiltinInfo Infos[] = { 2776 { Hexagon::BI__builtin_circ_ldd, {{ 3, true, 4, 3 }} }, 2777 { Hexagon::BI__builtin_circ_ldw, {{ 3, true, 4, 2 }} }, 2778 { Hexagon::BI__builtin_circ_ldh, {{ 3, true, 4, 1 }} }, 2779 { Hexagon::BI__builtin_circ_lduh, {{ 3, true, 4, 1 }} }, 2780 { Hexagon::BI__builtin_circ_ldb, {{ 3, true, 4, 0 }} }, 2781 { Hexagon::BI__builtin_circ_ldub, {{ 3, true, 4, 0 }} }, 2782 { Hexagon::BI__builtin_circ_std, {{ 3, true, 4, 3 }} }, 2783 { Hexagon::BI__builtin_circ_stw, {{ 3, true, 4, 2 }} }, 2784 { Hexagon::BI__builtin_circ_sth, {{ 3, true, 4, 1 }} }, 2785 { Hexagon::BI__builtin_circ_sthhi, {{ 3, true, 4, 1 }} }, 2786 { Hexagon::BI__builtin_circ_stb, {{ 3, true, 4, 0 }} }, 2787 2788 { Hexagon::BI__builtin_HEXAGON_L2_loadrub_pci, {{ 1, true, 4, 0 }} }, 2789 { Hexagon::BI__builtin_HEXAGON_L2_loadrb_pci, {{ 1, true, 4, 0 }} }, 2790 { Hexagon::BI__builtin_HEXAGON_L2_loadruh_pci, {{ 1, true, 4, 1 }} }, 2791 { Hexagon::BI__builtin_HEXAGON_L2_loadrh_pci, {{ 1, true, 4, 1 }} }, 2792 { Hexagon::BI__builtin_HEXAGON_L2_loadri_pci, {{ 1, true, 4, 2 }} }, 2793 { Hexagon::BI__builtin_HEXAGON_L2_loadrd_pci, {{ 1, true, 4, 3 }} }, 2794 { Hexagon::BI__builtin_HEXAGON_S2_storerb_pci, {{ 1, true, 4, 0 }} }, 2795 { Hexagon::BI__builtin_HEXAGON_S2_storerh_pci, {{ 1, true, 4, 1 }} }, 2796 { Hexagon::BI__builtin_HEXAGON_S2_storerf_pci, {{ 1, true, 4, 1 }} }, 2797 { Hexagon::BI__builtin_HEXAGON_S2_storeri_pci, {{ 1, true, 4, 2 }} }, 2798 { Hexagon::BI__builtin_HEXAGON_S2_storerd_pci, {{ 1, true, 4, 3 }} }, 2799 2800 { Hexagon::BI__builtin_HEXAGON_A2_combineii, {{ 1, true, 8, 0 }} }, 2801 { Hexagon::BI__builtin_HEXAGON_A2_tfrih, {{ 1, false, 16, 0 }} }, 2802 { Hexagon::BI__builtin_HEXAGON_A2_tfril, {{ 1, false, 16, 0 }} }, 2803 { Hexagon::BI__builtin_HEXAGON_A2_tfrpi, {{ 0, true, 8, 0 }} }, 2804 { Hexagon::BI__builtin_HEXAGON_A4_bitspliti, {{ 1, false, 5, 0 }} }, 2805 { Hexagon::BI__builtin_HEXAGON_A4_cmpbeqi, {{ 1, false, 8, 0 }} }, 2806 { Hexagon::BI__builtin_HEXAGON_A4_cmpbgti, {{ 1, true, 8, 0 }} }, 2807 { Hexagon::BI__builtin_HEXAGON_A4_cround_ri, {{ 1, false, 5, 0 }} }, 2808 { Hexagon::BI__builtin_HEXAGON_A4_round_ri, {{ 1, false, 5, 0 }} }, 2809 { Hexagon::BI__builtin_HEXAGON_A4_round_ri_sat, {{ 1, false, 5, 0 }} }, 2810 { Hexagon::BI__builtin_HEXAGON_A4_vcmpbeqi, {{ 1, false, 8, 0 }} }, 2811 { Hexagon::BI__builtin_HEXAGON_A4_vcmpbgti, {{ 1, true, 8, 0 }} }, 2812 { Hexagon::BI__builtin_HEXAGON_A4_vcmpbgtui, {{ 1, false, 7, 0 }} }, 2813 { Hexagon::BI__builtin_HEXAGON_A4_vcmpheqi, {{ 1, true, 8, 0 }} }, 2814 { Hexagon::BI__builtin_HEXAGON_A4_vcmphgti, {{ 1, true, 8, 0 }} }, 2815 { Hexagon::BI__builtin_HEXAGON_A4_vcmphgtui, {{ 1, false, 7, 0 }} }, 2816 { Hexagon::BI__builtin_HEXAGON_A4_vcmpweqi, {{ 1, true, 8, 0 }} }, 2817 { Hexagon::BI__builtin_HEXAGON_A4_vcmpwgti, {{ 1, true, 8, 0 }} }, 2818 { Hexagon::BI__builtin_HEXAGON_A4_vcmpwgtui, {{ 1, false, 7, 0 }} }, 2819 { Hexagon::BI__builtin_HEXAGON_C2_bitsclri, {{ 1, false, 6, 0 }} }, 2820 { Hexagon::BI__builtin_HEXAGON_C2_muxii, {{ 2, true, 8, 0 }} }, 2821 { Hexagon::BI__builtin_HEXAGON_C4_nbitsclri, {{ 1, false, 6, 0 }} }, 2822 { Hexagon::BI__builtin_HEXAGON_F2_dfclass, {{ 1, false, 5, 0 }} }, 2823 { Hexagon::BI__builtin_HEXAGON_F2_dfimm_n, {{ 0, false, 10, 0 }} }, 2824 { Hexagon::BI__builtin_HEXAGON_F2_dfimm_p, {{ 0, false, 10, 0 }} }, 2825 { Hexagon::BI__builtin_HEXAGON_F2_sfclass, {{ 1, false, 5, 0 }} }, 2826 { Hexagon::BI__builtin_HEXAGON_F2_sfimm_n, {{ 0, false, 10, 0 }} }, 2827 { Hexagon::BI__builtin_HEXAGON_F2_sfimm_p, {{ 0, false, 10, 0 }} }, 2828 { Hexagon::BI__builtin_HEXAGON_M4_mpyri_addi, {{ 2, false, 6, 0 }} }, 2829 { Hexagon::BI__builtin_HEXAGON_M4_mpyri_addr_u2, {{ 1, false, 6, 2 }} }, 2830 { Hexagon::BI__builtin_HEXAGON_S2_addasl_rrri, {{ 2, false, 3, 0 }} }, 2831 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_acc, {{ 2, false, 6, 0 }} }, 2832 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_and, {{ 2, false, 6, 0 }} }, 2833 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p, {{ 1, false, 6, 0 }} }, 2834 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_nac, {{ 2, false, 6, 0 }} }, 2835 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_or, {{ 2, false, 6, 0 }} }, 2836 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_p_xacc, {{ 2, false, 6, 0 }} }, 2837 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_acc, {{ 2, false, 5, 0 }} }, 2838 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_and, {{ 2, false, 5, 0 }} }, 2839 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r, {{ 1, false, 5, 0 }} }, 2840 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_nac, {{ 2, false, 5, 0 }} }, 2841 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_or, {{ 2, false, 5, 0 }} }, 2842 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_sat, {{ 1, false, 5, 0 }} }, 2843 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_r_xacc, {{ 2, false, 5, 0 }} }, 2844 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_vh, {{ 1, false, 4, 0 }} }, 2845 { Hexagon::BI__builtin_HEXAGON_S2_asl_i_vw, {{ 1, false, 5, 0 }} }, 2846 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_acc, {{ 2, false, 6, 0 }} }, 2847 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_and, {{ 2, false, 6, 0 }} }, 2848 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p, {{ 1, false, 6, 0 }} }, 2849 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_nac, {{ 2, false, 6, 0 }} }, 2850 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_or, {{ 2, false, 6, 0 }} }, 2851 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_rnd_goodsyntax, 2852 {{ 1, false, 6, 0 }} }, 2853 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_p_rnd, {{ 1, false, 6, 0 }} }, 2854 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_acc, {{ 2, false, 5, 0 }} }, 2855 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_and, {{ 2, false, 5, 0 }} }, 2856 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r, {{ 1, false, 5, 0 }} }, 2857 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_nac, {{ 2, false, 5, 0 }} }, 2858 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_or, {{ 2, false, 5, 0 }} }, 2859 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_rnd_goodsyntax, 2860 {{ 1, false, 5, 0 }} }, 2861 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_r_rnd, {{ 1, false, 5, 0 }} }, 2862 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_svw_trun, {{ 1, false, 5, 0 }} }, 2863 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_vh, {{ 1, false, 4, 0 }} }, 2864 { Hexagon::BI__builtin_HEXAGON_S2_asr_i_vw, {{ 1, false, 5, 0 }} }, 2865 { Hexagon::BI__builtin_HEXAGON_S2_clrbit_i, {{ 1, false, 5, 0 }} }, 2866 { Hexagon::BI__builtin_HEXAGON_S2_extractu, {{ 1, false, 5, 0 }, 2867 { 2, false, 5, 0 }} }, 2868 { Hexagon::BI__builtin_HEXAGON_S2_extractup, {{ 1, false, 6, 0 }, 2869 { 2, false, 6, 0 }} }, 2870 { Hexagon::BI__builtin_HEXAGON_S2_insert, {{ 2, false, 5, 0 }, 2871 { 3, false, 5, 0 }} }, 2872 { Hexagon::BI__builtin_HEXAGON_S2_insertp, {{ 2, false, 6, 0 }, 2873 { 3, false, 6, 0 }} }, 2874 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_acc, {{ 2, false, 6, 0 }} }, 2875 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_and, {{ 2, false, 6, 0 }} }, 2876 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p, {{ 1, false, 6, 0 }} }, 2877 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_nac, {{ 2, false, 6, 0 }} }, 2878 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_or, {{ 2, false, 6, 0 }} }, 2879 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_p_xacc, {{ 2, false, 6, 0 }} }, 2880 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_acc, {{ 2, false, 5, 0 }} }, 2881 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_and, {{ 2, false, 5, 0 }} }, 2882 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r, {{ 1, false, 5, 0 }} }, 2883 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_nac, {{ 2, false, 5, 0 }} }, 2884 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_or, {{ 2, false, 5, 0 }} }, 2885 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_r_xacc, {{ 2, false, 5, 0 }} }, 2886 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_vh, {{ 1, false, 4, 0 }} }, 2887 { Hexagon::BI__builtin_HEXAGON_S2_lsr_i_vw, {{ 1, false, 5, 0 }} }, 2888 { Hexagon::BI__builtin_HEXAGON_S2_setbit_i, {{ 1, false, 5, 0 }} }, 2889 { Hexagon::BI__builtin_HEXAGON_S2_tableidxb_goodsyntax, 2890 {{ 2, false, 4, 0 }, 2891 { 3, false, 5, 0 }} }, 2892 { Hexagon::BI__builtin_HEXAGON_S2_tableidxd_goodsyntax, 2893 {{ 2, false, 4, 0 }, 2894 { 3, false, 5, 0 }} }, 2895 { Hexagon::BI__builtin_HEXAGON_S2_tableidxh_goodsyntax, 2896 {{ 2, false, 4, 0 }, 2897 { 3, false, 5, 0 }} }, 2898 { Hexagon::BI__builtin_HEXAGON_S2_tableidxw_goodsyntax, 2899 {{ 2, false, 4, 0 }, 2900 { 3, false, 5, 0 }} }, 2901 { Hexagon::BI__builtin_HEXAGON_S2_togglebit_i, {{ 1, false, 5, 0 }} }, 2902 { Hexagon::BI__builtin_HEXAGON_S2_tstbit_i, {{ 1, false, 5, 0 }} }, 2903 { Hexagon::BI__builtin_HEXAGON_S2_valignib, {{ 2, false, 3, 0 }} }, 2904 { Hexagon::BI__builtin_HEXAGON_S2_vspliceib, {{ 2, false, 3, 0 }} }, 2905 { Hexagon::BI__builtin_HEXAGON_S4_addi_asl_ri, {{ 2, false, 5, 0 }} }, 2906 { Hexagon::BI__builtin_HEXAGON_S4_addi_lsr_ri, {{ 2, false, 5, 0 }} }, 2907 { Hexagon::BI__builtin_HEXAGON_S4_andi_asl_ri, {{ 2, false, 5, 0 }} }, 2908 { Hexagon::BI__builtin_HEXAGON_S4_andi_lsr_ri, {{ 2, false, 5, 0 }} }, 2909 { Hexagon::BI__builtin_HEXAGON_S4_clbaddi, {{ 1, true , 6, 0 }} }, 2910 { Hexagon::BI__builtin_HEXAGON_S4_clbpaddi, {{ 1, true, 6, 0 }} }, 2911 { Hexagon::BI__builtin_HEXAGON_S4_extract, {{ 1, false, 5, 0 }, 2912 { 2, false, 5, 0 }} }, 2913 { Hexagon::BI__builtin_HEXAGON_S4_extractp, {{ 1, false, 6, 0 }, 2914 { 2, false, 6, 0 }} }, 2915 { Hexagon::BI__builtin_HEXAGON_S4_lsli, {{ 0, true, 6, 0 }} }, 2916 { Hexagon::BI__builtin_HEXAGON_S4_ntstbit_i, {{ 1, false, 5, 0 }} }, 2917 { Hexagon::BI__builtin_HEXAGON_S4_ori_asl_ri, {{ 2, false, 5, 0 }} }, 2918 { Hexagon::BI__builtin_HEXAGON_S4_ori_lsr_ri, {{ 2, false, 5, 0 }} }, 2919 { Hexagon::BI__builtin_HEXAGON_S4_subi_asl_ri, {{ 2, false, 5, 0 }} }, 2920 { Hexagon::BI__builtin_HEXAGON_S4_subi_lsr_ri, {{ 2, false, 5, 0 }} }, 2921 { Hexagon::BI__builtin_HEXAGON_S4_vrcrotate_acc, {{ 3, false, 2, 0 }} }, 2922 { Hexagon::BI__builtin_HEXAGON_S4_vrcrotate, {{ 2, false, 2, 0 }} }, 2923 { Hexagon::BI__builtin_HEXAGON_S5_asrhub_rnd_sat_goodsyntax, 2924 {{ 1, false, 4, 0 }} }, 2925 { Hexagon::BI__builtin_HEXAGON_S5_asrhub_sat, {{ 1, false, 4, 0 }} }, 2926 { Hexagon::BI__builtin_HEXAGON_S5_vasrhrnd_goodsyntax, 2927 {{ 1, false, 4, 0 }} }, 2928 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p, {{ 1, false, 6, 0 }} }, 2929 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_acc, {{ 2, false, 6, 0 }} }, 2930 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_and, {{ 2, false, 6, 0 }} }, 2931 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_nac, {{ 2, false, 6, 0 }} }, 2932 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_or, {{ 2, false, 6, 0 }} }, 2933 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_p_xacc, {{ 2, false, 6, 0 }} }, 2934 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r, {{ 1, false, 5, 0 }} }, 2935 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_acc, {{ 2, false, 5, 0 }} }, 2936 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_and, {{ 2, false, 5, 0 }} }, 2937 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_nac, {{ 2, false, 5, 0 }} }, 2938 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_or, {{ 2, false, 5, 0 }} }, 2939 { Hexagon::BI__builtin_HEXAGON_S6_rol_i_r_xacc, {{ 2, false, 5, 0 }} }, 2940 { Hexagon::BI__builtin_HEXAGON_V6_valignbi, {{ 2, false, 3, 0 }} }, 2941 { Hexagon::BI__builtin_HEXAGON_V6_valignbi_128B, {{ 2, false, 3, 0 }} }, 2942 { Hexagon::BI__builtin_HEXAGON_V6_vlalignbi, {{ 2, false, 3, 0 }} }, 2943 { Hexagon::BI__builtin_HEXAGON_V6_vlalignbi_128B, {{ 2, false, 3, 0 }} }, 2944 { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi, {{ 2, false, 1, 0 }} }, 2945 { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_128B, {{ 2, false, 1, 0 }} }, 2946 { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_acc, {{ 3, false, 1, 0 }} }, 2947 { Hexagon::BI__builtin_HEXAGON_V6_vrmpybusi_acc_128B, 2948 {{ 3, false, 1, 0 }} }, 2949 { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi, {{ 2, false, 1, 0 }} }, 2950 { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_128B, {{ 2, false, 1, 0 }} }, 2951 { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_acc, {{ 3, false, 1, 0 }} }, 2952 { Hexagon::BI__builtin_HEXAGON_V6_vrmpyubi_acc_128B, 2953 {{ 3, false, 1, 0 }} }, 2954 { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi, {{ 2, false, 1, 0 }} }, 2955 { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_128B, {{ 2, false, 1, 0 }} }, 2956 { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_acc, {{ 3, false, 1, 0 }} }, 2957 { Hexagon::BI__builtin_HEXAGON_V6_vrsadubi_acc_128B, 2958 {{ 3, false, 1, 0 }} }, 2959 }; 2960 2961 // Use a dynamically initialized static to sort the table exactly once on 2962 // first run. 2963 static const bool SortOnce = 2964 (llvm::sort(Infos, 2965 [](const BuiltinInfo &LHS, const BuiltinInfo &RHS) { 2966 return LHS.BuiltinID < RHS.BuiltinID; 2967 }), 2968 true); 2969 (void)SortOnce; 2970 2971 const BuiltinInfo *F = llvm::partition_point( 2972 Infos, [=](const BuiltinInfo &BI) { return BI.BuiltinID < BuiltinID; }); 2973 if (F == std::end(Infos) || F->BuiltinID != BuiltinID) 2974 return false; 2975 2976 bool Error = false; 2977 2978 for (const ArgInfo &A : F->Infos) { 2979 // Ignore empty ArgInfo elements. 2980 if (A.BitWidth == 0) 2981 continue; 2982 2983 int32_t Min = A.IsSigned ? -(1 << (A.BitWidth - 1)) : 0; 2984 int32_t Max = (1 << (A.IsSigned ? A.BitWidth - 1 : A.BitWidth)) - 1; 2985 if (!A.Align) { 2986 Error |= SemaBuiltinConstantArgRange(TheCall, A.OpNum, Min, Max); 2987 } else { 2988 unsigned M = 1 << A.Align; 2989 Min *= M; 2990 Max *= M; 2991 Error |= SemaBuiltinConstantArgRange(TheCall, A.OpNum, Min, Max) | 2992 SemaBuiltinConstantArgMultiple(TheCall, A.OpNum, M); 2993 } 2994 } 2995 return Error; 2996 } 2997 2998 bool Sema::CheckHexagonBuiltinFunctionCall(unsigned BuiltinID, 2999 CallExpr *TheCall) { 3000 return CheckHexagonBuiltinArgument(BuiltinID, TheCall); 3001 } 3002 3003 bool Sema::CheckMipsBuiltinFunctionCall(const TargetInfo &TI, 3004 unsigned BuiltinID, CallExpr *TheCall) { 3005 return CheckMipsBuiltinCpu(TI, BuiltinID, TheCall) || 3006 CheckMipsBuiltinArgument(BuiltinID, TheCall); 3007 } 3008 3009 bool Sema::CheckMipsBuiltinCpu(const TargetInfo &TI, unsigned BuiltinID, 3010 CallExpr *TheCall) { 3011 3012 if (Mips::BI__builtin_mips_addu_qb <= BuiltinID && 3013 BuiltinID <= Mips::BI__builtin_mips_lwx) { 3014 if (!TI.hasFeature("dsp")) 3015 return Diag(TheCall->getBeginLoc(), diag::err_mips_builtin_requires_dsp); 3016 } 3017 3018 if (Mips::BI__builtin_mips_absq_s_qb <= BuiltinID && 3019 BuiltinID <= Mips::BI__builtin_mips_subuh_r_qb) { 3020 if (!TI.hasFeature("dspr2")) 3021 return Diag(TheCall->getBeginLoc(), 3022 diag::err_mips_builtin_requires_dspr2); 3023 } 3024 3025 if (Mips::BI__builtin_msa_add_a_b <= BuiltinID && 3026 BuiltinID <= Mips::BI__builtin_msa_xori_b) { 3027 if (!TI.hasFeature("msa")) 3028 return Diag(TheCall->getBeginLoc(), diag::err_mips_builtin_requires_msa); 3029 } 3030 3031 return false; 3032 } 3033 3034 // CheckMipsBuiltinArgument - Checks the constant value passed to the 3035 // intrinsic is correct. The switch statement is ordered by DSP, MSA. The 3036 // ordering for DSP is unspecified. MSA is ordered by the data format used 3037 // by the underlying instruction i.e., df/m, df/n and then by size. 3038 // 3039 // FIXME: The size tests here should instead be tablegen'd along with the 3040 // definitions from include/clang/Basic/BuiltinsMips.def. 3041 // FIXME: GCC is strict on signedness for some of these intrinsics, we should 3042 // be too. 3043 bool Sema::CheckMipsBuiltinArgument(unsigned BuiltinID, CallExpr *TheCall) { 3044 unsigned i = 0, l = 0, u = 0, m = 0; 3045 switch (BuiltinID) { 3046 default: return false; 3047 case Mips::BI__builtin_mips_wrdsp: i = 1; l = 0; u = 63; break; 3048 case Mips::BI__builtin_mips_rddsp: i = 0; l = 0; u = 63; break; 3049 case Mips::BI__builtin_mips_append: i = 2; l = 0; u = 31; break; 3050 case Mips::BI__builtin_mips_balign: i = 2; l = 0; u = 3; break; 3051 case Mips::BI__builtin_mips_precr_sra_ph_w: i = 2; l = 0; u = 31; break; 3052 case Mips::BI__builtin_mips_precr_sra_r_ph_w: i = 2; l = 0; u = 31; break; 3053 case Mips::BI__builtin_mips_prepend: i = 2; l = 0; u = 31; break; 3054 // MSA intrinsics. Instructions (which the intrinsics maps to) which use the 3055 // df/m field. 3056 // These intrinsics take an unsigned 3 bit immediate. 3057 case Mips::BI__builtin_msa_bclri_b: 3058 case Mips::BI__builtin_msa_bnegi_b: 3059 case Mips::BI__builtin_msa_bseti_b: 3060 case Mips::BI__builtin_msa_sat_s_b: 3061 case Mips::BI__builtin_msa_sat_u_b: 3062 case Mips::BI__builtin_msa_slli_b: 3063 case Mips::BI__builtin_msa_srai_b: 3064 case Mips::BI__builtin_msa_srari_b: 3065 case Mips::BI__builtin_msa_srli_b: 3066 case Mips::BI__builtin_msa_srlri_b: i = 1; l = 0; u = 7; break; 3067 case Mips::BI__builtin_msa_binsli_b: 3068 case Mips::BI__builtin_msa_binsri_b: i = 2; l = 0; u = 7; break; 3069 // These intrinsics take an unsigned 4 bit immediate. 3070 case Mips::BI__builtin_msa_bclri_h: 3071 case Mips::BI__builtin_msa_bnegi_h: 3072 case Mips::BI__builtin_msa_bseti_h: 3073 case Mips::BI__builtin_msa_sat_s_h: 3074 case Mips::BI__builtin_msa_sat_u_h: 3075 case Mips::BI__builtin_msa_slli_h: 3076 case Mips::BI__builtin_msa_srai_h: 3077 case Mips::BI__builtin_msa_srari_h: 3078 case Mips::BI__builtin_msa_srli_h: 3079 case Mips::BI__builtin_msa_srlri_h: i = 1; l = 0; u = 15; break; 3080 case Mips::BI__builtin_msa_binsli_h: 3081 case Mips::BI__builtin_msa_binsri_h: i = 2; l = 0; u = 15; break; 3082 // These intrinsics take an unsigned 5 bit immediate. 3083 // The first block of intrinsics actually have an unsigned 5 bit field, 3084 // not a df/n field. 3085 case Mips::BI__builtin_msa_cfcmsa: 3086 case Mips::BI__builtin_msa_ctcmsa: i = 0; l = 0; u = 31; break; 3087 case Mips::BI__builtin_msa_clei_u_b: 3088 case Mips::BI__builtin_msa_clei_u_h: 3089 case Mips::BI__builtin_msa_clei_u_w: 3090 case Mips::BI__builtin_msa_clei_u_d: 3091 case Mips::BI__builtin_msa_clti_u_b: 3092 case Mips::BI__builtin_msa_clti_u_h: 3093 case Mips::BI__builtin_msa_clti_u_w: 3094 case Mips::BI__builtin_msa_clti_u_d: 3095 case Mips::BI__builtin_msa_maxi_u_b: 3096 case Mips::BI__builtin_msa_maxi_u_h: 3097 case Mips::BI__builtin_msa_maxi_u_w: 3098 case Mips::BI__builtin_msa_maxi_u_d: 3099 case Mips::BI__builtin_msa_mini_u_b: 3100 case Mips::BI__builtin_msa_mini_u_h: 3101 case Mips::BI__builtin_msa_mini_u_w: 3102 case Mips::BI__builtin_msa_mini_u_d: 3103 case Mips::BI__builtin_msa_addvi_b: 3104 case Mips::BI__builtin_msa_addvi_h: 3105 case Mips::BI__builtin_msa_addvi_w: 3106 case Mips::BI__builtin_msa_addvi_d: 3107 case Mips::BI__builtin_msa_bclri_w: 3108 case Mips::BI__builtin_msa_bnegi_w: 3109 case Mips::BI__builtin_msa_bseti_w: 3110 case Mips::BI__builtin_msa_sat_s_w: 3111 case Mips::BI__builtin_msa_sat_u_w: 3112 case Mips::BI__builtin_msa_slli_w: 3113 case Mips::BI__builtin_msa_srai_w: 3114 case Mips::BI__builtin_msa_srari_w: 3115 case Mips::BI__builtin_msa_srli_w: 3116 case Mips::BI__builtin_msa_srlri_w: 3117 case Mips::BI__builtin_msa_subvi_b: 3118 case Mips::BI__builtin_msa_subvi_h: 3119 case Mips::BI__builtin_msa_subvi_w: 3120 case Mips::BI__builtin_msa_subvi_d: i = 1; l = 0; u = 31; break; 3121 case Mips::BI__builtin_msa_binsli_w: 3122 case Mips::BI__builtin_msa_binsri_w: i = 2; l = 0; u = 31; break; 3123 // These intrinsics take an unsigned 6 bit immediate. 3124 case Mips::BI__builtin_msa_bclri_d: 3125 case Mips::BI__builtin_msa_bnegi_d: 3126 case Mips::BI__builtin_msa_bseti_d: 3127 case Mips::BI__builtin_msa_sat_s_d: 3128 case Mips::BI__builtin_msa_sat_u_d: 3129 case Mips::BI__builtin_msa_slli_d: 3130 case Mips::BI__builtin_msa_srai_d: 3131 case Mips::BI__builtin_msa_srari_d: 3132 case Mips::BI__builtin_msa_srli_d: 3133 case Mips::BI__builtin_msa_srlri_d: i = 1; l = 0; u = 63; break; 3134 case Mips::BI__builtin_msa_binsli_d: 3135 case Mips::BI__builtin_msa_binsri_d: i = 2; l = 0; u = 63; break; 3136 // These intrinsics take a signed 5 bit immediate. 3137 case Mips::BI__builtin_msa_ceqi_b: 3138 case Mips::BI__builtin_msa_ceqi_h: 3139 case Mips::BI__builtin_msa_ceqi_w: 3140 case Mips::BI__builtin_msa_ceqi_d: 3141 case Mips::BI__builtin_msa_clti_s_b: 3142 case Mips::BI__builtin_msa_clti_s_h: 3143 case Mips::BI__builtin_msa_clti_s_w: 3144 case Mips::BI__builtin_msa_clti_s_d: 3145 case Mips::BI__builtin_msa_clei_s_b: 3146 case Mips::BI__builtin_msa_clei_s_h: 3147 case Mips::BI__builtin_msa_clei_s_w: 3148 case Mips::BI__builtin_msa_clei_s_d: 3149 case Mips::BI__builtin_msa_maxi_s_b: 3150 case Mips::BI__builtin_msa_maxi_s_h: 3151 case Mips::BI__builtin_msa_maxi_s_w: 3152 case Mips::BI__builtin_msa_maxi_s_d: 3153 case Mips::BI__builtin_msa_mini_s_b: 3154 case Mips::BI__builtin_msa_mini_s_h: 3155 case Mips::BI__builtin_msa_mini_s_w: 3156 case Mips::BI__builtin_msa_mini_s_d: i = 1; l = -16; u = 15; break; 3157 // These intrinsics take an unsigned 8 bit immediate. 3158 case Mips::BI__builtin_msa_andi_b: 3159 case Mips::BI__builtin_msa_nori_b: 3160 case Mips::BI__builtin_msa_ori_b: 3161 case Mips::BI__builtin_msa_shf_b: 3162 case Mips::BI__builtin_msa_shf_h: 3163 case Mips::BI__builtin_msa_shf_w: 3164 case Mips::BI__builtin_msa_xori_b: i = 1; l = 0; u = 255; break; 3165 case Mips::BI__builtin_msa_bseli_b: 3166 case Mips::BI__builtin_msa_bmnzi_b: 3167 case Mips::BI__builtin_msa_bmzi_b: i = 2; l = 0; u = 255; break; 3168 // df/n format 3169 // These intrinsics take an unsigned 4 bit immediate. 3170 case Mips::BI__builtin_msa_copy_s_b: 3171 case Mips::BI__builtin_msa_copy_u_b: 3172 case Mips::BI__builtin_msa_insve_b: 3173 case Mips::BI__builtin_msa_splati_b: i = 1; l = 0; u = 15; break; 3174 case Mips::BI__builtin_msa_sldi_b: i = 2; l = 0; u = 15; break; 3175 // These intrinsics take an unsigned 3 bit immediate. 3176 case Mips::BI__builtin_msa_copy_s_h: 3177 case Mips::BI__builtin_msa_copy_u_h: 3178 case Mips::BI__builtin_msa_insve_h: 3179 case Mips::BI__builtin_msa_splati_h: i = 1; l = 0; u = 7; break; 3180 case Mips::BI__builtin_msa_sldi_h: i = 2; l = 0; u = 7; break; 3181 // These intrinsics take an unsigned 2 bit immediate. 3182 case Mips::BI__builtin_msa_copy_s_w: 3183 case Mips::BI__builtin_msa_copy_u_w: 3184 case Mips::BI__builtin_msa_insve_w: 3185 case Mips::BI__builtin_msa_splati_w: i = 1; l = 0; u = 3; break; 3186 case Mips::BI__builtin_msa_sldi_w: i = 2; l = 0; u = 3; break; 3187 // These intrinsics take an unsigned 1 bit immediate. 3188 case Mips::BI__builtin_msa_copy_s_d: 3189 case Mips::BI__builtin_msa_copy_u_d: 3190 case Mips::BI__builtin_msa_insve_d: 3191 case Mips::BI__builtin_msa_splati_d: i = 1; l = 0; u = 1; break; 3192 case Mips::BI__builtin_msa_sldi_d: i = 2; l = 0; u = 1; break; 3193 // Memory offsets and immediate loads. 3194 // These intrinsics take a signed 10 bit immediate. 3195 case Mips::BI__builtin_msa_ldi_b: i = 0; l = -128; u = 255; break; 3196 case Mips::BI__builtin_msa_ldi_h: 3197 case Mips::BI__builtin_msa_ldi_w: 3198 case Mips::BI__builtin_msa_ldi_d: i = 0; l = -512; u = 511; break; 3199 case Mips::BI__builtin_msa_ld_b: i = 1; l = -512; u = 511; m = 1; break; 3200 case Mips::BI__builtin_msa_ld_h: i = 1; l = -1024; u = 1022; m = 2; break; 3201 case Mips::BI__builtin_msa_ld_w: i = 1; l = -2048; u = 2044; m = 4; break; 3202 case Mips::BI__builtin_msa_ld_d: i = 1; l = -4096; u = 4088; m = 8; break; 3203 case Mips::BI__builtin_msa_ldr_d: i = 1; l = -4096; u = 4088; m = 8; break; 3204 case Mips::BI__builtin_msa_ldr_w: i = 1; l = -2048; u = 2044; m = 4; break; 3205 case Mips::BI__builtin_msa_st_b: i = 2; l = -512; u = 511; m = 1; break; 3206 case Mips::BI__builtin_msa_st_h: i = 2; l = -1024; u = 1022; m = 2; break; 3207 case Mips::BI__builtin_msa_st_w: i = 2; l = -2048; u = 2044; m = 4; break; 3208 case Mips::BI__builtin_msa_st_d: i = 2; l = -4096; u = 4088; m = 8; break; 3209 case Mips::BI__builtin_msa_str_d: i = 2; l = -4096; u = 4088; m = 8; break; 3210 case Mips::BI__builtin_msa_str_w: i = 2; l = -2048; u = 2044; m = 4; break; 3211 } 3212 3213 if (!m) 3214 return SemaBuiltinConstantArgRange(TheCall, i, l, u); 3215 3216 return SemaBuiltinConstantArgRange(TheCall, i, l, u) || 3217 SemaBuiltinConstantArgMultiple(TheCall, i, m); 3218 } 3219 3220 /// DecodePPCMMATypeFromStr - This decodes one PPC MMA type descriptor from Str, 3221 /// advancing the pointer over the consumed characters. The decoded type is 3222 /// returned. If the decoded type represents a constant integer with a 3223 /// constraint on its value then Mask is set to that value. The type descriptors 3224 /// used in Str are specific to PPC MMA builtins and are documented in the file 3225 /// defining the PPC builtins. 3226 static QualType DecodePPCMMATypeFromStr(ASTContext &Context, const char *&Str, 3227 unsigned &Mask) { 3228 bool RequireICE = false; 3229 ASTContext::GetBuiltinTypeError Error = ASTContext::GE_None; 3230 switch (*Str++) { 3231 case 'V': 3232 return Context.getVectorType(Context.UnsignedCharTy, 16, 3233 VectorType::VectorKind::AltiVecVector); 3234 case 'i': { 3235 char *End; 3236 unsigned size = strtoul(Str, &End, 10); 3237 assert(End != Str && "Missing constant parameter constraint"); 3238 Str = End; 3239 Mask = size; 3240 return Context.IntTy; 3241 } 3242 case 'W': { 3243 char *End; 3244 unsigned size = strtoul(Str, &End, 10); 3245 assert(End != Str && "Missing PowerPC MMA type size"); 3246 Str = End; 3247 QualType Type; 3248 switch (size) { 3249 #define PPC_VECTOR_TYPE(typeName, Id, size) \ 3250 case size: Type = Context.Id##Ty; break; 3251 #include "clang/Basic/PPCTypes.def" 3252 default: llvm_unreachable("Invalid PowerPC MMA vector type"); 3253 } 3254 bool CheckVectorArgs = false; 3255 while (!CheckVectorArgs) { 3256 switch (*Str++) { 3257 case '*': 3258 Type = Context.getPointerType(Type); 3259 break; 3260 case 'C': 3261 Type = Type.withConst(); 3262 break; 3263 default: 3264 CheckVectorArgs = true; 3265 --Str; 3266 break; 3267 } 3268 } 3269 return Type; 3270 } 3271 default: 3272 return Context.DecodeTypeStr(--Str, Context, Error, RequireICE, true); 3273 } 3274 } 3275 3276 static bool isPPC_64Builtin(unsigned BuiltinID) { 3277 // These builtins only work on PPC 64bit targets. 3278 switch (BuiltinID) { 3279 case PPC::BI__builtin_divde: 3280 case PPC::BI__builtin_divdeu: 3281 case PPC::BI__builtin_bpermd: 3282 case PPC::BI__builtin_ppc_ldarx: 3283 case PPC::BI__builtin_ppc_stdcx: 3284 case PPC::BI__builtin_ppc_tdw: 3285 case PPC::BI__builtin_ppc_trapd: 3286 case PPC::BI__builtin_ppc_cmpeqb: 3287 case PPC::BI__builtin_ppc_setb: 3288 case PPC::BI__builtin_ppc_mulhd: 3289 case PPC::BI__builtin_ppc_mulhdu: 3290 case PPC::BI__builtin_ppc_maddhd: 3291 case PPC::BI__builtin_ppc_maddhdu: 3292 case PPC::BI__builtin_ppc_maddld: 3293 case PPC::BI__builtin_ppc_load8r: 3294 case PPC::BI__builtin_ppc_store8r: 3295 case PPC::BI__builtin_ppc_insert_exp: 3296 case PPC::BI__builtin_ppc_extract_sig: 3297 case PPC::BI__builtin_ppc_addex: 3298 case PPC::BI__builtin_darn: 3299 case PPC::BI__builtin_darn_raw: 3300 return true; 3301 } 3302 return false; 3303 } 3304 3305 static bool SemaFeatureCheck(Sema &S, CallExpr *TheCall, 3306 StringRef FeatureToCheck, unsigned DiagID, 3307 StringRef DiagArg = "") { 3308 if (S.Context.getTargetInfo().hasFeature(FeatureToCheck)) 3309 return false; 3310 3311 if (DiagArg.empty()) 3312 S.Diag(TheCall->getBeginLoc(), DiagID) << TheCall->getSourceRange(); 3313 else 3314 S.Diag(TheCall->getBeginLoc(), DiagID) 3315 << DiagArg << TheCall->getSourceRange(); 3316 3317 return true; 3318 } 3319 3320 /// Returns true if the argument consists of one contiguous run of 1s with any 3321 /// number of 0s on either side. The 1s are allowed to wrap from LSB to MSB, so 3322 /// 0x000FFF0, 0x0000FFFF, 0xFF0000FF, 0x0 are all runs. 0x0F0F0000 is not, 3323 /// since all 1s are not contiguous. 3324 bool Sema::SemaValueIsRunOfOnes(CallExpr *TheCall, unsigned ArgNum) { 3325 llvm::APSInt Result; 3326 // We can't check the value of a dependent argument. 3327 Expr *Arg = TheCall->getArg(ArgNum); 3328 if (Arg->isTypeDependent() || Arg->isValueDependent()) 3329 return false; 3330 3331 // Check constant-ness first. 3332 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 3333 return true; 3334 3335 // Check contiguous run of 1s, 0xFF0000FF is also a run of 1s. 3336 if (Result.isShiftedMask() || (~Result).isShiftedMask()) 3337 return false; 3338 3339 return Diag(TheCall->getBeginLoc(), 3340 diag::err_argument_not_contiguous_bit_field) 3341 << ArgNum << Arg->getSourceRange(); 3342 } 3343 3344 bool Sema::CheckPPCBuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID, 3345 CallExpr *TheCall) { 3346 unsigned i = 0, l = 0, u = 0; 3347 bool IsTarget64Bit = TI.getTypeWidth(TI.getIntPtrType()) == 64; 3348 llvm::APSInt Result; 3349 3350 if (isPPC_64Builtin(BuiltinID) && !IsTarget64Bit) 3351 return Diag(TheCall->getBeginLoc(), diag::err_64_bit_builtin_32_bit_tgt) 3352 << TheCall->getSourceRange(); 3353 3354 switch (BuiltinID) { 3355 default: return false; 3356 case PPC::BI__builtin_altivec_crypto_vshasigmaw: 3357 case PPC::BI__builtin_altivec_crypto_vshasigmad: 3358 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1) || 3359 SemaBuiltinConstantArgRange(TheCall, 2, 0, 15); 3360 case PPC::BI__builtin_altivec_dss: 3361 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 3); 3362 case PPC::BI__builtin_tbegin: 3363 case PPC::BI__builtin_tend: i = 0; l = 0; u = 1; break; 3364 case PPC::BI__builtin_tsr: i = 0; l = 0; u = 7; break; 3365 case PPC::BI__builtin_tabortwc: 3366 case PPC::BI__builtin_tabortdc: i = 0; l = 0; u = 31; break; 3367 case PPC::BI__builtin_tabortwci: 3368 case PPC::BI__builtin_tabortdci: 3369 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31) || 3370 SemaBuiltinConstantArgRange(TheCall, 2, 0, 31); 3371 case PPC::BI__builtin_altivec_dst: 3372 case PPC::BI__builtin_altivec_dstt: 3373 case PPC::BI__builtin_altivec_dstst: 3374 case PPC::BI__builtin_altivec_dststt: 3375 return SemaBuiltinConstantArgRange(TheCall, 2, 0, 3); 3376 case PPC::BI__builtin_vsx_xxpermdi: 3377 case PPC::BI__builtin_vsx_xxsldwi: 3378 return SemaBuiltinVSX(TheCall); 3379 case PPC::BI__builtin_divwe: 3380 case PPC::BI__builtin_divweu: 3381 case PPC::BI__builtin_divde: 3382 case PPC::BI__builtin_divdeu: 3383 return SemaFeatureCheck(*this, TheCall, "extdiv", 3384 diag::err_ppc_builtin_only_on_arch, "7"); 3385 case PPC::BI__builtin_bpermd: 3386 return SemaFeatureCheck(*this, TheCall, "bpermd", 3387 diag::err_ppc_builtin_only_on_arch, "7"); 3388 case PPC::BI__builtin_unpack_vector_int128: 3389 return SemaFeatureCheck(*this, TheCall, "vsx", 3390 diag::err_ppc_builtin_only_on_arch, "7") || 3391 SemaBuiltinConstantArgRange(TheCall, 1, 0, 1); 3392 case PPC::BI__builtin_pack_vector_int128: 3393 return SemaFeatureCheck(*this, TheCall, "vsx", 3394 diag::err_ppc_builtin_only_on_arch, "7"); 3395 case PPC::BI__builtin_altivec_vgnb: 3396 return SemaBuiltinConstantArgRange(TheCall, 1, 2, 7); 3397 case PPC::BI__builtin_altivec_vec_replace_elt: 3398 case PPC::BI__builtin_altivec_vec_replace_unaligned: { 3399 QualType VecTy = TheCall->getArg(0)->getType(); 3400 QualType EltTy = TheCall->getArg(1)->getType(); 3401 unsigned Width = Context.getIntWidth(EltTy); 3402 return SemaBuiltinConstantArgRange(TheCall, 2, 0, Width == 32 ? 12 : 8) || 3403 !isEltOfVectorTy(Context, TheCall, *this, VecTy, EltTy); 3404 } 3405 case PPC::BI__builtin_vsx_xxeval: 3406 return SemaBuiltinConstantArgRange(TheCall, 3, 0, 255); 3407 case PPC::BI__builtin_altivec_vsldbi: 3408 return SemaBuiltinConstantArgRange(TheCall, 2, 0, 7); 3409 case PPC::BI__builtin_altivec_vsrdbi: 3410 return SemaBuiltinConstantArgRange(TheCall, 2, 0, 7); 3411 case PPC::BI__builtin_vsx_xxpermx: 3412 return SemaBuiltinConstantArgRange(TheCall, 3, 0, 7); 3413 case PPC::BI__builtin_ppc_tw: 3414 case PPC::BI__builtin_ppc_tdw: 3415 return SemaBuiltinConstantArgRange(TheCall, 2, 1, 31); 3416 case PPC::BI__builtin_ppc_cmpeqb: 3417 case PPC::BI__builtin_ppc_setb: 3418 case PPC::BI__builtin_ppc_maddhd: 3419 case PPC::BI__builtin_ppc_maddhdu: 3420 case PPC::BI__builtin_ppc_maddld: 3421 return SemaFeatureCheck(*this, TheCall, "isa-v30-instructions", 3422 diag::err_ppc_builtin_only_on_arch, "9"); 3423 case PPC::BI__builtin_ppc_cmprb: 3424 return SemaFeatureCheck(*this, TheCall, "isa-v30-instructions", 3425 diag::err_ppc_builtin_only_on_arch, "9") || 3426 SemaBuiltinConstantArgRange(TheCall, 0, 0, 1); 3427 // For __rlwnm, __rlwimi and __rldimi, the last parameter mask must 3428 // be a constant that represents a contiguous bit field. 3429 case PPC::BI__builtin_ppc_rlwnm: 3430 return SemaBuiltinConstantArg(TheCall, 1, Result) || 3431 SemaValueIsRunOfOnes(TheCall, 2); 3432 case PPC::BI__builtin_ppc_rlwimi: 3433 case PPC::BI__builtin_ppc_rldimi: 3434 return SemaBuiltinConstantArg(TheCall, 2, Result) || 3435 SemaValueIsRunOfOnes(TheCall, 3); 3436 case PPC::BI__builtin_ppc_extract_exp: 3437 case PPC::BI__builtin_ppc_extract_sig: 3438 case PPC::BI__builtin_ppc_insert_exp: 3439 return SemaFeatureCheck(*this, TheCall, "power9-vector", 3440 diag::err_ppc_builtin_only_on_arch, "9"); 3441 case PPC::BI__builtin_ppc_addex: { 3442 if (SemaFeatureCheck(*this, TheCall, "isa-v30-instructions", 3443 diag::err_ppc_builtin_only_on_arch, "9") || 3444 SemaBuiltinConstantArgRange(TheCall, 2, 0, 3)) 3445 return true; 3446 // Output warning for reserved values 1 to 3. 3447 int ArgValue = 3448 TheCall->getArg(2)->getIntegerConstantExpr(Context)->getSExtValue(); 3449 if (ArgValue != 0) 3450 Diag(TheCall->getBeginLoc(), diag::warn_argument_undefined_behaviour) 3451 << ArgValue; 3452 return false; 3453 } 3454 case PPC::BI__builtin_ppc_mtfsb0: 3455 case PPC::BI__builtin_ppc_mtfsb1: 3456 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 31); 3457 case PPC::BI__builtin_ppc_mtfsf: 3458 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 255); 3459 case PPC::BI__builtin_ppc_mtfsfi: 3460 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 7) || 3461 SemaBuiltinConstantArgRange(TheCall, 1, 0, 15); 3462 case PPC::BI__builtin_ppc_alignx: 3463 return SemaBuiltinConstantArgPower2(TheCall, 0); 3464 case PPC::BI__builtin_ppc_rdlam: 3465 return SemaValueIsRunOfOnes(TheCall, 2); 3466 case PPC::BI__builtin_ppc_icbt: 3467 case PPC::BI__builtin_ppc_sthcx: 3468 case PPC::BI__builtin_ppc_stbcx: 3469 case PPC::BI__builtin_ppc_lharx: 3470 case PPC::BI__builtin_ppc_lbarx: 3471 return SemaFeatureCheck(*this, TheCall, "isa-v207-instructions", 3472 diag::err_ppc_builtin_only_on_arch, "8"); 3473 case PPC::BI__builtin_vsx_ldrmb: 3474 case PPC::BI__builtin_vsx_strmb: 3475 return SemaFeatureCheck(*this, TheCall, "isa-v207-instructions", 3476 diag::err_ppc_builtin_only_on_arch, "8") || 3477 SemaBuiltinConstantArgRange(TheCall, 1, 1, 16); 3478 case PPC::BI__builtin_altivec_vcntmbb: 3479 case PPC::BI__builtin_altivec_vcntmbh: 3480 case PPC::BI__builtin_altivec_vcntmbw: 3481 case PPC::BI__builtin_altivec_vcntmbd: 3482 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1); 3483 case PPC::BI__builtin_darn: 3484 case PPC::BI__builtin_darn_raw: 3485 case PPC::BI__builtin_darn_32: 3486 return SemaFeatureCheck(*this, TheCall, "isa-v30-instructions", 3487 diag::err_ppc_builtin_only_on_arch, "9"); 3488 case PPC::BI__builtin_vsx_xxgenpcvbm: 3489 case PPC::BI__builtin_vsx_xxgenpcvhm: 3490 case PPC::BI__builtin_vsx_xxgenpcvwm: 3491 case PPC::BI__builtin_vsx_xxgenpcvdm: 3492 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 3); 3493 #define CUSTOM_BUILTIN(Name, Intr, Types, Acc) \ 3494 case PPC::BI__builtin_##Name: \ 3495 return SemaBuiltinPPCMMACall(TheCall, Types); 3496 #include "clang/Basic/BuiltinsPPC.def" 3497 } 3498 return SemaBuiltinConstantArgRange(TheCall, i, l, u); 3499 } 3500 3501 // Check if the given type is a non-pointer PPC MMA type. This function is used 3502 // in Sema to prevent invalid uses of restricted PPC MMA types. 3503 bool Sema::CheckPPCMMAType(QualType Type, SourceLocation TypeLoc) { 3504 if (Type->isPointerType() || Type->isArrayType()) 3505 return false; 3506 3507 QualType CoreType = Type.getCanonicalType().getUnqualifiedType(); 3508 #define PPC_VECTOR_TYPE(Name, Id, Size) || CoreType == Context.Id##Ty 3509 if (false 3510 #include "clang/Basic/PPCTypes.def" 3511 ) { 3512 Diag(TypeLoc, diag::err_ppc_invalid_use_mma_type); 3513 return true; 3514 } 3515 return false; 3516 } 3517 3518 bool Sema::CheckAMDGCNBuiltinFunctionCall(unsigned BuiltinID, 3519 CallExpr *TheCall) { 3520 // position of memory order and scope arguments in the builtin 3521 unsigned OrderIndex, ScopeIndex; 3522 switch (BuiltinID) { 3523 case AMDGPU::BI__builtin_amdgcn_atomic_inc32: 3524 case AMDGPU::BI__builtin_amdgcn_atomic_inc64: 3525 case AMDGPU::BI__builtin_amdgcn_atomic_dec32: 3526 case AMDGPU::BI__builtin_amdgcn_atomic_dec64: 3527 OrderIndex = 2; 3528 ScopeIndex = 3; 3529 break; 3530 case AMDGPU::BI__builtin_amdgcn_fence: 3531 OrderIndex = 0; 3532 ScopeIndex = 1; 3533 break; 3534 default: 3535 return false; 3536 } 3537 3538 ExprResult Arg = TheCall->getArg(OrderIndex); 3539 auto ArgExpr = Arg.get(); 3540 Expr::EvalResult ArgResult; 3541 3542 if (!ArgExpr->EvaluateAsInt(ArgResult, Context)) 3543 return Diag(ArgExpr->getExprLoc(), diag::err_typecheck_expect_int) 3544 << ArgExpr->getType(); 3545 auto Ord = ArgResult.Val.getInt().getZExtValue(); 3546 3547 // Check validity of memory ordering as per C11 / C++11's memody model. 3548 // Only fence needs check. Atomic dec/inc allow all memory orders. 3549 if (!llvm::isValidAtomicOrderingCABI(Ord)) 3550 return Diag(ArgExpr->getBeginLoc(), 3551 diag::warn_atomic_op_has_invalid_memory_order) 3552 << ArgExpr->getSourceRange(); 3553 switch (static_cast<llvm::AtomicOrderingCABI>(Ord)) { 3554 case llvm::AtomicOrderingCABI::relaxed: 3555 case llvm::AtomicOrderingCABI::consume: 3556 if (BuiltinID == AMDGPU::BI__builtin_amdgcn_fence) 3557 return Diag(ArgExpr->getBeginLoc(), 3558 diag::warn_atomic_op_has_invalid_memory_order) 3559 << ArgExpr->getSourceRange(); 3560 break; 3561 case llvm::AtomicOrderingCABI::acquire: 3562 case llvm::AtomicOrderingCABI::release: 3563 case llvm::AtomicOrderingCABI::acq_rel: 3564 case llvm::AtomicOrderingCABI::seq_cst: 3565 break; 3566 } 3567 3568 Arg = TheCall->getArg(ScopeIndex); 3569 ArgExpr = Arg.get(); 3570 Expr::EvalResult ArgResult1; 3571 // Check that sync scope is a constant literal 3572 if (!ArgExpr->EvaluateAsConstantExpr(ArgResult1, Context)) 3573 return Diag(ArgExpr->getExprLoc(), diag::err_expr_not_string_literal) 3574 << ArgExpr->getType(); 3575 3576 return false; 3577 } 3578 3579 bool Sema::CheckRISCVLMUL(CallExpr *TheCall, unsigned ArgNum) { 3580 llvm::APSInt Result; 3581 3582 // We can't check the value of a dependent argument. 3583 Expr *Arg = TheCall->getArg(ArgNum); 3584 if (Arg->isTypeDependent() || Arg->isValueDependent()) 3585 return false; 3586 3587 // Check constant-ness first. 3588 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 3589 return true; 3590 3591 int64_t Val = Result.getSExtValue(); 3592 if ((Val >= 0 && Val <= 3) || (Val >= 5 && Val <= 7)) 3593 return false; 3594 3595 return Diag(TheCall->getBeginLoc(), diag::err_riscv_builtin_invalid_lmul) 3596 << Arg->getSourceRange(); 3597 } 3598 3599 bool Sema::CheckRISCVBuiltinFunctionCall(const TargetInfo &TI, 3600 unsigned BuiltinID, 3601 CallExpr *TheCall) { 3602 // CodeGenFunction can also detect this, but this gives a better error 3603 // message. 3604 bool FeatureMissing = false; 3605 SmallVector<StringRef> ReqFeatures; 3606 StringRef Features = Context.BuiltinInfo.getRequiredFeatures(BuiltinID); 3607 Features.split(ReqFeatures, ','); 3608 3609 // Check if each required feature is included 3610 for (StringRef F : ReqFeatures) { 3611 if (TI.hasFeature(F)) 3612 continue; 3613 3614 // If the feature is 64bit, alter the string so it will print better in 3615 // the diagnostic. 3616 if (F == "64bit") 3617 F = "RV64"; 3618 3619 // Convert features like "zbr" and "experimental-zbr" to "Zbr". 3620 F.consume_front("experimental-"); 3621 std::string FeatureStr = F.str(); 3622 FeatureStr[0] = std::toupper(FeatureStr[0]); 3623 3624 // Error message 3625 FeatureMissing = true; 3626 Diag(TheCall->getBeginLoc(), diag::err_riscv_builtin_requires_extension) 3627 << TheCall->getSourceRange() << StringRef(FeatureStr); 3628 } 3629 3630 if (FeatureMissing) 3631 return true; 3632 3633 switch (BuiltinID) { 3634 case RISCV::BI__builtin_rvv_vsetvli: 3635 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 3) || 3636 CheckRISCVLMUL(TheCall, 2); 3637 case RISCV::BI__builtin_rvv_vsetvlimax: 3638 return SemaBuiltinConstantArgRange(TheCall, 0, 0, 3) || 3639 CheckRISCVLMUL(TheCall, 1); 3640 case RISCV::BI__builtin_rvv_vget_v_i8m2_i8m1: 3641 case RISCV::BI__builtin_rvv_vget_v_i16m2_i16m1: 3642 case RISCV::BI__builtin_rvv_vget_v_i32m2_i32m1: 3643 case RISCV::BI__builtin_rvv_vget_v_i64m2_i64m1: 3644 case RISCV::BI__builtin_rvv_vget_v_f32m2_f32m1: 3645 case RISCV::BI__builtin_rvv_vget_v_f64m2_f64m1: 3646 case RISCV::BI__builtin_rvv_vget_v_u8m2_u8m1: 3647 case RISCV::BI__builtin_rvv_vget_v_u16m2_u16m1: 3648 case RISCV::BI__builtin_rvv_vget_v_u32m2_u32m1: 3649 case RISCV::BI__builtin_rvv_vget_v_u64m2_u64m1: 3650 case RISCV::BI__builtin_rvv_vget_v_i8m4_i8m2: 3651 case RISCV::BI__builtin_rvv_vget_v_i16m4_i16m2: 3652 case RISCV::BI__builtin_rvv_vget_v_i32m4_i32m2: 3653 case RISCV::BI__builtin_rvv_vget_v_i64m4_i64m2: 3654 case RISCV::BI__builtin_rvv_vget_v_f32m4_f32m2: 3655 case RISCV::BI__builtin_rvv_vget_v_f64m4_f64m2: 3656 case RISCV::BI__builtin_rvv_vget_v_u8m4_u8m2: 3657 case RISCV::BI__builtin_rvv_vget_v_u16m4_u16m2: 3658 case RISCV::BI__builtin_rvv_vget_v_u32m4_u32m2: 3659 case RISCV::BI__builtin_rvv_vget_v_u64m4_u64m2: 3660 case RISCV::BI__builtin_rvv_vget_v_i8m8_i8m4: 3661 case RISCV::BI__builtin_rvv_vget_v_i16m8_i16m4: 3662 case RISCV::BI__builtin_rvv_vget_v_i32m8_i32m4: 3663 case RISCV::BI__builtin_rvv_vget_v_i64m8_i64m4: 3664 case RISCV::BI__builtin_rvv_vget_v_f32m8_f32m4: 3665 case RISCV::BI__builtin_rvv_vget_v_f64m8_f64m4: 3666 case RISCV::BI__builtin_rvv_vget_v_u8m8_u8m4: 3667 case RISCV::BI__builtin_rvv_vget_v_u16m8_u16m4: 3668 case RISCV::BI__builtin_rvv_vget_v_u32m8_u32m4: 3669 case RISCV::BI__builtin_rvv_vget_v_u64m8_u64m4: 3670 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1); 3671 case RISCV::BI__builtin_rvv_vget_v_i8m4_i8m1: 3672 case RISCV::BI__builtin_rvv_vget_v_i16m4_i16m1: 3673 case RISCV::BI__builtin_rvv_vget_v_i32m4_i32m1: 3674 case RISCV::BI__builtin_rvv_vget_v_i64m4_i64m1: 3675 case RISCV::BI__builtin_rvv_vget_v_f32m4_f32m1: 3676 case RISCV::BI__builtin_rvv_vget_v_f64m4_f64m1: 3677 case RISCV::BI__builtin_rvv_vget_v_u8m4_u8m1: 3678 case RISCV::BI__builtin_rvv_vget_v_u16m4_u16m1: 3679 case RISCV::BI__builtin_rvv_vget_v_u32m4_u32m1: 3680 case RISCV::BI__builtin_rvv_vget_v_u64m4_u64m1: 3681 case RISCV::BI__builtin_rvv_vget_v_i8m8_i8m2: 3682 case RISCV::BI__builtin_rvv_vget_v_i16m8_i16m2: 3683 case RISCV::BI__builtin_rvv_vget_v_i32m8_i32m2: 3684 case RISCV::BI__builtin_rvv_vget_v_i64m8_i64m2: 3685 case RISCV::BI__builtin_rvv_vget_v_f32m8_f32m2: 3686 case RISCV::BI__builtin_rvv_vget_v_f64m8_f64m2: 3687 case RISCV::BI__builtin_rvv_vget_v_u8m8_u8m2: 3688 case RISCV::BI__builtin_rvv_vget_v_u16m8_u16m2: 3689 case RISCV::BI__builtin_rvv_vget_v_u32m8_u32m2: 3690 case RISCV::BI__builtin_rvv_vget_v_u64m8_u64m2: 3691 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 3); 3692 case RISCV::BI__builtin_rvv_vget_v_i8m8_i8m1: 3693 case RISCV::BI__builtin_rvv_vget_v_i16m8_i16m1: 3694 case RISCV::BI__builtin_rvv_vget_v_i32m8_i32m1: 3695 case RISCV::BI__builtin_rvv_vget_v_i64m8_i64m1: 3696 case RISCV::BI__builtin_rvv_vget_v_f32m8_f32m1: 3697 case RISCV::BI__builtin_rvv_vget_v_f64m8_f64m1: 3698 case RISCV::BI__builtin_rvv_vget_v_u8m8_u8m1: 3699 case RISCV::BI__builtin_rvv_vget_v_u16m8_u16m1: 3700 case RISCV::BI__builtin_rvv_vget_v_u32m8_u32m1: 3701 case RISCV::BI__builtin_rvv_vget_v_u64m8_u64m1: 3702 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 7); 3703 case RISCV::BI__builtin_rvv_vset_v_i8m1_i8m2: 3704 case RISCV::BI__builtin_rvv_vset_v_i16m1_i16m2: 3705 case RISCV::BI__builtin_rvv_vset_v_i32m1_i32m2: 3706 case RISCV::BI__builtin_rvv_vset_v_i64m1_i64m2: 3707 case RISCV::BI__builtin_rvv_vset_v_f32m1_f32m2: 3708 case RISCV::BI__builtin_rvv_vset_v_f64m1_f64m2: 3709 case RISCV::BI__builtin_rvv_vset_v_u8m1_u8m2: 3710 case RISCV::BI__builtin_rvv_vset_v_u16m1_u16m2: 3711 case RISCV::BI__builtin_rvv_vset_v_u32m1_u32m2: 3712 case RISCV::BI__builtin_rvv_vset_v_u64m1_u64m2: 3713 case RISCV::BI__builtin_rvv_vset_v_i8m2_i8m4: 3714 case RISCV::BI__builtin_rvv_vset_v_i16m2_i16m4: 3715 case RISCV::BI__builtin_rvv_vset_v_i32m2_i32m4: 3716 case RISCV::BI__builtin_rvv_vset_v_i64m2_i64m4: 3717 case RISCV::BI__builtin_rvv_vset_v_f32m2_f32m4: 3718 case RISCV::BI__builtin_rvv_vset_v_f64m2_f64m4: 3719 case RISCV::BI__builtin_rvv_vset_v_u8m2_u8m4: 3720 case RISCV::BI__builtin_rvv_vset_v_u16m2_u16m4: 3721 case RISCV::BI__builtin_rvv_vset_v_u32m2_u32m4: 3722 case RISCV::BI__builtin_rvv_vset_v_u64m2_u64m4: 3723 case RISCV::BI__builtin_rvv_vset_v_i8m4_i8m8: 3724 case RISCV::BI__builtin_rvv_vset_v_i16m4_i16m8: 3725 case RISCV::BI__builtin_rvv_vset_v_i32m4_i32m8: 3726 case RISCV::BI__builtin_rvv_vset_v_i64m4_i64m8: 3727 case RISCV::BI__builtin_rvv_vset_v_f32m4_f32m8: 3728 case RISCV::BI__builtin_rvv_vset_v_f64m4_f64m8: 3729 case RISCV::BI__builtin_rvv_vset_v_u8m4_u8m8: 3730 case RISCV::BI__builtin_rvv_vset_v_u16m4_u16m8: 3731 case RISCV::BI__builtin_rvv_vset_v_u32m4_u32m8: 3732 case RISCV::BI__builtin_rvv_vset_v_u64m4_u64m8: 3733 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 1); 3734 case RISCV::BI__builtin_rvv_vset_v_i8m1_i8m4: 3735 case RISCV::BI__builtin_rvv_vset_v_i16m1_i16m4: 3736 case RISCV::BI__builtin_rvv_vset_v_i32m1_i32m4: 3737 case RISCV::BI__builtin_rvv_vset_v_i64m1_i64m4: 3738 case RISCV::BI__builtin_rvv_vset_v_f32m1_f32m4: 3739 case RISCV::BI__builtin_rvv_vset_v_f64m1_f64m4: 3740 case RISCV::BI__builtin_rvv_vset_v_u8m1_u8m4: 3741 case RISCV::BI__builtin_rvv_vset_v_u16m1_u16m4: 3742 case RISCV::BI__builtin_rvv_vset_v_u32m1_u32m4: 3743 case RISCV::BI__builtin_rvv_vset_v_u64m1_u64m4: 3744 case RISCV::BI__builtin_rvv_vset_v_i8m2_i8m8: 3745 case RISCV::BI__builtin_rvv_vset_v_i16m2_i16m8: 3746 case RISCV::BI__builtin_rvv_vset_v_i32m2_i32m8: 3747 case RISCV::BI__builtin_rvv_vset_v_i64m2_i64m8: 3748 case RISCV::BI__builtin_rvv_vset_v_f32m2_f32m8: 3749 case RISCV::BI__builtin_rvv_vset_v_f64m2_f64m8: 3750 case RISCV::BI__builtin_rvv_vset_v_u8m2_u8m8: 3751 case RISCV::BI__builtin_rvv_vset_v_u16m2_u16m8: 3752 case RISCV::BI__builtin_rvv_vset_v_u32m2_u32m8: 3753 case RISCV::BI__builtin_rvv_vset_v_u64m2_u64m8: 3754 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 3); 3755 case RISCV::BI__builtin_rvv_vset_v_i8m1_i8m8: 3756 case RISCV::BI__builtin_rvv_vset_v_i16m1_i16m8: 3757 case RISCV::BI__builtin_rvv_vset_v_i32m1_i32m8: 3758 case RISCV::BI__builtin_rvv_vset_v_i64m1_i64m8: 3759 case RISCV::BI__builtin_rvv_vset_v_f32m1_f32m8: 3760 case RISCV::BI__builtin_rvv_vset_v_f64m1_f64m8: 3761 case RISCV::BI__builtin_rvv_vset_v_u8m1_u8m8: 3762 case RISCV::BI__builtin_rvv_vset_v_u16m1_u16m8: 3763 case RISCV::BI__builtin_rvv_vset_v_u32m1_u32m8: 3764 case RISCV::BI__builtin_rvv_vset_v_u64m1_u64m8: 3765 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 7); 3766 } 3767 3768 return false; 3769 } 3770 3771 bool Sema::CheckSystemZBuiltinFunctionCall(unsigned BuiltinID, 3772 CallExpr *TheCall) { 3773 if (BuiltinID == SystemZ::BI__builtin_tabort) { 3774 Expr *Arg = TheCall->getArg(0); 3775 if (Optional<llvm::APSInt> AbortCode = Arg->getIntegerConstantExpr(Context)) 3776 if (AbortCode->getSExtValue() >= 0 && AbortCode->getSExtValue() < 256) 3777 return Diag(Arg->getBeginLoc(), diag::err_systemz_invalid_tabort_code) 3778 << Arg->getSourceRange(); 3779 } 3780 3781 // For intrinsics which take an immediate value as part of the instruction, 3782 // range check them here. 3783 unsigned i = 0, l = 0, u = 0; 3784 switch (BuiltinID) { 3785 default: return false; 3786 case SystemZ::BI__builtin_s390_lcbb: i = 1; l = 0; u = 15; break; 3787 case SystemZ::BI__builtin_s390_verimb: 3788 case SystemZ::BI__builtin_s390_verimh: 3789 case SystemZ::BI__builtin_s390_verimf: 3790 case SystemZ::BI__builtin_s390_verimg: i = 3; l = 0; u = 255; break; 3791 case SystemZ::BI__builtin_s390_vfaeb: 3792 case SystemZ::BI__builtin_s390_vfaeh: 3793 case SystemZ::BI__builtin_s390_vfaef: 3794 case SystemZ::BI__builtin_s390_vfaebs: 3795 case SystemZ::BI__builtin_s390_vfaehs: 3796 case SystemZ::BI__builtin_s390_vfaefs: 3797 case SystemZ::BI__builtin_s390_vfaezb: 3798 case SystemZ::BI__builtin_s390_vfaezh: 3799 case SystemZ::BI__builtin_s390_vfaezf: 3800 case SystemZ::BI__builtin_s390_vfaezbs: 3801 case SystemZ::BI__builtin_s390_vfaezhs: 3802 case SystemZ::BI__builtin_s390_vfaezfs: i = 2; l = 0; u = 15; break; 3803 case SystemZ::BI__builtin_s390_vfisb: 3804 case SystemZ::BI__builtin_s390_vfidb: 3805 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15) || 3806 SemaBuiltinConstantArgRange(TheCall, 2, 0, 15); 3807 case SystemZ::BI__builtin_s390_vftcisb: 3808 case SystemZ::BI__builtin_s390_vftcidb: i = 1; l = 0; u = 4095; break; 3809 case SystemZ::BI__builtin_s390_vlbb: i = 1; l = 0; u = 15; break; 3810 case SystemZ::BI__builtin_s390_vpdi: i = 2; l = 0; u = 15; break; 3811 case SystemZ::BI__builtin_s390_vsldb: i = 2; l = 0; u = 15; break; 3812 case SystemZ::BI__builtin_s390_vstrcb: 3813 case SystemZ::BI__builtin_s390_vstrch: 3814 case SystemZ::BI__builtin_s390_vstrcf: 3815 case SystemZ::BI__builtin_s390_vstrczb: 3816 case SystemZ::BI__builtin_s390_vstrczh: 3817 case SystemZ::BI__builtin_s390_vstrczf: 3818 case SystemZ::BI__builtin_s390_vstrcbs: 3819 case SystemZ::BI__builtin_s390_vstrchs: 3820 case SystemZ::BI__builtin_s390_vstrcfs: 3821 case SystemZ::BI__builtin_s390_vstrczbs: 3822 case SystemZ::BI__builtin_s390_vstrczhs: 3823 case SystemZ::BI__builtin_s390_vstrczfs: i = 3; l = 0; u = 15; break; 3824 case SystemZ::BI__builtin_s390_vmslg: i = 3; l = 0; u = 15; break; 3825 case SystemZ::BI__builtin_s390_vfminsb: 3826 case SystemZ::BI__builtin_s390_vfmaxsb: 3827 case SystemZ::BI__builtin_s390_vfmindb: 3828 case SystemZ::BI__builtin_s390_vfmaxdb: i = 2; l = 0; u = 15; break; 3829 case SystemZ::BI__builtin_s390_vsld: i = 2; l = 0; u = 7; break; 3830 case SystemZ::BI__builtin_s390_vsrd: i = 2; l = 0; u = 7; break; 3831 case SystemZ::BI__builtin_s390_vclfnhs: 3832 case SystemZ::BI__builtin_s390_vclfnls: 3833 case SystemZ::BI__builtin_s390_vcfn: 3834 case SystemZ::BI__builtin_s390_vcnf: i = 1; l = 0; u = 15; break; 3835 case SystemZ::BI__builtin_s390_vcrnfs: i = 2; l = 0; u = 15; break; 3836 } 3837 return SemaBuiltinConstantArgRange(TheCall, i, l, u); 3838 } 3839 3840 /// SemaBuiltinCpuSupports - Handle __builtin_cpu_supports(char *). 3841 /// This checks that the target supports __builtin_cpu_supports and 3842 /// that the string argument is constant and valid. 3843 static bool SemaBuiltinCpuSupports(Sema &S, const TargetInfo &TI, 3844 CallExpr *TheCall) { 3845 Expr *Arg = TheCall->getArg(0); 3846 3847 // Check if the argument is a string literal. 3848 if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts())) 3849 return S.Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal) 3850 << Arg->getSourceRange(); 3851 3852 // Check the contents of the string. 3853 StringRef Feature = 3854 cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString(); 3855 if (!TI.validateCpuSupports(Feature)) 3856 return S.Diag(TheCall->getBeginLoc(), diag::err_invalid_cpu_supports) 3857 << Arg->getSourceRange(); 3858 return false; 3859 } 3860 3861 /// SemaBuiltinCpuIs - Handle __builtin_cpu_is(char *). 3862 /// This checks that the target supports __builtin_cpu_is and 3863 /// that the string argument is constant and valid. 3864 static bool SemaBuiltinCpuIs(Sema &S, const TargetInfo &TI, CallExpr *TheCall) { 3865 Expr *Arg = TheCall->getArg(0); 3866 3867 // Check if the argument is a string literal. 3868 if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts())) 3869 return S.Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal) 3870 << Arg->getSourceRange(); 3871 3872 // Check the contents of the string. 3873 StringRef Feature = 3874 cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString(); 3875 if (!TI.validateCpuIs(Feature)) 3876 return S.Diag(TheCall->getBeginLoc(), diag::err_invalid_cpu_is) 3877 << Arg->getSourceRange(); 3878 return false; 3879 } 3880 3881 // Check if the rounding mode is legal. 3882 bool Sema::CheckX86BuiltinRoundingOrSAE(unsigned BuiltinID, CallExpr *TheCall) { 3883 // Indicates if this instruction has rounding control or just SAE. 3884 bool HasRC = false; 3885 3886 unsigned ArgNum = 0; 3887 switch (BuiltinID) { 3888 default: 3889 return false; 3890 case X86::BI__builtin_ia32_vcvttsd2si32: 3891 case X86::BI__builtin_ia32_vcvttsd2si64: 3892 case X86::BI__builtin_ia32_vcvttsd2usi32: 3893 case X86::BI__builtin_ia32_vcvttsd2usi64: 3894 case X86::BI__builtin_ia32_vcvttss2si32: 3895 case X86::BI__builtin_ia32_vcvttss2si64: 3896 case X86::BI__builtin_ia32_vcvttss2usi32: 3897 case X86::BI__builtin_ia32_vcvttss2usi64: 3898 case X86::BI__builtin_ia32_vcvttsh2si32: 3899 case X86::BI__builtin_ia32_vcvttsh2si64: 3900 case X86::BI__builtin_ia32_vcvttsh2usi32: 3901 case X86::BI__builtin_ia32_vcvttsh2usi64: 3902 ArgNum = 1; 3903 break; 3904 case X86::BI__builtin_ia32_maxpd512: 3905 case X86::BI__builtin_ia32_maxps512: 3906 case X86::BI__builtin_ia32_minpd512: 3907 case X86::BI__builtin_ia32_minps512: 3908 case X86::BI__builtin_ia32_maxph512: 3909 case X86::BI__builtin_ia32_minph512: 3910 ArgNum = 2; 3911 break; 3912 case X86::BI__builtin_ia32_vcvtph2pd512_mask: 3913 case X86::BI__builtin_ia32_vcvtph2psx512_mask: 3914 case X86::BI__builtin_ia32_cvtps2pd512_mask: 3915 case X86::BI__builtin_ia32_cvttpd2dq512_mask: 3916 case X86::BI__builtin_ia32_cvttpd2qq512_mask: 3917 case X86::BI__builtin_ia32_cvttpd2udq512_mask: 3918 case X86::BI__builtin_ia32_cvttpd2uqq512_mask: 3919 case X86::BI__builtin_ia32_cvttps2dq512_mask: 3920 case X86::BI__builtin_ia32_cvttps2qq512_mask: 3921 case X86::BI__builtin_ia32_cvttps2udq512_mask: 3922 case X86::BI__builtin_ia32_cvttps2uqq512_mask: 3923 case X86::BI__builtin_ia32_vcvttph2w512_mask: 3924 case X86::BI__builtin_ia32_vcvttph2uw512_mask: 3925 case X86::BI__builtin_ia32_vcvttph2dq512_mask: 3926 case X86::BI__builtin_ia32_vcvttph2udq512_mask: 3927 case X86::BI__builtin_ia32_vcvttph2qq512_mask: 3928 case X86::BI__builtin_ia32_vcvttph2uqq512_mask: 3929 case X86::BI__builtin_ia32_exp2pd_mask: 3930 case X86::BI__builtin_ia32_exp2ps_mask: 3931 case X86::BI__builtin_ia32_getexppd512_mask: 3932 case X86::BI__builtin_ia32_getexpps512_mask: 3933 case X86::BI__builtin_ia32_getexpph512_mask: 3934 case X86::BI__builtin_ia32_rcp28pd_mask: 3935 case X86::BI__builtin_ia32_rcp28ps_mask: 3936 case X86::BI__builtin_ia32_rsqrt28pd_mask: 3937 case X86::BI__builtin_ia32_rsqrt28ps_mask: 3938 case X86::BI__builtin_ia32_vcomisd: 3939 case X86::BI__builtin_ia32_vcomiss: 3940 case X86::BI__builtin_ia32_vcomish: 3941 case X86::BI__builtin_ia32_vcvtph2ps512_mask: 3942 ArgNum = 3; 3943 break; 3944 case X86::BI__builtin_ia32_cmppd512_mask: 3945 case X86::BI__builtin_ia32_cmpps512_mask: 3946 case X86::BI__builtin_ia32_cmpsd_mask: 3947 case X86::BI__builtin_ia32_cmpss_mask: 3948 case X86::BI__builtin_ia32_cmpsh_mask: 3949 case X86::BI__builtin_ia32_vcvtsh2sd_round_mask: 3950 case X86::BI__builtin_ia32_vcvtsh2ss_round_mask: 3951 case X86::BI__builtin_ia32_cvtss2sd_round_mask: 3952 case X86::BI__builtin_ia32_getexpsd128_round_mask: 3953 case X86::BI__builtin_ia32_getexpss128_round_mask: 3954 case X86::BI__builtin_ia32_getexpsh128_round_mask: 3955 case X86::BI__builtin_ia32_getmantpd512_mask: 3956 case X86::BI__builtin_ia32_getmantps512_mask: 3957 case X86::BI__builtin_ia32_getmantph512_mask: 3958 case X86::BI__builtin_ia32_maxsd_round_mask: 3959 case X86::BI__builtin_ia32_maxss_round_mask: 3960 case X86::BI__builtin_ia32_maxsh_round_mask: 3961 case X86::BI__builtin_ia32_minsd_round_mask: 3962 case X86::BI__builtin_ia32_minss_round_mask: 3963 case X86::BI__builtin_ia32_minsh_round_mask: 3964 case X86::BI__builtin_ia32_rcp28sd_round_mask: 3965 case X86::BI__builtin_ia32_rcp28ss_round_mask: 3966 case X86::BI__builtin_ia32_reducepd512_mask: 3967 case X86::BI__builtin_ia32_reduceps512_mask: 3968 case X86::BI__builtin_ia32_reduceph512_mask: 3969 case X86::BI__builtin_ia32_rndscalepd_mask: 3970 case X86::BI__builtin_ia32_rndscaleps_mask: 3971 case X86::BI__builtin_ia32_rndscaleph_mask: 3972 case X86::BI__builtin_ia32_rsqrt28sd_round_mask: 3973 case X86::BI__builtin_ia32_rsqrt28ss_round_mask: 3974 ArgNum = 4; 3975 break; 3976 case X86::BI__builtin_ia32_fixupimmpd512_mask: 3977 case X86::BI__builtin_ia32_fixupimmpd512_maskz: 3978 case X86::BI__builtin_ia32_fixupimmps512_mask: 3979 case X86::BI__builtin_ia32_fixupimmps512_maskz: 3980 case X86::BI__builtin_ia32_fixupimmsd_mask: 3981 case X86::BI__builtin_ia32_fixupimmsd_maskz: 3982 case X86::BI__builtin_ia32_fixupimmss_mask: 3983 case X86::BI__builtin_ia32_fixupimmss_maskz: 3984 case X86::BI__builtin_ia32_getmantsd_round_mask: 3985 case X86::BI__builtin_ia32_getmantss_round_mask: 3986 case X86::BI__builtin_ia32_getmantsh_round_mask: 3987 case X86::BI__builtin_ia32_rangepd512_mask: 3988 case X86::BI__builtin_ia32_rangeps512_mask: 3989 case X86::BI__builtin_ia32_rangesd128_round_mask: 3990 case X86::BI__builtin_ia32_rangess128_round_mask: 3991 case X86::BI__builtin_ia32_reducesd_mask: 3992 case X86::BI__builtin_ia32_reducess_mask: 3993 case X86::BI__builtin_ia32_reducesh_mask: 3994 case X86::BI__builtin_ia32_rndscalesd_round_mask: 3995 case X86::BI__builtin_ia32_rndscaless_round_mask: 3996 case X86::BI__builtin_ia32_rndscalesh_round_mask: 3997 ArgNum = 5; 3998 break; 3999 case X86::BI__builtin_ia32_vcvtsd2si64: 4000 case X86::BI__builtin_ia32_vcvtsd2si32: 4001 case X86::BI__builtin_ia32_vcvtsd2usi32: 4002 case X86::BI__builtin_ia32_vcvtsd2usi64: 4003 case X86::BI__builtin_ia32_vcvtss2si32: 4004 case X86::BI__builtin_ia32_vcvtss2si64: 4005 case X86::BI__builtin_ia32_vcvtss2usi32: 4006 case X86::BI__builtin_ia32_vcvtss2usi64: 4007 case X86::BI__builtin_ia32_vcvtsh2si32: 4008 case X86::BI__builtin_ia32_vcvtsh2si64: 4009 case X86::BI__builtin_ia32_vcvtsh2usi32: 4010 case X86::BI__builtin_ia32_vcvtsh2usi64: 4011 case X86::BI__builtin_ia32_sqrtpd512: 4012 case X86::BI__builtin_ia32_sqrtps512: 4013 case X86::BI__builtin_ia32_sqrtph512: 4014 ArgNum = 1; 4015 HasRC = true; 4016 break; 4017 case X86::BI__builtin_ia32_addph512: 4018 case X86::BI__builtin_ia32_divph512: 4019 case X86::BI__builtin_ia32_mulph512: 4020 case X86::BI__builtin_ia32_subph512: 4021 case X86::BI__builtin_ia32_addpd512: 4022 case X86::BI__builtin_ia32_addps512: 4023 case X86::BI__builtin_ia32_divpd512: 4024 case X86::BI__builtin_ia32_divps512: 4025 case X86::BI__builtin_ia32_mulpd512: 4026 case X86::BI__builtin_ia32_mulps512: 4027 case X86::BI__builtin_ia32_subpd512: 4028 case X86::BI__builtin_ia32_subps512: 4029 case X86::BI__builtin_ia32_cvtsi2sd64: 4030 case X86::BI__builtin_ia32_cvtsi2ss32: 4031 case X86::BI__builtin_ia32_cvtsi2ss64: 4032 case X86::BI__builtin_ia32_cvtusi2sd64: 4033 case X86::BI__builtin_ia32_cvtusi2ss32: 4034 case X86::BI__builtin_ia32_cvtusi2ss64: 4035 case X86::BI__builtin_ia32_vcvtusi2sh: 4036 case X86::BI__builtin_ia32_vcvtusi642sh: 4037 case X86::BI__builtin_ia32_vcvtsi2sh: 4038 case X86::BI__builtin_ia32_vcvtsi642sh: 4039 ArgNum = 2; 4040 HasRC = true; 4041 break; 4042 case X86::BI__builtin_ia32_cvtdq2ps512_mask: 4043 case X86::BI__builtin_ia32_cvtudq2ps512_mask: 4044 case X86::BI__builtin_ia32_vcvtpd2ph512_mask: 4045 case X86::BI__builtin_ia32_vcvtps2phx512_mask: 4046 case X86::BI__builtin_ia32_cvtpd2ps512_mask: 4047 case X86::BI__builtin_ia32_cvtpd2dq512_mask: 4048 case X86::BI__builtin_ia32_cvtpd2qq512_mask: 4049 case X86::BI__builtin_ia32_cvtpd2udq512_mask: 4050 case X86::BI__builtin_ia32_cvtpd2uqq512_mask: 4051 case X86::BI__builtin_ia32_cvtps2dq512_mask: 4052 case X86::BI__builtin_ia32_cvtps2qq512_mask: 4053 case X86::BI__builtin_ia32_cvtps2udq512_mask: 4054 case X86::BI__builtin_ia32_cvtps2uqq512_mask: 4055 case X86::BI__builtin_ia32_cvtqq2pd512_mask: 4056 case X86::BI__builtin_ia32_cvtqq2ps512_mask: 4057 case X86::BI__builtin_ia32_cvtuqq2pd512_mask: 4058 case X86::BI__builtin_ia32_cvtuqq2ps512_mask: 4059 case X86::BI__builtin_ia32_vcvtdq2ph512_mask: 4060 case X86::BI__builtin_ia32_vcvtudq2ph512_mask: 4061 case X86::BI__builtin_ia32_vcvtw2ph512_mask: 4062 case X86::BI__builtin_ia32_vcvtuw2ph512_mask: 4063 case X86::BI__builtin_ia32_vcvtph2w512_mask: 4064 case X86::BI__builtin_ia32_vcvtph2uw512_mask: 4065 case X86::BI__builtin_ia32_vcvtph2dq512_mask: 4066 case X86::BI__builtin_ia32_vcvtph2udq512_mask: 4067 case X86::BI__builtin_ia32_vcvtph2qq512_mask: 4068 case X86::BI__builtin_ia32_vcvtph2uqq512_mask: 4069 case X86::BI__builtin_ia32_vcvtqq2ph512_mask: 4070 case X86::BI__builtin_ia32_vcvtuqq2ph512_mask: 4071 ArgNum = 3; 4072 HasRC = true; 4073 break; 4074 case X86::BI__builtin_ia32_addsh_round_mask: 4075 case X86::BI__builtin_ia32_addss_round_mask: 4076 case X86::BI__builtin_ia32_addsd_round_mask: 4077 case X86::BI__builtin_ia32_divsh_round_mask: 4078 case X86::BI__builtin_ia32_divss_round_mask: 4079 case X86::BI__builtin_ia32_divsd_round_mask: 4080 case X86::BI__builtin_ia32_mulsh_round_mask: 4081 case X86::BI__builtin_ia32_mulss_round_mask: 4082 case X86::BI__builtin_ia32_mulsd_round_mask: 4083 case X86::BI__builtin_ia32_subsh_round_mask: 4084 case X86::BI__builtin_ia32_subss_round_mask: 4085 case X86::BI__builtin_ia32_subsd_round_mask: 4086 case X86::BI__builtin_ia32_scalefph512_mask: 4087 case X86::BI__builtin_ia32_scalefpd512_mask: 4088 case X86::BI__builtin_ia32_scalefps512_mask: 4089 case X86::BI__builtin_ia32_scalefsd_round_mask: 4090 case X86::BI__builtin_ia32_scalefss_round_mask: 4091 case X86::BI__builtin_ia32_scalefsh_round_mask: 4092 case X86::BI__builtin_ia32_cvtsd2ss_round_mask: 4093 case X86::BI__builtin_ia32_vcvtss2sh_round_mask: 4094 case X86::BI__builtin_ia32_vcvtsd2sh_round_mask: 4095 case X86::BI__builtin_ia32_sqrtsd_round_mask: 4096 case X86::BI__builtin_ia32_sqrtss_round_mask: 4097 case X86::BI__builtin_ia32_sqrtsh_round_mask: 4098 case X86::BI__builtin_ia32_vfmaddsd3_mask: 4099 case X86::BI__builtin_ia32_vfmaddsd3_maskz: 4100 case X86::BI__builtin_ia32_vfmaddsd3_mask3: 4101 case X86::BI__builtin_ia32_vfmaddss3_mask: 4102 case X86::BI__builtin_ia32_vfmaddss3_maskz: 4103 case X86::BI__builtin_ia32_vfmaddss3_mask3: 4104 case X86::BI__builtin_ia32_vfmaddsh3_mask: 4105 case X86::BI__builtin_ia32_vfmaddsh3_maskz: 4106 case X86::BI__builtin_ia32_vfmaddsh3_mask3: 4107 case X86::BI__builtin_ia32_vfmaddpd512_mask: 4108 case X86::BI__builtin_ia32_vfmaddpd512_maskz: 4109 case X86::BI__builtin_ia32_vfmaddpd512_mask3: 4110 case X86::BI__builtin_ia32_vfmsubpd512_mask3: 4111 case X86::BI__builtin_ia32_vfmaddps512_mask: 4112 case X86::BI__builtin_ia32_vfmaddps512_maskz: 4113 case X86::BI__builtin_ia32_vfmaddps512_mask3: 4114 case X86::BI__builtin_ia32_vfmsubps512_mask3: 4115 case X86::BI__builtin_ia32_vfmaddph512_mask: 4116 case X86::BI__builtin_ia32_vfmaddph512_maskz: 4117 case X86::BI__builtin_ia32_vfmaddph512_mask3: 4118 case X86::BI__builtin_ia32_vfmsubph512_mask3: 4119 case X86::BI__builtin_ia32_vfmaddsubpd512_mask: 4120 case X86::BI__builtin_ia32_vfmaddsubpd512_maskz: 4121 case X86::BI__builtin_ia32_vfmaddsubpd512_mask3: 4122 case X86::BI__builtin_ia32_vfmsubaddpd512_mask3: 4123 case X86::BI__builtin_ia32_vfmaddsubps512_mask: 4124 case X86::BI__builtin_ia32_vfmaddsubps512_maskz: 4125 case X86::BI__builtin_ia32_vfmaddsubps512_mask3: 4126 case X86::BI__builtin_ia32_vfmsubaddps512_mask3: 4127 case X86::BI__builtin_ia32_vfmaddsubph512_mask: 4128 case X86::BI__builtin_ia32_vfmaddsubph512_maskz: 4129 case X86::BI__builtin_ia32_vfmaddsubph512_mask3: 4130 case X86::BI__builtin_ia32_vfmsubaddph512_mask3: 4131 case X86::BI__builtin_ia32_vfmaddcsh_mask: 4132 case X86::BI__builtin_ia32_vfmaddcsh_round_mask: 4133 case X86::BI__builtin_ia32_vfmaddcsh_round_mask3: 4134 case X86::BI__builtin_ia32_vfmaddcph512_mask: 4135 case X86::BI__builtin_ia32_vfmaddcph512_maskz: 4136 case X86::BI__builtin_ia32_vfmaddcph512_mask3: 4137 case X86::BI__builtin_ia32_vfcmaddcsh_mask: 4138 case X86::BI__builtin_ia32_vfcmaddcsh_round_mask: 4139 case X86::BI__builtin_ia32_vfcmaddcsh_round_mask3: 4140 case X86::BI__builtin_ia32_vfcmaddcph512_mask: 4141 case X86::BI__builtin_ia32_vfcmaddcph512_maskz: 4142 case X86::BI__builtin_ia32_vfcmaddcph512_mask3: 4143 case X86::BI__builtin_ia32_vfmulcsh_mask: 4144 case X86::BI__builtin_ia32_vfmulcph512_mask: 4145 case X86::BI__builtin_ia32_vfcmulcsh_mask: 4146 case X86::BI__builtin_ia32_vfcmulcph512_mask: 4147 ArgNum = 4; 4148 HasRC = true; 4149 break; 4150 } 4151 4152 llvm::APSInt Result; 4153 4154 // We can't check the value of a dependent argument. 4155 Expr *Arg = TheCall->getArg(ArgNum); 4156 if (Arg->isTypeDependent() || Arg->isValueDependent()) 4157 return false; 4158 4159 // Check constant-ness first. 4160 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 4161 return true; 4162 4163 // Make sure rounding mode is either ROUND_CUR_DIRECTION or ROUND_NO_EXC bit 4164 // is set. If the intrinsic has rounding control(bits 1:0), make sure its only 4165 // combined with ROUND_NO_EXC. If the intrinsic does not have rounding 4166 // control, allow ROUND_NO_EXC and ROUND_CUR_DIRECTION together. 4167 if (Result == 4/*ROUND_CUR_DIRECTION*/ || 4168 Result == 8/*ROUND_NO_EXC*/ || 4169 (!HasRC && Result == 12/*ROUND_CUR_DIRECTION|ROUND_NO_EXC*/) || 4170 (HasRC && Result.getZExtValue() >= 8 && Result.getZExtValue() <= 11)) 4171 return false; 4172 4173 return Diag(TheCall->getBeginLoc(), diag::err_x86_builtin_invalid_rounding) 4174 << Arg->getSourceRange(); 4175 } 4176 4177 // Check if the gather/scatter scale is legal. 4178 bool Sema::CheckX86BuiltinGatherScatterScale(unsigned BuiltinID, 4179 CallExpr *TheCall) { 4180 unsigned ArgNum = 0; 4181 switch (BuiltinID) { 4182 default: 4183 return false; 4184 case X86::BI__builtin_ia32_gatherpfdpd: 4185 case X86::BI__builtin_ia32_gatherpfdps: 4186 case X86::BI__builtin_ia32_gatherpfqpd: 4187 case X86::BI__builtin_ia32_gatherpfqps: 4188 case X86::BI__builtin_ia32_scatterpfdpd: 4189 case X86::BI__builtin_ia32_scatterpfdps: 4190 case X86::BI__builtin_ia32_scatterpfqpd: 4191 case X86::BI__builtin_ia32_scatterpfqps: 4192 ArgNum = 3; 4193 break; 4194 case X86::BI__builtin_ia32_gatherd_pd: 4195 case X86::BI__builtin_ia32_gatherd_pd256: 4196 case X86::BI__builtin_ia32_gatherq_pd: 4197 case X86::BI__builtin_ia32_gatherq_pd256: 4198 case X86::BI__builtin_ia32_gatherd_ps: 4199 case X86::BI__builtin_ia32_gatherd_ps256: 4200 case X86::BI__builtin_ia32_gatherq_ps: 4201 case X86::BI__builtin_ia32_gatherq_ps256: 4202 case X86::BI__builtin_ia32_gatherd_q: 4203 case X86::BI__builtin_ia32_gatherd_q256: 4204 case X86::BI__builtin_ia32_gatherq_q: 4205 case X86::BI__builtin_ia32_gatherq_q256: 4206 case X86::BI__builtin_ia32_gatherd_d: 4207 case X86::BI__builtin_ia32_gatherd_d256: 4208 case X86::BI__builtin_ia32_gatherq_d: 4209 case X86::BI__builtin_ia32_gatherq_d256: 4210 case X86::BI__builtin_ia32_gather3div2df: 4211 case X86::BI__builtin_ia32_gather3div2di: 4212 case X86::BI__builtin_ia32_gather3div4df: 4213 case X86::BI__builtin_ia32_gather3div4di: 4214 case X86::BI__builtin_ia32_gather3div4sf: 4215 case X86::BI__builtin_ia32_gather3div4si: 4216 case X86::BI__builtin_ia32_gather3div8sf: 4217 case X86::BI__builtin_ia32_gather3div8si: 4218 case X86::BI__builtin_ia32_gather3siv2df: 4219 case X86::BI__builtin_ia32_gather3siv2di: 4220 case X86::BI__builtin_ia32_gather3siv4df: 4221 case X86::BI__builtin_ia32_gather3siv4di: 4222 case X86::BI__builtin_ia32_gather3siv4sf: 4223 case X86::BI__builtin_ia32_gather3siv4si: 4224 case X86::BI__builtin_ia32_gather3siv8sf: 4225 case X86::BI__builtin_ia32_gather3siv8si: 4226 case X86::BI__builtin_ia32_gathersiv8df: 4227 case X86::BI__builtin_ia32_gathersiv16sf: 4228 case X86::BI__builtin_ia32_gatherdiv8df: 4229 case X86::BI__builtin_ia32_gatherdiv16sf: 4230 case X86::BI__builtin_ia32_gathersiv8di: 4231 case X86::BI__builtin_ia32_gathersiv16si: 4232 case X86::BI__builtin_ia32_gatherdiv8di: 4233 case X86::BI__builtin_ia32_gatherdiv16si: 4234 case X86::BI__builtin_ia32_scatterdiv2df: 4235 case X86::BI__builtin_ia32_scatterdiv2di: 4236 case X86::BI__builtin_ia32_scatterdiv4df: 4237 case X86::BI__builtin_ia32_scatterdiv4di: 4238 case X86::BI__builtin_ia32_scatterdiv4sf: 4239 case X86::BI__builtin_ia32_scatterdiv4si: 4240 case X86::BI__builtin_ia32_scatterdiv8sf: 4241 case X86::BI__builtin_ia32_scatterdiv8si: 4242 case X86::BI__builtin_ia32_scattersiv2df: 4243 case X86::BI__builtin_ia32_scattersiv2di: 4244 case X86::BI__builtin_ia32_scattersiv4df: 4245 case X86::BI__builtin_ia32_scattersiv4di: 4246 case X86::BI__builtin_ia32_scattersiv4sf: 4247 case X86::BI__builtin_ia32_scattersiv4si: 4248 case X86::BI__builtin_ia32_scattersiv8sf: 4249 case X86::BI__builtin_ia32_scattersiv8si: 4250 case X86::BI__builtin_ia32_scattersiv8df: 4251 case X86::BI__builtin_ia32_scattersiv16sf: 4252 case X86::BI__builtin_ia32_scatterdiv8df: 4253 case X86::BI__builtin_ia32_scatterdiv16sf: 4254 case X86::BI__builtin_ia32_scattersiv8di: 4255 case X86::BI__builtin_ia32_scattersiv16si: 4256 case X86::BI__builtin_ia32_scatterdiv8di: 4257 case X86::BI__builtin_ia32_scatterdiv16si: 4258 ArgNum = 4; 4259 break; 4260 } 4261 4262 llvm::APSInt Result; 4263 4264 // We can't check the value of a dependent argument. 4265 Expr *Arg = TheCall->getArg(ArgNum); 4266 if (Arg->isTypeDependent() || Arg->isValueDependent()) 4267 return false; 4268 4269 // Check constant-ness first. 4270 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 4271 return true; 4272 4273 if (Result == 1 || Result == 2 || Result == 4 || Result == 8) 4274 return false; 4275 4276 return Diag(TheCall->getBeginLoc(), diag::err_x86_builtin_invalid_scale) 4277 << Arg->getSourceRange(); 4278 } 4279 4280 enum { TileRegLow = 0, TileRegHigh = 7 }; 4281 4282 bool Sema::CheckX86BuiltinTileArgumentsRange(CallExpr *TheCall, 4283 ArrayRef<int> ArgNums) { 4284 for (int ArgNum : ArgNums) { 4285 if (SemaBuiltinConstantArgRange(TheCall, ArgNum, TileRegLow, TileRegHigh)) 4286 return true; 4287 } 4288 return false; 4289 } 4290 4291 bool Sema::CheckX86BuiltinTileDuplicate(CallExpr *TheCall, 4292 ArrayRef<int> ArgNums) { 4293 // Because the max number of tile register is TileRegHigh + 1, so here we use 4294 // each bit to represent the usage of them in bitset. 4295 std::bitset<TileRegHigh + 1> ArgValues; 4296 for (int ArgNum : ArgNums) { 4297 Expr *Arg = TheCall->getArg(ArgNum); 4298 if (Arg->isTypeDependent() || Arg->isValueDependent()) 4299 continue; 4300 4301 llvm::APSInt Result; 4302 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 4303 return true; 4304 int ArgExtValue = Result.getExtValue(); 4305 assert((ArgExtValue >= TileRegLow || ArgExtValue <= TileRegHigh) && 4306 "Incorrect tile register num."); 4307 if (ArgValues.test(ArgExtValue)) 4308 return Diag(TheCall->getBeginLoc(), 4309 diag::err_x86_builtin_tile_arg_duplicate) 4310 << TheCall->getArg(ArgNum)->getSourceRange(); 4311 ArgValues.set(ArgExtValue); 4312 } 4313 return false; 4314 } 4315 4316 bool Sema::CheckX86BuiltinTileRangeAndDuplicate(CallExpr *TheCall, 4317 ArrayRef<int> ArgNums) { 4318 return CheckX86BuiltinTileArgumentsRange(TheCall, ArgNums) || 4319 CheckX86BuiltinTileDuplicate(TheCall, ArgNums); 4320 } 4321 4322 bool Sema::CheckX86BuiltinTileArguments(unsigned BuiltinID, CallExpr *TheCall) { 4323 switch (BuiltinID) { 4324 default: 4325 return false; 4326 case X86::BI__builtin_ia32_tileloadd64: 4327 case X86::BI__builtin_ia32_tileloaddt164: 4328 case X86::BI__builtin_ia32_tilestored64: 4329 case X86::BI__builtin_ia32_tilezero: 4330 return CheckX86BuiltinTileArgumentsRange(TheCall, 0); 4331 case X86::BI__builtin_ia32_tdpbssd: 4332 case X86::BI__builtin_ia32_tdpbsud: 4333 case X86::BI__builtin_ia32_tdpbusd: 4334 case X86::BI__builtin_ia32_tdpbuud: 4335 case X86::BI__builtin_ia32_tdpbf16ps: 4336 return CheckX86BuiltinTileRangeAndDuplicate(TheCall, {0, 1, 2}); 4337 } 4338 } 4339 static bool isX86_32Builtin(unsigned BuiltinID) { 4340 // These builtins only work on x86-32 targets. 4341 switch (BuiltinID) { 4342 case X86::BI__builtin_ia32_readeflags_u32: 4343 case X86::BI__builtin_ia32_writeeflags_u32: 4344 return true; 4345 } 4346 4347 return false; 4348 } 4349 4350 bool Sema::CheckX86BuiltinFunctionCall(const TargetInfo &TI, unsigned BuiltinID, 4351 CallExpr *TheCall) { 4352 if (BuiltinID == X86::BI__builtin_cpu_supports) 4353 return SemaBuiltinCpuSupports(*this, TI, TheCall); 4354 4355 if (BuiltinID == X86::BI__builtin_cpu_is) 4356 return SemaBuiltinCpuIs(*this, TI, TheCall); 4357 4358 // Check for 32-bit only builtins on a 64-bit target. 4359 const llvm::Triple &TT = TI.getTriple(); 4360 if (TT.getArch() != llvm::Triple::x86 && isX86_32Builtin(BuiltinID)) 4361 return Diag(TheCall->getCallee()->getBeginLoc(), 4362 diag::err_32_bit_builtin_64_bit_tgt); 4363 4364 // If the intrinsic has rounding or SAE make sure its valid. 4365 if (CheckX86BuiltinRoundingOrSAE(BuiltinID, TheCall)) 4366 return true; 4367 4368 // If the intrinsic has a gather/scatter scale immediate make sure its valid. 4369 if (CheckX86BuiltinGatherScatterScale(BuiltinID, TheCall)) 4370 return true; 4371 4372 // If the intrinsic has a tile arguments, make sure they are valid. 4373 if (CheckX86BuiltinTileArguments(BuiltinID, TheCall)) 4374 return true; 4375 4376 // For intrinsics which take an immediate value as part of the instruction, 4377 // range check them here. 4378 int i = 0, l = 0, u = 0; 4379 switch (BuiltinID) { 4380 default: 4381 return false; 4382 case X86::BI__builtin_ia32_vec_ext_v2si: 4383 case X86::BI__builtin_ia32_vec_ext_v2di: 4384 case X86::BI__builtin_ia32_vextractf128_pd256: 4385 case X86::BI__builtin_ia32_vextractf128_ps256: 4386 case X86::BI__builtin_ia32_vextractf128_si256: 4387 case X86::BI__builtin_ia32_extract128i256: 4388 case X86::BI__builtin_ia32_extractf64x4_mask: 4389 case X86::BI__builtin_ia32_extracti64x4_mask: 4390 case X86::BI__builtin_ia32_extractf32x8_mask: 4391 case X86::BI__builtin_ia32_extracti32x8_mask: 4392 case X86::BI__builtin_ia32_extractf64x2_256_mask: 4393 case X86::BI__builtin_ia32_extracti64x2_256_mask: 4394 case X86::BI__builtin_ia32_extractf32x4_256_mask: 4395 case X86::BI__builtin_ia32_extracti32x4_256_mask: 4396 i = 1; l = 0; u = 1; 4397 break; 4398 case X86::BI__builtin_ia32_vec_set_v2di: 4399 case X86::BI__builtin_ia32_vinsertf128_pd256: 4400 case X86::BI__builtin_ia32_vinsertf128_ps256: 4401 case X86::BI__builtin_ia32_vinsertf128_si256: 4402 case X86::BI__builtin_ia32_insert128i256: 4403 case X86::BI__builtin_ia32_insertf32x8: 4404 case X86::BI__builtin_ia32_inserti32x8: 4405 case X86::BI__builtin_ia32_insertf64x4: 4406 case X86::BI__builtin_ia32_inserti64x4: 4407 case X86::BI__builtin_ia32_insertf64x2_256: 4408 case X86::BI__builtin_ia32_inserti64x2_256: 4409 case X86::BI__builtin_ia32_insertf32x4_256: 4410 case X86::BI__builtin_ia32_inserti32x4_256: 4411 i = 2; l = 0; u = 1; 4412 break; 4413 case X86::BI__builtin_ia32_vpermilpd: 4414 case X86::BI__builtin_ia32_vec_ext_v4hi: 4415 case X86::BI__builtin_ia32_vec_ext_v4si: 4416 case X86::BI__builtin_ia32_vec_ext_v4sf: 4417 case X86::BI__builtin_ia32_vec_ext_v4di: 4418 case X86::BI__builtin_ia32_extractf32x4_mask: 4419 case X86::BI__builtin_ia32_extracti32x4_mask: 4420 case X86::BI__builtin_ia32_extractf64x2_512_mask: 4421 case X86::BI__builtin_ia32_extracti64x2_512_mask: 4422 i = 1; l = 0; u = 3; 4423 break; 4424 case X86::BI_mm_prefetch: 4425 case X86::BI__builtin_ia32_vec_ext_v8hi: 4426 case X86::BI__builtin_ia32_vec_ext_v8si: 4427 i = 1; l = 0; u = 7; 4428 break; 4429 case X86::BI__builtin_ia32_sha1rnds4: 4430 case X86::BI__builtin_ia32_blendpd: 4431 case X86::BI__builtin_ia32_shufpd: 4432 case X86::BI__builtin_ia32_vec_set_v4hi: 4433 case X86::BI__builtin_ia32_vec_set_v4si: 4434 case X86::BI__builtin_ia32_vec_set_v4di: 4435 case X86::BI__builtin_ia32_shuf_f32x4_256: 4436 case X86::BI__builtin_ia32_shuf_f64x2_256: 4437 case X86::BI__builtin_ia32_shuf_i32x4_256: 4438 case X86::BI__builtin_ia32_shuf_i64x2_256: 4439 case X86::BI__builtin_ia32_insertf64x2_512: 4440 case X86::BI__builtin_ia32_inserti64x2_512: 4441 case X86::BI__builtin_ia32_insertf32x4: 4442 case X86::BI__builtin_ia32_inserti32x4: 4443 i = 2; l = 0; u = 3; 4444 break; 4445 case X86::BI__builtin_ia32_vpermil2pd: 4446 case X86::BI__builtin_ia32_vpermil2pd256: 4447 case X86::BI__builtin_ia32_vpermil2ps: 4448 case X86::BI__builtin_ia32_vpermil2ps256: 4449 i = 3; l = 0; u = 3; 4450 break; 4451 case X86::BI__builtin_ia32_cmpb128_mask: 4452 case X86::BI__builtin_ia32_cmpw128_mask: 4453 case X86::BI__builtin_ia32_cmpd128_mask: 4454 case X86::BI__builtin_ia32_cmpq128_mask: 4455 case X86::BI__builtin_ia32_cmpb256_mask: 4456 case X86::BI__builtin_ia32_cmpw256_mask: 4457 case X86::BI__builtin_ia32_cmpd256_mask: 4458 case X86::BI__builtin_ia32_cmpq256_mask: 4459 case X86::BI__builtin_ia32_cmpb512_mask: 4460 case X86::BI__builtin_ia32_cmpw512_mask: 4461 case X86::BI__builtin_ia32_cmpd512_mask: 4462 case X86::BI__builtin_ia32_cmpq512_mask: 4463 case X86::BI__builtin_ia32_ucmpb128_mask: 4464 case X86::BI__builtin_ia32_ucmpw128_mask: 4465 case X86::BI__builtin_ia32_ucmpd128_mask: 4466 case X86::BI__builtin_ia32_ucmpq128_mask: 4467 case X86::BI__builtin_ia32_ucmpb256_mask: 4468 case X86::BI__builtin_ia32_ucmpw256_mask: 4469 case X86::BI__builtin_ia32_ucmpd256_mask: 4470 case X86::BI__builtin_ia32_ucmpq256_mask: 4471 case X86::BI__builtin_ia32_ucmpb512_mask: 4472 case X86::BI__builtin_ia32_ucmpw512_mask: 4473 case X86::BI__builtin_ia32_ucmpd512_mask: 4474 case X86::BI__builtin_ia32_ucmpq512_mask: 4475 case X86::BI__builtin_ia32_vpcomub: 4476 case X86::BI__builtin_ia32_vpcomuw: 4477 case X86::BI__builtin_ia32_vpcomud: 4478 case X86::BI__builtin_ia32_vpcomuq: 4479 case X86::BI__builtin_ia32_vpcomb: 4480 case X86::BI__builtin_ia32_vpcomw: 4481 case X86::BI__builtin_ia32_vpcomd: 4482 case X86::BI__builtin_ia32_vpcomq: 4483 case X86::BI__builtin_ia32_vec_set_v8hi: 4484 case X86::BI__builtin_ia32_vec_set_v8si: 4485 i = 2; l = 0; u = 7; 4486 break; 4487 case X86::BI__builtin_ia32_vpermilpd256: 4488 case X86::BI__builtin_ia32_roundps: 4489 case X86::BI__builtin_ia32_roundpd: 4490 case X86::BI__builtin_ia32_roundps256: 4491 case X86::BI__builtin_ia32_roundpd256: 4492 case X86::BI__builtin_ia32_getmantpd128_mask: 4493 case X86::BI__builtin_ia32_getmantpd256_mask: 4494 case X86::BI__builtin_ia32_getmantps128_mask: 4495 case X86::BI__builtin_ia32_getmantps256_mask: 4496 case X86::BI__builtin_ia32_getmantpd512_mask: 4497 case X86::BI__builtin_ia32_getmantps512_mask: 4498 case X86::BI__builtin_ia32_getmantph128_mask: 4499 case X86::BI__builtin_ia32_getmantph256_mask: 4500 case X86::BI__builtin_ia32_getmantph512_mask: 4501 case X86::BI__builtin_ia32_vec_ext_v16qi: 4502 case X86::BI__builtin_ia32_vec_ext_v16hi: 4503 i = 1; l = 0; u = 15; 4504 break; 4505 case X86::BI__builtin_ia32_pblendd128: 4506 case X86::BI__builtin_ia32_blendps: 4507 case X86::BI__builtin_ia32_blendpd256: 4508 case X86::BI__builtin_ia32_shufpd256: 4509 case X86::BI__builtin_ia32_roundss: 4510 case X86::BI__builtin_ia32_roundsd: 4511 case X86::BI__builtin_ia32_rangepd128_mask: 4512 case X86::BI__builtin_ia32_rangepd256_mask: 4513 case X86::BI__builtin_ia32_rangepd512_mask: 4514 case X86::BI__builtin_ia32_rangeps128_mask: 4515 case X86::BI__builtin_ia32_rangeps256_mask: 4516 case X86::BI__builtin_ia32_rangeps512_mask: 4517 case X86::BI__builtin_ia32_getmantsd_round_mask: 4518 case X86::BI__builtin_ia32_getmantss_round_mask: 4519 case X86::BI__builtin_ia32_getmantsh_round_mask: 4520 case X86::BI__builtin_ia32_vec_set_v16qi: 4521 case X86::BI__builtin_ia32_vec_set_v16hi: 4522 i = 2; l = 0; u = 15; 4523 break; 4524 case X86::BI__builtin_ia32_vec_ext_v32qi: 4525 i = 1; l = 0; u = 31; 4526 break; 4527 case X86::BI__builtin_ia32_cmpps: 4528 case X86::BI__builtin_ia32_cmpss: 4529 case X86::BI__builtin_ia32_cmppd: 4530 case X86::BI__builtin_ia32_cmpsd: 4531 case X86::BI__builtin_ia32_cmpps256: 4532 case X86::BI__builtin_ia32_cmppd256: 4533 case X86::BI__builtin_ia32_cmpps128_mask: 4534 case X86::BI__builtin_ia32_cmppd128_mask: 4535 case X86::BI__builtin_ia32_cmpps256_mask: 4536 case X86::BI__builtin_ia32_cmppd256_mask: 4537 case X86::BI__builtin_ia32_cmpps512_mask: 4538 case X86::BI__builtin_ia32_cmppd512_mask: 4539 case X86::BI__builtin_ia32_cmpsd_mask: 4540 case X86::BI__builtin_ia32_cmpss_mask: 4541 case X86::BI__builtin_ia32_vec_set_v32qi: 4542 i = 2; l = 0; u = 31; 4543 break; 4544 case X86::BI__builtin_ia32_permdf256: 4545 case X86::BI__builtin_ia32_permdi256: 4546 case X86::BI__builtin_ia32_permdf512: 4547 case X86::BI__builtin_ia32_permdi512: 4548 case X86::BI__builtin_ia32_vpermilps: 4549 case X86::BI__builtin_ia32_vpermilps256: 4550 case X86::BI__builtin_ia32_vpermilpd512: 4551 case X86::BI__builtin_ia32_vpermilps512: 4552 case X86::BI__builtin_ia32_pshufd: 4553 case X86::BI__builtin_ia32_pshufd256: 4554 case X86::BI__builtin_ia32_pshufd512: 4555 case X86::BI__builtin_ia32_pshufhw: 4556 case X86::BI__builtin_ia32_pshufhw256: 4557 case X86::BI__builtin_ia32_pshufhw512: 4558 case X86::BI__builtin_ia32_pshuflw: 4559 case X86::BI__builtin_ia32_pshuflw256: 4560 case X86::BI__builtin_ia32_pshuflw512: 4561 case X86::BI__builtin_ia32_vcvtps2ph: 4562 case X86::BI__builtin_ia32_vcvtps2ph_mask: 4563 case X86::BI__builtin_ia32_vcvtps2ph256: 4564 case X86::BI__builtin_ia32_vcvtps2ph256_mask: 4565 case X86::BI__builtin_ia32_vcvtps2ph512_mask: 4566 case X86::BI__builtin_ia32_rndscaleps_128_mask: 4567 case X86::BI__builtin_ia32_rndscalepd_128_mask: 4568 case X86::BI__builtin_ia32_rndscaleps_256_mask: 4569 case X86::BI__builtin_ia32_rndscalepd_256_mask: 4570 case X86::BI__builtin_ia32_rndscaleps_mask: 4571 case X86::BI__builtin_ia32_rndscalepd_mask: 4572 case X86::BI__builtin_ia32_rndscaleph_mask: 4573 case X86::BI__builtin_ia32_reducepd128_mask: 4574 case X86::BI__builtin_ia32_reducepd256_mask: 4575 case X86::BI__builtin_ia32_reducepd512_mask: 4576 case X86::BI__builtin_ia32_reduceps128_mask: 4577 case X86::BI__builtin_ia32_reduceps256_mask: 4578 case X86::BI__builtin_ia32_reduceps512_mask: 4579 case X86::BI__builtin_ia32_reduceph128_mask: 4580 case X86::BI__builtin_ia32_reduceph256_mask: 4581 case X86::BI__builtin_ia32_reduceph512_mask: 4582 case X86::BI__builtin_ia32_prold512: 4583 case X86::BI__builtin_ia32_prolq512: 4584 case X86::BI__builtin_ia32_prold128: 4585 case X86::BI__builtin_ia32_prold256: 4586 case X86::BI__builtin_ia32_prolq128: 4587 case X86::BI__builtin_ia32_prolq256: 4588 case X86::BI__builtin_ia32_prord512: 4589 case X86::BI__builtin_ia32_prorq512: 4590 case X86::BI__builtin_ia32_prord128: 4591 case X86::BI__builtin_ia32_prord256: 4592 case X86::BI__builtin_ia32_prorq128: 4593 case X86::BI__builtin_ia32_prorq256: 4594 case X86::BI__builtin_ia32_fpclasspd128_mask: 4595 case X86::BI__builtin_ia32_fpclasspd256_mask: 4596 case X86::BI__builtin_ia32_fpclassps128_mask: 4597 case X86::BI__builtin_ia32_fpclassps256_mask: 4598 case X86::BI__builtin_ia32_fpclassps512_mask: 4599 case X86::BI__builtin_ia32_fpclasspd512_mask: 4600 case X86::BI__builtin_ia32_fpclassph128_mask: 4601 case X86::BI__builtin_ia32_fpclassph256_mask: 4602 case X86::BI__builtin_ia32_fpclassph512_mask: 4603 case X86::BI__builtin_ia32_fpclasssd_mask: 4604 case X86::BI__builtin_ia32_fpclassss_mask: 4605 case X86::BI__builtin_ia32_fpclasssh_mask: 4606 case X86::BI__builtin_ia32_pslldqi128_byteshift: 4607 case X86::BI__builtin_ia32_pslldqi256_byteshift: 4608 case X86::BI__builtin_ia32_pslldqi512_byteshift: 4609 case X86::BI__builtin_ia32_psrldqi128_byteshift: 4610 case X86::BI__builtin_ia32_psrldqi256_byteshift: 4611 case X86::BI__builtin_ia32_psrldqi512_byteshift: 4612 case X86::BI__builtin_ia32_kshiftliqi: 4613 case X86::BI__builtin_ia32_kshiftlihi: 4614 case X86::BI__builtin_ia32_kshiftlisi: 4615 case X86::BI__builtin_ia32_kshiftlidi: 4616 case X86::BI__builtin_ia32_kshiftriqi: 4617 case X86::BI__builtin_ia32_kshiftrihi: 4618 case X86::BI__builtin_ia32_kshiftrisi: 4619 case X86::BI__builtin_ia32_kshiftridi: 4620 i = 1; l = 0; u = 255; 4621 break; 4622 case X86::BI__builtin_ia32_vperm2f128_pd256: 4623 case X86::BI__builtin_ia32_vperm2f128_ps256: 4624 case X86::BI__builtin_ia32_vperm2f128_si256: 4625 case X86::BI__builtin_ia32_permti256: 4626 case X86::BI__builtin_ia32_pblendw128: 4627 case X86::BI__builtin_ia32_pblendw256: 4628 case X86::BI__builtin_ia32_blendps256: 4629 case X86::BI__builtin_ia32_pblendd256: 4630 case X86::BI__builtin_ia32_palignr128: 4631 case X86::BI__builtin_ia32_palignr256: 4632 case X86::BI__builtin_ia32_palignr512: 4633 case X86::BI__builtin_ia32_alignq512: 4634 case X86::BI__builtin_ia32_alignd512: 4635 case X86::BI__builtin_ia32_alignd128: 4636 case X86::BI__builtin_ia32_alignd256: 4637 case X86::BI__builtin_ia32_alignq128: 4638 case X86::BI__builtin_ia32_alignq256: 4639 case X86::BI__builtin_ia32_vcomisd: 4640 case X86::BI__builtin_ia32_vcomiss: 4641 case X86::BI__builtin_ia32_shuf_f32x4: 4642 case X86::BI__builtin_ia32_shuf_f64x2: 4643 case X86::BI__builtin_ia32_shuf_i32x4: 4644 case X86::BI__builtin_ia32_shuf_i64x2: 4645 case X86::BI__builtin_ia32_shufpd512: 4646 case X86::BI__builtin_ia32_shufps: 4647 case X86::BI__builtin_ia32_shufps256: 4648 case X86::BI__builtin_ia32_shufps512: 4649 case X86::BI__builtin_ia32_dbpsadbw128: 4650 case X86::BI__builtin_ia32_dbpsadbw256: 4651 case X86::BI__builtin_ia32_dbpsadbw512: 4652 case X86::BI__builtin_ia32_vpshldd128: 4653 case X86::BI__builtin_ia32_vpshldd256: 4654 case X86::BI__builtin_ia32_vpshldd512: 4655 case X86::BI__builtin_ia32_vpshldq128: 4656 case X86::BI__builtin_ia32_vpshldq256: 4657 case X86::BI__builtin_ia32_vpshldq512: 4658 case X86::BI__builtin_ia32_vpshldw128: 4659 case X86::BI__builtin_ia32_vpshldw256: 4660 case X86::BI__builtin_ia32_vpshldw512: 4661 case X86::BI__builtin_ia32_vpshrdd128: 4662 case X86::BI__builtin_ia32_vpshrdd256: 4663 case X86::BI__builtin_ia32_vpshrdd512: 4664 case X86::BI__builtin_ia32_vpshrdq128: 4665 case X86::BI__builtin_ia32_vpshrdq256: 4666 case X86::BI__builtin_ia32_vpshrdq512: 4667 case X86::BI__builtin_ia32_vpshrdw128: 4668 case X86::BI__builtin_ia32_vpshrdw256: 4669 case X86::BI__builtin_ia32_vpshrdw512: 4670 i = 2; l = 0; u = 255; 4671 break; 4672 case X86::BI__builtin_ia32_fixupimmpd512_mask: 4673 case X86::BI__builtin_ia32_fixupimmpd512_maskz: 4674 case X86::BI__builtin_ia32_fixupimmps512_mask: 4675 case X86::BI__builtin_ia32_fixupimmps512_maskz: 4676 case X86::BI__builtin_ia32_fixupimmsd_mask: 4677 case X86::BI__builtin_ia32_fixupimmsd_maskz: 4678 case X86::BI__builtin_ia32_fixupimmss_mask: 4679 case X86::BI__builtin_ia32_fixupimmss_maskz: 4680 case X86::BI__builtin_ia32_fixupimmpd128_mask: 4681 case X86::BI__builtin_ia32_fixupimmpd128_maskz: 4682 case X86::BI__builtin_ia32_fixupimmpd256_mask: 4683 case X86::BI__builtin_ia32_fixupimmpd256_maskz: 4684 case X86::BI__builtin_ia32_fixupimmps128_mask: 4685 case X86::BI__builtin_ia32_fixupimmps128_maskz: 4686 case X86::BI__builtin_ia32_fixupimmps256_mask: 4687 case X86::BI__builtin_ia32_fixupimmps256_maskz: 4688 case X86::BI__builtin_ia32_pternlogd512_mask: 4689 case X86::BI__builtin_ia32_pternlogd512_maskz: 4690 case X86::BI__builtin_ia32_pternlogq512_mask: 4691 case X86::BI__builtin_ia32_pternlogq512_maskz: 4692 case X86::BI__builtin_ia32_pternlogd128_mask: 4693 case X86::BI__builtin_ia32_pternlogd128_maskz: 4694 case X86::BI__builtin_ia32_pternlogd256_mask: 4695 case X86::BI__builtin_ia32_pternlogd256_maskz: 4696 case X86::BI__builtin_ia32_pternlogq128_mask: 4697 case X86::BI__builtin_ia32_pternlogq128_maskz: 4698 case X86::BI__builtin_ia32_pternlogq256_mask: 4699 case X86::BI__builtin_ia32_pternlogq256_maskz: 4700 i = 3; l = 0; u = 255; 4701 break; 4702 case X86::BI__builtin_ia32_gatherpfdpd: 4703 case X86::BI__builtin_ia32_gatherpfdps: 4704 case X86::BI__builtin_ia32_gatherpfqpd: 4705 case X86::BI__builtin_ia32_gatherpfqps: 4706 case X86::BI__builtin_ia32_scatterpfdpd: 4707 case X86::BI__builtin_ia32_scatterpfdps: 4708 case X86::BI__builtin_ia32_scatterpfqpd: 4709 case X86::BI__builtin_ia32_scatterpfqps: 4710 i = 4; l = 2; u = 3; 4711 break; 4712 case X86::BI__builtin_ia32_reducesd_mask: 4713 case X86::BI__builtin_ia32_reducess_mask: 4714 case X86::BI__builtin_ia32_rndscalesd_round_mask: 4715 case X86::BI__builtin_ia32_rndscaless_round_mask: 4716 case X86::BI__builtin_ia32_rndscalesh_round_mask: 4717 case X86::BI__builtin_ia32_reducesh_mask: 4718 i = 4; l = 0; u = 255; 4719 break; 4720 } 4721 4722 // Note that we don't force a hard error on the range check here, allowing 4723 // template-generated or macro-generated dead code to potentially have out-of- 4724 // range values. These need to code generate, but don't need to necessarily 4725 // make any sense. We use a warning that defaults to an error. 4726 return SemaBuiltinConstantArgRange(TheCall, i, l, u, /*RangeIsError*/ false); 4727 } 4728 4729 /// Given a FunctionDecl's FormatAttr, attempts to populate the FomatStringInfo 4730 /// parameter with the FormatAttr's correct format_idx and firstDataArg. 4731 /// Returns true when the format fits the function and the FormatStringInfo has 4732 /// been populated. 4733 bool Sema::getFormatStringInfo(const FormatAttr *Format, bool IsCXXMember, 4734 FormatStringInfo *FSI) { 4735 FSI->HasVAListArg = Format->getFirstArg() == 0; 4736 FSI->FormatIdx = Format->getFormatIdx() - 1; 4737 FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1; 4738 4739 // The way the format attribute works in GCC, the implicit this argument 4740 // of member functions is counted. However, it doesn't appear in our own 4741 // lists, so decrement format_idx in that case. 4742 if (IsCXXMember) { 4743 if(FSI->FormatIdx == 0) 4744 return false; 4745 --FSI->FormatIdx; 4746 if (FSI->FirstDataArg != 0) 4747 --FSI->FirstDataArg; 4748 } 4749 return true; 4750 } 4751 4752 /// Checks if a the given expression evaluates to null. 4753 /// 4754 /// Returns true if the value evaluates to null. 4755 static bool CheckNonNullExpr(Sema &S, const Expr *Expr) { 4756 // If the expression has non-null type, it doesn't evaluate to null. 4757 if (auto nullability 4758 = Expr->IgnoreImplicit()->getType()->getNullability(S.Context)) { 4759 if (*nullability == NullabilityKind::NonNull) 4760 return false; 4761 } 4762 4763 // As a special case, transparent unions initialized with zero are 4764 // considered null for the purposes of the nonnull attribute. 4765 if (const RecordType *UT = Expr->getType()->getAsUnionType()) { 4766 if (UT->getDecl()->hasAttr<TransparentUnionAttr>()) 4767 if (const CompoundLiteralExpr *CLE = 4768 dyn_cast<CompoundLiteralExpr>(Expr)) 4769 if (const InitListExpr *ILE = 4770 dyn_cast<InitListExpr>(CLE->getInitializer())) 4771 Expr = ILE->getInit(0); 4772 } 4773 4774 bool Result; 4775 return (!Expr->isValueDependent() && 4776 Expr->EvaluateAsBooleanCondition(Result, S.Context) && 4777 !Result); 4778 } 4779 4780 static void CheckNonNullArgument(Sema &S, 4781 const Expr *ArgExpr, 4782 SourceLocation CallSiteLoc) { 4783 if (CheckNonNullExpr(S, ArgExpr)) 4784 S.DiagRuntimeBehavior(CallSiteLoc, ArgExpr, 4785 S.PDiag(diag::warn_null_arg) 4786 << ArgExpr->getSourceRange()); 4787 } 4788 4789 bool Sema::GetFormatNSStringIdx(const FormatAttr *Format, unsigned &Idx) { 4790 FormatStringInfo FSI; 4791 if ((GetFormatStringType(Format) == FST_NSString) && 4792 getFormatStringInfo(Format, false, &FSI)) { 4793 Idx = FSI.FormatIdx; 4794 return true; 4795 } 4796 return false; 4797 } 4798 4799 /// Diagnose use of %s directive in an NSString which is being passed 4800 /// as formatting string to formatting method. 4801 static void 4802 DiagnoseCStringFormatDirectiveInCFAPI(Sema &S, 4803 const NamedDecl *FDecl, 4804 Expr **Args, 4805 unsigned NumArgs) { 4806 unsigned Idx = 0; 4807 bool Format = false; 4808 ObjCStringFormatFamily SFFamily = FDecl->getObjCFStringFormattingFamily(); 4809 if (SFFamily == ObjCStringFormatFamily::SFF_CFString) { 4810 Idx = 2; 4811 Format = true; 4812 } 4813 else 4814 for (const auto *I : FDecl->specific_attrs<FormatAttr>()) { 4815 if (S.GetFormatNSStringIdx(I, Idx)) { 4816 Format = true; 4817 break; 4818 } 4819 } 4820 if (!Format || NumArgs <= Idx) 4821 return; 4822 const Expr *FormatExpr = Args[Idx]; 4823 if (const CStyleCastExpr *CSCE = dyn_cast<CStyleCastExpr>(FormatExpr)) 4824 FormatExpr = CSCE->getSubExpr(); 4825 const StringLiteral *FormatString; 4826 if (const ObjCStringLiteral *OSL = 4827 dyn_cast<ObjCStringLiteral>(FormatExpr->IgnoreParenImpCasts())) 4828 FormatString = OSL->getString(); 4829 else 4830 FormatString = dyn_cast<StringLiteral>(FormatExpr->IgnoreParenImpCasts()); 4831 if (!FormatString) 4832 return; 4833 if (S.FormatStringHasSArg(FormatString)) { 4834 S.Diag(FormatExpr->getExprLoc(), diag::warn_objc_cdirective_format_string) 4835 << "%s" << 1 << 1; 4836 S.Diag(FDecl->getLocation(), diag::note_entity_declared_at) 4837 << FDecl->getDeclName(); 4838 } 4839 } 4840 4841 /// Determine whether the given type has a non-null nullability annotation. 4842 static bool isNonNullType(ASTContext &ctx, QualType type) { 4843 if (auto nullability = type->getNullability(ctx)) 4844 return *nullability == NullabilityKind::NonNull; 4845 4846 return false; 4847 } 4848 4849 static void CheckNonNullArguments(Sema &S, 4850 const NamedDecl *FDecl, 4851 const FunctionProtoType *Proto, 4852 ArrayRef<const Expr *> Args, 4853 SourceLocation CallSiteLoc) { 4854 assert((FDecl || Proto) && "Need a function declaration or prototype"); 4855 4856 // Already checked by by constant evaluator. 4857 if (S.isConstantEvaluated()) 4858 return; 4859 // Check the attributes attached to the method/function itself. 4860 llvm::SmallBitVector NonNullArgs; 4861 if (FDecl) { 4862 // Handle the nonnull attribute on the function/method declaration itself. 4863 for (const auto *NonNull : FDecl->specific_attrs<NonNullAttr>()) { 4864 if (!NonNull->args_size()) { 4865 // Easy case: all pointer arguments are nonnull. 4866 for (const auto *Arg : Args) 4867 if (S.isValidPointerAttrType(Arg->getType())) 4868 CheckNonNullArgument(S, Arg, CallSiteLoc); 4869 return; 4870 } 4871 4872 for (const ParamIdx &Idx : NonNull->args()) { 4873 unsigned IdxAST = Idx.getASTIndex(); 4874 if (IdxAST >= Args.size()) 4875 continue; 4876 if (NonNullArgs.empty()) 4877 NonNullArgs.resize(Args.size()); 4878 NonNullArgs.set(IdxAST); 4879 } 4880 } 4881 } 4882 4883 if (FDecl && (isa<FunctionDecl>(FDecl) || isa<ObjCMethodDecl>(FDecl))) { 4884 // Handle the nonnull attribute on the parameters of the 4885 // function/method. 4886 ArrayRef<ParmVarDecl*> parms; 4887 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(FDecl)) 4888 parms = FD->parameters(); 4889 else 4890 parms = cast<ObjCMethodDecl>(FDecl)->parameters(); 4891 4892 unsigned ParamIndex = 0; 4893 for (ArrayRef<ParmVarDecl*>::iterator I = parms.begin(), E = parms.end(); 4894 I != E; ++I, ++ParamIndex) { 4895 const ParmVarDecl *PVD = *I; 4896 if (PVD->hasAttr<NonNullAttr>() || 4897 isNonNullType(S.Context, PVD->getType())) { 4898 if (NonNullArgs.empty()) 4899 NonNullArgs.resize(Args.size()); 4900 4901 NonNullArgs.set(ParamIndex); 4902 } 4903 } 4904 } else { 4905 // If we have a non-function, non-method declaration but no 4906 // function prototype, try to dig out the function prototype. 4907 if (!Proto) { 4908 if (const ValueDecl *VD = dyn_cast<ValueDecl>(FDecl)) { 4909 QualType type = VD->getType().getNonReferenceType(); 4910 if (auto pointerType = type->getAs<PointerType>()) 4911 type = pointerType->getPointeeType(); 4912 else if (auto blockType = type->getAs<BlockPointerType>()) 4913 type = blockType->getPointeeType(); 4914 // FIXME: data member pointers? 4915 4916 // Dig out the function prototype, if there is one. 4917 Proto = type->getAs<FunctionProtoType>(); 4918 } 4919 } 4920 4921 // Fill in non-null argument information from the nullability 4922 // information on the parameter types (if we have them). 4923 if (Proto) { 4924 unsigned Index = 0; 4925 for (auto paramType : Proto->getParamTypes()) { 4926 if (isNonNullType(S.Context, paramType)) { 4927 if (NonNullArgs.empty()) 4928 NonNullArgs.resize(Args.size()); 4929 4930 NonNullArgs.set(Index); 4931 } 4932 4933 ++Index; 4934 } 4935 } 4936 } 4937 4938 // Check for non-null arguments. 4939 for (unsigned ArgIndex = 0, ArgIndexEnd = NonNullArgs.size(); 4940 ArgIndex != ArgIndexEnd; ++ArgIndex) { 4941 if (NonNullArgs[ArgIndex]) 4942 CheckNonNullArgument(S, Args[ArgIndex], CallSiteLoc); 4943 } 4944 } 4945 4946 /// Warn if a pointer or reference argument passed to a function points to an 4947 /// object that is less aligned than the parameter. This can happen when 4948 /// creating a typedef with a lower alignment than the original type and then 4949 /// calling functions defined in terms of the original type. 4950 void Sema::CheckArgAlignment(SourceLocation Loc, NamedDecl *FDecl, 4951 StringRef ParamName, QualType ArgTy, 4952 QualType ParamTy) { 4953 4954 // If a function accepts a pointer or reference type 4955 if (!ParamTy->isPointerType() && !ParamTy->isReferenceType()) 4956 return; 4957 4958 // If the parameter is a pointer type, get the pointee type for the 4959 // argument too. If the parameter is a reference type, don't try to get 4960 // the pointee type for the argument. 4961 if (ParamTy->isPointerType()) 4962 ArgTy = ArgTy->getPointeeType(); 4963 4964 // Remove reference or pointer 4965 ParamTy = ParamTy->getPointeeType(); 4966 4967 // Find expected alignment, and the actual alignment of the passed object. 4968 // getTypeAlignInChars requires complete types 4969 if (ArgTy.isNull() || ParamTy->isIncompleteType() || 4970 ArgTy->isIncompleteType() || ParamTy->isUndeducedType() || 4971 ArgTy->isUndeducedType()) 4972 return; 4973 4974 CharUnits ParamAlign = Context.getTypeAlignInChars(ParamTy); 4975 CharUnits ArgAlign = Context.getTypeAlignInChars(ArgTy); 4976 4977 // If the argument is less aligned than the parameter, there is a 4978 // potential alignment issue. 4979 if (ArgAlign < ParamAlign) 4980 Diag(Loc, diag::warn_param_mismatched_alignment) 4981 << (int)ArgAlign.getQuantity() << (int)ParamAlign.getQuantity() 4982 << ParamName << FDecl; 4983 } 4984 4985 /// Handles the checks for format strings, non-POD arguments to vararg 4986 /// functions, NULL arguments passed to non-NULL parameters, and diagnose_if 4987 /// attributes. 4988 void Sema::checkCall(NamedDecl *FDecl, const FunctionProtoType *Proto, 4989 const Expr *ThisArg, ArrayRef<const Expr *> Args, 4990 bool IsMemberFunction, SourceLocation Loc, 4991 SourceRange Range, VariadicCallType CallType) { 4992 // FIXME: We should check as much as we can in the template definition. 4993 if (CurContext->isDependentContext()) 4994 return; 4995 4996 // Printf and scanf checking. 4997 llvm::SmallBitVector CheckedVarArgs; 4998 if (FDecl) { 4999 for (const auto *I : FDecl->specific_attrs<FormatAttr>()) { 5000 // Only create vector if there are format attributes. 5001 CheckedVarArgs.resize(Args.size()); 5002 5003 CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range, 5004 CheckedVarArgs); 5005 } 5006 } 5007 5008 // Refuse POD arguments that weren't caught by the format string 5009 // checks above. 5010 auto *FD = dyn_cast_or_null<FunctionDecl>(FDecl); 5011 if (CallType != VariadicDoesNotApply && 5012 (!FD || FD->getBuiltinID() != Builtin::BI__noop)) { 5013 unsigned NumParams = Proto ? Proto->getNumParams() 5014 : FDecl && isa<FunctionDecl>(FDecl) 5015 ? cast<FunctionDecl>(FDecl)->getNumParams() 5016 : FDecl && isa<ObjCMethodDecl>(FDecl) 5017 ? cast<ObjCMethodDecl>(FDecl)->param_size() 5018 : 0; 5019 5020 for (unsigned ArgIdx = NumParams; ArgIdx < Args.size(); ++ArgIdx) { 5021 // Args[ArgIdx] can be null in malformed code. 5022 if (const Expr *Arg = Args[ArgIdx]) { 5023 if (CheckedVarArgs.empty() || !CheckedVarArgs[ArgIdx]) 5024 checkVariadicArgument(Arg, CallType); 5025 } 5026 } 5027 } 5028 5029 if (FDecl || Proto) { 5030 CheckNonNullArguments(*this, FDecl, Proto, Args, Loc); 5031 5032 // Type safety checking. 5033 if (FDecl) { 5034 for (const auto *I : FDecl->specific_attrs<ArgumentWithTypeTagAttr>()) 5035 CheckArgumentWithTypeTag(I, Args, Loc); 5036 } 5037 } 5038 5039 // Check that passed arguments match the alignment of original arguments. 5040 // Try to get the missing prototype from the declaration. 5041 if (!Proto && FDecl) { 5042 const auto *FT = FDecl->getFunctionType(); 5043 if (isa_and_nonnull<FunctionProtoType>(FT)) 5044 Proto = cast<FunctionProtoType>(FDecl->getFunctionType()); 5045 } 5046 if (Proto) { 5047 // For variadic functions, we may have more args than parameters. 5048 // For some K&R functions, we may have less args than parameters. 5049 const auto N = std::min<unsigned>(Proto->getNumParams(), Args.size()); 5050 for (unsigned ArgIdx = 0; ArgIdx < N; ++ArgIdx) { 5051 // Args[ArgIdx] can be null in malformed code. 5052 if (const Expr *Arg = Args[ArgIdx]) { 5053 if (Arg->containsErrors()) 5054 continue; 5055 5056 QualType ParamTy = Proto->getParamType(ArgIdx); 5057 QualType ArgTy = Arg->getType(); 5058 CheckArgAlignment(Arg->getExprLoc(), FDecl, std::to_string(ArgIdx + 1), 5059 ArgTy, ParamTy); 5060 } 5061 } 5062 } 5063 5064 if (FDecl && FDecl->hasAttr<AllocAlignAttr>()) { 5065 auto *AA = FDecl->getAttr<AllocAlignAttr>(); 5066 const Expr *Arg = Args[AA->getParamIndex().getASTIndex()]; 5067 if (!Arg->isValueDependent()) { 5068 Expr::EvalResult Align; 5069 if (Arg->EvaluateAsInt(Align, Context)) { 5070 const llvm::APSInt &I = Align.Val.getInt(); 5071 if (!I.isPowerOf2()) 5072 Diag(Arg->getExprLoc(), diag::warn_alignment_not_power_of_two) 5073 << Arg->getSourceRange(); 5074 5075 if (I > Sema::MaximumAlignment) 5076 Diag(Arg->getExprLoc(), diag::warn_assume_aligned_too_great) 5077 << Arg->getSourceRange() << Sema::MaximumAlignment; 5078 } 5079 } 5080 } 5081 5082 if (FD) 5083 diagnoseArgDependentDiagnoseIfAttrs(FD, ThisArg, Args, Loc); 5084 } 5085 5086 /// CheckConstructorCall - Check a constructor call for correctness and safety 5087 /// properties not enforced by the C type system. 5088 void Sema::CheckConstructorCall(FunctionDecl *FDecl, QualType ThisType, 5089 ArrayRef<const Expr *> Args, 5090 const FunctionProtoType *Proto, 5091 SourceLocation Loc) { 5092 VariadicCallType CallType = 5093 Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply; 5094 5095 auto *Ctor = cast<CXXConstructorDecl>(FDecl); 5096 CheckArgAlignment(Loc, FDecl, "'this'", Context.getPointerType(ThisType), 5097 Context.getPointerType(Ctor->getThisObjectType())); 5098 5099 checkCall(FDecl, Proto, /*ThisArg=*/nullptr, Args, /*IsMemberFunction=*/true, 5100 Loc, SourceRange(), CallType); 5101 } 5102 5103 /// CheckFunctionCall - Check a direct function call for various correctness 5104 /// and safety properties not strictly enforced by the C type system. 5105 bool Sema::CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall, 5106 const FunctionProtoType *Proto) { 5107 bool IsMemberOperatorCall = isa<CXXOperatorCallExpr>(TheCall) && 5108 isa<CXXMethodDecl>(FDecl); 5109 bool IsMemberFunction = isa<CXXMemberCallExpr>(TheCall) || 5110 IsMemberOperatorCall; 5111 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, 5112 TheCall->getCallee()); 5113 Expr** Args = TheCall->getArgs(); 5114 unsigned NumArgs = TheCall->getNumArgs(); 5115 5116 Expr *ImplicitThis = nullptr; 5117 if (IsMemberOperatorCall) { 5118 // If this is a call to a member operator, hide the first argument 5119 // from checkCall. 5120 // FIXME: Our choice of AST representation here is less than ideal. 5121 ImplicitThis = Args[0]; 5122 ++Args; 5123 --NumArgs; 5124 } else if (IsMemberFunction) 5125 ImplicitThis = 5126 cast<CXXMemberCallExpr>(TheCall)->getImplicitObjectArgument(); 5127 5128 if (ImplicitThis) { 5129 // ImplicitThis may or may not be a pointer, depending on whether . or -> is 5130 // used. 5131 QualType ThisType = ImplicitThis->getType(); 5132 if (!ThisType->isPointerType()) { 5133 assert(!ThisType->isReferenceType()); 5134 ThisType = Context.getPointerType(ThisType); 5135 } 5136 5137 QualType ThisTypeFromDecl = 5138 Context.getPointerType(cast<CXXMethodDecl>(FDecl)->getThisObjectType()); 5139 5140 CheckArgAlignment(TheCall->getRParenLoc(), FDecl, "'this'", ThisType, 5141 ThisTypeFromDecl); 5142 } 5143 5144 checkCall(FDecl, Proto, ImplicitThis, llvm::makeArrayRef(Args, NumArgs), 5145 IsMemberFunction, TheCall->getRParenLoc(), 5146 TheCall->getCallee()->getSourceRange(), CallType); 5147 5148 IdentifierInfo *FnInfo = FDecl->getIdentifier(); 5149 // None of the checks below are needed for functions that don't have 5150 // simple names (e.g., C++ conversion functions). 5151 if (!FnInfo) 5152 return false; 5153 5154 CheckTCBEnforcement(TheCall, FDecl); 5155 5156 CheckAbsoluteValueFunction(TheCall, FDecl); 5157 CheckMaxUnsignedZero(TheCall, FDecl); 5158 5159 if (getLangOpts().ObjC) 5160 DiagnoseCStringFormatDirectiveInCFAPI(*this, FDecl, Args, NumArgs); 5161 5162 unsigned CMId = FDecl->getMemoryFunctionKind(); 5163 5164 // Handle memory setting and copying functions. 5165 switch (CMId) { 5166 case 0: 5167 return false; 5168 case Builtin::BIstrlcpy: // fallthrough 5169 case Builtin::BIstrlcat: 5170 CheckStrlcpycatArguments(TheCall, FnInfo); 5171 break; 5172 case Builtin::BIstrncat: 5173 CheckStrncatArguments(TheCall, FnInfo); 5174 break; 5175 case Builtin::BIfree: 5176 CheckFreeArguments(TheCall); 5177 break; 5178 default: 5179 CheckMemaccessArguments(TheCall, CMId, FnInfo); 5180 } 5181 5182 return false; 5183 } 5184 5185 bool Sema::CheckObjCMethodCall(ObjCMethodDecl *Method, SourceLocation lbrac, 5186 ArrayRef<const Expr *> Args) { 5187 VariadicCallType CallType = 5188 Method->isVariadic() ? VariadicMethod : VariadicDoesNotApply; 5189 5190 checkCall(Method, nullptr, /*ThisArg=*/nullptr, Args, 5191 /*IsMemberFunction=*/false, lbrac, Method->getSourceRange(), 5192 CallType); 5193 5194 return false; 5195 } 5196 5197 bool Sema::CheckPointerCall(NamedDecl *NDecl, CallExpr *TheCall, 5198 const FunctionProtoType *Proto) { 5199 QualType Ty; 5200 if (const auto *V = dyn_cast<VarDecl>(NDecl)) 5201 Ty = V->getType().getNonReferenceType(); 5202 else if (const auto *F = dyn_cast<FieldDecl>(NDecl)) 5203 Ty = F->getType().getNonReferenceType(); 5204 else 5205 return false; 5206 5207 if (!Ty->isBlockPointerType() && !Ty->isFunctionPointerType() && 5208 !Ty->isFunctionProtoType()) 5209 return false; 5210 5211 VariadicCallType CallType; 5212 if (!Proto || !Proto->isVariadic()) { 5213 CallType = VariadicDoesNotApply; 5214 } else if (Ty->isBlockPointerType()) { 5215 CallType = VariadicBlock; 5216 } else { // Ty->isFunctionPointerType() 5217 CallType = VariadicFunction; 5218 } 5219 5220 checkCall(NDecl, Proto, /*ThisArg=*/nullptr, 5221 llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()), 5222 /*IsMemberFunction=*/false, TheCall->getRParenLoc(), 5223 TheCall->getCallee()->getSourceRange(), CallType); 5224 5225 return false; 5226 } 5227 5228 /// Checks function calls when a FunctionDecl or a NamedDecl is not available, 5229 /// such as function pointers returned from functions. 5230 bool Sema::CheckOtherCall(CallExpr *TheCall, const FunctionProtoType *Proto) { 5231 VariadicCallType CallType = getVariadicCallType(/*FDecl=*/nullptr, Proto, 5232 TheCall->getCallee()); 5233 checkCall(/*FDecl=*/nullptr, Proto, /*ThisArg=*/nullptr, 5234 llvm::makeArrayRef(TheCall->getArgs(), TheCall->getNumArgs()), 5235 /*IsMemberFunction=*/false, TheCall->getRParenLoc(), 5236 TheCall->getCallee()->getSourceRange(), CallType); 5237 5238 return false; 5239 } 5240 5241 static bool isValidOrderingForOp(int64_t Ordering, AtomicExpr::AtomicOp Op) { 5242 if (!llvm::isValidAtomicOrderingCABI(Ordering)) 5243 return false; 5244 5245 auto OrderingCABI = (llvm::AtomicOrderingCABI)Ordering; 5246 switch (Op) { 5247 case AtomicExpr::AO__c11_atomic_init: 5248 case AtomicExpr::AO__opencl_atomic_init: 5249 llvm_unreachable("There is no ordering argument for an init"); 5250 5251 case AtomicExpr::AO__c11_atomic_load: 5252 case AtomicExpr::AO__opencl_atomic_load: 5253 case AtomicExpr::AO__atomic_load_n: 5254 case AtomicExpr::AO__atomic_load: 5255 return OrderingCABI != llvm::AtomicOrderingCABI::release && 5256 OrderingCABI != llvm::AtomicOrderingCABI::acq_rel; 5257 5258 case AtomicExpr::AO__c11_atomic_store: 5259 case AtomicExpr::AO__opencl_atomic_store: 5260 case AtomicExpr::AO__atomic_store: 5261 case AtomicExpr::AO__atomic_store_n: 5262 return OrderingCABI != llvm::AtomicOrderingCABI::consume && 5263 OrderingCABI != llvm::AtomicOrderingCABI::acquire && 5264 OrderingCABI != llvm::AtomicOrderingCABI::acq_rel; 5265 5266 default: 5267 return true; 5268 } 5269 } 5270 5271 ExprResult Sema::SemaAtomicOpsOverloaded(ExprResult TheCallResult, 5272 AtomicExpr::AtomicOp Op) { 5273 CallExpr *TheCall = cast<CallExpr>(TheCallResult.get()); 5274 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); 5275 MultiExprArg Args{TheCall->getArgs(), TheCall->getNumArgs()}; 5276 return BuildAtomicExpr({TheCall->getBeginLoc(), TheCall->getEndLoc()}, 5277 DRE->getSourceRange(), TheCall->getRParenLoc(), Args, 5278 Op); 5279 } 5280 5281 ExprResult Sema::BuildAtomicExpr(SourceRange CallRange, SourceRange ExprRange, 5282 SourceLocation RParenLoc, MultiExprArg Args, 5283 AtomicExpr::AtomicOp Op, 5284 AtomicArgumentOrder ArgOrder) { 5285 // All the non-OpenCL operations take one of the following forms. 5286 // The OpenCL operations take the __c11 forms with one extra argument for 5287 // synchronization scope. 5288 enum { 5289 // C __c11_atomic_init(A *, C) 5290 Init, 5291 5292 // C __c11_atomic_load(A *, int) 5293 Load, 5294 5295 // void __atomic_load(A *, CP, int) 5296 LoadCopy, 5297 5298 // void __atomic_store(A *, CP, int) 5299 Copy, 5300 5301 // C __c11_atomic_add(A *, M, int) 5302 Arithmetic, 5303 5304 // C __atomic_exchange_n(A *, CP, int) 5305 Xchg, 5306 5307 // void __atomic_exchange(A *, C *, CP, int) 5308 GNUXchg, 5309 5310 // bool __c11_atomic_compare_exchange_strong(A *, C *, CP, int, int) 5311 C11CmpXchg, 5312 5313 // bool __atomic_compare_exchange(A *, C *, CP, bool, int, int) 5314 GNUCmpXchg 5315 } Form = Init; 5316 5317 const unsigned NumForm = GNUCmpXchg + 1; 5318 const unsigned NumArgs[] = { 2, 2, 3, 3, 3, 3, 4, 5, 6 }; 5319 const unsigned NumVals[] = { 1, 0, 1, 1, 1, 1, 2, 2, 3 }; 5320 // where: 5321 // C is an appropriate type, 5322 // A is volatile _Atomic(C) for __c11 builtins and is C for GNU builtins, 5323 // CP is C for __c11 builtins and GNU _n builtins and is C * otherwise, 5324 // M is C if C is an integer, and ptrdiff_t if C is a pointer, and 5325 // the int parameters are for orderings. 5326 5327 static_assert(sizeof(NumArgs)/sizeof(NumArgs[0]) == NumForm 5328 && sizeof(NumVals)/sizeof(NumVals[0]) == NumForm, 5329 "need to update code for modified forms"); 5330 static_assert(AtomicExpr::AO__c11_atomic_init == 0 && 5331 AtomicExpr::AO__c11_atomic_fetch_min + 1 == 5332 AtomicExpr::AO__atomic_load, 5333 "need to update code for modified C11 atomics"); 5334 bool IsOpenCL = Op >= AtomicExpr::AO__opencl_atomic_init && 5335 Op <= AtomicExpr::AO__opencl_atomic_fetch_max; 5336 bool IsC11 = (Op >= AtomicExpr::AO__c11_atomic_init && 5337 Op <= AtomicExpr::AO__c11_atomic_fetch_min) || 5338 IsOpenCL; 5339 bool IsN = Op == AtomicExpr::AO__atomic_load_n || 5340 Op == AtomicExpr::AO__atomic_store_n || 5341 Op == AtomicExpr::AO__atomic_exchange_n || 5342 Op == AtomicExpr::AO__atomic_compare_exchange_n; 5343 bool IsAddSub = false; 5344 5345 switch (Op) { 5346 case AtomicExpr::AO__c11_atomic_init: 5347 case AtomicExpr::AO__opencl_atomic_init: 5348 Form = Init; 5349 break; 5350 5351 case AtomicExpr::AO__c11_atomic_load: 5352 case AtomicExpr::AO__opencl_atomic_load: 5353 case AtomicExpr::AO__atomic_load_n: 5354 Form = Load; 5355 break; 5356 5357 case AtomicExpr::AO__atomic_load: 5358 Form = LoadCopy; 5359 break; 5360 5361 case AtomicExpr::AO__c11_atomic_store: 5362 case AtomicExpr::AO__opencl_atomic_store: 5363 case AtomicExpr::AO__atomic_store: 5364 case AtomicExpr::AO__atomic_store_n: 5365 Form = Copy; 5366 break; 5367 5368 case AtomicExpr::AO__c11_atomic_fetch_add: 5369 case AtomicExpr::AO__c11_atomic_fetch_sub: 5370 case AtomicExpr::AO__opencl_atomic_fetch_add: 5371 case AtomicExpr::AO__opencl_atomic_fetch_sub: 5372 case AtomicExpr::AO__atomic_fetch_add: 5373 case AtomicExpr::AO__atomic_fetch_sub: 5374 case AtomicExpr::AO__atomic_add_fetch: 5375 case AtomicExpr::AO__atomic_sub_fetch: 5376 IsAddSub = true; 5377 Form = Arithmetic; 5378 break; 5379 case AtomicExpr::AO__c11_atomic_fetch_and: 5380 case AtomicExpr::AO__c11_atomic_fetch_or: 5381 case AtomicExpr::AO__c11_atomic_fetch_xor: 5382 case AtomicExpr::AO__opencl_atomic_fetch_and: 5383 case AtomicExpr::AO__opencl_atomic_fetch_or: 5384 case AtomicExpr::AO__opencl_atomic_fetch_xor: 5385 case AtomicExpr::AO__atomic_fetch_and: 5386 case AtomicExpr::AO__atomic_fetch_or: 5387 case AtomicExpr::AO__atomic_fetch_xor: 5388 case AtomicExpr::AO__atomic_fetch_nand: 5389 case AtomicExpr::AO__atomic_and_fetch: 5390 case AtomicExpr::AO__atomic_or_fetch: 5391 case AtomicExpr::AO__atomic_xor_fetch: 5392 case AtomicExpr::AO__atomic_nand_fetch: 5393 Form = Arithmetic; 5394 break; 5395 case AtomicExpr::AO__c11_atomic_fetch_min: 5396 case AtomicExpr::AO__c11_atomic_fetch_max: 5397 case AtomicExpr::AO__opencl_atomic_fetch_min: 5398 case AtomicExpr::AO__opencl_atomic_fetch_max: 5399 case AtomicExpr::AO__atomic_min_fetch: 5400 case AtomicExpr::AO__atomic_max_fetch: 5401 case AtomicExpr::AO__atomic_fetch_min: 5402 case AtomicExpr::AO__atomic_fetch_max: 5403 Form = Arithmetic; 5404 break; 5405 5406 case AtomicExpr::AO__c11_atomic_exchange: 5407 case AtomicExpr::AO__opencl_atomic_exchange: 5408 case AtomicExpr::AO__atomic_exchange_n: 5409 Form = Xchg; 5410 break; 5411 5412 case AtomicExpr::AO__atomic_exchange: 5413 Form = GNUXchg; 5414 break; 5415 5416 case AtomicExpr::AO__c11_atomic_compare_exchange_strong: 5417 case AtomicExpr::AO__c11_atomic_compare_exchange_weak: 5418 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong: 5419 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak: 5420 Form = C11CmpXchg; 5421 break; 5422 5423 case AtomicExpr::AO__atomic_compare_exchange: 5424 case AtomicExpr::AO__atomic_compare_exchange_n: 5425 Form = GNUCmpXchg; 5426 break; 5427 } 5428 5429 unsigned AdjustedNumArgs = NumArgs[Form]; 5430 if (IsOpenCL && Op != AtomicExpr::AO__opencl_atomic_init) 5431 ++AdjustedNumArgs; 5432 // Check we have the right number of arguments. 5433 if (Args.size() < AdjustedNumArgs) { 5434 Diag(CallRange.getEnd(), diag::err_typecheck_call_too_few_args) 5435 << 0 << AdjustedNumArgs << static_cast<unsigned>(Args.size()) 5436 << ExprRange; 5437 return ExprError(); 5438 } else if (Args.size() > AdjustedNumArgs) { 5439 Diag(Args[AdjustedNumArgs]->getBeginLoc(), 5440 diag::err_typecheck_call_too_many_args) 5441 << 0 << AdjustedNumArgs << static_cast<unsigned>(Args.size()) 5442 << ExprRange; 5443 return ExprError(); 5444 } 5445 5446 // Inspect the first argument of the atomic operation. 5447 Expr *Ptr = Args[0]; 5448 ExprResult ConvertedPtr = DefaultFunctionArrayLvalueConversion(Ptr); 5449 if (ConvertedPtr.isInvalid()) 5450 return ExprError(); 5451 5452 Ptr = ConvertedPtr.get(); 5453 const PointerType *pointerType = Ptr->getType()->getAs<PointerType>(); 5454 if (!pointerType) { 5455 Diag(ExprRange.getBegin(), diag::err_atomic_builtin_must_be_pointer) 5456 << Ptr->getType() << Ptr->getSourceRange(); 5457 return ExprError(); 5458 } 5459 5460 // For a __c11 builtin, this should be a pointer to an _Atomic type. 5461 QualType AtomTy = pointerType->getPointeeType(); // 'A' 5462 QualType ValType = AtomTy; // 'C' 5463 if (IsC11) { 5464 if (!AtomTy->isAtomicType()) { 5465 Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_atomic) 5466 << Ptr->getType() << Ptr->getSourceRange(); 5467 return ExprError(); 5468 } 5469 if ((Form != Load && Form != LoadCopy && AtomTy.isConstQualified()) || 5470 AtomTy.getAddressSpace() == LangAS::opencl_constant) { 5471 Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_non_const_atomic) 5472 << (AtomTy.isConstQualified() ? 0 : 1) << Ptr->getType() 5473 << Ptr->getSourceRange(); 5474 return ExprError(); 5475 } 5476 ValType = AtomTy->castAs<AtomicType>()->getValueType(); 5477 } else if (Form != Load && Form != LoadCopy) { 5478 if (ValType.isConstQualified()) { 5479 Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_non_const_pointer) 5480 << Ptr->getType() << Ptr->getSourceRange(); 5481 return ExprError(); 5482 } 5483 } 5484 5485 // For an arithmetic operation, the implied arithmetic must be well-formed. 5486 if (Form == Arithmetic) { 5487 // gcc does not enforce these rules for GNU atomics, but we do so for 5488 // sanity. 5489 auto IsAllowedValueType = [&](QualType ValType) { 5490 if (ValType->isIntegerType()) 5491 return true; 5492 if (ValType->isPointerType()) 5493 return true; 5494 if (!ValType->isFloatingType()) 5495 return false; 5496 // LLVM Parser does not allow atomicrmw with x86_fp80 type. 5497 if (ValType->isSpecificBuiltinType(BuiltinType::LongDouble) && 5498 &Context.getTargetInfo().getLongDoubleFormat() == 5499 &llvm::APFloat::x87DoubleExtended()) 5500 return false; 5501 return true; 5502 }; 5503 if (IsAddSub && !IsAllowedValueType(ValType)) { 5504 Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_atomic_int_ptr_or_fp) 5505 << IsC11 << Ptr->getType() << Ptr->getSourceRange(); 5506 return ExprError(); 5507 } 5508 if (!IsAddSub && !ValType->isIntegerType()) { 5509 Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_atomic_int) 5510 << IsC11 << Ptr->getType() << Ptr->getSourceRange(); 5511 return ExprError(); 5512 } 5513 if (IsC11 && ValType->isPointerType() && 5514 RequireCompleteType(Ptr->getBeginLoc(), ValType->getPointeeType(), 5515 diag::err_incomplete_type)) { 5516 return ExprError(); 5517 } 5518 } else if (IsN && !ValType->isIntegerType() && !ValType->isPointerType()) { 5519 // For __atomic_*_n operations, the value type must be a scalar integral or 5520 // pointer type which is 1, 2, 4, 8 or 16 bytes in length. 5521 Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_atomic_int_or_ptr) 5522 << IsC11 << Ptr->getType() << Ptr->getSourceRange(); 5523 return ExprError(); 5524 } 5525 5526 if (!IsC11 && !AtomTy.isTriviallyCopyableType(Context) && 5527 !AtomTy->isScalarType()) { 5528 // For GNU atomics, require a trivially-copyable type. This is not part of 5529 // the GNU atomics specification, but we enforce it for sanity. 5530 Diag(ExprRange.getBegin(), diag::err_atomic_op_needs_trivial_copy) 5531 << Ptr->getType() << Ptr->getSourceRange(); 5532 return ExprError(); 5533 } 5534 5535 switch (ValType.getObjCLifetime()) { 5536 case Qualifiers::OCL_None: 5537 case Qualifiers::OCL_ExplicitNone: 5538 // okay 5539 break; 5540 5541 case Qualifiers::OCL_Weak: 5542 case Qualifiers::OCL_Strong: 5543 case Qualifiers::OCL_Autoreleasing: 5544 // FIXME: Can this happen? By this point, ValType should be known 5545 // to be trivially copyable. 5546 Diag(ExprRange.getBegin(), diag::err_arc_atomic_ownership) 5547 << ValType << Ptr->getSourceRange(); 5548 return ExprError(); 5549 } 5550 5551 // All atomic operations have an overload which takes a pointer to a volatile 5552 // 'A'. We shouldn't let the volatile-ness of the pointee-type inject itself 5553 // into the result or the other operands. Similarly atomic_load takes a 5554 // pointer to a const 'A'. 5555 ValType.removeLocalVolatile(); 5556 ValType.removeLocalConst(); 5557 QualType ResultType = ValType; 5558 if (Form == Copy || Form == LoadCopy || Form == GNUXchg || 5559 Form == Init) 5560 ResultType = Context.VoidTy; 5561 else if (Form == C11CmpXchg || Form == GNUCmpXchg) 5562 ResultType = Context.BoolTy; 5563 5564 // The type of a parameter passed 'by value'. In the GNU atomics, such 5565 // arguments are actually passed as pointers. 5566 QualType ByValType = ValType; // 'CP' 5567 bool IsPassedByAddress = false; 5568 if (!IsC11 && !IsN) { 5569 ByValType = Ptr->getType(); 5570 IsPassedByAddress = true; 5571 } 5572 5573 SmallVector<Expr *, 5> APIOrderedArgs; 5574 if (ArgOrder == Sema::AtomicArgumentOrder::AST) { 5575 APIOrderedArgs.push_back(Args[0]); 5576 switch (Form) { 5577 case Init: 5578 case Load: 5579 APIOrderedArgs.push_back(Args[1]); // Val1/Order 5580 break; 5581 case LoadCopy: 5582 case Copy: 5583 case Arithmetic: 5584 case Xchg: 5585 APIOrderedArgs.push_back(Args[2]); // Val1 5586 APIOrderedArgs.push_back(Args[1]); // Order 5587 break; 5588 case GNUXchg: 5589 APIOrderedArgs.push_back(Args[2]); // Val1 5590 APIOrderedArgs.push_back(Args[3]); // Val2 5591 APIOrderedArgs.push_back(Args[1]); // Order 5592 break; 5593 case C11CmpXchg: 5594 APIOrderedArgs.push_back(Args[2]); // Val1 5595 APIOrderedArgs.push_back(Args[4]); // Val2 5596 APIOrderedArgs.push_back(Args[1]); // Order 5597 APIOrderedArgs.push_back(Args[3]); // OrderFail 5598 break; 5599 case GNUCmpXchg: 5600 APIOrderedArgs.push_back(Args[2]); // Val1 5601 APIOrderedArgs.push_back(Args[4]); // Val2 5602 APIOrderedArgs.push_back(Args[5]); // Weak 5603 APIOrderedArgs.push_back(Args[1]); // Order 5604 APIOrderedArgs.push_back(Args[3]); // OrderFail 5605 break; 5606 } 5607 } else 5608 APIOrderedArgs.append(Args.begin(), Args.end()); 5609 5610 // The first argument's non-CV pointer type is used to deduce the type of 5611 // subsequent arguments, except for: 5612 // - weak flag (always converted to bool) 5613 // - memory order (always converted to int) 5614 // - scope (always converted to int) 5615 for (unsigned i = 0; i != APIOrderedArgs.size(); ++i) { 5616 QualType Ty; 5617 if (i < NumVals[Form] + 1) { 5618 switch (i) { 5619 case 0: 5620 // The first argument is always a pointer. It has a fixed type. 5621 // It is always dereferenced, a nullptr is undefined. 5622 CheckNonNullArgument(*this, APIOrderedArgs[i], ExprRange.getBegin()); 5623 // Nothing else to do: we already know all we want about this pointer. 5624 continue; 5625 case 1: 5626 // The second argument is the non-atomic operand. For arithmetic, this 5627 // is always passed by value, and for a compare_exchange it is always 5628 // passed by address. For the rest, GNU uses by-address and C11 uses 5629 // by-value. 5630 assert(Form != Load); 5631 if (Form == Arithmetic && ValType->isPointerType()) 5632 Ty = Context.getPointerDiffType(); 5633 else if (Form == Init || Form == Arithmetic) 5634 Ty = ValType; 5635 else if (Form == Copy || Form == Xchg) { 5636 if (IsPassedByAddress) { 5637 // The value pointer is always dereferenced, a nullptr is undefined. 5638 CheckNonNullArgument(*this, APIOrderedArgs[i], 5639 ExprRange.getBegin()); 5640 } 5641 Ty = ByValType; 5642 } else { 5643 Expr *ValArg = APIOrderedArgs[i]; 5644 // The value pointer is always dereferenced, a nullptr is undefined. 5645 CheckNonNullArgument(*this, ValArg, ExprRange.getBegin()); 5646 LangAS AS = LangAS::Default; 5647 // Keep address space of non-atomic pointer type. 5648 if (const PointerType *PtrTy = 5649 ValArg->getType()->getAs<PointerType>()) { 5650 AS = PtrTy->getPointeeType().getAddressSpace(); 5651 } 5652 Ty = Context.getPointerType( 5653 Context.getAddrSpaceQualType(ValType.getUnqualifiedType(), AS)); 5654 } 5655 break; 5656 case 2: 5657 // The third argument to compare_exchange / GNU exchange is the desired 5658 // value, either by-value (for the C11 and *_n variant) or as a pointer. 5659 if (IsPassedByAddress) 5660 CheckNonNullArgument(*this, APIOrderedArgs[i], ExprRange.getBegin()); 5661 Ty = ByValType; 5662 break; 5663 case 3: 5664 // The fourth argument to GNU compare_exchange is a 'weak' flag. 5665 Ty = Context.BoolTy; 5666 break; 5667 } 5668 } else { 5669 // The order(s) and scope are always converted to int. 5670 Ty = Context.IntTy; 5671 } 5672 5673 InitializedEntity Entity = 5674 InitializedEntity::InitializeParameter(Context, Ty, false); 5675 ExprResult Arg = APIOrderedArgs[i]; 5676 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg); 5677 if (Arg.isInvalid()) 5678 return true; 5679 APIOrderedArgs[i] = Arg.get(); 5680 } 5681 5682 // Permute the arguments into a 'consistent' order. 5683 SmallVector<Expr*, 5> SubExprs; 5684 SubExprs.push_back(Ptr); 5685 switch (Form) { 5686 case Init: 5687 // Note, AtomicExpr::getVal1() has a special case for this atomic. 5688 SubExprs.push_back(APIOrderedArgs[1]); // Val1 5689 break; 5690 case Load: 5691 SubExprs.push_back(APIOrderedArgs[1]); // Order 5692 break; 5693 case LoadCopy: 5694 case Copy: 5695 case Arithmetic: 5696 case Xchg: 5697 SubExprs.push_back(APIOrderedArgs[2]); // Order 5698 SubExprs.push_back(APIOrderedArgs[1]); // Val1 5699 break; 5700 case GNUXchg: 5701 // Note, AtomicExpr::getVal2() has a special case for this atomic. 5702 SubExprs.push_back(APIOrderedArgs[3]); // Order 5703 SubExprs.push_back(APIOrderedArgs[1]); // Val1 5704 SubExprs.push_back(APIOrderedArgs[2]); // Val2 5705 break; 5706 case C11CmpXchg: 5707 SubExprs.push_back(APIOrderedArgs[3]); // Order 5708 SubExprs.push_back(APIOrderedArgs[1]); // Val1 5709 SubExprs.push_back(APIOrderedArgs[4]); // OrderFail 5710 SubExprs.push_back(APIOrderedArgs[2]); // Val2 5711 break; 5712 case GNUCmpXchg: 5713 SubExprs.push_back(APIOrderedArgs[4]); // Order 5714 SubExprs.push_back(APIOrderedArgs[1]); // Val1 5715 SubExprs.push_back(APIOrderedArgs[5]); // OrderFail 5716 SubExprs.push_back(APIOrderedArgs[2]); // Val2 5717 SubExprs.push_back(APIOrderedArgs[3]); // Weak 5718 break; 5719 } 5720 5721 if (SubExprs.size() >= 2 && Form != Init) { 5722 if (Optional<llvm::APSInt> Result = 5723 SubExprs[1]->getIntegerConstantExpr(Context)) 5724 if (!isValidOrderingForOp(Result->getSExtValue(), Op)) 5725 Diag(SubExprs[1]->getBeginLoc(), 5726 diag::warn_atomic_op_has_invalid_memory_order) 5727 << SubExprs[1]->getSourceRange(); 5728 } 5729 5730 if (auto ScopeModel = AtomicExpr::getScopeModel(Op)) { 5731 auto *Scope = Args[Args.size() - 1]; 5732 if (Optional<llvm::APSInt> Result = 5733 Scope->getIntegerConstantExpr(Context)) { 5734 if (!ScopeModel->isValid(Result->getZExtValue())) 5735 Diag(Scope->getBeginLoc(), diag::err_atomic_op_has_invalid_synch_scope) 5736 << Scope->getSourceRange(); 5737 } 5738 SubExprs.push_back(Scope); 5739 } 5740 5741 AtomicExpr *AE = new (Context) 5742 AtomicExpr(ExprRange.getBegin(), SubExprs, ResultType, Op, RParenLoc); 5743 5744 if ((Op == AtomicExpr::AO__c11_atomic_load || 5745 Op == AtomicExpr::AO__c11_atomic_store || 5746 Op == AtomicExpr::AO__opencl_atomic_load || 5747 Op == AtomicExpr::AO__opencl_atomic_store ) && 5748 Context.AtomicUsesUnsupportedLibcall(AE)) 5749 Diag(AE->getBeginLoc(), diag::err_atomic_load_store_uses_lib) 5750 << ((Op == AtomicExpr::AO__c11_atomic_load || 5751 Op == AtomicExpr::AO__opencl_atomic_load) 5752 ? 0 5753 : 1); 5754 5755 if (ValType->isExtIntType()) { 5756 Diag(Ptr->getExprLoc(), diag::err_atomic_builtin_ext_int_prohibit); 5757 return ExprError(); 5758 } 5759 5760 return AE; 5761 } 5762 5763 /// checkBuiltinArgument - Given a call to a builtin function, perform 5764 /// normal type-checking on the given argument, updating the call in 5765 /// place. This is useful when a builtin function requires custom 5766 /// type-checking for some of its arguments but not necessarily all of 5767 /// them. 5768 /// 5769 /// Returns true on error. 5770 static bool checkBuiltinArgument(Sema &S, CallExpr *E, unsigned ArgIndex) { 5771 FunctionDecl *Fn = E->getDirectCallee(); 5772 assert(Fn && "builtin call without direct callee!"); 5773 5774 ParmVarDecl *Param = Fn->getParamDecl(ArgIndex); 5775 InitializedEntity Entity = 5776 InitializedEntity::InitializeParameter(S.Context, Param); 5777 5778 ExprResult Arg = E->getArg(0); 5779 Arg = S.PerformCopyInitialization(Entity, SourceLocation(), Arg); 5780 if (Arg.isInvalid()) 5781 return true; 5782 5783 E->setArg(ArgIndex, Arg.get()); 5784 return false; 5785 } 5786 5787 /// We have a call to a function like __sync_fetch_and_add, which is an 5788 /// overloaded function based on the pointer type of its first argument. 5789 /// The main BuildCallExpr routines have already promoted the types of 5790 /// arguments because all of these calls are prototyped as void(...). 5791 /// 5792 /// This function goes through and does final semantic checking for these 5793 /// builtins, as well as generating any warnings. 5794 ExprResult 5795 Sema::SemaBuiltinAtomicOverloaded(ExprResult TheCallResult) { 5796 CallExpr *TheCall = static_cast<CallExpr *>(TheCallResult.get()); 5797 Expr *Callee = TheCall->getCallee(); 5798 DeclRefExpr *DRE = cast<DeclRefExpr>(Callee->IgnoreParenCasts()); 5799 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl()); 5800 5801 // Ensure that we have at least one argument to do type inference from. 5802 if (TheCall->getNumArgs() < 1) { 5803 Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least) 5804 << 0 << 1 << TheCall->getNumArgs() << Callee->getSourceRange(); 5805 return ExprError(); 5806 } 5807 5808 // Inspect the first argument of the atomic builtin. This should always be 5809 // a pointer type, whose element is an integral scalar or pointer type. 5810 // Because it is a pointer type, we don't have to worry about any implicit 5811 // casts here. 5812 // FIXME: We don't allow floating point scalars as input. 5813 Expr *FirstArg = TheCall->getArg(0); 5814 ExprResult FirstArgResult = DefaultFunctionArrayLvalueConversion(FirstArg); 5815 if (FirstArgResult.isInvalid()) 5816 return ExprError(); 5817 FirstArg = FirstArgResult.get(); 5818 TheCall->setArg(0, FirstArg); 5819 5820 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>(); 5821 if (!pointerType) { 5822 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer) 5823 << FirstArg->getType() << FirstArg->getSourceRange(); 5824 return ExprError(); 5825 } 5826 5827 QualType ValType = pointerType->getPointeeType(); 5828 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() && 5829 !ValType->isBlockPointerType()) { 5830 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_must_be_pointer_intptr) 5831 << FirstArg->getType() << FirstArg->getSourceRange(); 5832 return ExprError(); 5833 } 5834 5835 if (ValType.isConstQualified()) { 5836 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_cannot_be_const) 5837 << FirstArg->getType() << FirstArg->getSourceRange(); 5838 return ExprError(); 5839 } 5840 5841 switch (ValType.getObjCLifetime()) { 5842 case Qualifiers::OCL_None: 5843 case Qualifiers::OCL_ExplicitNone: 5844 // okay 5845 break; 5846 5847 case Qualifiers::OCL_Weak: 5848 case Qualifiers::OCL_Strong: 5849 case Qualifiers::OCL_Autoreleasing: 5850 Diag(DRE->getBeginLoc(), diag::err_arc_atomic_ownership) 5851 << ValType << FirstArg->getSourceRange(); 5852 return ExprError(); 5853 } 5854 5855 // Strip any qualifiers off ValType. 5856 ValType = ValType.getUnqualifiedType(); 5857 5858 // The majority of builtins return a value, but a few have special return 5859 // types, so allow them to override appropriately below. 5860 QualType ResultType = ValType; 5861 5862 // We need to figure out which concrete builtin this maps onto. For example, 5863 // __sync_fetch_and_add with a 2 byte object turns into 5864 // __sync_fetch_and_add_2. 5865 #define BUILTIN_ROW(x) \ 5866 { Builtin::BI##x##_1, Builtin::BI##x##_2, Builtin::BI##x##_4, \ 5867 Builtin::BI##x##_8, Builtin::BI##x##_16 } 5868 5869 static const unsigned BuiltinIndices[][5] = { 5870 BUILTIN_ROW(__sync_fetch_and_add), 5871 BUILTIN_ROW(__sync_fetch_and_sub), 5872 BUILTIN_ROW(__sync_fetch_and_or), 5873 BUILTIN_ROW(__sync_fetch_and_and), 5874 BUILTIN_ROW(__sync_fetch_and_xor), 5875 BUILTIN_ROW(__sync_fetch_and_nand), 5876 5877 BUILTIN_ROW(__sync_add_and_fetch), 5878 BUILTIN_ROW(__sync_sub_and_fetch), 5879 BUILTIN_ROW(__sync_and_and_fetch), 5880 BUILTIN_ROW(__sync_or_and_fetch), 5881 BUILTIN_ROW(__sync_xor_and_fetch), 5882 BUILTIN_ROW(__sync_nand_and_fetch), 5883 5884 BUILTIN_ROW(__sync_val_compare_and_swap), 5885 BUILTIN_ROW(__sync_bool_compare_and_swap), 5886 BUILTIN_ROW(__sync_lock_test_and_set), 5887 BUILTIN_ROW(__sync_lock_release), 5888 BUILTIN_ROW(__sync_swap) 5889 }; 5890 #undef BUILTIN_ROW 5891 5892 // Determine the index of the size. 5893 unsigned SizeIndex; 5894 switch (Context.getTypeSizeInChars(ValType).getQuantity()) { 5895 case 1: SizeIndex = 0; break; 5896 case 2: SizeIndex = 1; break; 5897 case 4: SizeIndex = 2; break; 5898 case 8: SizeIndex = 3; break; 5899 case 16: SizeIndex = 4; break; 5900 default: 5901 Diag(DRE->getBeginLoc(), diag::err_atomic_builtin_pointer_size) 5902 << FirstArg->getType() << FirstArg->getSourceRange(); 5903 return ExprError(); 5904 } 5905 5906 // Each of these builtins has one pointer argument, followed by some number of 5907 // values (0, 1 or 2) followed by a potentially empty varags list of stuff 5908 // that we ignore. Find out which row of BuiltinIndices to read from as well 5909 // as the number of fixed args. 5910 unsigned BuiltinID = FDecl->getBuiltinID(); 5911 unsigned BuiltinIndex, NumFixed = 1; 5912 bool WarnAboutSemanticsChange = false; 5913 switch (BuiltinID) { 5914 default: llvm_unreachable("Unknown overloaded atomic builtin!"); 5915 case Builtin::BI__sync_fetch_and_add: 5916 case Builtin::BI__sync_fetch_and_add_1: 5917 case Builtin::BI__sync_fetch_and_add_2: 5918 case Builtin::BI__sync_fetch_and_add_4: 5919 case Builtin::BI__sync_fetch_and_add_8: 5920 case Builtin::BI__sync_fetch_and_add_16: 5921 BuiltinIndex = 0; 5922 break; 5923 5924 case Builtin::BI__sync_fetch_and_sub: 5925 case Builtin::BI__sync_fetch_and_sub_1: 5926 case Builtin::BI__sync_fetch_and_sub_2: 5927 case Builtin::BI__sync_fetch_and_sub_4: 5928 case Builtin::BI__sync_fetch_and_sub_8: 5929 case Builtin::BI__sync_fetch_and_sub_16: 5930 BuiltinIndex = 1; 5931 break; 5932 5933 case Builtin::BI__sync_fetch_and_or: 5934 case Builtin::BI__sync_fetch_and_or_1: 5935 case Builtin::BI__sync_fetch_and_or_2: 5936 case Builtin::BI__sync_fetch_and_or_4: 5937 case Builtin::BI__sync_fetch_and_or_8: 5938 case Builtin::BI__sync_fetch_and_or_16: 5939 BuiltinIndex = 2; 5940 break; 5941 5942 case Builtin::BI__sync_fetch_and_and: 5943 case Builtin::BI__sync_fetch_and_and_1: 5944 case Builtin::BI__sync_fetch_and_and_2: 5945 case Builtin::BI__sync_fetch_and_and_4: 5946 case Builtin::BI__sync_fetch_and_and_8: 5947 case Builtin::BI__sync_fetch_and_and_16: 5948 BuiltinIndex = 3; 5949 break; 5950 5951 case Builtin::BI__sync_fetch_and_xor: 5952 case Builtin::BI__sync_fetch_and_xor_1: 5953 case Builtin::BI__sync_fetch_and_xor_2: 5954 case Builtin::BI__sync_fetch_and_xor_4: 5955 case Builtin::BI__sync_fetch_and_xor_8: 5956 case Builtin::BI__sync_fetch_and_xor_16: 5957 BuiltinIndex = 4; 5958 break; 5959 5960 case Builtin::BI__sync_fetch_and_nand: 5961 case Builtin::BI__sync_fetch_and_nand_1: 5962 case Builtin::BI__sync_fetch_and_nand_2: 5963 case Builtin::BI__sync_fetch_and_nand_4: 5964 case Builtin::BI__sync_fetch_and_nand_8: 5965 case Builtin::BI__sync_fetch_and_nand_16: 5966 BuiltinIndex = 5; 5967 WarnAboutSemanticsChange = true; 5968 break; 5969 5970 case Builtin::BI__sync_add_and_fetch: 5971 case Builtin::BI__sync_add_and_fetch_1: 5972 case Builtin::BI__sync_add_and_fetch_2: 5973 case Builtin::BI__sync_add_and_fetch_4: 5974 case Builtin::BI__sync_add_and_fetch_8: 5975 case Builtin::BI__sync_add_and_fetch_16: 5976 BuiltinIndex = 6; 5977 break; 5978 5979 case Builtin::BI__sync_sub_and_fetch: 5980 case Builtin::BI__sync_sub_and_fetch_1: 5981 case Builtin::BI__sync_sub_and_fetch_2: 5982 case Builtin::BI__sync_sub_and_fetch_4: 5983 case Builtin::BI__sync_sub_and_fetch_8: 5984 case Builtin::BI__sync_sub_and_fetch_16: 5985 BuiltinIndex = 7; 5986 break; 5987 5988 case Builtin::BI__sync_and_and_fetch: 5989 case Builtin::BI__sync_and_and_fetch_1: 5990 case Builtin::BI__sync_and_and_fetch_2: 5991 case Builtin::BI__sync_and_and_fetch_4: 5992 case Builtin::BI__sync_and_and_fetch_8: 5993 case Builtin::BI__sync_and_and_fetch_16: 5994 BuiltinIndex = 8; 5995 break; 5996 5997 case Builtin::BI__sync_or_and_fetch: 5998 case Builtin::BI__sync_or_and_fetch_1: 5999 case Builtin::BI__sync_or_and_fetch_2: 6000 case Builtin::BI__sync_or_and_fetch_4: 6001 case Builtin::BI__sync_or_and_fetch_8: 6002 case Builtin::BI__sync_or_and_fetch_16: 6003 BuiltinIndex = 9; 6004 break; 6005 6006 case Builtin::BI__sync_xor_and_fetch: 6007 case Builtin::BI__sync_xor_and_fetch_1: 6008 case Builtin::BI__sync_xor_and_fetch_2: 6009 case Builtin::BI__sync_xor_and_fetch_4: 6010 case Builtin::BI__sync_xor_and_fetch_8: 6011 case Builtin::BI__sync_xor_and_fetch_16: 6012 BuiltinIndex = 10; 6013 break; 6014 6015 case Builtin::BI__sync_nand_and_fetch: 6016 case Builtin::BI__sync_nand_and_fetch_1: 6017 case Builtin::BI__sync_nand_and_fetch_2: 6018 case Builtin::BI__sync_nand_and_fetch_4: 6019 case Builtin::BI__sync_nand_and_fetch_8: 6020 case Builtin::BI__sync_nand_and_fetch_16: 6021 BuiltinIndex = 11; 6022 WarnAboutSemanticsChange = true; 6023 break; 6024 6025 case Builtin::BI__sync_val_compare_and_swap: 6026 case Builtin::BI__sync_val_compare_and_swap_1: 6027 case Builtin::BI__sync_val_compare_and_swap_2: 6028 case Builtin::BI__sync_val_compare_and_swap_4: 6029 case Builtin::BI__sync_val_compare_and_swap_8: 6030 case Builtin::BI__sync_val_compare_and_swap_16: 6031 BuiltinIndex = 12; 6032 NumFixed = 2; 6033 break; 6034 6035 case Builtin::BI__sync_bool_compare_and_swap: 6036 case Builtin::BI__sync_bool_compare_and_swap_1: 6037 case Builtin::BI__sync_bool_compare_and_swap_2: 6038 case Builtin::BI__sync_bool_compare_and_swap_4: 6039 case Builtin::BI__sync_bool_compare_and_swap_8: 6040 case Builtin::BI__sync_bool_compare_and_swap_16: 6041 BuiltinIndex = 13; 6042 NumFixed = 2; 6043 ResultType = Context.BoolTy; 6044 break; 6045 6046 case Builtin::BI__sync_lock_test_and_set: 6047 case Builtin::BI__sync_lock_test_and_set_1: 6048 case Builtin::BI__sync_lock_test_and_set_2: 6049 case Builtin::BI__sync_lock_test_and_set_4: 6050 case Builtin::BI__sync_lock_test_and_set_8: 6051 case Builtin::BI__sync_lock_test_and_set_16: 6052 BuiltinIndex = 14; 6053 break; 6054 6055 case Builtin::BI__sync_lock_release: 6056 case Builtin::BI__sync_lock_release_1: 6057 case Builtin::BI__sync_lock_release_2: 6058 case Builtin::BI__sync_lock_release_4: 6059 case Builtin::BI__sync_lock_release_8: 6060 case Builtin::BI__sync_lock_release_16: 6061 BuiltinIndex = 15; 6062 NumFixed = 0; 6063 ResultType = Context.VoidTy; 6064 break; 6065 6066 case Builtin::BI__sync_swap: 6067 case Builtin::BI__sync_swap_1: 6068 case Builtin::BI__sync_swap_2: 6069 case Builtin::BI__sync_swap_4: 6070 case Builtin::BI__sync_swap_8: 6071 case Builtin::BI__sync_swap_16: 6072 BuiltinIndex = 16; 6073 break; 6074 } 6075 6076 // Now that we know how many fixed arguments we expect, first check that we 6077 // have at least that many. 6078 if (TheCall->getNumArgs() < 1+NumFixed) { 6079 Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args_at_least) 6080 << 0 << 1 + NumFixed << TheCall->getNumArgs() 6081 << Callee->getSourceRange(); 6082 return ExprError(); 6083 } 6084 6085 Diag(TheCall->getEndLoc(), diag::warn_atomic_implicit_seq_cst) 6086 << Callee->getSourceRange(); 6087 6088 if (WarnAboutSemanticsChange) { 6089 Diag(TheCall->getEndLoc(), diag::warn_sync_fetch_and_nand_semantics_change) 6090 << Callee->getSourceRange(); 6091 } 6092 6093 // Get the decl for the concrete builtin from this, we can tell what the 6094 // concrete integer type we should convert to is. 6095 unsigned NewBuiltinID = BuiltinIndices[BuiltinIndex][SizeIndex]; 6096 const char *NewBuiltinName = Context.BuiltinInfo.getName(NewBuiltinID); 6097 FunctionDecl *NewBuiltinDecl; 6098 if (NewBuiltinID == BuiltinID) 6099 NewBuiltinDecl = FDecl; 6100 else { 6101 // Perform builtin lookup to avoid redeclaring it. 6102 DeclarationName DN(&Context.Idents.get(NewBuiltinName)); 6103 LookupResult Res(*this, DN, DRE->getBeginLoc(), LookupOrdinaryName); 6104 LookupName(Res, TUScope, /*AllowBuiltinCreation=*/true); 6105 assert(Res.getFoundDecl()); 6106 NewBuiltinDecl = dyn_cast<FunctionDecl>(Res.getFoundDecl()); 6107 if (!NewBuiltinDecl) 6108 return ExprError(); 6109 } 6110 6111 // The first argument --- the pointer --- has a fixed type; we 6112 // deduce the types of the rest of the arguments accordingly. Walk 6113 // the remaining arguments, converting them to the deduced value type. 6114 for (unsigned i = 0; i != NumFixed; ++i) { 6115 ExprResult Arg = TheCall->getArg(i+1); 6116 6117 // GCC does an implicit conversion to the pointer or integer ValType. This 6118 // can fail in some cases (1i -> int**), check for this error case now. 6119 // Initialize the argument. 6120 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, 6121 ValType, /*consume*/ false); 6122 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg); 6123 if (Arg.isInvalid()) 6124 return ExprError(); 6125 6126 // Okay, we have something that *can* be converted to the right type. Check 6127 // to see if there is a potentially weird extension going on here. This can 6128 // happen when you do an atomic operation on something like an char* and 6129 // pass in 42. The 42 gets converted to char. This is even more strange 6130 // for things like 45.123 -> char, etc. 6131 // FIXME: Do this check. 6132 TheCall->setArg(i+1, Arg.get()); 6133 } 6134 6135 // Create a new DeclRefExpr to refer to the new decl. 6136 DeclRefExpr *NewDRE = DeclRefExpr::Create( 6137 Context, DRE->getQualifierLoc(), SourceLocation(), NewBuiltinDecl, 6138 /*enclosing*/ false, DRE->getLocation(), Context.BuiltinFnTy, 6139 DRE->getValueKind(), nullptr, nullptr, DRE->isNonOdrUse()); 6140 6141 // Set the callee in the CallExpr. 6142 // FIXME: This loses syntactic information. 6143 QualType CalleePtrTy = Context.getPointerType(NewBuiltinDecl->getType()); 6144 ExprResult PromotedCall = ImpCastExprToType(NewDRE, CalleePtrTy, 6145 CK_BuiltinFnToFnPtr); 6146 TheCall->setCallee(PromotedCall.get()); 6147 6148 // Change the result type of the call to match the original value type. This 6149 // is arbitrary, but the codegen for these builtins ins design to handle it 6150 // gracefully. 6151 TheCall->setType(ResultType); 6152 6153 // Prohibit use of _ExtInt with atomic builtins. 6154 // The arguments would have already been converted to the first argument's 6155 // type, so only need to check the first argument. 6156 const auto *ExtIntValType = ValType->getAs<ExtIntType>(); 6157 if (ExtIntValType && !llvm::isPowerOf2_64(ExtIntValType->getNumBits())) { 6158 Diag(FirstArg->getExprLoc(), diag::err_atomic_builtin_ext_int_size); 6159 return ExprError(); 6160 } 6161 6162 return TheCallResult; 6163 } 6164 6165 /// SemaBuiltinNontemporalOverloaded - We have a call to 6166 /// __builtin_nontemporal_store or __builtin_nontemporal_load, which is an 6167 /// overloaded function based on the pointer type of its last argument. 6168 /// 6169 /// This function goes through and does final semantic checking for these 6170 /// builtins. 6171 ExprResult Sema::SemaBuiltinNontemporalOverloaded(ExprResult TheCallResult) { 6172 CallExpr *TheCall = (CallExpr *)TheCallResult.get(); 6173 DeclRefExpr *DRE = 6174 cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); 6175 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl()); 6176 unsigned BuiltinID = FDecl->getBuiltinID(); 6177 assert((BuiltinID == Builtin::BI__builtin_nontemporal_store || 6178 BuiltinID == Builtin::BI__builtin_nontemporal_load) && 6179 "Unexpected nontemporal load/store builtin!"); 6180 bool isStore = BuiltinID == Builtin::BI__builtin_nontemporal_store; 6181 unsigned numArgs = isStore ? 2 : 1; 6182 6183 // Ensure that we have the proper number of arguments. 6184 if (checkArgCount(*this, TheCall, numArgs)) 6185 return ExprError(); 6186 6187 // Inspect the last argument of the nontemporal builtin. This should always 6188 // be a pointer type, from which we imply the type of the memory access. 6189 // Because it is a pointer type, we don't have to worry about any implicit 6190 // casts here. 6191 Expr *PointerArg = TheCall->getArg(numArgs - 1); 6192 ExprResult PointerArgResult = 6193 DefaultFunctionArrayLvalueConversion(PointerArg); 6194 6195 if (PointerArgResult.isInvalid()) 6196 return ExprError(); 6197 PointerArg = PointerArgResult.get(); 6198 TheCall->setArg(numArgs - 1, PointerArg); 6199 6200 const PointerType *pointerType = PointerArg->getType()->getAs<PointerType>(); 6201 if (!pointerType) { 6202 Diag(DRE->getBeginLoc(), diag::err_nontemporal_builtin_must_be_pointer) 6203 << PointerArg->getType() << PointerArg->getSourceRange(); 6204 return ExprError(); 6205 } 6206 6207 QualType ValType = pointerType->getPointeeType(); 6208 6209 // Strip any qualifiers off ValType. 6210 ValType = ValType.getUnqualifiedType(); 6211 if (!ValType->isIntegerType() && !ValType->isAnyPointerType() && 6212 !ValType->isBlockPointerType() && !ValType->isFloatingType() && 6213 !ValType->isVectorType()) { 6214 Diag(DRE->getBeginLoc(), 6215 diag::err_nontemporal_builtin_must_be_pointer_intfltptr_or_vector) 6216 << PointerArg->getType() << PointerArg->getSourceRange(); 6217 return ExprError(); 6218 } 6219 6220 if (!isStore) { 6221 TheCall->setType(ValType); 6222 return TheCallResult; 6223 } 6224 6225 ExprResult ValArg = TheCall->getArg(0); 6226 InitializedEntity Entity = InitializedEntity::InitializeParameter( 6227 Context, ValType, /*consume*/ false); 6228 ValArg = PerformCopyInitialization(Entity, SourceLocation(), ValArg); 6229 if (ValArg.isInvalid()) 6230 return ExprError(); 6231 6232 TheCall->setArg(0, ValArg.get()); 6233 TheCall->setType(Context.VoidTy); 6234 return TheCallResult; 6235 } 6236 6237 /// CheckObjCString - Checks that the argument to the builtin 6238 /// CFString constructor is correct 6239 /// Note: It might also make sense to do the UTF-16 conversion here (would 6240 /// simplify the backend). 6241 bool Sema::CheckObjCString(Expr *Arg) { 6242 Arg = Arg->IgnoreParenCasts(); 6243 StringLiteral *Literal = dyn_cast<StringLiteral>(Arg); 6244 6245 if (!Literal || !Literal->isAscii()) { 6246 Diag(Arg->getBeginLoc(), diag::err_cfstring_literal_not_string_constant) 6247 << Arg->getSourceRange(); 6248 return true; 6249 } 6250 6251 if (Literal->containsNonAsciiOrNull()) { 6252 StringRef String = Literal->getString(); 6253 unsigned NumBytes = String.size(); 6254 SmallVector<llvm::UTF16, 128> ToBuf(NumBytes); 6255 const llvm::UTF8 *FromPtr = (const llvm::UTF8 *)String.data(); 6256 llvm::UTF16 *ToPtr = &ToBuf[0]; 6257 6258 llvm::ConversionResult Result = 6259 llvm::ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, &ToPtr, 6260 ToPtr + NumBytes, llvm::strictConversion); 6261 // Check for conversion failure. 6262 if (Result != llvm::conversionOK) 6263 Diag(Arg->getBeginLoc(), diag::warn_cfstring_truncated) 6264 << Arg->getSourceRange(); 6265 } 6266 return false; 6267 } 6268 6269 /// CheckObjCString - Checks that the format string argument to the os_log() 6270 /// and os_trace() functions is correct, and converts it to const char *. 6271 ExprResult Sema::CheckOSLogFormatStringArg(Expr *Arg) { 6272 Arg = Arg->IgnoreParenCasts(); 6273 auto *Literal = dyn_cast<StringLiteral>(Arg); 6274 if (!Literal) { 6275 if (auto *ObjcLiteral = dyn_cast<ObjCStringLiteral>(Arg)) { 6276 Literal = ObjcLiteral->getString(); 6277 } 6278 } 6279 6280 if (!Literal || (!Literal->isAscii() && !Literal->isUTF8())) { 6281 return ExprError( 6282 Diag(Arg->getBeginLoc(), diag::err_os_log_format_not_string_constant) 6283 << Arg->getSourceRange()); 6284 } 6285 6286 ExprResult Result(Literal); 6287 QualType ResultTy = Context.getPointerType(Context.CharTy.withConst()); 6288 InitializedEntity Entity = 6289 InitializedEntity::InitializeParameter(Context, ResultTy, false); 6290 Result = PerformCopyInitialization(Entity, SourceLocation(), Result); 6291 return Result; 6292 } 6293 6294 /// Check that the user is calling the appropriate va_start builtin for the 6295 /// target and calling convention. 6296 static bool checkVAStartABI(Sema &S, unsigned BuiltinID, Expr *Fn) { 6297 const llvm::Triple &TT = S.Context.getTargetInfo().getTriple(); 6298 bool IsX64 = TT.getArch() == llvm::Triple::x86_64; 6299 bool IsAArch64 = (TT.getArch() == llvm::Triple::aarch64 || 6300 TT.getArch() == llvm::Triple::aarch64_32); 6301 bool IsWindows = TT.isOSWindows(); 6302 bool IsMSVAStart = BuiltinID == Builtin::BI__builtin_ms_va_start; 6303 if (IsX64 || IsAArch64) { 6304 CallingConv CC = CC_C; 6305 if (const FunctionDecl *FD = S.getCurFunctionDecl()) 6306 CC = FD->getType()->castAs<FunctionType>()->getCallConv(); 6307 if (IsMSVAStart) { 6308 // Don't allow this in System V ABI functions. 6309 if (CC == CC_X86_64SysV || (!IsWindows && CC != CC_Win64)) 6310 return S.Diag(Fn->getBeginLoc(), 6311 diag::err_ms_va_start_used_in_sysv_function); 6312 } else { 6313 // On x86-64/AArch64 Unix, don't allow this in Win64 ABI functions. 6314 // On x64 Windows, don't allow this in System V ABI functions. 6315 // (Yes, that means there's no corresponding way to support variadic 6316 // System V ABI functions on Windows.) 6317 if ((IsWindows && CC == CC_X86_64SysV) || 6318 (!IsWindows && CC == CC_Win64)) 6319 return S.Diag(Fn->getBeginLoc(), 6320 diag::err_va_start_used_in_wrong_abi_function) 6321 << !IsWindows; 6322 } 6323 return false; 6324 } 6325 6326 if (IsMSVAStart) 6327 return S.Diag(Fn->getBeginLoc(), diag::err_builtin_x64_aarch64_only); 6328 return false; 6329 } 6330 6331 static bool checkVAStartIsInVariadicFunction(Sema &S, Expr *Fn, 6332 ParmVarDecl **LastParam = nullptr) { 6333 // Determine whether the current function, block, or obj-c method is variadic 6334 // and get its parameter list. 6335 bool IsVariadic = false; 6336 ArrayRef<ParmVarDecl *> Params; 6337 DeclContext *Caller = S.CurContext; 6338 if (auto *Block = dyn_cast<BlockDecl>(Caller)) { 6339 IsVariadic = Block->isVariadic(); 6340 Params = Block->parameters(); 6341 } else if (auto *FD = dyn_cast<FunctionDecl>(Caller)) { 6342 IsVariadic = FD->isVariadic(); 6343 Params = FD->parameters(); 6344 } else if (auto *MD = dyn_cast<ObjCMethodDecl>(Caller)) { 6345 IsVariadic = MD->isVariadic(); 6346 // FIXME: This isn't correct for methods (results in bogus warning). 6347 Params = MD->parameters(); 6348 } else if (isa<CapturedDecl>(Caller)) { 6349 // We don't support va_start in a CapturedDecl. 6350 S.Diag(Fn->getBeginLoc(), diag::err_va_start_captured_stmt); 6351 return true; 6352 } else { 6353 // This must be some other declcontext that parses exprs. 6354 S.Diag(Fn->getBeginLoc(), diag::err_va_start_outside_function); 6355 return true; 6356 } 6357 6358 if (!IsVariadic) { 6359 S.Diag(Fn->getBeginLoc(), diag::err_va_start_fixed_function); 6360 return true; 6361 } 6362 6363 if (LastParam) 6364 *LastParam = Params.empty() ? nullptr : Params.back(); 6365 6366 return false; 6367 } 6368 6369 /// Check the arguments to '__builtin_va_start' or '__builtin_ms_va_start' 6370 /// for validity. Emit an error and return true on failure; return false 6371 /// on success. 6372 bool Sema::SemaBuiltinVAStart(unsigned BuiltinID, CallExpr *TheCall) { 6373 Expr *Fn = TheCall->getCallee(); 6374 6375 if (checkVAStartABI(*this, BuiltinID, Fn)) 6376 return true; 6377 6378 if (checkArgCount(*this, TheCall, 2)) 6379 return true; 6380 6381 // Type-check the first argument normally. 6382 if (checkBuiltinArgument(*this, TheCall, 0)) 6383 return true; 6384 6385 // Check that the current function is variadic, and get its last parameter. 6386 ParmVarDecl *LastParam; 6387 if (checkVAStartIsInVariadicFunction(*this, Fn, &LastParam)) 6388 return true; 6389 6390 // Verify that the second argument to the builtin is the last argument of the 6391 // current function or method. 6392 bool SecondArgIsLastNamedArgument = false; 6393 const Expr *Arg = TheCall->getArg(1)->IgnoreParenCasts(); 6394 6395 // These are valid if SecondArgIsLastNamedArgument is false after the next 6396 // block. 6397 QualType Type; 6398 SourceLocation ParamLoc; 6399 bool IsCRegister = false; 6400 6401 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) { 6402 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) { 6403 SecondArgIsLastNamedArgument = PV == LastParam; 6404 6405 Type = PV->getType(); 6406 ParamLoc = PV->getLocation(); 6407 IsCRegister = 6408 PV->getStorageClass() == SC_Register && !getLangOpts().CPlusPlus; 6409 } 6410 } 6411 6412 if (!SecondArgIsLastNamedArgument) 6413 Diag(TheCall->getArg(1)->getBeginLoc(), 6414 diag::warn_second_arg_of_va_start_not_last_named_param); 6415 else if (IsCRegister || Type->isReferenceType() || 6416 Type->isSpecificBuiltinType(BuiltinType::Float) || [=] { 6417 // Promotable integers are UB, but enumerations need a bit of 6418 // extra checking to see what their promotable type actually is. 6419 if (!Type->isPromotableIntegerType()) 6420 return false; 6421 if (!Type->isEnumeralType()) 6422 return true; 6423 const EnumDecl *ED = Type->castAs<EnumType>()->getDecl(); 6424 return !(ED && 6425 Context.typesAreCompatible(ED->getPromotionType(), Type)); 6426 }()) { 6427 unsigned Reason = 0; 6428 if (Type->isReferenceType()) Reason = 1; 6429 else if (IsCRegister) Reason = 2; 6430 Diag(Arg->getBeginLoc(), diag::warn_va_start_type_is_undefined) << Reason; 6431 Diag(ParamLoc, diag::note_parameter_type) << Type; 6432 } 6433 6434 TheCall->setType(Context.VoidTy); 6435 return false; 6436 } 6437 6438 bool Sema::SemaBuiltinVAStartARMMicrosoft(CallExpr *Call) { 6439 auto IsSuitablyTypedFormatArgument = [this](const Expr *Arg) -> bool { 6440 const LangOptions &LO = getLangOpts(); 6441 6442 if (LO.CPlusPlus) 6443 return Arg->getType() 6444 .getCanonicalType() 6445 .getTypePtr() 6446 ->getPointeeType() 6447 .withoutLocalFastQualifiers() == Context.CharTy; 6448 6449 // In C, allow aliasing through `char *`, this is required for AArch64 at 6450 // least. 6451 return true; 6452 }; 6453 6454 // void __va_start(va_list *ap, const char *named_addr, size_t slot_size, 6455 // const char *named_addr); 6456 6457 Expr *Func = Call->getCallee(); 6458 6459 if (Call->getNumArgs() < 3) 6460 return Diag(Call->getEndLoc(), 6461 diag::err_typecheck_call_too_few_args_at_least) 6462 << 0 /*function call*/ << 3 << Call->getNumArgs(); 6463 6464 // Type-check the first argument normally. 6465 if (checkBuiltinArgument(*this, Call, 0)) 6466 return true; 6467 6468 // Check that the current function is variadic. 6469 if (checkVAStartIsInVariadicFunction(*this, Func)) 6470 return true; 6471 6472 // __va_start on Windows does not validate the parameter qualifiers 6473 6474 const Expr *Arg1 = Call->getArg(1)->IgnoreParens(); 6475 const Type *Arg1Ty = Arg1->getType().getCanonicalType().getTypePtr(); 6476 6477 const Expr *Arg2 = Call->getArg(2)->IgnoreParens(); 6478 const Type *Arg2Ty = Arg2->getType().getCanonicalType().getTypePtr(); 6479 6480 const QualType &ConstCharPtrTy = 6481 Context.getPointerType(Context.CharTy.withConst()); 6482 if (!Arg1Ty->isPointerType() || !IsSuitablyTypedFormatArgument(Arg1)) 6483 Diag(Arg1->getBeginLoc(), diag::err_typecheck_convert_incompatible) 6484 << Arg1->getType() << ConstCharPtrTy << 1 /* different class */ 6485 << 0 /* qualifier difference */ 6486 << 3 /* parameter mismatch */ 6487 << 2 << Arg1->getType() << ConstCharPtrTy; 6488 6489 const QualType SizeTy = Context.getSizeType(); 6490 if (Arg2Ty->getCanonicalTypeInternal().withoutLocalFastQualifiers() != SizeTy) 6491 Diag(Arg2->getBeginLoc(), diag::err_typecheck_convert_incompatible) 6492 << Arg2->getType() << SizeTy << 1 /* different class */ 6493 << 0 /* qualifier difference */ 6494 << 3 /* parameter mismatch */ 6495 << 3 << Arg2->getType() << SizeTy; 6496 6497 return false; 6498 } 6499 6500 /// SemaBuiltinUnorderedCompare - Handle functions like __builtin_isgreater and 6501 /// friends. This is declared to take (...), so we have to check everything. 6502 bool Sema::SemaBuiltinUnorderedCompare(CallExpr *TheCall) { 6503 if (checkArgCount(*this, TheCall, 2)) 6504 return true; 6505 6506 ExprResult OrigArg0 = TheCall->getArg(0); 6507 ExprResult OrigArg1 = TheCall->getArg(1); 6508 6509 // Do standard promotions between the two arguments, returning their common 6510 // type. 6511 QualType Res = UsualArithmeticConversions( 6512 OrigArg0, OrigArg1, TheCall->getExprLoc(), ACK_Comparison); 6513 if (OrigArg0.isInvalid() || OrigArg1.isInvalid()) 6514 return true; 6515 6516 // Make sure any conversions are pushed back into the call; this is 6517 // type safe since unordered compare builtins are declared as "_Bool 6518 // foo(...)". 6519 TheCall->setArg(0, OrigArg0.get()); 6520 TheCall->setArg(1, OrigArg1.get()); 6521 6522 if (OrigArg0.get()->isTypeDependent() || OrigArg1.get()->isTypeDependent()) 6523 return false; 6524 6525 // If the common type isn't a real floating type, then the arguments were 6526 // invalid for this operation. 6527 if (Res.isNull() || !Res->isRealFloatingType()) 6528 return Diag(OrigArg0.get()->getBeginLoc(), 6529 diag::err_typecheck_call_invalid_ordered_compare) 6530 << OrigArg0.get()->getType() << OrigArg1.get()->getType() 6531 << SourceRange(OrigArg0.get()->getBeginLoc(), 6532 OrigArg1.get()->getEndLoc()); 6533 6534 return false; 6535 } 6536 6537 /// SemaBuiltinSemaBuiltinFPClassification - Handle functions like 6538 /// __builtin_isnan and friends. This is declared to take (...), so we have 6539 /// to check everything. We expect the last argument to be a floating point 6540 /// value. 6541 bool Sema::SemaBuiltinFPClassification(CallExpr *TheCall, unsigned NumArgs) { 6542 if (checkArgCount(*this, TheCall, NumArgs)) 6543 return true; 6544 6545 // __builtin_fpclassify is the only case where NumArgs != 1, so we can count 6546 // on all preceding parameters just being int. Try all of those. 6547 for (unsigned i = 0; i < NumArgs - 1; ++i) { 6548 Expr *Arg = TheCall->getArg(i); 6549 6550 if (Arg->isTypeDependent()) 6551 return false; 6552 6553 ExprResult Res = PerformImplicitConversion(Arg, Context.IntTy, AA_Passing); 6554 6555 if (Res.isInvalid()) 6556 return true; 6557 TheCall->setArg(i, Res.get()); 6558 } 6559 6560 Expr *OrigArg = TheCall->getArg(NumArgs-1); 6561 6562 if (OrigArg->isTypeDependent()) 6563 return false; 6564 6565 // Usual Unary Conversions will convert half to float, which we want for 6566 // machines that use fp16 conversion intrinsics. Else, we wnat to leave the 6567 // type how it is, but do normal L->Rvalue conversions. 6568 if (Context.getTargetInfo().useFP16ConversionIntrinsics()) 6569 OrigArg = UsualUnaryConversions(OrigArg).get(); 6570 else 6571 OrigArg = DefaultFunctionArrayLvalueConversion(OrigArg).get(); 6572 TheCall->setArg(NumArgs - 1, OrigArg); 6573 6574 // This operation requires a non-_Complex floating-point number. 6575 if (!OrigArg->getType()->isRealFloatingType()) 6576 return Diag(OrigArg->getBeginLoc(), 6577 diag::err_typecheck_call_invalid_unary_fp) 6578 << OrigArg->getType() << OrigArg->getSourceRange(); 6579 6580 return false; 6581 } 6582 6583 /// Perform semantic analysis for a call to __builtin_complex. 6584 bool Sema::SemaBuiltinComplex(CallExpr *TheCall) { 6585 if (checkArgCount(*this, TheCall, 2)) 6586 return true; 6587 6588 bool Dependent = false; 6589 for (unsigned I = 0; I != 2; ++I) { 6590 Expr *Arg = TheCall->getArg(I); 6591 QualType T = Arg->getType(); 6592 if (T->isDependentType()) { 6593 Dependent = true; 6594 continue; 6595 } 6596 6597 // Despite supporting _Complex int, GCC requires a real floating point type 6598 // for the operands of __builtin_complex. 6599 if (!T->isRealFloatingType()) { 6600 return Diag(Arg->getBeginLoc(), diag::err_typecheck_call_requires_real_fp) 6601 << Arg->getType() << Arg->getSourceRange(); 6602 } 6603 6604 ExprResult Converted = DefaultLvalueConversion(Arg); 6605 if (Converted.isInvalid()) 6606 return true; 6607 TheCall->setArg(I, Converted.get()); 6608 } 6609 6610 if (Dependent) { 6611 TheCall->setType(Context.DependentTy); 6612 return false; 6613 } 6614 6615 Expr *Real = TheCall->getArg(0); 6616 Expr *Imag = TheCall->getArg(1); 6617 if (!Context.hasSameType(Real->getType(), Imag->getType())) { 6618 return Diag(Real->getBeginLoc(), 6619 diag::err_typecheck_call_different_arg_types) 6620 << Real->getType() << Imag->getType() 6621 << Real->getSourceRange() << Imag->getSourceRange(); 6622 } 6623 6624 // We don't allow _Complex _Float16 nor _Complex __fp16 as type specifiers; 6625 // don't allow this builtin to form those types either. 6626 // FIXME: Should we allow these types? 6627 if (Real->getType()->isFloat16Type()) 6628 return Diag(TheCall->getBeginLoc(), diag::err_invalid_complex_spec) 6629 << "_Float16"; 6630 if (Real->getType()->isHalfType()) 6631 return Diag(TheCall->getBeginLoc(), diag::err_invalid_complex_spec) 6632 << "half"; 6633 6634 TheCall->setType(Context.getComplexType(Real->getType())); 6635 return false; 6636 } 6637 6638 // Customized Sema Checking for VSX builtins that have the following signature: 6639 // vector [...] builtinName(vector [...], vector [...], const int); 6640 // Which takes the same type of vectors (any legal vector type) for the first 6641 // two arguments and takes compile time constant for the third argument. 6642 // Example builtins are : 6643 // vector double vec_xxpermdi(vector double, vector double, int); 6644 // vector short vec_xxsldwi(vector short, vector short, int); 6645 bool Sema::SemaBuiltinVSX(CallExpr *TheCall) { 6646 unsigned ExpectedNumArgs = 3; 6647 if (checkArgCount(*this, TheCall, ExpectedNumArgs)) 6648 return true; 6649 6650 // Check the third argument is a compile time constant 6651 if (!TheCall->getArg(2)->isIntegerConstantExpr(Context)) 6652 return Diag(TheCall->getBeginLoc(), 6653 diag::err_vsx_builtin_nonconstant_argument) 6654 << 3 /* argument index */ << TheCall->getDirectCallee() 6655 << SourceRange(TheCall->getArg(2)->getBeginLoc(), 6656 TheCall->getArg(2)->getEndLoc()); 6657 6658 QualType Arg1Ty = TheCall->getArg(0)->getType(); 6659 QualType Arg2Ty = TheCall->getArg(1)->getType(); 6660 6661 // Check the type of argument 1 and argument 2 are vectors. 6662 SourceLocation BuiltinLoc = TheCall->getBeginLoc(); 6663 if ((!Arg1Ty->isVectorType() && !Arg1Ty->isDependentType()) || 6664 (!Arg2Ty->isVectorType() && !Arg2Ty->isDependentType())) { 6665 return Diag(BuiltinLoc, diag::err_vec_builtin_non_vector) 6666 << TheCall->getDirectCallee() 6667 << SourceRange(TheCall->getArg(0)->getBeginLoc(), 6668 TheCall->getArg(1)->getEndLoc()); 6669 } 6670 6671 // Check the first two arguments are the same type. 6672 if (!Context.hasSameUnqualifiedType(Arg1Ty, Arg2Ty)) { 6673 return Diag(BuiltinLoc, diag::err_vec_builtin_incompatible_vector) 6674 << TheCall->getDirectCallee() 6675 << SourceRange(TheCall->getArg(0)->getBeginLoc(), 6676 TheCall->getArg(1)->getEndLoc()); 6677 } 6678 6679 // When default clang type checking is turned off and the customized type 6680 // checking is used, the returning type of the function must be explicitly 6681 // set. Otherwise it is _Bool by default. 6682 TheCall->setType(Arg1Ty); 6683 6684 return false; 6685 } 6686 6687 /// SemaBuiltinShuffleVector - Handle __builtin_shufflevector. 6688 // This is declared to take (...), so we have to check everything. 6689 ExprResult Sema::SemaBuiltinShuffleVector(CallExpr *TheCall) { 6690 if (TheCall->getNumArgs() < 2) 6691 return ExprError(Diag(TheCall->getEndLoc(), 6692 diag::err_typecheck_call_too_few_args_at_least) 6693 << 0 /*function call*/ << 2 << TheCall->getNumArgs() 6694 << TheCall->getSourceRange()); 6695 6696 // Determine which of the following types of shufflevector we're checking: 6697 // 1) unary, vector mask: (lhs, mask) 6698 // 2) binary, scalar mask: (lhs, rhs, index, ..., index) 6699 QualType resType = TheCall->getArg(0)->getType(); 6700 unsigned numElements = 0; 6701 6702 if (!TheCall->getArg(0)->isTypeDependent() && 6703 !TheCall->getArg(1)->isTypeDependent()) { 6704 QualType LHSType = TheCall->getArg(0)->getType(); 6705 QualType RHSType = TheCall->getArg(1)->getType(); 6706 6707 if (!LHSType->isVectorType() || !RHSType->isVectorType()) 6708 return ExprError( 6709 Diag(TheCall->getBeginLoc(), diag::err_vec_builtin_non_vector) 6710 << TheCall->getDirectCallee() 6711 << SourceRange(TheCall->getArg(0)->getBeginLoc(), 6712 TheCall->getArg(1)->getEndLoc())); 6713 6714 numElements = LHSType->castAs<VectorType>()->getNumElements(); 6715 unsigned numResElements = TheCall->getNumArgs() - 2; 6716 6717 // Check to see if we have a call with 2 vector arguments, the unary shuffle 6718 // with mask. If so, verify that RHS is an integer vector type with the 6719 // same number of elts as lhs. 6720 if (TheCall->getNumArgs() == 2) { 6721 if (!RHSType->hasIntegerRepresentation() || 6722 RHSType->castAs<VectorType>()->getNumElements() != numElements) 6723 return ExprError(Diag(TheCall->getBeginLoc(), 6724 diag::err_vec_builtin_incompatible_vector) 6725 << TheCall->getDirectCallee() 6726 << SourceRange(TheCall->getArg(1)->getBeginLoc(), 6727 TheCall->getArg(1)->getEndLoc())); 6728 } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) { 6729 return ExprError(Diag(TheCall->getBeginLoc(), 6730 diag::err_vec_builtin_incompatible_vector) 6731 << TheCall->getDirectCallee() 6732 << SourceRange(TheCall->getArg(0)->getBeginLoc(), 6733 TheCall->getArg(1)->getEndLoc())); 6734 } else if (numElements != numResElements) { 6735 QualType eltType = LHSType->castAs<VectorType>()->getElementType(); 6736 resType = Context.getVectorType(eltType, numResElements, 6737 VectorType::GenericVector); 6738 } 6739 } 6740 6741 for (unsigned i = 2; i < TheCall->getNumArgs(); i++) { 6742 if (TheCall->getArg(i)->isTypeDependent() || 6743 TheCall->getArg(i)->isValueDependent()) 6744 continue; 6745 6746 Optional<llvm::APSInt> Result; 6747 if (!(Result = TheCall->getArg(i)->getIntegerConstantExpr(Context))) 6748 return ExprError(Diag(TheCall->getBeginLoc(), 6749 diag::err_shufflevector_nonconstant_argument) 6750 << TheCall->getArg(i)->getSourceRange()); 6751 6752 // Allow -1 which will be translated to undef in the IR. 6753 if (Result->isSigned() && Result->isAllOnesValue()) 6754 continue; 6755 6756 if (Result->getActiveBits() > 64 || 6757 Result->getZExtValue() >= numElements * 2) 6758 return ExprError(Diag(TheCall->getBeginLoc(), 6759 diag::err_shufflevector_argument_too_large) 6760 << TheCall->getArg(i)->getSourceRange()); 6761 } 6762 6763 SmallVector<Expr*, 32> exprs; 6764 6765 for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; i++) { 6766 exprs.push_back(TheCall->getArg(i)); 6767 TheCall->setArg(i, nullptr); 6768 } 6769 6770 return new (Context) ShuffleVectorExpr(Context, exprs, resType, 6771 TheCall->getCallee()->getBeginLoc(), 6772 TheCall->getRParenLoc()); 6773 } 6774 6775 /// SemaConvertVectorExpr - Handle __builtin_convertvector 6776 ExprResult Sema::SemaConvertVectorExpr(Expr *E, TypeSourceInfo *TInfo, 6777 SourceLocation BuiltinLoc, 6778 SourceLocation RParenLoc) { 6779 ExprValueKind VK = VK_PRValue; 6780 ExprObjectKind OK = OK_Ordinary; 6781 QualType DstTy = TInfo->getType(); 6782 QualType SrcTy = E->getType(); 6783 6784 if (!SrcTy->isVectorType() && !SrcTy->isDependentType()) 6785 return ExprError(Diag(BuiltinLoc, 6786 diag::err_convertvector_non_vector) 6787 << E->getSourceRange()); 6788 if (!DstTy->isVectorType() && !DstTy->isDependentType()) 6789 return ExprError(Diag(BuiltinLoc, 6790 diag::err_convertvector_non_vector_type)); 6791 6792 if (!SrcTy->isDependentType() && !DstTy->isDependentType()) { 6793 unsigned SrcElts = SrcTy->castAs<VectorType>()->getNumElements(); 6794 unsigned DstElts = DstTy->castAs<VectorType>()->getNumElements(); 6795 if (SrcElts != DstElts) 6796 return ExprError(Diag(BuiltinLoc, 6797 diag::err_convertvector_incompatible_vector) 6798 << E->getSourceRange()); 6799 } 6800 6801 return new (Context) 6802 ConvertVectorExpr(E, TInfo, DstTy, VK, OK, BuiltinLoc, RParenLoc); 6803 } 6804 6805 /// SemaBuiltinPrefetch - Handle __builtin_prefetch. 6806 // This is declared to take (const void*, ...) and can take two 6807 // optional constant int args. 6808 bool Sema::SemaBuiltinPrefetch(CallExpr *TheCall) { 6809 unsigned NumArgs = TheCall->getNumArgs(); 6810 6811 if (NumArgs > 3) 6812 return Diag(TheCall->getEndLoc(), 6813 diag::err_typecheck_call_too_many_args_at_most) 6814 << 0 /*function call*/ << 3 << NumArgs << TheCall->getSourceRange(); 6815 6816 // Argument 0 is checked for us and the remaining arguments must be 6817 // constant integers. 6818 for (unsigned i = 1; i != NumArgs; ++i) 6819 if (SemaBuiltinConstantArgRange(TheCall, i, 0, i == 1 ? 1 : 3)) 6820 return true; 6821 6822 return false; 6823 } 6824 6825 /// SemaBuiltinArithmeticFence - Handle __arithmetic_fence. 6826 bool Sema::SemaBuiltinArithmeticFence(CallExpr *TheCall) { 6827 if (!Context.getTargetInfo().checkArithmeticFenceSupported()) 6828 return Diag(TheCall->getBeginLoc(), diag::err_builtin_target_unsupported) 6829 << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc()); 6830 if (checkArgCount(*this, TheCall, 1)) 6831 return true; 6832 Expr *Arg = TheCall->getArg(0); 6833 if (Arg->isInstantiationDependent()) 6834 return false; 6835 6836 QualType ArgTy = Arg->getType(); 6837 if (!ArgTy->hasFloatingRepresentation()) 6838 return Diag(TheCall->getEndLoc(), diag::err_typecheck_expect_flt_or_vector) 6839 << ArgTy; 6840 if (Arg->isLValue()) { 6841 ExprResult FirstArg = DefaultLvalueConversion(Arg); 6842 TheCall->setArg(0, FirstArg.get()); 6843 } 6844 TheCall->setType(TheCall->getArg(0)->getType()); 6845 return false; 6846 } 6847 6848 /// SemaBuiltinAssume - Handle __assume (MS Extension). 6849 // __assume does not evaluate its arguments, and should warn if its argument 6850 // has side effects. 6851 bool Sema::SemaBuiltinAssume(CallExpr *TheCall) { 6852 Expr *Arg = TheCall->getArg(0); 6853 if (Arg->isInstantiationDependent()) return false; 6854 6855 if (Arg->HasSideEffects(Context)) 6856 Diag(Arg->getBeginLoc(), diag::warn_assume_side_effects) 6857 << Arg->getSourceRange() 6858 << cast<FunctionDecl>(TheCall->getCalleeDecl())->getIdentifier(); 6859 6860 return false; 6861 } 6862 6863 /// Handle __builtin_alloca_with_align. This is declared 6864 /// as (size_t, size_t) where the second size_t must be a power of 2 greater 6865 /// than 8. 6866 bool Sema::SemaBuiltinAllocaWithAlign(CallExpr *TheCall) { 6867 // The alignment must be a constant integer. 6868 Expr *Arg = TheCall->getArg(1); 6869 6870 // We can't check the value of a dependent argument. 6871 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) { 6872 if (const auto *UE = 6873 dyn_cast<UnaryExprOrTypeTraitExpr>(Arg->IgnoreParenImpCasts())) 6874 if (UE->getKind() == UETT_AlignOf || 6875 UE->getKind() == UETT_PreferredAlignOf) 6876 Diag(TheCall->getBeginLoc(), diag::warn_alloca_align_alignof) 6877 << Arg->getSourceRange(); 6878 6879 llvm::APSInt Result = Arg->EvaluateKnownConstInt(Context); 6880 6881 if (!Result.isPowerOf2()) 6882 return Diag(TheCall->getBeginLoc(), diag::err_alignment_not_power_of_two) 6883 << Arg->getSourceRange(); 6884 6885 if (Result < Context.getCharWidth()) 6886 return Diag(TheCall->getBeginLoc(), diag::err_alignment_too_small) 6887 << (unsigned)Context.getCharWidth() << Arg->getSourceRange(); 6888 6889 if (Result > std::numeric_limits<int32_t>::max()) 6890 return Diag(TheCall->getBeginLoc(), diag::err_alignment_too_big) 6891 << std::numeric_limits<int32_t>::max() << Arg->getSourceRange(); 6892 } 6893 6894 return false; 6895 } 6896 6897 /// Handle __builtin_assume_aligned. This is declared 6898 /// as (const void*, size_t, ...) and can take one optional constant int arg. 6899 bool Sema::SemaBuiltinAssumeAligned(CallExpr *TheCall) { 6900 unsigned NumArgs = TheCall->getNumArgs(); 6901 6902 if (NumArgs > 3) 6903 return Diag(TheCall->getEndLoc(), 6904 diag::err_typecheck_call_too_many_args_at_most) 6905 << 0 /*function call*/ << 3 << NumArgs << TheCall->getSourceRange(); 6906 6907 // The alignment must be a constant integer. 6908 Expr *Arg = TheCall->getArg(1); 6909 6910 // We can't check the value of a dependent argument. 6911 if (!Arg->isTypeDependent() && !Arg->isValueDependent()) { 6912 llvm::APSInt Result; 6913 if (SemaBuiltinConstantArg(TheCall, 1, Result)) 6914 return true; 6915 6916 if (!Result.isPowerOf2()) 6917 return Diag(TheCall->getBeginLoc(), diag::err_alignment_not_power_of_two) 6918 << Arg->getSourceRange(); 6919 6920 if (Result > Sema::MaximumAlignment) 6921 Diag(TheCall->getBeginLoc(), diag::warn_assume_aligned_too_great) 6922 << Arg->getSourceRange() << Sema::MaximumAlignment; 6923 } 6924 6925 if (NumArgs > 2) { 6926 ExprResult Arg(TheCall->getArg(2)); 6927 InitializedEntity Entity = InitializedEntity::InitializeParameter(Context, 6928 Context.getSizeType(), false); 6929 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg); 6930 if (Arg.isInvalid()) return true; 6931 TheCall->setArg(2, Arg.get()); 6932 } 6933 6934 return false; 6935 } 6936 6937 bool Sema::SemaBuiltinOSLogFormat(CallExpr *TheCall) { 6938 unsigned BuiltinID = 6939 cast<FunctionDecl>(TheCall->getCalleeDecl())->getBuiltinID(); 6940 bool IsSizeCall = BuiltinID == Builtin::BI__builtin_os_log_format_buffer_size; 6941 6942 unsigned NumArgs = TheCall->getNumArgs(); 6943 unsigned NumRequiredArgs = IsSizeCall ? 1 : 2; 6944 if (NumArgs < NumRequiredArgs) { 6945 return Diag(TheCall->getEndLoc(), diag::err_typecheck_call_too_few_args) 6946 << 0 /* function call */ << NumRequiredArgs << NumArgs 6947 << TheCall->getSourceRange(); 6948 } 6949 if (NumArgs >= NumRequiredArgs + 0x100) { 6950 return Diag(TheCall->getEndLoc(), 6951 diag::err_typecheck_call_too_many_args_at_most) 6952 << 0 /* function call */ << (NumRequiredArgs + 0xff) << NumArgs 6953 << TheCall->getSourceRange(); 6954 } 6955 unsigned i = 0; 6956 6957 // For formatting call, check buffer arg. 6958 if (!IsSizeCall) { 6959 ExprResult Arg(TheCall->getArg(i)); 6960 InitializedEntity Entity = InitializedEntity::InitializeParameter( 6961 Context, Context.VoidPtrTy, false); 6962 Arg = PerformCopyInitialization(Entity, SourceLocation(), Arg); 6963 if (Arg.isInvalid()) 6964 return true; 6965 TheCall->setArg(i, Arg.get()); 6966 i++; 6967 } 6968 6969 // Check string literal arg. 6970 unsigned FormatIdx = i; 6971 { 6972 ExprResult Arg = CheckOSLogFormatStringArg(TheCall->getArg(i)); 6973 if (Arg.isInvalid()) 6974 return true; 6975 TheCall->setArg(i, Arg.get()); 6976 i++; 6977 } 6978 6979 // Make sure variadic args are scalar. 6980 unsigned FirstDataArg = i; 6981 while (i < NumArgs) { 6982 ExprResult Arg = DefaultVariadicArgumentPromotion( 6983 TheCall->getArg(i), VariadicFunction, nullptr); 6984 if (Arg.isInvalid()) 6985 return true; 6986 CharUnits ArgSize = Context.getTypeSizeInChars(Arg.get()->getType()); 6987 if (ArgSize.getQuantity() >= 0x100) { 6988 return Diag(Arg.get()->getEndLoc(), diag::err_os_log_argument_too_big) 6989 << i << (int)ArgSize.getQuantity() << 0xff 6990 << TheCall->getSourceRange(); 6991 } 6992 TheCall->setArg(i, Arg.get()); 6993 i++; 6994 } 6995 6996 // Check formatting specifiers. NOTE: We're only doing this for the non-size 6997 // call to avoid duplicate diagnostics. 6998 if (!IsSizeCall) { 6999 llvm::SmallBitVector CheckedVarArgs(NumArgs, false); 7000 ArrayRef<const Expr *> Args(TheCall->getArgs(), TheCall->getNumArgs()); 7001 bool Success = CheckFormatArguments( 7002 Args, /*HasVAListArg*/ false, FormatIdx, FirstDataArg, FST_OSLog, 7003 VariadicFunction, TheCall->getBeginLoc(), SourceRange(), 7004 CheckedVarArgs); 7005 if (!Success) 7006 return true; 7007 } 7008 7009 if (IsSizeCall) { 7010 TheCall->setType(Context.getSizeType()); 7011 } else { 7012 TheCall->setType(Context.VoidPtrTy); 7013 } 7014 return false; 7015 } 7016 7017 /// SemaBuiltinConstantArg - Handle a check if argument ArgNum of CallExpr 7018 /// TheCall is a constant expression. 7019 bool Sema::SemaBuiltinConstantArg(CallExpr *TheCall, int ArgNum, 7020 llvm::APSInt &Result) { 7021 Expr *Arg = TheCall->getArg(ArgNum); 7022 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); 7023 FunctionDecl *FDecl = cast<FunctionDecl>(DRE->getDecl()); 7024 7025 if (Arg->isTypeDependent() || Arg->isValueDependent()) return false; 7026 7027 Optional<llvm::APSInt> R; 7028 if (!(R = Arg->getIntegerConstantExpr(Context))) 7029 return Diag(TheCall->getBeginLoc(), diag::err_constant_integer_arg_type) 7030 << FDecl->getDeclName() << Arg->getSourceRange(); 7031 Result = *R; 7032 return false; 7033 } 7034 7035 /// SemaBuiltinConstantArgRange - Handle a check if argument ArgNum of CallExpr 7036 /// TheCall is a constant expression in the range [Low, High]. 7037 bool Sema::SemaBuiltinConstantArgRange(CallExpr *TheCall, int ArgNum, 7038 int Low, int High, bool RangeIsError) { 7039 if (isConstantEvaluated()) 7040 return false; 7041 llvm::APSInt Result; 7042 7043 // We can't check the value of a dependent argument. 7044 Expr *Arg = TheCall->getArg(ArgNum); 7045 if (Arg->isTypeDependent() || Arg->isValueDependent()) 7046 return false; 7047 7048 // Check constant-ness first. 7049 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 7050 return true; 7051 7052 if (Result.getSExtValue() < Low || Result.getSExtValue() > High) { 7053 if (RangeIsError) 7054 return Diag(TheCall->getBeginLoc(), diag::err_argument_invalid_range) 7055 << toString(Result, 10) << Low << High << Arg->getSourceRange(); 7056 else 7057 // Defer the warning until we know if the code will be emitted so that 7058 // dead code can ignore this. 7059 DiagRuntimeBehavior(TheCall->getBeginLoc(), TheCall, 7060 PDiag(diag::warn_argument_invalid_range) 7061 << toString(Result, 10) << Low << High 7062 << Arg->getSourceRange()); 7063 } 7064 7065 return false; 7066 } 7067 7068 /// SemaBuiltinConstantArgMultiple - Handle a check if argument ArgNum of CallExpr 7069 /// TheCall is a constant expression is a multiple of Num.. 7070 bool Sema::SemaBuiltinConstantArgMultiple(CallExpr *TheCall, int ArgNum, 7071 unsigned Num) { 7072 llvm::APSInt Result; 7073 7074 // We can't check the value of a dependent argument. 7075 Expr *Arg = TheCall->getArg(ArgNum); 7076 if (Arg->isTypeDependent() || Arg->isValueDependent()) 7077 return false; 7078 7079 // Check constant-ness first. 7080 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 7081 return true; 7082 7083 if (Result.getSExtValue() % Num != 0) 7084 return Diag(TheCall->getBeginLoc(), diag::err_argument_not_multiple) 7085 << Num << Arg->getSourceRange(); 7086 7087 return false; 7088 } 7089 7090 /// SemaBuiltinConstantArgPower2 - Check if argument ArgNum of TheCall is a 7091 /// constant expression representing a power of 2. 7092 bool Sema::SemaBuiltinConstantArgPower2(CallExpr *TheCall, int ArgNum) { 7093 llvm::APSInt Result; 7094 7095 // We can't check the value of a dependent argument. 7096 Expr *Arg = TheCall->getArg(ArgNum); 7097 if (Arg->isTypeDependent() || Arg->isValueDependent()) 7098 return false; 7099 7100 // Check constant-ness first. 7101 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 7102 return true; 7103 7104 // Bit-twiddling to test for a power of 2: for x > 0, x & (x-1) is zero if 7105 // and only if x is a power of 2. 7106 if (Result.isStrictlyPositive() && (Result & (Result - 1)) == 0) 7107 return false; 7108 7109 return Diag(TheCall->getBeginLoc(), diag::err_argument_not_power_of_2) 7110 << Arg->getSourceRange(); 7111 } 7112 7113 static bool IsShiftedByte(llvm::APSInt Value) { 7114 if (Value.isNegative()) 7115 return false; 7116 7117 // Check if it's a shifted byte, by shifting it down 7118 while (true) { 7119 // If the value fits in the bottom byte, the check passes. 7120 if (Value < 0x100) 7121 return true; 7122 7123 // Otherwise, if the value has _any_ bits in the bottom byte, the check 7124 // fails. 7125 if ((Value & 0xFF) != 0) 7126 return false; 7127 7128 // If the bottom 8 bits are all 0, but something above that is nonzero, 7129 // then shifting the value right by 8 bits won't affect whether it's a 7130 // shifted byte or not. So do that, and go round again. 7131 Value >>= 8; 7132 } 7133 } 7134 7135 /// SemaBuiltinConstantArgShiftedByte - Check if argument ArgNum of TheCall is 7136 /// a constant expression representing an arbitrary byte value shifted left by 7137 /// a multiple of 8 bits. 7138 bool Sema::SemaBuiltinConstantArgShiftedByte(CallExpr *TheCall, int ArgNum, 7139 unsigned ArgBits) { 7140 llvm::APSInt Result; 7141 7142 // We can't check the value of a dependent argument. 7143 Expr *Arg = TheCall->getArg(ArgNum); 7144 if (Arg->isTypeDependent() || Arg->isValueDependent()) 7145 return false; 7146 7147 // Check constant-ness first. 7148 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 7149 return true; 7150 7151 // Truncate to the given size. 7152 Result = Result.getLoBits(ArgBits); 7153 Result.setIsUnsigned(true); 7154 7155 if (IsShiftedByte(Result)) 7156 return false; 7157 7158 return Diag(TheCall->getBeginLoc(), diag::err_argument_not_shifted_byte) 7159 << Arg->getSourceRange(); 7160 } 7161 7162 /// SemaBuiltinConstantArgShiftedByteOr0xFF - Check if argument ArgNum of 7163 /// TheCall is a constant expression representing either a shifted byte value, 7164 /// or a value of the form 0x??FF (i.e. a member of the arithmetic progression 7165 /// 0x00FF, 0x01FF, ..., 0xFFFF). This strange range check is needed for some 7166 /// Arm MVE intrinsics. 7167 bool Sema::SemaBuiltinConstantArgShiftedByteOrXXFF(CallExpr *TheCall, 7168 int ArgNum, 7169 unsigned ArgBits) { 7170 llvm::APSInt Result; 7171 7172 // We can't check the value of a dependent argument. 7173 Expr *Arg = TheCall->getArg(ArgNum); 7174 if (Arg->isTypeDependent() || Arg->isValueDependent()) 7175 return false; 7176 7177 // Check constant-ness first. 7178 if (SemaBuiltinConstantArg(TheCall, ArgNum, Result)) 7179 return true; 7180 7181 // Truncate to the given size. 7182 Result = Result.getLoBits(ArgBits); 7183 Result.setIsUnsigned(true); 7184 7185 // Check to see if it's in either of the required forms. 7186 if (IsShiftedByte(Result) || 7187 (Result > 0 && Result < 0x10000 && (Result & 0xFF) == 0xFF)) 7188 return false; 7189 7190 return Diag(TheCall->getBeginLoc(), 7191 diag::err_argument_not_shifted_byte_or_xxff) 7192 << Arg->getSourceRange(); 7193 } 7194 7195 /// SemaBuiltinARMMemoryTaggingCall - Handle calls of memory tagging extensions 7196 bool Sema::SemaBuiltinARMMemoryTaggingCall(unsigned BuiltinID, CallExpr *TheCall) { 7197 if (BuiltinID == AArch64::BI__builtin_arm_irg) { 7198 if (checkArgCount(*this, TheCall, 2)) 7199 return true; 7200 Expr *Arg0 = TheCall->getArg(0); 7201 Expr *Arg1 = TheCall->getArg(1); 7202 7203 ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0); 7204 if (FirstArg.isInvalid()) 7205 return true; 7206 QualType FirstArgType = FirstArg.get()->getType(); 7207 if (!FirstArgType->isAnyPointerType()) 7208 return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer) 7209 << "first" << FirstArgType << Arg0->getSourceRange(); 7210 TheCall->setArg(0, FirstArg.get()); 7211 7212 ExprResult SecArg = DefaultLvalueConversion(Arg1); 7213 if (SecArg.isInvalid()) 7214 return true; 7215 QualType SecArgType = SecArg.get()->getType(); 7216 if (!SecArgType->isIntegerType()) 7217 return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_integer) 7218 << "second" << SecArgType << Arg1->getSourceRange(); 7219 7220 // Derive the return type from the pointer argument. 7221 TheCall->setType(FirstArgType); 7222 return false; 7223 } 7224 7225 if (BuiltinID == AArch64::BI__builtin_arm_addg) { 7226 if (checkArgCount(*this, TheCall, 2)) 7227 return true; 7228 7229 Expr *Arg0 = TheCall->getArg(0); 7230 ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0); 7231 if (FirstArg.isInvalid()) 7232 return true; 7233 QualType FirstArgType = FirstArg.get()->getType(); 7234 if (!FirstArgType->isAnyPointerType()) 7235 return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer) 7236 << "first" << FirstArgType << Arg0->getSourceRange(); 7237 TheCall->setArg(0, FirstArg.get()); 7238 7239 // Derive the return type from the pointer argument. 7240 TheCall->setType(FirstArgType); 7241 7242 // Second arg must be an constant in range [0,15] 7243 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15); 7244 } 7245 7246 if (BuiltinID == AArch64::BI__builtin_arm_gmi) { 7247 if (checkArgCount(*this, TheCall, 2)) 7248 return true; 7249 Expr *Arg0 = TheCall->getArg(0); 7250 Expr *Arg1 = TheCall->getArg(1); 7251 7252 ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0); 7253 if (FirstArg.isInvalid()) 7254 return true; 7255 QualType FirstArgType = FirstArg.get()->getType(); 7256 if (!FirstArgType->isAnyPointerType()) 7257 return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer) 7258 << "first" << FirstArgType << Arg0->getSourceRange(); 7259 7260 QualType SecArgType = Arg1->getType(); 7261 if (!SecArgType->isIntegerType()) 7262 return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_integer) 7263 << "second" << SecArgType << Arg1->getSourceRange(); 7264 TheCall->setType(Context.IntTy); 7265 return false; 7266 } 7267 7268 if (BuiltinID == AArch64::BI__builtin_arm_ldg || 7269 BuiltinID == AArch64::BI__builtin_arm_stg) { 7270 if (checkArgCount(*this, TheCall, 1)) 7271 return true; 7272 Expr *Arg0 = TheCall->getArg(0); 7273 ExprResult FirstArg = DefaultFunctionArrayLvalueConversion(Arg0); 7274 if (FirstArg.isInvalid()) 7275 return true; 7276 7277 QualType FirstArgType = FirstArg.get()->getType(); 7278 if (!FirstArgType->isAnyPointerType()) 7279 return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_must_be_pointer) 7280 << "first" << FirstArgType << Arg0->getSourceRange(); 7281 TheCall->setArg(0, FirstArg.get()); 7282 7283 // Derive the return type from the pointer argument. 7284 if (BuiltinID == AArch64::BI__builtin_arm_ldg) 7285 TheCall->setType(FirstArgType); 7286 return false; 7287 } 7288 7289 if (BuiltinID == AArch64::BI__builtin_arm_subp) { 7290 Expr *ArgA = TheCall->getArg(0); 7291 Expr *ArgB = TheCall->getArg(1); 7292 7293 ExprResult ArgExprA = DefaultFunctionArrayLvalueConversion(ArgA); 7294 ExprResult ArgExprB = DefaultFunctionArrayLvalueConversion(ArgB); 7295 7296 if (ArgExprA.isInvalid() || ArgExprB.isInvalid()) 7297 return true; 7298 7299 QualType ArgTypeA = ArgExprA.get()->getType(); 7300 QualType ArgTypeB = ArgExprB.get()->getType(); 7301 7302 auto isNull = [&] (Expr *E) -> bool { 7303 return E->isNullPointerConstant( 7304 Context, Expr::NPC_ValueDependentIsNotNull); }; 7305 7306 // argument should be either a pointer or null 7307 if (!ArgTypeA->isAnyPointerType() && !isNull(ArgA)) 7308 return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_null_or_pointer) 7309 << "first" << ArgTypeA << ArgA->getSourceRange(); 7310 7311 if (!ArgTypeB->isAnyPointerType() && !isNull(ArgB)) 7312 return Diag(TheCall->getBeginLoc(), diag::err_memtag_arg_null_or_pointer) 7313 << "second" << ArgTypeB << ArgB->getSourceRange(); 7314 7315 // Ensure Pointee types are compatible 7316 if (ArgTypeA->isAnyPointerType() && !isNull(ArgA) && 7317 ArgTypeB->isAnyPointerType() && !isNull(ArgB)) { 7318 QualType pointeeA = ArgTypeA->getPointeeType(); 7319 QualType pointeeB = ArgTypeB->getPointeeType(); 7320 if (!Context.typesAreCompatible( 7321 Context.getCanonicalType(pointeeA).getUnqualifiedType(), 7322 Context.getCanonicalType(pointeeB).getUnqualifiedType())) { 7323 return Diag(TheCall->getBeginLoc(), diag::err_typecheck_sub_ptr_compatible) 7324 << ArgTypeA << ArgTypeB << ArgA->getSourceRange() 7325 << ArgB->getSourceRange(); 7326 } 7327 } 7328 7329 // at least one argument should be pointer type 7330 if (!ArgTypeA->isAnyPointerType() && !ArgTypeB->isAnyPointerType()) 7331 return Diag(TheCall->getBeginLoc(), diag::err_memtag_any2arg_pointer) 7332 << ArgTypeA << ArgTypeB << ArgA->getSourceRange(); 7333 7334 if (isNull(ArgA)) // adopt type of the other pointer 7335 ArgExprA = ImpCastExprToType(ArgExprA.get(), ArgTypeB, CK_NullToPointer); 7336 7337 if (isNull(ArgB)) 7338 ArgExprB = ImpCastExprToType(ArgExprB.get(), ArgTypeA, CK_NullToPointer); 7339 7340 TheCall->setArg(0, ArgExprA.get()); 7341 TheCall->setArg(1, ArgExprB.get()); 7342 TheCall->setType(Context.LongLongTy); 7343 return false; 7344 } 7345 assert(false && "Unhandled ARM MTE intrinsic"); 7346 return true; 7347 } 7348 7349 /// SemaBuiltinARMSpecialReg - Handle a check if argument ArgNum of CallExpr 7350 /// TheCall is an ARM/AArch64 special register string literal. 7351 bool Sema::SemaBuiltinARMSpecialReg(unsigned BuiltinID, CallExpr *TheCall, 7352 int ArgNum, unsigned ExpectedFieldNum, 7353 bool AllowName) { 7354 bool IsARMBuiltin = BuiltinID == ARM::BI__builtin_arm_rsr64 || 7355 BuiltinID == ARM::BI__builtin_arm_wsr64 || 7356 BuiltinID == ARM::BI__builtin_arm_rsr || 7357 BuiltinID == ARM::BI__builtin_arm_rsrp || 7358 BuiltinID == ARM::BI__builtin_arm_wsr || 7359 BuiltinID == ARM::BI__builtin_arm_wsrp; 7360 bool IsAArch64Builtin = BuiltinID == AArch64::BI__builtin_arm_rsr64 || 7361 BuiltinID == AArch64::BI__builtin_arm_wsr64 || 7362 BuiltinID == AArch64::BI__builtin_arm_rsr || 7363 BuiltinID == AArch64::BI__builtin_arm_rsrp || 7364 BuiltinID == AArch64::BI__builtin_arm_wsr || 7365 BuiltinID == AArch64::BI__builtin_arm_wsrp; 7366 assert((IsARMBuiltin || IsAArch64Builtin) && "Unexpected ARM builtin."); 7367 7368 // We can't check the value of a dependent argument. 7369 Expr *Arg = TheCall->getArg(ArgNum); 7370 if (Arg->isTypeDependent() || Arg->isValueDependent()) 7371 return false; 7372 7373 // Check if the argument is a string literal. 7374 if (!isa<StringLiteral>(Arg->IgnoreParenImpCasts())) 7375 return Diag(TheCall->getBeginLoc(), diag::err_expr_not_string_literal) 7376 << Arg->getSourceRange(); 7377 7378 // Check the type of special register given. 7379 StringRef Reg = cast<StringLiteral>(Arg->IgnoreParenImpCasts())->getString(); 7380 SmallVector<StringRef, 6> Fields; 7381 Reg.split(Fields, ":"); 7382 7383 if (Fields.size() != ExpectedFieldNum && !(AllowName && Fields.size() == 1)) 7384 return Diag(TheCall->getBeginLoc(), diag::err_arm_invalid_specialreg) 7385 << Arg->getSourceRange(); 7386 7387 // If the string is the name of a register then we cannot check that it is 7388 // valid here but if the string is of one the forms described in ACLE then we 7389 // can check that the supplied fields are integers and within the valid 7390 // ranges. 7391 if (Fields.size() > 1) { 7392 bool FiveFields = Fields.size() == 5; 7393 7394 bool ValidString = true; 7395 if (IsARMBuiltin) { 7396 ValidString &= Fields[0].startswith_insensitive("cp") || 7397 Fields[0].startswith_insensitive("p"); 7398 if (ValidString) 7399 Fields[0] = Fields[0].drop_front( 7400 Fields[0].startswith_insensitive("cp") ? 2 : 1); 7401 7402 ValidString &= Fields[2].startswith_insensitive("c"); 7403 if (ValidString) 7404 Fields[2] = Fields[2].drop_front(1); 7405 7406 if (FiveFields) { 7407 ValidString &= Fields[3].startswith_insensitive("c"); 7408 if (ValidString) 7409 Fields[3] = Fields[3].drop_front(1); 7410 } 7411 } 7412 7413 SmallVector<int, 5> Ranges; 7414 if (FiveFields) 7415 Ranges.append({IsAArch64Builtin ? 1 : 15, 7, 15, 15, 7}); 7416 else 7417 Ranges.append({15, 7, 15}); 7418 7419 for (unsigned i=0; i<Fields.size(); ++i) { 7420 int IntField; 7421 ValidString &= !Fields[i].getAsInteger(10, IntField); 7422 ValidString &= (IntField >= 0 && IntField <= Ranges[i]); 7423 } 7424 7425 if (!ValidString) 7426 return Diag(TheCall->getBeginLoc(), diag::err_arm_invalid_specialreg) 7427 << Arg->getSourceRange(); 7428 } else if (IsAArch64Builtin && Fields.size() == 1) { 7429 // If the register name is one of those that appear in the condition below 7430 // and the special register builtin being used is one of the write builtins, 7431 // then we require that the argument provided for writing to the register 7432 // is an integer constant expression. This is because it will be lowered to 7433 // an MSR (immediate) instruction, so we need to know the immediate at 7434 // compile time. 7435 if (TheCall->getNumArgs() != 2) 7436 return false; 7437 7438 std::string RegLower = Reg.lower(); 7439 if (RegLower != "spsel" && RegLower != "daifset" && RegLower != "daifclr" && 7440 RegLower != "pan" && RegLower != "uao") 7441 return false; 7442 7443 return SemaBuiltinConstantArgRange(TheCall, 1, 0, 15); 7444 } 7445 7446 return false; 7447 } 7448 7449 /// SemaBuiltinPPCMMACall - Check the call to a PPC MMA builtin for validity. 7450 /// Emit an error and return true on failure; return false on success. 7451 /// TypeStr is a string containing the type descriptor of the value returned by 7452 /// the builtin and the descriptors of the expected type of the arguments. 7453 bool Sema::SemaBuiltinPPCMMACall(CallExpr *TheCall, const char *TypeStr) { 7454 7455 assert((TypeStr[0] != '\0') && 7456 "Invalid types in PPC MMA builtin declaration"); 7457 7458 unsigned Mask = 0; 7459 unsigned ArgNum = 0; 7460 7461 // The first type in TypeStr is the type of the value returned by the 7462 // builtin. So we first read that type and change the type of TheCall. 7463 QualType type = DecodePPCMMATypeFromStr(Context, TypeStr, Mask); 7464 TheCall->setType(type); 7465 7466 while (*TypeStr != '\0') { 7467 Mask = 0; 7468 QualType ExpectedType = DecodePPCMMATypeFromStr(Context, TypeStr, Mask); 7469 if (ArgNum >= TheCall->getNumArgs()) { 7470 ArgNum++; 7471 break; 7472 } 7473 7474 Expr *Arg = TheCall->getArg(ArgNum); 7475 QualType ArgType = Arg->getType(); 7476 7477 if ((ExpectedType->isVoidPointerType() && !ArgType->isPointerType()) || 7478 (!ExpectedType->isVoidPointerType() && 7479 ArgType.getCanonicalType() != ExpectedType)) 7480 return Diag(Arg->getBeginLoc(), diag::err_typecheck_convert_incompatible) 7481 << ArgType << ExpectedType << 1 << 0 << 0; 7482 7483 // If the value of the Mask is not 0, we have a constraint in the size of 7484 // the integer argument so here we ensure the argument is a constant that 7485 // is in the valid range. 7486 if (Mask != 0 && 7487 SemaBuiltinConstantArgRange(TheCall, ArgNum, 0, Mask, true)) 7488 return true; 7489 7490 ArgNum++; 7491 } 7492 7493 // In case we exited early from the previous loop, there are other types to 7494 // read from TypeStr. So we need to read them all to ensure we have the right 7495 // number of arguments in TheCall and if it is not the case, to display a 7496 // better error message. 7497 while (*TypeStr != '\0') { 7498 (void) DecodePPCMMATypeFromStr(Context, TypeStr, Mask); 7499 ArgNum++; 7500 } 7501 if (checkArgCount(*this, TheCall, ArgNum)) 7502 return true; 7503 7504 return false; 7505 } 7506 7507 /// SemaBuiltinLongjmp - Handle __builtin_longjmp(void *env[5], int val). 7508 /// This checks that the target supports __builtin_longjmp and 7509 /// that val is a constant 1. 7510 bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) { 7511 if (!Context.getTargetInfo().hasSjLjLowering()) 7512 return Diag(TheCall->getBeginLoc(), diag::err_builtin_longjmp_unsupported) 7513 << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc()); 7514 7515 Expr *Arg = TheCall->getArg(1); 7516 llvm::APSInt Result; 7517 7518 // TODO: This is less than ideal. Overload this to take a value. 7519 if (SemaBuiltinConstantArg(TheCall, 1, Result)) 7520 return true; 7521 7522 if (Result != 1) 7523 return Diag(TheCall->getBeginLoc(), diag::err_builtin_longjmp_invalid_val) 7524 << SourceRange(Arg->getBeginLoc(), Arg->getEndLoc()); 7525 7526 return false; 7527 } 7528 7529 /// SemaBuiltinSetjmp - Handle __builtin_setjmp(void *env[5]). 7530 /// This checks that the target supports __builtin_setjmp. 7531 bool Sema::SemaBuiltinSetjmp(CallExpr *TheCall) { 7532 if (!Context.getTargetInfo().hasSjLjLowering()) 7533 return Diag(TheCall->getBeginLoc(), diag::err_builtin_setjmp_unsupported) 7534 << SourceRange(TheCall->getBeginLoc(), TheCall->getEndLoc()); 7535 return false; 7536 } 7537 7538 namespace { 7539 7540 class UncoveredArgHandler { 7541 enum { Unknown = -1, AllCovered = -2 }; 7542 7543 signed FirstUncoveredArg = Unknown; 7544 SmallVector<const Expr *, 4> DiagnosticExprs; 7545 7546 public: 7547 UncoveredArgHandler() = default; 7548 7549 bool hasUncoveredArg() const { 7550 return (FirstUncoveredArg >= 0); 7551 } 7552 7553 unsigned getUncoveredArg() const { 7554 assert(hasUncoveredArg() && "no uncovered argument"); 7555 return FirstUncoveredArg; 7556 } 7557 7558 void setAllCovered() { 7559 // A string has been found with all arguments covered, so clear out 7560 // the diagnostics. 7561 DiagnosticExprs.clear(); 7562 FirstUncoveredArg = AllCovered; 7563 } 7564 7565 void Update(signed NewFirstUncoveredArg, const Expr *StrExpr) { 7566 assert(NewFirstUncoveredArg >= 0 && "Outside range"); 7567 7568 // Don't update if a previous string covers all arguments. 7569 if (FirstUncoveredArg == AllCovered) 7570 return; 7571 7572 // UncoveredArgHandler tracks the highest uncovered argument index 7573 // and with it all the strings that match this index. 7574 if (NewFirstUncoveredArg == FirstUncoveredArg) 7575 DiagnosticExprs.push_back(StrExpr); 7576 else if (NewFirstUncoveredArg > FirstUncoveredArg) { 7577 DiagnosticExprs.clear(); 7578 DiagnosticExprs.push_back(StrExpr); 7579 FirstUncoveredArg = NewFirstUncoveredArg; 7580 } 7581 } 7582 7583 void Diagnose(Sema &S, bool IsFunctionCall, const Expr *ArgExpr); 7584 }; 7585 7586 enum StringLiteralCheckType { 7587 SLCT_NotALiteral, 7588 SLCT_UncheckedLiteral, 7589 SLCT_CheckedLiteral 7590 }; 7591 7592 } // namespace 7593 7594 static void sumOffsets(llvm::APSInt &Offset, llvm::APSInt Addend, 7595 BinaryOperatorKind BinOpKind, 7596 bool AddendIsRight) { 7597 unsigned BitWidth = Offset.getBitWidth(); 7598 unsigned AddendBitWidth = Addend.getBitWidth(); 7599 // There might be negative interim results. 7600 if (Addend.isUnsigned()) { 7601 Addend = Addend.zext(++AddendBitWidth); 7602 Addend.setIsSigned(true); 7603 } 7604 // Adjust the bit width of the APSInts. 7605 if (AddendBitWidth > BitWidth) { 7606 Offset = Offset.sext(AddendBitWidth); 7607 BitWidth = AddendBitWidth; 7608 } else if (BitWidth > AddendBitWidth) { 7609 Addend = Addend.sext(BitWidth); 7610 } 7611 7612 bool Ov = false; 7613 llvm::APSInt ResOffset = Offset; 7614 if (BinOpKind == BO_Add) 7615 ResOffset = Offset.sadd_ov(Addend, Ov); 7616 else { 7617 assert(AddendIsRight && BinOpKind == BO_Sub && 7618 "operator must be add or sub with addend on the right"); 7619 ResOffset = Offset.ssub_ov(Addend, Ov); 7620 } 7621 7622 // We add an offset to a pointer here so we should support an offset as big as 7623 // possible. 7624 if (Ov) { 7625 assert(BitWidth <= std::numeric_limits<unsigned>::max() / 2 && 7626 "index (intermediate) result too big"); 7627 Offset = Offset.sext(2 * BitWidth); 7628 sumOffsets(Offset, Addend, BinOpKind, AddendIsRight); 7629 return; 7630 } 7631 7632 Offset = ResOffset; 7633 } 7634 7635 namespace { 7636 7637 // This is a wrapper class around StringLiteral to support offsetted string 7638 // literals as format strings. It takes the offset into account when returning 7639 // the string and its length or the source locations to display notes correctly. 7640 class FormatStringLiteral { 7641 const StringLiteral *FExpr; 7642 int64_t Offset; 7643 7644 public: 7645 FormatStringLiteral(const StringLiteral *fexpr, int64_t Offset = 0) 7646 : FExpr(fexpr), Offset(Offset) {} 7647 7648 StringRef getString() const { 7649 return FExpr->getString().drop_front(Offset); 7650 } 7651 7652 unsigned getByteLength() const { 7653 return FExpr->getByteLength() - getCharByteWidth() * Offset; 7654 } 7655 7656 unsigned getLength() const { return FExpr->getLength() - Offset; } 7657 unsigned getCharByteWidth() const { return FExpr->getCharByteWidth(); } 7658 7659 StringLiteral::StringKind getKind() const { return FExpr->getKind(); } 7660 7661 QualType getType() const { return FExpr->getType(); } 7662 7663 bool isAscii() const { return FExpr->isAscii(); } 7664 bool isWide() const { return FExpr->isWide(); } 7665 bool isUTF8() const { return FExpr->isUTF8(); } 7666 bool isUTF16() const { return FExpr->isUTF16(); } 7667 bool isUTF32() const { return FExpr->isUTF32(); } 7668 bool isPascal() const { return FExpr->isPascal(); } 7669 7670 SourceLocation getLocationOfByte( 7671 unsigned ByteNo, const SourceManager &SM, const LangOptions &Features, 7672 const TargetInfo &Target, unsigned *StartToken = nullptr, 7673 unsigned *StartTokenByteOffset = nullptr) const { 7674 return FExpr->getLocationOfByte(ByteNo + Offset, SM, Features, Target, 7675 StartToken, StartTokenByteOffset); 7676 } 7677 7678 SourceLocation getBeginLoc() const LLVM_READONLY { 7679 return FExpr->getBeginLoc().getLocWithOffset(Offset); 7680 } 7681 7682 SourceLocation getEndLoc() const LLVM_READONLY { return FExpr->getEndLoc(); } 7683 }; 7684 7685 } // namespace 7686 7687 static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr, 7688 const Expr *OrigFormatExpr, 7689 ArrayRef<const Expr *> Args, 7690 bool HasVAListArg, unsigned format_idx, 7691 unsigned firstDataArg, 7692 Sema::FormatStringType Type, 7693 bool inFunctionCall, 7694 Sema::VariadicCallType CallType, 7695 llvm::SmallBitVector &CheckedVarArgs, 7696 UncoveredArgHandler &UncoveredArg, 7697 bool IgnoreStringsWithoutSpecifiers); 7698 7699 // Determine if an expression is a string literal or constant string. 7700 // If this function returns false on the arguments to a function expecting a 7701 // format string, we will usually need to emit a warning. 7702 // True string literals are then checked by CheckFormatString. 7703 static StringLiteralCheckType 7704 checkFormatStringExpr(Sema &S, const Expr *E, ArrayRef<const Expr *> Args, 7705 bool HasVAListArg, unsigned format_idx, 7706 unsigned firstDataArg, Sema::FormatStringType Type, 7707 Sema::VariadicCallType CallType, bool InFunctionCall, 7708 llvm::SmallBitVector &CheckedVarArgs, 7709 UncoveredArgHandler &UncoveredArg, 7710 llvm::APSInt Offset, 7711 bool IgnoreStringsWithoutSpecifiers = false) { 7712 if (S.isConstantEvaluated()) 7713 return SLCT_NotALiteral; 7714 tryAgain: 7715 assert(Offset.isSigned() && "invalid offset"); 7716 7717 if (E->isTypeDependent() || E->isValueDependent()) 7718 return SLCT_NotALiteral; 7719 7720 E = E->IgnoreParenCasts(); 7721 7722 if (E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)) 7723 // Technically -Wformat-nonliteral does not warn about this case. 7724 // The behavior of printf and friends in this case is implementation 7725 // dependent. Ideally if the format string cannot be null then 7726 // it should have a 'nonnull' attribute in the function prototype. 7727 return SLCT_UncheckedLiteral; 7728 7729 switch (E->getStmtClass()) { 7730 case Stmt::BinaryConditionalOperatorClass: 7731 case Stmt::ConditionalOperatorClass: { 7732 // The expression is a literal if both sub-expressions were, and it was 7733 // completely checked only if both sub-expressions were checked. 7734 const AbstractConditionalOperator *C = 7735 cast<AbstractConditionalOperator>(E); 7736 7737 // Determine whether it is necessary to check both sub-expressions, for 7738 // example, because the condition expression is a constant that can be 7739 // evaluated at compile time. 7740 bool CheckLeft = true, CheckRight = true; 7741 7742 bool Cond; 7743 if (C->getCond()->EvaluateAsBooleanCondition(Cond, S.getASTContext(), 7744 S.isConstantEvaluated())) { 7745 if (Cond) 7746 CheckRight = false; 7747 else 7748 CheckLeft = false; 7749 } 7750 7751 // We need to maintain the offsets for the right and the left hand side 7752 // separately to check if every possible indexed expression is a valid 7753 // string literal. They might have different offsets for different string 7754 // literals in the end. 7755 StringLiteralCheckType Left; 7756 if (!CheckLeft) 7757 Left = SLCT_UncheckedLiteral; 7758 else { 7759 Left = checkFormatStringExpr(S, C->getTrueExpr(), Args, 7760 HasVAListArg, format_idx, firstDataArg, 7761 Type, CallType, InFunctionCall, 7762 CheckedVarArgs, UncoveredArg, Offset, 7763 IgnoreStringsWithoutSpecifiers); 7764 if (Left == SLCT_NotALiteral || !CheckRight) { 7765 return Left; 7766 } 7767 } 7768 7769 StringLiteralCheckType Right = checkFormatStringExpr( 7770 S, C->getFalseExpr(), Args, HasVAListArg, format_idx, firstDataArg, 7771 Type, CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset, 7772 IgnoreStringsWithoutSpecifiers); 7773 7774 return (CheckLeft && Left < Right) ? Left : Right; 7775 } 7776 7777 case Stmt::ImplicitCastExprClass: 7778 E = cast<ImplicitCastExpr>(E)->getSubExpr(); 7779 goto tryAgain; 7780 7781 case Stmt::OpaqueValueExprClass: 7782 if (const Expr *src = cast<OpaqueValueExpr>(E)->getSourceExpr()) { 7783 E = src; 7784 goto tryAgain; 7785 } 7786 return SLCT_NotALiteral; 7787 7788 case Stmt::PredefinedExprClass: 7789 // While __func__, etc., are technically not string literals, they 7790 // cannot contain format specifiers and thus are not a security 7791 // liability. 7792 return SLCT_UncheckedLiteral; 7793 7794 case Stmt::DeclRefExprClass: { 7795 const DeclRefExpr *DR = cast<DeclRefExpr>(E); 7796 7797 // As an exception, do not flag errors for variables binding to 7798 // const string literals. 7799 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) { 7800 bool isConstant = false; 7801 QualType T = DR->getType(); 7802 7803 if (const ArrayType *AT = S.Context.getAsArrayType(T)) { 7804 isConstant = AT->getElementType().isConstant(S.Context); 7805 } else if (const PointerType *PT = T->getAs<PointerType>()) { 7806 isConstant = T.isConstant(S.Context) && 7807 PT->getPointeeType().isConstant(S.Context); 7808 } else if (T->isObjCObjectPointerType()) { 7809 // In ObjC, there is usually no "const ObjectPointer" type, 7810 // so don't check if the pointee type is constant. 7811 isConstant = T.isConstant(S.Context); 7812 } 7813 7814 if (isConstant) { 7815 if (const Expr *Init = VD->getAnyInitializer()) { 7816 // Look through initializers like const char c[] = { "foo" } 7817 if (const InitListExpr *InitList = dyn_cast<InitListExpr>(Init)) { 7818 if (InitList->isStringLiteralInit()) 7819 Init = InitList->getInit(0)->IgnoreParenImpCasts(); 7820 } 7821 return checkFormatStringExpr(S, Init, Args, 7822 HasVAListArg, format_idx, 7823 firstDataArg, Type, CallType, 7824 /*InFunctionCall*/ false, CheckedVarArgs, 7825 UncoveredArg, Offset); 7826 } 7827 } 7828 7829 // For vprintf* functions (i.e., HasVAListArg==true), we add a 7830 // special check to see if the format string is a function parameter 7831 // of the function calling the printf function. If the function 7832 // has an attribute indicating it is a printf-like function, then we 7833 // should suppress warnings concerning non-literals being used in a call 7834 // to a vprintf function. For example: 7835 // 7836 // void 7837 // logmessage(char const *fmt __attribute__ (format (printf, 1, 2)), ...){ 7838 // va_list ap; 7839 // va_start(ap, fmt); 7840 // vprintf(fmt, ap); // Do NOT emit a warning about "fmt". 7841 // ... 7842 // } 7843 if (HasVAListArg) { 7844 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(VD)) { 7845 if (const NamedDecl *ND = dyn_cast<NamedDecl>(PV->getDeclContext())) { 7846 int PVIndex = PV->getFunctionScopeIndex() + 1; 7847 for (const auto *PVFormat : ND->specific_attrs<FormatAttr>()) { 7848 // adjust for implicit parameter 7849 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ND)) 7850 if (MD->isInstance()) 7851 ++PVIndex; 7852 // We also check if the formats are compatible. 7853 // We can't pass a 'scanf' string to a 'printf' function. 7854 if (PVIndex == PVFormat->getFormatIdx() && 7855 Type == S.GetFormatStringType(PVFormat)) 7856 return SLCT_UncheckedLiteral; 7857 } 7858 } 7859 } 7860 } 7861 } 7862 7863 return SLCT_NotALiteral; 7864 } 7865 7866 case Stmt::CallExprClass: 7867 case Stmt::CXXMemberCallExprClass: { 7868 const CallExpr *CE = cast<CallExpr>(E); 7869 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) { 7870 bool IsFirst = true; 7871 StringLiteralCheckType CommonResult; 7872 for (const auto *FA : ND->specific_attrs<FormatArgAttr>()) { 7873 const Expr *Arg = CE->getArg(FA->getFormatIdx().getASTIndex()); 7874 StringLiteralCheckType Result = checkFormatStringExpr( 7875 S, Arg, Args, HasVAListArg, format_idx, firstDataArg, Type, 7876 CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset, 7877 IgnoreStringsWithoutSpecifiers); 7878 if (IsFirst) { 7879 CommonResult = Result; 7880 IsFirst = false; 7881 } 7882 } 7883 if (!IsFirst) 7884 return CommonResult; 7885 7886 if (const auto *FD = dyn_cast<FunctionDecl>(ND)) { 7887 unsigned BuiltinID = FD->getBuiltinID(); 7888 if (BuiltinID == Builtin::BI__builtin___CFStringMakeConstantString || 7889 BuiltinID == Builtin::BI__builtin___NSStringMakeConstantString) { 7890 const Expr *Arg = CE->getArg(0); 7891 return checkFormatStringExpr(S, Arg, Args, 7892 HasVAListArg, format_idx, 7893 firstDataArg, Type, CallType, 7894 InFunctionCall, CheckedVarArgs, 7895 UncoveredArg, Offset, 7896 IgnoreStringsWithoutSpecifiers); 7897 } 7898 } 7899 } 7900 7901 return SLCT_NotALiteral; 7902 } 7903 case Stmt::ObjCMessageExprClass: { 7904 const auto *ME = cast<ObjCMessageExpr>(E); 7905 if (const auto *MD = ME->getMethodDecl()) { 7906 if (const auto *FA = MD->getAttr<FormatArgAttr>()) { 7907 // As a special case heuristic, if we're using the method -[NSBundle 7908 // localizedStringForKey:value:table:], ignore any key strings that lack 7909 // format specifiers. The idea is that if the key doesn't have any 7910 // format specifiers then its probably just a key to map to the 7911 // localized strings. If it does have format specifiers though, then its 7912 // likely that the text of the key is the format string in the 7913 // programmer's language, and should be checked. 7914 const ObjCInterfaceDecl *IFace; 7915 if (MD->isInstanceMethod() && (IFace = MD->getClassInterface()) && 7916 IFace->getIdentifier()->isStr("NSBundle") && 7917 MD->getSelector().isKeywordSelector( 7918 {"localizedStringForKey", "value", "table"})) { 7919 IgnoreStringsWithoutSpecifiers = true; 7920 } 7921 7922 const Expr *Arg = ME->getArg(FA->getFormatIdx().getASTIndex()); 7923 return checkFormatStringExpr( 7924 S, Arg, Args, HasVAListArg, format_idx, firstDataArg, Type, 7925 CallType, InFunctionCall, CheckedVarArgs, UncoveredArg, Offset, 7926 IgnoreStringsWithoutSpecifiers); 7927 } 7928 } 7929 7930 return SLCT_NotALiteral; 7931 } 7932 case Stmt::ObjCStringLiteralClass: 7933 case Stmt::StringLiteralClass: { 7934 const StringLiteral *StrE = nullptr; 7935 7936 if (const ObjCStringLiteral *ObjCFExpr = dyn_cast<ObjCStringLiteral>(E)) 7937 StrE = ObjCFExpr->getString(); 7938 else 7939 StrE = cast<StringLiteral>(E); 7940 7941 if (StrE) { 7942 if (Offset.isNegative() || Offset > StrE->getLength()) { 7943 // TODO: It would be better to have an explicit warning for out of 7944 // bounds literals. 7945 return SLCT_NotALiteral; 7946 } 7947 FormatStringLiteral FStr(StrE, Offset.sextOrTrunc(64).getSExtValue()); 7948 CheckFormatString(S, &FStr, E, Args, HasVAListArg, format_idx, 7949 firstDataArg, Type, InFunctionCall, CallType, 7950 CheckedVarArgs, UncoveredArg, 7951 IgnoreStringsWithoutSpecifiers); 7952 return SLCT_CheckedLiteral; 7953 } 7954 7955 return SLCT_NotALiteral; 7956 } 7957 case Stmt::BinaryOperatorClass: { 7958 const BinaryOperator *BinOp = cast<BinaryOperator>(E); 7959 7960 // A string literal + an int offset is still a string literal. 7961 if (BinOp->isAdditiveOp()) { 7962 Expr::EvalResult LResult, RResult; 7963 7964 bool LIsInt = BinOp->getLHS()->EvaluateAsInt( 7965 LResult, S.Context, Expr::SE_NoSideEffects, S.isConstantEvaluated()); 7966 bool RIsInt = BinOp->getRHS()->EvaluateAsInt( 7967 RResult, S.Context, Expr::SE_NoSideEffects, S.isConstantEvaluated()); 7968 7969 if (LIsInt != RIsInt) { 7970 BinaryOperatorKind BinOpKind = BinOp->getOpcode(); 7971 7972 if (LIsInt) { 7973 if (BinOpKind == BO_Add) { 7974 sumOffsets(Offset, LResult.Val.getInt(), BinOpKind, RIsInt); 7975 E = BinOp->getRHS(); 7976 goto tryAgain; 7977 } 7978 } else { 7979 sumOffsets(Offset, RResult.Val.getInt(), BinOpKind, RIsInt); 7980 E = BinOp->getLHS(); 7981 goto tryAgain; 7982 } 7983 } 7984 } 7985 7986 return SLCT_NotALiteral; 7987 } 7988 case Stmt::UnaryOperatorClass: { 7989 const UnaryOperator *UnaOp = cast<UnaryOperator>(E); 7990 auto ASE = dyn_cast<ArraySubscriptExpr>(UnaOp->getSubExpr()); 7991 if (UnaOp->getOpcode() == UO_AddrOf && ASE) { 7992 Expr::EvalResult IndexResult; 7993 if (ASE->getRHS()->EvaluateAsInt(IndexResult, S.Context, 7994 Expr::SE_NoSideEffects, 7995 S.isConstantEvaluated())) { 7996 sumOffsets(Offset, IndexResult.Val.getInt(), BO_Add, 7997 /*RHS is int*/ true); 7998 E = ASE->getBase(); 7999 goto tryAgain; 8000 } 8001 } 8002 8003 return SLCT_NotALiteral; 8004 } 8005 8006 default: 8007 return SLCT_NotALiteral; 8008 } 8009 } 8010 8011 Sema::FormatStringType Sema::GetFormatStringType(const FormatAttr *Format) { 8012 return llvm::StringSwitch<FormatStringType>(Format->getType()->getName()) 8013 .Case("scanf", FST_Scanf) 8014 .Cases("printf", "printf0", FST_Printf) 8015 .Cases("NSString", "CFString", FST_NSString) 8016 .Case("strftime", FST_Strftime) 8017 .Case("strfmon", FST_Strfmon) 8018 .Cases("kprintf", "cmn_err", "vcmn_err", "zcmn_err", FST_Kprintf) 8019 .Case("freebsd_kprintf", FST_FreeBSDKPrintf) 8020 .Case("os_trace", FST_OSLog) 8021 .Case("os_log", FST_OSLog) 8022 .Default(FST_Unknown); 8023 } 8024 8025 /// CheckFormatArguments - Check calls to printf and scanf (and similar 8026 /// functions) for correct use of format strings. 8027 /// Returns true if a format string has been fully checked. 8028 bool Sema::CheckFormatArguments(const FormatAttr *Format, 8029 ArrayRef<const Expr *> Args, 8030 bool IsCXXMember, 8031 VariadicCallType CallType, 8032 SourceLocation Loc, SourceRange Range, 8033 llvm::SmallBitVector &CheckedVarArgs) { 8034 FormatStringInfo FSI; 8035 if (getFormatStringInfo(Format, IsCXXMember, &FSI)) 8036 return CheckFormatArguments(Args, FSI.HasVAListArg, FSI.FormatIdx, 8037 FSI.FirstDataArg, GetFormatStringType(Format), 8038 CallType, Loc, Range, CheckedVarArgs); 8039 return false; 8040 } 8041 8042 bool Sema::CheckFormatArguments(ArrayRef<const Expr *> Args, 8043 bool HasVAListArg, unsigned format_idx, 8044 unsigned firstDataArg, FormatStringType Type, 8045 VariadicCallType CallType, 8046 SourceLocation Loc, SourceRange Range, 8047 llvm::SmallBitVector &CheckedVarArgs) { 8048 // CHECK: printf/scanf-like function is called with no format string. 8049 if (format_idx >= Args.size()) { 8050 Diag(Loc, diag::warn_missing_format_string) << Range; 8051 return false; 8052 } 8053 8054 const Expr *OrigFormatExpr = Args[format_idx]->IgnoreParenCasts(); 8055 8056 // CHECK: format string is not a string literal. 8057 // 8058 // Dynamically generated format strings are difficult to 8059 // automatically vet at compile time. Requiring that format strings 8060 // are string literals: (1) permits the checking of format strings by 8061 // the compiler and thereby (2) can practically remove the source of 8062 // many format string exploits. 8063 8064 // Format string can be either ObjC string (e.g. @"%d") or 8065 // C string (e.g. "%d") 8066 // ObjC string uses the same format specifiers as C string, so we can use 8067 // the same format string checking logic for both ObjC and C strings. 8068 UncoveredArgHandler UncoveredArg; 8069 StringLiteralCheckType CT = 8070 checkFormatStringExpr(*this, OrigFormatExpr, Args, HasVAListArg, 8071 format_idx, firstDataArg, Type, CallType, 8072 /*IsFunctionCall*/ true, CheckedVarArgs, 8073 UncoveredArg, 8074 /*no string offset*/ llvm::APSInt(64, false) = 0); 8075 8076 // Generate a diagnostic where an uncovered argument is detected. 8077 if (UncoveredArg.hasUncoveredArg()) { 8078 unsigned ArgIdx = UncoveredArg.getUncoveredArg() + firstDataArg; 8079 assert(ArgIdx < Args.size() && "ArgIdx outside bounds"); 8080 UncoveredArg.Diagnose(*this, /*IsFunctionCall*/true, Args[ArgIdx]); 8081 } 8082 8083 if (CT != SLCT_NotALiteral) 8084 // Literal format string found, check done! 8085 return CT == SLCT_CheckedLiteral; 8086 8087 // Strftime is particular as it always uses a single 'time' argument, 8088 // so it is safe to pass a non-literal string. 8089 if (Type == FST_Strftime) 8090 return false; 8091 8092 // Do not emit diag when the string param is a macro expansion and the 8093 // format is either NSString or CFString. This is a hack to prevent 8094 // diag when using the NSLocalizedString and CFCopyLocalizedString macros 8095 // which are usually used in place of NS and CF string literals. 8096 SourceLocation FormatLoc = Args[format_idx]->getBeginLoc(); 8097 if (Type == FST_NSString && SourceMgr.isInSystemMacro(FormatLoc)) 8098 return false; 8099 8100 // If there are no arguments specified, warn with -Wformat-security, otherwise 8101 // warn only with -Wformat-nonliteral. 8102 if (Args.size() == firstDataArg) { 8103 Diag(FormatLoc, diag::warn_format_nonliteral_noargs) 8104 << OrigFormatExpr->getSourceRange(); 8105 switch (Type) { 8106 default: 8107 break; 8108 case FST_Kprintf: 8109 case FST_FreeBSDKPrintf: 8110 case FST_Printf: 8111 Diag(FormatLoc, diag::note_format_security_fixit) 8112 << FixItHint::CreateInsertion(FormatLoc, "\"%s\", "); 8113 break; 8114 case FST_NSString: 8115 Diag(FormatLoc, diag::note_format_security_fixit) 8116 << FixItHint::CreateInsertion(FormatLoc, "@\"%@\", "); 8117 break; 8118 } 8119 } else { 8120 Diag(FormatLoc, diag::warn_format_nonliteral) 8121 << OrigFormatExpr->getSourceRange(); 8122 } 8123 return false; 8124 } 8125 8126 namespace { 8127 8128 class CheckFormatHandler : public analyze_format_string::FormatStringHandler { 8129 protected: 8130 Sema &S; 8131 const FormatStringLiteral *FExpr; 8132 const Expr *OrigFormatExpr; 8133 const Sema::FormatStringType FSType; 8134 const unsigned FirstDataArg; 8135 const unsigned NumDataArgs; 8136 const char *Beg; // Start of format string. 8137 const bool HasVAListArg; 8138 ArrayRef<const Expr *> Args; 8139 unsigned FormatIdx; 8140 llvm::SmallBitVector CoveredArgs; 8141 bool usesPositionalArgs = false; 8142 bool atFirstArg = true; 8143 bool inFunctionCall; 8144 Sema::VariadicCallType CallType; 8145 llvm::SmallBitVector &CheckedVarArgs; 8146 UncoveredArgHandler &UncoveredArg; 8147 8148 public: 8149 CheckFormatHandler(Sema &s, const FormatStringLiteral *fexpr, 8150 const Expr *origFormatExpr, 8151 const Sema::FormatStringType type, unsigned firstDataArg, 8152 unsigned numDataArgs, const char *beg, bool hasVAListArg, 8153 ArrayRef<const Expr *> Args, unsigned formatIdx, 8154 bool inFunctionCall, Sema::VariadicCallType callType, 8155 llvm::SmallBitVector &CheckedVarArgs, 8156 UncoveredArgHandler &UncoveredArg) 8157 : S(s), FExpr(fexpr), OrigFormatExpr(origFormatExpr), FSType(type), 8158 FirstDataArg(firstDataArg), NumDataArgs(numDataArgs), Beg(beg), 8159 HasVAListArg(hasVAListArg), Args(Args), FormatIdx(formatIdx), 8160 inFunctionCall(inFunctionCall), CallType(callType), 8161 CheckedVarArgs(CheckedVarArgs), UncoveredArg(UncoveredArg) { 8162 CoveredArgs.resize(numDataArgs); 8163 CoveredArgs.reset(); 8164 } 8165 8166 void DoneProcessing(); 8167 8168 void HandleIncompleteSpecifier(const char *startSpecifier, 8169 unsigned specifierLen) override; 8170 8171 void HandleInvalidLengthModifier( 8172 const analyze_format_string::FormatSpecifier &FS, 8173 const analyze_format_string::ConversionSpecifier &CS, 8174 const char *startSpecifier, unsigned specifierLen, 8175 unsigned DiagID); 8176 8177 void HandleNonStandardLengthModifier( 8178 const analyze_format_string::FormatSpecifier &FS, 8179 const char *startSpecifier, unsigned specifierLen); 8180 8181 void HandleNonStandardConversionSpecifier( 8182 const analyze_format_string::ConversionSpecifier &CS, 8183 const char *startSpecifier, unsigned specifierLen); 8184 8185 void HandlePosition(const char *startPos, unsigned posLen) override; 8186 8187 void HandleInvalidPosition(const char *startSpecifier, 8188 unsigned specifierLen, 8189 analyze_format_string::PositionContext p) override; 8190 8191 void HandleZeroPosition(const char *startPos, unsigned posLen) override; 8192 8193 void HandleNullChar(const char *nullCharacter) override; 8194 8195 template <typename Range> 8196 static void 8197 EmitFormatDiagnostic(Sema &S, bool inFunctionCall, const Expr *ArgumentExpr, 8198 const PartialDiagnostic &PDiag, SourceLocation StringLoc, 8199 bool IsStringLocation, Range StringRange, 8200 ArrayRef<FixItHint> Fixit = None); 8201 8202 protected: 8203 bool HandleInvalidConversionSpecifier(unsigned argIndex, SourceLocation Loc, 8204 const char *startSpec, 8205 unsigned specifierLen, 8206 const char *csStart, unsigned csLen); 8207 8208 void HandlePositionalNonpositionalArgs(SourceLocation Loc, 8209 const char *startSpec, 8210 unsigned specifierLen); 8211 8212 SourceRange getFormatStringRange(); 8213 CharSourceRange getSpecifierRange(const char *startSpecifier, 8214 unsigned specifierLen); 8215 SourceLocation getLocationOfByte(const char *x); 8216 8217 const Expr *getDataArg(unsigned i) const; 8218 8219 bool CheckNumArgs(const analyze_format_string::FormatSpecifier &FS, 8220 const analyze_format_string::ConversionSpecifier &CS, 8221 const char *startSpecifier, unsigned specifierLen, 8222 unsigned argIndex); 8223 8224 template <typename Range> 8225 void EmitFormatDiagnostic(PartialDiagnostic PDiag, SourceLocation StringLoc, 8226 bool IsStringLocation, Range StringRange, 8227 ArrayRef<FixItHint> Fixit = None); 8228 }; 8229 8230 } // namespace 8231 8232 SourceRange CheckFormatHandler::getFormatStringRange() { 8233 return OrigFormatExpr->getSourceRange(); 8234 } 8235 8236 CharSourceRange CheckFormatHandler:: 8237 getSpecifierRange(const char *startSpecifier, unsigned specifierLen) { 8238 SourceLocation Start = getLocationOfByte(startSpecifier); 8239 SourceLocation End = getLocationOfByte(startSpecifier + specifierLen - 1); 8240 8241 // Advance the end SourceLocation by one due to half-open ranges. 8242 End = End.getLocWithOffset(1); 8243 8244 return CharSourceRange::getCharRange(Start, End); 8245 } 8246 8247 SourceLocation CheckFormatHandler::getLocationOfByte(const char *x) { 8248 return FExpr->getLocationOfByte(x - Beg, S.getSourceManager(), 8249 S.getLangOpts(), S.Context.getTargetInfo()); 8250 } 8251 8252 void CheckFormatHandler::HandleIncompleteSpecifier(const char *startSpecifier, 8253 unsigned specifierLen){ 8254 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_incomplete_specifier), 8255 getLocationOfByte(startSpecifier), 8256 /*IsStringLocation*/true, 8257 getSpecifierRange(startSpecifier, specifierLen)); 8258 } 8259 8260 void CheckFormatHandler::HandleInvalidLengthModifier( 8261 const analyze_format_string::FormatSpecifier &FS, 8262 const analyze_format_string::ConversionSpecifier &CS, 8263 const char *startSpecifier, unsigned specifierLen, unsigned DiagID) { 8264 using namespace analyze_format_string; 8265 8266 const LengthModifier &LM = FS.getLengthModifier(); 8267 CharSourceRange LMRange = getSpecifierRange(LM.getStart(), LM.getLength()); 8268 8269 // See if we know how to fix this length modifier. 8270 Optional<LengthModifier> FixedLM = FS.getCorrectedLengthModifier(); 8271 if (FixedLM) { 8272 EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(), 8273 getLocationOfByte(LM.getStart()), 8274 /*IsStringLocation*/true, 8275 getSpecifierRange(startSpecifier, specifierLen)); 8276 8277 S.Diag(getLocationOfByte(LM.getStart()), diag::note_format_fix_specifier) 8278 << FixedLM->toString() 8279 << FixItHint::CreateReplacement(LMRange, FixedLM->toString()); 8280 8281 } else { 8282 FixItHint Hint; 8283 if (DiagID == diag::warn_format_nonsensical_length) 8284 Hint = FixItHint::CreateRemoval(LMRange); 8285 8286 EmitFormatDiagnostic(S.PDiag(DiagID) << LM.toString() << CS.toString(), 8287 getLocationOfByte(LM.getStart()), 8288 /*IsStringLocation*/true, 8289 getSpecifierRange(startSpecifier, specifierLen), 8290 Hint); 8291 } 8292 } 8293 8294 void CheckFormatHandler::HandleNonStandardLengthModifier( 8295 const analyze_format_string::FormatSpecifier &FS, 8296 const char *startSpecifier, unsigned specifierLen) { 8297 using namespace analyze_format_string; 8298 8299 const LengthModifier &LM = FS.getLengthModifier(); 8300 CharSourceRange LMRange = getSpecifierRange(LM.getStart(), LM.getLength()); 8301 8302 // See if we know how to fix this length modifier. 8303 Optional<LengthModifier> FixedLM = FS.getCorrectedLengthModifier(); 8304 if (FixedLM) { 8305 EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard) 8306 << LM.toString() << 0, 8307 getLocationOfByte(LM.getStart()), 8308 /*IsStringLocation*/true, 8309 getSpecifierRange(startSpecifier, specifierLen)); 8310 8311 S.Diag(getLocationOfByte(LM.getStart()), diag::note_format_fix_specifier) 8312 << FixedLM->toString() 8313 << FixItHint::CreateReplacement(LMRange, FixedLM->toString()); 8314 8315 } else { 8316 EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard) 8317 << LM.toString() << 0, 8318 getLocationOfByte(LM.getStart()), 8319 /*IsStringLocation*/true, 8320 getSpecifierRange(startSpecifier, specifierLen)); 8321 } 8322 } 8323 8324 void CheckFormatHandler::HandleNonStandardConversionSpecifier( 8325 const analyze_format_string::ConversionSpecifier &CS, 8326 const char *startSpecifier, unsigned specifierLen) { 8327 using namespace analyze_format_string; 8328 8329 // See if we know how to fix this conversion specifier. 8330 Optional<ConversionSpecifier> FixedCS = CS.getStandardSpecifier(); 8331 if (FixedCS) { 8332 EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard) 8333 << CS.toString() << /*conversion specifier*/1, 8334 getLocationOfByte(CS.getStart()), 8335 /*IsStringLocation*/true, 8336 getSpecifierRange(startSpecifier, specifierLen)); 8337 8338 CharSourceRange CSRange = getSpecifierRange(CS.getStart(), CS.getLength()); 8339 S.Diag(getLocationOfByte(CS.getStart()), diag::note_format_fix_specifier) 8340 << FixedCS->toString() 8341 << FixItHint::CreateReplacement(CSRange, FixedCS->toString()); 8342 } else { 8343 EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard) 8344 << CS.toString() << /*conversion specifier*/1, 8345 getLocationOfByte(CS.getStart()), 8346 /*IsStringLocation*/true, 8347 getSpecifierRange(startSpecifier, specifierLen)); 8348 } 8349 } 8350 8351 void CheckFormatHandler::HandlePosition(const char *startPos, 8352 unsigned posLen) { 8353 EmitFormatDiagnostic(S.PDiag(diag::warn_format_non_standard_positional_arg), 8354 getLocationOfByte(startPos), 8355 /*IsStringLocation*/true, 8356 getSpecifierRange(startPos, posLen)); 8357 } 8358 8359 void 8360 CheckFormatHandler::HandleInvalidPosition(const char *startPos, unsigned posLen, 8361 analyze_format_string::PositionContext p) { 8362 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_positional_specifier) 8363 << (unsigned) p, 8364 getLocationOfByte(startPos), /*IsStringLocation*/true, 8365 getSpecifierRange(startPos, posLen)); 8366 } 8367 8368 void CheckFormatHandler::HandleZeroPosition(const char *startPos, 8369 unsigned posLen) { 8370 EmitFormatDiagnostic(S.PDiag(diag::warn_format_zero_positional_specifier), 8371 getLocationOfByte(startPos), 8372 /*IsStringLocation*/true, 8373 getSpecifierRange(startPos, posLen)); 8374 } 8375 8376 void CheckFormatHandler::HandleNullChar(const char *nullCharacter) { 8377 if (!isa<ObjCStringLiteral>(OrigFormatExpr)) { 8378 // The presence of a null character is likely an error. 8379 EmitFormatDiagnostic( 8380 S.PDiag(diag::warn_printf_format_string_contains_null_char), 8381 getLocationOfByte(nullCharacter), /*IsStringLocation*/true, 8382 getFormatStringRange()); 8383 } 8384 } 8385 8386 // Note that this may return NULL if there was an error parsing or building 8387 // one of the argument expressions. 8388 const Expr *CheckFormatHandler::getDataArg(unsigned i) const { 8389 return Args[FirstDataArg + i]; 8390 } 8391 8392 void CheckFormatHandler::DoneProcessing() { 8393 // Does the number of data arguments exceed the number of 8394 // format conversions in the format string? 8395 if (!HasVAListArg) { 8396 // Find any arguments that weren't covered. 8397 CoveredArgs.flip(); 8398 signed notCoveredArg = CoveredArgs.find_first(); 8399 if (notCoveredArg >= 0) { 8400 assert((unsigned)notCoveredArg < NumDataArgs); 8401 UncoveredArg.Update(notCoveredArg, OrigFormatExpr); 8402 } else { 8403 UncoveredArg.setAllCovered(); 8404 } 8405 } 8406 } 8407 8408 void UncoveredArgHandler::Diagnose(Sema &S, bool IsFunctionCall, 8409 const Expr *ArgExpr) { 8410 assert(hasUncoveredArg() && DiagnosticExprs.size() > 0 && 8411 "Invalid state"); 8412 8413 if (!ArgExpr) 8414 return; 8415 8416 SourceLocation Loc = ArgExpr->getBeginLoc(); 8417 8418 if (S.getSourceManager().isInSystemMacro(Loc)) 8419 return; 8420 8421 PartialDiagnostic PDiag = S.PDiag(diag::warn_printf_data_arg_not_used); 8422 for (auto E : DiagnosticExprs) 8423 PDiag << E->getSourceRange(); 8424 8425 CheckFormatHandler::EmitFormatDiagnostic( 8426 S, IsFunctionCall, DiagnosticExprs[0], 8427 PDiag, Loc, /*IsStringLocation*/false, 8428 DiagnosticExprs[0]->getSourceRange()); 8429 } 8430 8431 bool 8432 CheckFormatHandler::HandleInvalidConversionSpecifier(unsigned argIndex, 8433 SourceLocation Loc, 8434 const char *startSpec, 8435 unsigned specifierLen, 8436 const char *csStart, 8437 unsigned csLen) { 8438 bool keepGoing = true; 8439 if (argIndex < NumDataArgs) { 8440 // Consider the argument coverered, even though the specifier doesn't 8441 // make sense. 8442 CoveredArgs.set(argIndex); 8443 } 8444 else { 8445 // If argIndex exceeds the number of data arguments we 8446 // don't issue a warning because that is just a cascade of warnings (and 8447 // they may have intended '%%' anyway). We don't want to continue processing 8448 // the format string after this point, however, as we will like just get 8449 // gibberish when trying to match arguments. 8450 keepGoing = false; 8451 } 8452 8453 StringRef Specifier(csStart, csLen); 8454 8455 // If the specifier in non-printable, it could be the first byte of a UTF-8 8456 // sequence. In that case, print the UTF-8 code point. If not, print the byte 8457 // hex value. 8458 std::string CodePointStr; 8459 if (!llvm::sys::locale::isPrint(*csStart)) { 8460 llvm::UTF32 CodePoint; 8461 const llvm::UTF8 **B = reinterpret_cast<const llvm::UTF8 **>(&csStart); 8462 const llvm::UTF8 *E = 8463 reinterpret_cast<const llvm::UTF8 *>(csStart + csLen); 8464 llvm::ConversionResult Result = 8465 llvm::convertUTF8Sequence(B, E, &CodePoint, llvm::strictConversion); 8466 8467 if (Result != llvm::conversionOK) { 8468 unsigned char FirstChar = *csStart; 8469 CodePoint = (llvm::UTF32)FirstChar; 8470 } 8471 8472 llvm::raw_string_ostream OS(CodePointStr); 8473 if (CodePoint < 256) 8474 OS << "\\x" << llvm::format("%02x", CodePoint); 8475 else if (CodePoint <= 0xFFFF) 8476 OS << "\\u" << llvm::format("%04x", CodePoint); 8477 else 8478 OS << "\\U" << llvm::format("%08x", CodePoint); 8479 OS.flush(); 8480 Specifier = CodePointStr; 8481 } 8482 8483 EmitFormatDiagnostic( 8484 S.PDiag(diag::warn_format_invalid_conversion) << Specifier, Loc, 8485 /*IsStringLocation*/ true, getSpecifierRange(startSpec, specifierLen)); 8486 8487 return keepGoing; 8488 } 8489 8490 void 8491 CheckFormatHandler::HandlePositionalNonpositionalArgs(SourceLocation Loc, 8492 const char *startSpec, 8493 unsigned specifierLen) { 8494 EmitFormatDiagnostic( 8495 S.PDiag(diag::warn_format_mix_positional_nonpositional_args), 8496 Loc, /*isStringLoc*/true, getSpecifierRange(startSpec, specifierLen)); 8497 } 8498 8499 bool 8500 CheckFormatHandler::CheckNumArgs( 8501 const analyze_format_string::FormatSpecifier &FS, 8502 const analyze_format_string::ConversionSpecifier &CS, 8503 const char *startSpecifier, unsigned specifierLen, unsigned argIndex) { 8504 8505 if (argIndex >= NumDataArgs) { 8506 PartialDiagnostic PDiag = FS.usesPositionalArg() 8507 ? (S.PDiag(diag::warn_printf_positional_arg_exceeds_data_args) 8508 << (argIndex+1) << NumDataArgs) 8509 : S.PDiag(diag::warn_printf_insufficient_data_args); 8510 EmitFormatDiagnostic( 8511 PDiag, getLocationOfByte(CS.getStart()), /*IsStringLocation*/true, 8512 getSpecifierRange(startSpecifier, specifierLen)); 8513 8514 // Since more arguments than conversion tokens are given, by extension 8515 // all arguments are covered, so mark this as so. 8516 UncoveredArg.setAllCovered(); 8517 return false; 8518 } 8519 return true; 8520 } 8521 8522 template<typename Range> 8523 void CheckFormatHandler::EmitFormatDiagnostic(PartialDiagnostic PDiag, 8524 SourceLocation Loc, 8525 bool IsStringLocation, 8526 Range StringRange, 8527 ArrayRef<FixItHint> FixIt) { 8528 EmitFormatDiagnostic(S, inFunctionCall, Args[FormatIdx], PDiag, 8529 Loc, IsStringLocation, StringRange, FixIt); 8530 } 8531 8532 /// If the format string is not within the function call, emit a note 8533 /// so that the function call and string are in diagnostic messages. 8534 /// 8535 /// \param InFunctionCall if true, the format string is within the function 8536 /// call and only one diagnostic message will be produced. Otherwise, an 8537 /// extra note will be emitted pointing to location of the format string. 8538 /// 8539 /// \param ArgumentExpr the expression that is passed as the format string 8540 /// argument in the function call. Used for getting locations when two 8541 /// diagnostics are emitted. 8542 /// 8543 /// \param PDiag the callee should already have provided any strings for the 8544 /// diagnostic message. This function only adds locations and fixits 8545 /// to diagnostics. 8546 /// 8547 /// \param Loc primary location for diagnostic. If two diagnostics are 8548 /// required, one will be at Loc and a new SourceLocation will be created for 8549 /// the other one. 8550 /// 8551 /// \param IsStringLocation if true, Loc points to the format string should be 8552 /// used for the note. Otherwise, Loc points to the argument list and will 8553 /// be used with PDiag. 8554 /// 8555 /// \param StringRange some or all of the string to highlight. This is 8556 /// templated so it can accept either a CharSourceRange or a SourceRange. 8557 /// 8558 /// \param FixIt optional fix it hint for the format string. 8559 template <typename Range> 8560 void CheckFormatHandler::EmitFormatDiagnostic( 8561 Sema &S, bool InFunctionCall, const Expr *ArgumentExpr, 8562 const PartialDiagnostic &PDiag, SourceLocation Loc, bool IsStringLocation, 8563 Range StringRange, ArrayRef<FixItHint> FixIt) { 8564 if (InFunctionCall) { 8565 const Sema::SemaDiagnosticBuilder &D = S.Diag(Loc, PDiag); 8566 D << StringRange; 8567 D << FixIt; 8568 } else { 8569 S.Diag(IsStringLocation ? ArgumentExpr->getExprLoc() : Loc, PDiag) 8570 << ArgumentExpr->getSourceRange(); 8571 8572 const Sema::SemaDiagnosticBuilder &Note = 8573 S.Diag(IsStringLocation ? Loc : StringRange.getBegin(), 8574 diag::note_format_string_defined); 8575 8576 Note << StringRange; 8577 Note << FixIt; 8578 } 8579 } 8580 8581 //===--- CHECK: Printf format string checking ------------------------------===// 8582 8583 namespace { 8584 8585 class CheckPrintfHandler : public CheckFormatHandler { 8586 public: 8587 CheckPrintfHandler(Sema &s, const FormatStringLiteral *fexpr, 8588 const Expr *origFormatExpr, 8589 const Sema::FormatStringType type, unsigned firstDataArg, 8590 unsigned numDataArgs, bool isObjC, const char *beg, 8591 bool hasVAListArg, ArrayRef<const Expr *> Args, 8592 unsigned formatIdx, bool inFunctionCall, 8593 Sema::VariadicCallType CallType, 8594 llvm::SmallBitVector &CheckedVarArgs, 8595 UncoveredArgHandler &UncoveredArg) 8596 : CheckFormatHandler(s, fexpr, origFormatExpr, type, firstDataArg, 8597 numDataArgs, beg, hasVAListArg, Args, formatIdx, 8598 inFunctionCall, CallType, CheckedVarArgs, 8599 UncoveredArg) {} 8600 8601 bool isObjCContext() const { return FSType == Sema::FST_NSString; } 8602 8603 /// Returns true if '%@' specifiers are allowed in the format string. 8604 bool allowsObjCArg() const { 8605 return FSType == Sema::FST_NSString || FSType == Sema::FST_OSLog || 8606 FSType == Sema::FST_OSTrace; 8607 } 8608 8609 bool HandleInvalidPrintfConversionSpecifier( 8610 const analyze_printf::PrintfSpecifier &FS, 8611 const char *startSpecifier, 8612 unsigned specifierLen) override; 8613 8614 void handleInvalidMaskType(StringRef MaskType) override; 8615 8616 bool HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier &FS, 8617 const char *startSpecifier, 8618 unsigned specifierLen) override; 8619 bool checkFormatExpr(const analyze_printf::PrintfSpecifier &FS, 8620 const char *StartSpecifier, 8621 unsigned SpecifierLen, 8622 const Expr *E); 8623 8624 bool HandleAmount(const analyze_format_string::OptionalAmount &Amt, unsigned k, 8625 const char *startSpecifier, unsigned specifierLen); 8626 void HandleInvalidAmount(const analyze_printf::PrintfSpecifier &FS, 8627 const analyze_printf::OptionalAmount &Amt, 8628 unsigned type, 8629 const char *startSpecifier, unsigned specifierLen); 8630 void HandleFlag(const analyze_printf::PrintfSpecifier &FS, 8631 const analyze_printf::OptionalFlag &flag, 8632 const char *startSpecifier, unsigned specifierLen); 8633 void HandleIgnoredFlag(const analyze_printf::PrintfSpecifier &FS, 8634 const analyze_printf::OptionalFlag &ignoredFlag, 8635 const analyze_printf::OptionalFlag &flag, 8636 const char *startSpecifier, unsigned specifierLen); 8637 bool checkForCStrMembers(const analyze_printf::ArgType &AT, 8638 const Expr *E); 8639 8640 void HandleEmptyObjCModifierFlag(const char *startFlag, 8641 unsigned flagLen) override; 8642 8643 void HandleInvalidObjCModifierFlag(const char *startFlag, 8644 unsigned flagLen) override; 8645 8646 void HandleObjCFlagsWithNonObjCConversion(const char *flagsStart, 8647 const char *flagsEnd, 8648 const char *conversionPosition) 8649 override; 8650 }; 8651 8652 } // namespace 8653 8654 bool CheckPrintfHandler::HandleInvalidPrintfConversionSpecifier( 8655 const analyze_printf::PrintfSpecifier &FS, 8656 const char *startSpecifier, 8657 unsigned specifierLen) { 8658 const analyze_printf::PrintfConversionSpecifier &CS = 8659 FS.getConversionSpecifier(); 8660 8661 return HandleInvalidConversionSpecifier(FS.getArgIndex(), 8662 getLocationOfByte(CS.getStart()), 8663 startSpecifier, specifierLen, 8664 CS.getStart(), CS.getLength()); 8665 } 8666 8667 void CheckPrintfHandler::handleInvalidMaskType(StringRef MaskType) { 8668 S.Diag(getLocationOfByte(MaskType.data()), diag::err_invalid_mask_type_size); 8669 } 8670 8671 bool CheckPrintfHandler::HandleAmount( 8672 const analyze_format_string::OptionalAmount &Amt, 8673 unsigned k, const char *startSpecifier, 8674 unsigned specifierLen) { 8675 if (Amt.hasDataArgument()) { 8676 if (!HasVAListArg) { 8677 unsigned argIndex = Amt.getArgIndex(); 8678 if (argIndex >= NumDataArgs) { 8679 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_missing_arg) 8680 << k, 8681 getLocationOfByte(Amt.getStart()), 8682 /*IsStringLocation*/true, 8683 getSpecifierRange(startSpecifier, specifierLen)); 8684 // Don't do any more checking. We will just emit 8685 // spurious errors. 8686 return false; 8687 } 8688 8689 // Type check the data argument. It should be an 'int'. 8690 // Although not in conformance with C99, we also allow the argument to be 8691 // an 'unsigned int' as that is a reasonably safe case. GCC also 8692 // doesn't emit a warning for that case. 8693 CoveredArgs.set(argIndex); 8694 const Expr *Arg = getDataArg(argIndex); 8695 if (!Arg) 8696 return false; 8697 8698 QualType T = Arg->getType(); 8699 8700 const analyze_printf::ArgType &AT = Amt.getArgType(S.Context); 8701 assert(AT.isValid()); 8702 8703 if (!AT.matchesType(S.Context, T)) { 8704 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_asterisk_wrong_type) 8705 << k << AT.getRepresentativeTypeName(S.Context) 8706 << T << Arg->getSourceRange(), 8707 getLocationOfByte(Amt.getStart()), 8708 /*IsStringLocation*/true, 8709 getSpecifierRange(startSpecifier, specifierLen)); 8710 // Don't do any more checking. We will just emit 8711 // spurious errors. 8712 return false; 8713 } 8714 } 8715 } 8716 return true; 8717 } 8718 8719 void CheckPrintfHandler::HandleInvalidAmount( 8720 const analyze_printf::PrintfSpecifier &FS, 8721 const analyze_printf::OptionalAmount &Amt, 8722 unsigned type, 8723 const char *startSpecifier, 8724 unsigned specifierLen) { 8725 const analyze_printf::PrintfConversionSpecifier &CS = 8726 FS.getConversionSpecifier(); 8727 8728 FixItHint fixit = 8729 Amt.getHowSpecified() == analyze_printf::OptionalAmount::Constant 8730 ? FixItHint::CreateRemoval(getSpecifierRange(Amt.getStart(), 8731 Amt.getConstantLength())) 8732 : FixItHint(); 8733 8734 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_optional_amount) 8735 << type << CS.toString(), 8736 getLocationOfByte(Amt.getStart()), 8737 /*IsStringLocation*/true, 8738 getSpecifierRange(startSpecifier, specifierLen), 8739 fixit); 8740 } 8741 8742 void CheckPrintfHandler::HandleFlag(const analyze_printf::PrintfSpecifier &FS, 8743 const analyze_printf::OptionalFlag &flag, 8744 const char *startSpecifier, 8745 unsigned specifierLen) { 8746 // Warn about pointless flag with a fixit removal. 8747 const analyze_printf::PrintfConversionSpecifier &CS = 8748 FS.getConversionSpecifier(); 8749 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_nonsensical_flag) 8750 << flag.toString() << CS.toString(), 8751 getLocationOfByte(flag.getPosition()), 8752 /*IsStringLocation*/true, 8753 getSpecifierRange(startSpecifier, specifierLen), 8754 FixItHint::CreateRemoval( 8755 getSpecifierRange(flag.getPosition(), 1))); 8756 } 8757 8758 void CheckPrintfHandler::HandleIgnoredFlag( 8759 const analyze_printf::PrintfSpecifier &FS, 8760 const analyze_printf::OptionalFlag &ignoredFlag, 8761 const analyze_printf::OptionalFlag &flag, 8762 const char *startSpecifier, 8763 unsigned specifierLen) { 8764 // Warn about ignored flag with a fixit removal. 8765 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_ignored_flag) 8766 << ignoredFlag.toString() << flag.toString(), 8767 getLocationOfByte(ignoredFlag.getPosition()), 8768 /*IsStringLocation*/true, 8769 getSpecifierRange(startSpecifier, specifierLen), 8770 FixItHint::CreateRemoval( 8771 getSpecifierRange(ignoredFlag.getPosition(), 1))); 8772 } 8773 8774 void CheckPrintfHandler::HandleEmptyObjCModifierFlag(const char *startFlag, 8775 unsigned flagLen) { 8776 // Warn about an empty flag. 8777 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_empty_objc_flag), 8778 getLocationOfByte(startFlag), 8779 /*IsStringLocation*/true, 8780 getSpecifierRange(startFlag, flagLen)); 8781 } 8782 8783 void CheckPrintfHandler::HandleInvalidObjCModifierFlag(const char *startFlag, 8784 unsigned flagLen) { 8785 // Warn about an invalid flag. 8786 auto Range = getSpecifierRange(startFlag, flagLen); 8787 StringRef flag(startFlag, flagLen); 8788 EmitFormatDiagnostic(S.PDiag(diag::warn_printf_invalid_objc_flag) << flag, 8789 getLocationOfByte(startFlag), 8790 /*IsStringLocation*/true, 8791 Range, FixItHint::CreateRemoval(Range)); 8792 } 8793 8794 void CheckPrintfHandler::HandleObjCFlagsWithNonObjCConversion( 8795 const char *flagsStart, const char *flagsEnd, const char *conversionPosition) { 8796 // Warn about using '[...]' without a '@' conversion. 8797 auto Range = getSpecifierRange(flagsStart, flagsEnd - flagsStart + 1); 8798 auto diag = diag::warn_printf_ObjCflags_without_ObjCConversion; 8799 EmitFormatDiagnostic(S.PDiag(diag) << StringRef(conversionPosition, 1), 8800 getLocationOfByte(conversionPosition), 8801 /*IsStringLocation*/true, 8802 Range, FixItHint::CreateRemoval(Range)); 8803 } 8804 8805 // Determines if the specified is a C++ class or struct containing 8806 // a member with the specified name and kind (e.g. a CXXMethodDecl named 8807 // "c_str()"). 8808 template<typename MemberKind> 8809 static llvm::SmallPtrSet<MemberKind*, 1> 8810 CXXRecordMembersNamed(StringRef Name, Sema &S, QualType Ty) { 8811 const RecordType *RT = Ty->getAs<RecordType>(); 8812 llvm::SmallPtrSet<MemberKind*, 1> Results; 8813 8814 if (!RT) 8815 return Results; 8816 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()); 8817 if (!RD || !RD->getDefinition()) 8818 return Results; 8819 8820 LookupResult R(S, &S.Context.Idents.get(Name), SourceLocation(), 8821 Sema::LookupMemberName); 8822 R.suppressDiagnostics(); 8823 8824 // We just need to include all members of the right kind turned up by the 8825 // filter, at this point. 8826 if (S.LookupQualifiedName(R, RT->getDecl())) 8827 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { 8828 NamedDecl *decl = (*I)->getUnderlyingDecl(); 8829 if (MemberKind *FK = dyn_cast<MemberKind>(decl)) 8830 Results.insert(FK); 8831 } 8832 return Results; 8833 } 8834 8835 /// Check if we could call '.c_str()' on an object. 8836 /// 8837 /// FIXME: This returns the wrong results in some cases (if cv-qualifiers don't 8838 /// allow the call, or if it would be ambiguous). 8839 bool Sema::hasCStrMethod(const Expr *E) { 8840 using MethodSet = llvm::SmallPtrSet<CXXMethodDecl *, 1>; 8841 8842 MethodSet Results = 8843 CXXRecordMembersNamed<CXXMethodDecl>("c_str", *this, E->getType()); 8844 for (MethodSet::iterator MI = Results.begin(), ME = Results.end(); 8845 MI != ME; ++MI) 8846 if ((*MI)->getMinRequiredArguments() == 0) 8847 return true; 8848 return false; 8849 } 8850 8851 // Check if a (w)string was passed when a (w)char* was needed, and offer a 8852 // better diagnostic if so. AT is assumed to be valid. 8853 // Returns true when a c_str() conversion method is found. 8854 bool CheckPrintfHandler::checkForCStrMembers( 8855 const analyze_printf::ArgType &AT, const Expr *E) { 8856 using MethodSet = llvm::SmallPtrSet<CXXMethodDecl *, 1>; 8857 8858 MethodSet Results = 8859 CXXRecordMembersNamed<CXXMethodDecl>("c_str", S, E->getType()); 8860 8861 for (MethodSet::iterator MI = Results.begin(), ME = Results.end(); 8862 MI != ME; ++MI) { 8863 const CXXMethodDecl *Method = *MI; 8864 if (Method->getMinRequiredArguments() == 0 && 8865 AT.matchesType(S.Context, Method->getReturnType())) { 8866 // FIXME: Suggest parens if the expression needs them. 8867 SourceLocation EndLoc = S.getLocForEndOfToken(E->getEndLoc()); 8868 S.Diag(E->getBeginLoc(), diag::note_printf_c_str) 8869 << "c_str()" << FixItHint::CreateInsertion(EndLoc, ".c_str()"); 8870 return true; 8871 } 8872 } 8873 8874 return false; 8875 } 8876 8877 bool 8878 CheckPrintfHandler::HandlePrintfSpecifier(const analyze_printf::PrintfSpecifier 8879 &FS, 8880 const char *startSpecifier, 8881 unsigned specifierLen) { 8882 using namespace analyze_format_string; 8883 using namespace analyze_printf; 8884 8885 const PrintfConversionSpecifier &CS = FS.getConversionSpecifier(); 8886 8887 if (FS.consumesDataArgument()) { 8888 if (atFirstArg) { 8889 atFirstArg = false; 8890 usesPositionalArgs = FS.usesPositionalArg(); 8891 } 8892 else if (usesPositionalArgs != FS.usesPositionalArg()) { 8893 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()), 8894 startSpecifier, specifierLen); 8895 return false; 8896 } 8897 } 8898 8899 // First check if the field width, precision, and conversion specifier 8900 // have matching data arguments. 8901 if (!HandleAmount(FS.getFieldWidth(), /* field width */ 0, 8902 startSpecifier, specifierLen)) { 8903 return false; 8904 } 8905 8906 if (!HandleAmount(FS.getPrecision(), /* precision */ 1, 8907 startSpecifier, specifierLen)) { 8908 return false; 8909 } 8910 8911 if (!CS.consumesDataArgument()) { 8912 // FIXME: Technically specifying a precision or field width here 8913 // makes no sense. Worth issuing a warning at some point. 8914 return true; 8915 } 8916 8917 // Consume the argument. 8918 unsigned argIndex = FS.getArgIndex(); 8919 if (argIndex < NumDataArgs) { 8920 // The check to see if the argIndex is valid will come later. 8921 // We set the bit here because we may exit early from this 8922 // function if we encounter some other error. 8923 CoveredArgs.set(argIndex); 8924 } 8925 8926 // FreeBSD kernel extensions. 8927 if (CS.getKind() == ConversionSpecifier::FreeBSDbArg || 8928 CS.getKind() == ConversionSpecifier::FreeBSDDArg) { 8929 // We need at least two arguments. 8930 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex + 1)) 8931 return false; 8932 8933 // Claim the second argument. 8934 CoveredArgs.set(argIndex + 1); 8935 8936 // Type check the first argument (int for %b, pointer for %D) 8937 const Expr *Ex = getDataArg(argIndex); 8938 const analyze_printf::ArgType &AT = 8939 (CS.getKind() == ConversionSpecifier::FreeBSDbArg) ? 8940 ArgType(S.Context.IntTy) : ArgType::CPointerTy; 8941 if (AT.isValid() && !AT.matchesType(S.Context, Ex->getType())) 8942 EmitFormatDiagnostic( 8943 S.PDiag(diag::warn_format_conversion_argument_type_mismatch) 8944 << AT.getRepresentativeTypeName(S.Context) << Ex->getType() 8945 << false << Ex->getSourceRange(), 8946 Ex->getBeginLoc(), /*IsStringLocation*/ false, 8947 getSpecifierRange(startSpecifier, specifierLen)); 8948 8949 // Type check the second argument (char * for both %b and %D) 8950 Ex = getDataArg(argIndex + 1); 8951 const analyze_printf::ArgType &AT2 = ArgType::CStrTy; 8952 if (AT2.isValid() && !AT2.matchesType(S.Context, Ex->getType())) 8953 EmitFormatDiagnostic( 8954 S.PDiag(diag::warn_format_conversion_argument_type_mismatch) 8955 << AT2.getRepresentativeTypeName(S.Context) << Ex->getType() 8956 << false << Ex->getSourceRange(), 8957 Ex->getBeginLoc(), /*IsStringLocation*/ false, 8958 getSpecifierRange(startSpecifier, specifierLen)); 8959 8960 return true; 8961 } 8962 8963 // Check for using an Objective-C specific conversion specifier 8964 // in a non-ObjC literal. 8965 if (!allowsObjCArg() && CS.isObjCArg()) { 8966 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier, 8967 specifierLen); 8968 } 8969 8970 // %P can only be used with os_log. 8971 if (FSType != Sema::FST_OSLog && CS.getKind() == ConversionSpecifier::PArg) { 8972 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier, 8973 specifierLen); 8974 } 8975 8976 // %n is not allowed with os_log. 8977 if (FSType == Sema::FST_OSLog && CS.getKind() == ConversionSpecifier::nArg) { 8978 EmitFormatDiagnostic(S.PDiag(diag::warn_os_log_format_narg), 8979 getLocationOfByte(CS.getStart()), 8980 /*IsStringLocation*/ false, 8981 getSpecifierRange(startSpecifier, specifierLen)); 8982 8983 return true; 8984 } 8985 8986 // Only scalars are allowed for os_trace. 8987 if (FSType == Sema::FST_OSTrace && 8988 (CS.getKind() == ConversionSpecifier::PArg || 8989 CS.getKind() == ConversionSpecifier::sArg || 8990 CS.getKind() == ConversionSpecifier::ObjCObjArg)) { 8991 return HandleInvalidPrintfConversionSpecifier(FS, startSpecifier, 8992 specifierLen); 8993 } 8994 8995 // Check for use of public/private annotation outside of os_log(). 8996 if (FSType != Sema::FST_OSLog) { 8997 if (FS.isPublic().isSet()) { 8998 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_annotation) 8999 << "public", 9000 getLocationOfByte(FS.isPublic().getPosition()), 9001 /*IsStringLocation*/ false, 9002 getSpecifierRange(startSpecifier, specifierLen)); 9003 } 9004 if (FS.isPrivate().isSet()) { 9005 EmitFormatDiagnostic(S.PDiag(diag::warn_format_invalid_annotation) 9006 << "private", 9007 getLocationOfByte(FS.isPrivate().getPosition()), 9008 /*IsStringLocation*/ false, 9009 getSpecifierRange(startSpecifier, specifierLen)); 9010 } 9011 } 9012 9013 // Check for invalid use of field width 9014 if (!FS.hasValidFieldWidth()) { 9015 HandleInvalidAmount(FS, FS.getFieldWidth(), /* field width */ 0, 9016 startSpecifier, specifierLen); 9017 } 9018 9019 // Check for invalid use of precision 9020 if (!FS.hasValidPrecision()) { 9021 HandleInvalidAmount(FS, FS.getPrecision(), /* precision */ 1, 9022 startSpecifier, specifierLen); 9023 } 9024 9025 // Precision is mandatory for %P specifier. 9026 if (CS.getKind() == ConversionSpecifier::PArg && 9027 FS.getPrecision().getHowSpecified() == OptionalAmount::NotSpecified) { 9028 EmitFormatDiagnostic(S.PDiag(diag::warn_format_P_no_precision), 9029 getLocationOfByte(startSpecifier), 9030 /*IsStringLocation*/ false, 9031 getSpecifierRange(startSpecifier, specifierLen)); 9032 } 9033 9034 // Check each flag does not conflict with any other component. 9035 if (!FS.hasValidThousandsGroupingPrefix()) 9036 HandleFlag(FS, FS.hasThousandsGrouping(), startSpecifier, specifierLen); 9037 if (!FS.hasValidLeadingZeros()) 9038 HandleFlag(FS, FS.hasLeadingZeros(), startSpecifier, specifierLen); 9039 if (!FS.hasValidPlusPrefix()) 9040 HandleFlag(FS, FS.hasPlusPrefix(), startSpecifier, specifierLen); 9041 if (!FS.hasValidSpacePrefix()) 9042 HandleFlag(FS, FS.hasSpacePrefix(), startSpecifier, specifierLen); 9043 if (!FS.hasValidAlternativeForm()) 9044 HandleFlag(FS, FS.hasAlternativeForm(), startSpecifier, specifierLen); 9045 if (!FS.hasValidLeftJustified()) 9046 HandleFlag(FS, FS.isLeftJustified(), startSpecifier, specifierLen); 9047 9048 // Check that flags are not ignored by another flag 9049 if (FS.hasSpacePrefix() && FS.hasPlusPrefix()) // ' ' ignored by '+' 9050 HandleIgnoredFlag(FS, FS.hasSpacePrefix(), FS.hasPlusPrefix(), 9051 startSpecifier, specifierLen); 9052 if (FS.hasLeadingZeros() && FS.isLeftJustified()) // '0' ignored by '-' 9053 HandleIgnoredFlag(FS, FS.hasLeadingZeros(), FS.isLeftJustified(), 9054 startSpecifier, specifierLen); 9055 9056 // Check the length modifier is valid with the given conversion specifier. 9057 if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(), 9058 S.getLangOpts())) 9059 HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen, 9060 diag::warn_format_nonsensical_length); 9061 else if (!FS.hasStandardLengthModifier()) 9062 HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen); 9063 else if (!FS.hasStandardLengthConversionCombination()) 9064 HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen, 9065 diag::warn_format_non_standard_conversion_spec); 9066 9067 if (!FS.hasStandardConversionSpecifier(S.getLangOpts())) 9068 HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen); 9069 9070 // The remaining checks depend on the data arguments. 9071 if (HasVAListArg) 9072 return true; 9073 9074 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex)) 9075 return false; 9076 9077 const Expr *Arg = getDataArg(argIndex); 9078 if (!Arg) 9079 return true; 9080 9081 return checkFormatExpr(FS, startSpecifier, specifierLen, Arg); 9082 } 9083 9084 static bool requiresParensToAddCast(const Expr *E) { 9085 // FIXME: We should have a general way to reason about operator 9086 // precedence and whether parens are actually needed here. 9087 // Take care of a few common cases where they aren't. 9088 const Expr *Inside = E->IgnoreImpCasts(); 9089 if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(Inside)) 9090 Inside = POE->getSyntacticForm()->IgnoreImpCasts(); 9091 9092 switch (Inside->getStmtClass()) { 9093 case Stmt::ArraySubscriptExprClass: 9094 case Stmt::CallExprClass: 9095 case Stmt::CharacterLiteralClass: 9096 case Stmt::CXXBoolLiteralExprClass: 9097 case Stmt::DeclRefExprClass: 9098 case Stmt::FloatingLiteralClass: 9099 case Stmt::IntegerLiteralClass: 9100 case Stmt::MemberExprClass: 9101 case Stmt::ObjCArrayLiteralClass: 9102 case Stmt::ObjCBoolLiteralExprClass: 9103 case Stmt::ObjCBoxedExprClass: 9104 case Stmt::ObjCDictionaryLiteralClass: 9105 case Stmt::ObjCEncodeExprClass: 9106 case Stmt::ObjCIvarRefExprClass: 9107 case Stmt::ObjCMessageExprClass: 9108 case Stmt::ObjCPropertyRefExprClass: 9109 case Stmt::ObjCStringLiteralClass: 9110 case Stmt::ObjCSubscriptRefExprClass: 9111 case Stmt::ParenExprClass: 9112 case Stmt::StringLiteralClass: 9113 case Stmt::UnaryOperatorClass: 9114 return false; 9115 default: 9116 return true; 9117 } 9118 } 9119 9120 static std::pair<QualType, StringRef> 9121 shouldNotPrintDirectly(const ASTContext &Context, 9122 QualType IntendedTy, 9123 const Expr *E) { 9124 // Use a 'while' to peel off layers of typedefs. 9125 QualType TyTy = IntendedTy; 9126 while (const TypedefType *UserTy = TyTy->getAs<TypedefType>()) { 9127 StringRef Name = UserTy->getDecl()->getName(); 9128 QualType CastTy = llvm::StringSwitch<QualType>(Name) 9129 .Case("CFIndex", Context.getNSIntegerType()) 9130 .Case("NSInteger", Context.getNSIntegerType()) 9131 .Case("NSUInteger", Context.getNSUIntegerType()) 9132 .Case("SInt32", Context.IntTy) 9133 .Case("UInt32", Context.UnsignedIntTy) 9134 .Default(QualType()); 9135 9136 if (!CastTy.isNull()) 9137 return std::make_pair(CastTy, Name); 9138 9139 TyTy = UserTy->desugar(); 9140 } 9141 9142 // Strip parens if necessary. 9143 if (const ParenExpr *PE = dyn_cast<ParenExpr>(E)) 9144 return shouldNotPrintDirectly(Context, 9145 PE->getSubExpr()->getType(), 9146 PE->getSubExpr()); 9147 9148 // If this is a conditional expression, then its result type is constructed 9149 // via usual arithmetic conversions and thus there might be no necessary 9150 // typedef sugar there. Recurse to operands to check for NSInteger & 9151 // Co. usage condition. 9152 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { 9153 QualType TrueTy, FalseTy; 9154 StringRef TrueName, FalseName; 9155 9156 std::tie(TrueTy, TrueName) = 9157 shouldNotPrintDirectly(Context, 9158 CO->getTrueExpr()->getType(), 9159 CO->getTrueExpr()); 9160 std::tie(FalseTy, FalseName) = 9161 shouldNotPrintDirectly(Context, 9162 CO->getFalseExpr()->getType(), 9163 CO->getFalseExpr()); 9164 9165 if (TrueTy == FalseTy) 9166 return std::make_pair(TrueTy, TrueName); 9167 else if (TrueTy.isNull()) 9168 return std::make_pair(FalseTy, FalseName); 9169 else if (FalseTy.isNull()) 9170 return std::make_pair(TrueTy, TrueName); 9171 } 9172 9173 return std::make_pair(QualType(), StringRef()); 9174 } 9175 9176 /// Return true if \p ICE is an implicit argument promotion of an arithmetic 9177 /// type. Bit-field 'promotions' from a higher ranked type to a lower ranked 9178 /// type do not count. 9179 static bool 9180 isArithmeticArgumentPromotion(Sema &S, const ImplicitCastExpr *ICE) { 9181 QualType From = ICE->getSubExpr()->getType(); 9182 QualType To = ICE->getType(); 9183 // It's an integer promotion if the destination type is the promoted 9184 // source type. 9185 if (ICE->getCastKind() == CK_IntegralCast && 9186 From->isPromotableIntegerType() && 9187 S.Context.getPromotedIntegerType(From) == To) 9188 return true; 9189 // Look through vector types, since we do default argument promotion for 9190 // those in OpenCL. 9191 if (const auto *VecTy = From->getAs<ExtVectorType>()) 9192 From = VecTy->getElementType(); 9193 if (const auto *VecTy = To->getAs<ExtVectorType>()) 9194 To = VecTy->getElementType(); 9195 // It's a floating promotion if the source type is a lower rank. 9196 return ICE->getCastKind() == CK_FloatingCast && 9197 S.Context.getFloatingTypeOrder(From, To) < 0; 9198 } 9199 9200 bool 9201 CheckPrintfHandler::checkFormatExpr(const analyze_printf::PrintfSpecifier &FS, 9202 const char *StartSpecifier, 9203 unsigned SpecifierLen, 9204 const Expr *E) { 9205 using namespace analyze_format_string; 9206 using namespace analyze_printf; 9207 9208 // Now type check the data expression that matches the 9209 // format specifier. 9210 const analyze_printf::ArgType &AT = FS.getArgType(S.Context, isObjCContext()); 9211 if (!AT.isValid()) 9212 return true; 9213 9214 QualType ExprTy = E->getType(); 9215 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) { 9216 ExprTy = TET->getUnderlyingExpr()->getType(); 9217 } 9218 9219 // Diagnose attempts to print a boolean value as a character. Unlike other 9220 // -Wformat diagnostics, this is fine from a type perspective, but it still 9221 // doesn't make sense. 9222 if (FS.getConversionSpecifier().getKind() == ConversionSpecifier::cArg && 9223 E->isKnownToHaveBooleanValue()) { 9224 const CharSourceRange &CSR = 9225 getSpecifierRange(StartSpecifier, SpecifierLen); 9226 SmallString<4> FSString; 9227 llvm::raw_svector_ostream os(FSString); 9228 FS.toString(os); 9229 EmitFormatDiagnostic(S.PDiag(diag::warn_format_bool_as_character) 9230 << FSString, 9231 E->getExprLoc(), false, CSR); 9232 return true; 9233 } 9234 9235 analyze_printf::ArgType::MatchKind Match = AT.matchesType(S.Context, ExprTy); 9236 if (Match == analyze_printf::ArgType::Match) 9237 return true; 9238 9239 // Look through argument promotions for our error message's reported type. 9240 // This includes the integral and floating promotions, but excludes array 9241 // and function pointer decay (seeing that an argument intended to be a 9242 // string has type 'char [6]' is probably more confusing than 'char *') and 9243 // certain bitfield promotions (bitfields can be 'demoted' to a lesser type). 9244 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { 9245 if (isArithmeticArgumentPromotion(S, ICE)) { 9246 E = ICE->getSubExpr(); 9247 ExprTy = E->getType(); 9248 9249 // Check if we didn't match because of an implicit cast from a 'char' 9250 // or 'short' to an 'int'. This is done because printf is a varargs 9251 // function. 9252 if (ICE->getType() == S.Context.IntTy || 9253 ICE->getType() == S.Context.UnsignedIntTy) { 9254 // All further checking is done on the subexpression 9255 const analyze_printf::ArgType::MatchKind ImplicitMatch = 9256 AT.matchesType(S.Context, ExprTy); 9257 if (ImplicitMatch == analyze_printf::ArgType::Match) 9258 return true; 9259 if (ImplicitMatch == ArgType::NoMatchPedantic || 9260 ImplicitMatch == ArgType::NoMatchTypeConfusion) 9261 Match = ImplicitMatch; 9262 } 9263 } 9264 } else if (const CharacterLiteral *CL = dyn_cast<CharacterLiteral>(E)) { 9265 // Special case for 'a', which has type 'int' in C. 9266 // Note, however, that we do /not/ want to treat multibyte constants like 9267 // 'MooV' as characters! This form is deprecated but still exists. In 9268 // addition, don't treat expressions as of type 'char' if one byte length 9269 // modifier is provided. 9270 if (ExprTy == S.Context.IntTy && 9271 FS.getLengthModifier().getKind() != LengthModifier::AsChar) 9272 if (llvm::isUIntN(S.Context.getCharWidth(), CL->getValue())) 9273 ExprTy = S.Context.CharTy; 9274 } 9275 9276 // Look through enums to their underlying type. 9277 bool IsEnum = false; 9278 if (auto EnumTy = ExprTy->getAs<EnumType>()) { 9279 ExprTy = EnumTy->getDecl()->getIntegerType(); 9280 IsEnum = true; 9281 } 9282 9283 // %C in an Objective-C context prints a unichar, not a wchar_t. 9284 // If the argument is an integer of some kind, believe the %C and suggest 9285 // a cast instead of changing the conversion specifier. 9286 QualType IntendedTy = ExprTy; 9287 if (isObjCContext() && 9288 FS.getConversionSpecifier().getKind() == ConversionSpecifier::CArg) { 9289 if (ExprTy->isIntegralOrUnscopedEnumerationType() && 9290 !ExprTy->isCharType()) { 9291 // 'unichar' is defined as a typedef of unsigned short, but we should 9292 // prefer using the typedef if it is visible. 9293 IntendedTy = S.Context.UnsignedShortTy; 9294 9295 // While we are here, check if the value is an IntegerLiteral that happens 9296 // to be within the valid range. 9297 if (const IntegerLiteral *IL = dyn_cast<IntegerLiteral>(E)) { 9298 const llvm::APInt &V = IL->getValue(); 9299 if (V.getActiveBits() <= S.Context.getTypeSize(IntendedTy)) 9300 return true; 9301 } 9302 9303 LookupResult Result(S, &S.Context.Idents.get("unichar"), E->getBeginLoc(), 9304 Sema::LookupOrdinaryName); 9305 if (S.LookupName(Result, S.getCurScope())) { 9306 NamedDecl *ND = Result.getFoundDecl(); 9307 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(ND)) 9308 if (TD->getUnderlyingType() == IntendedTy) 9309 IntendedTy = S.Context.getTypedefType(TD); 9310 } 9311 } 9312 } 9313 9314 // Special-case some of Darwin's platform-independence types by suggesting 9315 // casts to primitive types that are known to be large enough. 9316 bool ShouldNotPrintDirectly = false; StringRef CastTyName; 9317 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) { 9318 QualType CastTy; 9319 std::tie(CastTy, CastTyName) = shouldNotPrintDirectly(S.Context, IntendedTy, E); 9320 if (!CastTy.isNull()) { 9321 // %zi/%zu and %td/%tu are OK to use for NSInteger/NSUInteger of type int 9322 // (long in ASTContext). Only complain to pedants. 9323 if ((CastTyName == "NSInteger" || CastTyName == "NSUInteger") && 9324 (AT.isSizeT() || AT.isPtrdiffT()) && 9325 AT.matchesType(S.Context, CastTy)) 9326 Match = ArgType::NoMatchPedantic; 9327 IntendedTy = CastTy; 9328 ShouldNotPrintDirectly = true; 9329 } 9330 } 9331 9332 // We may be able to offer a FixItHint if it is a supported type. 9333 PrintfSpecifier fixedFS = FS; 9334 bool Success = 9335 fixedFS.fixType(IntendedTy, S.getLangOpts(), S.Context, isObjCContext()); 9336 9337 if (Success) { 9338 // Get the fix string from the fixed format specifier 9339 SmallString<16> buf; 9340 llvm::raw_svector_ostream os(buf); 9341 fixedFS.toString(os); 9342 9343 CharSourceRange SpecRange = getSpecifierRange(StartSpecifier, SpecifierLen); 9344 9345 if (IntendedTy == ExprTy && !ShouldNotPrintDirectly) { 9346 unsigned Diag; 9347 switch (Match) { 9348 case ArgType::Match: llvm_unreachable("expected non-matching"); 9349 case ArgType::NoMatchPedantic: 9350 Diag = diag::warn_format_conversion_argument_type_mismatch_pedantic; 9351 break; 9352 case ArgType::NoMatchTypeConfusion: 9353 Diag = diag::warn_format_conversion_argument_type_mismatch_confusion; 9354 break; 9355 case ArgType::NoMatch: 9356 Diag = diag::warn_format_conversion_argument_type_mismatch; 9357 break; 9358 } 9359 9360 // In this case, the specifier is wrong and should be changed to match 9361 // the argument. 9362 EmitFormatDiagnostic(S.PDiag(Diag) 9363 << AT.getRepresentativeTypeName(S.Context) 9364 << IntendedTy << IsEnum << E->getSourceRange(), 9365 E->getBeginLoc(), 9366 /*IsStringLocation*/ false, SpecRange, 9367 FixItHint::CreateReplacement(SpecRange, os.str())); 9368 } else { 9369 // The canonical type for formatting this value is different from the 9370 // actual type of the expression. (This occurs, for example, with Darwin's 9371 // NSInteger on 32-bit platforms, where it is typedef'd as 'int', but 9372 // should be printed as 'long' for 64-bit compatibility.) 9373 // Rather than emitting a normal format/argument mismatch, we want to 9374 // add a cast to the recommended type (and correct the format string 9375 // if necessary). 9376 SmallString<16> CastBuf; 9377 llvm::raw_svector_ostream CastFix(CastBuf); 9378 CastFix << "("; 9379 IntendedTy.print(CastFix, S.Context.getPrintingPolicy()); 9380 CastFix << ")"; 9381 9382 SmallVector<FixItHint,4> Hints; 9383 if (!AT.matchesType(S.Context, IntendedTy) || ShouldNotPrintDirectly) 9384 Hints.push_back(FixItHint::CreateReplacement(SpecRange, os.str())); 9385 9386 if (const CStyleCastExpr *CCast = dyn_cast<CStyleCastExpr>(E)) { 9387 // If there's already a cast present, just replace it. 9388 SourceRange CastRange(CCast->getLParenLoc(), CCast->getRParenLoc()); 9389 Hints.push_back(FixItHint::CreateReplacement(CastRange, CastFix.str())); 9390 9391 } else if (!requiresParensToAddCast(E)) { 9392 // If the expression has high enough precedence, 9393 // just write the C-style cast. 9394 Hints.push_back( 9395 FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str())); 9396 } else { 9397 // Otherwise, add parens around the expression as well as the cast. 9398 CastFix << "("; 9399 Hints.push_back( 9400 FixItHint::CreateInsertion(E->getBeginLoc(), CastFix.str())); 9401 9402 SourceLocation After = S.getLocForEndOfToken(E->getEndLoc()); 9403 Hints.push_back(FixItHint::CreateInsertion(After, ")")); 9404 } 9405 9406 if (ShouldNotPrintDirectly) { 9407 // The expression has a type that should not be printed directly. 9408 // We extract the name from the typedef because we don't want to show 9409 // the underlying type in the diagnostic. 9410 StringRef Name; 9411 if (const TypedefType *TypedefTy = dyn_cast<TypedefType>(ExprTy)) 9412 Name = TypedefTy->getDecl()->getName(); 9413 else 9414 Name = CastTyName; 9415 unsigned Diag = Match == ArgType::NoMatchPedantic 9416 ? diag::warn_format_argument_needs_cast_pedantic 9417 : diag::warn_format_argument_needs_cast; 9418 EmitFormatDiagnostic(S.PDiag(Diag) << Name << IntendedTy << IsEnum 9419 << E->getSourceRange(), 9420 E->getBeginLoc(), /*IsStringLocation=*/false, 9421 SpecRange, Hints); 9422 } else { 9423 // In this case, the expression could be printed using a different 9424 // specifier, but we've decided that the specifier is probably correct 9425 // and we should cast instead. Just use the normal warning message. 9426 EmitFormatDiagnostic( 9427 S.PDiag(diag::warn_format_conversion_argument_type_mismatch) 9428 << AT.getRepresentativeTypeName(S.Context) << ExprTy << IsEnum 9429 << E->getSourceRange(), 9430 E->getBeginLoc(), /*IsStringLocation*/ false, SpecRange, Hints); 9431 } 9432 } 9433 } else { 9434 const CharSourceRange &CSR = getSpecifierRange(StartSpecifier, 9435 SpecifierLen); 9436 // Since the warning for passing non-POD types to variadic functions 9437 // was deferred until now, we emit a warning for non-POD 9438 // arguments here. 9439 switch (S.isValidVarArgType(ExprTy)) { 9440 case Sema::VAK_Valid: 9441 case Sema::VAK_ValidInCXX11: { 9442 unsigned Diag; 9443 switch (Match) { 9444 case ArgType::Match: llvm_unreachable("expected non-matching"); 9445 case ArgType::NoMatchPedantic: 9446 Diag = diag::warn_format_conversion_argument_type_mismatch_pedantic; 9447 break; 9448 case ArgType::NoMatchTypeConfusion: 9449 Diag = diag::warn_format_conversion_argument_type_mismatch_confusion; 9450 break; 9451 case ArgType::NoMatch: 9452 Diag = diag::warn_format_conversion_argument_type_mismatch; 9453 break; 9454 } 9455 9456 EmitFormatDiagnostic( 9457 S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context) << ExprTy 9458 << IsEnum << CSR << E->getSourceRange(), 9459 E->getBeginLoc(), /*IsStringLocation*/ false, CSR); 9460 break; 9461 } 9462 case Sema::VAK_Undefined: 9463 case Sema::VAK_MSVCUndefined: 9464 EmitFormatDiagnostic(S.PDiag(diag::warn_non_pod_vararg_with_format_string) 9465 << S.getLangOpts().CPlusPlus11 << ExprTy 9466 << CallType 9467 << AT.getRepresentativeTypeName(S.Context) << CSR 9468 << E->getSourceRange(), 9469 E->getBeginLoc(), /*IsStringLocation*/ false, CSR); 9470 checkForCStrMembers(AT, E); 9471 break; 9472 9473 case Sema::VAK_Invalid: 9474 if (ExprTy->isObjCObjectType()) 9475 EmitFormatDiagnostic( 9476 S.PDiag(diag::err_cannot_pass_objc_interface_to_vararg_format) 9477 << S.getLangOpts().CPlusPlus11 << ExprTy << CallType 9478 << AT.getRepresentativeTypeName(S.Context) << CSR 9479 << E->getSourceRange(), 9480 E->getBeginLoc(), /*IsStringLocation*/ false, CSR); 9481 else 9482 // FIXME: If this is an initializer list, suggest removing the braces 9483 // or inserting a cast to the target type. 9484 S.Diag(E->getBeginLoc(), diag::err_cannot_pass_to_vararg_format) 9485 << isa<InitListExpr>(E) << ExprTy << CallType 9486 << AT.getRepresentativeTypeName(S.Context) << E->getSourceRange(); 9487 break; 9488 } 9489 9490 assert(FirstDataArg + FS.getArgIndex() < CheckedVarArgs.size() && 9491 "format string specifier index out of range"); 9492 CheckedVarArgs[FirstDataArg + FS.getArgIndex()] = true; 9493 } 9494 9495 return true; 9496 } 9497 9498 //===--- CHECK: Scanf format string checking ------------------------------===// 9499 9500 namespace { 9501 9502 class CheckScanfHandler : public CheckFormatHandler { 9503 public: 9504 CheckScanfHandler(Sema &s, const FormatStringLiteral *fexpr, 9505 const Expr *origFormatExpr, Sema::FormatStringType type, 9506 unsigned firstDataArg, unsigned numDataArgs, 9507 const char *beg, bool hasVAListArg, 9508 ArrayRef<const Expr *> Args, unsigned formatIdx, 9509 bool inFunctionCall, Sema::VariadicCallType CallType, 9510 llvm::SmallBitVector &CheckedVarArgs, 9511 UncoveredArgHandler &UncoveredArg) 9512 : CheckFormatHandler(s, fexpr, origFormatExpr, type, firstDataArg, 9513 numDataArgs, beg, hasVAListArg, Args, formatIdx, 9514 inFunctionCall, CallType, CheckedVarArgs, 9515 UncoveredArg) {} 9516 9517 bool HandleScanfSpecifier(const analyze_scanf::ScanfSpecifier &FS, 9518 const char *startSpecifier, 9519 unsigned specifierLen) override; 9520 9521 bool HandleInvalidScanfConversionSpecifier( 9522 const analyze_scanf::ScanfSpecifier &FS, 9523 const char *startSpecifier, 9524 unsigned specifierLen) override; 9525 9526 void HandleIncompleteScanList(const char *start, const char *end) override; 9527 }; 9528 9529 } // namespace 9530 9531 void CheckScanfHandler::HandleIncompleteScanList(const char *start, 9532 const char *end) { 9533 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_scanlist_incomplete), 9534 getLocationOfByte(end), /*IsStringLocation*/true, 9535 getSpecifierRange(start, end - start)); 9536 } 9537 9538 bool CheckScanfHandler::HandleInvalidScanfConversionSpecifier( 9539 const analyze_scanf::ScanfSpecifier &FS, 9540 const char *startSpecifier, 9541 unsigned specifierLen) { 9542 const analyze_scanf::ScanfConversionSpecifier &CS = 9543 FS.getConversionSpecifier(); 9544 9545 return HandleInvalidConversionSpecifier(FS.getArgIndex(), 9546 getLocationOfByte(CS.getStart()), 9547 startSpecifier, specifierLen, 9548 CS.getStart(), CS.getLength()); 9549 } 9550 9551 bool CheckScanfHandler::HandleScanfSpecifier( 9552 const analyze_scanf::ScanfSpecifier &FS, 9553 const char *startSpecifier, 9554 unsigned specifierLen) { 9555 using namespace analyze_scanf; 9556 using namespace analyze_format_string; 9557 9558 const ScanfConversionSpecifier &CS = FS.getConversionSpecifier(); 9559 9560 // Handle case where '%' and '*' don't consume an argument. These shouldn't 9561 // be used to decide if we are using positional arguments consistently. 9562 if (FS.consumesDataArgument()) { 9563 if (atFirstArg) { 9564 atFirstArg = false; 9565 usesPositionalArgs = FS.usesPositionalArg(); 9566 } 9567 else if (usesPositionalArgs != FS.usesPositionalArg()) { 9568 HandlePositionalNonpositionalArgs(getLocationOfByte(CS.getStart()), 9569 startSpecifier, specifierLen); 9570 return false; 9571 } 9572 } 9573 9574 // Check if the field with is non-zero. 9575 const OptionalAmount &Amt = FS.getFieldWidth(); 9576 if (Amt.getHowSpecified() == OptionalAmount::Constant) { 9577 if (Amt.getConstantAmount() == 0) { 9578 const CharSourceRange &R = getSpecifierRange(Amt.getStart(), 9579 Amt.getConstantLength()); 9580 EmitFormatDiagnostic(S.PDiag(diag::warn_scanf_nonzero_width), 9581 getLocationOfByte(Amt.getStart()), 9582 /*IsStringLocation*/true, R, 9583 FixItHint::CreateRemoval(R)); 9584 } 9585 } 9586 9587 if (!FS.consumesDataArgument()) { 9588 // FIXME: Technically specifying a precision or field width here 9589 // makes no sense. Worth issuing a warning at some point. 9590 return true; 9591 } 9592 9593 // Consume the argument. 9594 unsigned argIndex = FS.getArgIndex(); 9595 if (argIndex < NumDataArgs) { 9596 // The check to see if the argIndex is valid will come later. 9597 // We set the bit here because we may exit early from this 9598 // function if we encounter some other error. 9599 CoveredArgs.set(argIndex); 9600 } 9601 9602 // Check the length modifier is valid with the given conversion specifier. 9603 if (!FS.hasValidLengthModifier(S.getASTContext().getTargetInfo(), 9604 S.getLangOpts())) 9605 HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen, 9606 diag::warn_format_nonsensical_length); 9607 else if (!FS.hasStandardLengthModifier()) 9608 HandleNonStandardLengthModifier(FS, startSpecifier, specifierLen); 9609 else if (!FS.hasStandardLengthConversionCombination()) 9610 HandleInvalidLengthModifier(FS, CS, startSpecifier, specifierLen, 9611 diag::warn_format_non_standard_conversion_spec); 9612 9613 if (!FS.hasStandardConversionSpecifier(S.getLangOpts())) 9614 HandleNonStandardConversionSpecifier(CS, startSpecifier, specifierLen); 9615 9616 // The remaining checks depend on the data arguments. 9617 if (HasVAListArg) 9618 return true; 9619 9620 if (!CheckNumArgs(FS, CS, startSpecifier, specifierLen, argIndex)) 9621 return false; 9622 9623 // Check that the argument type matches the format specifier. 9624 const Expr *Ex = getDataArg(argIndex); 9625 if (!Ex) 9626 return true; 9627 9628 const analyze_format_string::ArgType &AT = FS.getArgType(S.Context); 9629 9630 if (!AT.isValid()) { 9631 return true; 9632 } 9633 9634 analyze_format_string::ArgType::MatchKind Match = 9635 AT.matchesType(S.Context, Ex->getType()); 9636 bool Pedantic = Match == analyze_format_string::ArgType::NoMatchPedantic; 9637 if (Match == analyze_format_string::ArgType::Match) 9638 return true; 9639 9640 ScanfSpecifier fixedFS = FS; 9641 bool Success = fixedFS.fixType(Ex->getType(), Ex->IgnoreImpCasts()->getType(), 9642 S.getLangOpts(), S.Context); 9643 9644 unsigned Diag = 9645 Pedantic ? diag::warn_format_conversion_argument_type_mismatch_pedantic 9646 : diag::warn_format_conversion_argument_type_mismatch; 9647 9648 if (Success) { 9649 // Get the fix string from the fixed format specifier. 9650 SmallString<128> buf; 9651 llvm::raw_svector_ostream os(buf); 9652 fixedFS.toString(os); 9653 9654 EmitFormatDiagnostic( 9655 S.PDiag(Diag) << AT.getRepresentativeTypeName(S.Context) 9656 << Ex->getType() << false << Ex->getSourceRange(), 9657 Ex->getBeginLoc(), 9658 /*IsStringLocation*/ false, 9659 getSpecifierRange(startSpecifier, specifierLen), 9660 FixItHint::CreateReplacement( 9661 getSpecifierRange(startSpecifier, specifierLen), os.str())); 9662 } else { 9663 EmitFormatDiagnostic(S.PDiag(Diag) 9664 << AT.getRepresentativeTypeName(S.Context) 9665 << Ex->getType() << false << Ex->getSourceRange(), 9666 Ex->getBeginLoc(), 9667 /*IsStringLocation*/ false, 9668 getSpecifierRange(startSpecifier, specifierLen)); 9669 } 9670 9671 return true; 9672 } 9673 9674 static void CheckFormatString(Sema &S, const FormatStringLiteral *FExpr, 9675 const Expr *OrigFormatExpr, 9676 ArrayRef<const Expr *> Args, 9677 bool HasVAListArg, unsigned format_idx, 9678 unsigned firstDataArg, 9679 Sema::FormatStringType Type, 9680 bool inFunctionCall, 9681 Sema::VariadicCallType CallType, 9682 llvm::SmallBitVector &CheckedVarArgs, 9683 UncoveredArgHandler &UncoveredArg, 9684 bool IgnoreStringsWithoutSpecifiers) { 9685 // CHECK: is the format string a wide literal? 9686 if (!FExpr->isAscii() && !FExpr->isUTF8()) { 9687 CheckFormatHandler::EmitFormatDiagnostic( 9688 S, inFunctionCall, Args[format_idx], 9689 S.PDiag(diag::warn_format_string_is_wide_literal), FExpr->getBeginLoc(), 9690 /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange()); 9691 return; 9692 } 9693 9694 // Str - The format string. NOTE: this is NOT null-terminated! 9695 StringRef StrRef = FExpr->getString(); 9696 const char *Str = StrRef.data(); 9697 // Account for cases where the string literal is truncated in a declaration. 9698 const ConstantArrayType *T = 9699 S.Context.getAsConstantArrayType(FExpr->getType()); 9700 assert(T && "String literal not of constant array type!"); 9701 size_t TypeSize = T->getSize().getZExtValue(); 9702 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size()); 9703 const unsigned numDataArgs = Args.size() - firstDataArg; 9704 9705 if (IgnoreStringsWithoutSpecifiers && 9706 !analyze_format_string::parseFormatStringHasFormattingSpecifiers( 9707 Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo())) 9708 return; 9709 9710 // Emit a warning if the string literal is truncated and does not contain an 9711 // embedded null character. 9712 if (TypeSize <= StrRef.size() && 9713 StrRef.substr(0, TypeSize).find('\0') == StringRef::npos) { 9714 CheckFormatHandler::EmitFormatDiagnostic( 9715 S, inFunctionCall, Args[format_idx], 9716 S.PDiag(diag::warn_printf_format_string_not_null_terminated), 9717 FExpr->getBeginLoc(), 9718 /*IsStringLocation=*/true, OrigFormatExpr->getSourceRange()); 9719 return; 9720 } 9721 9722 // CHECK: empty format string? 9723 if (StrLen == 0 && numDataArgs > 0) { 9724 CheckFormatHandler::EmitFormatDiagnostic( 9725 S, inFunctionCall, Args[format_idx], 9726 S.PDiag(diag::warn_empty_format_string), FExpr->getBeginLoc(), 9727 /*IsStringLocation*/ true, OrigFormatExpr->getSourceRange()); 9728 return; 9729 } 9730 9731 if (Type == Sema::FST_Printf || Type == Sema::FST_NSString || 9732 Type == Sema::FST_FreeBSDKPrintf || Type == Sema::FST_OSLog || 9733 Type == Sema::FST_OSTrace) { 9734 CheckPrintfHandler H( 9735 S, FExpr, OrigFormatExpr, Type, firstDataArg, numDataArgs, 9736 (Type == Sema::FST_NSString || Type == Sema::FST_OSTrace), Str, 9737 HasVAListArg, Args, format_idx, inFunctionCall, CallType, 9738 CheckedVarArgs, UncoveredArg); 9739 9740 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen, 9741 S.getLangOpts(), 9742 S.Context.getTargetInfo(), 9743 Type == Sema::FST_FreeBSDKPrintf)) 9744 H.DoneProcessing(); 9745 } else if (Type == Sema::FST_Scanf) { 9746 CheckScanfHandler H(S, FExpr, OrigFormatExpr, Type, firstDataArg, 9747 numDataArgs, Str, HasVAListArg, Args, format_idx, 9748 inFunctionCall, CallType, CheckedVarArgs, UncoveredArg); 9749 9750 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen, 9751 S.getLangOpts(), 9752 S.Context.getTargetInfo())) 9753 H.DoneProcessing(); 9754 } // TODO: handle other formats 9755 } 9756 9757 bool Sema::FormatStringHasSArg(const StringLiteral *FExpr) { 9758 // Str - The format string. NOTE: this is NOT null-terminated! 9759 StringRef StrRef = FExpr->getString(); 9760 const char *Str = StrRef.data(); 9761 // Account for cases where the string literal is truncated in a declaration. 9762 const ConstantArrayType *T = Context.getAsConstantArrayType(FExpr->getType()); 9763 assert(T && "String literal not of constant array type!"); 9764 size_t TypeSize = T->getSize().getZExtValue(); 9765 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size()); 9766 return analyze_format_string::ParseFormatStringHasSArg(Str, Str + StrLen, 9767 getLangOpts(), 9768 Context.getTargetInfo()); 9769 } 9770 9771 //===--- CHECK: Warn on use of wrong absolute value function. -------------===// 9772 9773 // Returns the related absolute value function that is larger, of 0 if one 9774 // does not exist. 9775 static unsigned getLargerAbsoluteValueFunction(unsigned AbsFunction) { 9776 switch (AbsFunction) { 9777 default: 9778 return 0; 9779 9780 case Builtin::BI__builtin_abs: 9781 return Builtin::BI__builtin_labs; 9782 case Builtin::BI__builtin_labs: 9783 return Builtin::BI__builtin_llabs; 9784 case Builtin::BI__builtin_llabs: 9785 return 0; 9786 9787 case Builtin::BI__builtin_fabsf: 9788 return Builtin::BI__builtin_fabs; 9789 case Builtin::BI__builtin_fabs: 9790 return Builtin::BI__builtin_fabsl; 9791 case Builtin::BI__builtin_fabsl: 9792 return 0; 9793 9794 case Builtin::BI__builtin_cabsf: 9795 return Builtin::BI__builtin_cabs; 9796 case Builtin::BI__builtin_cabs: 9797 return Builtin::BI__builtin_cabsl; 9798 case Builtin::BI__builtin_cabsl: 9799 return 0; 9800 9801 case Builtin::BIabs: 9802 return Builtin::BIlabs; 9803 case Builtin::BIlabs: 9804 return Builtin::BIllabs; 9805 case Builtin::BIllabs: 9806 return 0; 9807 9808 case Builtin::BIfabsf: 9809 return Builtin::BIfabs; 9810 case Builtin::BIfabs: 9811 return Builtin::BIfabsl; 9812 case Builtin::BIfabsl: 9813 return 0; 9814 9815 case Builtin::BIcabsf: 9816 return Builtin::BIcabs; 9817 case Builtin::BIcabs: 9818 return Builtin::BIcabsl; 9819 case Builtin::BIcabsl: 9820 return 0; 9821 } 9822 } 9823 9824 // Returns the argument type of the absolute value function. 9825 static QualType getAbsoluteValueArgumentType(ASTContext &Context, 9826 unsigned AbsType) { 9827 if (AbsType == 0) 9828 return QualType(); 9829 9830 ASTContext::GetBuiltinTypeError Error = ASTContext::GE_None; 9831 QualType BuiltinType = Context.GetBuiltinType(AbsType, Error); 9832 if (Error != ASTContext::GE_None) 9833 return QualType(); 9834 9835 const FunctionProtoType *FT = BuiltinType->getAs<FunctionProtoType>(); 9836 if (!FT) 9837 return QualType(); 9838 9839 if (FT->getNumParams() != 1) 9840 return QualType(); 9841 9842 return FT->getParamType(0); 9843 } 9844 9845 // Returns the best absolute value function, or zero, based on type and 9846 // current absolute value function. 9847 static unsigned getBestAbsFunction(ASTContext &Context, QualType ArgType, 9848 unsigned AbsFunctionKind) { 9849 unsigned BestKind = 0; 9850 uint64_t ArgSize = Context.getTypeSize(ArgType); 9851 for (unsigned Kind = AbsFunctionKind; Kind != 0; 9852 Kind = getLargerAbsoluteValueFunction(Kind)) { 9853 QualType ParamType = getAbsoluteValueArgumentType(Context, Kind); 9854 if (Context.getTypeSize(ParamType) >= ArgSize) { 9855 if (BestKind == 0) 9856 BestKind = Kind; 9857 else if (Context.hasSameType(ParamType, ArgType)) { 9858 BestKind = Kind; 9859 break; 9860 } 9861 } 9862 } 9863 return BestKind; 9864 } 9865 9866 enum AbsoluteValueKind { 9867 AVK_Integer, 9868 AVK_Floating, 9869 AVK_Complex 9870 }; 9871 9872 static AbsoluteValueKind getAbsoluteValueKind(QualType T) { 9873 if (T->isIntegralOrEnumerationType()) 9874 return AVK_Integer; 9875 if (T->isRealFloatingType()) 9876 return AVK_Floating; 9877 if (T->isAnyComplexType()) 9878 return AVK_Complex; 9879 9880 llvm_unreachable("Type not integer, floating, or complex"); 9881 } 9882 9883 // Changes the absolute value function to a different type. Preserves whether 9884 // the function is a builtin. 9885 static unsigned changeAbsFunction(unsigned AbsKind, 9886 AbsoluteValueKind ValueKind) { 9887 switch (ValueKind) { 9888 case AVK_Integer: 9889 switch (AbsKind) { 9890 default: 9891 return 0; 9892 case Builtin::BI__builtin_fabsf: 9893 case Builtin::BI__builtin_fabs: 9894 case Builtin::BI__builtin_fabsl: 9895 case Builtin::BI__builtin_cabsf: 9896 case Builtin::BI__builtin_cabs: 9897 case Builtin::BI__builtin_cabsl: 9898 return Builtin::BI__builtin_abs; 9899 case Builtin::BIfabsf: 9900 case Builtin::BIfabs: 9901 case Builtin::BIfabsl: 9902 case Builtin::BIcabsf: 9903 case Builtin::BIcabs: 9904 case Builtin::BIcabsl: 9905 return Builtin::BIabs; 9906 } 9907 case AVK_Floating: 9908 switch (AbsKind) { 9909 default: 9910 return 0; 9911 case Builtin::BI__builtin_abs: 9912 case Builtin::BI__builtin_labs: 9913 case Builtin::BI__builtin_llabs: 9914 case Builtin::BI__builtin_cabsf: 9915 case Builtin::BI__builtin_cabs: 9916 case Builtin::BI__builtin_cabsl: 9917 return Builtin::BI__builtin_fabsf; 9918 case Builtin::BIabs: 9919 case Builtin::BIlabs: 9920 case Builtin::BIllabs: 9921 case Builtin::BIcabsf: 9922 case Builtin::BIcabs: 9923 case Builtin::BIcabsl: 9924 return Builtin::BIfabsf; 9925 } 9926 case AVK_Complex: 9927 switch (AbsKind) { 9928 default: 9929 return 0; 9930 case Builtin::BI__builtin_abs: 9931 case Builtin::BI__builtin_labs: 9932 case Builtin::BI__builtin_llabs: 9933 case Builtin::BI__builtin_fabsf: 9934 case Builtin::BI__builtin_fabs: 9935 case Builtin::BI__builtin_fabsl: 9936 return Builtin::BI__builtin_cabsf; 9937 case Builtin::BIabs: 9938 case Builtin::BIlabs: 9939 case Builtin::BIllabs: 9940 case Builtin::BIfabsf: 9941 case Builtin::BIfabs: 9942 case Builtin::BIfabsl: 9943 return Builtin::BIcabsf; 9944 } 9945 } 9946 llvm_unreachable("Unable to convert function"); 9947 } 9948 9949 static unsigned getAbsoluteValueFunctionKind(const FunctionDecl *FDecl) { 9950 const IdentifierInfo *FnInfo = FDecl->getIdentifier(); 9951 if (!FnInfo) 9952 return 0; 9953 9954 switch (FDecl->getBuiltinID()) { 9955 default: 9956 return 0; 9957 case Builtin::BI__builtin_abs: 9958 case Builtin::BI__builtin_fabs: 9959 case Builtin::BI__builtin_fabsf: 9960 case Builtin::BI__builtin_fabsl: 9961 case Builtin::BI__builtin_labs: 9962 case Builtin::BI__builtin_llabs: 9963 case Builtin::BI__builtin_cabs: 9964 case Builtin::BI__builtin_cabsf: 9965 case Builtin::BI__builtin_cabsl: 9966 case Builtin::BIabs: 9967 case Builtin::BIlabs: 9968 case Builtin::BIllabs: 9969 case Builtin::BIfabs: 9970 case Builtin::BIfabsf: 9971 case Builtin::BIfabsl: 9972 case Builtin::BIcabs: 9973 case Builtin::BIcabsf: 9974 case Builtin::BIcabsl: 9975 return FDecl->getBuiltinID(); 9976 } 9977 llvm_unreachable("Unknown Builtin type"); 9978 } 9979 9980 // If the replacement is valid, emit a note with replacement function. 9981 // Additionally, suggest including the proper header if not already included. 9982 static void emitReplacement(Sema &S, SourceLocation Loc, SourceRange Range, 9983 unsigned AbsKind, QualType ArgType) { 9984 bool EmitHeaderHint = true; 9985 const char *HeaderName = nullptr; 9986 const char *FunctionName = nullptr; 9987 if (S.getLangOpts().CPlusPlus && !ArgType->isAnyComplexType()) { 9988 FunctionName = "std::abs"; 9989 if (ArgType->isIntegralOrEnumerationType()) { 9990 HeaderName = "cstdlib"; 9991 } else if (ArgType->isRealFloatingType()) { 9992 HeaderName = "cmath"; 9993 } else { 9994 llvm_unreachable("Invalid Type"); 9995 } 9996 9997 // Lookup all std::abs 9998 if (NamespaceDecl *Std = S.getStdNamespace()) { 9999 LookupResult R(S, &S.Context.Idents.get("abs"), Loc, Sema::LookupAnyName); 10000 R.suppressDiagnostics(); 10001 S.LookupQualifiedName(R, Std); 10002 10003 for (const auto *I : R) { 10004 const FunctionDecl *FDecl = nullptr; 10005 if (const UsingShadowDecl *UsingD = dyn_cast<UsingShadowDecl>(I)) { 10006 FDecl = dyn_cast<FunctionDecl>(UsingD->getTargetDecl()); 10007 } else { 10008 FDecl = dyn_cast<FunctionDecl>(I); 10009 } 10010 if (!FDecl) 10011 continue; 10012 10013 // Found std::abs(), check that they are the right ones. 10014 if (FDecl->getNumParams() != 1) 10015 continue; 10016 10017 // Check that the parameter type can handle the argument. 10018 QualType ParamType = FDecl->getParamDecl(0)->getType(); 10019 if (getAbsoluteValueKind(ArgType) == getAbsoluteValueKind(ParamType) && 10020 S.Context.getTypeSize(ArgType) <= 10021 S.Context.getTypeSize(ParamType)) { 10022 // Found a function, don't need the header hint. 10023 EmitHeaderHint = false; 10024 break; 10025 } 10026 } 10027 } 10028 } else { 10029 FunctionName = S.Context.BuiltinInfo.getName(AbsKind); 10030 HeaderName = S.Context.BuiltinInfo.getHeaderName(AbsKind); 10031 10032 if (HeaderName) { 10033 DeclarationName DN(&S.Context.Idents.get(FunctionName)); 10034 LookupResult R(S, DN, Loc, Sema::LookupAnyName); 10035 R.suppressDiagnostics(); 10036 S.LookupName(R, S.getCurScope()); 10037 10038 if (R.isSingleResult()) { 10039 FunctionDecl *FD = dyn_cast<FunctionDecl>(R.getFoundDecl()); 10040 if (FD && FD->getBuiltinID() == AbsKind) { 10041 EmitHeaderHint = false; 10042 } else { 10043 return; 10044 } 10045 } else if (!R.empty()) { 10046 return; 10047 } 10048 } 10049 } 10050 10051 S.Diag(Loc, diag::note_replace_abs_function) 10052 << FunctionName << FixItHint::CreateReplacement(Range, FunctionName); 10053 10054 if (!HeaderName) 10055 return; 10056 10057 if (!EmitHeaderHint) 10058 return; 10059 10060 S.Diag(Loc, diag::note_include_header_or_declare) << HeaderName 10061 << FunctionName; 10062 } 10063 10064 template <std::size_t StrLen> 10065 static bool IsStdFunction(const FunctionDecl *FDecl, 10066 const char (&Str)[StrLen]) { 10067 if (!FDecl) 10068 return false; 10069 if (!FDecl->getIdentifier() || !FDecl->getIdentifier()->isStr(Str)) 10070 return false; 10071 if (!FDecl->isInStdNamespace()) 10072 return false; 10073 10074 return true; 10075 } 10076 10077 // Warn when using the wrong abs() function. 10078 void Sema::CheckAbsoluteValueFunction(const CallExpr *Call, 10079 const FunctionDecl *FDecl) { 10080 if (Call->getNumArgs() != 1) 10081 return; 10082 10083 unsigned AbsKind = getAbsoluteValueFunctionKind(FDecl); 10084 bool IsStdAbs = IsStdFunction(FDecl, "abs"); 10085 if (AbsKind == 0 && !IsStdAbs) 10086 return; 10087 10088 QualType ArgType = Call->getArg(0)->IgnoreParenImpCasts()->getType(); 10089 QualType ParamType = Call->getArg(0)->getType(); 10090 10091 // Unsigned types cannot be negative. Suggest removing the absolute value 10092 // function call. 10093 if (ArgType->isUnsignedIntegerType()) { 10094 const char *FunctionName = 10095 IsStdAbs ? "std::abs" : Context.BuiltinInfo.getName(AbsKind); 10096 Diag(Call->getExprLoc(), diag::warn_unsigned_abs) << ArgType << ParamType; 10097 Diag(Call->getExprLoc(), diag::note_remove_abs) 10098 << FunctionName 10099 << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange()); 10100 return; 10101 } 10102 10103 // Taking the absolute value of a pointer is very suspicious, they probably 10104 // wanted to index into an array, dereference a pointer, call a function, etc. 10105 if (ArgType->isPointerType() || ArgType->canDecayToPointerType()) { 10106 unsigned DiagType = 0; 10107 if (ArgType->isFunctionType()) 10108 DiagType = 1; 10109 else if (ArgType->isArrayType()) 10110 DiagType = 2; 10111 10112 Diag(Call->getExprLoc(), diag::warn_pointer_abs) << DiagType << ArgType; 10113 return; 10114 } 10115 10116 // std::abs has overloads which prevent most of the absolute value problems 10117 // from occurring. 10118 if (IsStdAbs) 10119 return; 10120 10121 AbsoluteValueKind ArgValueKind = getAbsoluteValueKind(ArgType); 10122 AbsoluteValueKind ParamValueKind = getAbsoluteValueKind(ParamType); 10123 10124 // The argument and parameter are the same kind. Check if they are the right 10125 // size. 10126 if (ArgValueKind == ParamValueKind) { 10127 if (Context.getTypeSize(ArgType) <= Context.getTypeSize(ParamType)) 10128 return; 10129 10130 unsigned NewAbsKind = getBestAbsFunction(Context, ArgType, AbsKind); 10131 Diag(Call->getExprLoc(), diag::warn_abs_too_small) 10132 << FDecl << ArgType << ParamType; 10133 10134 if (NewAbsKind == 0) 10135 return; 10136 10137 emitReplacement(*this, Call->getExprLoc(), 10138 Call->getCallee()->getSourceRange(), NewAbsKind, ArgType); 10139 return; 10140 } 10141 10142 // ArgValueKind != ParamValueKind 10143 // The wrong type of absolute value function was used. Attempt to find the 10144 // proper one. 10145 unsigned NewAbsKind = changeAbsFunction(AbsKind, ArgValueKind); 10146 NewAbsKind = getBestAbsFunction(Context, ArgType, NewAbsKind); 10147 if (NewAbsKind == 0) 10148 return; 10149 10150 Diag(Call->getExprLoc(), diag::warn_wrong_absolute_value_type) 10151 << FDecl << ParamValueKind << ArgValueKind; 10152 10153 emitReplacement(*this, Call->getExprLoc(), 10154 Call->getCallee()->getSourceRange(), NewAbsKind, ArgType); 10155 } 10156 10157 //===--- CHECK: Warn on use of std::max and unsigned zero. r---------------===// 10158 void Sema::CheckMaxUnsignedZero(const CallExpr *Call, 10159 const FunctionDecl *FDecl) { 10160 if (!Call || !FDecl) return; 10161 10162 // Ignore template specializations and macros. 10163 if (inTemplateInstantiation()) return; 10164 if (Call->getExprLoc().isMacroID()) return; 10165 10166 // Only care about the one template argument, two function parameter std::max 10167 if (Call->getNumArgs() != 2) return; 10168 if (!IsStdFunction(FDecl, "max")) return; 10169 const auto * ArgList = FDecl->getTemplateSpecializationArgs(); 10170 if (!ArgList) return; 10171 if (ArgList->size() != 1) return; 10172 10173 // Check that template type argument is unsigned integer. 10174 const auto& TA = ArgList->get(0); 10175 if (TA.getKind() != TemplateArgument::Type) return; 10176 QualType ArgType = TA.getAsType(); 10177 if (!ArgType->isUnsignedIntegerType()) return; 10178 10179 // See if either argument is a literal zero. 10180 auto IsLiteralZeroArg = [](const Expr* E) -> bool { 10181 const auto *MTE = dyn_cast<MaterializeTemporaryExpr>(E); 10182 if (!MTE) return false; 10183 const auto *Num = dyn_cast<IntegerLiteral>(MTE->getSubExpr()); 10184 if (!Num) return false; 10185 if (Num->getValue() != 0) return false; 10186 return true; 10187 }; 10188 10189 const Expr *FirstArg = Call->getArg(0); 10190 const Expr *SecondArg = Call->getArg(1); 10191 const bool IsFirstArgZero = IsLiteralZeroArg(FirstArg); 10192 const bool IsSecondArgZero = IsLiteralZeroArg(SecondArg); 10193 10194 // Only warn when exactly one argument is zero. 10195 if (IsFirstArgZero == IsSecondArgZero) return; 10196 10197 SourceRange FirstRange = FirstArg->getSourceRange(); 10198 SourceRange SecondRange = SecondArg->getSourceRange(); 10199 10200 SourceRange ZeroRange = IsFirstArgZero ? FirstRange : SecondRange; 10201 10202 Diag(Call->getExprLoc(), diag::warn_max_unsigned_zero) 10203 << IsFirstArgZero << Call->getCallee()->getSourceRange() << ZeroRange; 10204 10205 // Deduce what parts to remove so that "std::max(0u, foo)" becomes "(foo)". 10206 SourceRange RemovalRange; 10207 if (IsFirstArgZero) { 10208 RemovalRange = SourceRange(FirstRange.getBegin(), 10209 SecondRange.getBegin().getLocWithOffset(-1)); 10210 } else { 10211 RemovalRange = SourceRange(getLocForEndOfToken(FirstRange.getEnd()), 10212 SecondRange.getEnd()); 10213 } 10214 10215 Diag(Call->getExprLoc(), diag::note_remove_max_call) 10216 << FixItHint::CreateRemoval(Call->getCallee()->getSourceRange()) 10217 << FixItHint::CreateRemoval(RemovalRange); 10218 } 10219 10220 //===--- CHECK: Standard memory functions ---------------------------------===// 10221 10222 /// Takes the expression passed to the size_t parameter of functions 10223 /// such as memcmp, strncat, etc and warns if it's a comparison. 10224 /// 10225 /// This is to catch typos like `if (memcmp(&a, &b, sizeof(a) > 0))`. 10226 static bool CheckMemorySizeofForComparison(Sema &S, const Expr *E, 10227 IdentifierInfo *FnName, 10228 SourceLocation FnLoc, 10229 SourceLocation RParenLoc) { 10230 const BinaryOperator *Size = dyn_cast<BinaryOperator>(E); 10231 if (!Size) 10232 return false; 10233 10234 // if E is binop and op is <=>, >, <, >=, <=, ==, &&, ||: 10235 if (!Size->isComparisonOp() && !Size->isLogicalOp()) 10236 return false; 10237 10238 SourceRange SizeRange = Size->getSourceRange(); 10239 S.Diag(Size->getOperatorLoc(), diag::warn_memsize_comparison) 10240 << SizeRange << FnName; 10241 S.Diag(FnLoc, diag::note_memsize_comparison_paren) 10242 << FnName 10243 << FixItHint::CreateInsertion( 10244 S.getLocForEndOfToken(Size->getLHS()->getEndLoc()), ")") 10245 << FixItHint::CreateRemoval(RParenLoc); 10246 S.Diag(SizeRange.getBegin(), diag::note_memsize_comparison_cast_silence) 10247 << FixItHint::CreateInsertion(SizeRange.getBegin(), "(size_t)(") 10248 << FixItHint::CreateInsertion(S.getLocForEndOfToken(SizeRange.getEnd()), 10249 ")"); 10250 10251 return true; 10252 } 10253 10254 /// Determine whether the given type is or contains a dynamic class type 10255 /// (e.g., whether it has a vtable). 10256 static const CXXRecordDecl *getContainedDynamicClass(QualType T, 10257 bool &IsContained) { 10258 // Look through array types while ignoring qualifiers. 10259 const Type *Ty = T->getBaseElementTypeUnsafe(); 10260 IsContained = false; 10261 10262 const CXXRecordDecl *RD = Ty->getAsCXXRecordDecl(); 10263 RD = RD ? RD->getDefinition() : nullptr; 10264 if (!RD || RD->isInvalidDecl()) 10265 return nullptr; 10266 10267 if (RD->isDynamicClass()) 10268 return RD; 10269 10270 // Check all the fields. If any bases were dynamic, the class is dynamic. 10271 // It's impossible for a class to transitively contain itself by value, so 10272 // infinite recursion is impossible. 10273 for (auto *FD : RD->fields()) { 10274 bool SubContained; 10275 if (const CXXRecordDecl *ContainedRD = 10276 getContainedDynamicClass(FD->getType(), SubContained)) { 10277 IsContained = true; 10278 return ContainedRD; 10279 } 10280 } 10281 10282 return nullptr; 10283 } 10284 10285 static const UnaryExprOrTypeTraitExpr *getAsSizeOfExpr(const Expr *E) { 10286 if (const auto *Unary = dyn_cast<UnaryExprOrTypeTraitExpr>(E)) 10287 if (Unary->getKind() == UETT_SizeOf) 10288 return Unary; 10289 return nullptr; 10290 } 10291 10292 /// If E is a sizeof expression, returns its argument expression, 10293 /// otherwise returns NULL. 10294 static const Expr *getSizeOfExprArg(const Expr *E) { 10295 if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E)) 10296 if (!SizeOf->isArgumentType()) 10297 return SizeOf->getArgumentExpr()->IgnoreParenImpCasts(); 10298 return nullptr; 10299 } 10300 10301 /// If E is a sizeof expression, returns its argument type. 10302 static QualType getSizeOfArgType(const Expr *E) { 10303 if (const UnaryExprOrTypeTraitExpr *SizeOf = getAsSizeOfExpr(E)) 10304 return SizeOf->getTypeOfArgument(); 10305 return QualType(); 10306 } 10307 10308 namespace { 10309 10310 struct SearchNonTrivialToInitializeField 10311 : DefaultInitializedTypeVisitor<SearchNonTrivialToInitializeField> { 10312 using Super = 10313 DefaultInitializedTypeVisitor<SearchNonTrivialToInitializeField>; 10314 10315 SearchNonTrivialToInitializeField(const Expr *E, Sema &S) : E(E), S(S) {} 10316 10317 void visitWithKind(QualType::PrimitiveDefaultInitializeKind PDIK, QualType FT, 10318 SourceLocation SL) { 10319 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) { 10320 asDerived().visitArray(PDIK, AT, SL); 10321 return; 10322 } 10323 10324 Super::visitWithKind(PDIK, FT, SL); 10325 } 10326 10327 void visitARCStrong(QualType FT, SourceLocation SL) { 10328 S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 1); 10329 } 10330 void visitARCWeak(QualType FT, SourceLocation SL) { 10331 S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 1); 10332 } 10333 void visitStruct(QualType FT, SourceLocation SL) { 10334 for (const FieldDecl *FD : FT->castAs<RecordType>()->getDecl()->fields()) 10335 visit(FD->getType(), FD->getLocation()); 10336 } 10337 void visitArray(QualType::PrimitiveDefaultInitializeKind PDIK, 10338 const ArrayType *AT, SourceLocation SL) { 10339 visit(getContext().getBaseElementType(AT), SL); 10340 } 10341 void visitTrivial(QualType FT, SourceLocation SL) {} 10342 10343 static void diag(QualType RT, const Expr *E, Sema &S) { 10344 SearchNonTrivialToInitializeField(E, S).visitStruct(RT, SourceLocation()); 10345 } 10346 10347 ASTContext &getContext() { return S.getASTContext(); } 10348 10349 const Expr *E; 10350 Sema &S; 10351 }; 10352 10353 struct SearchNonTrivialToCopyField 10354 : CopiedTypeVisitor<SearchNonTrivialToCopyField, false> { 10355 using Super = CopiedTypeVisitor<SearchNonTrivialToCopyField, false>; 10356 10357 SearchNonTrivialToCopyField(const Expr *E, Sema &S) : E(E), S(S) {} 10358 10359 void visitWithKind(QualType::PrimitiveCopyKind PCK, QualType FT, 10360 SourceLocation SL) { 10361 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) { 10362 asDerived().visitArray(PCK, AT, SL); 10363 return; 10364 } 10365 10366 Super::visitWithKind(PCK, FT, SL); 10367 } 10368 10369 void visitARCStrong(QualType FT, SourceLocation SL) { 10370 S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 0); 10371 } 10372 void visitARCWeak(QualType FT, SourceLocation SL) { 10373 S.DiagRuntimeBehavior(SL, E, S.PDiag(diag::note_nontrivial_field) << 0); 10374 } 10375 void visitStruct(QualType FT, SourceLocation SL) { 10376 for (const FieldDecl *FD : FT->castAs<RecordType>()->getDecl()->fields()) 10377 visit(FD->getType(), FD->getLocation()); 10378 } 10379 void visitArray(QualType::PrimitiveCopyKind PCK, const ArrayType *AT, 10380 SourceLocation SL) { 10381 visit(getContext().getBaseElementType(AT), SL); 10382 } 10383 void preVisit(QualType::PrimitiveCopyKind PCK, QualType FT, 10384 SourceLocation SL) {} 10385 void visitTrivial(QualType FT, SourceLocation SL) {} 10386 void visitVolatileTrivial(QualType FT, SourceLocation SL) {} 10387 10388 static void diag(QualType RT, const Expr *E, Sema &S) { 10389 SearchNonTrivialToCopyField(E, S).visitStruct(RT, SourceLocation()); 10390 } 10391 10392 ASTContext &getContext() { return S.getASTContext(); } 10393 10394 const Expr *E; 10395 Sema &S; 10396 }; 10397 10398 } 10399 10400 /// Detect if \c SizeofExpr is likely to calculate the sizeof an object. 10401 static bool doesExprLikelyComputeSize(const Expr *SizeofExpr) { 10402 SizeofExpr = SizeofExpr->IgnoreParenImpCasts(); 10403 10404 if (const auto *BO = dyn_cast<BinaryOperator>(SizeofExpr)) { 10405 if (BO->getOpcode() != BO_Mul && BO->getOpcode() != BO_Add) 10406 return false; 10407 10408 return doesExprLikelyComputeSize(BO->getLHS()) || 10409 doesExprLikelyComputeSize(BO->getRHS()); 10410 } 10411 10412 return getAsSizeOfExpr(SizeofExpr) != nullptr; 10413 } 10414 10415 /// Check if the ArgLoc originated from a macro passed to the call at CallLoc. 10416 /// 10417 /// \code 10418 /// #define MACRO 0 10419 /// foo(MACRO); 10420 /// foo(0); 10421 /// \endcode 10422 /// 10423 /// This should return true for the first call to foo, but not for the second 10424 /// (regardless of whether foo is a macro or function). 10425 static bool isArgumentExpandedFromMacro(SourceManager &SM, 10426 SourceLocation CallLoc, 10427 SourceLocation ArgLoc) { 10428 if (!CallLoc.isMacroID()) 10429 return SM.getFileID(CallLoc) != SM.getFileID(ArgLoc); 10430 10431 return SM.getFileID(SM.getImmediateMacroCallerLoc(CallLoc)) != 10432 SM.getFileID(SM.getImmediateMacroCallerLoc(ArgLoc)); 10433 } 10434 10435 /// Diagnose cases like 'memset(buf, sizeof(buf), 0)', which should have the 10436 /// last two arguments transposed. 10437 static void CheckMemaccessSize(Sema &S, unsigned BId, const CallExpr *Call) { 10438 if (BId != Builtin::BImemset && BId != Builtin::BIbzero) 10439 return; 10440 10441 const Expr *SizeArg = 10442 Call->getArg(BId == Builtin::BImemset ? 2 : 1)->IgnoreImpCasts(); 10443 10444 auto isLiteralZero = [](const Expr *E) { 10445 return isa<IntegerLiteral>(E) && cast<IntegerLiteral>(E)->getValue() == 0; 10446 }; 10447 10448 // If we're memsetting or bzeroing 0 bytes, then this is likely an error. 10449 SourceLocation CallLoc = Call->getRParenLoc(); 10450 SourceManager &SM = S.getSourceManager(); 10451 if (isLiteralZero(SizeArg) && 10452 !isArgumentExpandedFromMacro(SM, CallLoc, SizeArg->getExprLoc())) { 10453 10454 SourceLocation DiagLoc = SizeArg->getExprLoc(); 10455 10456 // Some platforms #define bzero to __builtin_memset. See if this is the 10457 // case, and if so, emit a better diagnostic. 10458 if (BId == Builtin::BIbzero || 10459 (CallLoc.isMacroID() && Lexer::getImmediateMacroName( 10460 CallLoc, SM, S.getLangOpts()) == "bzero")) { 10461 S.Diag(DiagLoc, diag::warn_suspicious_bzero_size); 10462 S.Diag(DiagLoc, diag::note_suspicious_bzero_size_silence); 10463 } else if (!isLiteralZero(Call->getArg(1)->IgnoreImpCasts())) { 10464 S.Diag(DiagLoc, diag::warn_suspicious_sizeof_memset) << 0; 10465 S.Diag(DiagLoc, diag::note_suspicious_sizeof_memset_silence) << 0; 10466 } 10467 return; 10468 } 10469 10470 // If the second argument to a memset is a sizeof expression and the third 10471 // isn't, this is also likely an error. This should catch 10472 // 'memset(buf, sizeof(buf), 0xff)'. 10473 if (BId == Builtin::BImemset && 10474 doesExprLikelyComputeSize(Call->getArg(1)) && 10475 !doesExprLikelyComputeSize(Call->getArg(2))) { 10476 SourceLocation DiagLoc = Call->getArg(1)->getExprLoc(); 10477 S.Diag(DiagLoc, diag::warn_suspicious_sizeof_memset) << 1; 10478 S.Diag(DiagLoc, diag::note_suspicious_sizeof_memset_silence) << 1; 10479 return; 10480 } 10481 } 10482 10483 /// Check for dangerous or invalid arguments to memset(). 10484 /// 10485 /// This issues warnings on known problematic, dangerous or unspecified 10486 /// arguments to the standard 'memset', 'memcpy', 'memmove', and 'memcmp' 10487 /// function calls. 10488 /// 10489 /// \param Call The call expression to diagnose. 10490 void Sema::CheckMemaccessArguments(const CallExpr *Call, 10491 unsigned BId, 10492 IdentifierInfo *FnName) { 10493 assert(BId != 0); 10494 10495 // It is possible to have a non-standard definition of memset. Validate 10496 // we have enough arguments, and if not, abort further checking. 10497 unsigned ExpectedNumArgs = 10498 (BId == Builtin::BIstrndup || BId == Builtin::BIbzero ? 2 : 3); 10499 if (Call->getNumArgs() < ExpectedNumArgs) 10500 return; 10501 10502 unsigned LastArg = (BId == Builtin::BImemset || BId == Builtin::BIbzero || 10503 BId == Builtin::BIstrndup ? 1 : 2); 10504 unsigned LenArg = 10505 (BId == Builtin::BIbzero || BId == Builtin::BIstrndup ? 1 : 2); 10506 const Expr *LenExpr = Call->getArg(LenArg)->IgnoreParenImpCasts(); 10507 10508 if (CheckMemorySizeofForComparison(*this, LenExpr, FnName, 10509 Call->getBeginLoc(), Call->getRParenLoc())) 10510 return; 10511 10512 // Catch cases like 'memset(buf, sizeof(buf), 0)'. 10513 CheckMemaccessSize(*this, BId, Call); 10514 10515 // We have special checking when the length is a sizeof expression. 10516 QualType SizeOfArgTy = getSizeOfArgType(LenExpr); 10517 const Expr *SizeOfArg = getSizeOfExprArg(LenExpr); 10518 llvm::FoldingSetNodeID SizeOfArgID; 10519 10520 // Although widely used, 'bzero' is not a standard function. Be more strict 10521 // with the argument types before allowing diagnostics and only allow the 10522 // form bzero(ptr, sizeof(...)). 10523 QualType FirstArgTy = Call->getArg(0)->IgnoreParenImpCasts()->getType(); 10524 if (BId == Builtin::BIbzero && !FirstArgTy->getAs<PointerType>()) 10525 return; 10526 10527 for (unsigned ArgIdx = 0; ArgIdx != LastArg; ++ArgIdx) { 10528 const Expr *Dest = Call->getArg(ArgIdx)->IgnoreParenImpCasts(); 10529 SourceRange ArgRange = Call->getArg(ArgIdx)->getSourceRange(); 10530 10531 QualType DestTy = Dest->getType(); 10532 QualType PointeeTy; 10533 if (const PointerType *DestPtrTy = DestTy->getAs<PointerType>()) { 10534 PointeeTy = DestPtrTy->getPointeeType(); 10535 10536 // Never warn about void type pointers. This can be used to suppress 10537 // false positives. 10538 if (PointeeTy->isVoidType()) 10539 continue; 10540 10541 // Catch "memset(p, 0, sizeof(p))" -- needs to be sizeof(*p). Do this by 10542 // actually comparing the expressions for equality. Because computing the 10543 // expression IDs can be expensive, we only do this if the diagnostic is 10544 // enabled. 10545 if (SizeOfArg && 10546 !Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess, 10547 SizeOfArg->getExprLoc())) { 10548 // We only compute IDs for expressions if the warning is enabled, and 10549 // cache the sizeof arg's ID. 10550 if (SizeOfArgID == llvm::FoldingSetNodeID()) 10551 SizeOfArg->Profile(SizeOfArgID, Context, true); 10552 llvm::FoldingSetNodeID DestID; 10553 Dest->Profile(DestID, Context, true); 10554 if (DestID == SizeOfArgID) { 10555 // TODO: For strncpy() and friends, this could suggest sizeof(dst) 10556 // over sizeof(src) as well. 10557 unsigned ActionIdx = 0; // Default is to suggest dereferencing. 10558 StringRef ReadableName = FnName->getName(); 10559 10560 if (const UnaryOperator *UnaryOp = dyn_cast<UnaryOperator>(Dest)) 10561 if (UnaryOp->getOpcode() == UO_AddrOf) 10562 ActionIdx = 1; // If its an address-of operator, just remove it. 10563 if (!PointeeTy->isIncompleteType() && 10564 (Context.getTypeSize(PointeeTy) == Context.getCharWidth())) 10565 ActionIdx = 2; // If the pointee's size is sizeof(char), 10566 // suggest an explicit length. 10567 10568 // If the function is defined as a builtin macro, do not show macro 10569 // expansion. 10570 SourceLocation SL = SizeOfArg->getExprLoc(); 10571 SourceRange DSR = Dest->getSourceRange(); 10572 SourceRange SSR = SizeOfArg->getSourceRange(); 10573 SourceManager &SM = getSourceManager(); 10574 10575 if (SM.isMacroArgExpansion(SL)) { 10576 ReadableName = Lexer::getImmediateMacroName(SL, SM, LangOpts); 10577 SL = SM.getSpellingLoc(SL); 10578 DSR = SourceRange(SM.getSpellingLoc(DSR.getBegin()), 10579 SM.getSpellingLoc(DSR.getEnd())); 10580 SSR = SourceRange(SM.getSpellingLoc(SSR.getBegin()), 10581 SM.getSpellingLoc(SSR.getEnd())); 10582 } 10583 10584 DiagRuntimeBehavior(SL, SizeOfArg, 10585 PDiag(diag::warn_sizeof_pointer_expr_memaccess) 10586 << ReadableName 10587 << PointeeTy 10588 << DestTy 10589 << DSR 10590 << SSR); 10591 DiagRuntimeBehavior(SL, SizeOfArg, 10592 PDiag(diag::warn_sizeof_pointer_expr_memaccess_note) 10593 << ActionIdx 10594 << SSR); 10595 10596 break; 10597 } 10598 } 10599 10600 // Also check for cases where the sizeof argument is the exact same 10601 // type as the memory argument, and where it points to a user-defined 10602 // record type. 10603 if (SizeOfArgTy != QualType()) { 10604 if (PointeeTy->isRecordType() && 10605 Context.typesAreCompatible(SizeOfArgTy, DestTy)) { 10606 DiagRuntimeBehavior(LenExpr->getExprLoc(), Dest, 10607 PDiag(diag::warn_sizeof_pointer_type_memaccess) 10608 << FnName << SizeOfArgTy << ArgIdx 10609 << PointeeTy << Dest->getSourceRange() 10610 << LenExpr->getSourceRange()); 10611 break; 10612 } 10613 } 10614 } else if (DestTy->isArrayType()) { 10615 PointeeTy = DestTy; 10616 } 10617 10618 if (PointeeTy == QualType()) 10619 continue; 10620 10621 // Always complain about dynamic classes. 10622 bool IsContained; 10623 if (const CXXRecordDecl *ContainedRD = 10624 getContainedDynamicClass(PointeeTy, IsContained)) { 10625 10626 unsigned OperationType = 0; 10627 const bool IsCmp = BId == Builtin::BImemcmp || BId == Builtin::BIbcmp; 10628 // "overwritten" if we're warning about the destination for any call 10629 // but memcmp; otherwise a verb appropriate to the call. 10630 if (ArgIdx != 0 || IsCmp) { 10631 if (BId == Builtin::BImemcpy) 10632 OperationType = 1; 10633 else if(BId == Builtin::BImemmove) 10634 OperationType = 2; 10635 else if (IsCmp) 10636 OperationType = 3; 10637 } 10638 10639 DiagRuntimeBehavior(Dest->getExprLoc(), Dest, 10640 PDiag(diag::warn_dyn_class_memaccess) 10641 << (IsCmp ? ArgIdx + 2 : ArgIdx) << FnName 10642 << IsContained << ContainedRD << OperationType 10643 << Call->getCallee()->getSourceRange()); 10644 } else if (PointeeTy.hasNonTrivialObjCLifetime() && 10645 BId != Builtin::BImemset) 10646 DiagRuntimeBehavior( 10647 Dest->getExprLoc(), Dest, 10648 PDiag(diag::warn_arc_object_memaccess) 10649 << ArgIdx << FnName << PointeeTy 10650 << Call->getCallee()->getSourceRange()); 10651 else if (const auto *RT = PointeeTy->getAs<RecordType>()) { 10652 if ((BId == Builtin::BImemset || BId == Builtin::BIbzero) && 10653 RT->getDecl()->isNonTrivialToPrimitiveDefaultInitialize()) { 10654 DiagRuntimeBehavior(Dest->getExprLoc(), Dest, 10655 PDiag(diag::warn_cstruct_memaccess) 10656 << ArgIdx << FnName << PointeeTy << 0); 10657 SearchNonTrivialToInitializeField::diag(PointeeTy, Dest, *this); 10658 } else if ((BId == Builtin::BImemcpy || BId == Builtin::BImemmove) && 10659 RT->getDecl()->isNonTrivialToPrimitiveCopy()) { 10660 DiagRuntimeBehavior(Dest->getExprLoc(), Dest, 10661 PDiag(diag::warn_cstruct_memaccess) 10662 << ArgIdx << FnName << PointeeTy << 1); 10663 SearchNonTrivialToCopyField::diag(PointeeTy, Dest, *this); 10664 } else { 10665 continue; 10666 } 10667 } else 10668 continue; 10669 10670 DiagRuntimeBehavior( 10671 Dest->getExprLoc(), Dest, 10672 PDiag(diag::note_bad_memaccess_silence) 10673 << FixItHint::CreateInsertion(ArgRange.getBegin(), "(void*)")); 10674 break; 10675 } 10676 } 10677 10678 // A little helper routine: ignore addition and subtraction of integer literals. 10679 // This intentionally does not ignore all integer constant expressions because 10680 // we don't want to remove sizeof(). 10681 static const Expr *ignoreLiteralAdditions(const Expr *Ex, ASTContext &Ctx) { 10682 Ex = Ex->IgnoreParenCasts(); 10683 10684 while (true) { 10685 const BinaryOperator * BO = dyn_cast<BinaryOperator>(Ex); 10686 if (!BO || !BO->isAdditiveOp()) 10687 break; 10688 10689 const Expr *RHS = BO->getRHS()->IgnoreParenCasts(); 10690 const Expr *LHS = BO->getLHS()->IgnoreParenCasts(); 10691 10692 if (isa<IntegerLiteral>(RHS)) 10693 Ex = LHS; 10694 else if (isa<IntegerLiteral>(LHS)) 10695 Ex = RHS; 10696 else 10697 break; 10698 } 10699 10700 return Ex; 10701 } 10702 10703 static bool isConstantSizeArrayWithMoreThanOneElement(QualType Ty, 10704 ASTContext &Context) { 10705 // Only handle constant-sized or VLAs, but not flexible members. 10706 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(Ty)) { 10707 // Only issue the FIXIT for arrays of size > 1. 10708 if (CAT->getSize().getSExtValue() <= 1) 10709 return false; 10710 } else if (!Ty->isVariableArrayType()) { 10711 return false; 10712 } 10713 return true; 10714 } 10715 10716 // Warn if the user has made the 'size' argument to strlcpy or strlcat 10717 // be the size of the source, instead of the destination. 10718 void Sema::CheckStrlcpycatArguments(const CallExpr *Call, 10719 IdentifierInfo *FnName) { 10720 10721 // Don't crash if the user has the wrong number of arguments 10722 unsigned NumArgs = Call->getNumArgs(); 10723 if ((NumArgs != 3) && (NumArgs != 4)) 10724 return; 10725 10726 const Expr *SrcArg = ignoreLiteralAdditions(Call->getArg(1), Context); 10727 const Expr *SizeArg = ignoreLiteralAdditions(Call->getArg(2), Context); 10728 const Expr *CompareWithSrc = nullptr; 10729 10730 if (CheckMemorySizeofForComparison(*this, SizeArg, FnName, 10731 Call->getBeginLoc(), Call->getRParenLoc())) 10732 return; 10733 10734 // Look for 'strlcpy(dst, x, sizeof(x))' 10735 if (const Expr *Ex = getSizeOfExprArg(SizeArg)) 10736 CompareWithSrc = Ex; 10737 else { 10738 // Look for 'strlcpy(dst, x, strlen(x))' 10739 if (const CallExpr *SizeCall = dyn_cast<CallExpr>(SizeArg)) { 10740 if (SizeCall->getBuiltinCallee() == Builtin::BIstrlen && 10741 SizeCall->getNumArgs() == 1) 10742 CompareWithSrc = ignoreLiteralAdditions(SizeCall->getArg(0), Context); 10743 } 10744 } 10745 10746 if (!CompareWithSrc) 10747 return; 10748 10749 // Determine if the argument to sizeof/strlen is equal to the source 10750 // argument. In principle there's all kinds of things you could do 10751 // here, for instance creating an == expression and evaluating it with 10752 // EvaluateAsBooleanCondition, but this uses a more direct technique: 10753 const DeclRefExpr *SrcArgDRE = dyn_cast<DeclRefExpr>(SrcArg); 10754 if (!SrcArgDRE) 10755 return; 10756 10757 const DeclRefExpr *CompareWithSrcDRE = dyn_cast<DeclRefExpr>(CompareWithSrc); 10758 if (!CompareWithSrcDRE || 10759 SrcArgDRE->getDecl() != CompareWithSrcDRE->getDecl()) 10760 return; 10761 10762 const Expr *OriginalSizeArg = Call->getArg(2); 10763 Diag(CompareWithSrcDRE->getBeginLoc(), diag::warn_strlcpycat_wrong_size) 10764 << OriginalSizeArg->getSourceRange() << FnName; 10765 10766 // Output a FIXIT hint if the destination is an array (rather than a 10767 // pointer to an array). This could be enhanced to handle some 10768 // pointers if we know the actual size, like if DstArg is 'array+2' 10769 // we could say 'sizeof(array)-2'. 10770 const Expr *DstArg = Call->getArg(0)->IgnoreParenImpCasts(); 10771 if (!isConstantSizeArrayWithMoreThanOneElement(DstArg->getType(), Context)) 10772 return; 10773 10774 SmallString<128> sizeString; 10775 llvm::raw_svector_ostream OS(sizeString); 10776 OS << "sizeof("; 10777 DstArg->printPretty(OS, nullptr, getPrintingPolicy()); 10778 OS << ")"; 10779 10780 Diag(OriginalSizeArg->getBeginLoc(), diag::note_strlcpycat_wrong_size) 10781 << FixItHint::CreateReplacement(OriginalSizeArg->getSourceRange(), 10782 OS.str()); 10783 } 10784 10785 /// Check if two expressions refer to the same declaration. 10786 static bool referToTheSameDecl(const Expr *E1, const Expr *E2) { 10787 if (const DeclRefExpr *D1 = dyn_cast_or_null<DeclRefExpr>(E1)) 10788 if (const DeclRefExpr *D2 = dyn_cast_or_null<DeclRefExpr>(E2)) 10789 return D1->getDecl() == D2->getDecl(); 10790 return false; 10791 } 10792 10793 static const Expr *getStrlenExprArg(const Expr *E) { 10794 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) { 10795 const FunctionDecl *FD = CE->getDirectCallee(); 10796 if (!FD || FD->getMemoryFunctionKind() != Builtin::BIstrlen) 10797 return nullptr; 10798 return CE->getArg(0)->IgnoreParenCasts(); 10799 } 10800 return nullptr; 10801 } 10802 10803 // Warn on anti-patterns as the 'size' argument to strncat. 10804 // The correct size argument should look like following: 10805 // strncat(dst, src, sizeof(dst) - strlen(dest) - 1); 10806 void Sema::CheckStrncatArguments(const CallExpr *CE, 10807 IdentifierInfo *FnName) { 10808 // Don't crash if the user has the wrong number of arguments. 10809 if (CE->getNumArgs() < 3) 10810 return; 10811 const Expr *DstArg = CE->getArg(0)->IgnoreParenCasts(); 10812 const Expr *SrcArg = CE->getArg(1)->IgnoreParenCasts(); 10813 const Expr *LenArg = CE->getArg(2)->IgnoreParenCasts(); 10814 10815 if (CheckMemorySizeofForComparison(*this, LenArg, FnName, CE->getBeginLoc(), 10816 CE->getRParenLoc())) 10817 return; 10818 10819 // Identify common expressions, which are wrongly used as the size argument 10820 // to strncat and may lead to buffer overflows. 10821 unsigned PatternType = 0; 10822 if (const Expr *SizeOfArg = getSizeOfExprArg(LenArg)) { 10823 // - sizeof(dst) 10824 if (referToTheSameDecl(SizeOfArg, DstArg)) 10825 PatternType = 1; 10826 // - sizeof(src) 10827 else if (referToTheSameDecl(SizeOfArg, SrcArg)) 10828 PatternType = 2; 10829 } else if (const BinaryOperator *BE = dyn_cast<BinaryOperator>(LenArg)) { 10830 if (BE->getOpcode() == BO_Sub) { 10831 const Expr *L = BE->getLHS()->IgnoreParenCasts(); 10832 const Expr *R = BE->getRHS()->IgnoreParenCasts(); 10833 // - sizeof(dst) - strlen(dst) 10834 if (referToTheSameDecl(DstArg, getSizeOfExprArg(L)) && 10835 referToTheSameDecl(DstArg, getStrlenExprArg(R))) 10836 PatternType = 1; 10837 // - sizeof(src) - (anything) 10838 else if (referToTheSameDecl(SrcArg, getSizeOfExprArg(L))) 10839 PatternType = 2; 10840 } 10841 } 10842 10843 if (PatternType == 0) 10844 return; 10845 10846 // Generate the diagnostic. 10847 SourceLocation SL = LenArg->getBeginLoc(); 10848 SourceRange SR = LenArg->getSourceRange(); 10849 SourceManager &SM = getSourceManager(); 10850 10851 // If the function is defined as a builtin macro, do not show macro expansion. 10852 if (SM.isMacroArgExpansion(SL)) { 10853 SL = SM.getSpellingLoc(SL); 10854 SR = SourceRange(SM.getSpellingLoc(SR.getBegin()), 10855 SM.getSpellingLoc(SR.getEnd())); 10856 } 10857 10858 // Check if the destination is an array (rather than a pointer to an array). 10859 QualType DstTy = DstArg->getType(); 10860 bool isKnownSizeArray = isConstantSizeArrayWithMoreThanOneElement(DstTy, 10861 Context); 10862 if (!isKnownSizeArray) { 10863 if (PatternType == 1) 10864 Diag(SL, diag::warn_strncat_wrong_size) << SR; 10865 else 10866 Diag(SL, diag::warn_strncat_src_size) << SR; 10867 return; 10868 } 10869 10870 if (PatternType == 1) 10871 Diag(SL, diag::warn_strncat_large_size) << SR; 10872 else 10873 Diag(SL, diag::warn_strncat_src_size) << SR; 10874 10875 SmallString<128> sizeString; 10876 llvm::raw_svector_ostream OS(sizeString); 10877 OS << "sizeof("; 10878 DstArg->printPretty(OS, nullptr, getPrintingPolicy()); 10879 OS << ") - "; 10880 OS << "strlen("; 10881 DstArg->printPretty(OS, nullptr, getPrintingPolicy()); 10882 OS << ") - 1"; 10883 10884 Diag(SL, diag::note_strncat_wrong_size) 10885 << FixItHint::CreateReplacement(SR, OS.str()); 10886 } 10887 10888 namespace { 10889 void CheckFreeArgumentsOnLvalue(Sema &S, const std::string &CalleeName, 10890 const UnaryOperator *UnaryExpr, const Decl *D) { 10891 if (isa<FieldDecl, FunctionDecl, VarDecl>(D)) { 10892 S.Diag(UnaryExpr->getBeginLoc(), diag::warn_free_nonheap_object) 10893 << CalleeName << 0 /*object: */ << cast<NamedDecl>(D); 10894 return; 10895 } 10896 } 10897 10898 void CheckFreeArgumentsAddressof(Sema &S, const std::string &CalleeName, 10899 const UnaryOperator *UnaryExpr) { 10900 if (const auto *Lvalue = dyn_cast<DeclRefExpr>(UnaryExpr->getSubExpr())) { 10901 const Decl *D = Lvalue->getDecl(); 10902 if (isa<DeclaratorDecl>(D)) 10903 if (!dyn_cast<DeclaratorDecl>(D)->getType()->isReferenceType()) 10904 return CheckFreeArgumentsOnLvalue(S, CalleeName, UnaryExpr, D); 10905 } 10906 10907 if (const auto *Lvalue = dyn_cast<MemberExpr>(UnaryExpr->getSubExpr())) 10908 return CheckFreeArgumentsOnLvalue(S, CalleeName, UnaryExpr, 10909 Lvalue->getMemberDecl()); 10910 } 10911 10912 void CheckFreeArgumentsPlus(Sema &S, const std::string &CalleeName, 10913 const UnaryOperator *UnaryExpr) { 10914 const auto *Lambda = dyn_cast<LambdaExpr>( 10915 UnaryExpr->getSubExpr()->IgnoreImplicitAsWritten()->IgnoreParens()); 10916 if (!Lambda) 10917 return; 10918 10919 S.Diag(Lambda->getBeginLoc(), diag::warn_free_nonheap_object) 10920 << CalleeName << 2 /*object: lambda expression*/; 10921 } 10922 10923 void CheckFreeArgumentsStackArray(Sema &S, const std::string &CalleeName, 10924 const DeclRefExpr *Lvalue) { 10925 const auto *Var = dyn_cast<VarDecl>(Lvalue->getDecl()); 10926 if (Var == nullptr) 10927 return; 10928 10929 S.Diag(Lvalue->getBeginLoc(), diag::warn_free_nonheap_object) 10930 << CalleeName << 0 /*object: */ << Var; 10931 } 10932 10933 void CheckFreeArgumentsCast(Sema &S, const std::string &CalleeName, 10934 const CastExpr *Cast) { 10935 SmallString<128> SizeString; 10936 llvm::raw_svector_ostream OS(SizeString); 10937 10938 clang::CastKind Kind = Cast->getCastKind(); 10939 if (Kind == clang::CK_BitCast && 10940 !Cast->getSubExpr()->getType()->isFunctionPointerType()) 10941 return; 10942 if (Kind == clang::CK_IntegralToPointer && 10943 !isa<IntegerLiteral>( 10944 Cast->getSubExpr()->IgnoreParenImpCasts()->IgnoreParens())) 10945 return; 10946 10947 switch (Cast->getCastKind()) { 10948 case clang::CK_BitCast: 10949 case clang::CK_IntegralToPointer: 10950 case clang::CK_FunctionToPointerDecay: 10951 OS << '\''; 10952 Cast->printPretty(OS, nullptr, S.getPrintingPolicy()); 10953 OS << '\''; 10954 break; 10955 default: 10956 return; 10957 } 10958 10959 S.Diag(Cast->getBeginLoc(), diag::warn_free_nonheap_object) 10960 << CalleeName << 0 /*object: */ << OS.str(); 10961 } 10962 } // namespace 10963 10964 /// Alerts the user that they are attempting to free a non-malloc'd object. 10965 void Sema::CheckFreeArguments(const CallExpr *E) { 10966 const std::string CalleeName = 10967 dyn_cast<FunctionDecl>(E->getCalleeDecl())->getQualifiedNameAsString(); 10968 10969 { // Prefer something that doesn't involve a cast to make things simpler. 10970 const Expr *Arg = E->getArg(0)->IgnoreParenCasts(); 10971 if (const auto *UnaryExpr = dyn_cast<UnaryOperator>(Arg)) 10972 switch (UnaryExpr->getOpcode()) { 10973 case UnaryOperator::Opcode::UO_AddrOf: 10974 return CheckFreeArgumentsAddressof(*this, CalleeName, UnaryExpr); 10975 case UnaryOperator::Opcode::UO_Plus: 10976 return CheckFreeArgumentsPlus(*this, CalleeName, UnaryExpr); 10977 default: 10978 break; 10979 } 10980 10981 if (const auto *Lvalue = dyn_cast<DeclRefExpr>(Arg)) 10982 if (Lvalue->getType()->isArrayType()) 10983 return CheckFreeArgumentsStackArray(*this, CalleeName, Lvalue); 10984 10985 if (const auto *Label = dyn_cast<AddrLabelExpr>(Arg)) { 10986 Diag(Label->getBeginLoc(), diag::warn_free_nonheap_object) 10987 << CalleeName << 0 /*object: */ << Label->getLabel()->getIdentifier(); 10988 return; 10989 } 10990 10991 if (isa<BlockExpr>(Arg)) { 10992 Diag(Arg->getBeginLoc(), diag::warn_free_nonheap_object) 10993 << CalleeName << 1 /*object: block*/; 10994 return; 10995 } 10996 } 10997 // Maybe the cast was important, check after the other cases. 10998 if (const auto *Cast = dyn_cast<CastExpr>(E->getArg(0))) 10999 return CheckFreeArgumentsCast(*this, CalleeName, Cast); 11000 } 11001 11002 void 11003 Sema::CheckReturnValExpr(Expr *RetValExp, QualType lhsType, 11004 SourceLocation ReturnLoc, 11005 bool isObjCMethod, 11006 const AttrVec *Attrs, 11007 const FunctionDecl *FD) { 11008 // Check if the return value is null but should not be. 11009 if (((Attrs && hasSpecificAttr<ReturnsNonNullAttr>(*Attrs)) || 11010 (!isObjCMethod && isNonNullType(Context, lhsType))) && 11011 CheckNonNullExpr(*this, RetValExp)) 11012 Diag(ReturnLoc, diag::warn_null_ret) 11013 << (isObjCMethod ? 1 : 0) << RetValExp->getSourceRange(); 11014 11015 // C++11 [basic.stc.dynamic.allocation]p4: 11016 // If an allocation function declared with a non-throwing 11017 // exception-specification fails to allocate storage, it shall return 11018 // a null pointer. Any other allocation function that fails to allocate 11019 // storage shall indicate failure only by throwing an exception [...] 11020 if (FD) { 11021 OverloadedOperatorKind Op = FD->getOverloadedOperator(); 11022 if (Op == OO_New || Op == OO_Array_New) { 11023 const FunctionProtoType *Proto 11024 = FD->getType()->castAs<FunctionProtoType>(); 11025 if (!Proto->isNothrow(/*ResultIfDependent*/true) && 11026 CheckNonNullExpr(*this, RetValExp)) 11027 Diag(ReturnLoc, diag::warn_operator_new_returns_null) 11028 << FD << getLangOpts().CPlusPlus11; 11029 } 11030 } 11031 11032 // PPC MMA non-pointer types are not allowed as return type. Checking the type 11033 // here prevent the user from using a PPC MMA type as trailing return type. 11034 if (Context.getTargetInfo().getTriple().isPPC64()) 11035 CheckPPCMMAType(RetValExp->getType(), ReturnLoc); 11036 } 11037 11038 //===--- CHECK: Floating-Point comparisons (-Wfloat-equal) ---------------===// 11039 11040 /// Check for comparisons of floating point operands using != and ==. 11041 /// Issue a warning if these are no self-comparisons, as they are not likely 11042 /// to do what the programmer intended. 11043 void Sema::CheckFloatComparison(SourceLocation Loc, Expr* LHS, Expr *RHS) { 11044 Expr* LeftExprSansParen = LHS->IgnoreParenImpCasts(); 11045 Expr* RightExprSansParen = RHS->IgnoreParenImpCasts(); 11046 11047 // Special case: check for x == x (which is OK). 11048 // Do not emit warnings for such cases. 11049 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LeftExprSansParen)) 11050 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RightExprSansParen)) 11051 if (DRL->getDecl() == DRR->getDecl()) 11052 return; 11053 11054 // Special case: check for comparisons against literals that can be exactly 11055 // represented by APFloat. In such cases, do not emit a warning. This 11056 // is a heuristic: often comparison against such literals are used to 11057 // detect if a value in a variable has not changed. This clearly can 11058 // lead to false negatives. 11059 if (FloatingLiteral* FLL = dyn_cast<FloatingLiteral>(LeftExprSansParen)) { 11060 if (FLL->isExact()) 11061 return; 11062 } else 11063 if (FloatingLiteral* FLR = dyn_cast<FloatingLiteral>(RightExprSansParen)) 11064 if (FLR->isExact()) 11065 return; 11066 11067 // Check for comparisons with builtin types. 11068 if (CallExpr* CL = dyn_cast<CallExpr>(LeftExprSansParen)) 11069 if (CL->getBuiltinCallee()) 11070 return; 11071 11072 if (CallExpr* CR = dyn_cast<CallExpr>(RightExprSansParen)) 11073 if (CR->getBuiltinCallee()) 11074 return; 11075 11076 // Emit the diagnostic. 11077 Diag(Loc, diag::warn_floatingpoint_eq) 11078 << LHS->getSourceRange() << RHS->getSourceRange(); 11079 } 11080 11081 //===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===// 11082 //===--- CHECK: Lossy implicit conversions (-Wconversion) --------------===// 11083 11084 namespace { 11085 11086 /// Structure recording the 'active' range of an integer-valued 11087 /// expression. 11088 struct IntRange { 11089 /// The number of bits active in the int. Note that this includes exactly one 11090 /// sign bit if !NonNegative. 11091 unsigned Width; 11092 11093 /// True if the int is known not to have negative values. If so, all leading 11094 /// bits before Width are known zero, otherwise they are known to be the 11095 /// same as the MSB within Width. 11096 bool NonNegative; 11097 11098 IntRange(unsigned Width, bool NonNegative) 11099 : Width(Width), NonNegative(NonNegative) {} 11100 11101 /// Number of bits excluding the sign bit. 11102 unsigned valueBits() const { 11103 return NonNegative ? Width : Width - 1; 11104 } 11105 11106 /// Returns the range of the bool type. 11107 static IntRange forBoolType() { 11108 return IntRange(1, true); 11109 } 11110 11111 /// Returns the range of an opaque value of the given integral type. 11112 static IntRange forValueOfType(ASTContext &C, QualType T) { 11113 return forValueOfCanonicalType(C, 11114 T->getCanonicalTypeInternal().getTypePtr()); 11115 } 11116 11117 /// Returns the range of an opaque value of a canonical integral type. 11118 static IntRange forValueOfCanonicalType(ASTContext &C, const Type *T) { 11119 assert(T->isCanonicalUnqualified()); 11120 11121 if (const VectorType *VT = dyn_cast<VectorType>(T)) 11122 T = VT->getElementType().getTypePtr(); 11123 if (const ComplexType *CT = dyn_cast<ComplexType>(T)) 11124 T = CT->getElementType().getTypePtr(); 11125 if (const AtomicType *AT = dyn_cast<AtomicType>(T)) 11126 T = AT->getValueType().getTypePtr(); 11127 11128 if (!C.getLangOpts().CPlusPlus) { 11129 // For enum types in C code, use the underlying datatype. 11130 if (const EnumType *ET = dyn_cast<EnumType>(T)) 11131 T = ET->getDecl()->getIntegerType().getDesugaredType(C).getTypePtr(); 11132 } else if (const EnumType *ET = dyn_cast<EnumType>(T)) { 11133 // For enum types in C++, use the known bit width of the enumerators. 11134 EnumDecl *Enum = ET->getDecl(); 11135 // In C++11, enums can have a fixed underlying type. Use this type to 11136 // compute the range. 11137 if (Enum->isFixed()) { 11138 return IntRange(C.getIntWidth(QualType(T, 0)), 11139 !ET->isSignedIntegerOrEnumerationType()); 11140 } 11141 11142 unsigned NumPositive = Enum->getNumPositiveBits(); 11143 unsigned NumNegative = Enum->getNumNegativeBits(); 11144 11145 if (NumNegative == 0) 11146 return IntRange(NumPositive, true/*NonNegative*/); 11147 else 11148 return IntRange(std::max(NumPositive + 1, NumNegative), 11149 false/*NonNegative*/); 11150 } 11151 11152 if (const auto *EIT = dyn_cast<ExtIntType>(T)) 11153 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); 11154 11155 const BuiltinType *BT = cast<BuiltinType>(T); 11156 assert(BT->isInteger()); 11157 11158 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger()); 11159 } 11160 11161 /// Returns the "target" range of a canonical integral type, i.e. 11162 /// the range of values expressible in the type. 11163 /// 11164 /// This matches forValueOfCanonicalType except that enums have the 11165 /// full range of their type, not the range of their enumerators. 11166 static IntRange forTargetOfCanonicalType(ASTContext &C, const Type *T) { 11167 assert(T->isCanonicalUnqualified()); 11168 11169 if (const VectorType *VT = dyn_cast<VectorType>(T)) 11170 T = VT->getElementType().getTypePtr(); 11171 if (const ComplexType *CT = dyn_cast<ComplexType>(T)) 11172 T = CT->getElementType().getTypePtr(); 11173 if (const AtomicType *AT = dyn_cast<AtomicType>(T)) 11174 T = AT->getValueType().getTypePtr(); 11175 if (const EnumType *ET = dyn_cast<EnumType>(T)) 11176 T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr(); 11177 11178 if (const auto *EIT = dyn_cast<ExtIntType>(T)) 11179 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); 11180 11181 const BuiltinType *BT = cast<BuiltinType>(T); 11182 assert(BT->isInteger()); 11183 11184 return IntRange(C.getIntWidth(QualType(T, 0)), BT->isUnsignedInteger()); 11185 } 11186 11187 /// Returns the supremum of two ranges: i.e. their conservative merge. 11188 static IntRange join(IntRange L, IntRange R) { 11189 bool Unsigned = L.NonNegative && R.NonNegative; 11190 return IntRange(std::max(L.valueBits(), R.valueBits()) + !Unsigned, 11191 L.NonNegative && R.NonNegative); 11192 } 11193 11194 /// Return the range of a bitwise-AND of the two ranges. 11195 static IntRange bit_and(IntRange L, IntRange R) { 11196 unsigned Bits = std::max(L.Width, R.Width); 11197 bool NonNegative = false; 11198 if (L.NonNegative) { 11199 Bits = std::min(Bits, L.Width); 11200 NonNegative = true; 11201 } 11202 if (R.NonNegative) { 11203 Bits = std::min(Bits, R.Width); 11204 NonNegative = true; 11205 } 11206 return IntRange(Bits, NonNegative); 11207 } 11208 11209 /// Return the range of a sum of the two ranges. 11210 static IntRange sum(IntRange L, IntRange R) { 11211 bool Unsigned = L.NonNegative && R.NonNegative; 11212 return IntRange(std::max(L.valueBits(), R.valueBits()) + 1 + !Unsigned, 11213 Unsigned); 11214 } 11215 11216 /// Return the range of a difference of the two ranges. 11217 static IntRange difference(IntRange L, IntRange R) { 11218 // We need a 1-bit-wider range if: 11219 // 1) LHS can be negative: least value can be reduced. 11220 // 2) RHS can be negative: greatest value can be increased. 11221 bool CanWiden = !L.NonNegative || !R.NonNegative; 11222 bool Unsigned = L.NonNegative && R.Width == 0; 11223 return IntRange(std::max(L.valueBits(), R.valueBits()) + CanWiden + 11224 !Unsigned, 11225 Unsigned); 11226 } 11227 11228 /// Return the range of a product of the two ranges. 11229 static IntRange product(IntRange L, IntRange R) { 11230 // If both LHS and RHS can be negative, we can form 11231 // -2^L * -2^R = 2^(L + R) 11232 // which requires L + R + 1 value bits to represent. 11233 bool CanWiden = !L.NonNegative && !R.NonNegative; 11234 bool Unsigned = L.NonNegative && R.NonNegative; 11235 return IntRange(L.valueBits() + R.valueBits() + CanWiden + !Unsigned, 11236 Unsigned); 11237 } 11238 11239 /// Return the range of a remainder operation between the two ranges. 11240 static IntRange rem(IntRange L, IntRange R) { 11241 // The result of a remainder can't be larger than the result of 11242 // either side. The sign of the result is the sign of the LHS. 11243 bool Unsigned = L.NonNegative; 11244 return IntRange(std::min(L.valueBits(), R.valueBits()) + !Unsigned, 11245 Unsigned); 11246 } 11247 }; 11248 11249 } // namespace 11250 11251 static IntRange GetValueRange(ASTContext &C, llvm::APSInt &value, 11252 unsigned MaxWidth) { 11253 if (value.isSigned() && value.isNegative()) 11254 return IntRange(value.getMinSignedBits(), false); 11255 11256 if (value.getBitWidth() > MaxWidth) 11257 value = value.trunc(MaxWidth); 11258 11259 // isNonNegative() just checks the sign bit without considering 11260 // signedness. 11261 return IntRange(value.getActiveBits(), true); 11262 } 11263 11264 static IntRange GetValueRange(ASTContext &C, APValue &result, QualType Ty, 11265 unsigned MaxWidth) { 11266 if (result.isInt()) 11267 return GetValueRange(C, result.getInt(), MaxWidth); 11268 11269 if (result.isVector()) { 11270 IntRange R = GetValueRange(C, result.getVectorElt(0), Ty, MaxWidth); 11271 for (unsigned i = 1, e = result.getVectorLength(); i != e; ++i) { 11272 IntRange El = GetValueRange(C, result.getVectorElt(i), Ty, MaxWidth); 11273 R = IntRange::join(R, El); 11274 } 11275 return R; 11276 } 11277 11278 if (result.isComplexInt()) { 11279 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); 11280 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); 11281 return IntRange::join(R, I); 11282 } 11283 11284 // This can happen with lossless casts to intptr_t of "based" lvalues. 11285 // Assume it might use arbitrary bits. 11286 // FIXME: The only reason we need to pass the type in here is to get 11287 // the sign right on this one case. It would be nice if APValue 11288 // preserved this. 11289 assert(result.isLValue() || result.isAddrLabelDiff()); 11290 return IntRange(MaxWidth, Ty->isUnsignedIntegerOrEnumerationType()); 11291 } 11292 11293 static QualType GetExprType(const Expr *E) { 11294 QualType Ty = E->getType(); 11295 if (const AtomicType *AtomicRHS = Ty->getAs<AtomicType>()) 11296 Ty = AtomicRHS->getValueType(); 11297 return Ty; 11298 } 11299 11300 /// Pseudo-evaluate the given integer expression, estimating the 11301 /// range of values it might take. 11302 /// 11303 /// \param MaxWidth The width to which the value will be truncated. 11304 /// \param Approximate If \c true, return a likely range for the result: in 11305 /// particular, assume that arithmetic on narrower types doesn't leave 11306 /// those types. If \c false, return a range including all possible 11307 /// result values. 11308 static IntRange GetExprRange(ASTContext &C, const Expr *E, unsigned MaxWidth, 11309 bool InConstantContext, bool Approximate) { 11310 E = E->IgnoreParens(); 11311 11312 // Try a full evaluation first. 11313 Expr::EvalResult result; 11314 if (E->EvaluateAsRValue(result, C, InConstantContext)) 11315 return GetValueRange(C, result.Val, GetExprType(E), MaxWidth); 11316 11317 // I think we only want to look through implicit casts here; if the 11318 // user has an explicit widening cast, we should treat the value as 11319 // being of the new, wider type. 11320 if (const auto *CE = dyn_cast<ImplicitCastExpr>(E)) { 11321 if (CE->getCastKind() == CK_NoOp || CE->getCastKind() == CK_LValueToRValue) 11322 return GetExprRange(C, CE->getSubExpr(), MaxWidth, InConstantContext, 11323 Approximate); 11324 11325 IntRange OutputTypeRange = IntRange::forValueOfType(C, GetExprType(CE)); 11326 11327 bool isIntegerCast = CE->getCastKind() == CK_IntegralCast || 11328 CE->getCastKind() == CK_BooleanToSignedIntegral; 11329 11330 // Assume that non-integer casts can span the full range of the type. 11331 if (!isIntegerCast) 11332 return OutputTypeRange; 11333 11334 IntRange SubRange = GetExprRange(C, CE->getSubExpr(), 11335 std::min(MaxWidth, OutputTypeRange.Width), 11336 InConstantContext, Approximate); 11337 11338 // Bail out if the subexpr's range is as wide as the cast type. 11339 if (SubRange.Width >= OutputTypeRange.Width) 11340 return OutputTypeRange; 11341 11342 // Otherwise, we take the smaller width, and we're non-negative if 11343 // either the output type or the subexpr is. 11344 return IntRange(SubRange.Width, 11345 SubRange.NonNegative || OutputTypeRange.NonNegative); 11346 } 11347 11348 if (const auto *CO = dyn_cast<ConditionalOperator>(E)) { 11349 // If we can fold the condition, just take that operand. 11350 bool CondResult; 11351 if (CO->getCond()->EvaluateAsBooleanCondition(CondResult, C)) 11352 return GetExprRange(C, 11353 CondResult ? CO->getTrueExpr() : CO->getFalseExpr(), 11354 MaxWidth, InConstantContext, Approximate); 11355 11356 // Otherwise, conservatively merge. 11357 // GetExprRange requires an integer expression, but a throw expression 11358 // results in a void type. 11359 Expr *E = CO->getTrueExpr(); 11360 IntRange L = E->getType()->isVoidType() 11361 ? IntRange{0, true} 11362 : GetExprRange(C, E, MaxWidth, InConstantContext, Approximate); 11363 E = CO->getFalseExpr(); 11364 IntRange R = E->getType()->isVoidType() 11365 ? IntRange{0, true} 11366 : GetExprRange(C, E, MaxWidth, InConstantContext, Approximate); 11367 return IntRange::join(L, R); 11368 } 11369 11370 if (const auto *BO = dyn_cast<BinaryOperator>(E)) { 11371 IntRange (*Combine)(IntRange, IntRange) = IntRange::join; 11372 11373 switch (BO->getOpcode()) { 11374 case BO_Cmp: 11375 llvm_unreachable("builtin <=> should have class type"); 11376 11377 // Boolean-valued operations are single-bit and positive. 11378 case BO_LAnd: 11379 case BO_LOr: 11380 case BO_LT: 11381 case BO_GT: 11382 case BO_LE: 11383 case BO_GE: 11384 case BO_EQ: 11385 case BO_NE: 11386 return IntRange::forBoolType(); 11387 11388 // The type of the assignments is the type of the LHS, so the RHS 11389 // is not necessarily the same type. 11390 case BO_MulAssign: 11391 case BO_DivAssign: 11392 case BO_RemAssign: 11393 case BO_AddAssign: 11394 case BO_SubAssign: 11395 case BO_XorAssign: 11396 case BO_OrAssign: 11397 // TODO: bitfields? 11398 return IntRange::forValueOfType(C, GetExprType(E)); 11399 11400 // Simple assignments just pass through the RHS, which will have 11401 // been coerced to the LHS type. 11402 case BO_Assign: 11403 // TODO: bitfields? 11404 return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext, 11405 Approximate); 11406 11407 // Operations with opaque sources are black-listed. 11408 case BO_PtrMemD: 11409 case BO_PtrMemI: 11410 return IntRange::forValueOfType(C, GetExprType(E)); 11411 11412 // Bitwise-and uses the *infinum* of the two source ranges. 11413 case BO_And: 11414 case BO_AndAssign: 11415 Combine = IntRange::bit_and; 11416 break; 11417 11418 // Left shift gets black-listed based on a judgement call. 11419 case BO_Shl: 11420 // ...except that we want to treat '1 << (blah)' as logically 11421 // positive. It's an important idiom. 11422 if (IntegerLiteral *I 11423 = dyn_cast<IntegerLiteral>(BO->getLHS()->IgnoreParenCasts())) { 11424 if (I->getValue() == 1) { 11425 IntRange R = IntRange::forValueOfType(C, GetExprType(E)); 11426 return IntRange(R.Width, /*NonNegative*/ true); 11427 } 11428 } 11429 LLVM_FALLTHROUGH; 11430 11431 case BO_ShlAssign: 11432 return IntRange::forValueOfType(C, GetExprType(E)); 11433 11434 // Right shift by a constant can narrow its left argument. 11435 case BO_Shr: 11436 case BO_ShrAssign: { 11437 IntRange L = GetExprRange(C, BO->getLHS(), MaxWidth, InConstantContext, 11438 Approximate); 11439 11440 // If the shift amount is a positive constant, drop the width by 11441 // that much. 11442 if (Optional<llvm::APSInt> shift = 11443 BO->getRHS()->getIntegerConstantExpr(C)) { 11444 if (shift->isNonNegative()) { 11445 unsigned zext = shift->getZExtValue(); 11446 if (zext >= L.Width) 11447 L.Width = (L.NonNegative ? 0 : 1); 11448 else 11449 L.Width -= zext; 11450 } 11451 } 11452 11453 return L; 11454 } 11455 11456 // Comma acts as its right operand. 11457 case BO_Comma: 11458 return GetExprRange(C, BO->getRHS(), MaxWidth, InConstantContext, 11459 Approximate); 11460 11461 case BO_Add: 11462 if (!Approximate) 11463 Combine = IntRange::sum; 11464 break; 11465 11466 case BO_Sub: 11467 if (BO->getLHS()->getType()->isPointerType()) 11468 return IntRange::forValueOfType(C, GetExprType(E)); 11469 if (!Approximate) 11470 Combine = IntRange::difference; 11471 break; 11472 11473 case BO_Mul: 11474 if (!Approximate) 11475 Combine = IntRange::product; 11476 break; 11477 11478 // The width of a division result is mostly determined by the size 11479 // of the LHS. 11480 case BO_Div: { 11481 // Don't 'pre-truncate' the operands. 11482 unsigned opWidth = C.getIntWidth(GetExprType(E)); 11483 IntRange L = GetExprRange(C, BO->getLHS(), opWidth, InConstantContext, 11484 Approximate); 11485 11486 // If the divisor is constant, use that. 11487 if (Optional<llvm::APSInt> divisor = 11488 BO->getRHS()->getIntegerConstantExpr(C)) { 11489 unsigned log2 = divisor->logBase2(); // floor(log_2(divisor)) 11490 if (log2 >= L.Width) 11491 L.Width = (L.NonNegative ? 0 : 1); 11492 else 11493 L.Width = std::min(L.Width - log2, MaxWidth); 11494 return L; 11495 } 11496 11497 // Otherwise, just use the LHS's width. 11498 // FIXME: This is wrong if the LHS could be its minimal value and the RHS 11499 // could be -1. 11500 IntRange R = GetExprRange(C, BO->getRHS(), opWidth, InConstantContext, 11501 Approximate); 11502 return IntRange(L.Width, L.NonNegative && R.NonNegative); 11503 } 11504 11505 case BO_Rem: 11506 Combine = IntRange::rem; 11507 break; 11508 11509 // The default behavior is okay for these. 11510 case BO_Xor: 11511 case BO_Or: 11512 break; 11513 } 11514 11515 // Combine the two ranges, but limit the result to the type in which we 11516 // performed the computation. 11517 QualType T = GetExprType(E); 11518 unsigned opWidth = C.getIntWidth(T); 11519 IntRange L = 11520 GetExprRange(C, BO->getLHS(), opWidth, InConstantContext, Approximate); 11521 IntRange R = 11522 GetExprRange(C, BO->getRHS(), opWidth, InConstantContext, Approximate); 11523 IntRange C = Combine(L, R); 11524 C.NonNegative |= T->isUnsignedIntegerOrEnumerationType(); 11525 C.Width = std::min(C.Width, MaxWidth); 11526 return C; 11527 } 11528 11529 if (const auto *UO = dyn_cast<UnaryOperator>(E)) { 11530 switch (UO->getOpcode()) { 11531 // Boolean-valued operations are white-listed. 11532 case UO_LNot: 11533 return IntRange::forBoolType(); 11534 11535 // Operations with opaque sources are black-listed. 11536 case UO_Deref: 11537 case UO_AddrOf: // should be impossible 11538 return IntRange::forValueOfType(C, GetExprType(E)); 11539 11540 default: 11541 return GetExprRange(C, UO->getSubExpr(), MaxWidth, InConstantContext, 11542 Approximate); 11543 } 11544 } 11545 11546 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E)) 11547 return GetExprRange(C, OVE->getSourceExpr(), MaxWidth, InConstantContext, 11548 Approximate); 11549 11550 if (const auto *BitField = E->getSourceBitField()) 11551 return IntRange(BitField->getBitWidthValue(C), 11552 BitField->getType()->isUnsignedIntegerOrEnumerationType()); 11553 11554 return IntRange::forValueOfType(C, GetExprType(E)); 11555 } 11556 11557 static IntRange GetExprRange(ASTContext &C, const Expr *E, 11558 bool InConstantContext, bool Approximate) { 11559 return GetExprRange(C, E, C.getIntWidth(GetExprType(E)), InConstantContext, 11560 Approximate); 11561 } 11562 11563 /// Checks whether the given value, which currently has the given 11564 /// source semantics, has the same value when coerced through the 11565 /// target semantics. 11566 static bool IsSameFloatAfterCast(const llvm::APFloat &value, 11567 const llvm::fltSemantics &Src, 11568 const llvm::fltSemantics &Tgt) { 11569 llvm::APFloat truncated = value; 11570 11571 bool ignored; 11572 truncated.convert(Src, llvm::APFloat::rmNearestTiesToEven, &ignored); 11573 truncated.convert(Tgt, llvm::APFloat::rmNearestTiesToEven, &ignored); 11574 11575 return truncated.bitwiseIsEqual(value); 11576 } 11577 11578 /// Checks whether the given value, which currently has the given 11579 /// source semantics, has the same value when coerced through the 11580 /// target semantics. 11581 /// 11582 /// The value might be a vector of floats (or a complex number). 11583 static bool IsSameFloatAfterCast(const APValue &value, 11584 const llvm::fltSemantics &Src, 11585 const llvm::fltSemantics &Tgt) { 11586 if (value.isFloat()) 11587 return IsSameFloatAfterCast(value.getFloat(), Src, Tgt); 11588 11589 if (value.isVector()) { 11590 for (unsigned i = 0, e = value.getVectorLength(); i != e; ++i) 11591 if (!IsSameFloatAfterCast(value.getVectorElt(i), Src, Tgt)) 11592 return false; 11593 return true; 11594 } 11595 11596 assert(value.isComplexFloat()); 11597 return (IsSameFloatAfterCast(value.getComplexFloatReal(), Src, Tgt) && 11598 IsSameFloatAfterCast(value.getComplexFloatImag(), Src, Tgt)); 11599 } 11600 11601 static void AnalyzeImplicitConversions(Sema &S, Expr *E, SourceLocation CC, 11602 bool IsListInit = false); 11603 11604 static bool IsEnumConstOrFromMacro(Sema &S, Expr *E) { 11605 // Suppress cases where we are comparing against an enum constant. 11606 if (const DeclRefExpr *DR = 11607 dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts())) 11608 if (isa<EnumConstantDecl>(DR->getDecl())) 11609 return true; 11610 11611 // Suppress cases where the value is expanded from a macro, unless that macro 11612 // is how a language represents a boolean literal. This is the case in both C 11613 // and Objective-C. 11614 SourceLocation BeginLoc = E->getBeginLoc(); 11615 if (BeginLoc.isMacroID()) { 11616 StringRef MacroName = Lexer::getImmediateMacroName( 11617 BeginLoc, S.getSourceManager(), S.getLangOpts()); 11618 return MacroName != "YES" && MacroName != "NO" && 11619 MacroName != "true" && MacroName != "false"; 11620 } 11621 11622 return false; 11623 } 11624 11625 static bool isKnownToHaveUnsignedValue(Expr *E) { 11626 return E->getType()->isIntegerType() && 11627 (!E->getType()->isSignedIntegerType() || 11628 !E->IgnoreParenImpCasts()->getType()->isSignedIntegerType()); 11629 } 11630 11631 namespace { 11632 /// The promoted range of values of a type. In general this has the 11633 /// following structure: 11634 /// 11635 /// |-----------| . . . |-----------| 11636 /// ^ ^ ^ ^ 11637 /// Min HoleMin HoleMax Max 11638 /// 11639 /// ... where there is only a hole if a signed type is promoted to unsigned 11640 /// (in which case Min and Max are the smallest and largest representable 11641 /// values). 11642 struct PromotedRange { 11643 // Min, or HoleMax if there is a hole. 11644 llvm::APSInt PromotedMin; 11645 // Max, or HoleMin if there is a hole. 11646 llvm::APSInt PromotedMax; 11647 11648 PromotedRange(IntRange R, unsigned BitWidth, bool Unsigned) { 11649 if (R.Width == 0) 11650 PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned); 11651 else if (R.Width >= BitWidth && !Unsigned) { 11652 // Promotion made the type *narrower*. This happens when promoting 11653 // a < 32-bit unsigned / <= 32-bit signed bit-field to 'signed int'. 11654 // Treat all values of 'signed int' as being in range for now. 11655 PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned); 11656 PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned); 11657 } else { 11658 PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative) 11659 .extOrTrunc(BitWidth); 11660 PromotedMin.setIsUnsigned(Unsigned); 11661 11662 PromotedMax = llvm::APSInt::getMaxValue(R.Width, R.NonNegative) 11663 .extOrTrunc(BitWidth); 11664 PromotedMax.setIsUnsigned(Unsigned); 11665 } 11666 } 11667 11668 // Determine whether this range is contiguous (has no hole). 11669 bool isContiguous() const { return PromotedMin <= PromotedMax; } 11670 11671 // Where a constant value is within the range. 11672 enum ComparisonResult { 11673 LT = 0x1, 11674 LE = 0x2, 11675 GT = 0x4, 11676 GE = 0x8, 11677 EQ = 0x10, 11678 NE = 0x20, 11679 InRangeFlag = 0x40, 11680 11681 Less = LE | LT | NE, 11682 Min = LE | InRangeFlag, 11683 InRange = InRangeFlag, 11684 Max = GE | InRangeFlag, 11685 Greater = GE | GT | NE, 11686 11687 OnlyValue = LE | GE | EQ | InRangeFlag, 11688 InHole = NE 11689 }; 11690 11691 ComparisonResult compare(const llvm::APSInt &Value) const { 11692 assert(Value.getBitWidth() == PromotedMin.getBitWidth() && 11693 Value.isUnsigned() == PromotedMin.isUnsigned()); 11694 if (!isContiguous()) { 11695 assert(Value.isUnsigned() && "discontiguous range for signed compare"); 11696 if (Value.isMinValue()) return Min; 11697 if (Value.isMaxValue()) return Max; 11698 if (Value >= PromotedMin) return InRange; 11699 if (Value <= PromotedMax) return InRange; 11700 return InHole; 11701 } 11702 11703 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { 11704 case -1: return Less; 11705 case 0: return PromotedMin == PromotedMax ? OnlyValue : Min; 11706 case 1: 11707 switch (llvm::APSInt::compareValues(Value, PromotedMax)) { 11708 case -1: return InRange; 11709 case 0: return Max; 11710 case 1: return Greater; 11711 } 11712 } 11713 11714 llvm_unreachable("impossible compare result"); 11715 } 11716 11717 static llvm::Optional<StringRef> 11718 constantValue(BinaryOperatorKind Op, ComparisonResult R, bool ConstantOnRHS) { 11719 if (Op == BO_Cmp) { 11720 ComparisonResult LTFlag = LT, GTFlag = GT; 11721 if (ConstantOnRHS) std::swap(LTFlag, GTFlag); 11722 11723 if (R & EQ) return StringRef("'std::strong_ordering::equal'"); 11724 if (R & LTFlag) return StringRef("'std::strong_ordering::less'"); 11725 if (R & GTFlag) return StringRef("'std::strong_ordering::greater'"); 11726 return llvm::None; 11727 } 11728 11729 ComparisonResult TrueFlag, FalseFlag; 11730 if (Op == BO_EQ) { 11731 TrueFlag = EQ; 11732 FalseFlag = NE; 11733 } else if (Op == BO_NE) { 11734 TrueFlag = NE; 11735 FalseFlag = EQ; 11736 } else { 11737 if ((Op == BO_LT || Op == BO_GE) ^ ConstantOnRHS) { 11738 TrueFlag = LT; 11739 FalseFlag = GE; 11740 } else { 11741 TrueFlag = GT; 11742 FalseFlag = LE; 11743 } 11744 if (Op == BO_GE || Op == BO_LE) 11745 std::swap(TrueFlag, FalseFlag); 11746 } 11747 if (R & TrueFlag) 11748 return StringRef("true"); 11749 if (R & FalseFlag) 11750 return StringRef("false"); 11751 return llvm::None; 11752 } 11753 }; 11754 } 11755 11756 static bool HasEnumType(Expr *E) { 11757 // Strip off implicit integral promotions. 11758 while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) { 11759 if (ICE->getCastKind() != CK_IntegralCast && 11760 ICE->getCastKind() != CK_NoOp) 11761 break; 11762 E = ICE->getSubExpr(); 11763 } 11764 11765 return E->getType()->isEnumeralType(); 11766 } 11767 11768 static int classifyConstantValue(Expr *Constant) { 11769 // The values of this enumeration are used in the diagnostics 11770 // diag::warn_out_of_range_compare and diag::warn_tautological_bool_compare. 11771 enum ConstantValueKind { 11772 Miscellaneous = 0, 11773 LiteralTrue, 11774 LiteralFalse 11775 }; 11776 if (auto *BL = dyn_cast<CXXBoolLiteralExpr>(Constant)) 11777 return BL->getValue() ? ConstantValueKind::LiteralTrue 11778 : ConstantValueKind::LiteralFalse; 11779 return ConstantValueKind::Miscellaneous; 11780 } 11781 11782 static bool CheckTautologicalComparison(Sema &S, BinaryOperator *E, 11783 Expr *Constant, Expr *Other, 11784 const llvm::APSInt &Value, 11785 bool RhsConstant) { 11786 if (S.inTemplateInstantiation()) 11787 return false; 11788 11789 Expr *OriginalOther = Other; 11790 11791 Constant = Constant->IgnoreParenImpCasts(); 11792 Other = Other->IgnoreParenImpCasts(); 11793 11794 // Suppress warnings on tautological comparisons between values of the same 11795 // enumeration type. There are only two ways we could warn on this: 11796 // - If the constant is outside the range of representable values of 11797 // the enumeration. In such a case, we should warn about the cast 11798 // to enumeration type, not about the comparison. 11799 // - If the constant is the maximum / minimum in-range value. For an 11800 // enumeratin type, such comparisons can be meaningful and useful. 11801 if (Constant->getType()->isEnumeralType() && 11802 S.Context.hasSameUnqualifiedType(Constant->getType(), Other->getType())) 11803 return false; 11804 11805 IntRange OtherValueRange = GetExprRange( 11806 S.Context, Other, S.isConstantEvaluated(), /*Approximate*/ false); 11807 11808 QualType OtherT = Other->getType(); 11809 if (const auto *AT = OtherT->getAs<AtomicType>()) 11810 OtherT = AT->getValueType(); 11811 IntRange OtherTypeRange = IntRange::forValueOfType(S.Context, OtherT); 11812 11813 // Special case for ObjC BOOL on targets where its a typedef for a signed char 11814 // (Namely, macOS). FIXME: IntRange::forValueOfType should do this. 11815 bool IsObjCSignedCharBool = S.getLangOpts().ObjC && 11816 S.NSAPIObj->isObjCBOOLType(OtherT) && 11817 OtherT->isSpecificBuiltinType(BuiltinType::SChar); 11818 11819 // Whether we're treating Other as being a bool because of the form of 11820 // expression despite it having another type (typically 'int' in C). 11821 bool OtherIsBooleanDespiteType = 11822 !OtherT->isBooleanType() && Other->isKnownToHaveBooleanValue(); 11823 if (OtherIsBooleanDespiteType || IsObjCSignedCharBool) 11824 OtherTypeRange = OtherValueRange = IntRange::forBoolType(); 11825 11826 // Check if all values in the range of possible values of this expression 11827 // lead to the same comparison outcome. 11828 PromotedRange OtherPromotedValueRange(OtherValueRange, Value.getBitWidth(), 11829 Value.isUnsigned()); 11830 auto Cmp = OtherPromotedValueRange.compare(Value); 11831 auto Result = PromotedRange::constantValue(E->getOpcode(), Cmp, RhsConstant); 11832 if (!Result) 11833 return false; 11834 11835 // Also consider the range determined by the type alone. This allows us to 11836 // classify the warning under the proper diagnostic group. 11837 bool TautologicalTypeCompare = false; 11838 { 11839 PromotedRange OtherPromotedTypeRange(OtherTypeRange, Value.getBitWidth(), 11840 Value.isUnsigned()); 11841 auto TypeCmp = OtherPromotedTypeRange.compare(Value); 11842 if (auto TypeResult = PromotedRange::constantValue(E->getOpcode(), TypeCmp, 11843 RhsConstant)) { 11844 TautologicalTypeCompare = true; 11845 Cmp = TypeCmp; 11846 Result = TypeResult; 11847 } 11848 } 11849 11850 // Don't warn if the non-constant operand actually always evaluates to the 11851 // same value. 11852 if (!TautologicalTypeCompare && OtherValueRange.Width == 0) 11853 return false; 11854 11855 // Suppress the diagnostic for an in-range comparison if the constant comes 11856 // from a macro or enumerator. We don't want to diagnose 11857 // 11858 // some_long_value <= INT_MAX 11859 // 11860 // when sizeof(int) == sizeof(long). 11861 bool InRange = Cmp & PromotedRange::InRangeFlag; 11862 if (InRange && IsEnumConstOrFromMacro(S, Constant)) 11863 return false; 11864 11865 // A comparison of an unsigned bit-field against 0 is really a type problem, 11866 // even though at the type level the bit-field might promote to 'signed int'. 11867 if (Other->refersToBitField() && InRange && Value == 0 && 11868 Other->getType()->isUnsignedIntegerOrEnumerationType()) 11869 TautologicalTypeCompare = true; 11870 11871 // If this is a comparison to an enum constant, include that 11872 // constant in the diagnostic. 11873 const EnumConstantDecl *ED = nullptr; 11874 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Constant)) 11875 ED = dyn_cast<EnumConstantDecl>(DR->getDecl()); 11876 11877 // Should be enough for uint128 (39 decimal digits) 11878 SmallString<64> PrettySourceValue; 11879 llvm::raw_svector_ostream OS(PrettySourceValue); 11880 if (ED) { 11881 OS << '\'' << *ED << "' (" << Value << ")"; 11882 } else if (auto *BL = dyn_cast<ObjCBoolLiteralExpr>( 11883 Constant->IgnoreParenImpCasts())) { 11884 OS << (BL->getValue() ? "YES" : "NO"); 11885 } else { 11886 OS << Value; 11887 } 11888 11889 if (!TautologicalTypeCompare) { 11890 S.Diag(E->getOperatorLoc(), diag::warn_tautological_compare_value_range) 11891 << RhsConstant << OtherValueRange.Width << OtherValueRange.NonNegative 11892 << E->getOpcodeStr() << OS.str() << *Result 11893 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange(); 11894 return true; 11895 } 11896 11897 if (IsObjCSignedCharBool) { 11898 S.DiagRuntimeBehavior(E->getOperatorLoc(), E, 11899 S.PDiag(diag::warn_tautological_compare_objc_bool) 11900 << OS.str() << *Result); 11901 return true; 11902 } 11903 11904 // FIXME: We use a somewhat different formatting for the in-range cases and 11905 // cases involving boolean values for historical reasons. We should pick a 11906 // consistent way of presenting these diagnostics. 11907 if (!InRange || Other->isKnownToHaveBooleanValue()) { 11908 11909 S.DiagRuntimeBehavior( 11910 E->getOperatorLoc(), E, 11911 S.PDiag(!InRange ? diag::warn_out_of_range_compare 11912 : diag::warn_tautological_bool_compare) 11913 << OS.str() << classifyConstantValue(Constant) << OtherT 11914 << OtherIsBooleanDespiteType << *Result 11915 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange()); 11916 } else { 11917 bool IsCharTy = OtherT.withoutLocalFastQualifiers() == S.Context.CharTy; 11918 unsigned Diag = 11919 (isKnownToHaveUnsignedValue(OriginalOther) && Value == 0) 11920 ? (HasEnumType(OriginalOther) 11921 ? diag::warn_unsigned_enum_always_true_comparison 11922 : IsCharTy ? diag::warn_unsigned_char_always_true_comparison 11923 : diag::warn_unsigned_always_true_comparison) 11924 : diag::warn_tautological_constant_compare; 11925 11926 S.Diag(E->getOperatorLoc(), Diag) 11927 << RhsConstant << OtherT << E->getOpcodeStr() << OS.str() << *Result 11928 << E->getLHS()->getSourceRange() << E->getRHS()->getSourceRange(); 11929 } 11930 11931 return true; 11932 } 11933 11934 /// Analyze the operands of the given comparison. Implements the 11935 /// fallback case from AnalyzeComparison. 11936 static void AnalyzeImpConvsInComparison(Sema &S, BinaryOperator *E) { 11937 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc()); 11938 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc()); 11939 } 11940 11941 /// Implements -Wsign-compare. 11942 /// 11943 /// \param E the binary operator to check for warnings 11944 static void AnalyzeComparison(Sema &S, BinaryOperator *E) { 11945 // The type the comparison is being performed in. 11946 QualType T = E->getLHS()->getType(); 11947 11948 // Only analyze comparison operators where both sides have been converted to 11949 // the same type. 11950 if (!S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType())) 11951 return AnalyzeImpConvsInComparison(S, E); 11952 11953 // Don't analyze value-dependent comparisons directly. 11954 if (E->isValueDependent()) 11955 return AnalyzeImpConvsInComparison(S, E); 11956 11957 Expr *LHS = E->getLHS(); 11958 Expr *RHS = E->getRHS(); 11959 11960 if (T->isIntegralType(S.Context)) { 11961 Optional<llvm::APSInt> RHSValue = RHS->getIntegerConstantExpr(S.Context); 11962 Optional<llvm::APSInt> LHSValue = LHS->getIntegerConstantExpr(S.Context); 11963 11964 // We don't care about expressions whose result is a constant. 11965 if (RHSValue && LHSValue) 11966 return AnalyzeImpConvsInComparison(S, E); 11967 11968 // We only care about expressions where just one side is literal 11969 if ((bool)RHSValue ^ (bool)LHSValue) { 11970 // Is the constant on the RHS or LHS? 11971 const bool RhsConstant = (bool)RHSValue; 11972 Expr *Const = RhsConstant ? RHS : LHS; 11973 Expr *Other = RhsConstant ? LHS : RHS; 11974 const llvm::APSInt &Value = RhsConstant ? *RHSValue : *LHSValue; 11975 11976 // Check whether an integer constant comparison results in a value 11977 // of 'true' or 'false'. 11978 if (CheckTautologicalComparison(S, E, Const, Other, Value, RhsConstant)) 11979 return AnalyzeImpConvsInComparison(S, E); 11980 } 11981 } 11982 11983 if (!T->hasUnsignedIntegerRepresentation()) { 11984 // We don't do anything special if this isn't an unsigned integral 11985 // comparison: we're only interested in integral comparisons, and 11986 // signed comparisons only happen in cases we don't care to warn about. 11987 return AnalyzeImpConvsInComparison(S, E); 11988 } 11989 11990 LHS = LHS->IgnoreParenImpCasts(); 11991 RHS = RHS->IgnoreParenImpCasts(); 11992 11993 if (!S.getLangOpts().CPlusPlus) { 11994 // Avoid warning about comparison of integers with different signs when 11995 // RHS/LHS has a `typeof(E)` type whose sign is different from the sign of 11996 // the type of `E`. 11997 if (const auto *TET = dyn_cast<TypeOfExprType>(LHS->getType())) 11998 LHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts(); 11999 if (const auto *TET = dyn_cast<TypeOfExprType>(RHS->getType())) 12000 RHS = TET->getUnderlyingExpr()->IgnoreParenImpCasts(); 12001 } 12002 12003 // Check to see if one of the (unmodified) operands is of different 12004 // signedness. 12005 Expr *signedOperand, *unsignedOperand; 12006 if (LHS->getType()->hasSignedIntegerRepresentation()) { 12007 assert(!RHS->getType()->hasSignedIntegerRepresentation() && 12008 "unsigned comparison between two signed integer expressions?"); 12009 signedOperand = LHS; 12010 unsignedOperand = RHS; 12011 } else if (RHS->getType()->hasSignedIntegerRepresentation()) { 12012 signedOperand = RHS; 12013 unsignedOperand = LHS; 12014 } else { 12015 return AnalyzeImpConvsInComparison(S, E); 12016 } 12017 12018 // Otherwise, calculate the effective range of the signed operand. 12019 IntRange signedRange = GetExprRange( 12020 S.Context, signedOperand, S.isConstantEvaluated(), /*Approximate*/ true); 12021 12022 // Go ahead and analyze implicit conversions in the operands. Note 12023 // that we skip the implicit conversions on both sides. 12024 AnalyzeImplicitConversions(S, LHS, E->getOperatorLoc()); 12025 AnalyzeImplicitConversions(S, RHS, E->getOperatorLoc()); 12026 12027 // If the signed range is non-negative, -Wsign-compare won't fire. 12028 if (signedRange.NonNegative) 12029 return; 12030 12031 // For (in)equality comparisons, if the unsigned operand is a 12032 // constant which cannot collide with a overflowed signed operand, 12033 // then reinterpreting the signed operand as unsigned will not 12034 // change the result of the comparison. 12035 if (E->isEqualityOp()) { 12036 unsigned comparisonWidth = S.Context.getIntWidth(T); 12037 IntRange unsignedRange = 12038 GetExprRange(S.Context, unsignedOperand, S.isConstantEvaluated(), 12039 /*Approximate*/ true); 12040 12041 // We should never be unable to prove that the unsigned operand is 12042 // non-negative. 12043 assert(unsignedRange.NonNegative && "unsigned range includes negative?"); 12044 12045 if (unsignedRange.Width < comparisonWidth) 12046 return; 12047 } 12048 12049 S.DiagRuntimeBehavior(E->getOperatorLoc(), E, 12050 S.PDiag(diag::warn_mixed_sign_comparison) 12051 << LHS->getType() << RHS->getType() 12052 << LHS->getSourceRange() << RHS->getSourceRange()); 12053 } 12054 12055 /// Analyzes an attempt to assign the given value to a bitfield. 12056 /// 12057 /// Returns true if there was something fishy about the attempt. 12058 static bool AnalyzeBitFieldAssignment(Sema &S, FieldDecl *Bitfield, Expr *Init, 12059 SourceLocation InitLoc) { 12060 assert(Bitfield->isBitField()); 12061 if (Bitfield->isInvalidDecl()) 12062 return false; 12063 12064 // White-list bool bitfields. 12065 QualType BitfieldType = Bitfield->getType(); 12066 if (BitfieldType->isBooleanType()) 12067 return false; 12068 12069 if (BitfieldType->isEnumeralType()) { 12070 EnumDecl *BitfieldEnumDecl = BitfieldType->castAs<EnumType>()->getDecl(); 12071 // If the underlying enum type was not explicitly specified as an unsigned 12072 // type and the enum contain only positive values, MSVC++ will cause an 12073 // inconsistency by storing this as a signed type. 12074 if (S.getLangOpts().CPlusPlus11 && 12075 !BitfieldEnumDecl->getIntegerTypeSourceInfo() && 12076 BitfieldEnumDecl->getNumPositiveBits() > 0 && 12077 BitfieldEnumDecl->getNumNegativeBits() == 0) { 12078 S.Diag(InitLoc, diag::warn_no_underlying_type_specified_for_enum_bitfield) 12079 << BitfieldEnumDecl; 12080 } 12081 } 12082 12083 if (Bitfield->getType()->isBooleanType()) 12084 return false; 12085 12086 // Ignore value- or type-dependent expressions. 12087 if (Bitfield->getBitWidth()->isValueDependent() || 12088 Bitfield->getBitWidth()->isTypeDependent() || 12089 Init->isValueDependent() || 12090 Init->isTypeDependent()) 12091 return false; 12092 12093 Expr *OriginalInit = Init->IgnoreParenImpCasts(); 12094 unsigned FieldWidth = Bitfield->getBitWidthValue(S.Context); 12095 12096 Expr::EvalResult Result; 12097 if (!OriginalInit->EvaluateAsInt(Result, S.Context, 12098 Expr::SE_AllowSideEffects)) { 12099 // The RHS is not constant. If the RHS has an enum type, make sure the 12100 // bitfield is wide enough to hold all the values of the enum without 12101 // truncation. 12102 if (const auto *EnumTy = OriginalInit->getType()->getAs<EnumType>()) { 12103 EnumDecl *ED = EnumTy->getDecl(); 12104 bool SignedBitfield = BitfieldType->isSignedIntegerType(); 12105 12106 // Enum types are implicitly signed on Windows, so check if there are any 12107 // negative enumerators to see if the enum was intended to be signed or 12108 // not. 12109 bool SignedEnum = ED->getNumNegativeBits() > 0; 12110 12111 // Check for surprising sign changes when assigning enum values to a 12112 // bitfield of different signedness. If the bitfield is signed and we 12113 // have exactly the right number of bits to store this unsigned enum, 12114 // suggest changing the enum to an unsigned type. This typically happens 12115 // on Windows where unfixed enums always use an underlying type of 'int'. 12116 unsigned DiagID = 0; 12117 if (SignedEnum && !SignedBitfield) { 12118 DiagID = diag::warn_unsigned_bitfield_assigned_signed_enum; 12119 } else if (SignedBitfield && !SignedEnum && 12120 ED->getNumPositiveBits() == FieldWidth) { 12121 DiagID = diag::warn_signed_bitfield_enum_conversion; 12122 } 12123 12124 if (DiagID) { 12125 S.Diag(InitLoc, DiagID) << Bitfield << ED; 12126 TypeSourceInfo *TSI = Bitfield->getTypeSourceInfo(); 12127 SourceRange TypeRange = 12128 TSI ? TSI->getTypeLoc().getSourceRange() : SourceRange(); 12129 S.Diag(Bitfield->getTypeSpecStartLoc(), diag::note_change_bitfield_sign) 12130 << SignedEnum << TypeRange; 12131 } 12132 12133 // Compute the required bitwidth. If the enum has negative values, we need 12134 // one more bit than the normal number of positive bits to represent the 12135 // sign bit. 12136 unsigned BitsNeeded = SignedEnum ? std::max(ED->getNumPositiveBits() + 1, 12137 ED->getNumNegativeBits()) 12138 : ED->getNumPositiveBits(); 12139 12140 // Check the bitwidth. 12141 if (BitsNeeded > FieldWidth) { 12142 Expr *WidthExpr = Bitfield->getBitWidth(); 12143 S.Diag(InitLoc, diag::warn_bitfield_too_small_for_enum) 12144 << Bitfield << ED; 12145 S.Diag(WidthExpr->getExprLoc(), diag::note_widen_bitfield) 12146 << BitsNeeded << ED << WidthExpr->getSourceRange(); 12147 } 12148 } 12149 12150 return false; 12151 } 12152 12153 llvm::APSInt Value = Result.Val.getInt(); 12154 12155 unsigned OriginalWidth = Value.getBitWidth(); 12156 12157 if (!Value.isSigned() || Value.isNegative()) 12158 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(OriginalInit)) 12159 if (UO->getOpcode() == UO_Minus || UO->getOpcode() == UO_Not) 12160 OriginalWidth = Value.getMinSignedBits(); 12161 12162 if (OriginalWidth <= FieldWidth) 12163 return false; 12164 12165 // Compute the value which the bitfield will contain. 12166 llvm::APSInt TruncatedValue = Value.trunc(FieldWidth); 12167 TruncatedValue.setIsSigned(BitfieldType->isSignedIntegerType()); 12168 12169 // Check whether the stored value is equal to the original value. 12170 TruncatedValue = TruncatedValue.extend(OriginalWidth); 12171 if (llvm::APSInt::isSameValue(Value, TruncatedValue)) 12172 return false; 12173 12174 // Special-case bitfields of width 1: booleans are naturally 0/1, and 12175 // therefore don't strictly fit into a signed bitfield of width 1. 12176 if (FieldWidth == 1 && Value == 1) 12177 return false; 12178 12179 std::string PrettyValue = toString(Value, 10); 12180 std::string PrettyTrunc = toString(TruncatedValue, 10); 12181 12182 S.Diag(InitLoc, diag::warn_impcast_bitfield_precision_constant) 12183 << PrettyValue << PrettyTrunc << OriginalInit->getType() 12184 << Init->getSourceRange(); 12185 12186 return true; 12187 } 12188 12189 /// Analyze the given simple or compound assignment for warning-worthy 12190 /// operations. 12191 static void AnalyzeAssignment(Sema &S, BinaryOperator *E) { 12192 // Just recurse on the LHS. 12193 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc()); 12194 12195 // We want to recurse on the RHS as normal unless we're assigning to 12196 // a bitfield. 12197 if (FieldDecl *Bitfield = E->getLHS()->getSourceBitField()) { 12198 if (AnalyzeBitFieldAssignment(S, Bitfield, E->getRHS(), 12199 E->getOperatorLoc())) { 12200 // Recurse, ignoring any implicit conversions on the RHS. 12201 return AnalyzeImplicitConversions(S, E->getRHS()->IgnoreParenImpCasts(), 12202 E->getOperatorLoc()); 12203 } 12204 } 12205 12206 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc()); 12207 12208 // Diagnose implicitly sequentially-consistent atomic assignment. 12209 if (E->getLHS()->getType()->isAtomicType()) 12210 S.Diag(E->getRHS()->getBeginLoc(), diag::warn_atomic_implicit_seq_cst); 12211 } 12212 12213 /// Diagnose an implicit cast; purely a helper for CheckImplicitConversion. 12214 static void DiagnoseImpCast(Sema &S, Expr *E, QualType SourceType, QualType T, 12215 SourceLocation CContext, unsigned diag, 12216 bool pruneControlFlow = false) { 12217 if (pruneControlFlow) { 12218 S.DiagRuntimeBehavior(E->getExprLoc(), E, 12219 S.PDiag(diag) 12220 << SourceType << T << E->getSourceRange() 12221 << SourceRange(CContext)); 12222 return; 12223 } 12224 S.Diag(E->getExprLoc(), diag) 12225 << SourceType << T << E->getSourceRange() << SourceRange(CContext); 12226 } 12227 12228 /// Diagnose an implicit cast; purely a helper for CheckImplicitConversion. 12229 static void DiagnoseImpCast(Sema &S, Expr *E, QualType T, 12230 SourceLocation CContext, 12231 unsigned diag, bool pruneControlFlow = false) { 12232 DiagnoseImpCast(S, E, E->getType(), T, CContext, diag, pruneControlFlow); 12233 } 12234 12235 static bool isObjCSignedCharBool(Sema &S, QualType Ty) { 12236 return Ty->isSpecificBuiltinType(BuiltinType::SChar) && 12237 S.getLangOpts().ObjC && S.NSAPIObj->isObjCBOOLType(Ty); 12238 } 12239 12240 static void adornObjCBoolConversionDiagWithTernaryFixit( 12241 Sema &S, Expr *SourceExpr, const Sema::SemaDiagnosticBuilder &Builder) { 12242 Expr *Ignored = SourceExpr->IgnoreImplicit(); 12243 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(Ignored)) 12244 Ignored = OVE->getSourceExpr(); 12245 bool NeedsParens = isa<AbstractConditionalOperator>(Ignored) || 12246 isa<BinaryOperator>(Ignored) || 12247 isa<CXXOperatorCallExpr>(Ignored); 12248 SourceLocation EndLoc = S.getLocForEndOfToken(SourceExpr->getEndLoc()); 12249 if (NeedsParens) 12250 Builder << FixItHint::CreateInsertion(SourceExpr->getBeginLoc(), "(") 12251 << FixItHint::CreateInsertion(EndLoc, ")"); 12252 Builder << FixItHint::CreateInsertion(EndLoc, " ? YES : NO"); 12253 } 12254 12255 /// Diagnose an implicit cast from a floating point value to an integer value. 12256 static void DiagnoseFloatingImpCast(Sema &S, Expr *E, QualType T, 12257 SourceLocation CContext) { 12258 const bool IsBool = T->isSpecificBuiltinType(BuiltinType::Bool); 12259 const bool PruneWarnings = S.inTemplateInstantiation(); 12260 12261 Expr *InnerE = E->IgnoreParenImpCasts(); 12262 // We also want to warn on, e.g., "int i = -1.234" 12263 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(InnerE)) 12264 if (UOp->getOpcode() == UO_Minus || UOp->getOpcode() == UO_Plus) 12265 InnerE = UOp->getSubExpr()->IgnoreParenImpCasts(); 12266 12267 const bool IsLiteral = 12268 isa<FloatingLiteral>(E) || isa<FloatingLiteral>(InnerE); 12269 12270 llvm::APFloat Value(0.0); 12271 bool IsConstant = 12272 E->EvaluateAsFloat(Value, S.Context, Expr::SE_AllowSideEffects); 12273 if (!IsConstant) { 12274 if (isObjCSignedCharBool(S, T)) { 12275 return adornObjCBoolConversionDiagWithTernaryFixit( 12276 S, E, 12277 S.Diag(CContext, diag::warn_impcast_float_to_objc_signed_char_bool) 12278 << E->getType()); 12279 } 12280 12281 return DiagnoseImpCast(S, E, T, CContext, 12282 diag::warn_impcast_float_integer, PruneWarnings); 12283 } 12284 12285 bool isExact = false; 12286 12287 llvm::APSInt IntegerValue(S.Context.getIntWidth(T), 12288 T->hasUnsignedIntegerRepresentation()); 12289 llvm::APFloat::opStatus Result = Value.convertToInteger( 12290 IntegerValue, llvm::APFloat::rmTowardZero, &isExact); 12291 12292 // FIXME: Force the precision of the source value down so we don't print 12293 // digits which are usually useless (we don't really care here if we 12294 // truncate a digit by accident in edge cases). Ideally, APFloat::toString 12295 // would automatically print the shortest representation, but it's a bit 12296 // tricky to implement. 12297 SmallString<16> PrettySourceValue; 12298 unsigned precision = llvm::APFloat::semanticsPrecision(Value.getSemantics()); 12299 precision = (precision * 59 + 195) / 196; 12300 Value.toString(PrettySourceValue, precision); 12301 12302 if (isObjCSignedCharBool(S, T) && IntegerValue != 0 && IntegerValue != 1) { 12303 return adornObjCBoolConversionDiagWithTernaryFixit( 12304 S, E, 12305 S.Diag(CContext, diag::warn_impcast_constant_value_to_objc_bool) 12306 << PrettySourceValue); 12307 } 12308 12309 if (Result == llvm::APFloat::opOK && isExact) { 12310 if (IsLiteral) return; 12311 return DiagnoseImpCast(S, E, T, CContext, diag::warn_impcast_float_integer, 12312 PruneWarnings); 12313 } 12314 12315 // Conversion of a floating-point value to a non-bool integer where the 12316 // integral part cannot be represented by the integer type is undefined. 12317 if (!IsBool && Result == llvm::APFloat::opInvalidOp) 12318 return DiagnoseImpCast( 12319 S, E, T, CContext, 12320 IsLiteral ? diag::warn_impcast_literal_float_to_integer_out_of_range 12321 : diag::warn_impcast_float_to_integer_out_of_range, 12322 PruneWarnings); 12323 12324 unsigned DiagID = 0; 12325 if (IsLiteral) { 12326 // Warn on floating point literal to integer. 12327 DiagID = diag::warn_impcast_literal_float_to_integer; 12328 } else if (IntegerValue == 0) { 12329 if (Value.isZero()) { // Skip -0.0 to 0 conversion. 12330 return DiagnoseImpCast(S, E, T, CContext, 12331 diag::warn_impcast_float_integer, PruneWarnings); 12332 } 12333 // Warn on non-zero to zero conversion. 12334 DiagID = diag::warn_impcast_float_to_integer_zero; 12335 } else { 12336 if (IntegerValue.isUnsigned()) { 12337 if (!IntegerValue.isMaxValue()) { 12338 return DiagnoseImpCast(S, E, T, CContext, 12339 diag::warn_impcast_float_integer, PruneWarnings); 12340 } 12341 } else { // IntegerValue.isSigned() 12342 if (!IntegerValue.isMaxSignedValue() && 12343 !IntegerValue.isMinSignedValue()) { 12344 return DiagnoseImpCast(S, E, T, CContext, 12345 diag::warn_impcast_float_integer, PruneWarnings); 12346 } 12347 } 12348 // Warn on evaluatable floating point expression to integer conversion. 12349 DiagID = diag::warn_impcast_float_to_integer; 12350 } 12351 12352 SmallString<16> PrettyTargetValue; 12353 if (IsBool) 12354 PrettyTargetValue = Value.isZero() ? "false" : "true"; 12355 else 12356 IntegerValue.toString(PrettyTargetValue); 12357 12358 if (PruneWarnings) { 12359 S.DiagRuntimeBehavior(E->getExprLoc(), E, 12360 S.PDiag(DiagID) 12361 << E->getType() << T.getUnqualifiedType() 12362 << PrettySourceValue << PrettyTargetValue 12363 << E->getSourceRange() << SourceRange(CContext)); 12364 } else { 12365 S.Diag(E->getExprLoc(), DiagID) 12366 << E->getType() << T.getUnqualifiedType() << PrettySourceValue 12367 << PrettyTargetValue << E->getSourceRange() << SourceRange(CContext); 12368 } 12369 } 12370 12371 /// Analyze the given compound assignment for the possible losing of 12372 /// floating-point precision. 12373 static void AnalyzeCompoundAssignment(Sema &S, BinaryOperator *E) { 12374 assert(isa<CompoundAssignOperator>(E) && 12375 "Must be compound assignment operation"); 12376 // Recurse on the LHS and RHS in here 12377 AnalyzeImplicitConversions(S, E->getLHS(), E->getOperatorLoc()); 12378 AnalyzeImplicitConversions(S, E->getRHS(), E->getOperatorLoc()); 12379 12380 if (E->getLHS()->getType()->isAtomicType()) 12381 S.Diag(E->getOperatorLoc(), diag::warn_atomic_implicit_seq_cst); 12382 12383 // Now check the outermost expression 12384 const auto *ResultBT = E->getLHS()->getType()->getAs<BuiltinType>(); 12385 const auto *RBT = cast<CompoundAssignOperator>(E) 12386 ->getComputationResultType() 12387 ->getAs<BuiltinType>(); 12388 12389 // The below checks assume source is floating point. 12390 if (!ResultBT || !RBT || !RBT->isFloatingPoint()) return; 12391 12392 // If source is floating point but target is an integer. 12393 if (ResultBT->isInteger()) 12394 return DiagnoseImpCast(S, E, E->getRHS()->getType(), E->getLHS()->getType(), 12395 E->getExprLoc(), diag::warn_impcast_float_integer); 12396 12397 if (!ResultBT->isFloatingPoint()) 12398 return; 12399 12400 // If both source and target are floating points, warn about losing precision. 12401 int Order = S.getASTContext().getFloatingTypeSemanticOrder( 12402 QualType(ResultBT, 0), QualType(RBT, 0)); 12403 if (Order < 0 && !S.SourceMgr.isInSystemMacro(E->getOperatorLoc())) 12404 // warn about dropping FP rank. 12405 DiagnoseImpCast(S, E->getRHS(), E->getLHS()->getType(), E->getOperatorLoc(), 12406 diag::warn_impcast_float_result_precision); 12407 } 12408 12409 static std::string PrettyPrintInRange(const llvm::APSInt &Value, 12410 IntRange Range) { 12411 if (!Range.Width) return "0"; 12412 12413 llvm::APSInt ValueInRange = Value; 12414 ValueInRange.setIsSigned(!Range.NonNegative); 12415 ValueInRange = ValueInRange.trunc(Range.Width); 12416 return toString(ValueInRange, 10); 12417 } 12418 12419 static bool IsImplicitBoolFloatConversion(Sema &S, Expr *Ex, bool ToBool) { 12420 if (!isa<ImplicitCastExpr>(Ex)) 12421 return false; 12422 12423 Expr *InnerE = Ex->IgnoreParenImpCasts(); 12424 const Type *Target = S.Context.getCanonicalType(Ex->getType()).getTypePtr(); 12425 const Type *Source = 12426 S.Context.getCanonicalType(InnerE->getType()).getTypePtr(); 12427 if (Target->isDependentType()) 12428 return false; 12429 12430 const BuiltinType *FloatCandidateBT = 12431 dyn_cast<BuiltinType>(ToBool ? Source : Target); 12432 const Type *BoolCandidateType = ToBool ? Target : Source; 12433 12434 return (BoolCandidateType->isSpecificBuiltinType(BuiltinType::Bool) && 12435 FloatCandidateBT && (FloatCandidateBT->isFloatingPoint())); 12436 } 12437 12438 static void CheckImplicitArgumentConversions(Sema &S, CallExpr *TheCall, 12439 SourceLocation CC) { 12440 unsigned NumArgs = TheCall->getNumArgs(); 12441 for (unsigned i = 0; i < NumArgs; ++i) { 12442 Expr *CurrA = TheCall->getArg(i); 12443 if (!IsImplicitBoolFloatConversion(S, CurrA, true)) 12444 continue; 12445 12446 bool IsSwapped = ((i > 0) && 12447 IsImplicitBoolFloatConversion(S, TheCall->getArg(i - 1), false)); 12448 IsSwapped |= ((i < (NumArgs - 1)) && 12449 IsImplicitBoolFloatConversion(S, TheCall->getArg(i + 1), false)); 12450 if (IsSwapped) { 12451 // Warn on this floating-point to bool conversion. 12452 DiagnoseImpCast(S, CurrA->IgnoreParenImpCasts(), 12453 CurrA->getType(), CC, 12454 diag::warn_impcast_floating_point_to_bool); 12455 } 12456 } 12457 } 12458 12459 static void DiagnoseNullConversion(Sema &S, Expr *E, QualType T, 12460 SourceLocation CC) { 12461 if (S.Diags.isIgnored(diag::warn_impcast_null_pointer_to_integer, 12462 E->getExprLoc())) 12463 return; 12464 12465 // Don't warn on functions which have return type nullptr_t. 12466 if (isa<CallExpr>(E)) 12467 return; 12468 12469 // Check for NULL (GNUNull) or nullptr (CXX11_nullptr). 12470 const Expr::NullPointerConstantKind NullKind = 12471 E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull); 12472 if (NullKind != Expr::NPCK_GNUNull && NullKind != Expr::NPCK_CXX11_nullptr) 12473 return; 12474 12475 // Return if target type is a safe conversion. 12476 if (T->isAnyPointerType() || T->isBlockPointerType() || 12477 T->isMemberPointerType() || !T->isScalarType() || T->isNullPtrType()) 12478 return; 12479 12480 SourceLocation Loc = E->getSourceRange().getBegin(); 12481 12482 // Venture through the macro stacks to get to the source of macro arguments. 12483 // The new location is a better location than the complete location that was 12484 // passed in. 12485 Loc = S.SourceMgr.getTopMacroCallerLoc(Loc); 12486 CC = S.SourceMgr.getTopMacroCallerLoc(CC); 12487 12488 // __null is usually wrapped in a macro. Go up a macro if that is the case. 12489 if (NullKind == Expr::NPCK_GNUNull && Loc.isMacroID()) { 12490 StringRef MacroName = Lexer::getImmediateMacroNameForDiagnostics( 12491 Loc, S.SourceMgr, S.getLangOpts()); 12492 if (MacroName == "NULL") 12493 Loc = S.SourceMgr.getImmediateExpansionRange(Loc).getBegin(); 12494 } 12495 12496 // Only warn if the null and context location are in the same macro expansion. 12497 if (S.SourceMgr.getFileID(Loc) != S.SourceMgr.getFileID(CC)) 12498 return; 12499 12500 S.Diag(Loc, diag::warn_impcast_null_pointer_to_integer) 12501 << (NullKind == Expr::NPCK_CXX11_nullptr) << T << SourceRange(CC) 12502 << FixItHint::CreateReplacement(Loc, 12503 S.getFixItZeroLiteralForType(T, Loc)); 12504 } 12505 12506 static void checkObjCArrayLiteral(Sema &S, QualType TargetType, 12507 ObjCArrayLiteral *ArrayLiteral); 12508 12509 static void 12510 checkObjCDictionaryLiteral(Sema &S, QualType TargetType, 12511 ObjCDictionaryLiteral *DictionaryLiteral); 12512 12513 /// Check a single element within a collection literal against the 12514 /// target element type. 12515 static void checkObjCCollectionLiteralElement(Sema &S, 12516 QualType TargetElementType, 12517 Expr *Element, 12518 unsigned ElementKind) { 12519 // Skip a bitcast to 'id' or qualified 'id'. 12520 if (auto ICE = dyn_cast<ImplicitCastExpr>(Element)) { 12521 if (ICE->getCastKind() == CK_BitCast && 12522 ICE->getSubExpr()->getType()->getAs<ObjCObjectPointerType>()) 12523 Element = ICE->getSubExpr(); 12524 } 12525 12526 QualType ElementType = Element->getType(); 12527 ExprResult ElementResult(Element); 12528 if (ElementType->getAs<ObjCObjectPointerType>() && 12529 S.CheckSingleAssignmentConstraints(TargetElementType, 12530 ElementResult, 12531 false, false) 12532 != Sema::Compatible) { 12533 S.Diag(Element->getBeginLoc(), diag::warn_objc_collection_literal_element) 12534 << ElementType << ElementKind << TargetElementType 12535 << Element->getSourceRange(); 12536 } 12537 12538 if (auto ArrayLiteral = dyn_cast<ObjCArrayLiteral>(Element)) 12539 checkObjCArrayLiteral(S, TargetElementType, ArrayLiteral); 12540 else if (auto DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(Element)) 12541 checkObjCDictionaryLiteral(S, TargetElementType, DictionaryLiteral); 12542 } 12543 12544 /// Check an Objective-C array literal being converted to the given 12545 /// target type. 12546 static void checkObjCArrayLiteral(Sema &S, QualType TargetType, 12547 ObjCArrayLiteral *ArrayLiteral) { 12548 if (!S.NSArrayDecl) 12549 return; 12550 12551 const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>(); 12552 if (!TargetObjCPtr) 12553 return; 12554 12555 if (TargetObjCPtr->isUnspecialized() || 12556 TargetObjCPtr->getInterfaceDecl()->getCanonicalDecl() 12557 != S.NSArrayDecl->getCanonicalDecl()) 12558 return; 12559 12560 auto TypeArgs = TargetObjCPtr->getTypeArgs(); 12561 if (TypeArgs.size() != 1) 12562 return; 12563 12564 QualType TargetElementType = TypeArgs[0]; 12565 for (unsigned I = 0, N = ArrayLiteral->getNumElements(); I != N; ++I) { 12566 checkObjCCollectionLiteralElement(S, TargetElementType, 12567 ArrayLiteral->getElement(I), 12568 0); 12569 } 12570 } 12571 12572 /// Check an Objective-C dictionary literal being converted to the given 12573 /// target type. 12574 static void 12575 checkObjCDictionaryLiteral(Sema &S, QualType TargetType, 12576 ObjCDictionaryLiteral *DictionaryLiteral) { 12577 if (!S.NSDictionaryDecl) 12578 return; 12579 12580 const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>(); 12581 if (!TargetObjCPtr) 12582 return; 12583 12584 if (TargetObjCPtr->isUnspecialized() || 12585 TargetObjCPtr->getInterfaceDecl()->getCanonicalDecl() 12586 != S.NSDictionaryDecl->getCanonicalDecl()) 12587 return; 12588 12589 auto TypeArgs = TargetObjCPtr->getTypeArgs(); 12590 if (TypeArgs.size() != 2) 12591 return; 12592 12593 QualType TargetKeyType = TypeArgs[0]; 12594 QualType TargetObjectType = TypeArgs[1]; 12595 for (unsigned I = 0, N = DictionaryLiteral->getNumElements(); I != N; ++I) { 12596 auto Element = DictionaryLiteral->getKeyValueElement(I); 12597 checkObjCCollectionLiteralElement(S, TargetKeyType, Element.Key, 1); 12598 checkObjCCollectionLiteralElement(S, TargetObjectType, Element.Value, 2); 12599 } 12600 } 12601 12602 // Helper function to filter out cases for constant width constant conversion. 12603 // Don't warn on char array initialization or for non-decimal values. 12604 static bool isSameWidthConstantConversion(Sema &S, Expr *E, QualType T, 12605 SourceLocation CC) { 12606 // If initializing from a constant, and the constant starts with '0', 12607 // then it is a binary, octal, or hexadecimal. Allow these constants 12608 // to fill all the bits, even if there is a sign change. 12609 if (auto *IntLit = dyn_cast<IntegerLiteral>(E->IgnoreParenImpCasts())) { 12610 const char FirstLiteralCharacter = 12611 S.getSourceManager().getCharacterData(IntLit->getBeginLoc())[0]; 12612 if (FirstLiteralCharacter == '0') 12613 return false; 12614 } 12615 12616 // If the CC location points to a '{', and the type is char, then assume 12617 // assume it is an array initialization. 12618 if (CC.isValid() && T->isCharType()) { 12619 const char FirstContextCharacter = 12620 S.getSourceManager().getCharacterData(CC)[0]; 12621 if (FirstContextCharacter == '{') 12622 return false; 12623 } 12624 12625 return true; 12626 } 12627 12628 static const IntegerLiteral *getIntegerLiteral(Expr *E) { 12629 const auto *IL = dyn_cast<IntegerLiteral>(E); 12630 if (!IL) { 12631 if (auto *UO = dyn_cast<UnaryOperator>(E)) { 12632 if (UO->getOpcode() == UO_Minus) 12633 return dyn_cast<IntegerLiteral>(UO->getSubExpr()); 12634 } 12635 } 12636 12637 return IL; 12638 } 12639 12640 static void DiagnoseIntInBoolContext(Sema &S, Expr *E) { 12641 E = E->IgnoreParenImpCasts(); 12642 SourceLocation ExprLoc = E->getExprLoc(); 12643 12644 if (const auto *BO = dyn_cast<BinaryOperator>(E)) { 12645 BinaryOperator::Opcode Opc = BO->getOpcode(); 12646 Expr::EvalResult Result; 12647 // Do not diagnose unsigned shifts. 12648 if (Opc == BO_Shl) { 12649 const auto *LHS = getIntegerLiteral(BO->getLHS()); 12650 const auto *RHS = getIntegerLiteral(BO->getRHS()); 12651 if (LHS && LHS->getValue() == 0) 12652 S.Diag(ExprLoc, diag::warn_left_shift_always) << 0; 12653 else if (!E->isValueDependent() && LHS && RHS && 12654 RHS->getValue().isNonNegative() && 12655 E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects)) 12656 S.Diag(ExprLoc, diag::warn_left_shift_always) 12657 << (Result.Val.getInt() != 0); 12658 else if (E->getType()->isSignedIntegerType()) 12659 S.Diag(ExprLoc, diag::warn_left_shift_in_bool_context) << E; 12660 } 12661 } 12662 12663 if (const auto *CO = dyn_cast<ConditionalOperator>(E)) { 12664 const auto *LHS = getIntegerLiteral(CO->getTrueExpr()); 12665 const auto *RHS = getIntegerLiteral(CO->getFalseExpr()); 12666 if (!LHS || !RHS) 12667 return; 12668 if ((LHS->getValue() == 0 || LHS->getValue() == 1) && 12669 (RHS->getValue() == 0 || RHS->getValue() == 1)) 12670 // Do not diagnose common idioms. 12671 return; 12672 if (LHS->getValue() != 0 && RHS->getValue() != 0) 12673 S.Diag(ExprLoc, diag::warn_integer_constants_in_conditional_always_true); 12674 } 12675 } 12676 12677 static void CheckImplicitConversion(Sema &S, Expr *E, QualType T, 12678 SourceLocation CC, 12679 bool *ICContext = nullptr, 12680 bool IsListInit = false) { 12681 if (E->isTypeDependent() || E->isValueDependent()) return; 12682 12683 const Type *Source = S.Context.getCanonicalType(E->getType()).getTypePtr(); 12684 const Type *Target = S.Context.getCanonicalType(T).getTypePtr(); 12685 if (Source == Target) return; 12686 if (Target->isDependentType()) return; 12687 12688 // If the conversion context location is invalid don't complain. We also 12689 // don't want to emit a warning if the issue occurs from the expansion of 12690 // a system macro. The problem is that 'getSpellingLoc()' is slow, so we 12691 // delay this check as long as possible. Once we detect we are in that 12692 // scenario, we just return. 12693 if (CC.isInvalid()) 12694 return; 12695 12696 if (Source->isAtomicType()) 12697 S.Diag(E->getExprLoc(), diag::warn_atomic_implicit_seq_cst); 12698 12699 // Diagnose implicit casts to bool. 12700 if (Target->isSpecificBuiltinType(BuiltinType::Bool)) { 12701 if (isa<StringLiteral>(E)) 12702 // Warn on string literal to bool. Checks for string literals in logical 12703 // and expressions, for instance, assert(0 && "error here"), are 12704 // prevented by a check in AnalyzeImplicitConversions(). 12705 return DiagnoseImpCast(S, E, T, CC, 12706 diag::warn_impcast_string_literal_to_bool); 12707 if (isa<ObjCStringLiteral>(E) || isa<ObjCArrayLiteral>(E) || 12708 isa<ObjCDictionaryLiteral>(E) || isa<ObjCBoxedExpr>(E)) { 12709 // This covers the literal expressions that evaluate to Objective-C 12710 // objects. 12711 return DiagnoseImpCast(S, E, T, CC, 12712 diag::warn_impcast_objective_c_literal_to_bool); 12713 } 12714 if (Source->isPointerType() || Source->canDecayToPointerType()) { 12715 // Warn on pointer to bool conversion that is always true. 12716 S.DiagnoseAlwaysNonNullPointer(E, Expr::NPCK_NotNull, /*IsEqual*/ false, 12717 SourceRange(CC)); 12718 } 12719 } 12720 12721 // If the we're converting a constant to an ObjC BOOL on a platform where BOOL 12722 // is a typedef for signed char (macOS), then that constant value has to be 1 12723 // or 0. 12724 if (isObjCSignedCharBool(S, T) && Source->isIntegralType(S.Context)) { 12725 Expr::EvalResult Result; 12726 if (E->EvaluateAsInt(Result, S.getASTContext(), 12727 Expr::SE_AllowSideEffects)) { 12728 if (Result.Val.getInt() != 1 && Result.Val.getInt() != 0) { 12729 adornObjCBoolConversionDiagWithTernaryFixit( 12730 S, E, 12731 S.Diag(CC, diag::warn_impcast_constant_value_to_objc_bool) 12732 << toString(Result.Val.getInt(), 10)); 12733 } 12734 return; 12735 } 12736 } 12737 12738 // Check implicit casts from Objective-C collection literals to specialized 12739 // collection types, e.g., NSArray<NSString *> *. 12740 if (auto *ArrayLiteral = dyn_cast<ObjCArrayLiteral>(E)) 12741 checkObjCArrayLiteral(S, QualType(Target, 0), ArrayLiteral); 12742 else if (auto *DictionaryLiteral = dyn_cast<ObjCDictionaryLiteral>(E)) 12743 checkObjCDictionaryLiteral(S, QualType(Target, 0), DictionaryLiteral); 12744 12745 // Strip vector types. 12746 if (isa<VectorType>(Source)) { 12747 if (Target->isVLSTBuiltinType() && 12748 (S.Context.areCompatibleSveTypes(QualType(Target, 0), 12749 QualType(Source, 0)) || 12750 S.Context.areLaxCompatibleSveTypes(QualType(Target, 0), 12751 QualType(Source, 0)))) 12752 return; 12753 12754 if (!isa<VectorType>(Target)) { 12755 if (S.SourceMgr.isInSystemMacro(CC)) 12756 return; 12757 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_vector_scalar); 12758 } 12759 12760 // If the vector cast is cast between two vectors of the same size, it is 12761 // a bitcast, not a conversion. 12762 if (S.Context.getTypeSize(Source) == S.Context.getTypeSize(Target)) 12763 return; 12764 12765 Source = cast<VectorType>(Source)->getElementType().getTypePtr(); 12766 Target = cast<VectorType>(Target)->getElementType().getTypePtr(); 12767 } 12768 if (auto VecTy = dyn_cast<VectorType>(Target)) 12769 Target = VecTy->getElementType().getTypePtr(); 12770 12771 // Strip complex types. 12772 if (isa<ComplexType>(Source)) { 12773 if (!isa<ComplexType>(Target)) { 12774 if (S.SourceMgr.isInSystemMacro(CC) || Target->isBooleanType()) 12775 return; 12776 12777 return DiagnoseImpCast(S, E, T, CC, 12778 S.getLangOpts().CPlusPlus 12779 ? diag::err_impcast_complex_scalar 12780 : diag::warn_impcast_complex_scalar); 12781 } 12782 12783 Source = cast<ComplexType>(Source)->getElementType().getTypePtr(); 12784 Target = cast<ComplexType>(Target)->getElementType().getTypePtr(); 12785 } 12786 12787 const BuiltinType *SourceBT = dyn_cast<BuiltinType>(Source); 12788 const BuiltinType *TargetBT = dyn_cast<BuiltinType>(Target); 12789 12790 // If the source is floating point... 12791 if (SourceBT && SourceBT->isFloatingPoint()) { 12792 // ...and the target is floating point... 12793 if (TargetBT && TargetBT->isFloatingPoint()) { 12794 // ...then warn if we're dropping FP rank. 12795 12796 int Order = S.getASTContext().getFloatingTypeSemanticOrder( 12797 QualType(SourceBT, 0), QualType(TargetBT, 0)); 12798 if (Order > 0) { 12799 // Don't warn about float constants that are precisely 12800 // representable in the target type. 12801 Expr::EvalResult result; 12802 if (E->EvaluateAsRValue(result, S.Context)) { 12803 // Value might be a float, a float vector, or a float complex. 12804 if (IsSameFloatAfterCast(result.Val, 12805 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0)), 12806 S.Context.getFloatTypeSemantics(QualType(SourceBT, 0)))) 12807 return; 12808 } 12809 12810 if (S.SourceMgr.isInSystemMacro(CC)) 12811 return; 12812 12813 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_float_precision); 12814 } 12815 // ... or possibly if we're increasing rank, too 12816 else if (Order < 0) { 12817 if (S.SourceMgr.isInSystemMacro(CC)) 12818 return; 12819 12820 DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_double_promotion); 12821 } 12822 return; 12823 } 12824 12825 // If the target is integral, always warn. 12826 if (TargetBT && TargetBT->isInteger()) { 12827 if (S.SourceMgr.isInSystemMacro(CC)) 12828 return; 12829 12830 DiagnoseFloatingImpCast(S, E, T, CC); 12831 } 12832 12833 // Detect the case where a call result is converted from floating-point to 12834 // to bool, and the final argument to the call is converted from bool, to 12835 // discover this typo: 12836 // 12837 // bool b = fabs(x < 1.0); // should be "bool b = fabs(x) < 1.0;" 12838 // 12839 // FIXME: This is an incredibly special case; is there some more general 12840 // way to detect this class of misplaced-parentheses bug? 12841 if (Target->isBooleanType() && isa<CallExpr>(E)) { 12842 // Check last argument of function call to see if it is an 12843 // implicit cast from a type matching the type the result 12844 // is being cast to. 12845 CallExpr *CEx = cast<CallExpr>(E); 12846 if (unsigned NumArgs = CEx->getNumArgs()) { 12847 Expr *LastA = CEx->getArg(NumArgs - 1); 12848 Expr *InnerE = LastA->IgnoreParenImpCasts(); 12849 if (isa<ImplicitCastExpr>(LastA) && 12850 InnerE->getType()->isBooleanType()) { 12851 // Warn on this floating-point to bool conversion 12852 DiagnoseImpCast(S, E, T, CC, 12853 diag::warn_impcast_floating_point_to_bool); 12854 } 12855 } 12856 } 12857 return; 12858 } 12859 12860 // Valid casts involving fixed point types should be accounted for here. 12861 if (Source->isFixedPointType()) { 12862 if (Target->isUnsaturatedFixedPointType()) { 12863 Expr::EvalResult Result; 12864 if (E->EvaluateAsFixedPoint(Result, S.Context, Expr::SE_AllowSideEffects, 12865 S.isConstantEvaluated())) { 12866 llvm::APFixedPoint Value = Result.Val.getFixedPoint(); 12867 llvm::APFixedPoint MaxVal = S.Context.getFixedPointMax(T); 12868 llvm::APFixedPoint MinVal = S.Context.getFixedPointMin(T); 12869 if (Value > MaxVal || Value < MinVal) { 12870 S.DiagRuntimeBehavior(E->getExprLoc(), E, 12871 S.PDiag(diag::warn_impcast_fixed_point_range) 12872 << Value.toString() << T 12873 << E->getSourceRange() 12874 << clang::SourceRange(CC)); 12875 return; 12876 } 12877 } 12878 } else if (Target->isIntegerType()) { 12879 Expr::EvalResult Result; 12880 if (!S.isConstantEvaluated() && 12881 E->EvaluateAsFixedPoint(Result, S.Context, 12882 Expr::SE_AllowSideEffects)) { 12883 llvm::APFixedPoint FXResult = Result.Val.getFixedPoint(); 12884 12885 bool Overflowed; 12886 llvm::APSInt IntResult = FXResult.convertToInt( 12887 S.Context.getIntWidth(T), 12888 Target->isSignedIntegerOrEnumerationType(), &Overflowed); 12889 12890 if (Overflowed) { 12891 S.DiagRuntimeBehavior(E->getExprLoc(), E, 12892 S.PDiag(diag::warn_impcast_fixed_point_range) 12893 << FXResult.toString() << T 12894 << E->getSourceRange() 12895 << clang::SourceRange(CC)); 12896 return; 12897 } 12898 } 12899 } 12900 } else if (Target->isUnsaturatedFixedPointType()) { 12901 if (Source->isIntegerType()) { 12902 Expr::EvalResult Result; 12903 if (!S.isConstantEvaluated() && 12904 E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects)) { 12905 llvm::APSInt Value = Result.Val.getInt(); 12906 12907 bool Overflowed; 12908 llvm::APFixedPoint IntResult = llvm::APFixedPoint::getFromIntValue( 12909 Value, S.Context.getFixedPointSemantics(T), &Overflowed); 12910 12911 if (Overflowed) { 12912 S.DiagRuntimeBehavior(E->getExprLoc(), E, 12913 S.PDiag(diag::warn_impcast_fixed_point_range) 12914 << toString(Value, /*Radix=*/10) << T 12915 << E->getSourceRange() 12916 << clang::SourceRange(CC)); 12917 return; 12918 } 12919 } 12920 } 12921 } 12922 12923 // If we are casting an integer type to a floating point type without 12924 // initialization-list syntax, we might lose accuracy if the floating 12925 // point type has a narrower significand than the integer type. 12926 if (SourceBT && TargetBT && SourceBT->isIntegerType() && 12927 TargetBT->isFloatingType() && !IsListInit) { 12928 // Determine the number of precision bits in the source integer type. 12929 IntRange SourceRange = GetExprRange(S.Context, E, S.isConstantEvaluated(), 12930 /*Approximate*/ true); 12931 unsigned int SourcePrecision = SourceRange.Width; 12932 12933 // Determine the number of precision bits in the 12934 // target floating point type. 12935 unsigned int TargetPrecision = llvm::APFloatBase::semanticsPrecision( 12936 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0))); 12937 12938 if (SourcePrecision > 0 && TargetPrecision > 0 && 12939 SourcePrecision > TargetPrecision) { 12940 12941 if (Optional<llvm::APSInt> SourceInt = 12942 E->getIntegerConstantExpr(S.Context)) { 12943 // If the source integer is a constant, convert it to the target 12944 // floating point type. Issue a warning if the value changes 12945 // during the whole conversion. 12946 llvm::APFloat TargetFloatValue( 12947 S.Context.getFloatTypeSemantics(QualType(TargetBT, 0))); 12948 llvm::APFloat::opStatus ConversionStatus = 12949 TargetFloatValue.convertFromAPInt( 12950 *SourceInt, SourceBT->isSignedInteger(), 12951 llvm::APFloat::rmNearestTiesToEven); 12952 12953 if (ConversionStatus != llvm::APFloat::opOK) { 12954 SmallString<32> PrettySourceValue; 12955 SourceInt->toString(PrettySourceValue, 10); 12956 SmallString<32> PrettyTargetValue; 12957 TargetFloatValue.toString(PrettyTargetValue, TargetPrecision); 12958 12959 S.DiagRuntimeBehavior( 12960 E->getExprLoc(), E, 12961 S.PDiag(diag::warn_impcast_integer_float_precision_constant) 12962 << PrettySourceValue << PrettyTargetValue << E->getType() << T 12963 << E->getSourceRange() << clang::SourceRange(CC)); 12964 } 12965 } else { 12966 // Otherwise, the implicit conversion may lose precision. 12967 DiagnoseImpCast(S, E, T, CC, 12968 diag::warn_impcast_integer_float_precision); 12969 } 12970 } 12971 } 12972 12973 DiagnoseNullConversion(S, E, T, CC); 12974 12975 S.DiscardMisalignedMemberAddress(Target, E); 12976 12977 if (Target->isBooleanType()) 12978 DiagnoseIntInBoolContext(S, E); 12979 12980 if (!Source->isIntegerType() || !Target->isIntegerType()) 12981 return; 12982 12983 // TODO: remove this early return once the false positives for constant->bool 12984 // in templates, macros, etc, are reduced or removed. 12985 if (Target->isSpecificBuiltinType(BuiltinType::Bool)) 12986 return; 12987 12988 if (isObjCSignedCharBool(S, T) && !Source->isCharType() && 12989 !E->isKnownToHaveBooleanValue(/*Semantic=*/false)) { 12990 return adornObjCBoolConversionDiagWithTernaryFixit( 12991 S, E, 12992 S.Diag(CC, diag::warn_impcast_int_to_objc_signed_char_bool) 12993 << E->getType()); 12994 } 12995 12996 IntRange SourceTypeRange = 12997 IntRange::forTargetOfCanonicalType(S.Context, Source); 12998 IntRange LikelySourceRange = 12999 GetExprRange(S.Context, E, S.isConstantEvaluated(), /*Approximate*/ true); 13000 IntRange TargetRange = IntRange::forTargetOfCanonicalType(S.Context, Target); 13001 13002 if (LikelySourceRange.Width > TargetRange.Width) { 13003 // If the source is a constant, use a default-on diagnostic. 13004 // TODO: this should happen for bitfield stores, too. 13005 Expr::EvalResult Result; 13006 if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects, 13007 S.isConstantEvaluated())) { 13008 llvm::APSInt Value(32); 13009 Value = Result.Val.getInt(); 13010 13011 if (S.SourceMgr.isInSystemMacro(CC)) 13012 return; 13013 13014 std::string PrettySourceValue = toString(Value, 10); 13015 std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange); 13016 13017 S.DiagRuntimeBehavior( 13018 E->getExprLoc(), E, 13019 S.PDiag(diag::warn_impcast_integer_precision_constant) 13020 << PrettySourceValue << PrettyTargetValue << E->getType() << T 13021 << E->getSourceRange() << SourceRange(CC)); 13022 return; 13023 } 13024 13025 // People want to build with -Wshorten-64-to-32 and not -Wconversion. 13026 if (S.SourceMgr.isInSystemMacro(CC)) 13027 return; 13028 13029 if (TargetRange.Width == 32 && S.Context.getIntWidth(E->getType()) == 64) 13030 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_64_32, 13031 /* pruneControlFlow */ true); 13032 return DiagnoseImpCast(S, E, T, CC, diag::warn_impcast_integer_precision); 13033 } 13034 13035 if (TargetRange.Width > SourceTypeRange.Width) { 13036 if (auto *UO = dyn_cast<UnaryOperator>(E)) 13037 if (UO->getOpcode() == UO_Minus) 13038 if (Source->isUnsignedIntegerType()) { 13039 if (Target->isUnsignedIntegerType()) 13040 return DiagnoseImpCast(S, E, T, CC, 13041 diag::warn_impcast_high_order_zero_bits); 13042 if (Target->isSignedIntegerType()) 13043 return DiagnoseImpCast(S, E, T, CC, 13044 diag::warn_impcast_nonnegative_result); 13045 } 13046 } 13047 13048 if (TargetRange.Width == LikelySourceRange.Width && 13049 !TargetRange.NonNegative && LikelySourceRange.NonNegative && 13050 Source->isSignedIntegerType()) { 13051 // Warn when doing a signed to signed conversion, warn if the positive 13052 // source value is exactly the width of the target type, which will 13053 // cause a negative value to be stored. 13054 13055 Expr::EvalResult Result; 13056 if (E->EvaluateAsInt(Result, S.Context, Expr::SE_AllowSideEffects) && 13057 !S.SourceMgr.isInSystemMacro(CC)) { 13058 llvm::APSInt Value = Result.Val.getInt(); 13059 if (isSameWidthConstantConversion(S, E, T, CC)) { 13060 std::string PrettySourceValue = toString(Value, 10); 13061 std::string PrettyTargetValue = PrettyPrintInRange(Value, TargetRange); 13062 13063 S.DiagRuntimeBehavior( 13064 E->getExprLoc(), E, 13065 S.PDiag(diag::warn_impcast_integer_precision_constant) 13066 << PrettySourceValue << PrettyTargetValue << E->getType() << T 13067 << E->getSourceRange() << SourceRange(CC)); 13068 return; 13069 } 13070 } 13071 13072 // Fall through for non-constants to give a sign conversion warning. 13073 } 13074 13075 if ((TargetRange.NonNegative && !LikelySourceRange.NonNegative) || 13076 (!TargetRange.NonNegative && LikelySourceRange.NonNegative && 13077 LikelySourceRange.Width == TargetRange.Width)) { 13078 if (S.SourceMgr.isInSystemMacro(CC)) 13079 return; 13080 13081 unsigned DiagID = diag::warn_impcast_integer_sign; 13082 13083 // Traditionally, gcc has warned about this under -Wsign-compare. 13084 // We also want to warn about it in -Wconversion. 13085 // So if -Wconversion is off, use a completely identical diagnostic 13086 // in the sign-compare group. 13087 // The conditional-checking code will 13088 if (ICContext) { 13089 DiagID = diag::warn_impcast_integer_sign_conditional; 13090 *ICContext = true; 13091 } 13092 13093 return DiagnoseImpCast(S, E, T, CC, DiagID); 13094 } 13095 13096 // Diagnose conversions between different enumeration types. 13097 // In C, we pretend that the type of an EnumConstantDecl is its enumeration 13098 // type, to give us better diagnostics. 13099 QualType SourceType = E->getType(); 13100 if (!S.getLangOpts().CPlusPlus) { 13101 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) 13102 if (EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(DRE->getDecl())) { 13103 EnumDecl *Enum = cast<EnumDecl>(ECD->getDeclContext()); 13104 SourceType = S.Context.getTypeDeclType(Enum); 13105 Source = S.Context.getCanonicalType(SourceType).getTypePtr(); 13106 } 13107 } 13108 13109 if (const EnumType *SourceEnum = Source->getAs<EnumType>()) 13110 if (const EnumType *TargetEnum = Target->getAs<EnumType>()) 13111 if (SourceEnum->getDecl()->hasNameForLinkage() && 13112 TargetEnum->getDecl()->hasNameForLinkage() && 13113 SourceEnum != TargetEnum) { 13114 if (S.SourceMgr.isInSystemMacro(CC)) 13115 return; 13116 13117 return DiagnoseImpCast(S, E, SourceType, T, CC, 13118 diag::warn_impcast_different_enum_types); 13119 } 13120 } 13121 13122 static void CheckConditionalOperator(Sema &S, AbstractConditionalOperator *E, 13123 SourceLocation CC, QualType T); 13124 13125 static void CheckConditionalOperand(Sema &S, Expr *E, QualType T, 13126 SourceLocation CC, bool &ICContext) { 13127 E = E->IgnoreParenImpCasts(); 13128 13129 if (auto *CO = dyn_cast<AbstractConditionalOperator>(E)) 13130 return CheckConditionalOperator(S, CO, CC, T); 13131 13132 AnalyzeImplicitConversions(S, E, CC); 13133 if (E->getType() != T) 13134 return CheckImplicitConversion(S, E, T, CC, &ICContext); 13135 } 13136 13137 static void CheckConditionalOperator(Sema &S, AbstractConditionalOperator *E, 13138 SourceLocation CC, QualType T) { 13139 AnalyzeImplicitConversions(S, E->getCond(), E->getQuestionLoc()); 13140 13141 Expr *TrueExpr = E->getTrueExpr(); 13142 if (auto *BCO = dyn_cast<BinaryConditionalOperator>(E)) 13143 TrueExpr = BCO->getCommon(); 13144 13145 bool Suspicious = false; 13146 CheckConditionalOperand(S, TrueExpr, T, CC, Suspicious); 13147 CheckConditionalOperand(S, E->getFalseExpr(), T, CC, Suspicious); 13148 13149 if (T->isBooleanType()) 13150 DiagnoseIntInBoolContext(S, E); 13151 13152 // If -Wconversion would have warned about either of the candidates 13153 // for a signedness conversion to the context type... 13154 if (!Suspicious) return; 13155 13156 // ...but it's currently ignored... 13157 if (!S.Diags.isIgnored(diag::warn_impcast_integer_sign_conditional, CC)) 13158 return; 13159 13160 // ...then check whether it would have warned about either of the 13161 // candidates for a signedness conversion to the condition type. 13162 if (E->getType() == T) return; 13163 13164 Suspicious = false; 13165 CheckImplicitConversion(S, TrueExpr->IgnoreParenImpCasts(), 13166 E->getType(), CC, &Suspicious); 13167 if (!Suspicious) 13168 CheckImplicitConversion(S, E->getFalseExpr()->IgnoreParenImpCasts(), 13169 E->getType(), CC, &Suspicious); 13170 } 13171 13172 /// Check conversion of given expression to boolean. 13173 /// Input argument E is a logical expression. 13174 static void CheckBoolLikeConversion(Sema &S, Expr *E, SourceLocation CC) { 13175 if (S.getLangOpts().Bool) 13176 return; 13177 if (E->IgnoreParenImpCasts()->getType()->isAtomicType()) 13178 return; 13179 CheckImplicitConversion(S, E->IgnoreParenImpCasts(), S.Context.BoolTy, CC); 13180 } 13181 13182 namespace { 13183 struct AnalyzeImplicitConversionsWorkItem { 13184 Expr *E; 13185 SourceLocation CC; 13186 bool IsListInit; 13187 }; 13188 } 13189 13190 /// Data recursive variant of AnalyzeImplicitConversions. Subexpressions 13191 /// that should be visited are added to WorkList. 13192 static void AnalyzeImplicitConversions( 13193 Sema &S, AnalyzeImplicitConversionsWorkItem Item, 13194 llvm::SmallVectorImpl<AnalyzeImplicitConversionsWorkItem> &WorkList) { 13195 Expr *OrigE = Item.E; 13196 SourceLocation CC = Item.CC; 13197 13198 QualType T = OrigE->getType(); 13199 Expr *E = OrigE->IgnoreParenImpCasts(); 13200 13201 // Propagate whether we are in a C++ list initialization expression. 13202 // If so, we do not issue warnings for implicit int-float conversion 13203 // precision loss, because C++11 narrowing already handles it. 13204 bool IsListInit = Item.IsListInit || 13205 (isa<InitListExpr>(OrigE) && S.getLangOpts().CPlusPlus); 13206 13207 if (E->isTypeDependent() || E->isValueDependent()) 13208 return; 13209 13210 Expr *SourceExpr = E; 13211 // Examine, but don't traverse into the source expression of an 13212 // OpaqueValueExpr, since it may have multiple parents and we don't want to 13213 // emit duplicate diagnostics. Its fine to examine the form or attempt to 13214 // evaluate it in the context of checking the specific conversion to T though. 13215 if (auto *OVE = dyn_cast<OpaqueValueExpr>(E)) 13216 if (auto *Src = OVE->getSourceExpr()) 13217 SourceExpr = Src; 13218 13219 if (const auto *UO = dyn_cast<UnaryOperator>(SourceExpr)) 13220 if (UO->getOpcode() == UO_Not && 13221 UO->getSubExpr()->isKnownToHaveBooleanValue()) 13222 S.Diag(UO->getBeginLoc(), diag::warn_bitwise_negation_bool) 13223 << OrigE->getSourceRange() << T->isBooleanType() 13224 << FixItHint::CreateReplacement(UO->getBeginLoc(), "!"); 13225 13226 // For conditional operators, we analyze the arguments as if they 13227 // were being fed directly into the output. 13228 if (auto *CO = dyn_cast<AbstractConditionalOperator>(SourceExpr)) { 13229 CheckConditionalOperator(S, CO, CC, T); 13230 return; 13231 } 13232 13233 // Check implicit argument conversions for function calls. 13234 if (CallExpr *Call = dyn_cast<CallExpr>(SourceExpr)) 13235 CheckImplicitArgumentConversions(S, Call, CC); 13236 13237 // Go ahead and check any implicit conversions we might have skipped. 13238 // The non-canonical typecheck is just an optimization; 13239 // CheckImplicitConversion will filter out dead implicit conversions. 13240 if (SourceExpr->getType() != T) 13241 CheckImplicitConversion(S, SourceExpr, T, CC, nullptr, IsListInit); 13242 13243 // Now continue drilling into this expression. 13244 13245 if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E)) { 13246 // The bound subexpressions in a PseudoObjectExpr are not reachable 13247 // as transitive children. 13248 // FIXME: Use a more uniform representation for this. 13249 for (auto *SE : POE->semantics()) 13250 if (auto *OVE = dyn_cast<OpaqueValueExpr>(SE)) 13251 WorkList.push_back({OVE->getSourceExpr(), CC, IsListInit}); 13252 } 13253 13254 // Skip past explicit casts. 13255 if (auto *CE = dyn_cast<ExplicitCastExpr>(E)) { 13256 E = CE->getSubExpr()->IgnoreParenImpCasts(); 13257 if (!CE->getType()->isVoidType() && E->getType()->isAtomicType()) 13258 S.Diag(E->getBeginLoc(), diag::warn_atomic_implicit_seq_cst); 13259 WorkList.push_back({E, CC, IsListInit}); 13260 return; 13261 } 13262 13263 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 13264 // Do a somewhat different check with comparison operators. 13265 if (BO->isComparisonOp()) 13266 return AnalyzeComparison(S, BO); 13267 13268 // And with simple assignments. 13269 if (BO->getOpcode() == BO_Assign) 13270 return AnalyzeAssignment(S, BO); 13271 // And with compound assignments. 13272 if (BO->isAssignmentOp()) 13273 return AnalyzeCompoundAssignment(S, BO); 13274 } 13275 13276 // These break the otherwise-useful invariant below. Fortunately, 13277 // we don't really need to recurse into them, because any internal 13278 // expressions should have been analyzed already when they were 13279 // built into statements. 13280 if (isa<StmtExpr>(E)) return; 13281 13282 // Don't descend into unevaluated contexts. 13283 if (isa<UnaryExprOrTypeTraitExpr>(E)) return; 13284 13285 // Now just recurse over the expression's children. 13286 CC = E->getExprLoc(); 13287 BinaryOperator *BO = dyn_cast<BinaryOperator>(E); 13288 bool IsLogicalAndOperator = BO && BO->getOpcode() == BO_LAnd; 13289 for (Stmt *SubStmt : E->children()) { 13290 Expr *ChildExpr = dyn_cast_or_null<Expr>(SubStmt); 13291 if (!ChildExpr) 13292 continue; 13293 13294 if (IsLogicalAndOperator && 13295 isa<StringLiteral>(ChildExpr->IgnoreParenImpCasts())) 13296 // Ignore checking string literals that are in logical and operators. 13297 // This is a common pattern for asserts. 13298 continue; 13299 WorkList.push_back({ChildExpr, CC, IsListInit}); 13300 } 13301 13302 if (BO && BO->isLogicalOp()) { 13303 Expr *SubExpr = BO->getLHS()->IgnoreParenImpCasts(); 13304 if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr)) 13305 ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc()); 13306 13307 SubExpr = BO->getRHS()->IgnoreParenImpCasts(); 13308 if (!IsLogicalAndOperator || !isa<StringLiteral>(SubExpr)) 13309 ::CheckBoolLikeConversion(S, SubExpr, BO->getExprLoc()); 13310 } 13311 13312 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(E)) { 13313 if (U->getOpcode() == UO_LNot) { 13314 ::CheckBoolLikeConversion(S, U->getSubExpr(), CC); 13315 } else if (U->getOpcode() != UO_AddrOf) { 13316 if (U->getSubExpr()->getType()->isAtomicType()) 13317 S.Diag(U->getSubExpr()->getBeginLoc(), 13318 diag::warn_atomic_implicit_seq_cst); 13319 } 13320 } 13321 } 13322 13323 /// AnalyzeImplicitConversions - Find and report any interesting 13324 /// implicit conversions in the given expression. There are a couple 13325 /// of competing diagnostics here, -Wconversion and -Wsign-compare. 13326 static void AnalyzeImplicitConversions(Sema &S, Expr *OrigE, SourceLocation CC, 13327 bool IsListInit/*= false*/) { 13328 llvm::SmallVector<AnalyzeImplicitConversionsWorkItem, 16> WorkList; 13329 WorkList.push_back({OrigE, CC, IsListInit}); 13330 while (!WorkList.empty()) 13331 AnalyzeImplicitConversions(S, WorkList.pop_back_val(), WorkList); 13332 } 13333 13334 /// Diagnose integer type and any valid implicit conversion to it. 13335 static bool checkOpenCLEnqueueIntType(Sema &S, Expr *E, const QualType &IntT) { 13336 // Taking into account implicit conversions, 13337 // allow any integer. 13338 if (!E->getType()->isIntegerType()) { 13339 S.Diag(E->getBeginLoc(), 13340 diag::err_opencl_enqueue_kernel_invalid_local_size_type); 13341 return true; 13342 } 13343 // Potentially emit standard warnings for implicit conversions if enabled 13344 // using -Wconversion. 13345 CheckImplicitConversion(S, E, IntT, E->getBeginLoc()); 13346 return false; 13347 } 13348 13349 // Helper function for Sema::DiagnoseAlwaysNonNullPointer. 13350 // Returns true when emitting a warning about taking the address of a reference. 13351 static bool CheckForReference(Sema &SemaRef, const Expr *E, 13352 const PartialDiagnostic &PD) { 13353 E = E->IgnoreParenImpCasts(); 13354 13355 const FunctionDecl *FD = nullptr; 13356 13357 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 13358 if (!DRE->getDecl()->getType()->isReferenceType()) 13359 return false; 13360 } else if (const MemberExpr *M = dyn_cast<MemberExpr>(E)) { 13361 if (!M->getMemberDecl()->getType()->isReferenceType()) 13362 return false; 13363 } else if (const CallExpr *Call = dyn_cast<CallExpr>(E)) { 13364 if (!Call->getCallReturnType(SemaRef.Context)->isReferenceType()) 13365 return false; 13366 FD = Call->getDirectCallee(); 13367 } else { 13368 return false; 13369 } 13370 13371 SemaRef.Diag(E->getExprLoc(), PD); 13372 13373 // If possible, point to location of function. 13374 if (FD) { 13375 SemaRef.Diag(FD->getLocation(), diag::note_reference_is_return_value) << FD; 13376 } 13377 13378 return true; 13379 } 13380 13381 // Returns true if the SourceLocation is expanded from any macro body. 13382 // Returns false if the SourceLocation is invalid, is from not in a macro 13383 // expansion, or is from expanded from a top-level macro argument. 13384 static bool IsInAnyMacroBody(const SourceManager &SM, SourceLocation Loc) { 13385 if (Loc.isInvalid()) 13386 return false; 13387 13388 while (Loc.isMacroID()) { 13389 if (SM.isMacroBodyExpansion(Loc)) 13390 return true; 13391 Loc = SM.getImmediateMacroCallerLoc(Loc); 13392 } 13393 13394 return false; 13395 } 13396 13397 /// Diagnose pointers that are always non-null. 13398 /// \param E the expression containing the pointer 13399 /// \param NullKind NPCK_NotNull if E is a cast to bool, otherwise, E is 13400 /// compared to a null pointer 13401 /// \param IsEqual True when the comparison is equal to a null pointer 13402 /// \param Range Extra SourceRange to highlight in the diagnostic 13403 void Sema::DiagnoseAlwaysNonNullPointer(Expr *E, 13404 Expr::NullPointerConstantKind NullKind, 13405 bool IsEqual, SourceRange Range) { 13406 if (!E) 13407 return; 13408 13409 // Don't warn inside macros. 13410 if (E->getExprLoc().isMacroID()) { 13411 const SourceManager &SM = getSourceManager(); 13412 if (IsInAnyMacroBody(SM, E->getExprLoc()) || 13413 IsInAnyMacroBody(SM, Range.getBegin())) 13414 return; 13415 } 13416 E = E->IgnoreImpCasts(); 13417 13418 const bool IsCompare = NullKind != Expr::NPCK_NotNull; 13419 13420 if (isa<CXXThisExpr>(E)) { 13421 unsigned DiagID = IsCompare ? diag::warn_this_null_compare 13422 : diag::warn_this_bool_conversion; 13423 Diag(E->getExprLoc(), DiagID) << E->getSourceRange() << Range << IsEqual; 13424 return; 13425 } 13426 13427 bool IsAddressOf = false; 13428 13429 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) { 13430 if (UO->getOpcode() != UO_AddrOf) 13431 return; 13432 IsAddressOf = true; 13433 E = UO->getSubExpr(); 13434 } 13435 13436 if (IsAddressOf) { 13437 unsigned DiagID = IsCompare 13438 ? diag::warn_address_of_reference_null_compare 13439 : diag::warn_address_of_reference_bool_conversion; 13440 PartialDiagnostic PD = PDiag(DiagID) << E->getSourceRange() << Range 13441 << IsEqual; 13442 if (CheckForReference(*this, E, PD)) { 13443 return; 13444 } 13445 } 13446 13447 auto ComplainAboutNonnullParamOrCall = [&](const Attr *NonnullAttr) { 13448 bool IsParam = isa<NonNullAttr>(NonnullAttr); 13449 std::string Str; 13450 llvm::raw_string_ostream S(Str); 13451 E->printPretty(S, nullptr, getPrintingPolicy()); 13452 unsigned DiagID = IsCompare ? diag::warn_nonnull_expr_compare 13453 : diag::warn_cast_nonnull_to_bool; 13454 Diag(E->getExprLoc(), DiagID) << IsParam << S.str() 13455 << E->getSourceRange() << Range << IsEqual; 13456 Diag(NonnullAttr->getLocation(), diag::note_declared_nonnull) << IsParam; 13457 }; 13458 13459 // If we have a CallExpr that is tagged with returns_nonnull, we can complain. 13460 if (auto *Call = dyn_cast<CallExpr>(E->IgnoreParenImpCasts())) { 13461 if (auto *Callee = Call->getDirectCallee()) { 13462 if (const Attr *A = Callee->getAttr<ReturnsNonNullAttr>()) { 13463 ComplainAboutNonnullParamOrCall(A); 13464 return; 13465 } 13466 } 13467 } 13468 13469 // Expect to find a single Decl. Skip anything more complicated. 13470 ValueDecl *D = nullptr; 13471 if (DeclRefExpr *R = dyn_cast<DeclRefExpr>(E)) { 13472 D = R->getDecl(); 13473 } else if (MemberExpr *M = dyn_cast<MemberExpr>(E)) { 13474 D = M->getMemberDecl(); 13475 } 13476 13477 // Weak Decls can be null. 13478 if (!D || D->isWeak()) 13479 return; 13480 13481 // Check for parameter decl with nonnull attribute 13482 if (const auto* PV = dyn_cast<ParmVarDecl>(D)) { 13483 if (getCurFunction() && 13484 !getCurFunction()->ModifiedNonNullParams.count(PV)) { 13485 if (const Attr *A = PV->getAttr<NonNullAttr>()) { 13486 ComplainAboutNonnullParamOrCall(A); 13487 return; 13488 } 13489 13490 if (const auto *FD = dyn_cast<FunctionDecl>(PV->getDeclContext())) { 13491 // Skip function template not specialized yet. 13492 if (FD->getTemplatedKind() == FunctionDecl::TK_FunctionTemplate) 13493 return; 13494 auto ParamIter = llvm::find(FD->parameters(), PV); 13495 assert(ParamIter != FD->param_end()); 13496 unsigned ParamNo = std::distance(FD->param_begin(), ParamIter); 13497 13498 for (const auto *NonNull : FD->specific_attrs<NonNullAttr>()) { 13499 if (!NonNull->args_size()) { 13500 ComplainAboutNonnullParamOrCall(NonNull); 13501 return; 13502 } 13503 13504 for (const ParamIdx &ArgNo : NonNull->args()) { 13505 if (ArgNo.getASTIndex() == ParamNo) { 13506 ComplainAboutNonnullParamOrCall(NonNull); 13507 return; 13508 } 13509 } 13510 } 13511 } 13512 } 13513 } 13514 13515 QualType T = D->getType(); 13516 const bool IsArray = T->isArrayType(); 13517 const bool IsFunction = T->isFunctionType(); 13518 13519 // Address of function is used to silence the function warning. 13520 if (IsAddressOf && IsFunction) { 13521 return; 13522 } 13523 13524 // Found nothing. 13525 if (!IsAddressOf && !IsFunction && !IsArray) 13526 return; 13527 13528 // Pretty print the expression for the diagnostic. 13529 std::string Str; 13530 llvm::raw_string_ostream S(Str); 13531 E->printPretty(S, nullptr, getPrintingPolicy()); 13532 13533 unsigned DiagID = IsCompare ? diag::warn_null_pointer_compare 13534 : diag::warn_impcast_pointer_to_bool; 13535 enum { 13536 AddressOf, 13537 FunctionPointer, 13538 ArrayPointer 13539 } DiagType; 13540 if (IsAddressOf) 13541 DiagType = AddressOf; 13542 else if (IsFunction) 13543 DiagType = FunctionPointer; 13544 else if (IsArray) 13545 DiagType = ArrayPointer; 13546 else 13547 llvm_unreachable("Could not determine diagnostic."); 13548 Diag(E->getExprLoc(), DiagID) << DiagType << S.str() << E->getSourceRange() 13549 << Range << IsEqual; 13550 13551 if (!IsFunction) 13552 return; 13553 13554 // Suggest '&' to silence the function warning. 13555 Diag(E->getExprLoc(), diag::note_function_warning_silence) 13556 << FixItHint::CreateInsertion(E->getBeginLoc(), "&"); 13557 13558 // Check to see if '()' fixit should be emitted. 13559 QualType ReturnType; 13560 UnresolvedSet<4> NonTemplateOverloads; 13561 tryExprAsCall(*E, ReturnType, NonTemplateOverloads); 13562 if (ReturnType.isNull()) 13563 return; 13564 13565 if (IsCompare) { 13566 // There are two cases here. If there is null constant, the only suggest 13567 // for a pointer return type. If the null is 0, then suggest if the return 13568 // type is a pointer or an integer type. 13569 if (!ReturnType->isPointerType()) { 13570 if (NullKind == Expr::NPCK_ZeroExpression || 13571 NullKind == Expr::NPCK_ZeroLiteral) { 13572 if (!ReturnType->isIntegerType()) 13573 return; 13574 } else { 13575 return; 13576 } 13577 } 13578 } else { // !IsCompare 13579 // For function to bool, only suggest if the function pointer has bool 13580 // return type. 13581 if (!ReturnType->isSpecificBuiltinType(BuiltinType::Bool)) 13582 return; 13583 } 13584 Diag(E->getExprLoc(), diag::note_function_to_function_call) 13585 << FixItHint::CreateInsertion(getLocForEndOfToken(E->getEndLoc()), "()"); 13586 } 13587 13588 /// Diagnoses "dangerous" implicit conversions within the given 13589 /// expression (which is a full expression). Implements -Wconversion 13590 /// and -Wsign-compare. 13591 /// 13592 /// \param CC the "context" location of the implicit conversion, i.e. 13593 /// the most location of the syntactic entity requiring the implicit 13594 /// conversion 13595 void Sema::CheckImplicitConversions(Expr *E, SourceLocation CC) { 13596 // Don't diagnose in unevaluated contexts. 13597 if (isUnevaluatedContext()) 13598 return; 13599 13600 // Don't diagnose for value- or type-dependent expressions. 13601 if (E->isTypeDependent() || E->isValueDependent()) 13602 return; 13603 13604 // Check for array bounds violations in cases where the check isn't triggered 13605 // elsewhere for other Expr types (like BinaryOperators), e.g. when an 13606 // ArraySubscriptExpr is on the RHS of a variable initialization. 13607 CheckArrayAccess(E); 13608 13609 // This is not the right CC for (e.g.) a variable initialization. 13610 AnalyzeImplicitConversions(*this, E, CC); 13611 } 13612 13613 /// CheckBoolLikeConversion - Check conversion of given expression to boolean. 13614 /// Input argument E is a logical expression. 13615 void Sema::CheckBoolLikeConversion(Expr *E, SourceLocation CC) { 13616 ::CheckBoolLikeConversion(*this, E, CC); 13617 } 13618 13619 /// Diagnose when expression is an integer constant expression and its evaluation 13620 /// results in integer overflow 13621 void Sema::CheckForIntOverflow (Expr *E) { 13622 // Use a work list to deal with nested struct initializers. 13623 SmallVector<Expr *, 2> Exprs(1, E); 13624 13625 do { 13626 Expr *OriginalE = Exprs.pop_back_val(); 13627 Expr *E = OriginalE->IgnoreParenCasts(); 13628 13629 if (isa<BinaryOperator>(E)) { 13630 E->EvaluateForOverflow(Context); 13631 continue; 13632 } 13633 13634 if (auto InitList = dyn_cast<InitListExpr>(OriginalE)) 13635 Exprs.append(InitList->inits().begin(), InitList->inits().end()); 13636 else if (isa<ObjCBoxedExpr>(OriginalE)) 13637 E->EvaluateForOverflow(Context); 13638 else if (auto Call = dyn_cast<CallExpr>(E)) 13639 Exprs.append(Call->arg_begin(), Call->arg_end()); 13640 else if (auto Message = dyn_cast<ObjCMessageExpr>(E)) 13641 Exprs.append(Message->arg_begin(), Message->arg_end()); 13642 } while (!Exprs.empty()); 13643 } 13644 13645 namespace { 13646 13647 /// Visitor for expressions which looks for unsequenced operations on the 13648 /// same object. 13649 class SequenceChecker : public ConstEvaluatedExprVisitor<SequenceChecker> { 13650 using Base = ConstEvaluatedExprVisitor<SequenceChecker>; 13651 13652 /// A tree of sequenced regions within an expression. Two regions are 13653 /// unsequenced if one is an ancestor or a descendent of the other. When we 13654 /// finish processing an expression with sequencing, such as a comma 13655 /// expression, we fold its tree nodes into its parent, since they are 13656 /// unsequenced with respect to nodes we will visit later. 13657 class SequenceTree { 13658 struct Value { 13659 explicit Value(unsigned Parent) : Parent(Parent), Merged(false) {} 13660 unsigned Parent : 31; 13661 unsigned Merged : 1; 13662 }; 13663 SmallVector<Value, 8> Values; 13664 13665 public: 13666 /// A region within an expression which may be sequenced with respect 13667 /// to some other region. 13668 class Seq { 13669 friend class SequenceTree; 13670 13671 unsigned Index; 13672 13673 explicit Seq(unsigned N) : Index(N) {} 13674 13675 public: 13676 Seq() : Index(0) {} 13677 }; 13678 13679 SequenceTree() { Values.push_back(Value(0)); } 13680 Seq root() const { return Seq(0); } 13681 13682 /// Create a new sequence of operations, which is an unsequenced 13683 /// subset of \p Parent. This sequence of operations is sequenced with 13684 /// respect to other children of \p Parent. 13685 Seq allocate(Seq Parent) { 13686 Values.push_back(Value(Parent.Index)); 13687 return Seq(Values.size() - 1); 13688 } 13689 13690 /// Merge a sequence of operations into its parent. 13691 void merge(Seq S) { 13692 Values[S.Index].Merged = true; 13693 } 13694 13695 /// Determine whether two operations are unsequenced. This operation 13696 /// is asymmetric: \p Cur should be the more recent sequence, and \p Old 13697 /// should have been merged into its parent as appropriate. 13698 bool isUnsequenced(Seq Cur, Seq Old) { 13699 unsigned C = representative(Cur.Index); 13700 unsigned Target = representative(Old.Index); 13701 while (C >= Target) { 13702 if (C == Target) 13703 return true; 13704 C = Values[C].Parent; 13705 } 13706 return false; 13707 } 13708 13709 private: 13710 /// Pick a representative for a sequence. 13711 unsigned representative(unsigned K) { 13712 if (Values[K].Merged) 13713 // Perform path compression as we go. 13714 return Values[K].Parent = representative(Values[K].Parent); 13715 return K; 13716 } 13717 }; 13718 13719 /// An object for which we can track unsequenced uses. 13720 using Object = const NamedDecl *; 13721 13722 /// Different flavors of object usage which we track. We only track the 13723 /// least-sequenced usage of each kind. 13724 enum UsageKind { 13725 /// A read of an object. Multiple unsequenced reads are OK. 13726 UK_Use, 13727 13728 /// A modification of an object which is sequenced before the value 13729 /// computation of the expression, such as ++n in C++. 13730 UK_ModAsValue, 13731 13732 /// A modification of an object which is not sequenced before the value 13733 /// computation of the expression, such as n++. 13734 UK_ModAsSideEffect, 13735 13736 UK_Count = UK_ModAsSideEffect + 1 13737 }; 13738 13739 /// Bundle together a sequencing region and the expression corresponding 13740 /// to a specific usage. One Usage is stored for each usage kind in UsageInfo. 13741 struct Usage { 13742 const Expr *UsageExpr; 13743 SequenceTree::Seq Seq; 13744 13745 Usage() : UsageExpr(nullptr), Seq() {} 13746 }; 13747 13748 struct UsageInfo { 13749 Usage Uses[UK_Count]; 13750 13751 /// Have we issued a diagnostic for this object already? 13752 bool Diagnosed; 13753 13754 UsageInfo() : Uses(), Diagnosed(false) {} 13755 }; 13756 using UsageInfoMap = llvm::SmallDenseMap<Object, UsageInfo, 16>; 13757 13758 Sema &SemaRef; 13759 13760 /// Sequenced regions within the expression. 13761 SequenceTree Tree; 13762 13763 /// Declaration modifications and references which we have seen. 13764 UsageInfoMap UsageMap; 13765 13766 /// The region we are currently within. 13767 SequenceTree::Seq Region; 13768 13769 /// Filled in with declarations which were modified as a side-effect 13770 /// (that is, post-increment operations). 13771 SmallVectorImpl<std::pair<Object, Usage>> *ModAsSideEffect = nullptr; 13772 13773 /// Expressions to check later. We defer checking these to reduce 13774 /// stack usage. 13775 SmallVectorImpl<const Expr *> &WorkList; 13776 13777 /// RAII object wrapping the visitation of a sequenced subexpression of an 13778 /// expression. At the end of this process, the side-effects of the evaluation 13779 /// become sequenced with respect to the value computation of the result, so 13780 /// we downgrade any UK_ModAsSideEffect within the evaluation to 13781 /// UK_ModAsValue. 13782 struct SequencedSubexpression { 13783 SequencedSubexpression(SequenceChecker &Self) 13784 : Self(Self), OldModAsSideEffect(Self.ModAsSideEffect) { 13785 Self.ModAsSideEffect = &ModAsSideEffect; 13786 } 13787 13788 ~SequencedSubexpression() { 13789 for (const std::pair<Object, Usage> &M : llvm::reverse(ModAsSideEffect)) { 13790 // Add a new usage with usage kind UK_ModAsValue, and then restore 13791 // the previous usage with UK_ModAsSideEffect (thus clearing it if 13792 // the previous one was empty). 13793 UsageInfo &UI = Self.UsageMap[M.first]; 13794 auto &SideEffectUsage = UI.Uses[UK_ModAsSideEffect]; 13795 Self.addUsage(M.first, UI, SideEffectUsage.UsageExpr, UK_ModAsValue); 13796 SideEffectUsage = M.second; 13797 } 13798 Self.ModAsSideEffect = OldModAsSideEffect; 13799 } 13800 13801 SequenceChecker &Self; 13802 SmallVector<std::pair<Object, Usage>, 4> ModAsSideEffect; 13803 SmallVectorImpl<std::pair<Object, Usage>> *OldModAsSideEffect; 13804 }; 13805 13806 /// RAII object wrapping the visitation of a subexpression which we might 13807 /// choose to evaluate as a constant. If any subexpression is evaluated and 13808 /// found to be non-constant, this allows us to suppress the evaluation of 13809 /// the outer expression. 13810 class EvaluationTracker { 13811 public: 13812 EvaluationTracker(SequenceChecker &Self) 13813 : Self(Self), Prev(Self.EvalTracker) { 13814 Self.EvalTracker = this; 13815 } 13816 13817 ~EvaluationTracker() { 13818 Self.EvalTracker = Prev; 13819 if (Prev) 13820 Prev->EvalOK &= EvalOK; 13821 } 13822 13823 bool evaluate(const Expr *E, bool &Result) { 13824 if (!EvalOK || E->isValueDependent()) 13825 return false; 13826 EvalOK = E->EvaluateAsBooleanCondition( 13827 Result, Self.SemaRef.Context, Self.SemaRef.isConstantEvaluated()); 13828 return EvalOK; 13829 } 13830 13831 private: 13832 SequenceChecker &Self; 13833 EvaluationTracker *Prev; 13834 bool EvalOK = true; 13835 } *EvalTracker = nullptr; 13836 13837 /// Find the object which is produced by the specified expression, 13838 /// if any. 13839 Object getObject(const Expr *E, bool Mod) const { 13840 E = E->IgnoreParenCasts(); 13841 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) { 13842 if (Mod && (UO->getOpcode() == UO_PreInc || UO->getOpcode() == UO_PreDec)) 13843 return getObject(UO->getSubExpr(), Mod); 13844 } else if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 13845 if (BO->getOpcode() == BO_Comma) 13846 return getObject(BO->getRHS(), Mod); 13847 if (Mod && BO->isAssignmentOp()) 13848 return getObject(BO->getLHS(), Mod); 13849 } else if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) { 13850 // FIXME: Check for more interesting cases, like "x.n = ++x.n". 13851 if (isa<CXXThisExpr>(ME->getBase()->IgnoreParenCasts())) 13852 return ME->getMemberDecl(); 13853 } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) 13854 // FIXME: If this is a reference, map through to its value. 13855 return DRE->getDecl(); 13856 return nullptr; 13857 } 13858 13859 /// Note that an object \p O was modified or used by an expression 13860 /// \p UsageExpr with usage kind \p UK. \p UI is the \p UsageInfo for 13861 /// the object \p O as obtained via the \p UsageMap. 13862 void addUsage(Object O, UsageInfo &UI, const Expr *UsageExpr, UsageKind UK) { 13863 // Get the old usage for the given object and usage kind. 13864 Usage &U = UI.Uses[UK]; 13865 if (!U.UsageExpr || !Tree.isUnsequenced(Region, U.Seq)) { 13866 // If we have a modification as side effect and are in a sequenced 13867 // subexpression, save the old Usage so that we can restore it later 13868 // in SequencedSubexpression::~SequencedSubexpression. 13869 if (UK == UK_ModAsSideEffect && ModAsSideEffect) 13870 ModAsSideEffect->push_back(std::make_pair(O, U)); 13871 // Then record the new usage with the current sequencing region. 13872 U.UsageExpr = UsageExpr; 13873 U.Seq = Region; 13874 } 13875 } 13876 13877 /// Check whether a modification or use of an object \p O in an expression 13878 /// \p UsageExpr conflicts with a prior usage of kind \p OtherKind. \p UI is 13879 /// the \p UsageInfo for the object \p O as obtained via the \p UsageMap. 13880 /// \p IsModMod is true when we are checking for a mod-mod unsequenced 13881 /// usage and false we are checking for a mod-use unsequenced usage. 13882 void checkUsage(Object O, UsageInfo &UI, const Expr *UsageExpr, 13883 UsageKind OtherKind, bool IsModMod) { 13884 if (UI.Diagnosed) 13885 return; 13886 13887 const Usage &U = UI.Uses[OtherKind]; 13888 if (!U.UsageExpr || !Tree.isUnsequenced(Region, U.Seq)) 13889 return; 13890 13891 const Expr *Mod = U.UsageExpr; 13892 const Expr *ModOrUse = UsageExpr; 13893 if (OtherKind == UK_Use) 13894 std::swap(Mod, ModOrUse); 13895 13896 SemaRef.DiagRuntimeBehavior( 13897 Mod->getExprLoc(), {Mod, ModOrUse}, 13898 SemaRef.PDiag(IsModMod ? diag::warn_unsequenced_mod_mod 13899 : diag::warn_unsequenced_mod_use) 13900 << O << SourceRange(ModOrUse->getExprLoc())); 13901 UI.Diagnosed = true; 13902 } 13903 13904 // A note on note{Pre, Post}{Use, Mod}: 13905 // 13906 // (It helps to follow the algorithm with an expression such as 13907 // "((++k)++, k) = k" or "k = (k++, k++)". Both contain unsequenced 13908 // operations before C++17 and both are well-defined in C++17). 13909 // 13910 // When visiting a node which uses/modify an object we first call notePreUse 13911 // or notePreMod before visiting its sub-expression(s). At this point the 13912 // children of the current node have not yet been visited and so the eventual 13913 // uses/modifications resulting from the children of the current node have not 13914 // been recorded yet. 13915 // 13916 // We then visit the children of the current node. After that notePostUse or 13917 // notePostMod is called. These will 1) detect an unsequenced modification 13918 // as side effect (as in "k++ + k") and 2) add a new usage with the 13919 // appropriate usage kind. 13920 // 13921 // We also have to be careful that some operation sequences modification as 13922 // side effect as well (for example: || or ,). To account for this we wrap 13923 // the visitation of such a sub-expression (for example: the LHS of || or ,) 13924 // with SequencedSubexpression. SequencedSubexpression is an RAII object 13925 // which record usages which are modifications as side effect, and then 13926 // downgrade them (or more accurately restore the previous usage which was a 13927 // modification as side effect) when exiting the scope of the sequenced 13928 // subexpression. 13929 13930 void notePreUse(Object O, const Expr *UseExpr) { 13931 UsageInfo &UI = UsageMap[O]; 13932 // Uses conflict with other modifications. 13933 checkUsage(O, UI, UseExpr, /*OtherKind=*/UK_ModAsValue, /*IsModMod=*/false); 13934 } 13935 13936 void notePostUse(Object O, const Expr *UseExpr) { 13937 UsageInfo &UI = UsageMap[O]; 13938 checkUsage(O, UI, UseExpr, /*OtherKind=*/UK_ModAsSideEffect, 13939 /*IsModMod=*/false); 13940 addUsage(O, UI, UseExpr, /*UsageKind=*/UK_Use); 13941 } 13942 13943 void notePreMod(Object O, const Expr *ModExpr) { 13944 UsageInfo &UI = UsageMap[O]; 13945 // Modifications conflict with other modifications and with uses. 13946 checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_ModAsValue, /*IsModMod=*/true); 13947 checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_Use, /*IsModMod=*/false); 13948 } 13949 13950 void notePostMod(Object O, const Expr *ModExpr, UsageKind UK) { 13951 UsageInfo &UI = UsageMap[O]; 13952 checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_ModAsSideEffect, 13953 /*IsModMod=*/true); 13954 addUsage(O, UI, ModExpr, /*UsageKind=*/UK); 13955 } 13956 13957 public: 13958 SequenceChecker(Sema &S, const Expr *E, 13959 SmallVectorImpl<const Expr *> &WorkList) 13960 : Base(S.Context), SemaRef(S), Region(Tree.root()), WorkList(WorkList) { 13961 Visit(E); 13962 // Silence a -Wunused-private-field since WorkList is now unused. 13963 // TODO: Evaluate if it can be used, and if not remove it. 13964 (void)this->WorkList; 13965 } 13966 13967 void VisitStmt(const Stmt *S) { 13968 // Skip all statements which aren't expressions for now. 13969 } 13970 13971 void VisitExpr(const Expr *E) { 13972 // By default, just recurse to evaluated subexpressions. 13973 Base::VisitStmt(E); 13974 } 13975 13976 void VisitCastExpr(const CastExpr *E) { 13977 Object O = Object(); 13978 if (E->getCastKind() == CK_LValueToRValue) 13979 O = getObject(E->getSubExpr(), false); 13980 13981 if (O) 13982 notePreUse(O, E); 13983 VisitExpr(E); 13984 if (O) 13985 notePostUse(O, E); 13986 } 13987 13988 void VisitSequencedExpressions(const Expr *SequencedBefore, 13989 const Expr *SequencedAfter) { 13990 SequenceTree::Seq BeforeRegion = Tree.allocate(Region); 13991 SequenceTree::Seq AfterRegion = Tree.allocate(Region); 13992 SequenceTree::Seq OldRegion = Region; 13993 13994 { 13995 SequencedSubexpression SeqBefore(*this); 13996 Region = BeforeRegion; 13997 Visit(SequencedBefore); 13998 } 13999 14000 Region = AfterRegion; 14001 Visit(SequencedAfter); 14002 14003 Region = OldRegion; 14004 14005 Tree.merge(BeforeRegion); 14006 Tree.merge(AfterRegion); 14007 } 14008 14009 void VisitArraySubscriptExpr(const ArraySubscriptExpr *ASE) { 14010 // C++17 [expr.sub]p1: 14011 // The expression E1[E2] is identical (by definition) to *((E1)+(E2)). The 14012 // expression E1 is sequenced before the expression E2. 14013 if (SemaRef.getLangOpts().CPlusPlus17) 14014 VisitSequencedExpressions(ASE->getLHS(), ASE->getRHS()); 14015 else { 14016 Visit(ASE->getLHS()); 14017 Visit(ASE->getRHS()); 14018 } 14019 } 14020 14021 void VisitBinPtrMemD(const BinaryOperator *BO) { VisitBinPtrMem(BO); } 14022 void VisitBinPtrMemI(const BinaryOperator *BO) { VisitBinPtrMem(BO); } 14023 void VisitBinPtrMem(const BinaryOperator *BO) { 14024 // C++17 [expr.mptr.oper]p4: 14025 // Abbreviating pm-expression.*cast-expression as E1.*E2, [...] 14026 // the expression E1 is sequenced before the expression E2. 14027 if (SemaRef.getLangOpts().CPlusPlus17) 14028 VisitSequencedExpressions(BO->getLHS(), BO->getRHS()); 14029 else { 14030 Visit(BO->getLHS()); 14031 Visit(BO->getRHS()); 14032 } 14033 } 14034 14035 void VisitBinShl(const BinaryOperator *BO) { VisitBinShlShr(BO); } 14036 void VisitBinShr(const BinaryOperator *BO) { VisitBinShlShr(BO); } 14037 void VisitBinShlShr(const BinaryOperator *BO) { 14038 // C++17 [expr.shift]p4: 14039 // The expression E1 is sequenced before the expression E2. 14040 if (SemaRef.getLangOpts().CPlusPlus17) 14041 VisitSequencedExpressions(BO->getLHS(), BO->getRHS()); 14042 else { 14043 Visit(BO->getLHS()); 14044 Visit(BO->getRHS()); 14045 } 14046 } 14047 14048 void VisitBinComma(const BinaryOperator *BO) { 14049 // C++11 [expr.comma]p1: 14050 // Every value computation and side effect associated with the left 14051 // expression is sequenced before every value computation and side 14052 // effect associated with the right expression. 14053 VisitSequencedExpressions(BO->getLHS(), BO->getRHS()); 14054 } 14055 14056 void VisitBinAssign(const BinaryOperator *BO) { 14057 SequenceTree::Seq RHSRegion; 14058 SequenceTree::Seq LHSRegion; 14059 if (SemaRef.getLangOpts().CPlusPlus17) { 14060 RHSRegion = Tree.allocate(Region); 14061 LHSRegion = Tree.allocate(Region); 14062 } else { 14063 RHSRegion = Region; 14064 LHSRegion = Region; 14065 } 14066 SequenceTree::Seq OldRegion = Region; 14067 14068 // C++11 [expr.ass]p1: 14069 // [...] the assignment is sequenced after the value computation 14070 // of the right and left operands, [...] 14071 // 14072 // so check it before inspecting the operands and update the 14073 // map afterwards. 14074 Object O = getObject(BO->getLHS(), /*Mod=*/true); 14075 if (O) 14076 notePreMod(O, BO); 14077 14078 if (SemaRef.getLangOpts().CPlusPlus17) { 14079 // C++17 [expr.ass]p1: 14080 // [...] The right operand is sequenced before the left operand. [...] 14081 { 14082 SequencedSubexpression SeqBefore(*this); 14083 Region = RHSRegion; 14084 Visit(BO->getRHS()); 14085 } 14086 14087 Region = LHSRegion; 14088 Visit(BO->getLHS()); 14089 14090 if (O && isa<CompoundAssignOperator>(BO)) 14091 notePostUse(O, BO); 14092 14093 } else { 14094 // C++11 does not specify any sequencing between the LHS and RHS. 14095 Region = LHSRegion; 14096 Visit(BO->getLHS()); 14097 14098 if (O && isa<CompoundAssignOperator>(BO)) 14099 notePostUse(O, BO); 14100 14101 Region = RHSRegion; 14102 Visit(BO->getRHS()); 14103 } 14104 14105 // C++11 [expr.ass]p1: 14106 // the assignment is sequenced [...] before the value computation of the 14107 // assignment expression. 14108 // C11 6.5.16/3 has no such rule. 14109 Region = OldRegion; 14110 if (O) 14111 notePostMod(O, BO, 14112 SemaRef.getLangOpts().CPlusPlus ? UK_ModAsValue 14113 : UK_ModAsSideEffect); 14114 if (SemaRef.getLangOpts().CPlusPlus17) { 14115 Tree.merge(RHSRegion); 14116 Tree.merge(LHSRegion); 14117 } 14118 } 14119 14120 void VisitCompoundAssignOperator(const CompoundAssignOperator *CAO) { 14121 VisitBinAssign(CAO); 14122 } 14123 14124 void VisitUnaryPreInc(const UnaryOperator *UO) { VisitUnaryPreIncDec(UO); } 14125 void VisitUnaryPreDec(const UnaryOperator *UO) { VisitUnaryPreIncDec(UO); } 14126 void VisitUnaryPreIncDec(const UnaryOperator *UO) { 14127 Object O = getObject(UO->getSubExpr(), true); 14128 if (!O) 14129 return VisitExpr(UO); 14130 14131 notePreMod(O, UO); 14132 Visit(UO->getSubExpr()); 14133 // C++11 [expr.pre.incr]p1: 14134 // the expression ++x is equivalent to x+=1 14135 notePostMod(O, UO, 14136 SemaRef.getLangOpts().CPlusPlus ? UK_ModAsValue 14137 : UK_ModAsSideEffect); 14138 } 14139 14140 void VisitUnaryPostInc(const UnaryOperator *UO) { VisitUnaryPostIncDec(UO); } 14141 void VisitUnaryPostDec(const UnaryOperator *UO) { VisitUnaryPostIncDec(UO); } 14142 void VisitUnaryPostIncDec(const UnaryOperator *UO) { 14143 Object O = getObject(UO->getSubExpr(), true); 14144 if (!O) 14145 return VisitExpr(UO); 14146 14147 notePreMod(O, UO); 14148 Visit(UO->getSubExpr()); 14149 notePostMod(O, UO, UK_ModAsSideEffect); 14150 } 14151 14152 void VisitBinLOr(const BinaryOperator *BO) { 14153 // C++11 [expr.log.or]p2: 14154 // If the second expression is evaluated, every value computation and 14155 // side effect associated with the first expression is sequenced before 14156 // every value computation and side effect associated with the 14157 // second expression. 14158 SequenceTree::Seq LHSRegion = Tree.allocate(Region); 14159 SequenceTree::Seq RHSRegion = Tree.allocate(Region); 14160 SequenceTree::Seq OldRegion = Region; 14161 14162 EvaluationTracker Eval(*this); 14163 { 14164 SequencedSubexpression Sequenced(*this); 14165 Region = LHSRegion; 14166 Visit(BO->getLHS()); 14167 } 14168 14169 // C++11 [expr.log.or]p1: 14170 // [...] the second operand is not evaluated if the first operand 14171 // evaluates to true. 14172 bool EvalResult = false; 14173 bool EvalOK = Eval.evaluate(BO->getLHS(), EvalResult); 14174 bool ShouldVisitRHS = !EvalOK || (EvalOK && !EvalResult); 14175 if (ShouldVisitRHS) { 14176 Region = RHSRegion; 14177 Visit(BO->getRHS()); 14178 } 14179 14180 Region = OldRegion; 14181 Tree.merge(LHSRegion); 14182 Tree.merge(RHSRegion); 14183 } 14184 14185 void VisitBinLAnd(const BinaryOperator *BO) { 14186 // C++11 [expr.log.and]p2: 14187 // If the second expression is evaluated, every value computation and 14188 // side effect associated with the first expression is sequenced before 14189 // every value computation and side effect associated with the 14190 // second expression. 14191 SequenceTree::Seq LHSRegion = Tree.allocate(Region); 14192 SequenceTree::Seq RHSRegion = Tree.allocate(Region); 14193 SequenceTree::Seq OldRegion = Region; 14194 14195 EvaluationTracker Eval(*this); 14196 { 14197 SequencedSubexpression Sequenced(*this); 14198 Region = LHSRegion; 14199 Visit(BO->getLHS()); 14200 } 14201 14202 // C++11 [expr.log.and]p1: 14203 // [...] the second operand is not evaluated if the first operand is false. 14204 bool EvalResult = false; 14205 bool EvalOK = Eval.evaluate(BO->getLHS(), EvalResult); 14206 bool ShouldVisitRHS = !EvalOK || (EvalOK && EvalResult); 14207 if (ShouldVisitRHS) { 14208 Region = RHSRegion; 14209 Visit(BO->getRHS()); 14210 } 14211 14212 Region = OldRegion; 14213 Tree.merge(LHSRegion); 14214 Tree.merge(RHSRegion); 14215 } 14216 14217 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO) { 14218 // C++11 [expr.cond]p1: 14219 // [...] Every value computation and side effect associated with the first 14220 // expression is sequenced before every value computation and side effect 14221 // associated with the second or third expression. 14222 SequenceTree::Seq ConditionRegion = Tree.allocate(Region); 14223 14224 // No sequencing is specified between the true and false expression. 14225 // However since exactly one of both is going to be evaluated we can 14226 // consider them to be sequenced. This is needed to avoid warning on 14227 // something like "x ? y+= 1 : y += 2;" in the case where we will visit 14228 // both the true and false expressions because we can't evaluate x. 14229 // This will still allow us to detect an expression like (pre C++17) 14230 // "(x ? y += 1 : y += 2) = y". 14231 // 14232 // We don't wrap the visitation of the true and false expression with 14233 // SequencedSubexpression because we don't want to downgrade modifications 14234 // as side effect in the true and false expressions after the visition 14235 // is done. (for example in the expression "(x ? y++ : y++) + y" we should 14236 // not warn between the two "y++", but we should warn between the "y++" 14237 // and the "y". 14238 SequenceTree::Seq TrueRegion = Tree.allocate(Region); 14239 SequenceTree::Seq FalseRegion = Tree.allocate(Region); 14240 SequenceTree::Seq OldRegion = Region; 14241 14242 EvaluationTracker Eval(*this); 14243 { 14244 SequencedSubexpression Sequenced(*this); 14245 Region = ConditionRegion; 14246 Visit(CO->getCond()); 14247 } 14248 14249 // C++11 [expr.cond]p1: 14250 // [...] The first expression is contextually converted to bool (Clause 4). 14251 // It is evaluated and if it is true, the result of the conditional 14252 // expression is the value of the second expression, otherwise that of the 14253 // third expression. Only one of the second and third expressions is 14254 // evaluated. [...] 14255 bool EvalResult = false; 14256 bool EvalOK = Eval.evaluate(CO->getCond(), EvalResult); 14257 bool ShouldVisitTrueExpr = !EvalOK || (EvalOK && EvalResult); 14258 bool ShouldVisitFalseExpr = !EvalOK || (EvalOK && !EvalResult); 14259 if (ShouldVisitTrueExpr) { 14260 Region = TrueRegion; 14261 Visit(CO->getTrueExpr()); 14262 } 14263 if (ShouldVisitFalseExpr) { 14264 Region = FalseRegion; 14265 Visit(CO->getFalseExpr()); 14266 } 14267 14268 Region = OldRegion; 14269 Tree.merge(ConditionRegion); 14270 Tree.merge(TrueRegion); 14271 Tree.merge(FalseRegion); 14272 } 14273 14274 void VisitCallExpr(const CallExpr *CE) { 14275 // FIXME: CXXNewExpr and CXXDeleteExpr implicitly call functions. 14276 14277 if (CE->isUnevaluatedBuiltinCall(Context)) 14278 return; 14279 14280 // C++11 [intro.execution]p15: 14281 // When calling a function [...], every value computation and side effect 14282 // associated with any argument expression, or with the postfix expression 14283 // designating the called function, is sequenced before execution of every 14284 // expression or statement in the body of the function [and thus before 14285 // the value computation of its result]. 14286 SequencedSubexpression Sequenced(*this); 14287 SemaRef.runWithSufficientStackSpace(CE->getExprLoc(), [&] { 14288 // C++17 [expr.call]p5 14289 // The postfix-expression is sequenced before each expression in the 14290 // expression-list and any default argument. [...] 14291 SequenceTree::Seq CalleeRegion; 14292 SequenceTree::Seq OtherRegion; 14293 if (SemaRef.getLangOpts().CPlusPlus17) { 14294 CalleeRegion = Tree.allocate(Region); 14295 OtherRegion = Tree.allocate(Region); 14296 } else { 14297 CalleeRegion = Region; 14298 OtherRegion = Region; 14299 } 14300 SequenceTree::Seq OldRegion = Region; 14301 14302 // Visit the callee expression first. 14303 Region = CalleeRegion; 14304 if (SemaRef.getLangOpts().CPlusPlus17) { 14305 SequencedSubexpression Sequenced(*this); 14306 Visit(CE->getCallee()); 14307 } else { 14308 Visit(CE->getCallee()); 14309 } 14310 14311 // Then visit the argument expressions. 14312 Region = OtherRegion; 14313 for (const Expr *Argument : CE->arguments()) 14314 Visit(Argument); 14315 14316 Region = OldRegion; 14317 if (SemaRef.getLangOpts().CPlusPlus17) { 14318 Tree.merge(CalleeRegion); 14319 Tree.merge(OtherRegion); 14320 } 14321 }); 14322 } 14323 14324 void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *CXXOCE) { 14325 // C++17 [over.match.oper]p2: 14326 // [...] the operator notation is first transformed to the equivalent 14327 // function-call notation as summarized in Table 12 (where @ denotes one 14328 // of the operators covered in the specified subclause). However, the 14329 // operands are sequenced in the order prescribed for the built-in 14330 // operator (Clause 8). 14331 // 14332 // From the above only overloaded binary operators and overloaded call 14333 // operators have sequencing rules in C++17 that we need to handle 14334 // separately. 14335 if (!SemaRef.getLangOpts().CPlusPlus17 || 14336 (CXXOCE->getNumArgs() != 2 && CXXOCE->getOperator() != OO_Call)) 14337 return VisitCallExpr(CXXOCE); 14338 14339 enum { 14340 NoSequencing, 14341 LHSBeforeRHS, 14342 RHSBeforeLHS, 14343 LHSBeforeRest 14344 } SequencingKind; 14345 switch (CXXOCE->getOperator()) { 14346 case OO_Equal: 14347 case OO_PlusEqual: 14348 case OO_MinusEqual: 14349 case OO_StarEqual: 14350 case OO_SlashEqual: 14351 case OO_PercentEqual: 14352 case OO_CaretEqual: 14353 case OO_AmpEqual: 14354 case OO_PipeEqual: 14355 case OO_LessLessEqual: 14356 case OO_GreaterGreaterEqual: 14357 SequencingKind = RHSBeforeLHS; 14358 break; 14359 14360 case OO_LessLess: 14361 case OO_GreaterGreater: 14362 case OO_AmpAmp: 14363 case OO_PipePipe: 14364 case OO_Comma: 14365 case OO_ArrowStar: 14366 case OO_Subscript: 14367 SequencingKind = LHSBeforeRHS; 14368 break; 14369 14370 case OO_Call: 14371 SequencingKind = LHSBeforeRest; 14372 break; 14373 14374 default: 14375 SequencingKind = NoSequencing; 14376 break; 14377 } 14378 14379 if (SequencingKind == NoSequencing) 14380 return VisitCallExpr(CXXOCE); 14381 14382 // This is a call, so all subexpressions are sequenced before the result. 14383 SequencedSubexpression Sequenced(*this); 14384 14385 SemaRef.runWithSufficientStackSpace(CXXOCE->getExprLoc(), [&] { 14386 assert(SemaRef.getLangOpts().CPlusPlus17 && 14387 "Should only get there with C++17 and above!"); 14388 assert((CXXOCE->getNumArgs() == 2 || CXXOCE->getOperator() == OO_Call) && 14389 "Should only get there with an overloaded binary operator" 14390 " or an overloaded call operator!"); 14391 14392 if (SequencingKind == LHSBeforeRest) { 14393 assert(CXXOCE->getOperator() == OO_Call && 14394 "We should only have an overloaded call operator here!"); 14395 14396 // This is very similar to VisitCallExpr, except that we only have the 14397 // C++17 case. The postfix-expression is the first argument of the 14398 // CXXOperatorCallExpr. The expressions in the expression-list, if any, 14399 // are in the following arguments. 14400 // 14401 // Note that we intentionally do not visit the callee expression since 14402 // it is just a decayed reference to a function. 14403 SequenceTree::Seq PostfixExprRegion = Tree.allocate(Region); 14404 SequenceTree::Seq ArgsRegion = Tree.allocate(Region); 14405 SequenceTree::Seq OldRegion = Region; 14406 14407 assert(CXXOCE->getNumArgs() >= 1 && 14408 "An overloaded call operator must have at least one argument" 14409 " for the postfix-expression!"); 14410 const Expr *PostfixExpr = CXXOCE->getArgs()[0]; 14411 llvm::ArrayRef<const Expr *> Args(CXXOCE->getArgs() + 1, 14412 CXXOCE->getNumArgs() - 1); 14413 14414 // Visit the postfix-expression first. 14415 { 14416 Region = PostfixExprRegion; 14417 SequencedSubexpression Sequenced(*this); 14418 Visit(PostfixExpr); 14419 } 14420 14421 // Then visit the argument expressions. 14422 Region = ArgsRegion; 14423 for (const Expr *Arg : Args) 14424 Visit(Arg); 14425 14426 Region = OldRegion; 14427 Tree.merge(PostfixExprRegion); 14428 Tree.merge(ArgsRegion); 14429 } else { 14430 assert(CXXOCE->getNumArgs() == 2 && 14431 "Should only have two arguments here!"); 14432 assert((SequencingKind == LHSBeforeRHS || 14433 SequencingKind == RHSBeforeLHS) && 14434 "Unexpected sequencing kind!"); 14435 14436 // We do not visit the callee expression since it is just a decayed 14437 // reference to a function. 14438 const Expr *E1 = CXXOCE->getArg(0); 14439 const Expr *E2 = CXXOCE->getArg(1); 14440 if (SequencingKind == RHSBeforeLHS) 14441 std::swap(E1, E2); 14442 14443 return VisitSequencedExpressions(E1, E2); 14444 } 14445 }); 14446 } 14447 14448 void VisitCXXConstructExpr(const CXXConstructExpr *CCE) { 14449 // This is a call, so all subexpressions are sequenced before the result. 14450 SequencedSubexpression Sequenced(*this); 14451 14452 if (!CCE->isListInitialization()) 14453 return VisitExpr(CCE); 14454 14455 // In C++11, list initializations are sequenced. 14456 SmallVector<SequenceTree::Seq, 32> Elts; 14457 SequenceTree::Seq Parent = Region; 14458 for (CXXConstructExpr::const_arg_iterator I = CCE->arg_begin(), 14459 E = CCE->arg_end(); 14460 I != E; ++I) { 14461 Region = Tree.allocate(Parent); 14462 Elts.push_back(Region); 14463 Visit(*I); 14464 } 14465 14466 // Forget that the initializers are sequenced. 14467 Region = Parent; 14468 for (unsigned I = 0; I < Elts.size(); ++I) 14469 Tree.merge(Elts[I]); 14470 } 14471 14472 void VisitInitListExpr(const InitListExpr *ILE) { 14473 if (!SemaRef.getLangOpts().CPlusPlus11) 14474 return VisitExpr(ILE); 14475 14476 // In C++11, list initializations are sequenced. 14477 SmallVector<SequenceTree::Seq, 32> Elts; 14478 SequenceTree::Seq Parent = Region; 14479 for (unsigned I = 0; I < ILE->getNumInits(); ++I) { 14480 const Expr *E = ILE->getInit(I); 14481 if (!E) 14482 continue; 14483 Region = Tree.allocate(Parent); 14484 Elts.push_back(Region); 14485 Visit(E); 14486 } 14487 14488 // Forget that the initializers are sequenced. 14489 Region = Parent; 14490 for (unsigned I = 0; I < Elts.size(); ++I) 14491 Tree.merge(Elts[I]); 14492 } 14493 }; 14494 14495 } // namespace 14496 14497 void Sema::CheckUnsequencedOperations(const Expr *E) { 14498 SmallVector<const Expr *, 8> WorkList; 14499 WorkList.push_back(E); 14500 while (!WorkList.empty()) { 14501 const Expr *Item = WorkList.pop_back_val(); 14502 SequenceChecker(*this, Item, WorkList); 14503 } 14504 } 14505 14506 void Sema::CheckCompletedExpr(Expr *E, SourceLocation CheckLoc, 14507 bool IsConstexpr) { 14508 llvm::SaveAndRestore<bool> ConstantContext( 14509 isConstantEvaluatedOverride, IsConstexpr || isa<ConstantExpr>(E)); 14510 CheckImplicitConversions(E, CheckLoc); 14511 if (!E->isInstantiationDependent()) 14512 CheckUnsequencedOperations(E); 14513 if (!IsConstexpr && !E->isValueDependent()) 14514 CheckForIntOverflow(E); 14515 DiagnoseMisalignedMembers(); 14516 } 14517 14518 void Sema::CheckBitFieldInitialization(SourceLocation InitLoc, 14519 FieldDecl *BitField, 14520 Expr *Init) { 14521 (void) AnalyzeBitFieldAssignment(*this, BitField, Init, InitLoc); 14522 } 14523 14524 static void diagnoseArrayStarInParamType(Sema &S, QualType PType, 14525 SourceLocation Loc) { 14526 if (!PType->isVariablyModifiedType()) 14527 return; 14528 if (const auto *PointerTy = dyn_cast<PointerType>(PType)) { 14529 diagnoseArrayStarInParamType(S, PointerTy->getPointeeType(), Loc); 14530 return; 14531 } 14532 if (const auto *ReferenceTy = dyn_cast<ReferenceType>(PType)) { 14533 diagnoseArrayStarInParamType(S, ReferenceTy->getPointeeType(), Loc); 14534 return; 14535 } 14536 if (const auto *ParenTy = dyn_cast<ParenType>(PType)) { 14537 diagnoseArrayStarInParamType(S, ParenTy->getInnerType(), Loc); 14538 return; 14539 } 14540 14541 const ArrayType *AT = S.Context.getAsArrayType(PType); 14542 if (!AT) 14543 return; 14544 14545 if (AT->getSizeModifier() != ArrayType::Star) { 14546 diagnoseArrayStarInParamType(S, AT->getElementType(), Loc); 14547 return; 14548 } 14549 14550 S.Diag(Loc, diag::err_array_star_in_function_definition); 14551 } 14552 14553 /// CheckParmsForFunctionDef - Check that the parameters of the given 14554 /// function are appropriate for the definition of a function. This 14555 /// takes care of any checks that cannot be performed on the 14556 /// declaration itself, e.g., that the types of each of the function 14557 /// parameters are complete. 14558 bool Sema::CheckParmsForFunctionDef(ArrayRef<ParmVarDecl *> Parameters, 14559 bool CheckParameterNames) { 14560 bool HasInvalidParm = false; 14561 for (ParmVarDecl *Param : Parameters) { 14562 // C99 6.7.5.3p4: the parameters in a parameter type list in a 14563 // function declarator that is part of a function definition of 14564 // that function shall not have incomplete type. 14565 // 14566 // This is also C++ [dcl.fct]p6. 14567 if (!Param->isInvalidDecl() && 14568 RequireCompleteType(Param->getLocation(), Param->getType(), 14569 diag::err_typecheck_decl_incomplete_type)) { 14570 Param->setInvalidDecl(); 14571 HasInvalidParm = true; 14572 } 14573 14574 // C99 6.9.1p5: If the declarator includes a parameter type list, the 14575 // declaration of each parameter shall include an identifier. 14576 if (CheckParameterNames && Param->getIdentifier() == nullptr && 14577 !Param->isImplicit() && !getLangOpts().CPlusPlus) { 14578 // Diagnose this as an extension in C17 and earlier. 14579 if (!getLangOpts().C2x) 14580 Diag(Param->getLocation(), diag::ext_parameter_name_omitted_c2x); 14581 } 14582 14583 // C99 6.7.5.3p12: 14584 // If the function declarator is not part of a definition of that 14585 // function, parameters may have incomplete type and may use the [*] 14586 // notation in their sequences of declarator specifiers to specify 14587 // variable length array types. 14588 QualType PType = Param->getOriginalType(); 14589 // FIXME: This diagnostic should point the '[*]' if source-location 14590 // information is added for it. 14591 diagnoseArrayStarInParamType(*this, PType, Param->getLocation()); 14592 14593 // If the parameter is a c++ class type and it has to be destructed in the 14594 // callee function, declare the destructor so that it can be called by the 14595 // callee function. Do not perform any direct access check on the dtor here. 14596 if (!Param->isInvalidDecl()) { 14597 if (CXXRecordDecl *ClassDecl = Param->getType()->getAsCXXRecordDecl()) { 14598 if (!ClassDecl->isInvalidDecl() && 14599 !ClassDecl->hasIrrelevantDestructor() && 14600 !ClassDecl->isDependentContext() && 14601 ClassDecl->isParamDestroyedInCallee()) { 14602 CXXDestructorDecl *Destructor = LookupDestructor(ClassDecl); 14603 MarkFunctionReferenced(Param->getLocation(), Destructor); 14604 DiagnoseUseOfDecl(Destructor, Param->getLocation()); 14605 } 14606 } 14607 } 14608 14609 // Parameters with the pass_object_size attribute only need to be marked 14610 // constant at function definitions. Because we lack information about 14611 // whether we're on a declaration or definition when we're instantiating the 14612 // attribute, we need to check for constness here. 14613 if (const auto *Attr = Param->getAttr<PassObjectSizeAttr>()) 14614 if (!Param->getType().isConstQualified()) 14615 Diag(Param->getLocation(), diag::err_attribute_pointers_only) 14616 << Attr->getSpelling() << 1; 14617 14618 // Check for parameter names shadowing fields from the class. 14619 if (LangOpts.CPlusPlus && !Param->isInvalidDecl()) { 14620 // The owning context for the parameter should be the function, but we 14621 // want to see if this function's declaration context is a record. 14622 DeclContext *DC = Param->getDeclContext(); 14623 if (DC && DC->isFunctionOrMethod()) { 14624 if (auto *RD = dyn_cast<CXXRecordDecl>(DC->getParent())) 14625 CheckShadowInheritedFields(Param->getLocation(), Param->getDeclName(), 14626 RD, /*DeclIsField*/ false); 14627 } 14628 } 14629 } 14630 14631 return HasInvalidParm; 14632 } 14633 14634 Optional<std::pair<CharUnits, CharUnits>> 14635 static getBaseAlignmentAndOffsetFromPtr(const Expr *E, ASTContext &Ctx); 14636 14637 /// Compute the alignment and offset of the base class object given the 14638 /// derived-to-base cast expression and the alignment and offset of the derived 14639 /// class object. 14640 static std::pair<CharUnits, CharUnits> 14641 getDerivedToBaseAlignmentAndOffset(const CastExpr *CE, QualType DerivedType, 14642 CharUnits BaseAlignment, CharUnits Offset, 14643 ASTContext &Ctx) { 14644 for (auto PathI = CE->path_begin(), PathE = CE->path_end(); PathI != PathE; 14645 ++PathI) { 14646 const CXXBaseSpecifier *Base = *PathI; 14647 const CXXRecordDecl *BaseDecl = Base->getType()->getAsCXXRecordDecl(); 14648 if (Base->isVirtual()) { 14649 // The complete object may have a lower alignment than the non-virtual 14650 // alignment of the base, in which case the base may be misaligned. Choose 14651 // the smaller of the non-virtual alignment and BaseAlignment, which is a 14652 // conservative lower bound of the complete object alignment. 14653 CharUnits NonVirtualAlignment = 14654 Ctx.getASTRecordLayout(BaseDecl).getNonVirtualAlignment(); 14655 BaseAlignment = std::min(BaseAlignment, NonVirtualAlignment); 14656 Offset = CharUnits::Zero(); 14657 } else { 14658 const ASTRecordLayout &RL = 14659 Ctx.getASTRecordLayout(DerivedType->getAsCXXRecordDecl()); 14660 Offset += RL.getBaseClassOffset(BaseDecl); 14661 } 14662 DerivedType = Base->getType(); 14663 } 14664 14665 return std::make_pair(BaseAlignment, Offset); 14666 } 14667 14668 /// Compute the alignment and offset of a binary additive operator. 14669 static Optional<std::pair<CharUnits, CharUnits>> 14670 getAlignmentAndOffsetFromBinAddOrSub(const Expr *PtrE, const Expr *IntE, 14671 bool IsSub, ASTContext &Ctx) { 14672 QualType PointeeType = PtrE->getType()->getPointeeType(); 14673 14674 if (!PointeeType->isConstantSizeType()) 14675 return llvm::None; 14676 14677 auto P = getBaseAlignmentAndOffsetFromPtr(PtrE, Ctx); 14678 14679 if (!P) 14680 return llvm::None; 14681 14682 CharUnits EltSize = Ctx.getTypeSizeInChars(PointeeType); 14683 if (Optional<llvm::APSInt> IdxRes = IntE->getIntegerConstantExpr(Ctx)) { 14684 CharUnits Offset = EltSize * IdxRes->getExtValue(); 14685 if (IsSub) 14686 Offset = -Offset; 14687 return std::make_pair(P->first, P->second + Offset); 14688 } 14689 14690 // If the integer expression isn't a constant expression, compute the lower 14691 // bound of the alignment using the alignment and offset of the pointer 14692 // expression and the element size. 14693 return std::make_pair( 14694 P->first.alignmentAtOffset(P->second).alignmentAtOffset(EltSize), 14695 CharUnits::Zero()); 14696 } 14697 14698 /// This helper function takes an lvalue expression and returns the alignment of 14699 /// a VarDecl and a constant offset from the VarDecl. 14700 Optional<std::pair<CharUnits, CharUnits>> 14701 static getBaseAlignmentAndOffsetFromLValue(const Expr *E, ASTContext &Ctx) { 14702 E = E->IgnoreParens(); 14703 switch (E->getStmtClass()) { 14704 default: 14705 break; 14706 case Stmt::CStyleCastExprClass: 14707 case Stmt::CXXStaticCastExprClass: 14708 case Stmt::ImplicitCastExprClass: { 14709 auto *CE = cast<CastExpr>(E); 14710 const Expr *From = CE->getSubExpr(); 14711 switch (CE->getCastKind()) { 14712 default: 14713 break; 14714 case CK_NoOp: 14715 return getBaseAlignmentAndOffsetFromLValue(From, Ctx); 14716 case CK_UncheckedDerivedToBase: 14717 case CK_DerivedToBase: { 14718 auto P = getBaseAlignmentAndOffsetFromLValue(From, Ctx); 14719 if (!P) 14720 break; 14721 return getDerivedToBaseAlignmentAndOffset(CE, From->getType(), P->first, 14722 P->second, Ctx); 14723 } 14724 } 14725 break; 14726 } 14727 case Stmt::ArraySubscriptExprClass: { 14728 auto *ASE = cast<ArraySubscriptExpr>(E); 14729 return getAlignmentAndOffsetFromBinAddOrSub(ASE->getBase(), ASE->getIdx(), 14730 false, Ctx); 14731 } 14732 case Stmt::DeclRefExprClass: { 14733 if (auto *VD = dyn_cast<VarDecl>(cast<DeclRefExpr>(E)->getDecl())) { 14734 // FIXME: If VD is captured by copy or is an escaping __block variable, 14735 // use the alignment of VD's type. 14736 if (!VD->getType()->isReferenceType()) 14737 return std::make_pair(Ctx.getDeclAlign(VD), CharUnits::Zero()); 14738 if (VD->hasInit()) 14739 return getBaseAlignmentAndOffsetFromLValue(VD->getInit(), Ctx); 14740 } 14741 break; 14742 } 14743 case Stmt::MemberExprClass: { 14744 auto *ME = cast<MemberExpr>(E); 14745 auto *FD = dyn_cast<FieldDecl>(ME->getMemberDecl()); 14746 if (!FD || FD->getType()->isReferenceType() || 14747 FD->getParent()->isInvalidDecl()) 14748 break; 14749 Optional<std::pair<CharUnits, CharUnits>> P; 14750 if (ME->isArrow()) 14751 P = getBaseAlignmentAndOffsetFromPtr(ME->getBase(), Ctx); 14752 else 14753 P = getBaseAlignmentAndOffsetFromLValue(ME->getBase(), Ctx); 14754 if (!P) 14755 break; 14756 const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(FD->getParent()); 14757 uint64_t Offset = Layout.getFieldOffset(FD->getFieldIndex()); 14758 return std::make_pair(P->first, 14759 P->second + CharUnits::fromQuantity(Offset)); 14760 } 14761 case Stmt::UnaryOperatorClass: { 14762 auto *UO = cast<UnaryOperator>(E); 14763 switch (UO->getOpcode()) { 14764 default: 14765 break; 14766 case UO_Deref: 14767 return getBaseAlignmentAndOffsetFromPtr(UO->getSubExpr(), Ctx); 14768 } 14769 break; 14770 } 14771 case Stmt::BinaryOperatorClass: { 14772 auto *BO = cast<BinaryOperator>(E); 14773 auto Opcode = BO->getOpcode(); 14774 switch (Opcode) { 14775 default: 14776 break; 14777 case BO_Comma: 14778 return getBaseAlignmentAndOffsetFromLValue(BO->getRHS(), Ctx); 14779 } 14780 break; 14781 } 14782 } 14783 return llvm::None; 14784 } 14785 14786 /// This helper function takes a pointer expression and returns the alignment of 14787 /// a VarDecl and a constant offset from the VarDecl. 14788 Optional<std::pair<CharUnits, CharUnits>> 14789 static getBaseAlignmentAndOffsetFromPtr(const Expr *E, ASTContext &Ctx) { 14790 E = E->IgnoreParens(); 14791 switch (E->getStmtClass()) { 14792 default: 14793 break; 14794 case Stmt::CStyleCastExprClass: 14795 case Stmt::CXXStaticCastExprClass: 14796 case Stmt::ImplicitCastExprClass: { 14797 auto *CE = cast<CastExpr>(E); 14798 const Expr *From = CE->getSubExpr(); 14799 switch (CE->getCastKind()) { 14800 default: 14801 break; 14802 case CK_NoOp: 14803 return getBaseAlignmentAndOffsetFromPtr(From, Ctx); 14804 case CK_ArrayToPointerDecay: 14805 return getBaseAlignmentAndOffsetFromLValue(From, Ctx); 14806 case CK_UncheckedDerivedToBase: 14807 case CK_DerivedToBase: { 14808 auto P = getBaseAlignmentAndOffsetFromPtr(From, Ctx); 14809 if (!P) 14810 break; 14811 return getDerivedToBaseAlignmentAndOffset( 14812 CE, From->getType()->getPointeeType(), P->first, P->second, Ctx); 14813 } 14814 } 14815 break; 14816 } 14817 case Stmt::CXXThisExprClass: { 14818 auto *RD = E->getType()->getPointeeType()->getAsCXXRecordDecl(); 14819 CharUnits Alignment = Ctx.getASTRecordLayout(RD).getNonVirtualAlignment(); 14820 return std::make_pair(Alignment, CharUnits::Zero()); 14821 } 14822 case Stmt::UnaryOperatorClass: { 14823 auto *UO = cast<UnaryOperator>(E); 14824 if (UO->getOpcode() == UO_AddrOf) 14825 return getBaseAlignmentAndOffsetFromLValue(UO->getSubExpr(), Ctx); 14826 break; 14827 } 14828 case Stmt::BinaryOperatorClass: { 14829 auto *BO = cast<BinaryOperator>(E); 14830 auto Opcode = BO->getOpcode(); 14831 switch (Opcode) { 14832 default: 14833 break; 14834 case BO_Add: 14835 case BO_Sub: { 14836 const Expr *LHS = BO->getLHS(), *RHS = BO->getRHS(); 14837 if (Opcode == BO_Add && !RHS->getType()->isIntegralOrEnumerationType()) 14838 std::swap(LHS, RHS); 14839 return getAlignmentAndOffsetFromBinAddOrSub(LHS, RHS, Opcode == BO_Sub, 14840 Ctx); 14841 } 14842 case BO_Comma: 14843 return getBaseAlignmentAndOffsetFromPtr(BO->getRHS(), Ctx); 14844 } 14845 break; 14846 } 14847 } 14848 return llvm::None; 14849 } 14850 14851 static CharUnits getPresumedAlignmentOfPointer(const Expr *E, Sema &S) { 14852 // See if we can compute the alignment of a VarDecl and an offset from it. 14853 Optional<std::pair<CharUnits, CharUnits>> P = 14854 getBaseAlignmentAndOffsetFromPtr(E, S.Context); 14855 14856 if (P) 14857 return P->first.alignmentAtOffset(P->second); 14858 14859 // If that failed, return the type's alignment. 14860 return S.Context.getTypeAlignInChars(E->getType()->getPointeeType()); 14861 } 14862 14863 /// CheckCastAlign - Implements -Wcast-align, which warns when a 14864 /// pointer cast increases the alignment requirements. 14865 void Sema::CheckCastAlign(Expr *Op, QualType T, SourceRange TRange) { 14866 // This is actually a lot of work to potentially be doing on every 14867 // cast; don't do it if we're ignoring -Wcast_align (as is the default). 14868 if (getDiagnostics().isIgnored(diag::warn_cast_align, TRange.getBegin())) 14869 return; 14870 14871 // Ignore dependent types. 14872 if (T->isDependentType() || Op->getType()->isDependentType()) 14873 return; 14874 14875 // Require that the destination be a pointer type. 14876 const PointerType *DestPtr = T->getAs<PointerType>(); 14877 if (!DestPtr) return; 14878 14879 // If the destination has alignment 1, we're done. 14880 QualType DestPointee = DestPtr->getPointeeType(); 14881 if (DestPointee->isIncompleteType()) return; 14882 CharUnits DestAlign = Context.getTypeAlignInChars(DestPointee); 14883 if (DestAlign.isOne()) return; 14884 14885 // Require that the source be a pointer type. 14886 const PointerType *SrcPtr = Op->getType()->getAs<PointerType>(); 14887 if (!SrcPtr) return; 14888 QualType SrcPointee = SrcPtr->getPointeeType(); 14889 14890 // Explicitly allow casts from cv void*. We already implicitly 14891 // allowed casts to cv void*, since they have alignment 1. 14892 // Also allow casts involving incomplete types, which implicitly 14893 // includes 'void'. 14894 if (SrcPointee->isIncompleteType()) return; 14895 14896 CharUnits SrcAlign = getPresumedAlignmentOfPointer(Op, *this); 14897 14898 if (SrcAlign >= DestAlign) return; 14899 14900 Diag(TRange.getBegin(), diag::warn_cast_align) 14901 << Op->getType() << T 14902 << static_cast<unsigned>(SrcAlign.getQuantity()) 14903 << static_cast<unsigned>(DestAlign.getQuantity()) 14904 << TRange << Op->getSourceRange(); 14905 } 14906 14907 /// Check whether this array fits the idiom of a size-one tail padded 14908 /// array member of a struct. 14909 /// 14910 /// We avoid emitting out-of-bounds access warnings for such arrays as they are 14911 /// commonly used to emulate flexible arrays in C89 code. 14912 static bool IsTailPaddedMemberArray(Sema &S, const llvm::APInt &Size, 14913 const NamedDecl *ND) { 14914 if (Size != 1 || !ND) return false; 14915 14916 const FieldDecl *FD = dyn_cast<FieldDecl>(ND); 14917 if (!FD) return false; 14918 14919 // Don't consider sizes resulting from macro expansions or template argument 14920 // substitution to form C89 tail-padded arrays. 14921 14922 TypeSourceInfo *TInfo = FD->getTypeSourceInfo(); 14923 while (TInfo) { 14924 TypeLoc TL = TInfo->getTypeLoc(); 14925 // Look through typedefs. 14926 if (TypedefTypeLoc TTL = TL.getAs<TypedefTypeLoc>()) { 14927 const TypedefNameDecl *TDL = TTL.getTypedefNameDecl(); 14928 TInfo = TDL->getTypeSourceInfo(); 14929 continue; 14930 } 14931 if (ConstantArrayTypeLoc CTL = TL.getAs<ConstantArrayTypeLoc>()) { 14932 const Expr *SizeExpr = dyn_cast<IntegerLiteral>(CTL.getSizeExpr()); 14933 if (!SizeExpr || SizeExpr->getExprLoc().isMacroID()) 14934 return false; 14935 } 14936 break; 14937 } 14938 14939 const RecordDecl *RD = dyn_cast<RecordDecl>(FD->getDeclContext()); 14940 if (!RD) return false; 14941 if (RD->isUnion()) return false; 14942 if (const CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { 14943 if (!CRD->isStandardLayout()) return false; 14944 } 14945 14946 // See if this is the last field decl in the record. 14947 const Decl *D = FD; 14948 while ((D = D->getNextDeclInContext())) 14949 if (isa<FieldDecl>(D)) 14950 return false; 14951 return true; 14952 } 14953 14954 void Sema::CheckArrayAccess(const Expr *BaseExpr, const Expr *IndexExpr, 14955 const ArraySubscriptExpr *ASE, 14956 bool AllowOnePastEnd, bool IndexNegated) { 14957 // Already diagnosed by the constant evaluator. 14958 if (isConstantEvaluated()) 14959 return; 14960 14961 IndexExpr = IndexExpr->IgnoreParenImpCasts(); 14962 if (IndexExpr->isValueDependent()) 14963 return; 14964 14965 const Type *EffectiveType = 14966 BaseExpr->getType()->getPointeeOrArrayElementType(); 14967 BaseExpr = BaseExpr->IgnoreParenCasts(); 14968 const ConstantArrayType *ArrayTy = 14969 Context.getAsConstantArrayType(BaseExpr->getType()); 14970 14971 const Type *BaseType = 14972 ArrayTy == nullptr ? nullptr : ArrayTy->getElementType().getTypePtr(); 14973 bool IsUnboundedArray = (BaseType == nullptr); 14974 if (EffectiveType->isDependentType() || 14975 (!IsUnboundedArray && BaseType->isDependentType())) 14976 return; 14977 14978 Expr::EvalResult Result; 14979 if (!IndexExpr->EvaluateAsInt(Result, Context, Expr::SE_AllowSideEffects)) 14980 return; 14981 14982 llvm::APSInt index = Result.Val.getInt(); 14983 if (IndexNegated) { 14984 index.setIsUnsigned(false); 14985 index = -index; 14986 } 14987 14988 const NamedDecl *ND = nullptr; 14989 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BaseExpr)) 14990 ND = DRE->getDecl(); 14991 if (const MemberExpr *ME = dyn_cast<MemberExpr>(BaseExpr)) 14992 ND = ME->getMemberDecl(); 14993 14994 if (IsUnboundedArray) { 14995 if (index.isUnsigned() || !index.isNegative()) { 14996 const auto &ASTC = getASTContext(); 14997 unsigned AddrBits = 14998 ASTC.getTargetInfo().getPointerWidth(ASTC.getTargetAddressSpace( 14999 EffectiveType->getCanonicalTypeInternal())); 15000 if (index.getBitWidth() < AddrBits) 15001 index = index.zext(AddrBits); 15002 Optional<CharUnits> ElemCharUnits = 15003 ASTC.getTypeSizeInCharsIfKnown(EffectiveType); 15004 // PR50741 - If EffectiveType has unknown size (e.g., if it's a void 15005 // pointer) bounds-checking isn't meaningful. 15006 if (!ElemCharUnits) 15007 return; 15008 llvm::APInt ElemBytes(index.getBitWidth(), ElemCharUnits->getQuantity()); 15009 // If index has more active bits than address space, we already know 15010 // we have a bounds violation to warn about. Otherwise, compute 15011 // address of (index + 1)th element, and warn about bounds violation 15012 // only if that address exceeds address space. 15013 if (index.getActiveBits() <= AddrBits) { 15014 bool Overflow; 15015 llvm::APInt Product(index); 15016 Product += 1; 15017 Product = Product.umul_ov(ElemBytes, Overflow); 15018 if (!Overflow && Product.getActiveBits() <= AddrBits) 15019 return; 15020 } 15021 15022 // Need to compute max possible elements in address space, since that 15023 // is included in diag message. 15024 llvm::APInt MaxElems = llvm::APInt::getMaxValue(AddrBits); 15025 MaxElems = MaxElems.zext(std::max(AddrBits + 1, ElemBytes.getBitWidth())); 15026 MaxElems += 1; 15027 ElemBytes = ElemBytes.zextOrTrunc(MaxElems.getBitWidth()); 15028 MaxElems = MaxElems.udiv(ElemBytes); 15029 15030 unsigned DiagID = 15031 ASE ? diag::warn_array_index_exceeds_max_addressable_bounds 15032 : diag::warn_ptr_arith_exceeds_max_addressable_bounds; 15033 15034 // Diag message shows element size in bits and in "bytes" (platform- 15035 // dependent CharUnits) 15036 DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr, 15037 PDiag(DiagID) 15038 << toString(index, 10, true) << AddrBits 15039 << (unsigned)ASTC.toBits(*ElemCharUnits) 15040 << toString(ElemBytes, 10, false) 15041 << toString(MaxElems, 10, false) 15042 << (unsigned)MaxElems.getLimitedValue(~0U) 15043 << IndexExpr->getSourceRange()); 15044 15045 if (!ND) { 15046 // Try harder to find a NamedDecl to point at in the note. 15047 while (const auto *ASE = dyn_cast<ArraySubscriptExpr>(BaseExpr)) 15048 BaseExpr = ASE->getBase()->IgnoreParenCasts(); 15049 if (const auto *DRE = dyn_cast<DeclRefExpr>(BaseExpr)) 15050 ND = DRE->getDecl(); 15051 if (const auto *ME = dyn_cast<MemberExpr>(BaseExpr)) 15052 ND = ME->getMemberDecl(); 15053 } 15054 15055 if (ND) 15056 DiagRuntimeBehavior(ND->getBeginLoc(), BaseExpr, 15057 PDiag(diag::note_array_declared_here) << ND); 15058 } 15059 return; 15060 } 15061 15062 if (index.isUnsigned() || !index.isNegative()) { 15063 // It is possible that the type of the base expression after 15064 // IgnoreParenCasts is incomplete, even though the type of the base 15065 // expression before IgnoreParenCasts is complete (see PR39746 for an 15066 // example). In this case we have no information about whether the array 15067 // access exceeds the array bounds. However we can still diagnose an array 15068 // access which precedes the array bounds. 15069 if (BaseType->isIncompleteType()) 15070 return; 15071 15072 llvm::APInt size = ArrayTy->getSize(); 15073 if (!size.isStrictlyPositive()) 15074 return; 15075 15076 if (BaseType != EffectiveType) { 15077 // Make sure we're comparing apples to apples when comparing index to size 15078 uint64_t ptrarith_typesize = Context.getTypeSize(EffectiveType); 15079 uint64_t array_typesize = Context.getTypeSize(BaseType); 15080 // Handle ptrarith_typesize being zero, such as when casting to void* 15081 if (!ptrarith_typesize) ptrarith_typesize = 1; 15082 if (ptrarith_typesize != array_typesize) { 15083 // There's a cast to a different size type involved 15084 uint64_t ratio = array_typesize / ptrarith_typesize; 15085 // TODO: Be smarter about handling cases where array_typesize is not a 15086 // multiple of ptrarith_typesize 15087 if (ptrarith_typesize * ratio == array_typesize) 15088 size *= llvm::APInt(size.getBitWidth(), ratio); 15089 } 15090 } 15091 15092 if (size.getBitWidth() > index.getBitWidth()) 15093 index = index.zext(size.getBitWidth()); 15094 else if (size.getBitWidth() < index.getBitWidth()) 15095 size = size.zext(index.getBitWidth()); 15096 15097 // For array subscripting the index must be less than size, but for pointer 15098 // arithmetic also allow the index (offset) to be equal to size since 15099 // computing the next address after the end of the array is legal and 15100 // commonly done e.g. in C++ iterators and range-based for loops. 15101 if (AllowOnePastEnd ? index.ule(size) : index.ult(size)) 15102 return; 15103 15104 // Also don't warn for arrays of size 1 which are members of some 15105 // structure. These are often used to approximate flexible arrays in C89 15106 // code. 15107 if (IsTailPaddedMemberArray(*this, size, ND)) 15108 return; 15109 15110 // Suppress the warning if the subscript expression (as identified by the 15111 // ']' location) and the index expression are both from macro expansions 15112 // within a system header. 15113 if (ASE) { 15114 SourceLocation RBracketLoc = SourceMgr.getSpellingLoc( 15115 ASE->getRBracketLoc()); 15116 if (SourceMgr.isInSystemHeader(RBracketLoc)) { 15117 SourceLocation IndexLoc = 15118 SourceMgr.getSpellingLoc(IndexExpr->getBeginLoc()); 15119 if (SourceMgr.isWrittenInSameFile(RBracketLoc, IndexLoc)) 15120 return; 15121 } 15122 } 15123 15124 unsigned DiagID = ASE ? diag::warn_array_index_exceeds_bounds 15125 : diag::warn_ptr_arith_exceeds_bounds; 15126 15127 DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr, 15128 PDiag(DiagID) << toString(index, 10, true) 15129 << toString(size, 10, true) 15130 << (unsigned)size.getLimitedValue(~0U) 15131 << IndexExpr->getSourceRange()); 15132 } else { 15133 unsigned DiagID = diag::warn_array_index_precedes_bounds; 15134 if (!ASE) { 15135 DiagID = diag::warn_ptr_arith_precedes_bounds; 15136 if (index.isNegative()) index = -index; 15137 } 15138 15139 DiagRuntimeBehavior(BaseExpr->getBeginLoc(), BaseExpr, 15140 PDiag(DiagID) << toString(index, 10, true) 15141 << IndexExpr->getSourceRange()); 15142 } 15143 15144 if (!ND) { 15145 // Try harder to find a NamedDecl to point at in the note. 15146 while (const auto *ASE = dyn_cast<ArraySubscriptExpr>(BaseExpr)) 15147 BaseExpr = ASE->getBase()->IgnoreParenCasts(); 15148 if (const auto *DRE = dyn_cast<DeclRefExpr>(BaseExpr)) 15149 ND = DRE->getDecl(); 15150 if (const auto *ME = dyn_cast<MemberExpr>(BaseExpr)) 15151 ND = ME->getMemberDecl(); 15152 } 15153 15154 if (ND) 15155 DiagRuntimeBehavior(ND->getBeginLoc(), BaseExpr, 15156 PDiag(diag::note_array_declared_here) << ND); 15157 } 15158 15159 void Sema::CheckArrayAccess(const Expr *expr) { 15160 int AllowOnePastEnd = 0; 15161 while (expr) { 15162 expr = expr->IgnoreParenImpCasts(); 15163 switch (expr->getStmtClass()) { 15164 case Stmt::ArraySubscriptExprClass: { 15165 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(expr); 15166 CheckArrayAccess(ASE->getBase(), ASE->getIdx(), ASE, 15167 AllowOnePastEnd > 0); 15168 expr = ASE->getBase(); 15169 break; 15170 } 15171 case Stmt::MemberExprClass: { 15172 expr = cast<MemberExpr>(expr)->getBase(); 15173 break; 15174 } 15175 case Stmt::OMPArraySectionExprClass: { 15176 const OMPArraySectionExpr *ASE = cast<OMPArraySectionExpr>(expr); 15177 if (ASE->getLowerBound()) 15178 CheckArrayAccess(ASE->getBase(), ASE->getLowerBound(), 15179 /*ASE=*/nullptr, AllowOnePastEnd > 0); 15180 return; 15181 } 15182 case Stmt::UnaryOperatorClass: { 15183 // Only unwrap the * and & unary operators 15184 const UnaryOperator *UO = cast<UnaryOperator>(expr); 15185 expr = UO->getSubExpr(); 15186 switch (UO->getOpcode()) { 15187 case UO_AddrOf: 15188 AllowOnePastEnd++; 15189 break; 15190 case UO_Deref: 15191 AllowOnePastEnd--; 15192 break; 15193 default: 15194 return; 15195 } 15196 break; 15197 } 15198 case Stmt::ConditionalOperatorClass: { 15199 const ConditionalOperator *cond = cast<ConditionalOperator>(expr); 15200 if (const Expr *lhs = cond->getLHS()) 15201 CheckArrayAccess(lhs); 15202 if (const Expr *rhs = cond->getRHS()) 15203 CheckArrayAccess(rhs); 15204 return; 15205 } 15206 case Stmt::CXXOperatorCallExprClass: { 15207 const auto *OCE = cast<CXXOperatorCallExpr>(expr); 15208 for (const auto *Arg : OCE->arguments()) 15209 CheckArrayAccess(Arg); 15210 return; 15211 } 15212 default: 15213 return; 15214 } 15215 } 15216 } 15217 15218 //===--- CHECK: Objective-C retain cycles ----------------------------------// 15219 15220 namespace { 15221 15222 struct RetainCycleOwner { 15223 VarDecl *Variable = nullptr; 15224 SourceRange Range; 15225 SourceLocation Loc; 15226 bool Indirect = false; 15227 15228 RetainCycleOwner() = default; 15229 15230 void setLocsFrom(Expr *e) { 15231 Loc = e->getExprLoc(); 15232 Range = e->getSourceRange(); 15233 } 15234 }; 15235 15236 } // namespace 15237 15238 /// Consider whether capturing the given variable can possibly lead to 15239 /// a retain cycle. 15240 static bool considerVariable(VarDecl *var, Expr *ref, RetainCycleOwner &owner) { 15241 // In ARC, it's captured strongly iff the variable has __strong 15242 // lifetime. In MRR, it's captured strongly if the variable is 15243 // __block and has an appropriate type. 15244 if (var->getType().getObjCLifetime() != Qualifiers::OCL_Strong) 15245 return false; 15246 15247 owner.Variable = var; 15248 if (ref) 15249 owner.setLocsFrom(ref); 15250 return true; 15251 } 15252 15253 static bool findRetainCycleOwner(Sema &S, Expr *e, RetainCycleOwner &owner) { 15254 while (true) { 15255 e = e->IgnoreParens(); 15256 if (CastExpr *cast = dyn_cast<CastExpr>(e)) { 15257 switch (cast->getCastKind()) { 15258 case CK_BitCast: 15259 case CK_LValueBitCast: 15260 case CK_LValueToRValue: 15261 case CK_ARCReclaimReturnedObject: 15262 e = cast->getSubExpr(); 15263 continue; 15264 15265 default: 15266 return false; 15267 } 15268 } 15269 15270 if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) { 15271 ObjCIvarDecl *ivar = ref->getDecl(); 15272 if (ivar->getType().getObjCLifetime() != Qualifiers::OCL_Strong) 15273 return false; 15274 15275 // Try to find a retain cycle in the base. 15276 if (!findRetainCycleOwner(S, ref->getBase(), owner)) 15277 return false; 15278 15279 if (ref->isFreeIvar()) owner.setLocsFrom(ref); 15280 owner.Indirect = true; 15281 return true; 15282 } 15283 15284 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) { 15285 VarDecl *var = dyn_cast<VarDecl>(ref->getDecl()); 15286 if (!var) return false; 15287 return considerVariable(var, ref, owner); 15288 } 15289 15290 if (MemberExpr *member = dyn_cast<MemberExpr>(e)) { 15291 if (member->isArrow()) return false; 15292 15293 // Don't count this as an indirect ownership. 15294 e = member->getBase(); 15295 continue; 15296 } 15297 15298 if (PseudoObjectExpr *pseudo = dyn_cast<PseudoObjectExpr>(e)) { 15299 // Only pay attention to pseudo-objects on property references. 15300 ObjCPropertyRefExpr *pre 15301 = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm() 15302 ->IgnoreParens()); 15303 if (!pre) return false; 15304 if (pre->isImplicitProperty()) return false; 15305 ObjCPropertyDecl *property = pre->getExplicitProperty(); 15306 if (!property->isRetaining() && 15307 !(property->getPropertyIvarDecl() && 15308 property->getPropertyIvarDecl()->getType() 15309 .getObjCLifetime() == Qualifiers::OCL_Strong)) 15310 return false; 15311 15312 owner.Indirect = true; 15313 if (pre->isSuperReceiver()) { 15314 owner.Variable = S.getCurMethodDecl()->getSelfDecl(); 15315 if (!owner.Variable) 15316 return false; 15317 owner.Loc = pre->getLocation(); 15318 owner.Range = pre->getSourceRange(); 15319 return true; 15320 } 15321 e = const_cast<Expr*>(cast<OpaqueValueExpr>(pre->getBase()) 15322 ->getSourceExpr()); 15323 continue; 15324 } 15325 15326 // Array ivars? 15327 15328 return false; 15329 } 15330 } 15331 15332 namespace { 15333 15334 struct FindCaptureVisitor : EvaluatedExprVisitor<FindCaptureVisitor> { 15335 ASTContext &Context; 15336 VarDecl *Variable; 15337 Expr *Capturer = nullptr; 15338 bool VarWillBeReased = false; 15339 15340 FindCaptureVisitor(ASTContext &Context, VarDecl *variable) 15341 : EvaluatedExprVisitor<FindCaptureVisitor>(Context), 15342 Context(Context), Variable(variable) {} 15343 15344 void VisitDeclRefExpr(DeclRefExpr *ref) { 15345 if (ref->getDecl() == Variable && !Capturer) 15346 Capturer = ref; 15347 } 15348 15349 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) { 15350 if (Capturer) return; 15351 Visit(ref->getBase()); 15352 if (Capturer && ref->isFreeIvar()) 15353 Capturer = ref; 15354 } 15355 15356 void VisitBlockExpr(BlockExpr *block) { 15357 // Look inside nested blocks 15358 if (block->getBlockDecl()->capturesVariable(Variable)) 15359 Visit(block->getBlockDecl()->getBody()); 15360 } 15361 15362 void VisitOpaqueValueExpr(OpaqueValueExpr *OVE) { 15363 if (Capturer) return; 15364 if (OVE->getSourceExpr()) 15365 Visit(OVE->getSourceExpr()); 15366 } 15367 15368 void VisitBinaryOperator(BinaryOperator *BinOp) { 15369 if (!Variable || VarWillBeReased || BinOp->getOpcode() != BO_Assign) 15370 return; 15371 Expr *LHS = BinOp->getLHS(); 15372 if (const DeclRefExpr *DRE = dyn_cast_or_null<DeclRefExpr>(LHS)) { 15373 if (DRE->getDecl() != Variable) 15374 return; 15375 if (Expr *RHS = BinOp->getRHS()) { 15376 RHS = RHS->IgnoreParenCasts(); 15377 Optional<llvm::APSInt> Value; 15378 VarWillBeReased = 15379 (RHS && (Value = RHS->getIntegerConstantExpr(Context)) && 15380 *Value == 0); 15381 } 15382 } 15383 } 15384 }; 15385 15386 } // namespace 15387 15388 /// Check whether the given argument is a block which captures a 15389 /// variable. 15390 static Expr *findCapturingExpr(Sema &S, Expr *e, RetainCycleOwner &owner) { 15391 assert(owner.Variable && owner.Loc.isValid()); 15392 15393 e = e->IgnoreParenCasts(); 15394 15395 // Look through [^{...} copy] and Block_copy(^{...}). 15396 if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(e)) { 15397 Selector Cmd = ME->getSelector(); 15398 if (Cmd.isUnarySelector() && Cmd.getNameForSlot(0) == "copy") { 15399 e = ME->getInstanceReceiver(); 15400 if (!e) 15401 return nullptr; 15402 e = e->IgnoreParenCasts(); 15403 } 15404 } else if (CallExpr *CE = dyn_cast<CallExpr>(e)) { 15405 if (CE->getNumArgs() == 1) { 15406 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl()); 15407 if (Fn) { 15408 const IdentifierInfo *FnI = Fn->getIdentifier(); 15409 if (FnI && FnI->isStr("_Block_copy")) { 15410 e = CE->getArg(0)->IgnoreParenCasts(); 15411 } 15412 } 15413 } 15414 } 15415 15416 BlockExpr *block = dyn_cast<BlockExpr>(e); 15417 if (!block || !block->getBlockDecl()->capturesVariable(owner.Variable)) 15418 return nullptr; 15419 15420 FindCaptureVisitor visitor(S.Context, owner.Variable); 15421 visitor.Visit(block->getBlockDecl()->getBody()); 15422 return visitor.VarWillBeReased ? nullptr : visitor.Capturer; 15423 } 15424 15425 static void diagnoseRetainCycle(Sema &S, Expr *capturer, 15426 RetainCycleOwner &owner) { 15427 assert(capturer); 15428 assert(owner.Variable && owner.Loc.isValid()); 15429 15430 S.Diag(capturer->getExprLoc(), diag::warn_arc_retain_cycle) 15431 << owner.Variable << capturer->getSourceRange(); 15432 S.Diag(owner.Loc, diag::note_arc_retain_cycle_owner) 15433 << owner.Indirect << owner.Range; 15434 } 15435 15436 /// Check for a keyword selector that starts with the word 'add' or 15437 /// 'set'. 15438 static bool isSetterLikeSelector(Selector sel) { 15439 if (sel.isUnarySelector()) return false; 15440 15441 StringRef str = sel.getNameForSlot(0); 15442 while (!str.empty() && str.front() == '_') str = str.substr(1); 15443 if (str.startswith("set")) 15444 str = str.substr(3); 15445 else if (str.startswith("add")) { 15446 // Specially allow 'addOperationWithBlock:'. 15447 if (sel.getNumArgs() == 1 && str.startswith("addOperationWithBlock")) 15448 return false; 15449 str = str.substr(3); 15450 } 15451 else 15452 return false; 15453 15454 if (str.empty()) return true; 15455 return !isLowercase(str.front()); 15456 } 15457 15458 static Optional<int> GetNSMutableArrayArgumentIndex(Sema &S, 15459 ObjCMessageExpr *Message) { 15460 bool IsMutableArray = S.NSAPIObj->isSubclassOfNSClass( 15461 Message->getReceiverInterface(), 15462 NSAPI::ClassId_NSMutableArray); 15463 if (!IsMutableArray) { 15464 return None; 15465 } 15466 15467 Selector Sel = Message->getSelector(); 15468 15469 Optional<NSAPI::NSArrayMethodKind> MKOpt = 15470 S.NSAPIObj->getNSArrayMethodKind(Sel); 15471 if (!MKOpt) { 15472 return None; 15473 } 15474 15475 NSAPI::NSArrayMethodKind MK = *MKOpt; 15476 15477 switch (MK) { 15478 case NSAPI::NSMutableArr_addObject: 15479 case NSAPI::NSMutableArr_insertObjectAtIndex: 15480 case NSAPI::NSMutableArr_setObjectAtIndexedSubscript: 15481 return 0; 15482 case NSAPI::NSMutableArr_replaceObjectAtIndex: 15483 return 1; 15484 15485 default: 15486 return None; 15487 } 15488 15489 return None; 15490 } 15491 15492 static 15493 Optional<int> GetNSMutableDictionaryArgumentIndex(Sema &S, 15494 ObjCMessageExpr *Message) { 15495 bool IsMutableDictionary = S.NSAPIObj->isSubclassOfNSClass( 15496 Message->getReceiverInterface(), 15497 NSAPI::ClassId_NSMutableDictionary); 15498 if (!IsMutableDictionary) { 15499 return None; 15500 } 15501 15502 Selector Sel = Message->getSelector(); 15503 15504 Optional<NSAPI::NSDictionaryMethodKind> MKOpt = 15505 S.NSAPIObj->getNSDictionaryMethodKind(Sel); 15506 if (!MKOpt) { 15507 return None; 15508 } 15509 15510 NSAPI::NSDictionaryMethodKind MK = *MKOpt; 15511 15512 switch (MK) { 15513 case NSAPI::NSMutableDict_setObjectForKey: 15514 case NSAPI::NSMutableDict_setValueForKey: 15515 case NSAPI::NSMutableDict_setObjectForKeyedSubscript: 15516 return 0; 15517 15518 default: 15519 return None; 15520 } 15521 15522 return None; 15523 } 15524 15525 static Optional<int> GetNSSetArgumentIndex(Sema &S, ObjCMessageExpr *Message) { 15526 bool IsMutableSet = S.NSAPIObj->isSubclassOfNSClass( 15527 Message->getReceiverInterface(), 15528 NSAPI::ClassId_NSMutableSet); 15529 15530 bool IsMutableOrderedSet = S.NSAPIObj->isSubclassOfNSClass( 15531 Message->getReceiverInterface(), 15532 NSAPI::ClassId_NSMutableOrderedSet); 15533 if (!IsMutableSet && !IsMutableOrderedSet) { 15534 return None; 15535 } 15536 15537 Selector Sel = Message->getSelector(); 15538 15539 Optional<NSAPI::NSSetMethodKind> MKOpt = S.NSAPIObj->getNSSetMethodKind(Sel); 15540 if (!MKOpt) { 15541 return None; 15542 } 15543 15544 NSAPI::NSSetMethodKind MK = *MKOpt; 15545 15546 switch (MK) { 15547 case NSAPI::NSMutableSet_addObject: 15548 case NSAPI::NSOrderedSet_setObjectAtIndex: 15549 case NSAPI::NSOrderedSet_setObjectAtIndexedSubscript: 15550 case NSAPI::NSOrderedSet_insertObjectAtIndex: 15551 return 0; 15552 case NSAPI::NSOrderedSet_replaceObjectAtIndexWithObject: 15553 return 1; 15554 } 15555 15556 return None; 15557 } 15558 15559 void Sema::CheckObjCCircularContainer(ObjCMessageExpr *Message) { 15560 if (!Message->isInstanceMessage()) { 15561 return; 15562 } 15563 15564 Optional<int> ArgOpt; 15565 15566 if (!(ArgOpt = GetNSMutableArrayArgumentIndex(*this, Message)) && 15567 !(ArgOpt = GetNSMutableDictionaryArgumentIndex(*this, Message)) && 15568 !(ArgOpt = GetNSSetArgumentIndex(*this, Message))) { 15569 return; 15570 } 15571 15572 int ArgIndex = *ArgOpt; 15573 15574 Expr *Arg = Message->getArg(ArgIndex)->IgnoreImpCasts(); 15575 if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Arg)) { 15576 Arg = OE->getSourceExpr()->IgnoreImpCasts(); 15577 } 15578 15579 if (Message->getReceiverKind() == ObjCMessageExpr::SuperInstance) { 15580 if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) { 15581 if (ArgRE->isObjCSelfExpr()) { 15582 Diag(Message->getSourceRange().getBegin(), 15583 diag::warn_objc_circular_container) 15584 << ArgRE->getDecl() << StringRef("'super'"); 15585 } 15586 } 15587 } else { 15588 Expr *Receiver = Message->getInstanceReceiver()->IgnoreImpCasts(); 15589 15590 if (OpaqueValueExpr *OE = dyn_cast<OpaqueValueExpr>(Receiver)) { 15591 Receiver = OE->getSourceExpr()->IgnoreImpCasts(); 15592 } 15593 15594 if (DeclRefExpr *ReceiverRE = dyn_cast<DeclRefExpr>(Receiver)) { 15595 if (DeclRefExpr *ArgRE = dyn_cast<DeclRefExpr>(Arg)) { 15596 if (ReceiverRE->getDecl() == ArgRE->getDecl()) { 15597 ValueDecl *Decl = ReceiverRE->getDecl(); 15598 Diag(Message->getSourceRange().getBegin(), 15599 diag::warn_objc_circular_container) 15600 << Decl << Decl; 15601 if (!ArgRE->isObjCSelfExpr()) { 15602 Diag(Decl->getLocation(), 15603 diag::note_objc_circular_container_declared_here) 15604 << Decl; 15605 } 15606 } 15607 } 15608 } else if (ObjCIvarRefExpr *IvarRE = dyn_cast<ObjCIvarRefExpr>(Receiver)) { 15609 if (ObjCIvarRefExpr *IvarArgRE = dyn_cast<ObjCIvarRefExpr>(Arg)) { 15610 if (IvarRE->getDecl() == IvarArgRE->getDecl()) { 15611 ObjCIvarDecl *Decl = IvarRE->getDecl(); 15612 Diag(Message->getSourceRange().getBegin(), 15613 diag::warn_objc_circular_container) 15614 << Decl << Decl; 15615 Diag(Decl->getLocation(), 15616 diag::note_objc_circular_container_declared_here) 15617 << Decl; 15618 } 15619 } 15620 } 15621 } 15622 } 15623 15624 /// Check a message send to see if it's likely to cause a retain cycle. 15625 void Sema::checkRetainCycles(ObjCMessageExpr *msg) { 15626 // Only check instance methods whose selector looks like a setter. 15627 if (!msg->isInstanceMessage() || !isSetterLikeSelector(msg->getSelector())) 15628 return; 15629 15630 // Try to find a variable that the receiver is strongly owned by. 15631 RetainCycleOwner owner; 15632 if (msg->getReceiverKind() == ObjCMessageExpr::Instance) { 15633 if (!findRetainCycleOwner(*this, msg->getInstanceReceiver(), owner)) 15634 return; 15635 } else { 15636 assert(msg->getReceiverKind() == ObjCMessageExpr::SuperInstance); 15637 owner.Variable = getCurMethodDecl()->getSelfDecl(); 15638 owner.Loc = msg->getSuperLoc(); 15639 owner.Range = msg->getSuperLoc(); 15640 } 15641 15642 // Check whether the receiver is captured by any of the arguments. 15643 const ObjCMethodDecl *MD = msg->getMethodDecl(); 15644 for (unsigned i = 0, e = msg->getNumArgs(); i != e; ++i) { 15645 if (Expr *capturer = findCapturingExpr(*this, msg->getArg(i), owner)) { 15646 // noescape blocks should not be retained by the method. 15647 if (MD && MD->parameters()[i]->hasAttr<NoEscapeAttr>()) 15648 continue; 15649 return diagnoseRetainCycle(*this, capturer, owner); 15650 } 15651 } 15652 } 15653 15654 /// Check a property assign to see if it's likely to cause a retain cycle. 15655 void Sema::checkRetainCycles(Expr *receiver, Expr *argument) { 15656 RetainCycleOwner owner; 15657 if (!findRetainCycleOwner(*this, receiver, owner)) 15658 return; 15659 15660 if (Expr *capturer = findCapturingExpr(*this, argument, owner)) 15661 diagnoseRetainCycle(*this, capturer, owner); 15662 } 15663 15664 void Sema::checkRetainCycles(VarDecl *Var, Expr *Init) { 15665 RetainCycleOwner Owner; 15666 if (!considerVariable(Var, /*DeclRefExpr=*/nullptr, Owner)) 15667 return; 15668 15669 // Because we don't have an expression for the variable, we have to set the 15670 // location explicitly here. 15671 Owner.Loc = Var->getLocation(); 15672 Owner.Range = Var->getSourceRange(); 15673 15674 if (Expr *Capturer = findCapturingExpr(*this, Init, Owner)) 15675 diagnoseRetainCycle(*this, Capturer, Owner); 15676 } 15677 15678 static bool checkUnsafeAssignLiteral(Sema &S, SourceLocation Loc, 15679 Expr *RHS, bool isProperty) { 15680 // Check if RHS is an Objective-C object literal, which also can get 15681 // immediately zapped in a weak reference. Note that we explicitly 15682 // allow ObjCStringLiterals, since those are designed to never really die. 15683 RHS = RHS->IgnoreParenImpCasts(); 15684 15685 // This enum needs to match with the 'select' in 15686 // warn_objc_arc_literal_assign (off-by-1). 15687 Sema::ObjCLiteralKind Kind = S.CheckLiteralKind(RHS); 15688 if (Kind == Sema::LK_String || Kind == Sema::LK_None) 15689 return false; 15690 15691 S.Diag(Loc, diag::warn_arc_literal_assign) 15692 << (unsigned) Kind 15693 << (isProperty ? 0 : 1) 15694 << RHS->getSourceRange(); 15695 15696 return true; 15697 } 15698 15699 static bool checkUnsafeAssignObject(Sema &S, SourceLocation Loc, 15700 Qualifiers::ObjCLifetime LT, 15701 Expr *RHS, bool isProperty) { 15702 // Strip off any implicit cast added to get to the one ARC-specific. 15703 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) { 15704 if (cast->getCastKind() == CK_ARCConsumeObject) { 15705 S.Diag(Loc, diag::warn_arc_retained_assign) 15706 << (LT == Qualifiers::OCL_ExplicitNone) 15707 << (isProperty ? 0 : 1) 15708 << RHS->getSourceRange(); 15709 return true; 15710 } 15711 RHS = cast->getSubExpr(); 15712 } 15713 15714 if (LT == Qualifiers::OCL_Weak && 15715 checkUnsafeAssignLiteral(S, Loc, RHS, isProperty)) 15716 return true; 15717 15718 return false; 15719 } 15720 15721 bool Sema::checkUnsafeAssigns(SourceLocation Loc, 15722 QualType LHS, Expr *RHS) { 15723 Qualifiers::ObjCLifetime LT = LHS.getObjCLifetime(); 15724 15725 if (LT != Qualifiers::OCL_Weak && LT != Qualifiers::OCL_ExplicitNone) 15726 return false; 15727 15728 if (checkUnsafeAssignObject(*this, Loc, LT, RHS, false)) 15729 return true; 15730 15731 return false; 15732 } 15733 15734 void Sema::checkUnsafeExprAssigns(SourceLocation Loc, 15735 Expr *LHS, Expr *RHS) { 15736 QualType LHSType; 15737 // PropertyRef on LHS type need be directly obtained from 15738 // its declaration as it has a PseudoType. 15739 ObjCPropertyRefExpr *PRE 15740 = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens()); 15741 if (PRE && !PRE->isImplicitProperty()) { 15742 const ObjCPropertyDecl *PD = PRE->getExplicitProperty(); 15743 if (PD) 15744 LHSType = PD->getType(); 15745 } 15746 15747 if (LHSType.isNull()) 15748 LHSType = LHS->getType(); 15749 15750 Qualifiers::ObjCLifetime LT = LHSType.getObjCLifetime(); 15751 15752 if (LT == Qualifiers::OCL_Weak) { 15753 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc)) 15754 getCurFunction()->markSafeWeakUse(LHS); 15755 } 15756 15757 if (checkUnsafeAssigns(Loc, LHSType, RHS)) 15758 return; 15759 15760 // FIXME. Check for other life times. 15761 if (LT != Qualifiers::OCL_None) 15762 return; 15763 15764 if (PRE) { 15765 if (PRE->isImplicitProperty()) 15766 return; 15767 const ObjCPropertyDecl *PD = PRE->getExplicitProperty(); 15768 if (!PD) 15769 return; 15770 15771 unsigned Attributes = PD->getPropertyAttributes(); 15772 if (Attributes & ObjCPropertyAttribute::kind_assign) { 15773 // when 'assign' attribute was not explicitly specified 15774 // by user, ignore it and rely on property type itself 15775 // for lifetime info. 15776 unsigned AsWrittenAttr = PD->getPropertyAttributesAsWritten(); 15777 if (!(AsWrittenAttr & ObjCPropertyAttribute::kind_assign) && 15778 LHSType->isObjCRetainableType()) 15779 return; 15780 15781 while (ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(RHS)) { 15782 if (cast->getCastKind() == CK_ARCConsumeObject) { 15783 Diag(Loc, diag::warn_arc_retained_property_assign) 15784 << RHS->getSourceRange(); 15785 return; 15786 } 15787 RHS = cast->getSubExpr(); 15788 } 15789 } else if (Attributes & ObjCPropertyAttribute::kind_weak) { 15790 if (checkUnsafeAssignObject(*this, Loc, Qualifiers::OCL_Weak, RHS, true)) 15791 return; 15792 } 15793 } 15794 } 15795 15796 //===--- CHECK: Empty statement body (-Wempty-body) ---------------------===// 15797 15798 static bool ShouldDiagnoseEmptyStmtBody(const SourceManager &SourceMgr, 15799 SourceLocation StmtLoc, 15800 const NullStmt *Body) { 15801 // Do not warn if the body is a macro that expands to nothing, e.g: 15802 // 15803 // #define CALL(x) 15804 // if (condition) 15805 // CALL(0); 15806 if (Body->hasLeadingEmptyMacro()) 15807 return false; 15808 15809 // Get line numbers of statement and body. 15810 bool StmtLineInvalid; 15811 unsigned StmtLine = SourceMgr.getPresumedLineNumber(StmtLoc, 15812 &StmtLineInvalid); 15813 if (StmtLineInvalid) 15814 return false; 15815 15816 bool BodyLineInvalid; 15817 unsigned BodyLine = SourceMgr.getSpellingLineNumber(Body->getSemiLoc(), 15818 &BodyLineInvalid); 15819 if (BodyLineInvalid) 15820 return false; 15821 15822 // Warn if null statement and body are on the same line. 15823 if (StmtLine != BodyLine) 15824 return false; 15825 15826 return true; 15827 } 15828 15829 void Sema::DiagnoseEmptyStmtBody(SourceLocation StmtLoc, 15830 const Stmt *Body, 15831 unsigned DiagID) { 15832 // Since this is a syntactic check, don't emit diagnostic for template 15833 // instantiations, this just adds noise. 15834 if (CurrentInstantiationScope) 15835 return; 15836 15837 // The body should be a null statement. 15838 const NullStmt *NBody = dyn_cast<NullStmt>(Body); 15839 if (!NBody) 15840 return; 15841 15842 // Do the usual checks. 15843 if (!ShouldDiagnoseEmptyStmtBody(SourceMgr, StmtLoc, NBody)) 15844 return; 15845 15846 Diag(NBody->getSemiLoc(), DiagID); 15847 Diag(NBody->getSemiLoc(), diag::note_empty_body_on_separate_line); 15848 } 15849 15850 void Sema::DiagnoseEmptyLoopBody(const Stmt *S, 15851 const Stmt *PossibleBody) { 15852 assert(!CurrentInstantiationScope); // Ensured by caller 15853 15854 SourceLocation StmtLoc; 15855 const Stmt *Body; 15856 unsigned DiagID; 15857 if (const ForStmt *FS = dyn_cast<ForStmt>(S)) { 15858 StmtLoc = FS->getRParenLoc(); 15859 Body = FS->getBody(); 15860 DiagID = diag::warn_empty_for_body; 15861 } else if (const WhileStmt *WS = dyn_cast<WhileStmt>(S)) { 15862 StmtLoc = WS->getCond()->getSourceRange().getEnd(); 15863 Body = WS->getBody(); 15864 DiagID = diag::warn_empty_while_body; 15865 } else 15866 return; // Neither `for' nor `while'. 15867 15868 // The body should be a null statement. 15869 const NullStmt *NBody = dyn_cast<NullStmt>(Body); 15870 if (!NBody) 15871 return; 15872 15873 // Skip expensive checks if diagnostic is disabled. 15874 if (Diags.isIgnored(DiagID, NBody->getSemiLoc())) 15875 return; 15876 15877 // Do the usual checks. 15878 if (!ShouldDiagnoseEmptyStmtBody(SourceMgr, StmtLoc, NBody)) 15879 return; 15880 15881 // `for(...);' and `while(...);' are popular idioms, so in order to keep 15882 // noise level low, emit diagnostics only if for/while is followed by a 15883 // CompoundStmt, e.g.: 15884 // for (int i = 0; i < n; i++); 15885 // { 15886 // a(i); 15887 // } 15888 // or if for/while is followed by a statement with more indentation 15889 // than for/while itself: 15890 // for (int i = 0; i < n; i++); 15891 // a(i); 15892 bool ProbableTypo = isa<CompoundStmt>(PossibleBody); 15893 if (!ProbableTypo) { 15894 bool BodyColInvalid; 15895 unsigned BodyCol = SourceMgr.getPresumedColumnNumber( 15896 PossibleBody->getBeginLoc(), &BodyColInvalid); 15897 if (BodyColInvalid) 15898 return; 15899 15900 bool StmtColInvalid; 15901 unsigned StmtCol = 15902 SourceMgr.getPresumedColumnNumber(S->getBeginLoc(), &StmtColInvalid); 15903 if (StmtColInvalid) 15904 return; 15905 15906 if (BodyCol > StmtCol) 15907 ProbableTypo = true; 15908 } 15909 15910 if (ProbableTypo) { 15911 Diag(NBody->getSemiLoc(), DiagID); 15912 Diag(NBody->getSemiLoc(), diag::note_empty_body_on_separate_line); 15913 } 15914 } 15915 15916 //===--- CHECK: Warn on self move with std::move. -------------------------===// 15917 15918 /// DiagnoseSelfMove - Emits a warning if a value is moved to itself. 15919 void Sema::DiagnoseSelfMove(const Expr *LHSExpr, const Expr *RHSExpr, 15920 SourceLocation OpLoc) { 15921 if (Diags.isIgnored(diag::warn_sizeof_pointer_expr_memaccess, OpLoc)) 15922 return; 15923 15924 if (inTemplateInstantiation()) 15925 return; 15926 15927 // Strip parens and casts away. 15928 LHSExpr = LHSExpr->IgnoreParenImpCasts(); 15929 RHSExpr = RHSExpr->IgnoreParenImpCasts(); 15930 15931 // Check for a call expression 15932 const CallExpr *CE = dyn_cast<CallExpr>(RHSExpr); 15933 if (!CE || CE->getNumArgs() != 1) 15934 return; 15935 15936 // Check for a call to std::move 15937 if (!CE->isCallToStdMove()) 15938 return; 15939 15940 // Get argument from std::move 15941 RHSExpr = CE->getArg(0); 15942 15943 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr); 15944 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr); 15945 15946 // Two DeclRefExpr's, check that the decls are the same. 15947 if (LHSDeclRef && RHSDeclRef) { 15948 if (!LHSDeclRef->getDecl() || !RHSDeclRef->getDecl()) 15949 return; 15950 if (LHSDeclRef->getDecl()->getCanonicalDecl() != 15951 RHSDeclRef->getDecl()->getCanonicalDecl()) 15952 return; 15953 15954 Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType() 15955 << LHSExpr->getSourceRange() 15956 << RHSExpr->getSourceRange(); 15957 return; 15958 } 15959 15960 // Member variables require a different approach to check for self moves. 15961 // MemberExpr's are the same if every nested MemberExpr refers to the same 15962 // Decl and that the base Expr's are DeclRefExpr's with the same Decl or 15963 // the base Expr's are CXXThisExpr's. 15964 const Expr *LHSBase = LHSExpr; 15965 const Expr *RHSBase = RHSExpr; 15966 const MemberExpr *LHSME = dyn_cast<MemberExpr>(LHSExpr); 15967 const MemberExpr *RHSME = dyn_cast<MemberExpr>(RHSExpr); 15968 if (!LHSME || !RHSME) 15969 return; 15970 15971 while (LHSME && RHSME) { 15972 if (LHSME->getMemberDecl()->getCanonicalDecl() != 15973 RHSME->getMemberDecl()->getCanonicalDecl()) 15974 return; 15975 15976 LHSBase = LHSME->getBase(); 15977 RHSBase = RHSME->getBase(); 15978 LHSME = dyn_cast<MemberExpr>(LHSBase); 15979 RHSME = dyn_cast<MemberExpr>(RHSBase); 15980 } 15981 15982 LHSDeclRef = dyn_cast<DeclRefExpr>(LHSBase); 15983 RHSDeclRef = dyn_cast<DeclRefExpr>(RHSBase); 15984 if (LHSDeclRef && RHSDeclRef) { 15985 if (!LHSDeclRef->getDecl() || !RHSDeclRef->getDecl()) 15986 return; 15987 if (LHSDeclRef->getDecl()->getCanonicalDecl() != 15988 RHSDeclRef->getDecl()->getCanonicalDecl()) 15989 return; 15990 15991 Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType() 15992 << LHSExpr->getSourceRange() 15993 << RHSExpr->getSourceRange(); 15994 return; 15995 } 15996 15997 if (isa<CXXThisExpr>(LHSBase) && isa<CXXThisExpr>(RHSBase)) 15998 Diag(OpLoc, diag::warn_self_move) << LHSExpr->getType() 15999 << LHSExpr->getSourceRange() 16000 << RHSExpr->getSourceRange(); 16001 } 16002 16003 //===--- Layout compatibility ----------------------------------------------// 16004 16005 static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2); 16006 16007 /// Check if two enumeration types are layout-compatible. 16008 static bool isLayoutCompatible(ASTContext &C, EnumDecl *ED1, EnumDecl *ED2) { 16009 // C++11 [dcl.enum] p8: 16010 // Two enumeration types are layout-compatible if they have the same 16011 // underlying type. 16012 return ED1->isComplete() && ED2->isComplete() && 16013 C.hasSameType(ED1->getIntegerType(), ED2->getIntegerType()); 16014 } 16015 16016 /// Check if two fields are layout-compatible. 16017 static bool isLayoutCompatible(ASTContext &C, FieldDecl *Field1, 16018 FieldDecl *Field2) { 16019 if (!isLayoutCompatible(C, Field1->getType(), Field2->getType())) 16020 return false; 16021 16022 if (Field1->isBitField() != Field2->isBitField()) 16023 return false; 16024 16025 if (Field1->isBitField()) { 16026 // Make sure that the bit-fields are the same length. 16027 unsigned Bits1 = Field1->getBitWidthValue(C); 16028 unsigned Bits2 = Field2->getBitWidthValue(C); 16029 16030 if (Bits1 != Bits2) 16031 return false; 16032 } 16033 16034 return true; 16035 } 16036 16037 /// Check if two standard-layout structs are layout-compatible. 16038 /// (C++11 [class.mem] p17) 16039 static bool isLayoutCompatibleStruct(ASTContext &C, RecordDecl *RD1, 16040 RecordDecl *RD2) { 16041 // If both records are C++ classes, check that base classes match. 16042 if (const CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(RD1)) { 16043 // If one of records is a CXXRecordDecl we are in C++ mode, 16044 // thus the other one is a CXXRecordDecl, too. 16045 const CXXRecordDecl *D2CXX = cast<CXXRecordDecl>(RD2); 16046 // Check number of base classes. 16047 if (D1CXX->getNumBases() != D2CXX->getNumBases()) 16048 return false; 16049 16050 // Check the base classes. 16051 for (CXXRecordDecl::base_class_const_iterator 16052 Base1 = D1CXX->bases_begin(), 16053 BaseEnd1 = D1CXX->bases_end(), 16054 Base2 = D2CXX->bases_begin(); 16055 Base1 != BaseEnd1; 16056 ++Base1, ++Base2) { 16057 if (!isLayoutCompatible(C, Base1->getType(), Base2->getType())) 16058 return false; 16059 } 16060 } else if (const CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(RD2)) { 16061 // If only RD2 is a C++ class, it should have zero base classes. 16062 if (D2CXX->getNumBases() > 0) 16063 return false; 16064 } 16065 16066 // Check the fields. 16067 RecordDecl::field_iterator Field2 = RD2->field_begin(), 16068 Field2End = RD2->field_end(), 16069 Field1 = RD1->field_begin(), 16070 Field1End = RD1->field_end(); 16071 for ( ; Field1 != Field1End && Field2 != Field2End; ++Field1, ++Field2) { 16072 if (!isLayoutCompatible(C, *Field1, *Field2)) 16073 return false; 16074 } 16075 if (Field1 != Field1End || Field2 != Field2End) 16076 return false; 16077 16078 return true; 16079 } 16080 16081 /// Check if two standard-layout unions are layout-compatible. 16082 /// (C++11 [class.mem] p18) 16083 static bool isLayoutCompatibleUnion(ASTContext &C, RecordDecl *RD1, 16084 RecordDecl *RD2) { 16085 llvm::SmallPtrSet<FieldDecl *, 8> UnmatchedFields; 16086 for (auto *Field2 : RD2->fields()) 16087 UnmatchedFields.insert(Field2); 16088 16089 for (auto *Field1 : RD1->fields()) { 16090 llvm::SmallPtrSet<FieldDecl *, 8>::iterator 16091 I = UnmatchedFields.begin(), 16092 E = UnmatchedFields.end(); 16093 16094 for ( ; I != E; ++I) { 16095 if (isLayoutCompatible(C, Field1, *I)) { 16096 bool Result = UnmatchedFields.erase(*I); 16097 (void) Result; 16098 assert(Result); 16099 break; 16100 } 16101 } 16102 if (I == E) 16103 return false; 16104 } 16105 16106 return UnmatchedFields.empty(); 16107 } 16108 16109 static bool isLayoutCompatible(ASTContext &C, RecordDecl *RD1, 16110 RecordDecl *RD2) { 16111 if (RD1->isUnion() != RD2->isUnion()) 16112 return false; 16113 16114 if (RD1->isUnion()) 16115 return isLayoutCompatibleUnion(C, RD1, RD2); 16116 else 16117 return isLayoutCompatibleStruct(C, RD1, RD2); 16118 } 16119 16120 /// Check if two types are layout-compatible in C++11 sense. 16121 static bool isLayoutCompatible(ASTContext &C, QualType T1, QualType T2) { 16122 if (T1.isNull() || T2.isNull()) 16123 return false; 16124 16125 // C++11 [basic.types] p11: 16126 // If two types T1 and T2 are the same type, then T1 and T2 are 16127 // layout-compatible types. 16128 if (C.hasSameType(T1, T2)) 16129 return true; 16130 16131 T1 = T1.getCanonicalType().getUnqualifiedType(); 16132 T2 = T2.getCanonicalType().getUnqualifiedType(); 16133 16134 const Type::TypeClass TC1 = T1->getTypeClass(); 16135 const Type::TypeClass TC2 = T2->getTypeClass(); 16136 16137 if (TC1 != TC2) 16138 return false; 16139 16140 if (TC1 == Type::Enum) { 16141 return isLayoutCompatible(C, 16142 cast<EnumType>(T1)->getDecl(), 16143 cast<EnumType>(T2)->getDecl()); 16144 } else if (TC1 == Type::Record) { 16145 if (!T1->isStandardLayoutType() || !T2->isStandardLayoutType()) 16146 return false; 16147 16148 return isLayoutCompatible(C, 16149 cast<RecordType>(T1)->getDecl(), 16150 cast<RecordType>(T2)->getDecl()); 16151 } 16152 16153 return false; 16154 } 16155 16156 //===--- CHECK: pointer_with_type_tag attribute: datatypes should match ----// 16157 16158 /// Given a type tag expression find the type tag itself. 16159 /// 16160 /// \param TypeExpr Type tag expression, as it appears in user's code. 16161 /// 16162 /// \param VD Declaration of an identifier that appears in a type tag. 16163 /// 16164 /// \param MagicValue Type tag magic value. 16165 /// 16166 /// \param isConstantEvaluated whether the evalaution should be performed in 16167 16168 /// constant context. 16169 static bool FindTypeTagExpr(const Expr *TypeExpr, const ASTContext &Ctx, 16170 const ValueDecl **VD, uint64_t *MagicValue, 16171 bool isConstantEvaluated) { 16172 while(true) { 16173 if (!TypeExpr) 16174 return false; 16175 16176 TypeExpr = TypeExpr->IgnoreParenImpCasts()->IgnoreParenCasts(); 16177 16178 switch (TypeExpr->getStmtClass()) { 16179 case Stmt::UnaryOperatorClass: { 16180 const UnaryOperator *UO = cast<UnaryOperator>(TypeExpr); 16181 if (UO->getOpcode() == UO_AddrOf || UO->getOpcode() == UO_Deref) { 16182 TypeExpr = UO->getSubExpr(); 16183 continue; 16184 } 16185 return false; 16186 } 16187 16188 case Stmt::DeclRefExprClass: { 16189 const DeclRefExpr *DRE = cast<DeclRefExpr>(TypeExpr); 16190 *VD = DRE->getDecl(); 16191 return true; 16192 } 16193 16194 case Stmt::IntegerLiteralClass: { 16195 const IntegerLiteral *IL = cast<IntegerLiteral>(TypeExpr); 16196 llvm::APInt MagicValueAPInt = IL->getValue(); 16197 if (MagicValueAPInt.getActiveBits() <= 64) { 16198 *MagicValue = MagicValueAPInt.getZExtValue(); 16199 return true; 16200 } else 16201 return false; 16202 } 16203 16204 case Stmt::BinaryConditionalOperatorClass: 16205 case Stmt::ConditionalOperatorClass: { 16206 const AbstractConditionalOperator *ACO = 16207 cast<AbstractConditionalOperator>(TypeExpr); 16208 bool Result; 16209 if (ACO->getCond()->EvaluateAsBooleanCondition(Result, Ctx, 16210 isConstantEvaluated)) { 16211 if (Result) 16212 TypeExpr = ACO->getTrueExpr(); 16213 else 16214 TypeExpr = ACO->getFalseExpr(); 16215 continue; 16216 } 16217 return false; 16218 } 16219 16220 case Stmt::BinaryOperatorClass: { 16221 const BinaryOperator *BO = cast<BinaryOperator>(TypeExpr); 16222 if (BO->getOpcode() == BO_Comma) { 16223 TypeExpr = BO->getRHS(); 16224 continue; 16225 } 16226 return false; 16227 } 16228 16229 default: 16230 return false; 16231 } 16232 } 16233 } 16234 16235 /// Retrieve the C type corresponding to type tag TypeExpr. 16236 /// 16237 /// \param TypeExpr Expression that specifies a type tag. 16238 /// 16239 /// \param MagicValues Registered magic values. 16240 /// 16241 /// \param FoundWrongKind Set to true if a type tag was found, but of a wrong 16242 /// kind. 16243 /// 16244 /// \param TypeInfo Information about the corresponding C type. 16245 /// 16246 /// \param isConstantEvaluated whether the evalaution should be performed in 16247 /// constant context. 16248 /// 16249 /// \returns true if the corresponding C type was found. 16250 static bool GetMatchingCType( 16251 const IdentifierInfo *ArgumentKind, const Expr *TypeExpr, 16252 const ASTContext &Ctx, 16253 const llvm::DenseMap<Sema::TypeTagMagicValue, Sema::TypeTagData> 16254 *MagicValues, 16255 bool &FoundWrongKind, Sema::TypeTagData &TypeInfo, 16256 bool isConstantEvaluated) { 16257 FoundWrongKind = false; 16258 16259 // Variable declaration that has type_tag_for_datatype attribute. 16260 const ValueDecl *VD = nullptr; 16261 16262 uint64_t MagicValue; 16263 16264 if (!FindTypeTagExpr(TypeExpr, Ctx, &VD, &MagicValue, isConstantEvaluated)) 16265 return false; 16266 16267 if (VD) { 16268 if (TypeTagForDatatypeAttr *I = VD->getAttr<TypeTagForDatatypeAttr>()) { 16269 if (I->getArgumentKind() != ArgumentKind) { 16270 FoundWrongKind = true; 16271 return false; 16272 } 16273 TypeInfo.Type = I->getMatchingCType(); 16274 TypeInfo.LayoutCompatible = I->getLayoutCompatible(); 16275 TypeInfo.MustBeNull = I->getMustBeNull(); 16276 return true; 16277 } 16278 return false; 16279 } 16280 16281 if (!MagicValues) 16282 return false; 16283 16284 llvm::DenseMap<Sema::TypeTagMagicValue, 16285 Sema::TypeTagData>::const_iterator I = 16286 MagicValues->find(std::make_pair(ArgumentKind, MagicValue)); 16287 if (I == MagicValues->end()) 16288 return false; 16289 16290 TypeInfo = I->second; 16291 return true; 16292 } 16293 16294 void Sema::RegisterTypeTagForDatatype(const IdentifierInfo *ArgumentKind, 16295 uint64_t MagicValue, QualType Type, 16296 bool LayoutCompatible, 16297 bool MustBeNull) { 16298 if (!TypeTagForDatatypeMagicValues) 16299 TypeTagForDatatypeMagicValues.reset( 16300 new llvm::DenseMap<TypeTagMagicValue, TypeTagData>); 16301 16302 TypeTagMagicValue Magic(ArgumentKind, MagicValue); 16303 (*TypeTagForDatatypeMagicValues)[Magic] = 16304 TypeTagData(Type, LayoutCompatible, MustBeNull); 16305 } 16306 16307 static bool IsSameCharType(QualType T1, QualType T2) { 16308 const BuiltinType *BT1 = T1->getAs<BuiltinType>(); 16309 if (!BT1) 16310 return false; 16311 16312 const BuiltinType *BT2 = T2->getAs<BuiltinType>(); 16313 if (!BT2) 16314 return false; 16315 16316 BuiltinType::Kind T1Kind = BT1->getKind(); 16317 BuiltinType::Kind T2Kind = BT2->getKind(); 16318 16319 return (T1Kind == BuiltinType::SChar && T2Kind == BuiltinType::Char_S) || 16320 (T1Kind == BuiltinType::UChar && T2Kind == BuiltinType::Char_U) || 16321 (T1Kind == BuiltinType::Char_U && T2Kind == BuiltinType::UChar) || 16322 (T1Kind == BuiltinType::Char_S && T2Kind == BuiltinType::SChar); 16323 } 16324 16325 void Sema::CheckArgumentWithTypeTag(const ArgumentWithTypeTagAttr *Attr, 16326 const ArrayRef<const Expr *> ExprArgs, 16327 SourceLocation CallSiteLoc) { 16328 const IdentifierInfo *ArgumentKind = Attr->getArgumentKind(); 16329 bool IsPointerAttr = Attr->getIsPointer(); 16330 16331 // Retrieve the argument representing the 'type_tag'. 16332 unsigned TypeTagIdxAST = Attr->getTypeTagIdx().getASTIndex(); 16333 if (TypeTagIdxAST >= ExprArgs.size()) { 16334 Diag(CallSiteLoc, diag::err_tag_index_out_of_range) 16335 << 0 << Attr->getTypeTagIdx().getSourceIndex(); 16336 return; 16337 } 16338 const Expr *TypeTagExpr = ExprArgs[TypeTagIdxAST]; 16339 bool FoundWrongKind; 16340 TypeTagData TypeInfo; 16341 if (!GetMatchingCType(ArgumentKind, TypeTagExpr, Context, 16342 TypeTagForDatatypeMagicValues.get(), FoundWrongKind, 16343 TypeInfo, isConstantEvaluated())) { 16344 if (FoundWrongKind) 16345 Diag(TypeTagExpr->getExprLoc(), 16346 diag::warn_type_tag_for_datatype_wrong_kind) 16347 << TypeTagExpr->getSourceRange(); 16348 return; 16349 } 16350 16351 // Retrieve the argument representing the 'arg_idx'. 16352 unsigned ArgumentIdxAST = Attr->getArgumentIdx().getASTIndex(); 16353 if (ArgumentIdxAST >= ExprArgs.size()) { 16354 Diag(CallSiteLoc, diag::err_tag_index_out_of_range) 16355 << 1 << Attr->getArgumentIdx().getSourceIndex(); 16356 return; 16357 } 16358 const Expr *ArgumentExpr = ExprArgs[ArgumentIdxAST]; 16359 if (IsPointerAttr) { 16360 // Skip implicit cast of pointer to `void *' (as a function argument). 16361 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(ArgumentExpr)) 16362 if (ICE->getType()->isVoidPointerType() && 16363 ICE->getCastKind() == CK_BitCast) 16364 ArgumentExpr = ICE->getSubExpr(); 16365 } 16366 QualType ArgumentType = ArgumentExpr->getType(); 16367 16368 // Passing a `void*' pointer shouldn't trigger a warning. 16369 if (IsPointerAttr && ArgumentType->isVoidPointerType()) 16370 return; 16371 16372 if (TypeInfo.MustBeNull) { 16373 // Type tag with matching void type requires a null pointer. 16374 if (!ArgumentExpr->isNullPointerConstant(Context, 16375 Expr::NPC_ValueDependentIsNotNull)) { 16376 Diag(ArgumentExpr->getExprLoc(), 16377 diag::warn_type_safety_null_pointer_required) 16378 << ArgumentKind->getName() 16379 << ArgumentExpr->getSourceRange() 16380 << TypeTagExpr->getSourceRange(); 16381 } 16382 return; 16383 } 16384 16385 QualType RequiredType = TypeInfo.Type; 16386 if (IsPointerAttr) 16387 RequiredType = Context.getPointerType(RequiredType); 16388 16389 bool mismatch = false; 16390 if (!TypeInfo.LayoutCompatible) { 16391 mismatch = !Context.hasSameType(ArgumentType, RequiredType); 16392 16393 // C++11 [basic.fundamental] p1: 16394 // Plain char, signed char, and unsigned char are three distinct types. 16395 // 16396 // But we treat plain `char' as equivalent to `signed char' or `unsigned 16397 // char' depending on the current char signedness mode. 16398 if (mismatch) 16399 if ((IsPointerAttr && IsSameCharType(ArgumentType->getPointeeType(), 16400 RequiredType->getPointeeType())) || 16401 (!IsPointerAttr && IsSameCharType(ArgumentType, RequiredType))) 16402 mismatch = false; 16403 } else 16404 if (IsPointerAttr) 16405 mismatch = !isLayoutCompatible(Context, 16406 ArgumentType->getPointeeType(), 16407 RequiredType->getPointeeType()); 16408 else 16409 mismatch = !isLayoutCompatible(Context, ArgumentType, RequiredType); 16410 16411 if (mismatch) 16412 Diag(ArgumentExpr->getExprLoc(), diag::warn_type_safety_type_mismatch) 16413 << ArgumentType << ArgumentKind 16414 << TypeInfo.LayoutCompatible << RequiredType 16415 << ArgumentExpr->getSourceRange() 16416 << TypeTagExpr->getSourceRange(); 16417 } 16418 16419 void Sema::AddPotentialMisalignedMembers(Expr *E, RecordDecl *RD, ValueDecl *MD, 16420 CharUnits Alignment) { 16421 MisalignedMembers.emplace_back(E, RD, MD, Alignment); 16422 } 16423 16424 void Sema::DiagnoseMisalignedMembers() { 16425 for (MisalignedMember &m : MisalignedMembers) { 16426 const NamedDecl *ND = m.RD; 16427 if (ND->getName().empty()) { 16428 if (const TypedefNameDecl *TD = m.RD->getTypedefNameForAnonDecl()) 16429 ND = TD; 16430 } 16431 Diag(m.E->getBeginLoc(), diag::warn_taking_address_of_packed_member) 16432 << m.MD << ND << m.E->getSourceRange(); 16433 } 16434 MisalignedMembers.clear(); 16435 } 16436 16437 void Sema::DiscardMisalignedMemberAddress(const Type *T, Expr *E) { 16438 E = E->IgnoreParens(); 16439 if (!T->isPointerType() && !T->isIntegerType()) 16440 return; 16441 if (isa<UnaryOperator>(E) && 16442 cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf) { 16443 auto *Op = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens(); 16444 if (isa<MemberExpr>(Op)) { 16445 auto MA = llvm::find(MisalignedMembers, MisalignedMember(Op)); 16446 if (MA != MisalignedMembers.end() && 16447 (T->isIntegerType() || 16448 (T->isPointerType() && (T->getPointeeType()->isIncompleteType() || 16449 Context.getTypeAlignInChars( 16450 T->getPointeeType()) <= MA->Alignment)))) 16451 MisalignedMembers.erase(MA); 16452 } 16453 } 16454 } 16455 16456 void Sema::RefersToMemberWithReducedAlignment( 16457 Expr *E, 16458 llvm::function_ref<void(Expr *, RecordDecl *, FieldDecl *, CharUnits)> 16459 Action) { 16460 const auto *ME = dyn_cast<MemberExpr>(E); 16461 if (!ME) 16462 return; 16463 16464 // No need to check expressions with an __unaligned-qualified type. 16465 if (E->getType().getQualifiers().hasUnaligned()) 16466 return; 16467 16468 // For a chain of MemberExpr like "a.b.c.d" this list 16469 // will keep FieldDecl's like [d, c, b]. 16470 SmallVector<FieldDecl *, 4> ReverseMemberChain; 16471 const MemberExpr *TopME = nullptr; 16472 bool AnyIsPacked = false; 16473 do { 16474 QualType BaseType = ME->getBase()->getType(); 16475 if (BaseType->isDependentType()) 16476 return; 16477 if (ME->isArrow()) 16478 BaseType = BaseType->getPointeeType(); 16479 RecordDecl *RD = BaseType->castAs<RecordType>()->getDecl(); 16480 if (RD->isInvalidDecl()) 16481 return; 16482 16483 ValueDecl *MD = ME->getMemberDecl(); 16484 auto *FD = dyn_cast<FieldDecl>(MD); 16485 // We do not care about non-data members. 16486 if (!FD || FD->isInvalidDecl()) 16487 return; 16488 16489 AnyIsPacked = 16490 AnyIsPacked || (RD->hasAttr<PackedAttr>() || MD->hasAttr<PackedAttr>()); 16491 ReverseMemberChain.push_back(FD); 16492 16493 TopME = ME; 16494 ME = dyn_cast<MemberExpr>(ME->getBase()->IgnoreParens()); 16495 } while (ME); 16496 assert(TopME && "We did not compute a topmost MemberExpr!"); 16497 16498 // Not the scope of this diagnostic. 16499 if (!AnyIsPacked) 16500 return; 16501 16502 const Expr *TopBase = TopME->getBase()->IgnoreParenImpCasts(); 16503 const auto *DRE = dyn_cast<DeclRefExpr>(TopBase); 16504 // TODO: The innermost base of the member expression may be too complicated. 16505 // For now, just disregard these cases. This is left for future 16506 // improvement. 16507 if (!DRE && !isa<CXXThisExpr>(TopBase)) 16508 return; 16509 16510 // Alignment expected by the whole expression. 16511 CharUnits ExpectedAlignment = Context.getTypeAlignInChars(E->getType()); 16512 16513 // No need to do anything else with this case. 16514 if (ExpectedAlignment.isOne()) 16515 return; 16516 16517 // Synthesize offset of the whole access. 16518 CharUnits Offset; 16519 for (auto I = ReverseMemberChain.rbegin(); I != ReverseMemberChain.rend(); 16520 I++) { 16521 Offset += Context.toCharUnitsFromBits(Context.getFieldOffset(*I)); 16522 } 16523 16524 // Compute the CompleteObjectAlignment as the alignment of the whole chain. 16525 CharUnits CompleteObjectAlignment = Context.getTypeAlignInChars( 16526 ReverseMemberChain.back()->getParent()->getTypeForDecl()); 16527 16528 // The base expression of the innermost MemberExpr may give 16529 // stronger guarantees than the class containing the member. 16530 if (DRE && !TopME->isArrow()) { 16531 const ValueDecl *VD = DRE->getDecl(); 16532 if (!VD->getType()->isReferenceType()) 16533 CompleteObjectAlignment = 16534 std::max(CompleteObjectAlignment, Context.getDeclAlign(VD)); 16535 } 16536 16537 // Check if the synthesized offset fulfills the alignment. 16538 if (Offset % ExpectedAlignment != 0 || 16539 // It may fulfill the offset it but the effective alignment may still be 16540 // lower than the expected expression alignment. 16541 CompleteObjectAlignment < ExpectedAlignment) { 16542 // If this happens, we want to determine a sensible culprit of this. 16543 // Intuitively, watching the chain of member expressions from right to 16544 // left, we start with the required alignment (as required by the field 16545 // type) but some packed attribute in that chain has reduced the alignment. 16546 // It may happen that another packed structure increases it again. But if 16547 // we are here such increase has not been enough. So pointing the first 16548 // FieldDecl that either is packed or else its RecordDecl is, 16549 // seems reasonable. 16550 FieldDecl *FD = nullptr; 16551 CharUnits Alignment; 16552 for (FieldDecl *FDI : ReverseMemberChain) { 16553 if (FDI->hasAttr<PackedAttr>() || 16554 FDI->getParent()->hasAttr<PackedAttr>()) { 16555 FD = FDI; 16556 Alignment = std::min( 16557 Context.getTypeAlignInChars(FD->getType()), 16558 Context.getTypeAlignInChars(FD->getParent()->getTypeForDecl())); 16559 break; 16560 } 16561 } 16562 assert(FD && "We did not find a packed FieldDecl!"); 16563 Action(E, FD->getParent(), FD, Alignment); 16564 } 16565 } 16566 16567 void Sema::CheckAddressOfPackedMember(Expr *rhs) { 16568 using namespace std::placeholders; 16569 16570 RefersToMemberWithReducedAlignment( 16571 rhs, std::bind(&Sema::AddPotentialMisalignedMembers, std::ref(*this), _1, 16572 _2, _3, _4)); 16573 } 16574 16575 ExprResult Sema::SemaBuiltinMatrixTranspose(CallExpr *TheCall, 16576 ExprResult CallResult) { 16577 if (checkArgCount(*this, TheCall, 1)) 16578 return ExprError(); 16579 16580 ExprResult MatrixArg = DefaultLvalueConversion(TheCall->getArg(0)); 16581 if (MatrixArg.isInvalid()) 16582 return MatrixArg; 16583 Expr *Matrix = MatrixArg.get(); 16584 16585 auto *MType = Matrix->getType()->getAs<ConstantMatrixType>(); 16586 if (!MType) { 16587 Diag(Matrix->getBeginLoc(), diag::err_builtin_matrix_arg); 16588 return ExprError(); 16589 } 16590 16591 // Create returned matrix type by swapping rows and columns of the argument 16592 // matrix type. 16593 QualType ResultType = Context.getConstantMatrixType( 16594 MType->getElementType(), MType->getNumColumns(), MType->getNumRows()); 16595 16596 // Change the return type to the type of the returned matrix. 16597 TheCall->setType(ResultType); 16598 16599 // Update call argument to use the possibly converted matrix argument. 16600 TheCall->setArg(0, Matrix); 16601 return CallResult; 16602 } 16603 16604 // Get and verify the matrix dimensions. 16605 static llvm::Optional<unsigned> 16606 getAndVerifyMatrixDimension(Expr *Expr, StringRef Name, Sema &S) { 16607 SourceLocation ErrorPos; 16608 Optional<llvm::APSInt> Value = 16609 Expr->getIntegerConstantExpr(S.Context, &ErrorPos); 16610 if (!Value) { 16611 S.Diag(Expr->getBeginLoc(), diag::err_builtin_matrix_scalar_unsigned_arg) 16612 << Name; 16613 return {}; 16614 } 16615 uint64_t Dim = Value->getZExtValue(); 16616 if (!ConstantMatrixType::isDimensionValid(Dim)) { 16617 S.Diag(Expr->getBeginLoc(), diag::err_builtin_matrix_invalid_dimension) 16618 << Name << ConstantMatrixType::getMaxElementsPerDimension(); 16619 return {}; 16620 } 16621 return Dim; 16622 } 16623 16624 ExprResult Sema::SemaBuiltinMatrixColumnMajorLoad(CallExpr *TheCall, 16625 ExprResult CallResult) { 16626 if (!getLangOpts().MatrixTypes) { 16627 Diag(TheCall->getBeginLoc(), diag::err_builtin_matrix_disabled); 16628 return ExprError(); 16629 } 16630 16631 if (checkArgCount(*this, TheCall, 4)) 16632 return ExprError(); 16633 16634 unsigned PtrArgIdx = 0; 16635 Expr *PtrExpr = TheCall->getArg(PtrArgIdx); 16636 Expr *RowsExpr = TheCall->getArg(1); 16637 Expr *ColumnsExpr = TheCall->getArg(2); 16638 Expr *StrideExpr = TheCall->getArg(3); 16639 16640 bool ArgError = false; 16641 16642 // Check pointer argument. 16643 { 16644 ExprResult PtrConv = DefaultFunctionArrayLvalueConversion(PtrExpr); 16645 if (PtrConv.isInvalid()) 16646 return PtrConv; 16647 PtrExpr = PtrConv.get(); 16648 TheCall->setArg(0, PtrExpr); 16649 if (PtrExpr->isTypeDependent()) { 16650 TheCall->setType(Context.DependentTy); 16651 return TheCall; 16652 } 16653 } 16654 16655 auto *PtrTy = PtrExpr->getType()->getAs<PointerType>(); 16656 QualType ElementTy; 16657 if (!PtrTy) { 16658 Diag(PtrExpr->getBeginLoc(), diag::err_builtin_matrix_pointer_arg) 16659 << PtrArgIdx + 1; 16660 ArgError = true; 16661 } else { 16662 ElementTy = PtrTy->getPointeeType().getUnqualifiedType(); 16663 16664 if (!ConstantMatrixType::isValidElementType(ElementTy)) { 16665 Diag(PtrExpr->getBeginLoc(), diag::err_builtin_matrix_pointer_arg) 16666 << PtrArgIdx + 1; 16667 ArgError = true; 16668 } 16669 } 16670 16671 // Apply default Lvalue conversions and convert the expression to size_t. 16672 auto ApplyArgumentConversions = [this](Expr *E) { 16673 ExprResult Conv = DefaultLvalueConversion(E); 16674 if (Conv.isInvalid()) 16675 return Conv; 16676 16677 return tryConvertExprToType(Conv.get(), Context.getSizeType()); 16678 }; 16679 16680 // Apply conversion to row and column expressions. 16681 ExprResult RowsConv = ApplyArgumentConversions(RowsExpr); 16682 if (!RowsConv.isInvalid()) { 16683 RowsExpr = RowsConv.get(); 16684 TheCall->setArg(1, RowsExpr); 16685 } else 16686 RowsExpr = nullptr; 16687 16688 ExprResult ColumnsConv = ApplyArgumentConversions(ColumnsExpr); 16689 if (!ColumnsConv.isInvalid()) { 16690 ColumnsExpr = ColumnsConv.get(); 16691 TheCall->setArg(2, ColumnsExpr); 16692 } else 16693 ColumnsExpr = nullptr; 16694 16695 // If any any part of the result matrix type is still pending, just use 16696 // Context.DependentTy, until all parts are resolved. 16697 if ((RowsExpr && RowsExpr->isTypeDependent()) || 16698 (ColumnsExpr && ColumnsExpr->isTypeDependent())) { 16699 TheCall->setType(Context.DependentTy); 16700 return CallResult; 16701 } 16702 16703 // Check row and column dimensions. 16704 llvm::Optional<unsigned> MaybeRows; 16705 if (RowsExpr) 16706 MaybeRows = getAndVerifyMatrixDimension(RowsExpr, "row", *this); 16707 16708 llvm::Optional<unsigned> MaybeColumns; 16709 if (ColumnsExpr) 16710 MaybeColumns = getAndVerifyMatrixDimension(ColumnsExpr, "column", *this); 16711 16712 // Check stride argument. 16713 ExprResult StrideConv = ApplyArgumentConversions(StrideExpr); 16714 if (StrideConv.isInvalid()) 16715 return ExprError(); 16716 StrideExpr = StrideConv.get(); 16717 TheCall->setArg(3, StrideExpr); 16718 16719 if (MaybeRows) { 16720 if (Optional<llvm::APSInt> Value = 16721 StrideExpr->getIntegerConstantExpr(Context)) { 16722 uint64_t Stride = Value->getZExtValue(); 16723 if (Stride < *MaybeRows) { 16724 Diag(StrideExpr->getBeginLoc(), 16725 diag::err_builtin_matrix_stride_too_small); 16726 ArgError = true; 16727 } 16728 } 16729 } 16730 16731 if (ArgError || !MaybeRows || !MaybeColumns) 16732 return ExprError(); 16733 16734 TheCall->setType( 16735 Context.getConstantMatrixType(ElementTy, *MaybeRows, *MaybeColumns)); 16736 return CallResult; 16737 } 16738 16739 ExprResult Sema::SemaBuiltinMatrixColumnMajorStore(CallExpr *TheCall, 16740 ExprResult CallResult) { 16741 if (checkArgCount(*this, TheCall, 3)) 16742 return ExprError(); 16743 16744 unsigned PtrArgIdx = 1; 16745 Expr *MatrixExpr = TheCall->getArg(0); 16746 Expr *PtrExpr = TheCall->getArg(PtrArgIdx); 16747 Expr *StrideExpr = TheCall->getArg(2); 16748 16749 bool ArgError = false; 16750 16751 { 16752 ExprResult MatrixConv = DefaultLvalueConversion(MatrixExpr); 16753 if (MatrixConv.isInvalid()) 16754 return MatrixConv; 16755 MatrixExpr = MatrixConv.get(); 16756 TheCall->setArg(0, MatrixExpr); 16757 } 16758 if (MatrixExpr->isTypeDependent()) { 16759 TheCall->setType(Context.DependentTy); 16760 return TheCall; 16761 } 16762 16763 auto *MatrixTy = MatrixExpr->getType()->getAs<ConstantMatrixType>(); 16764 if (!MatrixTy) { 16765 Diag(MatrixExpr->getBeginLoc(), diag::err_builtin_matrix_arg) << 0; 16766 ArgError = true; 16767 } 16768 16769 { 16770 ExprResult PtrConv = DefaultFunctionArrayLvalueConversion(PtrExpr); 16771 if (PtrConv.isInvalid()) 16772 return PtrConv; 16773 PtrExpr = PtrConv.get(); 16774 TheCall->setArg(1, PtrExpr); 16775 if (PtrExpr->isTypeDependent()) { 16776 TheCall->setType(Context.DependentTy); 16777 return TheCall; 16778 } 16779 } 16780 16781 // Check pointer argument. 16782 auto *PtrTy = PtrExpr->getType()->getAs<PointerType>(); 16783 if (!PtrTy) { 16784 Diag(PtrExpr->getBeginLoc(), diag::err_builtin_matrix_pointer_arg) 16785 << PtrArgIdx + 1; 16786 ArgError = true; 16787 } else { 16788 QualType ElementTy = PtrTy->getPointeeType(); 16789 if (ElementTy.isConstQualified()) { 16790 Diag(PtrExpr->getBeginLoc(), diag::err_builtin_matrix_store_to_const); 16791 ArgError = true; 16792 } 16793 ElementTy = ElementTy.getUnqualifiedType().getCanonicalType(); 16794 if (MatrixTy && 16795 !Context.hasSameType(ElementTy, MatrixTy->getElementType())) { 16796 Diag(PtrExpr->getBeginLoc(), 16797 diag::err_builtin_matrix_pointer_arg_mismatch) 16798 << ElementTy << MatrixTy->getElementType(); 16799 ArgError = true; 16800 } 16801 } 16802 16803 // Apply default Lvalue conversions and convert the stride expression to 16804 // size_t. 16805 { 16806 ExprResult StrideConv = DefaultLvalueConversion(StrideExpr); 16807 if (StrideConv.isInvalid()) 16808 return StrideConv; 16809 16810 StrideConv = tryConvertExprToType(StrideConv.get(), Context.getSizeType()); 16811 if (StrideConv.isInvalid()) 16812 return StrideConv; 16813 StrideExpr = StrideConv.get(); 16814 TheCall->setArg(2, StrideExpr); 16815 } 16816 16817 // Check stride argument. 16818 if (MatrixTy) { 16819 if (Optional<llvm::APSInt> Value = 16820 StrideExpr->getIntegerConstantExpr(Context)) { 16821 uint64_t Stride = Value->getZExtValue(); 16822 if (Stride < MatrixTy->getNumRows()) { 16823 Diag(StrideExpr->getBeginLoc(), 16824 diag::err_builtin_matrix_stride_too_small); 16825 ArgError = true; 16826 } 16827 } 16828 } 16829 16830 if (ArgError) 16831 return ExprError(); 16832 16833 return CallResult; 16834 } 16835 16836 /// \brief Enforce the bounds of a TCB 16837 /// CheckTCBEnforcement - Enforces that every function in a named TCB only 16838 /// directly calls other functions in the same TCB as marked by the enforce_tcb 16839 /// and enforce_tcb_leaf attributes. 16840 void Sema::CheckTCBEnforcement(const CallExpr *TheCall, 16841 const FunctionDecl *Callee) { 16842 const FunctionDecl *Caller = getCurFunctionDecl(); 16843 16844 // Calls to builtins are not enforced. 16845 if (!Caller || !Caller->hasAttr<EnforceTCBAttr>() || 16846 Callee->getBuiltinID() != 0) 16847 return; 16848 16849 // Search through the enforce_tcb and enforce_tcb_leaf attributes to find 16850 // all TCBs the callee is a part of. 16851 llvm::StringSet<> CalleeTCBs; 16852 for_each(Callee->specific_attrs<EnforceTCBAttr>(), 16853 [&](const auto *A) { CalleeTCBs.insert(A->getTCBName()); }); 16854 for_each(Callee->specific_attrs<EnforceTCBLeafAttr>(), 16855 [&](const auto *A) { CalleeTCBs.insert(A->getTCBName()); }); 16856 16857 // Go through the TCBs the caller is a part of and emit warnings if Caller 16858 // is in a TCB that the Callee is not. 16859 for_each( 16860 Caller->specific_attrs<EnforceTCBAttr>(), 16861 [&](const auto *A) { 16862 StringRef CallerTCB = A->getTCBName(); 16863 if (CalleeTCBs.count(CallerTCB) == 0) { 16864 this->Diag(TheCall->getExprLoc(), 16865 diag::warn_tcb_enforcement_violation) << Callee 16866 << CallerTCB; 16867 } 16868 }); 16869 } 16870