1 //===--- SemaDeclAttr.cpp - Declaration Attribute Handling ----------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements decl-related attribute processing. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/AST/ASTConsumer.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/ASTMutationListener.h" 17 #include "clang/AST/CXXInheritance.h" 18 #include "clang/AST/DeclCXX.h" 19 #include "clang/AST/DeclObjC.h" 20 #include "clang/AST/DeclTemplate.h" 21 #include "clang/AST/Expr.h" 22 #include "clang/AST/ExprCXX.h" 23 #include "clang/AST/Mangle.h" 24 #include "clang/AST/RecursiveASTVisitor.h" 25 #include "clang/Basic/CharInfo.h" 26 #include "clang/Basic/SourceManager.h" 27 #include "clang/Basic/TargetInfo.h" 28 #include "clang/Lex/Preprocessor.h" 29 #include "clang/Sema/DeclSpec.h" 30 #include "clang/Sema/DelayedDiagnostic.h" 31 #include "clang/Sema/Initialization.h" 32 #include "clang/Sema/Lookup.h" 33 #include "clang/Sema/Scope.h" 34 #include "clang/Sema/ScopeInfo.h" 35 #include "clang/Sema/SemaInternal.h" 36 #include "llvm/ADT/STLExtras.h" 37 #include "llvm/ADT/StringExtras.h" 38 #include "llvm/Support/MathExtras.h" 39 40 using namespace clang; 41 using namespace sema; 42 43 namespace AttributeLangSupport { 44 enum LANG { 45 C, 46 Cpp, 47 ObjC 48 }; 49 } // end namespace AttributeLangSupport 50 51 //===----------------------------------------------------------------------===// 52 // Helper functions 53 //===----------------------------------------------------------------------===// 54 55 /// isFunctionOrMethod - Return true if the given decl has function 56 /// type (function or function-typed variable) or an Objective-C 57 /// method. 58 static bool isFunctionOrMethod(const Decl *D) { 59 return (D->getFunctionType() != nullptr) || isa<ObjCMethodDecl>(D); 60 } 61 62 /// Return true if the given decl has function type (function or 63 /// function-typed variable) or an Objective-C method or a block. 64 static bool isFunctionOrMethodOrBlock(const Decl *D) { 65 return isFunctionOrMethod(D) || isa<BlockDecl>(D); 66 } 67 68 /// Return true if the given decl has a declarator that should have 69 /// been processed by Sema::GetTypeForDeclarator. 70 static bool hasDeclarator(const Decl *D) { 71 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl. 72 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) || 73 isa<ObjCPropertyDecl>(D); 74 } 75 76 /// hasFunctionProto - Return true if the given decl has a argument 77 /// information. This decl should have already passed 78 /// isFunctionOrMethod or isFunctionOrMethodOrBlock. 79 static bool hasFunctionProto(const Decl *D) { 80 if (const FunctionType *FnTy = D->getFunctionType()) 81 return isa<FunctionProtoType>(FnTy); 82 return isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D); 83 } 84 85 /// getFunctionOrMethodNumParams - Return number of function or method 86 /// parameters. It is an error to call this on a K&R function (use 87 /// hasFunctionProto first). 88 static unsigned getFunctionOrMethodNumParams(const Decl *D) { 89 if (const FunctionType *FnTy = D->getFunctionType()) 90 return cast<FunctionProtoType>(FnTy)->getNumParams(); 91 if (const auto *BD = dyn_cast<BlockDecl>(D)) 92 return BD->getNumParams(); 93 return cast<ObjCMethodDecl>(D)->param_size(); 94 } 95 96 static QualType getFunctionOrMethodParamType(const Decl *D, unsigned Idx) { 97 if (const FunctionType *FnTy = D->getFunctionType()) 98 return cast<FunctionProtoType>(FnTy)->getParamType(Idx); 99 if (const auto *BD = dyn_cast<BlockDecl>(D)) 100 return BD->getParamDecl(Idx)->getType(); 101 102 return cast<ObjCMethodDecl>(D)->parameters()[Idx]->getType(); 103 } 104 105 static SourceRange getFunctionOrMethodParamRange(const Decl *D, unsigned Idx) { 106 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 107 return FD->getParamDecl(Idx)->getSourceRange(); 108 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) 109 return MD->parameters()[Idx]->getSourceRange(); 110 if (const auto *BD = dyn_cast<BlockDecl>(D)) 111 return BD->getParamDecl(Idx)->getSourceRange(); 112 return SourceRange(); 113 } 114 115 static QualType getFunctionOrMethodResultType(const Decl *D) { 116 if (const FunctionType *FnTy = D->getFunctionType()) 117 return FnTy->getReturnType(); 118 return cast<ObjCMethodDecl>(D)->getReturnType(); 119 } 120 121 static SourceRange getFunctionOrMethodResultSourceRange(const Decl *D) { 122 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 123 return FD->getReturnTypeSourceRange(); 124 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) 125 return MD->getReturnTypeSourceRange(); 126 return SourceRange(); 127 } 128 129 static bool isFunctionOrMethodVariadic(const Decl *D) { 130 if (const FunctionType *FnTy = D->getFunctionType()) 131 return cast<FunctionProtoType>(FnTy)->isVariadic(); 132 if (const auto *BD = dyn_cast<BlockDecl>(D)) 133 return BD->isVariadic(); 134 return cast<ObjCMethodDecl>(D)->isVariadic(); 135 } 136 137 static bool isInstanceMethod(const Decl *D) { 138 if (const auto *MethodDecl = dyn_cast<CXXMethodDecl>(D)) 139 return MethodDecl->isInstance(); 140 return false; 141 } 142 143 static inline bool isNSStringType(QualType T, ASTContext &Ctx) { 144 const auto *PT = T->getAs<ObjCObjectPointerType>(); 145 if (!PT) 146 return false; 147 148 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface(); 149 if (!Cls) 150 return false; 151 152 IdentifierInfo* ClsName = Cls->getIdentifier(); 153 154 // FIXME: Should we walk the chain of classes? 155 return ClsName == &Ctx.Idents.get("NSString") || 156 ClsName == &Ctx.Idents.get("NSMutableString"); 157 } 158 159 static inline bool isCFStringType(QualType T, ASTContext &Ctx) { 160 const auto *PT = T->getAs<PointerType>(); 161 if (!PT) 162 return false; 163 164 const auto *RT = PT->getPointeeType()->getAs<RecordType>(); 165 if (!RT) 166 return false; 167 168 const RecordDecl *RD = RT->getDecl(); 169 if (RD->getTagKind() != TTK_Struct) 170 return false; 171 172 return RD->getIdentifier() == &Ctx.Idents.get("__CFString"); 173 } 174 175 static unsigned getNumAttributeArgs(const AttributeList &AL) { 176 // FIXME: Include the type in the argument list. 177 return AL.getNumArgs() + AL.hasParsedType(); 178 } 179 180 template <typename Compare> 181 static bool checkAttributeNumArgsImpl(Sema &S, const AttributeList &AL, 182 unsigned Num, unsigned Diag, 183 Compare Comp) { 184 if (Comp(getNumAttributeArgs(AL), Num)) { 185 S.Diag(AL.getLoc(), Diag) << AL.getName() << Num; 186 return false; 187 } 188 189 return true; 190 } 191 192 /// Check if the attribute has exactly as many args as Num. May 193 /// output an error. 194 static bool checkAttributeNumArgs(Sema &S, const AttributeList &AL, 195 unsigned Num) { 196 return checkAttributeNumArgsImpl(S, AL, Num, 197 diag::err_attribute_wrong_number_arguments, 198 std::not_equal_to<unsigned>()); 199 } 200 201 /// Check if the attribute has at least as many args as Num. May 202 /// output an error. 203 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &AL, 204 unsigned Num) { 205 return checkAttributeNumArgsImpl(S, AL, Num, 206 diag::err_attribute_too_few_arguments, 207 std::less<unsigned>()); 208 } 209 210 /// Check if the attribute has at most as many args as Num. May 211 /// output an error. 212 static bool checkAttributeAtMostNumArgs(Sema &S, const AttributeList &AL, 213 unsigned Num) { 214 return checkAttributeNumArgsImpl(S, AL, Num, 215 diag::err_attribute_too_many_arguments, 216 std::greater<unsigned>()); 217 } 218 219 /// A helper function to provide Attribute Location for the Attr types 220 /// AND the AttributeList. 221 template <typename AttrInfo> 222 static typename std::enable_if<std::is_base_of<Attr, AttrInfo>::value, 223 SourceLocation>::type 224 getAttrLoc(const AttrInfo &AL) { 225 return AL.getLocation(); 226 } 227 static SourceLocation getAttrLoc(const AttributeList &AL) { 228 return AL.getLoc(); 229 } 230 231 /// A helper function to provide Attribute Name for the Attr types 232 /// AND the AttributeList. 233 template <typename AttrInfo> 234 static typename std::enable_if<std::is_base_of<Attr, AttrInfo>::value, 235 const AttrInfo *>::type 236 getAttrName(const AttrInfo &AL) { 237 return &AL; 238 } 239 static const IdentifierInfo *getAttrName(const AttributeList &AL) { 240 return AL.getName(); 241 } 242 243 /// If Expr is a valid integer constant, get the value of the integer 244 /// expression and return success or failure. May output an error. 245 template <typename AttrInfo> 246 static bool checkUInt32Argument(Sema &S, const AttrInfo &AI, const Expr *Expr, 247 uint32_t &Val, unsigned Idx = UINT_MAX) { 248 llvm::APSInt I(32); 249 if (Expr->isTypeDependent() || Expr->isValueDependent() || 250 !Expr->isIntegerConstantExpr(I, S.Context)) { 251 if (Idx != UINT_MAX) 252 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_n_type) 253 << getAttrName(AI) << Idx << AANT_ArgumentIntegerConstant 254 << Expr->getSourceRange(); 255 else 256 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_type) 257 << getAttrName(AI) << AANT_ArgumentIntegerConstant 258 << Expr->getSourceRange(); 259 return false; 260 } 261 262 if (!I.isIntN(32)) { 263 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large) 264 << I.toString(10, false) << 32 << /* Unsigned */ 1; 265 return false; 266 } 267 268 Val = (uint32_t)I.getZExtValue(); 269 return true; 270 } 271 272 /// Wrapper around checkUInt32Argument, with an extra check to be sure 273 /// that the result will fit into a regular (signed) int. All args have the same 274 /// purpose as they do in checkUInt32Argument. 275 template <typename AttrInfo> 276 static bool checkPositiveIntArgument(Sema &S, const AttrInfo &AI, const Expr *Expr, 277 int &Val, unsigned Idx = UINT_MAX) { 278 uint32_t UVal; 279 if (!checkUInt32Argument(S, AI, Expr, UVal, Idx)) 280 return false; 281 282 if (UVal > (uint32_t)std::numeric_limits<int>::max()) { 283 llvm::APSInt I(32); // for toString 284 I = UVal; 285 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large) 286 << I.toString(10, false) << 32 << /* Unsigned */ 0; 287 return false; 288 } 289 290 Val = UVal; 291 return true; 292 } 293 294 /// Diagnose mutually exclusive attributes when present on a given 295 /// declaration. Returns true if diagnosed. 296 template <typename AttrTy> 297 static bool checkAttrMutualExclusion(Sema &S, Decl *D, SourceRange Range, 298 IdentifierInfo *Ident) { 299 if (const auto *A = D->getAttr<AttrTy>()) { 300 S.Diag(Range.getBegin(), diag::err_attributes_are_not_compatible) << Ident 301 << A; 302 S.Diag(A->getLocation(), diag::note_conflicting_attribute); 303 return true; 304 } 305 return false; 306 } 307 308 /// Check if IdxExpr is a valid parameter index for a function or 309 /// instance method D. May output an error. 310 /// 311 /// \returns true if IdxExpr is a valid index. 312 template <typename AttrInfo> 313 static bool checkFunctionOrMethodParameterIndex( 314 Sema &S, const Decl *D, const AttrInfo &AI, unsigned AttrArgNum, 315 const Expr *IdxExpr, ParamIdx &Idx, bool CanIndexImplicitThis = false) { 316 assert(isFunctionOrMethodOrBlock(D)); 317 318 // In C++ the implicit 'this' function parameter also counts. 319 // Parameters are counted from one. 320 bool HP = hasFunctionProto(D); 321 bool HasImplicitThisParam = isInstanceMethod(D); 322 bool IV = HP && isFunctionOrMethodVariadic(D); 323 unsigned NumParams = 324 (HP ? getFunctionOrMethodNumParams(D) : 0) + HasImplicitThisParam; 325 326 llvm::APSInt IdxInt; 327 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() || 328 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) { 329 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_n_type) 330 << getAttrName(AI) << AttrArgNum << AANT_ArgumentIntegerConstant 331 << IdxExpr->getSourceRange(); 332 return false; 333 } 334 335 unsigned IdxSource = IdxInt.getLimitedValue(UINT_MAX); 336 if (IdxSource < 1 || (!IV && IdxSource > NumParams)) { 337 S.Diag(getAttrLoc(AI), diag::err_attribute_argument_out_of_bounds) 338 << getAttrName(AI) << AttrArgNum << IdxExpr->getSourceRange(); 339 return false; 340 } 341 if (HasImplicitThisParam && !CanIndexImplicitThis) { 342 if (IdxSource == 1) { 343 S.Diag(getAttrLoc(AI), 344 diag::err_attribute_invalid_implicit_this_argument) 345 << getAttrName(AI) << IdxExpr->getSourceRange(); 346 return false; 347 } 348 } 349 350 Idx = ParamIdx(IdxSource, D); 351 return true; 352 } 353 354 /// Check if the argument \p ArgNum of \p Attr is a ASCII string literal. 355 /// If not emit an error and return false. If the argument is an identifier it 356 /// will emit an error with a fixit hint and treat it as if it was a string 357 /// literal. 358 bool Sema::checkStringLiteralArgumentAttr(const AttributeList &AL, 359 unsigned ArgNum, StringRef &Str, 360 SourceLocation *ArgLocation) { 361 // Look for identifiers. If we have one emit a hint to fix it to a literal. 362 if (AL.isArgIdent(ArgNum)) { 363 IdentifierLoc *Loc = AL.getArgAsIdent(ArgNum); 364 Diag(Loc->Loc, diag::err_attribute_argument_type) 365 << AL.getName() << AANT_ArgumentString 366 << FixItHint::CreateInsertion(Loc->Loc, "\"") 367 << FixItHint::CreateInsertion(getLocForEndOfToken(Loc->Loc), "\""); 368 Str = Loc->Ident->getName(); 369 if (ArgLocation) 370 *ArgLocation = Loc->Loc; 371 return true; 372 } 373 374 // Now check for an actual string literal. 375 Expr *ArgExpr = AL.getArgAsExpr(ArgNum); 376 const auto *Literal = dyn_cast<StringLiteral>(ArgExpr->IgnoreParenCasts()); 377 if (ArgLocation) 378 *ArgLocation = ArgExpr->getLocStart(); 379 380 if (!Literal || !Literal->isAscii()) { 381 Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type) 382 << AL.getName() << AANT_ArgumentString; 383 return false; 384 } 385 386 Str = Literal->getString(); 387 return true; 388 } 389 390 /// Applies the given attribute to the Decl without performing any 391 /// additional semantic checking. 392 template <typename AttrType> 393 static void handleSimpleAttribute(Sema &S, Decl *D, const AttributeList &AL) { 394 D->addAttr(::new (S.Context) AttrType(AL.getRange(), S.Context, 395 AL.getAttributeSpellingListIndex())); 396 } 397 398 template <typename AttrType> 399 static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D, 400 const AttributeList &AL) { 401 handleSimpleAttribute<AttrType>(S, D, AL); 402 } 403 404 /// Applies the given attribute to the Decl so long as the Decl doesn't 405 /// already have one of the given incompatible attributes. 406 template <typename AttrType, typename IncompatibleAttrType, 407 typename... IncompatibleAttrTypes> 408 static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D, 409 const AttributeList &AL) { 410 if (checkAttrMutualExclusion<IncompatibleAttrType>(S, D, AL.getRange(), 411 AL.getName())) 412 return; 413 handleSimpleAttributeWithExclusions<AttrType, IncompatibleAttrTypes...>(S, D, 414 AL); 415 } 416 417 /// Check if the passed-in expression is of type int or bool. 418 static bool isIntOrBool(Expr *Exp) { 419 QualType QT = Exp->getType(); 420 return QT->isBooleanType() || QT->isIntegerType(); 421 } 422 423 424 // Check to see if the type is a smart pointer of some kind. We assume 425 // it's a smart pointer if it defines both operator-> and operator*. 426 static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) { 427 DeclContextLookupResult Res1 = RT->getDecl()->lookup( 428 S.Context.DeclarationNames.getCXXOperatorName(OO_Star)); 429 if (Res1.empty()) 430 return false; 431 432 DeclContextLookupResult Res2 = RT->getDecl()->lookup( 433 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow)); 434 if (Res2.empty()) 435 return false; 436 437 return true; 438 } 439 440 /// Check if passed in Decl is a pointer type. 441 /// Note that this function may produce an error message. 442 /// \return true if the Decl is a pointer type; false otherwise 443 static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D, 444 const AttributeList &AL) { 445 const auto *VD = cast<ValueDecl>(D); 446 QualType QT = VD->getType(); 447 if (QT->isAnyPointerType()) 448 return true; 449 450 if (const auto *RT = QT->getAs<RecordType>()) { 451 // If it's an incomplete type, it could be a smart pointer; skip it. 452 // (We don't want to force template instantiation if we can avoid it, 453 // since that would alter the order in which templates are instantiated.) 454 if (RT->isIncompleteType()) 455 return true; 456 457 if (threadSafetyCheckIsSmartPointer(S, RT)) 458 return true; 459 } 460 461 S.Diag(AL.getLoc(), diag::warn_thread_attribute_decl_not_pointer) 462 << AL.getName() << QT; 463 return false; 464 } 465 466 /// Checks that the passed in QualType either is of RecordType or points 467 /// to RecordType. Returns the relevant RecordType, null if it does not exit. 468 static const RecordType *getRecordType(QualType QT) { 469 if (const auto *RT = QT->getAs<RecordType>()) 470 return RT; 471 472 // Now check if we point to record type. 473 if (const auto *PT = QT->getAs<PointerType>()) 474 return PT->getPointeeType()->getAs<RecordType>(); 475 476 return nullptr; 477 } 478 479 static bool checkRecordTypeForCapability(Sema &S, QualType Ty) { 480 const RecordType *RT = getRecordType(Ty); 481 482 if (!RT) 483 return false; 484 485 // Don't check for the capability if the class hasn't been defined yet. 486 if (RT->isIncompleteType()) 487 return true; 488 489 // Allow smart pointers to be used as capability objects. 490 // FIXME -- Check the type that the smart pointer points to. 491 if (threadSafetyCheckIsSmartPointer(S, RT)) 492 return true; 493 494 // Check if the record itself has a capability. 495 RecordDecl *RD = RT->getDecl(); 496 if (RD->hasAttr<CapabilityAttr>()) 497 return true; 498 499 // Else check if any base classes have a capability. 500 if (const auto *CRD = dyn_cast<CXXRecordDecl>(RD)) { 501 CXXBasePaths BPaths(false, false); 502 if (CRD->lookupInBases([](const CXXBaseSpecifier *BS, CXXBasePath &) { 503 const auto *Type = BS->getType()->getAs<RecordType>(); 504 return Type->getDecl()->hasAttr<CapabilityAttr>(); 505 }, BPaths)) 506 return true; 507 } 508 return false; 509 } 510 511 static bool checkTypedefTypeForCapability(QualType Ty) { 512 const auto *TD = Ty->getAs<TypedefType>(); 513 if (!TD) 514 return false; 515 516 TypedefNameDecl *TN = TD->getDecl(); 517 if (!TN) 518 return false; 519 520 return TN->hasAttr<CapabilityAttr>(); 521 } 522 523 static bool typeHasCapability(Sema &S, QualType Ty) { 524 if (checkTypedefTypeForCapability(Ty)) 525 return true; 526 527 if (checkRecordTypeForCapability(S, Ty)) 528 return true; 529 530 return false; 531 } 532 533 static bool isCapabilityExpr(Sema &S, const Expr *Ex) { 534 // Capability expressions are simple expressions involving the boolean logic 535 // operators &&, || or !, a simple DeclRefExpr, CastExpr or a ParenExpr. Once 536 // a DeclRefExpr is found, its type should be checked to determine whether it 537 // is a capability or not. 538 539 if (const auto *E = dyn_cast<CastExpr>(Ex)) 540 return isCapabilityExpr(S, E->getSubExpr()); 541 else if (const auto *E = dyn_cast<ParenExpr>(Ex)) 542 return isCapabilityExpr(S, E->getSubExpr()); 543 else if (const auto *E = dyn_cast<UnaryOperator>(Ex)) { 544 if (E->getOpcode() == UO_LNot || E->getOpcode() == UO_AddrOf || 545 E->getOpcode() == UO_Deref) 546 return isCapabilityExpr(S, E->getSubExpr()); 547 return false; 548 } else if (const auto *E = dyn_cast<BinaryOperator>(Ex)) { 549 if (E->getOpcode() == BO_LAnd || E->getOpcode() == BO_LOr) 550 return isCapabilityExpr(S, E->getLHS()) && 551 isCapabilityExpr(S, E->getRHS()); 552 return false; 553 } 554 555 return typeHasCapability(S, Ex->getType()); 556 } 557 558 /// Checks that all attribute arguments, starting from Sidx, resolve to 559 /// a capability object. 560 /// \param Sidx The attribute argument index to start checking with. 561 /// \param ParamIdxOk Whether an argument can be indexing into a function 562 /// parameter list. 563 static void checkAttrArgsAreCapabilityObjs(Sema &S, Decl *D, 564 const AttributeList &AL, 565 SmallVectorImpl<Expr *> &Args, 566 int Sidx = 0, 567 bool ParamIdxOk = false) { 568 for (unsigned Idx = Sidx; Idx < AL.getNumArgs(); ++Idx) { 569 Expr *ArgExp = AL.getArgAsExpr(Idx); 570 571 if (ArgExp->isTypeDependent()) { 572 // FIXME -- need to check this again on template instantiation 573 Args.push_back(ArgExp); 574 continue; 575 } 576 577 if (const auto *StrLit = dyn_cast<StringLiteral>(ArgExp)) { 578 if (StrLit->getLength() == 0 || 579 (StrLit->isAscii() && StrLit->getString() == StringRef("*"))) { 580 // Pass empty strings to the analyzer without warnings. 581 // Treat "*" as the universal lock. 582 Args.push_back(ArgExp); 583 continue; 584 } 585 586 // We allow constant strings to be used as a placeholder for expressions 587 // that are not valid C++ syntax, but warn that they are ignored. 588 S.Diag(AL.getLoc(), diag::warn_thread_attribute_ignored) << AL.getName(); 589 Args.push_back(ArgExp); 590 continue; 591 } 592 593 QualType ArgTy = ArgExp->getType(); 594 595 // A pointer to member expression of the form &MyClass::mu is treated 596 // specially -- we need to look at the type of the member. 597 if (const auto *UOp = dyn_cast<UnaryOperator>(ArgExp)) 598 if (UOp->getOpcode() == UO_AddrOf) 599 if (const auto *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr())) 600 if (DRE->getDecl()->isCXXInstanceMember()) 601 ArgTy = DRE->getDecl()->getType(); 602 603 // First see if we can just cast to record type, or pointer to record type. 604 const RecordType *RT = getRecordType(ArgTy); 605 606 // Now check if we index into a record type function param. 607 if(!RT && ParamIdxOk) { 608 const auto *FD = dyn_cast<FunctionDecl>(D); 609 const auto *IL = dyn_cast<IntegerLiteral>(ArgExp); 610 if(FD && IL) { 611 unsigned int NumParams = FD->getNumParams(); 612 llvm::APInt ArgValue = IL->getValue(); 613 uint64_t ParamIdxFromOne = ArgValue.getZExtValue(); 614 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1; 615 if (!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) { 616 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_range) 617 << AL.getName() << Idx + 1 << NumParams; 618 continue; 619 } 620 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType(); 621 } 622 } 623 624 // If the type does not have a capability, see if the components of the 625 // expression have capabilities. This allows for writing C code where the 626 // capability may be on the type, and the expression is a capability 627 // boolean logic expression. Eg) requires_capability(A || B && !C) 628 if (!typeHasCapability(S, ArgTy) && !isCapabilityExpr(S, ArgExp)) 629 S.Diag(AL.getLoc(), diag::warn_thread_attribute_argument_not_lockable) 630 << AL.getName() << ArgTy; 631 632 Args.push_back(ArgExp); 633 } 634 } 635 636 //===----------------------------------------------------------------------===// 637 // Attribute Implementations 638 //===----------------------------------------------------------------------===// 639 640 static void handlePtGuardedVarAttr(Sema &S, Decl *D, 641 const AttributeList &AL) { 642 if (!threadSafetyCheckIsPointer(S, D, AL)) 643 return; 644 645 D->addAttr(::new (S.Context) 646 PtGuardedVarAttr(AL.getRange(), S.Context, 647 AL.getAttributeSpellingListIndex())); 648 } 649 650 static bool checkGuardedByAttrCommon(Sema &S, Decl *D, const AttributeList &AL, 651 Expr *&Arg) { 652 SmallVector<Expr *, 1> Args; 653 // check that all arguments are lockable objects 654 checkAttrArgsAreCapabilityObjs(S, D, AL, Args); 655 unsigned Size = Args.size(); 656 if (Size != 1) 657 return false; 658 659 Arg = Args[0]; 660 661 return true; 662 } 663 664 static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &AL) { 665 Expr *Arg = nullptr; 666 if (!checkGuardedByAttrCommon(S, D, AL, Arg)) 667 return; 668 669 D->addAttr(::new (S.Context) GuardedByAttr( 670 AL.getRange(), S.Context, Arg, AL.getAttributeSpellingListIndex())); 671 } 672 673 static void handlePtGuardedByAttr(Sema &S, Decl *D, 674 const AttributeList &AL) { 675 Expr *Arg = nullptr; 676 if (!checkGuardedByAttrCommon(S, D, AL, Arg)) 677 return; 678 679 if (!threadSafetyCheckIsPointer(S, D, AL)) 680 return; 681 682 D->addAttr(::new (S.Context) PtGuardedByAttr( 683 AL.getRange(), S.Context, Arg, AL.getAttributeSpellingListIndex())); 684 } 685 686 static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D, 687 const AttributeList &AL, 688 SmallVectorImpl<Expr *> &Args) { 689 if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 690 return false; 691 692 // Check that this attribute only applies to lockable types. 693 QualType QT = cast<ValueDecl>(D)->getType(); 694 if (!QT->isDependentType() && !typeHasCapability(S, QT)) { 695 S.Diag(AL.getLoc(), diag::warn_thread_attribute_decl_not_lockable) 696 << AL.getName(); 697 return false; 698 } 699 700 // Check that all arguments are lockable objects. 701 checkAttrArgsAreCapabilityObjs(S, D, AL, Args); 702 if (Args.empty()) 703 return false; 704 705 return true; 706 } 707 708 static void handleAcquiredAfterAttr(Sema &S, Decl *D, 709 const AttributeList &AL) { 710 SmallVector<Expr *, 1> Args; 711 if (!checkAcquireOrderAttrCommon(S, D, AL, Args)) 712 return; 713 714 Expr **StartArg = &Args[0]; 715 D->addAttr(::new (S.Context) AcquiredAfterAttr( 716 AL.getRange(), S.Context, StartArg, Args.size(), 717 AL.getAttributeSpellingListIndex())); 718 } 719 720 static void handleAcquiredBeforeAttr(Sema &S, Decl *D, 721 const AttributeList &AL) { 722 SmallVector<Expr *, 1> Args; 723 if (!checkAcquireOrderAttrCommon(S, D, AL, Args)) 724 return; 725 726 Expr **StartArg = &Args[0]; 727 D->addAttr(::new (S.Context) AcquiredBeforeAttr( 728 AL.getRange(), S.Context, StartArg, Args.size(), 729 AL.getAttributeSpellingListIndex())); 730 } 731 732 static bool checkLockFunAttrCommon(Sema &S, Decl *D, 733 const AttributeList &AL, 734 SmallVectorImpl<Expr *> &Args) { 735 // zero or more arguments ok 736 // check that all arguments are lockable objects 737 checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 0, /*ParamIdxOk=*/true); 738 739 return true; 740 } 741 742 static void handleAssertSharedLockAttr(Sema &S, Decl *D, 743 const AttributeList &AL) { 744 SmallVector<Expr *, 1> Args; 745 if (!checkLockFunAttrCommon(S, D, AL, Args)) 746 return; 747 748 unsigned Size = Args.size(); 749 Expr **StartArg = Size == 0 ? nullptr : &Args[0]; 750 D->addAttr(::new (S.Context) 751 AssertSharedLockAttr(AL.getRange(), S.Context, StartArg, Size, 752 AL.getAttributeSpellingListIndex())); 753 } 754 755 static void handleAssertExclusiveLockAttr(Sema &S, Decl *D, 756 const AttributeList &AL) { 757 SmallVector<Expr *, 1> Args; 758 if (!checkLockFunAttrCommon(S, D, AL, Args)) 759 return; 760 761 unsigned Size = Args.size(); 762 Expr **StartArg = Size == 0 ? nullptr : &Args[0]; 763 D->addAttr(::new (S.Context) AssertExclusiveLockAttr( 764 AL.getRange(), S.Context, StartArg, Size, 765 AL.getAttributeSpellingListIndex())); 766 } 767 768 /// Checks to be sure that the given parameter number is in bounds, and 769 /// is an integral type. Will emit appropriate diagnostics if this returns 770 /// false. 771 /// 772 /// AttrArgNo is used to actually retrieve the argument, so it's base-0. 773 template <typename AttrInfo> 774 static bool checkParamIsIntegerType(Sema &S, const FunctionDecl *FD, 775 const AttrInfo &AI, unsigned AttrArgNo) { 776 assert(AI.isArgExpr(AttrArgNo) && "Expected expression argument"); 777 Expr *AttrArg = AI.getArgAsExpr(AttrArgNo); 778 ParamIdx Idx; 779 if (!checkFunctionOrMethodParameterIndex(S, FD, AI, AttrArgNo + 1, AttrArg, 780 Idx)) 781 return false; 782 783 const ParmVarDecl *Param = FD->getParamDecl(Idx.getASTIndex()); 784 if (!Param->getType()->isIntegerType() && !Param->getType()->isCharType()) { 785 SourceLocation SrcLoc = AttrArg->getLocStart(); 786 S.Diag(SrcLoc, diag::err_attribute_integers_only) 787 << getAttrName(AI) << Param->getSourceRange(); 788 return false; 789 } 790 return true; 791 } 792 793 static void handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &AL) { 794 if (!checkAttributeAtLeastNumArgs(S, AL, 1) || 795 !checkAttributeAtMostNumArgs(S, AL, 2)) 796 return; 797 798 const auto *FD = cast<FunctionDecl>(D); 799 if (!FD->getReturnType()->isPointerType()) { 800 S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only) 801 << AL.getName(); 802 return; 803 } 804 805 const Expr *SizeExpr = AL.getArgAsExpr(0); 806 int SizeArgNoVal; 807 // Parameter indices are 1-indexed, hence Index=1 808 if (!checkPositiveIntArgument(S, AL, SizeExpr, SizeArgNoVal, /*Index=*/1)) 809 return; 810 if (!checkParamIsIntegerType(S, FD, AL, /*AttrArgNo=*/0)) 811 return; 812 ParamIdx SizeArgNo(SizeArgNoVal, D); 813 814 ParamIdx NumberArgNo; 815 if (AL.getNumArgs() == 2) { 816 const Expr *NumberExpr = AL.getArgAsExpr(1); 817 int Val; 818 // Parameter indices are 1-based, hence Index=2 819 if (!checkPositiveIntArgument(S, AL, NumberExpr, Val, /*Index=*/2)) 820 return; 821 if (!checkParamIsIntegerType(S, FD, AL, /*AttrArgNo=*/1)) 822 return; 823 NumberArgNo = ParamIdx(Val, D); 824 } 825 826 D->addAttr(::new (S.Context) 827 AllocSizeAttr(AL.getRange(), S.Context, SizeArgNo, NumberArgNo, 828 AL.getAttributeSpellingListIndex())); 829 } 830 831 static bool checkTryLockFunAttrCommon(Sema &S, Decl *D, 832 const AttributeList &AL, 833 SmallVectorImpl<Expr *> &Args) { 834 if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 835 return false; 836 837 if (!isIntOrBool(AL.getArgAsExpr(0))) { 838 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 839 << AL.getName() << 1 << AANT_ArgumentIntOrBool; 840 return false; 841 } 842 843 // check that all arguments are lockable objects 844 checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 1); 845 846 return true; 847 } 848 849 static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D, 850 const AttributeList &AL) { 851 SmallVector<Expr*, 2> Args; 852 if (!checkTryLockFunAttrCommon(S, D, AL, Args)) 853 return; 854 855 D->addAttr(::new (S.Context) SharedTrylockFunctionAttr( 856 AL.getRange(), S.Context, AL.getArgAsExpr(0), Args.data(), Args.size(), 857 AL.getAttributeSpellingListIndex())); 858 } 859 860 static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D, 861 const AttributeList &AL) { 862 SmallVector<Expr*, 2> Args; 863 if (!checkTryLockFunAttrCommon(S, D, AL, Args)) 864 return; 865 866 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr( 867 AL.getRange(), S.Context, AL.getArgAsExpr(0), Args.data(), 868 Args.size(), AL.getAttributeSpellingListIndex())); 869 } 870 871 static void handleLockReturnedAttr(Sema &S, Decl *D, 872 const AttributeList &AL) { 873 // check that the argument is lockable object 874 SmallVector<Expr*, 1> Args; 875 checkAttrArgsAreCapabilityObjs(S, D, AL, Args); 876 unsigned Size = Args.size(); 877 if (Size == 0) 878 return; 879 880 D->addAttr(::new (S.Context) 881 LockReturnedAttr(AL.getRange(), S.Context, Args[0], 882 AL.getAttributeSpellingListIndex())); 883 } 884 885 static void handleLocksExcludedAttr(Sema &S, Decl *D, 886 const AttributeList &AL) { 887 if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 888 return; 889 890 // check that all arguments are lockable objects 891 SmallVector<Expr*, 1> Args; 892 checkAttrArgsAreCapabilityObjs(S, D, AL, Args); 893 unsigned Size = Args.size(); 894 if (Size == 0) 895 return; 896 Expr **StartArg = &Args[0]; 897 898 D->addAttr(::new (S.Context) 899 LocksExcludedAttr(AL.getRange(), S.Context, StartArg, Size, 900 AL.getAttributeSpellingListIndex())); 901 } 902 903 static bool checkFunctionConditionAttr(Sema &S, Decl *D, 904 const AttributeList &AL, 905 Expr *&Cond, StringRef &Msg) { 906 Cond = AL.getArgAsExpr(0); 907 if (!Cond->isTypeDependent()) { 908 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond); 909 if (Converted.isInvalid()) 910 return false; 911 Cond = Converted.get(); 912 } 913 914 if (!S.checkStringLiteralArgumentAttr(AL, 1, Msg)) 915 return false; 916 917 if (Msg.empty()) 918 Msg = "<no message provided>"; 919 920 SmallVector<PartialDiagnosticAt, 8> Diags; 921 if (isa<FunctionDecl>(D) && !Cond->isValueDependent() && 922 !Expr::isPotentialConstantExprUnevaluated(Cond, cast<FunctionDecl>(D), 923 Diags)) { 924 S.Diag(AL.getLoc(), diag::err_attr_cond_never_constant_expr) 925 << AL.getName(); 926 for (const PartialDiagnosticAt &PDiag : Diags) 927 S.Diag(PDiag.first, PDiag.second); 928 return false; 929 } 930 return true; 931 } 932 933 static void handleEnableIfAttr(Sema &S, Decl *D, const AttributeList &AL) { 934 S.Diag(AL.getLoc(), diag::ext_clang_enable_if); 935 936 Expr *Cond; 937 StringRef Msg; 938 if (checkFunctionConditionAttr(S, D, AL, Cond, Msg)) 939 D->addAttr(::new (S.Context) 940 EnableIfAttr(AL.getRange(), S.Context, Cond, Msg, 941 AL.getAttributeSpellingListIndex())); 942 } 943 944 namespace { 945 /// Determines if a given Expr references any of the given function's 946 /// ParmVarDecls, or the function's implicit `this` parameter (if applicable). 947 class ArgumentDependenceChecker 948 : public RecursiveASTVisitor<ArgumentDependenceChecker> { 949 #ifndef NDEBUG 950 const CXXRecordDecl *ClassType; 951 #endif 952 llvm::SmallPtrSet<const ParmVarDecl *, 16> Parms; 953 bool Result; 954 955 public: 956 ArgumentDependenceChecker(const FunctionDecl *FD) { 957 #ifndef NDEBUG 958 if (const auto *MD = dyn_cast<CXXMethodDecl>(FD)) 959 ClassType = MD->getParent(); 960 else 961 ClassType = nullptr; 962 #endif 963 Parms.insert(FD->param_begin(), FD->param_end()); 964 } 965 966 bool referencesArgs(Expr *E) { 967 Result = false; 968 TraverseStmt(E); 969 return Result; 970 } 971 972 bool VisitCXXThisExpr(CXXThisExpr *E) { 973 assert(E->getType()->getPointeeCXXRecordDecl() == ClassType && 974 "`this` doesn't refer to the enclosing class?"); 975 Result = true; 976 return false; 977 } 978 979 bool VisitDeclRefExpr(DeclRefExpr *DRE) { 980 if (const auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) 981 if (Parms.count(PVD)) { 982 Result = true; 983 return false; 984 } 985 return true; 986 } 987 }; 988 } 989 990 static void handleDiagnoseIfAttr(Sema &S, Decl *D, const AttributeList &AL) { 991 S.Diag(AL.getLoc(), diag::ext_clang_diagnose_if); 992 993 Expr *Cond; 994 StringRef Msg; 995 if (!checkFunctionConditionAttr(S, D, AL, Cond, Msg)) 996 return; 997 998 StringRef DiagTypeStr; 999 if (!S.checkStringLiteralArgumentAttr(AL, 2, DiagTypeStr)) 1000 return; 1001 1002 DiagnoseIfAttr::DiagnosticType DiagType; 1003 if (!DiagnoseIfAttr::ConvertStrToDiagnosticType(DiagTypeStr, DiagType)) { 1004 S.Diag(AL.getArgAsExpr(2)->getLocStart(), 1005 diag::err_diagnose_if_invalid_diagnostic_type); 1006 return; 1007 } 1008 1009 bool ArgDependent = false; 1010 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 1011 ArgDependent = ArgumentDependenceChecker(FD).referencesArgs(Cond); 1012 D->addAttr(::new (S.Context) DiagnoseIfAttr( 1013 AL.getRange(), S.Context, Cond, Msg, DiagType, ArgDependent, 1014 cast<NamedDecl>(D), AL.getAttributeSpellingListIndex())); 1015 } 1016 1017 static void handlePassObjectSizeAttr(Sema &S, Decl *D, 1018 const AttributeList &AL) { 1019 if (D->hasAttr<PassObjectSizeAttr>()) { 1020 S.Diag(D->getLocStart(), diag::err_attribute_only_once_per_parameter) 1021 << AL.getName(); 1022 return; 1023 } 1024 1025 Expr *E = AL.getArgAsExpr(0); 1026 uint32_t Type; 1027 if (!checkUInt32Argument(S, AL, E, Type, /*Idx=*/1)) 1028 return; 1029 1030 // pass_object_size's argument is passed in as the second argument of 1031 // __builtin_object_size. So, it has the same constraints as that second 1032 // argument; namely, it must be in the range [0, 3]. 1033 if (Type > 3) { 1034 S.Diag(E->getLocStart(), diag::err_attribute_argument_outof_range) 1035 << AL.getName() << 0 << 3 << E->getSourceRange(); 1036 return; 1037 } 1038 1039 // pass_object_size is only supported on constant pointer parameters; as a 1040 // kindness to users, we allow the parameter to be non-const for declarations. 1041 // At this point, we have no clue if `D` belongs to a function declaration or 1042 // definition, so we defer the constness check until later. 1043 if (!cast<ParmVarDecl>(D)->getType()->isPointerType()) { 1044 S.Diag(D->getLocStart(), diag::err_attribute_pointers_only) 1045 << AL.getName() << 1; 1046 return; 1047 } 1048 1049 D->addAttr(::new (S.Context) PassObjectSizeAttr( 1050 AL.getRange(), S.Context, (int)Type, AL.getAttributeSpellingListIndex())); 1051 } 1052 1053 static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &AL) { 1054 ConsumableAttr::ConsumedState DefaultState; 1055 1056 if (AL.isArgIdent(0)) { 1057 IdentifierLoc *IL = AL.getArgAsIdent(0); 1058 if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(), 1059 DefaultState)) { 1060 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) 1061 << AL.getName() << IL->Ident; 1062 return; 1063 } 1064 } else { 1065 S.Diag(AL.getLoc(), diag::err_attribute_argument_type) 1066 << AL.getName() << AANT_ArgumentIdentifier; 1067 return; 1068 } 1069 1070 D->addAttr(::new (S.Context) 1071 ConsumableAttr(AL.getRange(), S.Context, DefaultState, 1072 AL.getAttributeSpellingListIndex())); 1073 } 1074 1075 static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD, 1076 const AttributeList &AL) { 1077 ASTContext &CurrContext = S.getASTContext(); 1078 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType(); 1079 1080 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) { 1081 if (!RD->hasAttr<ConsumableAttr>()) { 1082 S.Diag(AL.getLoc(), diag::warn_attr_on_unconsumable_class) << 1083 RD->getNameAsString(); 1084 1085 return false; 1086 } 1087 } 1088 1089 return true; 1090 } 1091 1092 static void handleCallableWhenAttr(Sema &S, Decl *D, 1093 const AttributeList &AL) { 1094 if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 1095 return; 1096 1097 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL)) 1098 return; 1099 1100 SmallVector<CallableWhenAttr::ConsumedState, 3> States; 1101 for (unsigned ArgIndex = 0; ArgIndex < AL.getNumArgs(); ++ArgIndex) { 1102 CallableWhenAttr::ConsumedState CallableState; 1103 1104 StringRef StateString; 1105 SourceLocation Loc; 1106 if (AL.isArgIdent(ArgIndex)) { 1107 IdentifierLoc *Ident = AL.getArgAsIdent(ArgIndex); 1108 StateString = Ident->Ident->getName(); 1109 Loc = Ident->Loc; 1110 } else { 1111 if (!S.checkStringLiteralArgumentAttr(AL, ArgIndex, StateString, &Loc)) 1112 return; 1113 } 1114 1115 if (!CallableWhenAttr::ConvertStrToConsumedState(StateString, 1116 CallableState)) { 1117 S.Diag(Loc, diag::warn_attribute_type_not_supported) 1118 << AL.getName() << StateString; 1119 return; 1120 } 1121 1122 States.push_back(CallableState); 1123 } 1124 1125 D->addAttr(::new (S.Context) 1126 CallableWhenAttr(AL.getRange(), S.Context, States.data(), 1127 States.size(), AL.getAttributeSpellingListIndex())); 1128 } 1129 1130 static void handleParamTypestateAttr(Sema &S, Decl *D, 1131 const AttributeList &AL) { 1132 ParamTypestateAttr::ConsumedState ParamState; 1133 1134 if (AL.isArgIdent(0)) { 1135 IdentifierLoc *Ident = AL.getArgAsIdent(0); 1136 StringRef StateString = Ident->Ident->getName(); 1137 1138 if (!ParamTypestateAttr::ConvertStrToConsumedState(StateString, 1139 ParamState)) { 1140 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) 1141 << AL.getName() << StateString; 1142 return; 1143 } 1144 } else { 1145 S.Diag(AL.getLoc(), diag::err_attribute_argument_type) << 1146 AL.getName() << AANT_ArgumentIdentifier; 1147 return; 1148 } 1149 1150 // FIXME: This check is currently being done in the analysis. It can be 1151 // enabled here only after the parser propagates attributes at 1152 // template specialization definition, not declaration. 1153 //QualType ReturnType = cast<ParmVarDecl>(D)->getType(); 1154 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl(); 1155 // 1156 //if (!RD || !RD->hasAttr<ConsumableAttr>()) { 1157 // S.Diag(AL.getLoc(), diag::warn_return_state_for_unconsumable_type) << 1158 // ReturnType.getAsString(); 1159 // return; 1160 //} 1161 1162 D->addAttr(::new (S.Context) 1163 ParamTypestateAttr(AL.getRange(), S.Context, ParamState, 1164 AL.getAttributeSpellingListIndex())); 1165 } 1166 1167 static void handleReturnTypestateAttr(Sema &S, Decl *D, 1168 const AttributeList &AL) { 1169 ReturnTypestateAttr::ConsumedState ReturnState; 1170 1171 if (AL.isArgIdent(0)) { 1172 IdentifierLoc *IL = AL.getArgAsIdent(0); 1173 if (!ReturnTypestateAttr::ConvertStrToConsumedState(IL->Ident->getName(), 1174 ReturnState)) { 1175 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) 1176 << AL.getName() << IL->Ident; 1177 return; 1178 } 1179 } else { 1180 S.Diag(AL.getLoc(), diag::err_attribute_argument_type) << 1181 AL.getName() << AANT_ArgumentIdentifier; 1182 return; 1183 } 1184 1185 // FIXME: This check is currently being done in the analysis. It can be 1186 // enabled here only after the parser propagates attributes at 1187 // template specialization definition, not declaration. 1188 //QualType ReturnType; 1189 // 1190 //if (const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D)) { 1191 // ReturnType = Param->getType(); 1192 // 1193 //} else if (const CXXConstructorDecl *Constructor = 1194 // dyn_cast<CXXConstructorDecl>(D)) { 1195 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType(); 1196 // 1197 //} else { 1198 // 1199 // ReturnType = cast<FunctionDecl>(D)->getCallResultType(); 1200 //} 1201 // 1202 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl(); 1203 // 1204 //if (!RD || !RD->hasAttr<ConsumableAttr>()) { 1205 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) << 1206 // ReturnType.getAsString(); 1207 // return; 1208 //} 1209 1210 D->addAttr(::new (S.Context) 1211 ReturnTypestateAttr(AL.getRange(), S.Context, ReturnState, 1212 AL.getAttributeSpellingListIndex())); 1213 } 1214 1215 static void handleSetTypestateAttr(Sema &S, Decl *D, const AttributeList &AL) { 1216 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL)) 1217 return; 1218 1219 SetTypestateAttr::ConsumedState NewState; 1220 if (AL.isArgIdent(0)) { 1221 IdentifierLoc *Ident = AL.getArgAsIdent(0); 1222 StringRef Param = Ident->Ident->getName(); 1223 if (!SetTypestateAttr::ConvertStrToConsumedState(Param, NewState)) { 1224 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) 1225 << AL.getName() << Param; 1226 return; 1227 } 1228 } else { 1229 S.Diag(AL.getLoc(), diag::err_attribute_argument_type) << 1230 AL.getName() << AANT_ArgumentIdentifier; 1231 return; 1232 } 1233 1234 D->addAttr(::new (S.Context) 1235 SetTypestateAttr(AL.getRange(), S.Context, NewState, 1236 AL.getAttributeSpellingListIndex())); 1237 } 1238 1239 static void handleTestTypestateAttr(Sema &S, Decl *D, 1240 const AttributeList &AL) { 1241 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), AL)) 1242 return; 1243 1244 TestTypestateAttr::ConsumedState TestState; 1245 if (AL.isArgIdent(0)) { 1246 IdentifierLoc *Ident = AL.getArgAsIdent(0); 1247 StringRef Param = Ident->Ident->getName(); 1248 if (!TestTypestateAttr::ConvertStrToConsumedState(Param, TestState)) { 1249 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) 1250 << AL.getName() << Param; 1251 return; 1252 } 1253 } else { 1254 S.Diag(AL.getLoc(), diag::err_attribute_argument_type) << 1255 AL.getName() << AANT_ArgumentIdentifier; 1256 return; 1257 } 1258 1259 D->addAttr(::new (S.Context) 1260 TestTypestateAttr(AL.getRange(), S.Context, TestState, 1261 AL.getAttributeSpellingListIndex())); 1262 } 1263 1264 static void handleExtVectorTypeAttr(Sema &S, Decl *D, const AttributeList &AL) { 1265 // Remember this typedef decl, we will need it later for diagnostics. 1266 S.ExtVectorDecls.push_back(cast<TypedefNameDecl>(D)); 1267 } 1268 1269 static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &AL) { 1270 if (auto *TD = dyn_cast<TagDecl>(D)) 1271 TD->addAttr(::new (S.Context) PackedAttr(AL.getRange(), S.Context, 1272 AL.getAttributeSpellingListIndex())); 1273 else if (auto *FD = dyn_cast<FieldDecl>(D)) { 1274 bool BitfieldByteAligned = (!FD->getType()->isDependentType() && 1275 !FD->getType()->isIncompleteType() && 1276 FD->isBitField() && 1277 S.Context.getTypeAlign(FD->getType()) <= 8); 1278 1279 if (S.getASTContext().getTargetInfo().getTriple().isPS4()) { 1280 if (BitfieldByteAligned) 1281 // The PS4 target needs to maintain ABI backwards compatibility. 1282 S.Diag(AL.getLoc(), diag::warn_attribute_ignored_for_field_of_type) 1283 << AL.getName() << FD->getType(); 1284 else 1285 FD->addAttr(::new (S.Context) PackedAttr( 1286 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 1287 } else { 1288 // Report warning about changed offset in the newer compiler versions. 1289 if (BitfieldByteAligned) 1290 S.Diag(AL.getLoc(), diag::warn_attribute_packed_for_bitfield); 1291 1292 FD->addAttr(::new (S.Context) PackedAttr( 1293 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 1294 } 1295 1296 } else 1297 S.Diag(AL.getLoc(), diag::warn_attribute_ignored) << AL.getName(); 1298 } 1299 1300 static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &AL) { 1301 // The IBOutlet/IBOutletCollection attributes only apply to instance 1302 // variables or properties of Objective-C classes. The outlet must also 1303 // have an object reference type. 1304 if (const auto *VD = dyn_cast<ObjCIvarDecl>(D)) { 1305 if (!VD->getType()->getAs<ObjCObjectPointerType>()) { 1306 S.Diag(AL.getLoc(), diag::warn_iboutlet_object_type) 1307 << AL.getName() << VD->getType() << 0; 1308 return false; 1309 } 1310 } 1311 else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) { 1312 if (!PD->getType()->getAs<ObjCObjectPointerType>()) { 1313 S.Diag(AL.getLoc(), diag::warn_iboutlet_object_type) 1314 << AL.getName() << PD->getType() << 1; 1315 return false; 1316 } 1317 } 1318 else { 1319 S.Diag(AL.getLoc(), diag::warn_attribute_iboutlet) << AL.getName(); 1320 return false; 1321 } 1322 1323 return true; 1324 } 1325 1326 static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &AL) { 1327 if (!checkIBOutletCommon(S, D, AL)) 1328 return; 1329 1330 D->addAttr(::new (S.Context) 1331 IBOutletAttr(AL.getRange(), S.Context, 1332 AL.getAttributeSpellingListIndex())); 1333 } 1334 1335 static void handleIBOutletCollection(Sema &S, Decl *D, 1336 const AttributeList &AL) { 1337 1338 // The iboutletcollection attribute can have zero or one arguments. 1339 if (AL.getNumArgs() > 1) { 1340 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) 1341 << AL.getName() << 1; 1342 return; 1343 } 1344 1345 if (!checkIBOutletCommon(S, D, AL)) 1346 return; 1347 1348 ParsedType PT; 1349 1350 if (AL.hasParsedType()) 1351 PT = AL.getTypeArg(); 1352 else { 1353 PT = S.getTypeName(S.Context.Idents.get("NSObject"), AL.getLoc(), 1354 S.getScopeForContext(D->getDeclContext()->getParent())); 1355 if (!PT) { 1356 S.Diag(AL.getLoc(), diag::err_iboutletcollection_type) << "NSObject"; 1357 return; 1358 } 1359 } 1360 1361 TypeSourceInfo *QTLoc = nullptr; 1362 QualType QT = S.GetTypeFromParser(PT, &QTLoc); 1363 if (!QTLoc) 1364 QTLoc = S.Context.getTrivialTypeSourceInfo(QT, AL.getLoc()); 1365 1366 // Diagnose use of non-object type in iboutletcollection attribute. 1367 // FIXME. Gnu attribute extension ignores use of builtin types in 1368 // attributes. So, __attribute__((iboutletcollection(char))) will be 1369 // treated as __attribute__((iboutletcollection())). 1370 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) { 1371 S.Diag(AL.getLoc(), 1372 QT->isBuiltinType() ? diag::err_iboutletcollection_builtintype 1373 : diag::err_iboutletcollection_type) << QT; 1374 return; 1375 } 1376 1377 D->addAttr(::new (S.Context) 1378 IBOutletCollectionAttr(AL.getRange(), S.Context, QTLoc, 1379 AL.getAttributeSpellingListIndex())); 1380 } 1381 1382 bool Sema::isValidPointerAttrType(QualType T, bool RefOkay) { 1383 if (RefOkay) { 1384 if (T->isReferenceType()) 1385 return true; 1386 } else { 1387 T = T.getNonReferenceType(); 1388 } 1389 1390 // The nonnull attribute, and other similar attributes, can be applied to a 1391 // transparent union that contains a pointer type. 1392 if (const RecordType *UT = T->getAsUnionType()) { 1393 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) { 1394 RecordDecl *UD = UT->getDecl(); 1395 for (const auto *I : UD->fields()) { 1396 QualType QT = I->getType(); 1397 if (QT->isAnyPointerType() || QT->isBlockPointerType()) 1398 return true; 1399 } 1400 } 1401 } 1402 1403 return T->isAnyPointerType() || T->isBlockPointerType(); 1404 } 1405 1406 static bool attrNonNullArgCheck(Sema &S, QualType T, const AttributeList &AL, 1407 SourceRange AttrParmRange, 1408 SourceRange TypeRange, 1409 bool isReturnValue = false) { 1410 if (!S.isValidPointerAttrType(T)) { 1411 if (isReturnValue) 1412 S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only) 1413 << AL.getName() << AttrParmRange << TypeRange; 1414 else 1415 S.Diag(AL.getLoc(), diag::warn_attribute_pointers_only) 1416 << AL.getName() << AttrParmRange << TypeRange << 0; 1417 return false; 1418 } 1419 return true; 1420 } 1421 1422 static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &AL) { 1423 SmallVector<ParamIdx, 8> NonNullArgs; 1424 for (unsigned I = 0; I < AL.getNumArgs(); ++I) { 1425 Expr *Ex = AL.getArgAsExpr(I); 1426 ParamIdx Idx; 1427 if (!checkFunctionOrMethodParameterIndex(S, D, AL, I + 1, Ex, Idx)) 1428 return; 1429 1430 // Is the function argument a pointer type? 1431 if (Idx.getASTIndex() < getFunctionOrMethodNumParams(D) && 1432 !attrNonNullArgCheck( 1433 S, getFunctionOrMethodParamType(D, Idx.getASTIndex()), AL, 1434 Ex->getSourceRange(), 1435 getFunctionOrMethodParamRange(D, Idx.getASTIndex()))) 1436 continue; 1437 1438 NonNullArgs.push_back(Idx); 1439 } 1440 1441 // If no arguments were specified to __attribute__((nonnull)) then all pointer 1442 // arguments have a nonnull attribute; warn if there aren't any. Skip this 1443 // check if the attribute came from a macro expansion or a template 1444 // instantiation. 1445 if (NonNullArgs.empty() && AL.getLoc().isFileID() && 1446 !S.inTemplateInstantiation()) { 1447 bool AnyPointers = isFunctionOrMethodVariadic(D); 1448 for (unsigned I = 0, E = getFunctionOrMethodNumParams(D); 1449 I != E && !AnyPointers; ++I) { 1450 QualType T = getFunctionOrMethodParamType(D, I); 1451 if (T->isDependentType() || S.isValidPointerAttrType(T)) 1452 AnyPointers = true; 1453 } 1454 1455 if (!AnyPointers) 1456 S.Diag(AL.getLoc(), diag::warn_attribute_nonnull_no_pointers); 1457 } 1458 1459 ParamIdx *Start = NonNullArgs.data(); 1460 unsigned Size = NonNullArgs.size(); 1461 llvm::array_pod_sort(Start, Start + Size); 1462 D->addAttr(::new (S.Context) 1463 NonNullAttr(AL.getRange(), S.Context, Start, Size, 1464 AL.getAttributeSpellingListIndex())); 1465 } 1466 1467 static void handleNonNullAttrParameter(Sema &S, ParmVarDecl *D, 1468 const AttributeList &AL) { 1469 if (AL.getNumArgs() > 0) { 1470 if (D->getFunctionType()) { 1471 handleNonNullAttr(S, D, AL); 1472 } else { 1473 S.Diag(AL.getLoc(), diag::warn_attribute_nonnull_parm_no_args) 1474 << D->getSourceRange(); 1475 } 1476 return; 1477 } 1478 1479 // Is the argument a pointer type? 1480 if (!attrNonNullArgCheck(S, D->getType(), AL, SourceRange(), 1481 D->getSourceRange())) 1482 return; 1483 1484 D->addAttr(::new (S.Context) 1485 NonNullAttr(AL.getRange(), S.Context, nullptr, 0, 1486 AL.getAttributeSpellingListIndex())); 1487 } 1488 1489 static void handleReturnsNonNullAttr(Sema &S, Decl *D, 1490 const AttributeList &AL) { 1491 QualType ResultType = getFunctionOrMethodResultType(D); 1492 SourceRange SR = getFunctionOrMethodResultSourceRange(D); 1493 if (!attrNonNullArgCheck(S, ResultType, AL, SourceRange(), SR, 1494 /* isReturnValue */ true)) 1495 return; 1496 1497 D->addAttr(::new (S.Context) 1498 ReturnsNonNullAttr(AL.getRange(), S.Context, 1499 AL.getAttributeSpellingListIndex())); 1500 } 1501 1502 static void handleNoEscapeAttr(Sema &S, Decl *D, const AttributeList &AL) { 1503 if (D->isInvalidDecl()) 1504 return; 1505 1506 // noescape only applies to pointer types. 1507 QualType T = cast<ParmVarDecl>(D)->getType(); 1508 if (!S.isValidPointerAttrType(T, /* RefOkay */ true)) { 1509 S.Diag(AL.getLoc(), diag::warn_attribute_pointers_only) 1510 << AL.getName() << AL.getRange() << 0; 1511 return; 1512 } 1513 1514 D->addAttr(::new (S.Context) NoEscapeAttr( 1515 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 1516 } 1517 1518 static void handleAssumeAlignedAttr(Sema &S, Decl *D, 1519 const AttributeList &AL) { 1520 Expr *E = AL.getArgAsExpr(0), 1521 *OE = AL.getNumArgs() > 1 ? AL.getArgAsExpr(1) : nullptr; 1522 S.AddAssumeAlignedAttr(AL.getRange(), D, E, OE, 1523 AL.getAttributeSpellingListIndex()); 1524 } 1525 1526 static void handleAllocAlignAttr(Sema &S, Decl *D, 1527 const AttributeList &AL) { 1528 S.AddAllocAlignAttr(AL.getRange(), D, AL.getArgAsExpr(0), 1529 AL.getAttributeSpellingListIndex()); 1530 } 1531 1532 void Sema::AddAssumeAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E, 1533 Expr *OE, unsigned SpellingListIndex) { 1534 QualType ResultType = getFunctionOrMethodResultType(D); 1535 SourceRange SR = getFunctionOrMethodResultSourceRange(D); 1536 1537 AssumeAlignedAttr TmpAttr(AttrRange, Context, E, OE, SpellingListIndex); 1538 SourceLocation AttrLoc = AttrRange.getBegin(); 1539 1540 if (!isValidPointerAttrType(ResultType, /* RefOkay */ true)) { 1541 Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only) 1542 << &TmpAttr << AttrRange << SR; 1543 return; 1544 } 1545 1546 if (!E->isValueDependent()) { 1547 llvm::APSInt I(64); 1548 if (!E->isIntegerConstantExpr(I, Context)) { 1549 if (OE) 1550 Diag(AttrLoc, diag::err_attribute_argument_n_type) 1551 << &TmpAttr << 1 << AANT_ArgumentIntegerConstant 1552 << E->getSourceRange(); 1553 else 1554 Diag(AttrLoc, diag::err_attribute_argument_type) 1555 << &TmpAttr << AANT_ArgumentIntegerConstant 1556 << E->getSourceRange(); 1557 return; 1558 } 1559 1560 if (!I.isPowerOf2()) { 1561 Diag(AttrLoc, diag::err_alignment_not_power_of_two) 1562 << E->getSourceRange(); 1563 return; 1564 } 1565 } 1566 1567 if (OE) { 1568 if (!OE->isValueDependent()) { 1569 llvm::APSInt I(64); 1570 if (!OE->isIntegerConstantExpr(I, Context)) { 1571 Diag(AttrLoc, diag::err_attribute_argument_n_type) 1572 << &TmpAttr << 2 << AANT_ArgumentIntegerConstant 1573 << OE->getSourceRange(); 1574 return; 1575 } 1576 } 1577 } 1578 1579 D->addAttr(::new (Context) 1580 AssumeAlignedAttr(AttrRange, Context, E, OE, SpellingListIndex)); 1581 } 1582 1583 void Sema::AddAllocAlignAttr(SourceRange AttrRange, Decl *D, Expr *ParamExpr, 1584 unsigned SpellingListIndex) { 1585 QualType ResultType = getFunctionOrMethodResultType(D); 1586 1587 AllocAlignAttr TmpAttr(AttrRange, Context, ParamIdx(), SpellingListIndex); 1588 SourceLocation AttrLoc = AttrRange.getBegin(); 1589 1590 if (!ResultType->isDependentType() && 1591 !isValidPointerAttrType(ResultType, /* RefOkay */ true)) { 1592 Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only) 1593 << &TmpAttr << AttrRange << getFunctionOrMethodResultSourceRange(D); 1594 return; 1595 } 1596 1597 ParamIdx Idx; 1598 const auto *FuncDecl = cast<FunctionDecl>(D); 1599 if (!checkFunctionOrMethodParameterIndex(*this, FuncDecl, TmpAttr, 1600 /*AttrArgNo=*/1, ParamExpr, Idx)) 1601 return; 1602 1603 QualType Ty = getFunctionOrMethodParamType(D, Idx.getASTIndex()); 1604 if (!Ty->isDependentType() && !Ty->isIntegralType(Context)) { 1605 Diag(ParamExpr->getLocStart(), diag::err_attribute_integers_only) 1606 << &TmpAttr 1607 << FuncDecl->getParamDecl(Idx.getASTIndex())->getSourceRange(); 1608 return; 1609 } 1610 1611 D->addAttr(::new (Context) 1612 AllocAlignAttr(AttrRange, Context, Idx, SpellingListIndex)); 1613 } 1614 1615 /// Normalize the attribute, __foo__ becomes foo. 1616 /// Returns true if normalization was applied. 1617 static bool normalizeName(StringRef &AttrName) { 1618 if (AttrName.size() > 4 && AttrName.startswith("__") && 1619 AttrName.endswith("__")) { 1620 AttrName = AttrName.drop_front(2).drop_back(2); 1621 return true; 1622 } 1623 return false; 1624 } 1625 1626 static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) { 1627 // This attribute must be applied to a function declaration. The first 1628 // argument to the attribute must be an identifier, the name of the resource, 1629 // for example: malloc. The following arguments must be argument indexes, the 1630 // arguments must be of integer type for Returns, otherwise of pointer type. 1631 // The difference between Holds and Takes is that a pointer may still be used 1632 // after being held. free() should be __attribute((ownership_takes)), whereas 1633 // a list append function may well be __attribute((ownership_holds)). 1634 1635 if (!AL.isArgIdent(0)) { 1636 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 1637 << AL.getName() << 1 << AANT_ArgumentIdentifier; 1638 return; 1639 } 1640 1641 // Figure out our Kind. 1642 OwnershipAttr::OwnershipKind K = 1643 OwnershipAttr(AL.getLoc(), S.Context, nullptr, nullptr, 0, 1644 AL.getAttributeSpellingListIndex()).getOwnKind(); 1645 1646 // Check arguments. 1647 switch (K) { 1648 case OwnershipAttr::Takes: 1649 case OwnershipAttr::Holds: 1650 if (AL.getNumArgs() < 2) { 1651 S.Diag(AL.getLoc(), diag::err_attribute_too_few_arguments) 1652 << AL.getName() << 2; 1653 return; 1654 } 1655 break; 1656 case OwnershipAttr::Returns: 1657 if (AL.getNumArgs() > 2) { 1658 S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) 1659 << AL.getName() << 1; 1660 return; 1661 } 1662 break; 1663 } 1664 1665 IdentifierInfo *Module = AL.getArgAsIdent(0)->Ident; 1666 1667 StringRef ModuleName = Module->getName(); 1668 if (normalizeName(ModuleName)) { 1669 Module = &S.PP.getIdentifierTable().get(ModuleName); 1670 } 1671 1672 SmallVector<ParamIdx, 8> OwnershipArgs; 1673 for (unsigned i = 1; i < AL.getNumArgs(); ++i) { 1674 Expr *Ex = AL.getArgAsExpr(i); 1675 ParamIdx Idx; 1676 if (!checkFunctionOrMethodParameterIndex(S, D, AL, i, Ex, Idx)) 1677 return; 1678 1679 // Is the function argument a pointer type? 1680 QualType T = getFunctionOrMethodParamType(D, Idx.getASTIndex()); 1681 int Err = -1; // No error 1682 switch (K) { 1683 case OwnershipAttr::Takes: 1684 case OwnershipAttr::Holds: 1685 if (!T->isAnyPointerType() && !T->isBlockPointerType()) 1686 Err = 0; 1687 break; 1688 case OwnershipAttr::Returns: 1689 if (!T->isIntegerType()) 1690 Err = 1; 1691 break; 1692 } 1693 if (-1 != Err) { 1694 S.Diag(AL.getLoc(), diag::err_ownership_type) << AL.getName() << Err 1695 << Ex->getSourceRange(); 1696 return; 1697 } 1698 1699 // Check we don't have a conflict with another ownership attribute. 1700 for (const auto *I : D->specific_attrs<OwnershipAttr>()) { 1701 // Cannot have two ownership attributes of different kinds for the same 1702 // index. 1703 if (I->getOwnKind() != K && I->args_end() != 1704 std::find(I->args_begin(), I->args_end(), Idx)) { 1705 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible) 1706 << AL.getName() << I; 1707 return; 1708 } else if (K == OwnershipAttr::Returns && 1709 I->getOwnKind() == OwnershipAttr::Returns) { 1710 // A returns attribute conflicts with any other returns attribute using 1711 // a different index. 1712 if (std::find(I->args_begin(), I->args_end(), Idx) == I->args_end()) { 1713 S.Diag(I->getLocation(), diag::err_ownership_returns_index_mismatch) 1714 << I->args_begin()->getSourceIndex(); 1715 if (I->args_size()) 1716 S.Diag(AL.getLoc(), diag::note_ownership_returns_index_mismatch) 1717 << Idx.getSourceIndex() << Ex->getSourceRange(); 1718 return; 1719 } 1720 } 1721 } 1722 OwnershipArgs.push_back(Idx); 1723 } 1724 1725 ParamIdx *Start = OwnershipArgs.data(); 1726 unsigned Size = OwnershipArgs.size(); 1727 llvm::array_pod_sort(Start, Start + Size); 1728 D->addAttr(::new (S.Context) 1729 OwnershipAttr(AL.getLoc(), S.Context, Module, Start, Size, 1730 AL.getAttributeSpellingListIndex())); 1731 } 1732 1733 static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &AL) { 1734 // Check the attribute arguments. 1735 if (AL.getNumArgs() > 1) { 1736 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) 1737 << AL.getName() << 1; 1738 return; 1739 } 1740 1741 // gcc rejects 1742 // class c { 1743 // static int a __attribute__((weakref ("v2"))); 1744 // static int b() __attribute__((weakref ("f3"))); 1745 // }; 1746 // and ignores the attributes of 1747 // void f(void) { 1748 // static int a __attribute__((weakref ("v2"))); 1749 // } 1750 // we reject them 1751 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext(); 1752 if (!Ctx->isFileContext()) { 1753 S.Diag(AL.getLoc(), diag::err_attribute_weakref_not_global_context) 1754 << cast<NamedDecl>(D); 1755 return; 1756 } 1757 1758 // The GCC manual says 1759 // 1760 // At present, a declaration to which `weakref' is attached can only 1761 // be `static'. 1762 // 1763 // It also says 1764 // 1765 // Without a TARGET, 1766 // given as an argument to `weakref' or to `alias', `weakref' is 1767 // equivalent to `weak'. 1768 // 1769 // gcc 4.4.1 will accept 1770 // int a7 __attribute__((weakref)); 1771 // as 1772 // int a7 __attribute__((weak)); 1773 // This looks like a bug in gcc. We reject that for now. We should revisit 1774 // it if this behaviour is actually used. 1775 1776 // GCC rejects 1777 // static ((alias ("y"), weakref)). 1778 // Should we? How to check that weakref is before or after alias? 1779 1780 // FIXME: it would be good for us to keep the WeakRefAttr as-written instead 1781 // of transforming it into an AliasAttr. The WeakRefAttr never uses the 1782 // StringRef parameter it was given anyway. 1783 StringRef Str; 1784 if (AL.getNumArgs() && S.checkStringLiteralArgumentAttr(AL, 0, Str)) 1785 // GCC will accept anything as the argument of weakref. Should we 1786 // check for an existing decl? 1787 D->addAttr(::new (S.Context) AliasAttr(AL.getRange(), S.Context, Str, 1788 AL.getAttributeSpellingListIndex())); 1789 1790 D->addAttr(::new (S.Context) 1791 WeakRefAttr(AL.getRange(), S.Context, 1792 AL.getAttributeSpellingListIndex())); 1793 } 1794 1795 static void handleIFuncAttr(Sema &S, Decl *D, const AttributeList &AL) { 1796 StringRef Str; 1797 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str)) 1798 return; 1799 1800 // Aliases should be on declarations, not definitions. 1801 const auto *FD = cast<FunctionDecl>(D); 1802 if (FD->isThisDeclarationADefinition()) { 1803 S.Diag(AL.getLoc(), diag::err_alias_is_definition) << FD << 1; 1804 return; 1805 } 1806 1807 D->addAttr(::new (S.Context) IFuncAttr(AL.getRange(), S.Context, Str, 1808 AL.getAttributeSpellingListIndex())); 1809 } 1810 1811 static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &AL) { 1812 StringRef Str; 1813 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str)) 1814 return; 1815 1816 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) { 1817 S.Diag(AL.getLoc(), diag::err_alias_not_supported_on_darwin); 1818 return; 1819 } 1820 if (S.Context.getTargetInfo().getTriple().isNVPTX()) { 1821 S.Diag(AL.getLoc(), diag::err_alias_not_supported_on_nvptx); 1822 } 1823 1824 // Aliases should be on declarations, not definitions. 1825 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 1826 if (FD->isThisDeclarationADefinition()) { 1827 S.Diag(AL.getLoc(), diag::err_alias_is_definition) << FD << 0; 1828 return; 1829 } 1830 } else { 1831 const auto *VD = cast<VarDecl>(D); 1832 if (VD->isThisDeclarationADefinition() && VD->isExternallyVisible()) { 1833 S.Diag(AL.getLoc(), diag::err_alias_is_definition) << VD << 0; 1834 return; 1835 } 1836 } 1837 1838 // FIXME: check if target symbol exists in current file 1839 1840 D->addAttr(::new (S.Context) AliasAttr(AL.getRange(), S.Context, Str, 1841 AL.getAttributeSpellingListIndex())); 1842 } 1843 1844 static void handleTLSModelAttr(Sema &S, Decl *D, 1845 const AttributeList &AL) { 1846 StringRef Model; 1847 SourceLocation LiteralLoc; 1848 // Check that it is a string. 1849 if (!S.checkStringLiteralArgumentAttr(AL, 0, Model, &LiteralLoc)) 1850 return; 1851 1852 // Check that the value. 1853 if (Model != "global-dynamic" && Model != "local-dynamic" 1854 && Model != "initial-exec" && Model != "local-exec") { 1855 S.Diag(LiteralLoc, diag::err_attr_tlsmodel_arg); 1856 return; 1857 } 1858 1859 D->addAttr(::new (S.Context) 1860 TLSModelAttr(AL.getRange(), S.Context, Model, 1861 AL.getAttributeSpellingListIndex())); 1862 } 1863 1864 static void handleRestrictAttr(Sema &S, Decl *D, const AttributeList &AL) { 1865 QualType ResultType = getFunctionOrMethodResultType(D); 1866 if (ResultType->isAnyPointerType() || ResultType->isBlockPointerType()) { 1867 D->addAttr(::new (S.Context) RestrictAttr( 1868 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 1869 return; 1870 } 1871 1872 S.Diag(AL.getLoc(), diag::warn_attribute_return_pointers_only) 1873 << AL.getName() << getFunctionOrMethodResultSourceRange(D); 1874 } 1875 1876 static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &AL) { 1877 if (S.LangOpts.CPlusPlus) { 1878 S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang) 1879 << AL.getName() << AttributeLangSupport::Cpp; 1880 return; 1881 } 1882 1883 if (CommonAttr *CA = S.mergeCommonAttr(D, AL.getRange(), AL.getName(), 1884 AL.getAttributeSpellingListIndex())) 1885 D->addAttr(CA); 1886 } 1887 1888 static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &AL) { 1889 if (checkAttrMutualExclusion<DisableTailCallsAttr>(S, D, AL.getRange(), 1890 AL.getName())) 1891 return; 1892 1893 if (AL.isDeclspecAttribute()) { 1894 const auto &Triple = S.getASTContext().getTargetInfo().getTriple(); 1895 const auto &Arch = Triple.getArch(); 1896 if (Arch != llvm::Triple::x86 && 1897 (Arch != llvm::Triple::arm && Arch != llvm::Triple::thumb)) { 1898 S.Diag(AL.getLoc(), diag::err_attribute_not_supported_on_arch) 1899 << AL.getName() << Triple.getArchName(); 1900 return; 1901 } 1902 } 1903 1904 D->addAttr(::new (S.Context) NakedAttr(AL.getRange(), S.Context, 1905 AL.getAttributeSpellingListIndex())); 1906 } 1907 1908 static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &Attrs) { 1909 if (hasDeclarator(D)) return; 1910 1911 if (!isa<ObjCMethodDecl>(D)) { 1912 S.Diag(Attrs.getLoc(), diag::warn_attribute_wrong_decl_type) 1913 << Attrs.getName() << ExpectedFunctionOrMethod; 1914 return; 1915 } 1916 1917 D->addAttr(::new (S.Context) NoReturnAttr( 1918 Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex())); 1919 } 1920 1921 static void handleNoCfCheckAttr(Sema &S, Decl *D, const AttributeList &Attrs) { 1922 if (!S.getLangOpts().CFProtectionBranch) 1923 S.Diag(Attrs.getLoc(), diag::warn_nocf_check_attribute_ignored); 1924 else 1925 handleSimpleAttribute<AnyX86NoCfCheckAttr>(S, D, Attrs); 1926 } 1927 1928 bool Sema::CheckAttrNoArgs(const AttributeList &Attrs) { 1929 if (!checkAttributeNumArgs(*this, Attrs, 0)) { 1930 Attrs.setInvalid(); 1931 return true; 1932 } 1933 1934 return false; 1935 } 1936 1937 bool Sema::CheckAttrTarget(const AttributeList &AL) { 1938 // Check whether the attribute is valid on the current target. 1939 if (!AL.existsInTarget(Context.getTargetInfo())) { 1940 Diag(AL.getLoc(), diag::warn_unknown_attribute_ignored) << AL.getName(); 1941 AL.setInvalid(); 1942 return true; 1943 } 1944 1945 return false; 1946 } 1947 1948 static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D, 1949 const AttributeList &AL) { 1950 1951 // The checking path for 'noreturn' and 'analyzer_noreturn' are different 1952 // because 'analyzer_noreturn' does not impact the type. 1953 if (!isFunctionOrMethodOrBlock(D)) { 1954 ValueDecl *VD = dyn_cast<ValueDecl>(D); 1955 if (!VD || (!VD->getType()->isBlockPointerType() && 1956 !VD->getType()->isFunctionPointerType())) { 1957 S.Diag(AL.getLoc(), 1958 AL.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type 1959 : diag::warn_attribute_wrong_decl_type) 1960 << AL.getName() << ExpectedFunctionMethodOrBlock; 1961 return; 1962 } 1963 } 1964 1965 D->addAttr(::new (S.Context) 1966 AnalyzerNoReturnAttr(AL.getRange(), S.Context, 1967 AL.getAttributeSpellingListIndex())); 1968 } 1969 1970 // PS3 PPU-specific. 1971 static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &AL) { 1972 /* 1973 Returning a Vector Class in Registers 1974 1975 According to the PPU ABI specifications, a class with a single member of 1976 vector type is returned in memory when used as the return value of a function. 1977 This results in inefficient code when implementing vector classes. To return 1978 the value in a single vector register, add the vecreturn attribute to the 1979 class definition. This attribute is also applicable to struct types. 1980 1981 Example: 1982 1983 struct Vector 1984 { 1985 __vector float xyzw; 1986 } __attribute__((vecreturn)); 1987 1988 Vector Add(Vector lhs, Vector rhs) 1989 { 1990 Vector result; 1991 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw); 1992 return result; // This will be returned in a register 1993 } 1994 */ 1995 if (VecReturnAttr *A = D->getAttr<VecReturnAttr>()) { 1996 S.Diag(AL.getLoc(), diag::err_repeat_attribute) << A; 1997 return; 1998 } 1999 2000 const auto *R = cast<RecordDecl>(D); 2001 int count = 0; 2002 2003 if (!isa<CXXRecordDecl>(R)) { 2004 S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_vector_member); 2005 return; 2006 } 2007 2008 if (!cast<CXXRecordDecl>(R)->isPOD()) { 2009 S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_pod_record); 2010 return; 2011 } 2012 2013 for (const auto *I : R->fields()) { 2014 if ((count == 1) || !I->getType()->isVectorType()) { 2015 S.Diag(AL.getLoc(), diag::err_attribute_vecreturn_only_vector_member); 2016 return; 2017 } 2018 count++; 2019 } 2020 2021 D->addAttr(::new (S.Context) VecReturnAttr( 2022 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 2023 } 2024 2025 static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D, 2026 const AttributeList &AL) { 2027 if (isa<ParmVarDecl>(D)) { 2028 // [[carries_dependency]] can only be applied to a parameter if it is a 2029 // parameter of a function declaration or lambda. 2030 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) { 2031 S.Diag(AL.getLoc(), 2032 diag::err_carries_dependency_param_not_function_decl); 2033 return; 2034 } 2035 } 2036 2037 D->addAttr(::new (S.Context) CarriesDependencyAttr( 2038 AL.getRange(), S.Context, 2039 AL.getAttributeSpellingListIndex())); 2040 } 2041 2042 static void handleUnusedAttr(Sema &S, Decl *D, const AttributeList &AL) { 2043 bool IsCXX17Attr = AL.isCXX11Attribute() && !AL.getScopeName(); 2044 2045 // If this is spelled as the standard C++17 attribute, but not in C++17, warn 2046 // about using it as an extension. 2047 if (!S.getLangOpts().CPlusPlus17 && IsCXX17Attr) 2048 S.Diag(AL.getLoc(), diag::ext_cxx17_attr) << AL.getName(); 2049 2050 D->addAttr(::new (S.Context) UnusedAttr( 2051 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 2052 } 2053 2054 static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &AL) { 2055 uint32_t priority = ConstructorAttr::DefaultPriority; 2056 if (AL.getNumArgs() && 2057 !checkUInt32Argument(S, AL, AL.getArgAsExpr(0), priority)) 2058 return; 2059 2060 D->addAttr(::new (S.Context) 2061 ConstructorAttr(AL.getRange(), S.Context, priority, 2062 AL.getAttributeSpellingListIndex())); 2063 } 2064 2065 static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &AL) { 2066 uint32_t priority = DestructorAttr::DefaultPriority; 2067 if (AL.getNumArgs() && 2068 !checkUInt32Argument(S, AL, AL.getArgAsExpr(0), priority)) 2069 return; 2070 2071 D->addAttr(::new (S.Context) 2072 DestructorAttr(AL.getRange(), S.Context, priority, 2073 AL.getAttributeSpellingListIndex())); 2074 } 2075 2076 template <typename AttrTy> 2077 static void handleAttrWithMessage(Sema &S, Decl *D, 2078 const AttributeList &AL) { 2079 // Handle the case where the attribute has a text message. 2080 StringRef Str; 2081 if (AL.getNumArgs() == 1 && !S.checkStringLiteralArgumentAttr(AL, 0, Str)) 2082 return; 2083 2084 D->addAttr(::new (S.Context) AttrTy(AL.getRange(), S.Context, Str, 2085 AL.getAttributeSpellingListIndex())); 2086 } 2087 2088 static void handleObjCSuppresProtocolAttr(Sema &S, Decl *D, 2089 const AttributeList &AL) { 2090 if (!cast<ObjCProtocolDecl>(D)->isThisDeclarationADefinition()) { 2091 S.Diag(AL.getLoc(), diag::err_objc_attr_protocol_requires_definition) 2092 << AL.getName() << AL.getRange(); 2093 return; 2094 } 2095 2096 D->addAttr(::new (S.Context) 2097 ObjCExplicitProtocolImplAttr(AL.getRange(), S.Context, 2098 AL.getAttributeSpellingListIndex())); 2099 } 2100 2101 static bool checkAvailabilityAttr(Sema &S, SourceRange Range, 2102 IdentifierInfo *Platform, 2103 VersionTuple Introduced, 2104 VersionTuple Deprecated, 2105 VersionTuple Obsoleted) { 2106 StringRef PlatformName 2107 = AvailabilityAttr::getPrettyPlatformName(Platform->getName()); 2108 if (PlatformName.empty()) 2109 PlatformName = Platform->getName(); 2110 2111 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all 2112 // of these steps are needed). 2113 if (!Introduced.empty() && !Deprecated.empty() && 2114 !(Introduced <= Deprecated)) { 2115 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) 2116 << 1 << PlatformName << Deprecated.getAsString() 2117 << 0 << Introduced.getAsString(); 2118 return true; 2119 } 2120 2121 if (!Introduced.empty() && !Obsoleted.empty() && 2122 !(Introduced <= Obsoleted)) { 2123 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) 2124 << 2 << PlatformName << Obsoleted.getAsString() 2125 << 0 << Introduced.getAsString(); 2126 return true; 2127 } 2128 2129 if (!Deprecated.empty() && !Obsoleted.empty() && 2130 !(Deprecated <= Obsoleted)) { 2131 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) 2132 << 2 << PlatformName << Obsoleted.getAsString() 2133 << 1 << Deprecated.getAsString(); 2134 return true; 2135 } 2136 2137 return false; 2138 } 2139 2140 /// Check whether the two versions match. 2141 /// 2142 /// If either version tuple is empty, then they are assumed to match. If 2143 /// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y. 2144 static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y, 2145 bool BeforeIsOkay) { 2146 if (X.empty() || Y.empty()) 2147 return true; 2148 2149 if (X == Y) 2150 return true; 2151 2152 if (BeforeIsOkay && X < Y) 2153 return true; 2154 2155 return false; 2156 } 2157 2158 AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range, 2159 IdentifierInfo *Platform, 2160 bool Implicit, 2161 VersionTuple Introduced, 2162 VersionTuple Deprecated, 2163 VersionTuple Obsoleted, 2164 bool IsUnavailable, 2165 StringRef Message, 2166 bool IsStrict, 2167 StringRef Replacement, 2168 AvailabilityMergeKind AMK, 2169 unsigned AttrSpellingListIndex) { 2170 VersionTuple MergedIntroduced = Introduced; 2171 VersionTuple MergedDeprecated = Deprecated; 2172 VersionTuple MergedObsoleted = Obsoleted; 2173 bool FoundAny = false; 2174 bool OverrideOrImpl = false; 2175 switch (AMK) { 2176 case AMK_None: 2177 case AMK_Redeclaration: 2178 OverrideOrImpl = false; 2179 break; 2180 2181 case AMK_Override: 2182 case AMK_ProtocolImplementation: 2183 OverrideOrImpl = true; 2184 break; 2185 } 2186 2187 if (D->hasAttrs()) { 2188 AttrVec &Attrs = D->getAttrs(); 2189 for (unsigned i = 0, e = Attrs.size(); i != e;) { 2190 const auto *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]); 2191 if (!OldAA) { 2192 ++i; 2193 continue; 2194 } 2195 2196 IdentifierInfo *OldPlatform = OldAA->getPlatform(); 2197 if (OldPlatform != Platform) { 2198 ++i; 2199 continue; 2200 } 2201 2202 // If there is an existing availability attribute for this platform that 2203 // is explicit and the new one is implicit use the explicit one and 2204 // discard the new implicit attribute. 2205 if (!OldAA->isImplicit() && Implicit) { 2206 return nullptr; 2207 } 2208 2209 // If there is an existing attribute for this platform that is implicit 2210 // and the new attribute is explicit then erase the old one and 2211 // continue processing the attributes. 2212 if (!Implicit && OldAA->isImplicit()) { 2213 Attrs.erase(Attrs.begin() + i); 2214 --e; 2215 continue; 2216 } 2217 2218 FoundAny = true; 2219 VersionTuple OldIntroduced = OldAA->getIntroduced(); 2220 VersionTuple OldDeprecated = OldAA->getDeprecated(); 2221 VersionTuple OldObsoleted = OldAA->getObsoleted(); 2222 bool OldIsUnavailable = OldAA->getUnavailable(); 2223 2224 if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl) || 2225 !versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl) || 2226 !versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl) || 2227 !(OldIsUnavailable == IsUnavailable || 2228 (OverrideOrImpl && !OldIsUnavailable && IsUnavailable))) { 2229 if (OverrideOrImpl) { 2230 int Which = -1; 2231 VersionTuple FirstVersion; 2232 VersionTuple SecondVersion; 2233 if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl)) { 2234 Which = 0; 2235 FirstVersion = OldIntroduced; 2236 SecondVersion = Introduced; 2237 } else if (!versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl)) { 2238 Which = 1; 2239 FirstVersion = Deprecated; 2240 SecondVersion = OldDeprecated; 2241 } else if (!versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl)) { 2242 Which = 2; 2243 FirstVersion = Obsoleted; 2244 SecondVersion = OldObsoleted; 2245 } 2246 2247 if (Which == -1) { 2248 Diag(OldAA->getLocation(), 2249 diag::warn_mismatched_availability_override_unavail) 2250 << AvailabilityAttr::getPrettyPlatformName(Platform->getName()) 2251 << (AMK == AMK_Override); 2252 } else { 2253 Diag(OldAA->getLocation(), 2254 diag::warn_mismatched_availability_override) 2255 << Which 2256 << AvailabilityAttr::getPrettyPlatformName(Platform->getName()) 2257 << FirstVersion.getAsString() << SecondVersion.getAsString() 2258 << (AMK == AMK_Override); 2259 } 2260 if (AMK == AMK_Override) 2261 Diag(Range.getBegin(), diag::note_overridden_method); 2262 else 2263 Diag(Range.getBegin(), diag::note_protocol_method); 2264 } else { 2265 Diag(OldAA->getLocation(), diag::warn_mismatched_availability); 2266 Diag(Range.getBegin(), diag::note_previous_attribute); 2267 } 2268 2269 Attrs.erase(Attrs.begin() + i); 2270 --e; 2271 continue; 2272 } 2273 2274 VersionTuple MergedIntroduced2 = MergedIntroduced; 2275 VersionTuple MergedDeprecated2 = MergedDeprecated; 2276 VersionTuple MergedObsoleted2 = MergedObsoleted; 2277 2278 if (MergedIntroduced2.empty()) 2279 MergedIntroduced2 = OldIntroduced; 2280 if (MergedDeprecated2.empty()) 2281 MergedDeprecated2 = OldDeprecated; 2282 if (MergedObsoleted2.empty()) 2283 MergedObsoleted2 = OldObsoleted; 2284 2285 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform, 2286 MergedIntroduced2, MergedDeprecated2, 2287 MergedObsoleted2)) { 2288 Attrs.erase(Attrs.begin() + i); 2289 --e; 2290 continue; 2291 } 2292 2293 MergedIntroduced = MergedIntroduced2; 2294 MergedDeprecated = MergedDeprecated2; 2295 MergedObsoleted = MergedObsoleted2; 2296 ++i; 2297 } 2298 } 2299 2300 if (FoundAny && 2301 MergedIntroduced == Introduced && 2302 MergedDeprecated == Deprecated && 2303 MergedObsoleted == Obsoleted) 2304 return nullptr; 2305 2306 // Only create a new attribute if !OverrideOrImpl, but we want to do 2307 // the checking. 2308 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced, 2309 MergedDeprecated, MergedObsoleted) && 2310 !OverrideOrImpl) { 2311 auto *Avail = ::new (Context) AvailabilityAttr(Range, Context, Platform, 2312 Introduced, Deprecated, 2313 Obsoleted, IsUnavailable, Message, 2314 IsStrict, Replacement, 2315 AttrSpellingListIndex); 2316 Avail->setImplicit(Implicit); 2317 return Avail; 2318 } 2319 return nullptr; 2320 } 2321 2322 static void handleAvailabilityAttr(Sema &S, Decl *D, 2323 const AttributeList &AL) { 2324 if (!checkAttributeNumArgs(S, AL, 1)) 2325 return; 2326 IdentifierLoc *Platform = AL.getArgAsIdent(0); 2327 unsigned Index = AL.getAttributeSpellingListIndex(); 2328 2329 IdentifierInfo *II = Platform->Ident; 2330 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty()) 2331 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform) 2332 << Platform->Ident; 2333 2334 auto *ND = dyn_cast<NamedDecl>(D); 2335 if (!ND) // We warned about this already, so just return. 2336 return; 2337 2338 AvailabilityChange Introduced = AL.getAvailabilityIntroduced(); 2339 AvailabilityChange Deprecated = AL.getAvailabilityDeprecated(); 2340 AvailabilityChange Obsoleted = AL.getAvailabilityObsoleted(); 2341 bool IsUnavailable = AL.getUnavailableLoc().isValid(); 2342 bool IsStrict = AL.getStrictLoc().isValid(); 2343 StringRef Str; 2344 if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getMessageExpr())) 2345 Str = SE->getString(); 2346 StringRef Replacement; 2347 if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getReplacementExpr())) 2348 Replacement = SE->getString(); 2349 2350 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, AL.getRange(), II, 2351 false/*Implicit*/, 2352 Introduced.Version, 2353 Deprecated.Version, 2354 Obsoleted.Version, 2355 IsUnavailable, Str, 2356 IsStrict, Replacement, 2357 Sema::AMK_None, 2358 Index); 2359 if (NewAttr) 2360 D->addAttr(NewAttr); 2361 2362 // Transcribe "ios" to "watchos" (and add a new attribute) if the versioning 2363 // matches before the start of the watchOS platform. 2364 if (S.Context.getTargetInfo().getTriple().isWatchOS()) { 2365 IdentifierInfo *NewII = nullptr; 2366 if (II->getName() == "ios") 2367 NewII = &S.Context.Idents.get("watchos"); 2368 else if (II->getName() == "ios_app_extension") 2369 NewII = &S.Context.Idents.get("watchos_app_extension"); 2370 2371 if (NewII) { 2372 auto adjustWatchOSVersion = [](VersionTuple Version) -> VersionTuple { 2373 if (Version.empty()) 2374 return Version; 2375 auto Major = Version.getMajor(); 2376 auto NewMajor = Major >= 9 ? Major - 7 : 0; 2377 if (NewMajor >= 2) { 2378 if (Version.getMinor().hasValue()) { 2379 if (Version.getSubminor().hasValue()) 2380 return VersionTuple(NewMajor, Version.getMinor().getValue(), 2381 Version.getSubminor().getValue()); 2382 else 2383 return VersionTuple(NewMajor, Version.getMinor().getValue()); 2384 } 2385 } 2386 2387 return VersionTuple(2, 0); 2388 }; 2389 2390 auto NewIntroduced = adjustWatchOSVersion(Introduced.Version); 2391 auto NewDeprecated = adjustWatchOSVersion(Deprecated.Version); 2392 auto NewObsoleted = adjustWatchOSVersion(Obsoleted.Version); 2393 2394 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, 2395 AL.getRange(), 2396 NewII, 2397 true/*Implicit*/, 2398 NewIntroduced, 2399 NewDeprecated, 2400 NewObsoleted, 2401 IsUnavailable, Str, 2402 IsStrict, 2403 Replacement, 2404 Sema::AMK_None, 2405 Index); 2406 if (NewAttr) 2407 D->addAttr(NewAttr); 2408 } 2409 } else if (S.Context.getTargetInfo().getTriple().isTvOS()) { 2410 // Transcribe "ios" to "tvos" (and add a new attribute) if the versioning 2411 // matches before the start of the tvOS platform. 2412 IdentifierInfo *NewII = nullptr; 2413 if (II->getName() == "ios") 2414 NewII = &S.Context.Idents.get("tvos"); 2415 else if (II->getName() == "ios_app_extension") 2416 NewII = &S.Context.Idents.get("tvos_app_extension"); 2417 2418 if (NewII) { 2419 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, 2420 AL.getRange(), 2421 NewII, 2422 true/*Implicit*/, 2423 Introduced.Version, 2424 Deprecated.Version, 2425 Obsoleted.Version, 2426 IsUnavailable, Str, 2427 IsStrict, 2428 Replacement, 2429 Sema::AMK_None, 2430 Index); 2431 if (NewAttr) 2432 D->addAttr(NewAttr); 2433 } 2434 } 2435 } 2436 2437 static void handleExternalSourceSymbolAttr(Sema &S, Decl *D, 2438 const AttributeList &AL) { 2439 if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 2440 return; 2441 assert(checkAttributeAtMostNumArgs(S, AL, 3) && 2442 "Invalid number of arguments in an external_source_symbol attribute"); 2443 2444 StringRef Language; 2445 if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getArgAsExpr(0))) 2446 Language = SE->getString(); 2447 StringRef DefinedIn; 2448 if (const auto *SE = dyn_cast_or_null<StringLiteral>(AL.getArgAsExpr(1))) 2449 DefinedIn = SE->getString(); 2450 bool IsGeneratedDeclaration = AL.getArgAsIdent(2) != nullptr; 2451 2452 D->addAttr(::new (S.Context) ExternalSourceSymbolAttr( 2453 AL.getRange(), S.Context, Language, DefinedIn, IsGeneratedDeclaration, 2454 AL.getAttributeSpellingListIndex())); 2455 } 2456 2457 template <class T> 2458 static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range, 2459 typename T::VisibilityType value, 2460 unsigned attrSpellingListIndex) { 2461 T *existingAttr = D->getAttr<T>(); 2462 if (existingAttr) { 2463 typename T::VisibilityType existingValue = existingAttr->getVisibility(); 2464 if (existingValue == value) 2465 return nullptr; 2466 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility); 2467 S.Diag(range.getBegin(), diag::note_previous_attribute); 2468 D->dropAttr<T>(); 2469 } 2470 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex); 2471 } 2472 2473 VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range, 2474 VisibilityAttr::VisibilityType Vis, 2475 unsigned AttrSpellingListIndex) { 2476 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis, 2477 AttrSpellingListIndex); 2478 } 2479 2480 TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range, 2481 TypeVisibilityAttr::VisibilityType Vis, 2482 unsigned AttrSpellingListIndex) { 2483 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis, 2484 AttrSpellingListIndex); 2485 } 2486 2487 static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &AL, 2488 bool isTypeVisibility) { 2489 // Visibility attributes don't mean anything on a typedef. 2490 if (isa<TypedefNameDecl>(D)) { 2491 S.Diag(AL.getRange().getBegin(), diag::warn_attribute_ignored) 2492 << AL.getName(); 2493 return; 2494 } 2495 2496 // 'type_visibility' can only go on a type or namespace. 2497 if (isTypeVisibility && 2498 !(isa<TagDecl>(D) || 2499 isa<ObjCInterfaceDecl>(D) || 2500 isa<NamespaceDecl>(D))) { 2501 S.Diag(AL.getRange().getBegin(), diag::err_attribute_wrong_decl_type) 2502 << AL.getName() << ExpectedTypeOrNamespace; 2503 return; 2504 } 2505 2506 // Check that the argument is a string literal. 2507 StringRef TypeStr; 2508 SourceLocation LiteralLoc; 2509 if (!S.checkStringLiteralArgumentAttr(AL, 0, TypeStr, &LiteralLoc)) 2510 return; 2511 2512 VisibilityAttr::VisibilityType type; 2513 if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) { 2514 S.Diag(LiteralLoc, diag::warn_attribute_type_not_supported) 2515 << AL.getName() << TypeStr; 2516 return; 2517 } 2518 2519 // Complain about attempts to use protected visibility on targets 2520 // (like Darwin) that don't support it. 2521 if (type == VisibilityAttr::Protected && 2522 !S.Context.getTargetInfo().hasProtectedVisibility()) { 2523 S.Diag(AL.getLoc(), diag::warn_attribute_protected_visibility); 2524 type = VisibilityAttr::Default; 2525 } 2526 2527 unsigned Index = AL.getAttributeSpellingListIndex(); 2528 Attr *newAttr; 2529 if (isTypeVisibility) { 2530 newAttr = S.mergeTypeVisibilityAttr(D, AL.getRange(), 2531 (TypeVisibilityAttr::VisibilityType) type, 2532 Index); 2533 } else { 2534 newAttr = S.mergeVisibilityAttr(D, AL.getRange(), type, Index); 2535 } 2536 if (newAttr) 2537 D->addAttr(newAttr); 2538 } 2539 2540 static void handleObjCMethodFamilyAttr(Sema &S, Decl *D, 2541 const AttributeList &AL) { 2542 const auto *M = cast<ObjCMethodDecl>(D); 2543 if (!AL.isArgIdent(0)) { 2544 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 2545 << AL.getName() << 1 << AANT_ArgumentIdentifier; 2546 return; 2547 } 2548 2549 IdentifierLoc *IL = AL.getArgAsIdent(0); 2550 ObjCMethodFamilyAttr::FamilyKind F; 2551 if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) { 2552 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) 2553 << AL.getName() << IL->Ident; 2554 return; 2555 } 2556 2557 if (F == ObjCMethodFamilyAttr::OMF_init && 2558 !M->getReturnType()->isObjCObjectPointerType()) { 2559 S.Diag(M->getLocation(), diag::err_init_method_bad_return_type) 2560 << M->getReturnType(); 2561 // Ignore the attribute. 2562 return; 2563 } 2564 2565 D->addAttr(new (S.Context) ObjCMethodFamilyAttr( 2566 AL.getRange(), S.Context, F, AL.getAttributeSpellingListIndex())); 2567 } 2568 2569 static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &AL) { 2570 if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) { 2571 QualType T = TD->getUnderlyingType(); 2572 if (!T->isCARCBridgableType()) { 2573 S.Diag(TD->getLocation(), diag::err_nsobject_attribute); 2574 return; 2575 } 2576 } 2577 else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) { 2578 QualType T = PD->getType(); 2579 if (!T->isCARCBridgableType()) { 2580 S.Diag(PD->getLocation(), diag::err_nsobject_attribute); 2581 return; 2582 } 2583 } 2584 else { 2585 // It is okay to include this attribute on properties, e.g.: 2586 // 2587 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject)); 2588 // 2589 // In this case it follows tradition and suppresses an error in the above 2590 // case. 2591 S.Diag(D->getLocation(), diag::warn_nsobject_attribute); 2592 } 2593 D->addAttr(::new (S.Context) 2594 ObjCNSObjectAttr(AL.getRange(), S.Context, 2595 AL.getAttributeSpellingListIndex())); 2596 } 2597 2598 static void handleObjCIndependentClass(Sema &S, Decl *D, const AttributeList &AL) { 2599 if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) { 2600 QualType T = TD->getUnderlyingType(); 2601 if (!T->isObjCObjectPointerType()) { 2602 S.Diag(TD->getLocation(), diag::warn_ptr_independentclass_attribute); 2603 return; 2604 } 2605 } else { 2606 S.Diag(D->getLocation(), diag::warn_independentclass_attribute); 2607 return; 2608 } 2609 D->addAttr(::new (S.Context) 2610 ObjCIndependentClassAttr(AL.getRange(), S.Context, 2611 AL.getAttributeSpellingListIndex())); 2612 } 2613 2614 static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &AL) { 2615 if (!AL.isArgIdent(0)) { 2616 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 2617 << AL.getName() << 1 << AANT_ArgumentIdentifier; 2618 return; 2619 } 2620 2621 IdentifierInfo *II = AL.getArgAsIdent(0)->Ident; 2622 BlocksAttr::BlockType type; 2623 if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) { 2624 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) 2625 << AL.getName() << II; 2626 return; 2627 } 2628 2629 D->addAttr(::new (S.Context) 2630 BlocksAttr(AL.getRange(), S.Context, type, 2631 AL.getAttributeSpellingListIndex())); 2632 } 2633 2634 static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &AL) { 2635 unsigned sentinel = (unsigned)SentinelAttr::DefaultSentinel; 2636 if (AL.getNumArgs() > 0) { 2637 Expr *E = AL.getArgAsExpr(0); 2638 llvm::APSInt Idx(32); 2639 if (E->isTypeDependent() || E->isValueDependent() || 2640 !E->isIntegerConstantExpr(Idx, S.Context)) { 2641 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 2642 << AL.getName() << 1 << AANT_ArgumentIntegerConstant 2643 << E->getSourceRange(); 2644 return; 2645 } 2646 2647 if (Idx.isSigned() && Idx.isNegative()) { 2648 S.Diag(AL.getLoc(), diag::err_attribute_sentinel_less_than_zero) 2649 << E->getSourceRange(); 2650 return; 2651 } 2652 2653 sentinel = Idx.getZExtValue(); 2654 } 2655 2656 unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos; 2657 if (AL.getNumArgs() > 1) { 2658 Expr *E = AL.getArgAsExpr(1); 2659 llvm::APSInt Idx(32); 2660 if (E->isTypeDependent() || E->isValueDependent() || 2661 !E->isIntegerConstantExpr(Idx, S.Context)) { 2662 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 2663 << AL.getName() << 2 << AANT_ArgumentIntegerConstant 2664 << E->getSourceRange(); 2665 return; 2666 } 2667 nullPos = Idx.getZExtValue(); 2668 2669 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) { 2670 // FIXME: This error message could be improved, it would be nice 2671 // to say what the bounds actually are. 2672 S.Diag(AL.getLoc(), diag::err_attribute_sentinel_not_zero_or_one) 2673 << E->getSourceRange(); 2674 return; 2675 } 2676 } 2677 2678 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 2679 const FunctionType *FT = FD->getType()->castAs<FunctionType>(); 2680 if (isa<FunctionNoProtoType>(FT)) { 2681 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_named_arguments); 2682 return; 2683 } 2684 2685 if (!cast<FunctionProtoType>(FT)->isVariadic()) { 2686 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0; 2687 return; 2688 } 2689 } else if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) { 2690 if (!MD->isVariadic()) { 2691 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0; 2692 return; 2693 } 2694 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) { 2695 if (!BD->isVariadic()) { 2696 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1; 2697 return; 2698 } 2699 } else if (const auto *V = dyn_cast<VarDecl>(D)) { 2700 QualType Ty = V->getType(); 2701 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { 2702 const FunctionType *FT = Ty->isFunctionPointerType() 2703 ? D->getFunctionType() 2704 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>(); 2705 if (!cast<FunctionProtoType>(FT)->isVariadic()) { 2706 int m = Ty->isFunctionPointerType() ? 0 : 1; 2707 S.Diag(AL.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m; 2708 return; 2709 } 2710 } else { 2711 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) 2712 << AL.getName() << ExpectedFunctionMethodOrBlock; 2713 return; 2714 } 2715 } else { 2716 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) 2717 << AL.getName() << ExpectedFunctionMethodOrBlock; 2718 return; 2719 } 2720 D->addAttr(::new (S.Context) 2721 SentinelAttr(AL.getRange(), S.Context, sentinel, nullPos, 2722 AL.getAttributeSpellingListIndex())); 2723 } 2724 2725 static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &AL) { 2726 if (D->getFunctionType() && 2727 D->getFunctionType()->getReturnType()->isVoidType()) { 2728 S.Diag(AL.getLoc(), diag::warn_attribute_void_function_method) 2729 << AL.getName() << 0; 2730 return; 2731 } 2732 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) 2733 if (MD->getReturnType()->isVoidType()) { 2734 S.Diag(AL.getLoc(), diag::warn_attribute_void_function_method) 2735 << AL.getName() << 1; 2736 return; 2737 } 2738 2739 // If this is spelled as the standard C++17 attribute, but not in C++17, warn 2740 // about using it as an extension. 2741 if (!S.getLangOpts().CPlusPlus17 && AL.isCXX11Attribute() && 2742 !AL.getScopeName()) 2743 S.Diag(AL.getLoc(), diag::ext_cxx17_attr) << AL.getName(); 2744 2745 D->addAttr(::new (S.Context) 2746 WarnUnusedResultAttr(AL.getRange(), S.Context, 2747 AL.getAttributeSpellingListIndex())); 2748 } 2749 2750 static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &AL) { 2751 // weak_import only applies to variable & function declarations. 2752 bool isDef = false; 2753 if (!D->canBeWeakImported(isDef)) { 2754 if (isDef) 2755 S.Diag(AL.getLoc(), diag::warn_attribute_invalid_on_definition) 2756 << "weak_import"; 2757 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) || 2758 (S.Context.getTargetInfo().getTriple().isOSDarwin() && 2759 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) { 2760 // Nothing to warn about here. 2761 } else 2762 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) 2763 << AL.getName() << ExpectedVariableOrFunction; 2764 2765 return; 2766 } 2767 2768 D->addAttr(::new (S.Context) 2769 WeakImportAttr(AL.getRange(), S.Context, 2770 AL.getAttributeSpellingListIndex())); 2771 } 2772 2773 // Handles reqd_work_group_size and work_group_size_hint. 2774 template <typename WorkGroupAttr> 2775 static void handleWorkGroupSize(Sema &S, Decl *D, 2776 const AttributeList &AL) { 2777 uint32_t WGSize[3]; 2778 for (unsigned i = 0; i < 3; ++i) { 2779 const Expr *E = AL.getArgAsExpr(i); 2780 if (!checkUInt32Argument(S, AL, E, WGSize[i], i)) 2781 return; 2782 if (WGSize[i] == 0) { 2783 S.Diag(AL.getLoc(), diag::err_attribute_argument_is_zero) 2784 << AL.getName() << E->getSourceRange(); 2785 return; 2786 } 2787 } 2788 2789 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>(); 2790 if (Existing && !(Existing->getXDim() == WGSize[0] && 2791 Existing->getYDim() == WGSize[1] && 2792 Existing->getZDim() == WGSize[2])) 2793 S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL.getName(); 2794 2795 D->addAttr(::new (S.Context) WorkGroupAttr(AL.getRange(), S.Context, 2796 WGSize[0], WGSize[1], WGSize[2], 2797 AL.getAttributeSpellingListIndex())); 2798 } 2799 2800 // Handles intel_reqd_sub_group_size. 2801 static void handleSubGroupSize(Sema &S, Decl *D, const AttributeList &AL) { 2802 uint32_t SGSize; 2803 const Expr *E = AL.getArgAsExpr(0); 2804 if (!checkUInt32Argument(S, AL, E, SGSize)) 2805 return; 2806 if (SGSize == 0) { 2807 S.Diag(AL.getLoc(), diag::err_attribute_argument_is_zero) 2808 << AL.getName() << E->getSourceRange(); 2809 return; 2810 } 2811 2812 OpenCLIntelReqdSubGroupSizeAttr *Existing = 2813 D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>(); 2814 if (Existing && Existing->getSubGroupSize() != SGSize) 2815 S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL.getName(); 2816 2817 D->addAttr(::new (S.Context) OpenCLIntelReqdSubGroupSizeAttr( 2818 AL.getRange(), S.Context, SGSize, 2819 AL.getAttributeSpellingListIndex())); 2820 } 2821 2822 static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &AL) { 2823 if (!AL.hasParsedType()) { 2824 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) 2825 << AL.getName() << 1; 2826 return; 2827 } 2828 2829 TypeSourceInfo *ParmTSI = nullptr; 2830 QualType ParmType = S.GetTypeFromParser(AL.getTypeArg(), &ParmTSI); 2831 assert(ParmTSI && "no type source info for attribute argument"); 2832 2833 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() && 2834 (ParmType->isBooleanType() || 2835 !ParmType->isIntegralType(S.getASTContext()))) { 2836 S.Diag(AL.getLoc(), diag::err_attribute_argument_vec_type_hint) 2837 << ParmType; 2838 return; 2839 } 2840 2841 if (VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>()) { 2842 if (!S.Context.hasSameType(A->getTypeHint(), ParmType)) { 2843 S.Diag(AL.getLoc(), diag::warn_duplicate_attribute) << AL.getName(); 2844 return; 2845 } 2846 } 2847 2848 D->addAttr(::new (S.Context) VecTypeHintAttr(AL.getLoc(), S.Context, 2849 ParmTSI, 2850 AL.getAttributeSpellingListIndex())); 2851 } 2852 2853 SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range, 2854 StringRef Name, 2855 unsigned AttrSpellingListIndex) { 2856 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) { 2857 if (ExistingAttr->getName() == Name) 2858 return nullptr; 2859 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section); 2860 Diag(Range.getBegin(), diag::note_previous_attribute); 2861 return nullptr; 2862 } 2863 return ::new (Context) SectionAttr(Range, Context, Name, 2864 AttrSpellingListIndex); 2865 } 2866 2867 bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) { 2868 std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName); 2869 if (!Error.empty()) { 2870 Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) << Error; 2871 return false; 2872 } 2873 return true; 2874 } 2875 2876 static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &AL) { 2877 // Make sure that there is a string literal as the sections's single 2878 // argument. 2879 StringRef Str; 2880 SourceLocation LiteralLoc; 2881 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc)) 2882 return; 2883 2884 if (!S.checkSectionName(LiteralLoc, Str)) 2885 return; 2886 2887 // If the target wants to validate the section specifier, make it happen. 2888 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str); 2889 if (!Error.empty()) { 2890 S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) 2891 << Error; 2892 return; 2893 } 2894 2895 unsigned Index = AL.getAttributeSpellingListIndex(); 2896 SectionAttr *NewAttr = S.mergeSectionAttr(D, AL.getRange(), Str, Index); 2897 if (NewAttr) 2898 D->addAttr(NewAttr); 2899 } 2900 2901 // Check for things we'd like to warn about. Multiversioning issues are 2902 // handled later in the process, once we know how many exist. 2903 bool Sema::checkTargetAttr(SourceLocation LiteralLoc, StringRef AttrStr) { 2904 enum FirstParam { Unsupported, Duplicate }; 2905 enum SecondParam { None, Architecture }; 2906 for (auto Str : {"tune=", "fpmath="}) 2907 if (AttrStr.find(Str) != StringRef::npos) 2908 return Diag(LiteralLoc, diag::warn_unsupported_target_attribute) 2909 << Unsupported << None << Str; 2910 2911 TargetAttr::ParsedTargetAttr ParsedAttrs = TargetAttr::parse(AttrStr); 2912 2913 if (!ParsedAttrs.Architecture.empty() && 2914 !Context.getTargetInfo().isValidCPUName(ParsedAttrs.Architecture)) 2915 return Diag(LiteralLoc, diag::warn_unsupported_target_attribute) 2916 << Unsupported << Architecture << ParsedAttrs.Architecture; 2917 2918 if (ParsedAttrs.DuplicateArchitecture) 2919 return Diag(LiteralLoc, diag::warn_unsupported_target_attribute) 2920 << Duplicate << None << "arch="; 2921 2922 for (const auto &Feature : ParsedAttrs.Features) { 2923 auto CurFeature = StringRef(Feature).drop_front(); // remove + or -. 2924 if (!Context.getTargetInfo().isValidFeatureName(CurFeature)) 2925 return Diag(LiteralLoc, diag::warn_unsupported_target_attribute) 2926 << Unsupported << None << CurFeature; 2927 } 2928 2929 return false; 2930 } 2931 2932 static void handleTargetAttr(Sema &S, Decl *D, const AttributeList &AL) { 2933 StringRef Str; 2934 SourceLocation LiteralLoc; 2935 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &LiteralLoc) || 2936 S.checkTargetAttr(LiteralLoc, Str)) 2937 return; 2938 2939 unsigned Index = AL.getAttributeSpellingListIndex(); 2940 TargetAttr *NewAttr = 2941 ::new (S.Context) TargetAttr(AL.getRange(), S.Context, Str, Index); 2942 D->addAttr(NewAttr); 2943 } 2944 2945 static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &AL) { 2946 Expr *E = AL.getArgAsExpr(0); 2947 SourceLocation Loc = E->getExprLoc(); 2948 FunctionDecl *FD = nullptr; 2949 DeclarationNameInfo NI; 2950 2951 // gcc only allows for simple identifiers. Since we support more than gcc, we 2952 // will warn the user. 2953 if (auto *DRE = dyn_cast<DeclRefExpr>(E)) { 2954 if (DRE->hasQualifier()) 2955 S.Diag(Loc, diag::warn_cleanup_ext); 2956 FD = dyn_cast<FunctionDecl>(DRE->getDecl()); 2957 NI = DRE->getNameInfo(); 2958 if (!FD) { 2959 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1 2960 << NI.getName(); 2961 return; 2962 } 2963 } else if (auto *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { 2964 if (ULE->hasExplicitTemplateArgs()) 2965 S.Diag(Loc, diag::warn_cleanup_ext); 2966 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); 2967 NI = ULE->getNameInfo(); 2968 if (!FD) { 2969 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 2 2970 << NI.getName(); 2971 if (ULE->getType() == S.Context.OverloadTy) 2972 S.NoteAllOverloadCandidates(ULE); 2973 return; 2974 } 2975 } else { 2976 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0; 2977 return; 2978 } 2979 2980 if (FD->getNumParams() != 1) { 2981 S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg) 2982 << NI.getName(); 2983 return; 2984 } 2985 2986 // We're currently more strict than GCC about what function types we accept. 2987 // If this ever proves to be a problem it should be easy to fix. 2988 QualType Ty = S.Context.getPointerType(cast<VarDecl>(D)->getType()); 2989 QualType ParamTy = FD->getParamDecl(0)->getType(); 2990 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(), 2991 ParamTy, Ty) != Sema::Compatible) { 2992 S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type) 2993 << NI.getName() << ParamTy << Ty; 2994 return; 2995 } 2996 2997 D->addAttr(::new (S.Context) 2998 CleanupAttr(AL.getRange(), S.Context, FD, 2999 AL.getAttributeSpellingListIndex())); 3000 } 3001 3002 static void handleEnumExtensibilityAttr(Sema &S, Decl *D, 3003 const AttributeList &AL) { 3004 if (!AL.isArgIdent(0)) { 3005 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 3006 << AL.getName() << 0 << AANT_ArgumentIdentifier; 3007 return; 3008 } 3009 3010 EnumExtensibilityAttr::Kind ExtensibilityKind; 3011 IdentifierInfo *II = AL.getArgAsIdent(0)->Ident; 3012 if (!EnumExtensibilityAttr::ConvertStrToKind(II->getName(), 3013 ExtensibilityKind)) { 3014 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) 3015 << AL.getName() << II; 3016 return; 3017 } 3018 3019 D->addAttr(::new (S.Context) EnumExtensibilityAttr( 3020 AL.getRange(), S.Context, ExtensibilityKind, 3021 AL.getAttributeSpellingListIndex())); 3022 } 3023 3024 /// Handle __attribute__((format_arg((idx)))) attribute based on 3025 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html 3026 static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &AL) { 3027 Expr *IdxExpr = AL.getArgAsExpr(0); 3028 ParamIdx Idx; 3029 if (!checkFunctionOrMethodParameterIndex(S, D, AL, 1, IdxExpr, Idx)) 3030 return; 3031 3032 // Make sure the format string is really a string. 3033 QualType Ty = getFunctionOrMethodParamType(D, Idx.getASTIndex()); 3034 3035 bool NotNSStringTy = !isNSStringType(Ty, S.Context); 3036 if (NotNSStringTy && 3037 !isCFStringType(Ty, S.Context) && 3038 (!Ty->isPointerType() || 3039 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) { 3040 S.Diag(AL.getLoc(), diag::err_format_attribute_not) 3041 << "a string type" << IdxExpr->getSourceRange() 3042 << getFunctionOrMethodParamRange(D, 0); 3043 return; 3044 } 3045 Ty = getFunctionOrMethodResultType(D); 3046 if (!isNSStringType(Ty, S.Context) && 3047 !isCFStringType(Ty, S.Context) && 3048 (!Ty->isPointerType() || 3049 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) { 3050 S.Diag(AL.getLoc(), diag::err_format_attribute_result_not) 3051 << (NotNSStringTy ? "string type" : "NSString") 3052 << IdxExpr->getSourceRange() << getFunctionOrMethodParamRange(D, 0); 3053 return; 3054 } 3055 3056 D->addAttr(::new (S.Context) FormatArgAttr( 3057 AL.getRange(), S.Context, Idx, AL.getAttributeSpellingListIndex())); 3058 } 3059 3060 enum FormatAttrKind { 3061 CFStringFormat, 3062 NSStringFormat, 3063 StrftimeFormat, 3064 SupportedFormat, 3065 IgnoredFormat, 3066 InvalidFormat 3067 }; 3068 3069 /// getFormatAttrKind - Map from format attribute names to supported format 3070 /// types. 3071 static FormatAttrKind getFormatAttrKind(StringRef Format) { 3072 return llvm::StringSwitch<FormatAttrKind>(Format) 3073 // Check for formats that get handled specially. 3074 .Case("NSString", NSStringFormat) 3075 .Case("CFString", CFStringFormat) 3076 .Case("strftime", StrftimeFormat) 3077 3078 // Otherwise, check for supported formats. 3079 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat) 3080 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat) 3081 .Case("kprintf", SupportedFormat) // OpenBSD. 3082 .Case("freebsd_kprintf", SupportedFormat) // FreeBSD. 3083 .Case("os_trace", SupportedFormat) 3084 .Case("os_log", SupportedFormat) 3085 3086 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat) 3087 .Default(InvalidFormat); 3088 } 3089 3090 /// Handle __attribute__((init_priority(priority))) attributes based on 3091 /// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html 3092 static void handleInitPriorityAttr(Sema &S, Decl *D, 3093 const AttributeList &AL) { 3094 if (!S.getLangOpts().CPlusPlus) { 3095 S.Diag(AL.getLoc(), diag::warn_attribute_ignored) << AL.getName(); 3096 return; 3097 } 3098 3099 if (S.getCurFunctionOrMethodDecl()) { 3100 S.Diag(AL.getLoc(), diag::err_init_priority_object_attr); 3101 AL.setInvalid(); 3102 return; 3103 } 3104 QualType T = cast<VarDecl>(D)->getType(); 3105 if (S.Context.getAsArrayType(T)) 3106 T = S.Context.getBaseElementType(T); 3107 if (!T->getAs<RecordType>()) { 3108 S.Diag(AL.getLoc(), diag::err_init_priority_object_attr); 3109 AL.setInvalid(); 3110 return; 3111 } 3112 3113 Expr *E = AL.getArgAsExpr(0); 3114 uint32_t prioritynum; 3115 if (!checkUInt32Argument(S, AL, E, prioritynum)) { 3116 AL.setInvalid(); 3117 return; 3118 } 3119 3120 if (prioritynum < 101 || prioritynum > 65535) { 3121 S.Diag(AL.getLoc(), diag::err_attribute_argument_outof_range) 3122 << E->getSourceRange() << AL.getName() << 101 << 65535; 3123 AL.setInvalid(); 3124 return; 3125 } 3126 D->addAttr(::new (S.Context) 3127 InitPriorityAttr(AL.getRange(), S.Context, prioritynum, 3128 AL.getAttributeSpellingListIndex())); 3129 } 3130 3131 FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, 3132 IdentifierInfo *Format, int FormatIdx, 3133 int FirstArg, 3134 unsigned AttrSpellingListIndex) { 3135 // Check whether we already have an equivalent format attribute. 3136 for (auto *F : D->specific_attrs<FormatAttr>()) { 3137 if (F->getType() == Format && 3138 F->getFormatIdx() == FormatIdx && 3139 F->getFirstArg() == FirstArg) { 3140 // If we don't have a valid location for this attribute, adopt the 3141 // location. 3142 if (F->getLocation().isInvalid()) 3143 F->setRange(Range); 3144 return nullptr; 3145 } 3146 } 3147 3148 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, 3149 FirstArg, AttrSpellingListIndex); 3150 } 3151 3152 /// Handle __attribute__((format(type,idx,firstarg))) attributes based on 3153 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html 3154 static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &AL) { 3155 if (!AL.isArgIdent(0)) { 3156 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 3157 << AL.getName() << 1 << AANT_ArgumentIdentifier; 3158 return; 3159 } 3160 3161 // In C++ the implicit 'this' function parameter also counts, and they are 3162 // counted from one. 3163 bool HasImplicitThisParam = isInstanceMethod(D); 3164 unsigned NumArgs = getFunctionOrMethodNumParams(D) + HasImplicitThisParam; 3165 3166 IdentifierInfo *II = AL.getArgAsIdent(0)->Ident; 3167 StringRef Format = II->getName(); 3168 3169 if (normalizeName(Format)) { 3170 // If we've modified the string name, we need a new identifier for it. 3171 II = &S.Context.Idents.get(Format); 3172 } 3173 3174 // Check for supported formats. 3175 FormatAttrKind Kind = getFormatAttrKind(Format); 3176 3177 if (Kind == IgnoredFormat) 3178 return; 3179 3180 if (Kind == InvalidFormat) { 3181 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) 3182 << AL.getName() << II->getName(); 3183 return; 3184 } 3185 3186 // checks for the 2nd argument 3187 Expr *IdxExpr = AL.getArgAsExpr(1); 3188 uint32_t Idx; 3189 if (!checkUInt32Argument(S, AL, IdxExpr, Idx, 2)) 3190 return; 3191 3192 if (Idx < 1 || Idx > NumArgs) { 3193 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds) 3194 << AL.getName() << 2 << IdxExpr->getSourceRange(); 3195 return; 3196 } 3197 3198 // FIXME: Do we need to bounds check? 3199 unsigned ArgIdx = Idx - 1; 3200 3201 if (HasImplicitThisParam) { 3202 if (ArgIdx == 0) { 3203 S.Diag(AL.getLoc(), 3204 diag::err_format_attribute_implicit_this_format_string) 3205 << IdxExpr->getSourceRange(); 3206 return; 3207 } 3208 ArgIdx--; 3209 } 3210 3211 // make sure the format string is really a string 3212 QualType Ty = getFunctionOrMethodParamType(D, ArgIdx); 3213 3214 if (Kind == CFStringFormat) { 3215 if (!isCFStringType(Ty, S.Context)) { 3216 S.Diag(AL.getLoc(), diag::err_format_attribute_not) 3217 << "a CFString" << IdxExpr->getSourceRange() 3218 << getFunctionOrMethodParamRange(D, ArgIdx); 3219 return; 3220 } 3221 } else if (Kind == NSStringFormat) { 3222 // FIXME: do we need to check if the type is NSString*? What are the 3223 // semantics? 3224 if (!isNSStringType(Ty, S.Context)) { 3225 S.Diag(AL.getLoc(), diag::err_format_attribute_not) 3226 << "an NSString" << IdxExpr->getSourceRange() 3227 << getFunctionOrMethodParamRange(D, ArgIdx); 3228 return; 3229 } 3230 } else if (!Ty->isPointerType() || 3231 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) { 3232 S.Diag(AL.getLoc(), diag::err_format_attribute_not) 3233 << "a string type" << IdxExpr->getSourceRange() 3234 << getFunctionOrMethodParamRange(D, ArgIdx); 3235 return; 3236 } 3237 3238 // check the 3rd argument 3239 Expr *FirstArgExpr = AL.getArgAsExpr(2); 3240 uint32_t FirstArg; 3241 if (!checkUInt32Argument(S, AL, FirstArgExpr, FirstArg, 3)) 3242 return; 3243 3244 // check if the function is variadic if the 3rd argument non-zero 3245 if (FirstArg != 0) { 3246 if (isFunctionOrMethodVariadic(D)) { 3247 ++NumArgs; // +1 for ... 3248 } else { 3249 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic); 3250 return; 3251 } 3252 } 3253 3254 // strftime requires FirstArg to be 0 because it doesn't read from any 3255 // variable the input is just the current time + the format string. 3256 if (Kind == StrftimeFormat) { 3257 if (FirstArg != 0) { 3258 S.Diag(AL.getLoc(), diag::err_format_strftime_third_parameter) 3259 << FirstArgExpr->getSourceRange(); 3260 return; 3261 } 3262 // if 0 it disables parameter checking (to use with e.g. va_list) 3263 } else if (FirstArg != 0 && FirstArg != NumArgs) { 3264 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds) 3265 << AL.getName() << 3 << FirstArgExpr->getSourceRange(); 3266 return; 3267 } 3268 3269 FormatAttr *NewAttr = S.mergeFormatAttr(D, AL.getRange(), II, 3270 Idx, FirstArg, 3271 AL.getAttributeSpellingListIndex()); 3272 if (NewAttr) 3273 D->addAttr(NewAttr); 3274 } 3275 3276 static void handleTransparentUnionAttr(Sema &S, Decl *D, 3277 const AttributeList &AL) { 3278 // Try to find the underlying union declaration. 3279 RecordDecl *RD = nullptr; 3280 const auto *TD = dyn_cast<TypedefNameDecl>(D); 3281 if (TD && TD->getUnderlyingType()->isUnionType()) 3282 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl(); 3283 else 3284 RD = dyn_cast<RecordDecl>(D); 3285 3286 if (!RD || !RD->isUnion()) { 3287 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) 3288 << AL.getName() << ExpectedUnion; 3289 return; 3290 } 3291 3292 if (!RD->isCompleteDefinition()) { 3293 if (!RD->isBeingDefined()) 3294 S.Diag(AL.getLoc(), 3295 diag::warn_transparent_union_attribute_not_definition); 3296 return; 3297 } 3298 3299 RecordDecl::field_iterator Field = RD->field_begin(), 3300 FieldEnd = RD->field_end(); 3301 if (Field == FieldEnd) { 3302 S.Diag(AL.getLoc(), diag::warn_transparent_union_attribute_zero_fields); 3303 return; 3304 } 3305 3306 FieldDecl *FirstField = *Field; 3307 QualType FirstType = FirstField->getType(); 3308 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { 3309 S.Diag(FirstField->getLocation(), 3310 diag::warn_transparent_union_attribute_floating) 3311 << FirstType->isVectorType() << FirstType; 3312 return; 3313 } 3314 3315 if (FirstType->isIncompleteType()) 3316 return; 3317 uint64_t FirstSize = S.Context.getTypeSize(FirstType); 3318 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); 3319 for (; Field != FieldEnd; ++Field) { 3320 QualType FieldType = Field->getType(); 3321 if (FieldType->isIncompleteType()) 3322 return; 3323 // FIXME: this isn't fully correct; we also need to test whether the 3324 // members of the union would all have the same calling convention as the 3325 // first member of the union. Checking just the size and alignment isn't 3326 // sufficient (consider structs passed on the stack instead of in registers 3327 // as an example). 3328 if (S.Context.getTypeSize(FieldType) != FirstSize || 3329 S.Context.getTypeAlign(FieldType) > FirstAlign) { 3330 // Warn if we drop the attribute. 3331 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize; 3332 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType) 3333 : S.Context.getTypeAlign(FieldType); 3334 S.Diag(Field->getLocation(), 3335 diag::warn_transparent_union_attribute_field_size_align) 3336 << isSize << Field->getDeclName() << FieldBits; 3337 unsigned FirstBits = isSize? FirstSize : FirstAlign; 3338 S.Diag(FirstField->getLocation(), 3339 diag::note_transparent_union_first_field_size_align) 3340 << isSize << FirstBits; 3341 return; 3342 } 3343 } 3344 3345 RD->addAttr(::new (S.Context) 3346 TransparentUnionAttr(AL.getRange(), S.Context, 3347 AL.getAttributeSpellingListIndex())); 3348 } 3349 3350 static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &AL) { 3351 // Make sure that there is a string literal as the annotation's single 3352 // argument. 3353 StringRef Str; 3354 if (!S.checkStringLiteralArgumentAttr(AL, 0, Str)) 3355 return; 3356 3357 // Don't duplicate annotations that are already set. 3358 for (const auto *I : D->specific_attrs<AnnotateAttr>()) { 3359 if (I->getAnnotation() == Str) 3360 return; 3361 } 3362 3363 D->addAttr(::new (S.Context) 3364 AnnotateAttr(AL.getRange(), S.Context, Str, 3365 AL.getAttributeSpellingListIndex())); 3366 } 3367 3368 static void handleAlignValueAttr(Sema &S, Decl *D, 3369 const AttributeList &AL) { 3370 S.AddAlignValueAttr(AL.getRange(), D, AL.getArgAsExpr(0), 3371 AL.getAttributeSpellingListIndex()); 3372 } 3373 3374 void Sema::AddAlignValueAttr(SourceRange AttrRange, Decl *D, Expr *E, 3375 unsigned SpellingListIndex) { 3376 AlignValueAttr TmpAttr(AttrRange, Context, E, SpellingListIndex); 3377 SourceLocation AttrLoc = AttrRange.getBegin(); 3378 3379 QualType T; 3380 if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) 3381 T = TD->getUnderlyingType(); 3382 else if (const auto *VD = dyn_cast<ValueDecl>(D)) 3383 T = VD->getType(); 3384 else 3385 llvm_unreachable("Unknown decl type for align_value"); 3386 3387 if (!T->isDependentType() && !T->isAnyPointerType() && 3388 !T->isReferenceType() && !T->isMemberPointerType()) { 3389 Diag(AttrLoc, diag::warn_attribute_pointer_or_reference_only) 3390 << &TmpAttr /*TmpAttr.getName()*/ << T << D->getSourceRange(); 3391 return; 3392 } 3393 3394 if (!E->isValueDependent()) { 3395 llvm::APSInt Alignment; 3396 ExprResult ICE 3397 = VerifyIntegerConstantExpression(E, &Alignment, 3398 diag::err_align_value_attribute_argument_not_int, 3399 /*AllowFold*/ false); 3400 if (ICE.isInvalid()) 3401 return; 3402 3403 if (!Alignment.isPowerOf2()) { 3404 Diag(AttrLoc, diag::err_alignment_not_power_of_two) 3405 << E->getSourceRange(); 3406 return; 3407 } 3408 3409 D->addAttr(::new (Context) 3410 AlignValueAttr(AttrRange, Context, ICE.get(), 3411 SpellingListIndex)); 3412 return; 3413 } 3414 3415 // Save dependent expressions in the AST to be instantiated. 3416 D->addAttr(::new (Context) AlignValueAttr(TmpAttr)); 3417 } 3418 3419 static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &AL) { 3420 // check the attribute arguments. 3421 if (AL.getNumArgs() > 1) { 3422 S.Diag(AL.getLoc(), diag::err_attribute_wrong_number_arguments) 3423 << AL.getName() << 1; 3424 return; 3425 } 3426 3427 if (AL.getNumArgs() == 0) { 3428 D->addAttr(::new (S.Context) AlignedAttr(AL.getRange(), S.Context, 3429 true, nullptr, AL.getAttributeSpellingListIndex())); 3430 return; 3431 } 3432 3433 Expr *E = AL.getArgAsExpr(0); 3434 if (AL.isPackExpansion() && !E->containsUnexpandedParameterPack()) { 3435 S.Diag(AL.getEllipsisLoc(), 3436 diag::err_pack_expansion_without_parameter_packs); 3437 return; 3438 } 3439 3440 if (!AL.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E)) 3441 return; 3442 3443 if (E->isValueDependent()) { 3444 if (const auto *TND = dyn_cast<TypedefNameDecl>(D)) { 3445 if (!TND->getUnderlyingType()->isDependentType()) { 3446 S.Diag(AL.getLoc(), diag::err_alignment_dependent_typedef_name) 3447 << E->getSourceRange(); 3448 return; 3449 } 3450 } 3451 } 3452 3453 S.AddAlignedAttr(AL.getRange(), D, E, AL.getAttributeSpellingListIndex(), 3454 AL.isPackExpansion()); 3455 } 3456 3457 void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E, 3458 unsigned SpellingListIndex, bool IsPackExpansion) { 3459 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex); 3460 SourceLocation AttrLoc = AttrRange.getBegin(); 3461 3462 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements. 3463 if (TmpAttr.isAlignas()) { 3464 // C++11 [dcl.align]p1: 3465 // An alignment-specifier may be applied to a variable or to a class 3466 // data member, but it shall not be applied to a bit-field, a function 3467 // parameter, the formal parameter of a catch clause, or a variable 3468 // declared with the register storage class specifier. An 3469 // alignment-specifier may also be applied to the declaration of a class 3470 // or enumeration type. 3471 // C11 6.7.5/2: 3472 // An alignment attribute shall not be specified in a declaration of 3473 // a typedef, or a bit-field, or a function, or a parameter, or an 3474 // object declared with the register storage-class specifier. 3475 int DiagKind = -1; 3476 if (isa<ParmVarDecl>(D)) { 3477 DiagKind = 0; 3478 } else if (const auto *VD = dyn_cast<VarDecl>(D)) { 3479 if (VD->getStorageClass() == SC_Register) 3480 DiagKind = 1; 3481 if (VD->isExceptionVariable()) 3482 DiagKind = 2; 3483 } else if (const auto *FD = dyn_cast<FieldDecl>(D)) { 3484 if (FD->isBitField()) 3485 DiagKind = 3; 3486 } else if (!isa<TagDecl>(D)) { 3487 Diag(AttrLoc, diag::err_attribute_wrong_decl_type) << &TmpAttr 3488 << (TmpAttr.isC11() ? ExpectedVariableOrField 3489 : ExpectedVariableFieldOrTag); 3490 return; 3491 } 3492 if (DiagKind != -1) { 3493 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type) 3494 << &TmpAttr << DiagKind; 3495 return; 3496 } 3497 } 3498 3499 if (E->isTypeDependent() || E->isValueDependent()) { 3500 // Save dependent expressions in the AST to be instantiated. 3501 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr); 3502 AA->setPackExpansion(IsPackExpansion); 3503 D->addAttr(AA); 3504 return; 3505 } 3506 3507 // FIXME: Cache the number on the AL object? 3508 llvm::APSInt Alignment; 3509 ExprResult ICE 3510 = VerifyIntegerConstantExpression(E, &Alignment, 3511 diag::err_aligned_attribute_argument_not_int, 3512 /*AllowFold*/ false); 3513 if (ICE.isInvalid()) 3514 return; 3515 3516 uint64_t AlignVal = Alignment.getZExtValue(); 3517 3518 // C++11 [dcl.align]p2: 3519 // -- if the constant expression evaluates to zero, the alignment 3520 // specifier shall have no effect 3521 // C11 6.7.5p6: 3522 // An alignment specification of zero has no effect. 3523 if (!(TmpAttr.isAlignas() && !Alignment)) { 3524 if (!llvm::isPowerOf2_64(AlignVal)) { 3525 Diag(AttrLoc, diag::err_alignment_not_power_of_two) 3526 << E->getSourceRange(); 3527 return; 3528 } 3529 } 3530 3531 // Alignment calculations can wrap around if it's greater than 2**28. 3532 unsigned MaxValidAlignment = 3533 Context.getTargetInfo().getTriple().isOSBinFormatCOFF() ? 8192 3534 : 268435456; 3535 if (AlignVal > MaxValidAlignment) { 3536 Diag(AttrLoc, diag::err_attribute_aligned_too_great) << MaxValidAlignment 3537 << E->getSourceRange(); 3538 return; 3539 } 3540 3541 if (Context.getTargetInfo().isTLSSupported()) { 3542 unsigned MaxTLSAlign = 3543 Context.toCharUnitsFromBits(Context.getTargetInfo().getMaxTLSAlign()) 3544 .getQuantity(); 3545 const auto *VD = dyn_cast<VarDecl>(D); 3546 if (MaxTLSAlign && AlignVal > MaxTLSAlign && VD && 3547 VD->getTLSKind() != VarDecl::TLS_None) { 3548 Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum) 3549 << (unsigned)AlignVal << VD << MaxTLSAlign; 3550 return; 3551 } 3552 } 3553 3554 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true, 3555 ICE.get(), SpellingListIndex); 3556 AA->setPackExpansion(IsPackExpansion); 3557 D->addAttr(AA); 3558 } 3559 3560 void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS, 3561 unsigned SpellingListIndex, bool IsPackExpansion) { 3562 // FIXME: Cache the number on the AL object if non-dependent? 3563 // FIXME: Perform checking of type validity 3564 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS, 3565 SpellingListIndex); 3566 AA->setPackExpansion(IsPackExpansion); 3567 D->addAttr(AA); 3568 } 3569 3570 void Sema::CheckAlignasUnderalignment(Decl *D) { 3571 assert(D->hasAttrs() && "no attributes on decl"); 3572 3573 QualType UnderlyingTy, DiagTy; 3574 if (const auto *VD = dyn_cast<ValueDecl>(D)) { 3575 UnderlyingTy = DiagTy = VD->getType(); 3576 } else { 3577 UnderlyingTy = DiagTy = Context.getTagDeclType(cast<TagDecl>(D)); 3578 if (const auto *ED = dyn_cast<EnumDecl>(D)) 3579 UnderlyingTy = ED->getIntegerType(); 3580 } 3581 if (DiagTy->isDependentType() || DiagTy->isIncompleteType()) 3582 return; 3583 3584 // C++11 [dcl.align]p5, C11 6.7.5/4: 3585 // The combined effect of all alignment attributes in a declaration shall 3586 // not specify an alignment that is less strict than the alignment that 3587 // would otherwise be required for the entity being declared. 3588 AlignedAttr *AlignasAttr = nullptr; 3589 unsigned Align = 0; 3590 for (auto *I : D->specific_attrs<AlignedAttr>()) { 3591 if (I->isAlignmentDependent()) 3592 return; 3593 if (I->isAlignas()) 3594 AlignasAttr = I; 3595 Align = std::max(Align, I->getAlignment(Context)); 3596 } 3597 3598 if (AlignasAttr && Align) { 3599 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align); 3600 CharUnits NaturalAlign = Context.getTypeAlignInChars(UnderlyingTy); 3601 if (NaturalAlign > RequestedAlign) 3602 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned) 3603 << DiagTy << (unsigned)NaturalAlign.getQuantity(); 3604 } 3605 } 3606 3607 bool Sema::checkMSInheritanceAttrOnDefinition( 3608 CXXRecordDecl *RD, SourceRange Range, bool BestCase, 3609 MSInheritanceAttr::Spelling SemanticSpelling) { 3610 assert(RD->hasDefinition() && "RD has no definition!"); 3611 3612 // We may not have seen base specifiers or any virtual methods yet. We will 3613 // have to wait until the record is defined to catch any mismatches. 3614 if (!RD->getDefinition()->isCompleteDefinition()) 3615 return false; 3616 3617 // The unspecified model never matches what a definition could need. 3618 if (SemanticSpelling == MSInheritanceAttr::Keyword_unspecified_inheritance) 3619 return false; 3620 3621 if (BestCase) { 3622 if (RD->calculateInheritanceModel() == SemanticSpelling) 3623 return false; 3624 } else { 3625 if (RD->calculateInheritanceModel() <= SemanticSpelling) 3626 return false; 3627 } 3628 3629 Diag(Range.getBegin(), diag::err_mismatched_ms_inheritance) 3630 << 0 /*definition*/; 3631 Diag(RD->getDefinition()->getLocation(), diag::note_defined_here) 3632 << RD->getNameAsString(); 3633 return true; 3634 } 3635 3636 /// parseModeAttrArg - Parses attribute mode string and returns parsed type 3637 /// attribute. 3638 static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth, 3639 bool &IntegerMode, bool &ComplexMode) { 3640 IntegerMode = true; 3641 ComplexMode = false; 3642 switch (Str.size()) { 3643 case 2: 3644 switch (Str[0]) { 3645 case 'Q': 3646 DestWidth = 8; 3647 break; 3648 case 'H': 3649 DestWidth = 16; 3650 break; 3651 case 'S': 3652 DestWidth = 32; 3653 break; 3654 case 'D': 3655 DestWidth = 64; 3656 break; 3657 case 'X': 3658 DestWidth = 96; 3659 break; 3660 case 'T': 3661 DestWidth = 128; 3662 break; 3663 } 3664 if (Str[1] == 'F') { 3665 IntegerMode = false; 3666 } else if (Str[1] == 'C') { 3667 IntegerMode = false; 3668 ComplexMode = true; 3669 } else if (Str[1] != 'I') { 3670 DestWidth = 0; 3671 } 3672 break; 3673 case 4: 3674 // FIXME: glibc uses 'word' to define register_t; this is narrower than a 3675 // pointer on PIC16 and other embedded platforms. 3676 if (Str == "word") 3677 DestWidth = S.Context.getTargetInfo().getRegisterWidth(); 3678 else if (Str == "byte") 3679 DestWidth = S.Context.getTargetInfo().getCharWidth(); 3680 break; 3681 case 7: 3682 if (Str == "pointer") 3683 DestWidth = S.Context.getTargetInfo().getPointerWidth(0); 3684 break; 3685 case 11: 3686 if (Str == "unwind_word") 3687 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth(); 3688 break; 3689 } 3690 } 3691 3692 /// handleModeAttr - This attribute modifies the width of a decl with primitive 3693 /// type. 3694 /// 3695 /// Despite what would be logical, the mode attribute is a decl attribute, not a 3696 /// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be 3697 /// HImode, not an intermediate pointer. 3698 static void handleModeAttr(Sema &S, Decl *D, const AttributeList &AL) { 3699 // This attribute isn't documented, but glibc uses it. It changes 3700 // the width of an int or unsigned int to the specified size. 3701 if (!AL.isArgIdent(0)) { 3702 S.Diag(AL.getLoc(), diag::err_attribute_argument_type) << AL.getName() 3703 << AANT_ArgumentIdentifier; 3704 return; 3705 } 3706 3707 IdentifierInfo *Name = AL.getArgAsIdent(0)->Ident; 3708 3709 S.AddModeAttr(AL.getRange(), D, Name, AL.getAttributeSpellingListIndex()); 3710 } 3711 3712 void Sema::AddModeAttr(SourceRange AttrRange, Decl *D, IdentifierInfo *Name, 3713 unsigned SpellingListIndex, bool InInstantiation) { 3714 StringRef Str = Name->getName(); 3715 normalizeName(Str); 3716 SourceLocation AttrLoc = AttrRange.getBegin(); 3717 3718 unsigned DestWidth = 0; 3719 bool IntegerMode = true; 3720 bool ComplexMode = false; 3721 llvm::APInt VectorSize(64, 0); 3722 if (Str.size() >= 4 && Str[0] == 'V') { 3723 // Minimal length of vector mode is 4: 'V' + NUMBER(>=1) + TYPE(>=2). 3724 size_t StrSize = Str.size(); 3725 size_t VectorStringLength = 0; 3726 while ((VectorStringLength + 1) < StrSize && 3727 isdigit(Str[VectorStringLength + 1])) 3728 ++VectorStringLength; 3729 if (VectorStringLength && 3730 !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) && 3731 VectorSize.isPowerOf2()) { 3732 parseModeAttrArg(*this, Str.substr(VectorStringLength + 1), DestWidth, 3733 IntegerMode, ComplexMode); 3734 // Avoid duplicate warning from template instantiation. 3735 if (!InInstantiation) 3736 Diag(AttrLoc, diag::warn_vector_mode_deprecated); 3737 } else { 3738 VectorSize = 0; 3739 } 3740 } 3741 3742 if (!VectorSize) 3743 parseModeAttrArg(*this, Str, DestWidth, IntegerMode, ComplexMode); 3744 3745 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t 3746 // and friends, at least with glibc. 3747 // FIXME: Make sure floating-point mappings are accurate 3748 // FIXME: Support XF and TF types 3749 if (!DestWidth) { 3750 Diag(AttrLoc, diag::err_machine_mode) << 0 /*Unknown*/ << Name; 3751 return; 3752 } 3753 3754 QualType OldTy; 3755 if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) 3756 OldTy = TD->getUnderlyingType(); 3757 else if (const auto *ED = dyn_cast<EnumDecl>(D)) { 3758 // Something like 'typedef enum { X } __attribute__((mode(XX))) T;'. 3759 // Try to get type from enum declaration, default to int. 3760 OldTy = ED->getIntegerType(); 3761 if (OldTy.isNull()) 3762 OldTy = Context.IntTy; 3763 } else 3764 OldTy = cast<ValueDecl>(D)->getType(); 3765 3766 if (OldTy->isDependentType()) { 3767 D->addAttr(::new (Context) 3768 ModeAttr(AttrRange, Context, Name, SpellingListIndex)); 3769 return; 3770 } 3771 3772 // Base type can also be a vector type (see PR17453). 3773 // Distinguish between base type and base element type. 3774 QualType OldElemTy = OldTy; 3775 if (const auto *VT = OldTy->getAs<VectorType>()) 3776 OldElemTy = VT->getElementType(); 3777 3778 // GCC allows 'mode' attribute on enumeration types (even incomplete), except 3779 // for vector modes. So, 'enum X __attribute__((mode(QI)));' forms a complete 3780 // type, 'enum { A } __attribute__((mode(V4SI)))' is rejected. 3781 if ((isa<EnumDecl>(D) || OldElemTy->getAs<EnumType>()) && 3782 VectorSize.getBoolValue()) { 3783 Diag(AttrLoc, diag::err_enum_mode_vector_type) << Name << AttrRange; 3784 return; 3785 } 3786 bool IntegralOrAnyEnumType = 3787 OldElemTy->isIntegralOrEnumerationType() || OldElemTy->getAs<EnumType>(); 3788 3789 if (!OldElemTy->getAs<BuiltinType>() && !OldElemTy->isComplexType() && 3790 !IntegralOrAnyEnumType) 3791 Diag(AttrLoc, diag::err_mode_not_primitive); 3792 else if (IntegerMode) { 3793 if (!IntegralOrAnyEnumType) 3794 Diag(AttrLoc, diag::err_mode_wrong_type); 3795 } else if (ComplexMode) { 3796 if (!OldElemTy->isComplexType()) 3797 Diag(AttrLoc, diag::err_mode_wrong_type); 3798 } else { 3799 if (!OldElemTy->isFloatingType()) 3800 Diag(AttrLoc, diag::err_mode_wrong_type); 3801 } 3802 3803 QualType NewElemTy; 3804 3805 if (IntegerMode) 3806 NewElemTy = Context.getIntTypeForBitwidth(DestWidth, 3807 OldElemTy->isSignedIntegerType()); 3808 else 3809 NewElemTy = Context.getRealTypeForBitwidth(DestWidth); 3810 3811 if (NewElemTy.isNull()) { 3812 Diag(AttrLoc, diag::err_machine_mode) << 1 /*Unsupported*/ << Name; 3813 return; 3814 } 3815 3816 if (ComplexMode) { 3817 NewElemTy = Context.getComplexType(NewElemTy); 3818 } 3819 3820 QualType NewTy = NewElemTy; 3821 if (VectorSize.getBoolValue()) { 3822 NewTy = Context.getVectorType(NewTy, VectorSize.getZExtValue(), 3823 VectorType::GenericVector); 3824 } else if (const auto *OldVT = OldTy->getAs<VectorType>()) { 3825 // Complex machine mode does not support base vector types. 3826 if (ComplexMode) { 3827 Diag(AttrLoc, diag::err_complex_mode_vector_type); 3828 return; 3829 } 3830 unsigned NumElements = Context.getTypeSize(OldElemTy) * 3831 OldVT->getNumElements() / 3832 Context.getTypeSize(NewElemTy); 3833 NewTy = 3834 Context.getVectorType(NewElemTy, NumElements, OldVT->getVectorKind()); 3835 } 3836 3837 if (NewTy.isNull()) { 3838 Diag(AttrLoc, diag::err_mode_wrong_type); 3839 return; 3840 } 3841 3842 // Install the new type. 3843 if (auto *TD = dyn_cast<TypedefNameDecl>(D)) 3844 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy); 3845 else if (auto *ED = dyn_cast<EnumDecl>(D)) 3846 ED->setIntegerType(NewTy); 3847 else 3848 cast<ValueDecl>(D)->setType(NewTy); 3849 3850 D->addAttr(::new (Context) 3851 ModeAttr(AttrRange, Context, Name, SpellingListIndex)); 3852 } 3853 3854 static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &AL) { 3855 D->addAttr(::new (S.Context) 3856 NoDebugAttr(AL.getRange(), S.Context, 3857 AL.getAttributeSpellingListIndex())); 3858 } 3859 3860 AlwaysInlineAttr *Sema::mergeAlwaysInlineAttr(Decl *D, SourceRange Range, 3861 IdentifierInfo *Ident, 3862 unsigned AttrSpellingListIndex) { 3863 if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) { 3864 Diag(Range.getBegin(), diag::warn_attribute_ignored) << Ident; 3865 Diag(Optnone->getLocation(), diag::note_conflicting_attribute); 3866 return nullptr; 3867 } 3868 3869 if (D->hasAttr<AlwaysInlineAttr>()) 3870 return nullptr; 3871 3872 return ::new (Context) AlwaysInlineAttr(Range, Context, 3873 AttrSpellingListIndex); 3874 } 3875 3876 CommonAttr *Sema::mergeCommonAttr(Decl *D, SourceRange Range, 3877 IdentifierInfo *Ident, 3878 unsigned AttrSpellingListIndex) { 3879 if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, Range, Ident)) 3880 return nullptr; 3881 3882 return ::new (Context) CommonAttr(Range, Context, AttrSpellingListIndex); 3883 } 3884 3885 InternalLinkageAttr * 3886 Sema::mergeInternalLinkageAttr(Decl *D, SourceRange Range, 3887 IdentifierInfo *Ident, 3888 unsigned AttrSpellingListIndex) { 3889 if (const auto *VD = dyn_cast<VarDecl>(D)) { 3890 // Attribute applies to Var but not any subclass of it (like ParmVar, 3891 // ImplicitParm or VarTemplateSpecialization). 3892 if (VD->getKind() != Decl::Var) { 3893 Diag(Range.getBegin(), diag::warn_attribute_wrong_decl_type) 3894 << Ident << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass 3895 : ExpectedVariableOrFunction); 3896 return nullptr; 3897 } 3898 // Attribute does not apply to non-static local variables. 3899 if (VD->hasLocalStorage()) { 3900 Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage); 3901 return nullptr; 3902 } 3903 } 3904 3905 if (checkAttrMutualExclusion<CommonAttr>(*this, D, Range, Ident)) 3906 return nullptr; 3907 3908 return ::new (Context) 3909 InternalLinkageAttr(Range, Context, AttrSpellingListIndex); 3910 } 3911 3912 MinSizeAttr *Sema::mergeMinSizeAttr(Decl *D, SourceRange Range, 3913 unsigned AttrSpellingListIndex) { 3914 if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) { 3915 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'minsize'"; 3916 Diag(Optnone->getLocation(), diag::note_conflicting_attribute); 3917 return nullptr; 3918 } 3919 3920 if (D->hasAttr<MinSizeAttr>()) 3921 return nullptr; 3922 3923 return ::new (Context) MinSizeAttr(Range, Context, AttrSpellingListIndex); 3924 } 3925 3926 OptimizeNoneAttr *Sema::mergeOptimizeNoneAttr(Decl *D, SourceRange Range, 3927 unsigned AttrSpellingListIndex) { 3928 if (AlwaysInlineAttr *Inline = D->getAttr<AlwaysInlineAttr>()) { 3929 Diag(Inline->getLocation(), diag::warn_attribute_ignored) << Inline; 3930 Diag(Range.getBegin(), diag::note_conflicting_attribute); 3931 D->dropAttr<AlwaysInlineAttr>(); 3932 } 3933 if (MinSizeAttr *MinSize = D->getAttr<MinSizeAttr>()) { 3934 Diag(MinSize->getLocation(), diag::warn_attribute_ignored) << MinSize; 3935 Diag(Range.getBegin(), diag::note_conflicting_attribute); 3936 D->dropAttr<MinSizeAttr>(); 3937 } 3938 3939 if (D->hasAttr<OptimizeNoneAttr>()) 3940 return nullptr; 3941 3942 return ::new (Context) OptimizeNoneAttr(Range, Context, 3943 AttrSpellingListIndex); 3944 } 3945 3946 static void handleAlwaysInlineAttr(Sema &S, Decl *D, 3947 const AttributeList &AL) { 3948 if (checkAttrMutualExclusion<NotTailCalledAttr>(S, D, AL.getRange(), 3949 AL.getName())) 3950 return; 3951 3952 if (AlwaysInlineAttr *Inline = S.mergeAlwaysInlineAttr( 3953 D, AL.getRange(), AL.getName(), 3954 AL.getAttributeSpellingListIndex())) 3955 D->addAttr(Inline); 3956 } 3957 3958 static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &AL) { 3959 if (MinSizeAttr *MinSize = S.mergeMinSizeAttr( 3960 D, AL.getRange(), AL.getAttributeSpellingListIndex())) 3961 D->addAttr(MinSize); 3962 } 3963 3964 static void handleOptimizeNoneAttr(Sema &S, Decl *D, 3965 const AttributeList &AL) { 3966 if (OptimizeNoneAttr *Optnone = S.mergeOptimizeNoneAttr( 3967 D, AL.getRange(), AL.getAttributeSpellingListIndex())) 3968 D->addAttr(Optnone); 3969 } 3970 3971 static void handleConstantAttr(Sema &S, Decl *D, const AttributeList &AL) { 3972 if (checkAttrMutualExclusion<CUDASharedAttr>(S, D, AL.getRange(), 3973 AL.getName())) 3974 return; 3975 const auto *VD = cast<VarDecl>(D); 3976 if (!VD->hasGlobalStorage()) { 3977 S.Diag(AL.getLoc(), diag::err_cuda_nonglobal_constant); 3978 return; 3979 } 3980 D->addAttr(::new (S.Context) CUDAConstantAttr( 3981 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 3982 } 3983 3984 static void handleSharedAttr(Sema &S, Decl *D, const AttributeList &AL) { 3985 if (checkAttrMutualExclusion<CUDAConstantAttr>(S, D, AL.getRange(), 3986 AL.getName())) 3987 return; 3988 const auto *VD = cast<VarDecl>(D); 3989 // extern __shared__ is only allowed on arrays with no length (e.g. 3990 // "int x[]"). 3991 if (!S.getLangOpts().CUDARelocatableDeviceCode && VD->hasExternalStorage() && 3992 !isa<IncompleteArrayType>(VD->getType())) { 3993 S.Diag(AL.getLoc(), diag::err_cuda_extern_shared) << VD; 3994 return; 3995 } 3996 if (S.getLangOpts().CUDA && VD->hasLocalStorage() && 3997 S.CUDADiagIfHostCode(AL.getLoc(), diag::err_cuda_host_shared) 3998 << S.CurrentCUDATarget()) 3999 return; 4000 D->addAttr(::new (S.Context) CUDASharedAttr( 4001 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4002 } 4003 4004 static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &AL) { 4005 if (checkAttrMutualExclusion<CUDADeviceAttr>(S, D, AL.getRange(), 4006 AL.getName()) || 4007 checkAttrMutualExclusion<CUDAHostAttr>(S, D, AL.getRange(), 4008 AL.getName())) { 4009 return; 4010 } 4011 const auto *FD = cast<FunctionDecl>(D); 4012 if (!FD->getReturnType()->isVoidType()) { 4013 SourceRange RTRange = FD->getReturnTypeSourceRange(); 4014 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return) 4015 << FD->getType() 4016 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void") 4017 : FixItHint()); 4018 return; 4019 } 4020 if (const auto *Method = dyn_cast<CXXMethodDecl>(FD)) { 4021 if (Method->isInstance()) { 4022 S.Diag(Method->getLocStart(), diag::err_kern_is_nonstatic_method) 4023 << Method; 4024 return; 4025 } 4026 S.Diag(Method->getLocStart(), diag::warn_kern_is_method) << Method; 4027 } 4028 // Only warn for "inline" when compiling for host, to cut down on noise. 4029 if (FD->isInlineSpecified() && !S.getLangOpts().CUDAIsDevice) 4030 S.Diag(FD->getLocStart(), diag::warn_kern_is_inline) << FD; 4031 4032 D->addAttr(::new (S.Context) 4033 CUDAGlobalAttr(AL.getRange(), S.Context, 4034 AL.getAttributeSpellingListIndex())); 4035 } 4036 4037 static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &AL) { 4038 const auto *Fn = cast<FunctionDecl>(D); 4039 if (!Fn->isInlineSpecified()) { 4040 S.Diag(AL.getLoc(), diag::warn_gnu_inline_attribute_requires_inline); 4041 return; 4042 } 4043 4044 D->addAttr(::new (S.Context) 4045 GNUInlineAttr(AL.getRange(), S.Context, 4046 AL.getAttributeSpellingListIndex())); 4047 } 4048 4049 static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &AL) { 4050 if (hasDeclarator(D)) return; 4051 4052 // Diagnostic is emitted elsewhere: here we store the (valid) AL 4053 // in the Decl node for syntactic reasoning, e.g., pretty-printing. 4054 CallingConv CC; 4055 if (S.CheckCallingConvAttr(AL, CC, /*FD*/nullptr)) 4056 return; 4057 4058 if (!isa<ObjCMethodDecl>(D)) { 4059 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) 4060 << AL.getName() << ExpectedFunctionOrMethod; 4061 return; 4062 } 4063 4064 switch (AL.getKind()) { 4065 case AttributeList::AT_FastCall: 4066 D->addAttr(::new (S.Context) 4067 FastCallAttr(AL.getRange(), S.Context, 4068 AL.getAttributeSpellingListIndex())); 4069 return; 4070 case AttributeList::AT_StdCall: 4071 D->addAttr(::new (S.Context) 4072 StdCallAttr(AL.getRange(), S.Context, 4073 AL.getAttributeSpellingListIndex())); 4074 return; 4075 case AttributeList::AT_ThisCall: 4076 D->addAttr(::new (S.Context) 4077 ThisCallAttr(AL.getRange(), S.Context, 4078 AL.getAttributeSpellingListIndex())); 4079 return; 4080 case AttributeList::AT_CDecl: 4081 D->addAttr(::new (S.Context) 4082 CDeclAttr(AL.getRange(), S.Context, 4083 AL.getAttributeSpellingListIndex())); 4084 return; 4085 case AttributeList::AT_Pascal: 4086 D->addAttr(::new (S.Context) 4087 PascalAttr(AL.getRange(), S.Context, 4088 AL.getAttributeSpellingListIndex())); 4089 return; 4090 case AttributeList::AT_SwiftCall: 4091 D->addAttr(::new (S.Context) 4092 SwiftCallAttr(AL.getRange(), S.Context, 4093 AL.getAttributeSpellingListIndex())); 4094 return; 4095 case AttributeList::AT_VectorCall: 4096 D->addAttr(::new (S.Context) 4097 VectorCallAttr(AL.getRange(), S.Context, 4098 AL.getAttributeSpellingListIndex())); 4099 return; 4100 case AttributeList::AT_MSABI: 4101 D->addAttr(::new (S.Context) 4102 MSABIAttr(AL.getRange(), S.Context, 4103 AL.getAttributeSpellingListIndex())); 4104 return; 4105 case AttributeList::AT_SysVABI: 4106 D->addAttr(::new (S.Context) 4107 SysVABIAttr(AL.getRange(), S.Context, 4108 AL.getAttributeSpellingListIndex())); 4109 return; 4110 case AttributeList::AT_RegCall: 4111 D->addAttr(::new (S.Context) RegCallAttr( 4112 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4113 return; 4114 case AttributeList::AT_Pcs: { 4115 PcsAttr::PCSType PCS; 4116 switch (CC) { 4117 case CC_AAPCS: 4118 PCS = PcsAttr::AAPCS; 4119 break; 4120 case CC_AAPCS_VFP: 4121 PCS = PcsAttr::AAPCS_VFP; 4122 break; 4123 default: 4124 llvm_unreachable("unexpected calling convention in pcs attribute"); 4125 } 4126 4127 D->addAttr(::new (S.Context) 4128 PcsAttr(AL.getRange(), S.Context, PCS, 4129 AL.getAttributeSpellingListIndex())); 4130 return; 4131 } 4132 case AttributeList::AT_IntelOclBicc: 4133 D->addAttr(::new (S.Context) 4134 IntelOclBiccAttr(AL.getRange(), S.Context, 4135 AL.getAttributeSpellingListIndex())); 4136 return; 4137 case AttributeList::AT_PreserveMost: 4138 D->addAttr(::new (S.Context) PreserveMostAttr( 4139 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4140 return; 4141 case AttributeList::AT_PreserveAll: 4142 D->addAttr(::new (S.Context) PreserveAllAttr( 4143 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4144 return; 4145 default: 4146 llvm_unreachable("unexpected attribute kind"); 4147 } 4148 } 4149 4150 static void handleSuppressAttr(Sema &S, Decl *D, const AttributeList &AL) { 4151 if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 4152 return; 4153 4154 std::vector<StringRef> DiagnosticIdentifiers; 4155 for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) { 4156 StringRef RuleName; 4157 4158 if (!S.checkStringLiteralArgumentAttr(AL, I, RuleName, nullptr)) 4159 return; 4160 4161 // FIXME: Warn if the rule name is unknown. This is tricky because only 4162 // clang-tidy knows about available rules. 4163 DiagnosticIdentifiers.push_back(RuleName); 4164 } 4165 D->addAttr(::new (S.Context) SuppressAttr( 4166 AL.getRange(), S.Context, DiagnosticIdentifiers.data(), 4167 DiagnosticIdentifiers.size(), AL.getAttributeSpellingListIndex())); 4168 } 4169 4170 bool Sema::CheckCallingConvAttr(const AttributeList &Attrs, CallingConv &CC, 4171 const FunctionDecl *FD) { 4172 if (Attrs.isInvalid()) 4173 return true; 4174 4175 if (Attrs.hasProcessingCache()) { 4176 CC = (CallingConv) Attrs.getProcessingCache(); 4177 return false; 4178 } 4179 4180 unsigned ReqArgs = Attrs.getKind() == AttributeList::AT_Pcs ? 1 : 0; 4181 if (!checkAttributeNumArgs(*this, Attrs, ReqArgs)) { 4182 Attrs.setInvalid(); 4183 return true; 4184 } 4185 4186 // TODO: diagnose uses of these conventions on the wrong target. 4187 switch (Attrs.getKind()) { 4188 case AttributeList::AT_CDecl: CC = CC_C; break; 4189 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break; 4190 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break; 4191 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break; 4192 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break; 4193 case AttributeList::AT_SwiftCall: CC = CC_Swift; break; 4194 case AttributeList::AT_VectorCall: CC = CC_X86VectorCall; break; 4195 case AttributeList::AT_RegCall: CC = CC_X86RegCall; break; 4196 case AttributeList::AT_MSABI: 4197 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C : 4198 CC_Win64; 4199 break; 4200 case AttributeList::AT_SysVABI: 4201 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV : 4202 CC_C; 4203 break; 4204 case AttributeList::AT_Pcs: { 4205 StringRef StrRef; 4206 if (!checkStringLiteralArgumentAttr(Attrs, 0, StrRef)) { 4207 Attrs.setInvalid(); 4208 return true; 4209 } 4210 if (StrRef == "aapcs") { 4211 CC = CC_AAPCS; 4212 break; 4213 } else if (StrRef == "aapcs-vfp") { 4214 CC = CC_AAPCS_VFP; 4215 break; 4216 } 4217 4218 Attrs.setInvalid(); 4219 Diag(Attrs.getLoc(), diag::err_invalid_pcs); 4220 return true; 4221 } 4222 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break; 4223 case AttributeList::AT_PreserveMost: CC = CC_PreserveMost; break; 4224 case AttributeList::AT_PreserveAll: CC = CC_PreserveAll; break; 4225 default: llvm_unreachable("unexpected attribute kind"); 4226 } 4227 4228 const TargetInfo &TI = Context.getTargetInfo(); 4229 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC); 4230 if (A != TargetInfo::CCCR_OK) { 4231 if (A == TargetInfo::CCCR_Warning) 4232 Diag(Attrs.getLoc(), diag::warn_cconv_ignored) << Attrs.getName(); 4233 4234 // This convention is not valid for the target. Use the default function or 4235 // method calling convention. 4236 bool IsCXXMethod = false, IsVariadic = false; 4237 if (FD) { 4238 IsCXXMethod = FD->isCXXInstanceMember(); 4239 IsVariadic = FD->isVariadic(); 4240 } 4241 CC = Context.getDefaultCallingConvention(IsVariadic, IsCXXMethod); 4242 } 4243 4244 Attrs.setProcessingCache((unsigned) CC); 4245 return false; 4246 } 4247 4248 /// Pointer-like types in the default address space. 4249 static bool isValidSwiftContextType(QualType Ty) { 4250 if (!Ty->hasPointerRepresentation()) 4251 return Ty->isDependentType(); 4252 return Ty->getPointeeType().getAddressSpace() == LangAS::Default; 4253 } 4254 4255 /// Pointers and references in the default address space. 4256 static bool isValidSwiftIndirectResultType(QualType Ty) { 4257 if (const auto *PtrType = Ty->getAs<PointerType>()) { 4258 Ty = PtrType->getPointeeType(); 4259 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) { 4260 Ty = RefType->getPointeeType(); 4261 } else { 4262 return Ty->isDependentType(); 4263 } 4264 return Ty.getAddressSpace() == LangAS::Default; 4265 } 4266 4267 /// Pointers and references to pointers in the default address space. 4268 static bool isValidSwiftErrorResultType(QualType Ty) { 4269 if (const auto *PtrType = Ty->getAs<PointerType>()) { 4270 Ty = PtrType->getPointeeType(); 4271 } else if (const auto *RefType = Ty->getAs<ReferenceType>()) { 4272 Ty = RefType->getPointeeType(); 4273 } else { 4274 return Ty->isDependentType(); 4275 } 4276 if (!Ty.getQualifiers().empty()) 4277 return false; 4278 return isValidSwiftContextType(Ty); 4279 } 4280 4281 static void handleParameterABIAttr(Sema &S, Decl *D, const AttributeList &Attrs, 4282 ParameterABI Abi) { 4283 S.AddParameterABIAttr(Attrs.getRange(), D, Abi, 4284 Attrs.getAttributeSpellingListIndex()); 4285 } 4286 4287 void Sema::AddParameterABIAttr(SourceRange range, Decl *D, ParameterABI abi, 4288 unsigned spellingIndex) { 4289 4290 QualType type = cast<ParmVarDecl>(D)->getType(); 4291 4292 if (auto existingAttr = D->getAttr<ParameterABIAttr>()) { 4293 if (existingAttr->getABI() != abi) { 4294 Diag(range.getBegin(), diag::err_attributes_are_not_compatible) 4295 << getParameterABISpelling(abi) << existingAttr; 4296 Diag(existingAttr->getLocation(), diag::note_conflicting_attribute); 4297 return; 4298 } 4299 } 4300 4301 switch (abi) { 4302 case ParameterABI::Ordinary: 4303 llvm_unreachable("explicit attribute for ordinary parameter ABI?"); 4304 4305 case ParameterABI::SwiftContext: 4306 if (!isValidSwiftContextType(type)) { 4307 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type) 4308 << getParameterABISpelling(abi) 4309 << /*pointer to pointer */ 0 << type; 4310 } 4311 D->addAttr(::new (Context) 4312 SwiftContextAttr(range, Context, spellingIndex)); 4313 return; 4314 4315 case ParameterABI::SwiftErrorResult: 4316 if (!isValidSwiftErrorResultType(type)) { 4317 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type) 4318 << getParameterABISpelling(abi) 4319 << /*pointer to pointer */ 1 << type; 4320 } 4321 D->addAttr(::new (Context) 4322 SwiftErrorResultAttr(range, Context, spellingIndex)); 4323 return; 4324 4325 case ParameterABI::SwiftIndirectResult: 4326 if (!isValidSwiftIndirectResultType(type)) { 4327 Diag(range.getBegin(), diag::err_swift_abi_parameter_wrong_type) 4328 << getParameterABISpelling(abi) 4329 << /*pointer*/ 0 << type; 4330 } 4331 D->addAttr(::new (Context) 4332 SwiftIndirectResultAttr(range, Context, spellingIndex)); 4333 return; 4334 } 4335 llvm_unreachable("bad parameter ABI attribute"); 4336 } 4337 4338 /// Checks a regparm attribute, returning true if it is ill-formed and 4339 /// otherwise setting numParams to the appropriate value. 4340 bool Sema::CheckRegparmAttr(const AttributeList &AL, unsigned &numParams) { 4341 if (AL.isInvalid()) 4342 return true; 4343 4344 if (!checkAttributeNumArgs(*this, AL, 1)) { 4345 AL.setInvalid(); 4346 return true; 4347 } 4348 4349 uint32_t NP; 4350 Expr *NumParamsExpr = AL.getArgAsExpr(0); 4351 if (!checkUInt32Argument(*this, AL, NumParamsExpr, NP)) { 4352 AL.setInvalid(); 4353 return true; 4354 } 4355 4356 if (Context.getTargetInfo().getRegParmMax() == 0) { 4357 Diag(AL.getLoc(), diag::err_attribute_regparm_wrong_platform) 4358 << NumParamsExpr->getSourceRange(); 4359 AL.setInvalid(); 4360 return true; 4361 } 4362 4363 numParams = NP; 4364 if (numParams > Context.getTargetInfo().getRegParmMax()) { 4365 Diag(AL.getLoc(), diag::err_attribute_regparm_invalid_number) 4366 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange(); 4367 AL.setInvalid(); 4368 return true; 4369 } 4370 4371 return false; 4372 } 4373 4374 // Checks whether an argument of launch_bounds attribute is 4375 // acceptable, performs implicit conversion to Rvalue, and returns 4376 // non-nullptr Expr result on success. Otherwise, it returns nullptr 4377 // and may output an error. 4378 static Expr *makeLaunchBoundsArgExpr(Sema &S, Expr *E, 4379 const CUDALaunchBoundsAttr &AL, 4380 const unsigned Idx) { 4381 if (S.DiagnoseUnexpandedParameterPack(E)) 4382 return nullptr; 4383 4384 // Accept template arguments for now as they depend on something else. 4385 // We'll get to check them when they eventually get instantiated. 4386 if (E->isValueDependent()) 4387 return E; 4388 4389 llvm::APSInt I(64); 4390 if (!E->isIntegerConstantExpr(I, S.Context)) { 4391 S.Diag(E->getExprLoc(), diag::err_attribute_argument_n_type) 4392 << &AL << Idx << AANT_ArgumentIntegerConstant << E->getSourceRange(); 4393 return nullptr; 4394 } 4395 // Make sure we can fit it in 32 bits. 4396 if (!I.isIntN(32)) { 4397 S.Diag(E->getExprLoc(), diag::err_ice_too_large) << I.toString(10, false) 4398 << 32 << /* Unsigned */ 1; 4399 return nullptr; 4400 } 4401 if (I < 0) 4402 S.Diag(E->getExprLoc(), diag::warn_attribute_argument_n_negative) 4403 << &AL << Idx << E->getSourceRange(); 4404 4405 // We may need to perform implicit conversion of the argument. 4406 InitializedEntity Entity = InitializedEntity::InitializeParameter( 4407 S.Context, S.Context.getConstType(S.Context.IntTy), /*consume*/ false); 4408 ExprResult ValArg = S.PerformCopyInitialization(Entity, SourceLocation(), E); 4409 assert(!ValArg.isInvalid() && 4410 "Unexpected PerformCopyInitialization() failure."); 4411 4412 return ValArg.getAs<Expr>(); 4413 } 4414 4415 void Sema::AddLaunchBoundsAttr(SourceRange AttrRange, Decl *D, Expr *MaxThreads, 4416 Expr *MinBlocks, unsigned SpellingListIndex) { 4417 CUDALaunchBoundsAttr TmpAttr(AttrRange, Context, MaxThreads, MinBlocks, 4418 SpellingListIndex); 4419 MaxThreads = makeLaunchBoundsArgExpr(*this, MaxThreads, TmpAttr, 0); 4420 if (MaxThreads == nullptr) 4421 return; 4422 4423 if (MinBlocks) { 4424 MinBlocks = makeLaunchBoundsArgExpr(*this, MinBlocks, TmpAttr, 1); 4425 if (MinBlocks == nullptr) 4426 return; 4427 } 4428 4429 D->addAttr(::new (Context) CUDALaunchBoundsAttr( 4430 AttrRange, Context, MaxThreads, MinBlocks, SpellingListIndex)); 4431 } 4432 4433 static void handleLaunchBoundsAttr(Sema &S, Decl *D, 4434 const AttributeList &AL) { 4435 if (!checkAttributeAtLeastNumArgs(S, AL, 1) || 4436 !checkAttributeAtMostNumArgs(S, AL, 2)) 4437 return; 4438 4439 S.AddLaunchBoundsAttr(AL.getRange(), D, AL.getArgAsExpr(0), 4440 AL.getNumArgs() > 1 ? AL.getArgAsExpr(1) : nullptr, 4441 AL.getAttributeSpellingListIndex()); 4442 } 4443 4444 static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D, 4445 const AttributeList &AL) { 4446 if (!AL.isArgIdent(0)) { 4447 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 4448 << AL.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier; 4449 return; 4450 } 4451 4452 ParamIdx ArgumentIdx; 4453 if (!checkFunctionOrMethodParameterIndex(S, D, AL, 2, AL.getArgAsExpr(1), 4454 ArgumentIdx)) 4455 return; 4456 4457 ParamIdx TypeTagIdx; 4458 if (!checkFunctionOrMethodParameterIndex(S, D, AL, 3, AL.getArgAsExpr(2), 4459 TypeTagIdx)) 4460 return; 4461 4462 bool IsPointer = AL.getName()->getName() == "pointer_with_type_tag"; 4463 if (IsPointer) { 4464 // Ensure that buffer has a pointer type. 4465 unsigned ArgumentIdxAST = ArgumentIdx.getASTIndex(); 4466 if (ArgumentIdxAST >= getFunctionOrMethodNumParams(D) || 4467 !getFunctionOrMethodParamType(D, ArgumentIdxAST)->isPointerType()) 4468 S.Diag(AL.getLoc(), diag::err_attribute_pointers_only) 4469 << AL.getName() << 0; 4470 } 4471 4472 D->addAttr(::new (S.Context) ArgumentWithTypeTagAttr( 4473 AL.getRange(), S.Context, AL.getArgAsIdent(0)->Ident, ArgumentIdx, 4474 TypeTagIdx, IsPointer, AL.getAttributeSpellingListIndex())); 4475 } 4476 4477 static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D, 4478 const AttributeList &AL) { 4479 if (!AL.isArgIdent(0)) { 4480 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 4481 << AL.getName() << 1 << AANT_ArgumentIdentifier; 4482 return; 4483 } 4484 4485 if (!checkAttributeNumArgs(S, AL, 1)) 4486 return; 4487 4488 if (!isa<VarDecl>(D)) { 4489 S.Diag(AL.getLoc(), diag::err_attribute_wrong_decl_type) 4490 << AL.getName() << ExpectedVariable; 4491 return; 4492 } 4493 4494 IdentifierInfo *PointerKind = AL.getArgAsIdent(0)->Ident; 4495 TypeSourceInfo *MatchingCTypeLoc = nullptr; 4496 S.GetTypeFromParser(AL.getMatchingCType(), &MatchingCTypeLoc); 4497 assert(MatchingCTypeLoc && "no type source info for attribute argument"); 4498 4499 D->addAttr(::new (S.Context) 4500 TypeTagForDatatypeAttr(AL.getRange(), S.Context, PointerKind, 4501 MatchingCTypeLoc, 4502 AL.getLayoutCompatible(), 4503 AL.getMustBeNull(), 4504 AL.getAttributeSpellingListIndex())); 4505 } 4506 4507 static void handleXRayLogArgsAttr(Sema &S, Decl *D, const AttributeList &AL) { 4508 ParamIdx ArgCount; 4509 4510 if (!checkFunctionOrMethodParameterIndex(S, D, AL, 1, AL.getArgAsExpr(0), 4511 ArgCount, 4512 true /* CanIndexImplicitThis */)) 4513 return; 4514 4515 // ArgCount isn't a parameter index [0;n), it's a count [1;n] 4516 D->addAttr(::new (S.Context) XRayLogArgsAttr( 4517 AL.getRange(), S.Context, ArgCount.getSourceIndex(), 4518 AL.getAttributeSpellingListIndex())); 4519 } 4520 4521 //===----------------------------------------------------------------------===// 4522 // Checker-specific attribute handlers. 4523 //===----------------------------------------------------------------------===// 4524 4525 static bool isValidSubjectOfNSReturnsRetainedAttribute(QualType QT) { 4526 return QT->isDependentType() || QT->isObjCRetainableType(); 4527 } 4528 4529 static bool isValidSubjectOfNSAttribute(Sema &S, QualType QT) { 4530 return QT->isDependentType() || QT->isObjCObjectPointerType() || 4531 S.Context.isObjCNSObjectType(QT); 4532 } 4533 4534 static bool isValidSubjectOfCFAttribute(Sema &S, QualType QT) { 4535 return QT->isDependentType() || QT->isPointerType() || 4536 isValidSubjectOfNSAttribute(S, QT); 4537 } 4538 4539 static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &AL) { 4540 S.AddNSConsumedAttr(AL.getRange(), D, AL.getAttributeSpellingListIndex(), 4541 AL.getKind() == AttributeList::AT_NSConsumed, 4542 /*template instantiation*/ false); 4543 } 4544 4545 void Sema::AddNSConsumedAttr(SourceRange AttrRange, Decl *D, 4546 unsigned SpellingIndex, bool IsNSConsumed, 4547 bool IsTemplateInstantiation) { 4548 const auto *Param = cast<ParmVarDecl>(D); 4549 bool TypeOK; 4550 4551 if (IsNSConsumed) 4552 TypeOK = isValidSubjectOfNSAttribute(*this, Param->getType()); 4553 else 4554 TypeOK = isValidSubjectOfCFAttribute(*this, Param->getType()); 4555 4556 if (!TypeOK) { 4557 // These attributes are normally just advisory, but in ARC, ns_consumed 4558 // is significant. Allow non-dependent code to contain inappropriate 4559 // attributes even in ARC, but require template instantiations to be 4560 // set up correctly. 4561 Diag(D->getLocStart(), (IsTemplateInstantiation && IsNSConsumed && 4562 getLangOpts().ObjCAutoRefCount 4563 ? diag::err_ns_attribute_wrong_parameter_type 4564 : diag::warn_ns_attribute_wrong_parameter_type)) 4565 << AttrRange << (IsNSConsumed ? "ns_consumed" : "cf_consumed") 4566 << (IsNSConsumed ? /*objc pointers*/ 0 : /*cf pointers*/ 1); 4567 return; 4568 } 4569 4570 if (IsNSConsumed) 4571 D->addAttr(::new (Context) 4572 NSConsumedAttr(AttrRange, Context, SpellingIndex)); 4573 else 4574 D->addAttr(::new (Context) 4575 CFConsumedAttr(AttrRange, Context, SpellingIndex)); 4576 } 4577 4578 bool Sema::checkNSReturnsRetainedReturnType(SourceLocation Loc, QualType QT) { 4579 if (isValidSubjectOfNSReturnsRetainedAttribute(QT)) 4580 return false; 4581 4582 Diag(Loc, diag::warn_ns_attribute_wrong_return_type) 4583 << "'ns_returns_retained'" << 0 << 0; 4584 return true; 4585 } 4586 4587 static void handleNSReturnsRetainedAttr(Sema &S, Decl *D, 4588 const AttributeList &AL) { 4589 QualType ReturnType; 4590 4591 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) 4592 ReturnType = MD->getReturnType(); 4593 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) && 4594 (AL.getKind() == AttributeList::AT_NSReturnsRetained)) 4595 return; // ignore: was handled as a type attribute 4596 else if (const auto *PD = dyn_cast<ObjCPropertyDecl>(D)) 4597 ReturnType = PD->getType(); 4598 else if (const auto *FD = dyn_cast<FunctionDecl>(D)) 4599 ReturnType = FD->getReturnType(); 4600 else if (const auto *Param = dyn_cast<ParmVarDecl>(D)) { 4601 ReturnType = Param->getType()->getPointeeType(); 4602 if (ReturnType.isNull()) { 4603 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type) 4604 << AL.getName() << /*pointer-to-CF*/2 4605 << AL.getRange(); 4606 return; 4607 } 4608 } else if (AL.isUsedAsTypeAttr()) { 4609 return; 4610 } else { 4611 AttributeDeclKind ExpectedDeclKind; 4612 switch (AL.getKind()) { 4613 default: llvm_unreachable("invalid ownership attribute"); 4614 case AttributeList::AT_NSReturnsRetained: 4615 case AttributeList::AT_NSReturnsAutoreleased: 4616 case AttributeList::AT_NSReturnsNotRetained: 4617 ExpectedDeclKind = ExpectedFunctionOrMethod; 4618 break; 4619 4620 case AttributeList::AT_CFReturnsRetained: 4621 case AttributeList::AT_CFReturnsNotRetained: 4622 ExpectedDeclKind = ExpectedFunctionMethodOrParameter; 4623 break; 4624 } 4625 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type) 4626 << AL.getRange() << AL.getName() << ExpectedDeclKind; 4627 return; 4628 } 4629 4630 bool TypeOK; 4631 bool Cf; 4632 switch (AL.getKind()) { 4633 default: llvm_unreachable("invalid ownership attribute"); 4634 case AttributeList::AT_NSReturnsRetained: 4635 TypeOK = isValidSubjectOfNSReturnsRetainedAttribute(ReturnType); 4636 Cf = false; 4637 break; 4638 4639 case AttributeList::AT_NSReturnsAutoreleased: 4640 case AttributeList::AT_NSReturnsNotRetained: 4641 TypeOK = isValidSubjectOfNSAttribute(S, ReturnType); 4642 Cf = false; 4643 break; 4644 4645 case AttributeList::AT_CFReturnsRetained: 4646 case AttributeList::AT_CFReturnsNotRetained: 4647 TypeOK = isValidSubjectOfCFAttribute(S, ReturnType); 4648 Cf = true; 4649 break; 4650 } 4651 4652 if (!TypeOK) { 4653 if (AL.isUsedAsTypeAttr()) 4654 return; 4655 4656 if (isa<ParmVarDecl>(D)) { 4657 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type) 4658 << AL.getName() << /*pointer-to-CF*/2 4659 << AL.getRange(); 4660 } else { 4661 // Needs to be kept in sync with warn_ns_attribute_wrong_return_type. 4662 enum : unsigned { 4663 Function, 4664 Method, 4665 Property 4666 } SubjectKind = Function; 4667 if (isa<ObjCMethodDecl>(D)) 4668 SubjectKind = Method; 4669 else if (isa<ObjCPropertyDecl>(D)) 4670 SubjectKind = Property; 4671 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type) 4672 << AL.getName() << SubjectKind << Cf 4673 << AL.getRange(); 4674 } 4675 return; 4676 } 4677 4678 switch (AL.getKind()) { 4679 default: 4680 llvm_unreachable("invalid ownership attribute"); 4681 case AttributeList::AT_NSReturnsAutoreleased: 4682 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr( 4683 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4684 return; 4685 case AttributeList::AT_CFReturnsNotRetained: 4686 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr( 4687 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4688 return; 4689 case AttributeList::AT_NSReturnsNotRetained: 4690 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr( 4691 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4692 return; 4693 case AttributeList::AT_CFReturnsRetained: 4694 D->addAttr(::new (S.Context) CFReturnsRetainedAttr( 4695 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4696 return; 4697 case AttributeList::AT_NSReturnsRetained: 4698 D->addAttr(::new (S.Context) NSReturnsRetainedAttr( 4699 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 4700 return; 4701 }; 4702 } 4703 4704 static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D, 4705 const AttributeList &Attrs) { 4706 const int EP_ObjCMethod = 1; 4707 const int EP_ObjCProperty = 2; 4708 4709 SourceLocation loc = Attrs.getLoc(); 4710 QualType resultType; 4711 if (isa<ObjCMethodDecl>(D)) 4712 resultType = cast<ObjCMethodDecl>(D)->getReturnType(); 4713 else 4714 resultType = cast<ObjCPropertyDecl>(D)->getType(); 4715 4716 if (!resultType->isReferenceType() && 4717 (!resultType->isPointerType() || resultType->isObjCRetainableType())) { 4718 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type) 4719 << SourceRange(loc) 4720 << Attrs.getName() 4721 << (isa<ObjCMethodDecl>(D) ? EP_ObjCMethod : EP_ObjCProperty) 4722 << /*non-retainable pointer*/ 2; 4723 4724 // Drop the attribute. 4725 return; 4726 } 4727 4728 D->addAttr(::new (S.Context) ObjCReturnsInnerPointerAttr( 4729 Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex())); 4730 } 4731 4732 static void handleObjCRequiresSuperAttr(Sema &S, Decl *D, 4733 const AttributeList &Attrs) { 4734 const auto *Method = cast<ObjCMethodDecl>(D); 4735 4736 const DeclContext *DC = Method->getDeclContext(); 4737 if (const auto *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) { 4738 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol) 4739 << Attrs.getName() << 0; 4740 S.Diag(PDecl->getLocation(), diag::note_protocol_decl); 4741 return; 4742 } 4743 if (Method->getMethodFamily() == OMF_dealloc) { 4744 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol) 4745 << Attrs.getName() << 1; 4746 return; 4747 } 4748 4749 D->addAttr(::new (S.Context) ObjCRequiresSuperAttr( 4750 Attrs.getRange(), S.Context, Attrs.getAttributeSpellingListIndex())); 4751 } 4752 4753 static void handleObjCBridgeAttr(Sema &S, Decl *D, const AttributeList &AL) { 4754 IdentifierLoc *Parm = AL.isArgIdent(0) ? AL.getArgAsIdent(0) : nullptr; 4755 4756 if (!Parm) { 4757 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << AL.getName() << 0; 4758 return; 4759 } 4760 4761 // Typedefs only allow objc_bridge(id) and have some additional checking. 4762 if (const auto *TD = dyn_cast<TypedefNameDecl>(D)) { 4763 if (!Parm->Ident->isStr("id")) { 4764 S.Diag(AL.getLoc(), diag::err_objc_attr_typedef_not_id) 4765 << AL.getName(); 4766 return; 4767 } 4768 4769 // Only allow 'cv void *'. 4770 QualType T = TD->getUnderlyingType(); 4771 if (!T->isVoidPointerType()) { 4772 S.Diag(AL.getLoc(), diag::err_objc_attr_typedef_not_void_pointer); 4773 return; 4774 } 4775 } 4776 4777 D->addAttr(::new (S.Context) 4778 ObjCBridgeAttr(AL.getRange(), S.Context, Parm->Ident, 4779 AL.getAttributeSpellingListIndex())); 4780 } 4781 4782 static void handleObjCBridgeMutableAttr(Sema &S, Decl *D, 4783 const AttributeList &AL) { 4784 IdentifierLoc *Parm = AL.isArgIdent(0) ? AL.getArgAsIdent(0) : nullptr; 4785 4786 if (!Parm) { 4787 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << AL.getName() << 0; 4788 return; 4789 } 4790 4791 D->addAttr(::new (S.Context) 4792 ObjCBridgeMutableAttr(AL.getRange(), S.Context, Parm->Ident, 4793 AL.getAttributeSpellingListIndex())); 4794 } 4795 4796 static void handleObjCBridgeRelatedAttr(Sema &S, Decl *D, 4797 const AttributeList &AL) { 4798 IdentifierInfo *RelatedClass = 4799 AL.isArgIdent(0) ? AL.getArgAsIdent(0)->Ident : nullptr; 4800 if (!RelatedClass) { 4801 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << AL.getName() << 0; 4802 return; 4803 } 4804 IdentifierInfo *ClassMethod = 4805 AL.getArgAsIdent(1) ? AL.getArgAsIdent(1)->Ident : nullptr; 4806 IdentifierInfo *InstanceMethod = 4807 AL.getArgAsIdent(2) ? AL.getArgAsIdent(2)->Ident : nullptr; 4808 D->addAttr(::new (S.Context) 4809 ObjCBridgeRelatedAttr(AL.getRange(), S.Context, RelatedClass, 4810 ClassMethod, InstanceMethod, 4811 AL.getAttributeSpellingListIndex())); 4812 } 4813 4814 static void handleObjCDesignatedInitializer(Sema &S, Decl *D, 4815 const AttributeList &AL) { 4816 ObjCInterfaceDecl *IFace; 4817 if (auto *CatDecl = dyn_cast<ObjCCategoryDecl>(D->getDeclContext())) 4818 IFace = CatDecl->getClassInterface(); 4819 else 4820 IFace = cast<ObjCInterfaceDecl>(D->getDeclContext()); 4821 4822 if (!IFace) 4823 return; 4824 4825 IFace->setHasDesignatedInitializers(); 4826 D->addAttr(::new (S.Context) 4827 ObjCDesignatedInitializerAttr(AL.getRange(), S.Context, 4828 AL.getAttributeSpellingListIndex())); 4829 } 4830 4831 static void handleObjCRuntimeName(Sema &S, Decl *D, 4832 const AttributeList &AL) { 4833 StringRef MetaDataName; 4834 if (!S.checkStringLiteralArgumentAttr(AL, 0, MetaDataName)) 4835 return; 4836 D->addAttr(::new (S.Context) 4837 ObjCRuntimeNameAttr(AL.getRange(), S.Context, 4838 MetaDataName, 4839 AL.getAttributeSpellingListIndex())); 4840 } 4841 4842 // When a user wants to use objc_boxable with a union or struct 4843 // but they don't have access to the declaration (legacy/third-party code) 4844 // then they can 'enable' this feature with a typedef: 4845 // typedef struct __attribute((objc_boxable)) legacy_struct legacy_struct; 4846 static void handleObjCBoxable(Sema &S, Decl *D, const AttributeList &AL) { 4847 bool notify = false; 4848 4849 auto *RD = dyn_cast<RecordDecl>(D); 4850 if (RD && RD->getDefinition()) { 4851 RD = RD->getDefinition(); 4852 notify = true; 4853 } 4854 4855 if (RD) { 4856 ObjCBoxableAttr *BoxableAttr = ::new (S.Context) 4857 ObjCBoxableAttr(AL.getRange(), S.Context, 4858 AL.getAttributeSpellingListIndex()); 4859 RD->addAttr(BoxableAttr); 4860 if (notify) { 4861 // we need to notify ASTReader/ASTWriter about 4862 // modification of existing declaration 4863 if (ASTMutationListener *L = S.getASTMutationListener()) 4864 L->AddedAttributeToRecord(BoxableAttr, RD); 4865 } 4866 } 4867 } 4868 4869 static void handleObjCOwnershipAttr(Sema &S, Decl *D, 4870 const AttributeList &AL) { 4871 if (hasDeclarator(D)) return; 4872 4873 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type) 4874 << AL.getRange() << AL.getName() << ExpectedVariable; 4875 } 4876 4877 static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D, 4878 const AttributeList &AL) { 4879 const auto *VD = cast<ValueDecl>(D); 4880 QualType QT = VD->getType(); 4881 4882 if (!QT->isDependentType() && 4883 !QT->isObjCLifetimeType()) { 4884 S.Diag(AL.getLoc(), diag::err_objc_precise_lifetime_bad_type) 4885 << QT; 4886 return; 4887 } 4888 4889 Qualifiers::ObjCLifetime Lifetime = QT.getObjCLifetime(); 4890 4891 // If we have no lifetime yet, check the lifetime we're presumably 4892 // going to infer. 4893 if (Lifetime == Qualifiers::OCL_None && !QT->isDependentType()) 4894 Lifetime = QT->getObjCARCImplicitLifetime(); 4895 4896 switch (Lifetime) { 4897 case Qualifiers::OCL_None: 4898 assert(QT->isDependentType() && 4899 "didn't infer lifetime for non-dependent type?"); 4900 break; 4901 4902 case Qualifiers::OCL_Weak: // meaningful 4903 case Qualifiers::OCL_Strong: // meaningful 4904 break; 4905 4906 case Qualifiers::OCL_ExplicitNone: 4907 case Qualifiers::OCL_Autoreleasing: 4908 S.Diag(AL.getLoc(), diag::warn_objc_precise_lifetime_meaningless) 4909 << (Lifetime == Qualifiers::OCL_Autoreleasing); 4910 break; 4911 } 4912 4913 D->addAttr(::new (S.Context) 4914 ObjCPreciseLifetimeAttr(AL.getRange(), S.Context, 4915 AL.getAttributeSpellingListIndex())); 4916 } 4917 4918 //===----------------------------------------------------------------------===// 4919 // Microsoft specific attribute handlers. 4920 //===----------------------------------------------------------------------===// 4921 4922 UuidAttr *Sema::mergeUuidAttr(Decl *D, SourceRange Range, 4923 unsigned AttrSpellingListIndex, StringRef Uuid) { 4924 if (const auto *UA = D->getAttr<UuidAttr>()) { 4925 if (UA->getGuid().equals_lower(Uuid)) 4926 return nullptr; 4927 Diag(UA->getLocation(), diag::err_mismatched_uuid); 4928 Diag(Range.getBegin(), diag::note_previous_uuid); 4929 D->dropAttr<UuidAttr>(); 4930 } 4931 4932 return ::new (Context) UuidAttr(Range, Context, Uuid, AttrSpellingListIndex); 4933 } 4934 4935 static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &AL) { 4936 if (!S.LangOpts.CPlusPlus) { 4937 S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang) 4938 << AL.getName() << AttributeLangSupport::C; 4939 return; 4940 } 4941 4942 StringRef StrRef; 4943 SourceLocation LiteralLoc; 4944 if (!S.checkStringLiteralArgumentAttr(AL, 0, StrRef, &LiteralLoc)) 4945 return; 4946 4947 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or 4948 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former. 4949 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}') 4950 StrRef = StrRef.drop_front().drop_back(); 4951 4952 // Validate GUID length. 4953 if (StrRef.size() != 36) { 4954 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid); 4955 return; 4956 } 4957 4958 for (unsigned i = 0; i < 36; ++i) { 4959 if (i == 8 || i == 13 || i == 18 || i == 23) { 4960 if (StrRef[i] != '-') { 4961 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid); 4962 return; 4963 } 4964 } else if (!isHexDigit(StrRef[i])) { 4965 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid); 4966 return; 4967 } 4968 } 4969 4970 // FIXME: It'd be nice to also emit a fixit removing uuid(...) (and, if it's 4971 // the only thing in the [] list, the [] too), and add an insertion of 4972 // __declspec(uuid(...)). But sadly, neither the SourceLocs of the commas 4973 // separating attributes nor of the [ and the ] are in the AST. 4974 // Cf "SourceLocations of attribute list delimiters - [[ ... , ... ]] etc" 4975 // on cfe-dev. 4976 if (AL.isMicrosoftAttribute()) // Check for [uuid(...)] spelling. 4977 S.Diag(AL.getLoc(), diag::warn_atl_uuid_deprecated); 4978 4979 UuidAttr *UA = S.mergeUuidAttr(D, AL.getRange(), 4980 AL.getAttributeSpellingListIndex(), StrRef); 4981 if (UA) 4982 D->addAttr(UA); 4983 } 4984 4985 static void handleMSInheritanceAttr(Sema &S, Decl *D, const AttributeList &AL) { 4986 if (!S.LangOpts.CPlusPlus) { 4987 S.Diag(AL.getLoc(), diag::err_attribute_not_supported_in_lang) 4988 << AL.getName() << AttributeLangSupport::C; 4989 return; 4990 } 4991 MSInheritanceAttr *IA = S.mergeMSInheritanceAttr( 4992 D, AL.getRange(), /*BestCase=*/true, 4993 AL.getAttributeSpellingListIndex(), 4994 (MSInheritanceAttr::Spelling)AL.getSemanticSpelling()); 4995 if (IA) { 4996 D->addAttr(IA); 4997 S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D)); 4998 } 4999 } 5000 5001 static void handleDeclspecThreadAttr(Sema &S, Decl *D, 5002 const AttributeList &AL) { 5003 const auto *VD = cast<VarDecl>(D); 5004 if (!S.Context.getTargetInfo().isTLSSupported()) { 5005 S.Diag(AL.getLoc(), diag::err_thread_unsupported); 5006 return; 5007 } 5008 if (VD->getTSCSpec() != TSCS_unspecified) { 5009 S.Diag(AL.getLoc(), diag::err_declspec_thread_on_thread_variable); 5010 return; 5011 } 5012 if (VD->hasLocalStorage()) { 5013 S.Diag(AL.getLoc(), diag::err_thread_non_global) << "__declspec(thread)"; 5014 return; 5015 } 5016 D->addAttr(::new (S.Context) ThreadAttr(AL.getRange(), S.Context, 5017 AL.getAttributeSpellingListIndex())); 5018 } 5019 5020 static void handleAbiTagAttr(Sema &S, Decl *D, const AttributeList &AL) { 5021 SmallVector<StringRef, 4> Tags; 5022 for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) { 5023 StringRef Tag; 5024 if (!S.checkStringLiteralArgumentAttr(AL, I, Tag)) 5025 return; 5026 Tags.push_back(Tag); 5027 } 5028 5029 if (const auto *NS = dyn_cast<NamespaceDecl>(D)) { 5030 if (!NS->isInline()) { 5031 S.Diag(AL.getLoc(), diag::warn_attr_abi_tag_namespace) << 0; 5032 return; 5033 } 5034 if (NS->isAnonymousNamespace()) { 5035 S.Diag(AL.getLoc(), diag::warn_attr_abi_tag_namespace) << 1; 5036 return; 5037 } 5038 if (AL.getNumArgs() == 0) 5039 Tags.push_back(NS->getName()); 5040 } else if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 5041 return; 5042 5043 // Store tags sorted and without duplicates. 5044 llvm::sort(Tags.begin(), Tags.end()); 5045 Tags.erase(std::unique(Tags.begin(), Tags.end()), Tags.end()); 5046 5047 D->addAttr(::new (S.Context) 5048 AbiTagAttr(AL.getRange(), S.Context, Tags.data(), Tags.size(), 5049 AL.getAttributeSpellingListIndex())); 5050 } 5051 5052 static void handleARMInterruptAttr(Sema &S, Decl *D, 5053 const AttributeList &AL) { 5054 // Check the attribute arguments. 5055 if (AL.getNumArgs() > 1) { 5056 S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) 5057 << AL.getName() << 1; 5058 return; 5059 } 5060 5061 StringRef Str; 5062 SourceLocation ArgLoc; 5063 5064 if (AL.getNumArgs() == 0) 5065 Str = ""; 5066 else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc)) 5067 return; 5068 5069 ARMInterruptAttr::InterruptType Kind; 5070 if (!ARMInterruptAttr::ConvertStrToInterruptType(Str, Kind)) { 5071 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) 5072 << AL.getName() << Str << ArgLoc; 5073 return; 5074 } 5075 5076 unsigned Index = AL.getAttributeSpellingListIndex(); 5077 D->addAttr(::new (S.Context) 5078 ARMInterruptAttr(AL.getLoc(), S.Context, Kind, Index)); 5079 } 5080 5081 static void handleMSP430InterruptAttr(Sema &S, Decl *D, 5082 const AttributeList &AL) { 5083 if (!checkAttributeNumArgs(S, AL, 1)) 5084 return; 5085 5086 if (!AL.isArgExpr(0)) { 5087 S.Diag(AL.getLoc(), diag::err_attribute_argument_type) << AL.getName() 5088 << AANT_ArgumentIntegerConstant; 5089 return; 5090 } 5091 5092 // FIXME: Check for decl - it should be void ()(void). 5093 5094 Expr *NumParamsExpr = static_cast<Expr *>(AL.getArgAsExpr(0)); 5095 llvm::APSInt NumParams(32); 5096 if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) { 5097 S.Diag(AL.getLoc(), diag::err_attribute_argument_type) 5098 << AL.getName() << AANT_ArgumentIntegerConstant 5099 << NumParamsExpr->getSourceRange(); 5100 return; 5101 } 5102 5103 unsigned Num = NumParams.getLimitedValue(255); 5104 if ((Num & 1) || Num > 30) { 5105 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds) 5106 << AL.getName() << (int)NumParams.getSExtValue() 5107 << NumParamsExpr->getSourceRange(); 5108 return; 5109 } 5110 5111 D->addAttr(::new (S.Context) 5112 MSP430InterruptAttr(AL.getLoc(), S.Context, Num, 5113 AL.getAttributeSpellingListIndex())); 5114 D->addAttr(UsedAttr::CreateImplicit(S.Context)); 5115 } 5116 5117 static void handleMipsInterruptAttr(Sema &S, Decl *D, 5118 const AttributeList &AL) { 5119 // Only one optional argument permitted. 5120 if (AL.getNumArgs() > 1) { 5121 S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) 5122 << AL.getName() << 1; 5123 return; 5124 } 5125 5126 StringRef Str; 5127 SourceLocation ArgLoc; 5128 5129 if (AL.getNumArgs() == 0) 5130 Str = ""; 5131 else if (!S.checkStringLiteralArgumentAttr(AL, 0, Str, &ArgLoc)) 5132 return; 5133 5134 // Semantic checks for a function with the 'interrupt' attribute for MIPS: 5135 // a) Must be a function. 5136 // b) Must have no parameters. 5137 // c) Must have the 'void' return type. 5138 // d) Cannot have the 'mips16' attribute, as that instruction set 5139 // lacks the 'eret' instruction. 5140 // e) The attribute itself must either have no argument or one of the 5141 // valid interrupt types, see [MipsInterruptDocs]. 5142 5143 if (!isFunctionOrMethod(D)) { 5144 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type) 5145 << "'interrupt'" << ExpectedFunctionOrMethod; 5146 return; 5147 } 5148 5149 if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) { 5150 S.Diag(D->getLocation(), diag::warn_mips_interrupt_attribute) 5151 << 0; 5152 return; 5153 } 5154 5155 if (!getFunctionOrMethodResultType(D)->isVoidType()) { 5156 S.Diag(D->getLocation(), diag::warn_mips_interrupt_attribute) 5157 << 1; 5158 return; 5159 } 5160 5161 if (checkAttrMutualExclusion<Mips16Attr>(S, D, AL.getRange(), 5162 AL.getName())) 5163 return; 5164 5165 MipsInterruptAttr::InterruptType Kind; 5166 if (!MipsInterruptAttr::ConvertStrToInterruptType(Str, Kind)) { 5167 S.Diag(AL.getLoc(), diag::warn_attribute_type_not_supported) 5168 << AL.getName() << "'" + std::string(Str) + "'"; 5169 return; 5170 } 5171 5172 D->addAttr(::new (S.Context) MipsInterruptAttr( 5173 AL.getLoc(), S.Context, Kind, AL.getAttributeSpellingListIndex())); 5174 } 5175 5176 static void handleAnyX86InterruptAttr(Sema &S, Decl *D, 5177 const AttributeList &AL) { 5178 // Semantic checks for a function with the 'interrupt' attribute. 5179 // a) Must be a function. 5180 // b) Must have the 'void' return type. 5181 // c) Must take 1 or 2 arguments. 5182 // d) The 1st argument must be a pointer. 5183 // e) The 2nd argument (if any) must be an unsigned integer. 5184 if (!isFunctionOrMethod(D) || !hasFunctionProto(D) || isInstanceMethod(D) || 5185 CXXMethodDecl::isStaticOverloadedOperator( 5186 cast<NamedDecl>(D)->getDeclName().getCXXOverloadedOperator())) { 5187 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) 5188 << AL.getName() << ExpectedFunctionWithProtoType; 5189 return; 5190 } 5191 // Interrupt handler must have void return type. 5192 if (!getFunctionOrMethodResultType(D)->isVoidType()) { 5193 S.Diag(getFunctionOrMethodResultSourceRange(D).getBegin(), 5194 diag::err_anyx86_interrupt_attribute) 5195 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86 5196 ? 0 5197 : 1) 5198 << 0; 5199 return; 5200 } 5201 // Interrupt handler must have 1 or 2 parameters. 5202 unsigned NumParams = getFunctionOrMethodNumParams(D); 5203 if (NumParams < 1 || NumParams > 2) { 5204 S.Diag(D->getLocStart(), diag::err_anyx86_interrupt_attribute) 5205 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86 5206 ? 0 5207 : 1) 5208 << 1; 5209 return; 5210 } 5211 // The first argument must be a pointer. 5212 if (!getFunctionOrMethodParamType(D, 0)->isPointerType()) { 5213 S.Diag(getFunctionOrMethodParamRange(D, 0).getBegin(), 5214 diag::err_anyx86_interrupt_attribute) 5215 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86 5216 ? 0 5217 : 1) 5218 << 2; 5219 return; 5220 } 5221 // The second argument, if present, must be an unsigned integer. 5222 unsigned TypeSize = 5223 S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86_64 5224 ? 64 5225 : 32; 5226 if (NumParams == 2 && 5227 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() || 5228 S.Context.getTypeSize(getFunctionOrMethodParamType(D, 1)) != TypeSize)) { 5229 S.Diag(getFunctionOrMethodParamRange(D, 1).getBegin(), 5230 diag::err_anyx86_interrupt_attribute) 5231 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86 5232 ? 0 5233 : 1) 5234 << 3 << S.Context.getIntTypeForBitwidth(TypeSize, /*Signed=*/false); 5235 return; 5236 } 5237 D->addAttr(::new (S.Context) AnyX86InterruptAttr( 5238 AL.getLoc(), S.Context, AL.getAttributeSpellingListIndex())); 5239 D->addAttr(UsedAttr::CreateImplicit(S.Context)); 5240 } 5241 5242 static void handleAVRInterruptAttr(Sema &S, Decl *D, const AttributeList &AL) { 5243 if (!isFunctionOrMethod(D)) { 5244 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type) 5245 << "'interrupt'" << ExpectedFunction; 5246 return; 5247 } 5248 5249 if (!checkAttributeNumArgs(S, AL, 0)) 5250 return; 5251 5252 handleSimpleAttribute<AVRInterruptAttr>(S, D, AL); 5253 } 5254 5255 static void handleAVRSignalAttr(Sema &S, Decl *D, const AttributeList &AL) { 5256 if (!isFunctionOrMethod(D)) { 5257 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type) 5258 << "'signal'" << ExpectedFunction; 5259 return; 5260 } 5261 5262 if (!checkAttributeNumArgs(S, AL, 0)) 5263 return; 5264 5265 handleSimpleAttribute<AVRSignalAttr>(S, D, AL); 5266 } 5267 5268 static void handleInterruptAttr(Sema &S, Decl *D, const AttributeList &AL) { 5269 // Dispatch the interrupt attribute based on the current target. 5270 switch (S.Context.getTargetInfo().getTriple().getArch()) { 5271 case llvm::Triple::msp430: 5272 handleMSP430InterruptAttr(S, D, AL); 5273 break; 5274 case llvm::Triple::mipsel: 5275 case llvm::Triple::mips: 5276 handleMipsInterruptAttr(S, D, AL); 5277 break; 5278 case llvm::Triple::x86: 5279 case llvm::Triple::x86_64: 5280 handleAnyX86InterruptAttr(S, D, AL); 5281 break; 5282 case llvm::Triple::avr: 5283 handleAVRInterruptAttr(S, D, AL); 5284 break; 5285 default: 5286 handleARMInterruptAttr(S, D, AL); 5287 break; 5288 } 5289 } 5290 5291 static void handleAMDGPUFlatWorkGroupSizeAttr(Sema &S, Decl *D, 5292 const AttributeList &AL) { 5293 uint32_t Min = 0; 5294 Expr *MinExpr = AL.getArgAsExpr(0); 5295 if (!checkUInt32Argument(S, AL, MinExpr, Min)) 5296 return; 5297 5298 uint32_t Max = 0; 5299 Expr *MaxExpr = AL.getArgAsExpr(1); 5300 if (!checkUInt32Argument(S, AL, MaxExpr, Max)) 5301 return; 5302 5303 if (Min == 0 && Max != 0) { 5304 S.Diag(AL.getLoc(), diag::err_attribute_argument_invalid) 5305 << AL.getName() << 0; 5306 return; 5307 } 5308 if (Min > Max) { 5309 S.Diag(AL.getLoc(), diag::err_attribute_argument_invalid) 5310 << AL.getName() << 1; 5311 return; 5312 } 5313 5314 D->addAttr(::new (S.Context) 5315 AMDGPUFlatWorkGroupSizeAttr(AL.getLoc(), S.Context, Min, Max, 5316 AL.getAttributeSpellingListIndex())); 5317 } 5318 5319 static void handleAMDGPUWavesPerEUAttr(Sema &S, Decl *D, 5320 const AttributeList &AL) { 5321 uint32_t Min = 0; 5322 Expr *MinExpr = AL.getArgAsExpr(0); 5323 if (!checkUInt32Argument(S, AL, MinExpr, Min)) 5324 return; 5325 5326 uint32_t Max = 0; 5327 if (AL.getNumArgs() == 2) { 5328 Expr *MaxExpr = AL.getArgAsExpr(1); 5329 if (!checkUInt32Argument(S, AL, MaxExpr, Max)) 5330 return; 5331 } 5332 5333 if (Min == 0 && Max != 0) { 5334 S.Diag(AL.getLoc(), diag::err_attribute_argument_invalid) 5335 << AL.getName() << 0; 5336 return; 5337 } 5338 if (Max != 0 && Min > Max) { 5339 S.Diag(AL.getLoc(), diag::err_attribute_argument_invalid) 5340 << AL.getName() << 1; 5341 return; 5342 } 5343 5344 D->addAttr(::new (S.Context) 5345 AMDGPUWavesPerEUAttr(AL.getLoc(), S.Context, Min, Max, 5346 AL.getAttributeSpellingListIndex())); 5347 } 5348 5349 static void handleAMDGPUNumSGPRAttr(Sema &S, Decl *D, 5350 const AttributeList &AL) { 5351 uint32_t NumSGPR = 0; 5352 Expr *NumSGPRExpr = AL.getArgAsExpr(0); 5353 if (!checkUInt32Argument(S, AL, NumSGPRExpr, NumSGPR)) 5354 return; 5355 5356 D->addAttr(::new (S.Context) 5357 AMDGPUNumSGPRAttr(AL.getLoc(), S.Context, NumSGPR, 5358 AL.getAttributeSpellingListIndex())); 5359 } 5360 5361 static void handleAMDGPUNumVGPRAttr(Sema &S, Decl *D, 5362 const AttributeList &AL) { 5363 uint32_t NumVGPR = 0; 5364 Expr *NumVGPRExpr = AL.getArgAsExpr(0); 5365 if (!checkUInt32Argument(S, AL, NumVGPRExpr, NumVGPR)) 5366 return; 5367 5368 D->addAttr(::new (S.Context) 5369 AMDGPUNumVGPRAttr(AL.getLoc(), S.Context, NumVGPR, 5370 AL.getAttributeSpellingListIndex())); 5371 } 5372 5373 static void handleX86ForceAlignArgPointerAttr(Sema &S, Decl *D, 5374 const AttributeList& AL) { 5375 // If we try to apply it to a function pointer, don't warn, but don't 5376 // do anything, either. It doesn't matter anyway, because there's nothing 5377 // special about calling a force_align_arg_pointer function. 5378 const auto *VD = dyn_cast<ValueDecl>(D); 5379 if (VD && VD->getType()->isFunctionPointerType()) 5380 return; 5381 // Also don't warn on function pointer typedefs. 5382 const auto *TD = dyn_cast<TypedefNameDecl>(D); 5383 if (TD && (TD->getUnderlyingType()->isFunctionPointerType() || 5384 TD->getUnderlyingType()->isFunctionType())) 5385 return; 5386 // Attribute can only be applied to function types. 5387 if (!isa<FunctionDecl>(D)) { 5388 S.Diag(AL.getLoc(), diag::warn_attribute_wrong_decl_type) 5389 << AL.getName() << ExpectedFunction; 5390 return; 5391 } 5392 5393 D->addAttr(::new (S.Context) 5394 X86ForceAlignArgPointerAttr(AL.getRange(), S.Context, 5395 AL.getAttributeSpellingListIndex())); 5396 } 5397 5398 static void handleLayoutVersion(Sema &S, Decl *D, const AttributeList &AL) { 5399 uint32_t Version; 5400 Expr *VersionExpr = static_cast<Expr *>(AL.getArgAsExpr(0)); 5401 if (!checkUInt32Argument(S, AL, AL.getArgAsExpr(0), Version)) 5402 return; 5403 5404 // TODO: Investigate what happens with the next major version of MSVC. 5405 if (Version != LangOptions::MSVC2015) { 5406 S.Diag(AL.getLoc(), diag::err_attribute_argument_out_of_bounds) 5407 << AL.getName() << Version << VersionExpr->getSourceRange(); 5408 return; 5409 } 5410 5411 D->addAttr(::new (S.Context) 5412 LayoutVersionAttr(AL.getRange(), S.Context, Version, 5413 AL.getAttributeSpellingListIndex())); 5414 } 5415 5416 DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range, 5417 unsigned AttrSpellingListIndex) { 5418 if (D->hasAttr<DLLExportAttr>()) { 5419 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'dllimport'"; 5420 return nullptr; 5421 } 5422 5423 if (D->hasAttr<DLLImportAttr>()) 5424 return nullptr; 5425 5426 return ::new (Context) DLLImportAttr(Range, Context, AttrSpellingListIndex); 5427 } 5428 5429 DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D, SourceRange Range, 5430 unsigned AttrSpellingListIndex) { 5431 if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) { 5432 Diag(Import->getLocation(), diag::warn_attribute_ignored) << Import; 5433 D->dropAttr<DLLImportAttr>(); 5434 } 5435 5436 if (D->hasAttr<DLLExportAttr>()) 5437 return nullptr; 5438 5439 return ::new (Context) DLLExportAttr(Range, Context, AttrSpellingListIndex); 5440 } 5441 5442 static void handleDLLAttr(Sema &S, Decl *D, const AttributeList &A) { 5443 if (isa<ClassTemplatePartialSpecializationDecl>(D) && 5444 S.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 5445 S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored) 5446 << A.getName(); 5447 return; 5448 } 5449 5450 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 5451 if (FD->isInlined() && A.getKind() == AttributeList::AT_DLLImport && 5452 !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 5453 // MinGW doesn't allow dllimport on inline functions. 5454 S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored_on_inline) 5455 << A.getName(); 5456 return; 5457 } 5458 } 5459 5460 if (const auto *MD = dyn_cast<CXXMethodDecl>(D)) { 5461 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() && 5462 MD->getParent()->isLambda()) { 5463 S.Diag(A.getRange().getBegin(), diag::err_attribute_dll_lambda) << A.getName(); 5464 return; 5465 } 5466 } 5467 5468 unsigned Index = A.getAttributeSpellingListIndex(); 5469 Attr *NewAttr = A.getKind() == AttributeList::AT_DLLExport 5470 ? (Attr *)S.mergeDLLExportAttr(D, A.getRange(), Index) 5471 : (Attr *)S.mergeDLLImportAttr(D, A.getRange(), Index); 5472 if (NewAttr) 5473 D->addAttr(NewAttr); 5474 } 5475 5476 MSInheritanceAttr * 5477 Sema::mergeMSInheritanceAttr(Decl *D, SourceRange Range, bool BestCase, 5478 unsigned AttrSpellingListIndex, 5479 MSInheritanceAttr::Spelling SemanticSpelling) { 5480 if (MSInheritanceAttr *IA = D->getAttr<MSInheritanceAttr>()) { 5481 if (IA->getSemanticSpelling() == SemanticSpelling) 5482 return nullptr; 5483 Diag(IA->getLocation(), diag::err_mismatched_ms_inheritance) 5484 << 1 /*previous declaration*/; 5485 Diag(Range.getBegin(), diag::note_previous_ms_inheritance); 5486 D->dropAttr<MSInheritanceAttr>(); 5487 } 5488 5489 auto *RD = cast<CXXRecordDecl>(D); 5490 if (RD->hasDefinition()) { 5491 if (checkMSInheritanceAttrOnDefinition(RD, Range, BestCase, 5492 SemanticSpelling)) { 5493 return nullptr; 5494 } 5495 } else { 5496 if (isa<ClassTemplatePartialSpecializationDecl>(RD)) { 5497 Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance) 5498 << 1 /*partial specialization*/; 5499 return nullptr; 5500 } 5501 if (RD->getDescribedClassTemplate()) { 5502 Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance) 5503 << 0 /*primary template*/; 5504 return nullptr; 5505 } 5506 } 5507 5508 return ::new (Context) 5509 MSInheritanceAttr(Range, Context, BestCase, AttrSpellingListIndex); 5510 } 5511 5512 static void handleCapabilityAttr(Sema &S, Decl *D, const AttributeList &AL) { 5513 // The capability attributes take a single string parameter for the name of 5514 // the capability they represent. The lockable attribute does not take any 5515 // parameters. However, semantically, both attributes represent the same 5516 // concept, and so they use the same semantic attribute. Eventually, the 5517 // lockable attribute will be removed. 5518 // 5519 // For backward compatibility, any capability which has no specified string 5520 // literal will be considered a "mutex." 5521 StringRef N("mutex"); 5522 SourceLocation LiteralLoc; 5523 if (AL.getKind() == AttributeList::AT_Capability && 5524 !S.checkStringLiteralArgumentAttr(AL, 0, N, &LiteralLoc)) 5525 return; 5526 5527 // Currently, there are only two names allowed for a capability: role and 5528 // mutex (case insensitive). Diagnose other capability names. 5529 if (!N.equals_lower("mutex") && !N.equals_lower("role")) 5530 S.Diag(LiteralLoc, diag::warn_invalid_capability_name) << N; 5531 5532 D->addAttr(::new (S.Context) CapabilityAttr(AL.getRange(), S.Context, N, 5533 AL.getAttributeSpellingListIndex())); 5534 } 5535 5536 static void handleAssertCapabilityAttr(Sema &S, Decl *D, 5537 const AttributeList &AL) { 5538 SmallVector<Expr*, 1> Args; 5539 if (!checkLockFunAttrCommon(S, D, AL, Args)) 5540 return; 5541 5542 D->addAttr(::new (S.Context) AssertCapabilityAttr(AL.getRange(), S.Context, 5543 Args.data(), Args.size(), 5544 AL.getAttributeSpellingListIndex())); 5545 } 5546 5547 static void handleAcquireCapabilityAttr(Sema &S, Decl *D, 5548 const AttributeList &AL) { 5549 SmallVector<Expr*, 1> Args; 5550 if (!checkLockFunAttrCommon(S, D, AL, Args)) 5551 return; 5552 5553 D->addAttr(::new (S.Context) AcquireCapabilityAttr(AL.getRange(), 5554 S.Context, 5555 Args.data(), Args.size(), 5556 AL.getAttributeSpellingListIndex())); 5557 } 5558 5559 static void handleTryAcquireCapabilityAttr(Sema &S, Decl *D, 5560 const AttributeList &AL) { 5561 SmallVector<Expr*, 2> Args; 5562 if (!checkTryLockFunAttrCommon(S, D, AL, Args)) 5563 return; 5564 5565 D->addAttr(::new (S.Context) TryAcquireCapabilityAttr(AL.getRange(), 5566 S.Context, 5567 AL.getArgAsExpr(0), 5568 Args.data(), 5569 Args.size(), 5570 AL.getAttributeSpellingListIndex())); 5571 } 5572 5573 static void handleReleaseCapabilityAttr(Sema &S, Decl *D, 5574 const AttributeList &AL) { 5575 // Check that all arguments are lockable objects. 5576 SmallVector<Expr *, 1> Args; 5577 checkAttrArgsAreCapabilityObjs(S, D, AL, Args, 0, true); 5578 5579 D->addAttr(::new (S.Context) ReleaseCapabilityAttr( 5580 AL.getRange(), S.Context, Args.data(), Args.size(), 5581 AL.getAttributeSpellingListIndex())); 5582 } 5583 5584 static void handleRequiresCapabilityAttr(Sema &S, Decl *D, 5585 const AttributeList &AL) { 5586 if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 5587 return; 5588 5589 // check that all arguments are lockable objects 5590 SmallVector<Expr*, 1> Args; 5591 checkAttrArgsAreCapabilityObjs(S, D, AL, Args); 5592 if (Args.empty()) 5593 return; 5594 5595 RequiresCapabilityAttr *RCA = ::new (S.Context) 5596 RequiresCapabilityAttr(AL.getRange(), S.Context, Args.data(), 5597 Args.size(), AL.getAttributeSpellingListIndex()); 5598 5599 D->addAttr(RCA); 5600 } 5601 5602 static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &AL) { 5603 if (const auto *NSD = dyn_cast<NamespaceDecl>(D)) { 5604 if (NSD->isAnonymousNamespace()) { 5605 S.Diag(AL.getLoc(), diag::warn_deprecated_anonymous_namespace); 5606 // Do not want to attach the attribute to the namespace because that will 5607 // cause confusing diagnostic reports for uses of declarations within the 5608 // namespace. 5609 return; 5610 } 5611 } 5612 5613 // Handle the cases where the attribute has a text message. 5614 StringRef Str, Replacement; 5615 if (AL.isArgExpr(0) && AL.getArgAsExpr(0) && 5616 !S.checkStringLiteralArgumentAttr(AL, 0, Str)) 5617 return; 5618 5619 // Only support a single optional message for Declspec and CXX11. 5620 if (AL.isDeclspecAttribute() || AL.isCXX11Attribute()) 5621 checkAttributeAtMostNumArgs(S, AL, 1); 5622 else if (AL.isArgExpr(1) && AL.getArgAsExpr(1) && 5623 !S.checkStringLiteralArgumentAttr(AL, 1, Replacement)) 5624 return; 5625 5626 if (!S.getLangOpts().CPlusPlus14) 5627 if (AL.isCXX11Attribute() && 5628 !(AL.hasScope() && AL.getScopeName()->isStr("gnu"))) 5629 S.Diag(AL.getLoc(), diag::ext_cxx14_attr) << AL.getName(); 5630 5631 D->addAttr(::new (S.Context) 5632 DeprecatedAttr(AL.getRange(), S.Context, Str, Replacement, 5633 AL.getAttributeSpellingListIndex())); 5634 } 5635 5636 static bool isGlobalVar(const Decl *D) { 5637 if (const auto *S = dyn_cast<VarDecl>(D)) 5638 return S->hasGlobalStorage(); 5639 return false; 5640 } 5641 5642 static void handleNoSanitizeAttr(Sema &S, Decl *D, const AttributeList &AL) { 5643 if (!checkAttributeAtLeastNumArgs(S, AL, 1)) 5644 return; 5645 5646 std::vector<StringRef> Sanitizers; 5647 5648 for (unsigned I = 0, E = AL.getNumArgs(); I != E; ++I) { 5649 StringRef SanitizerName; 5650 SourceLocation LiteralLoc; 5651 5652 if (!S.checkStringLiteralArgumentAttr(AL, I, SanitizerName, &LiteralLoc)) 5653 return; 5654 5655 if (parseSanitizerValue(SanitizerName, /*AllowGroups=*/true) == 0) 5656 S.Diag(LiteralLoc, diag::warn_unknown_sanitizer_ignored) << SanitizerName; 5657 else if (isGlobalVar(D) && SanitizerName != "address") 5658 S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type) 5659 << AL.getName() << ExpectedFunctionOrMethod; 5660 Sanitizers.push_back(SanitizerName); 5661 } 5662 5663 D->addAttr(::new (S.Context) NoSanitizeAttr( 5664 AL.getRange(), S.Context, Sanitizers.data(), Sanitizers.size(), 5665 AL.getAttributeSpellingListIndex())); 5666 } 5667 5668 static void handleNoSanitizeSpecificAttr(Sema &S, Decl *D, 5669 const AttributeList &AL) { 5670 StringRef AttrName = AL.getName()->getName(); 5671 normalizeName(AttrName); 5672 StringRef SanitizerName = llvm::StringSwitch<StringRef>(AttrName) 5673 .Case("no_address_safety_analysis", "address") 5674 .Case("no_sanitize_address", "address") 5675 .Case("no_sanitize_thread", "thread") 5676 .Case("no_sanitize_memory", "memory"); 5677 if (isGlobalVar(D) && SanitizerName != "address") 5678 S.Diag(D->getLocation(), diag::err_attribute_wrong_decl_type) 5679 << AL.getName() << ExpectedFunction; 5680 D->addAttr(::new (S.Context) 5681 NoSanitizeAttr(AL.getRange(), S.Context, &SanitizerName, 1, 5682 AL.getAttributeSpellingListIndex())); 5683 } 5684 5685 static void handleInternalLinkageAttr(Sema &S, Decl *D, 5686 const AttributeList &AL) { 5687 if (InternalLinkageAttr *Internal = 5688 S.mergeInternalLinkageAttr(D, AL.getRange(), AL.getName(), 5689 AL.getAttributeSpellingListIndex())) 5690 D->addAttr(Internal); 5691 } 5692 5693 static void handleOpenCLNoSVMAttr(Sema &S, Decl *D, const AttributeList &AL) { 5694 if (S.LangOpts.OpenCLVersion != 200) 5695 S.Diag(AL.getLoc(), diag::err_attribute_requires_opencl_version) 5696 << AL.getName() << "2.0" << 0; 5697 else 5698 S.Diag(AL.getLoc(), diag::warn_opencl_attr_deprecated_ignored) 5699 << AL.getName() << "2.0"; 5700 } 5701 5702 /// Handles semantic checking for features that are common to all attributes, 5703 /// such as checking whether a parameter was properly specified, or the correct 5704 /// number of arguments were passed, etc. 5705 static bool handleCommonAttributeFeatures(Sema &S, Decl *D, 5706 const AttributeList &AL) { 5707 // Several attributes carry different semantics than the parsing requires, so 5708 // those are opted out of the common argument checks. 5709 // 5710 // We also bail on unknown and ignored attributes because those are handled 5711 // as part of the target-specific handling logic. 5712 if (AL.getKind() == AttributeList::UnknownAttribute) 5713 return false; 5714 // Check whether the attribute requires specific language extensions to be 5715 // enabled. 5716 if (!AL.diagnoseLangOpts(S)) 5717 return true; 5718 // Check whether the attribute appertains to the given subject. 5719 if (!AL.diagnoseAppertainsTo(S, D)) 5720 return true; 5721 if (AL.hasCustomParsing()) 5722 return false; 5723 5724 if (AL.getMinArgs() == AL.getMaxArgs()) { 5725 // If there are no optional arguments, then checking for the argument count 5726 // is trivial. 5727 if (!checkAttributeNumArgs(S, AL, AL.getMinArgs())) 5728 return true; 5729 } else { 5730 // There are optional arguments, so checking is slightly more involved. 5731 if (AL.getMinArgs() && 5732 !checkAttributeAtLeastNumArgs(S, AL, AL.getMinArgs())) 5733 return true; 5734 else if (!AL.hasVariadicArg() && AL.getMaxArgs() && 5735 !checkAttributeAtMostNumArgs(S, AL, AL.getMaxArgs())) 5736 return true; 5737 } 5738 5739 if (S.CheckAttrTarget(AL)) 5740 return true; 5741 5742 return false; 5743 } 5744 5745 static void handleOpenCLAccessAttr(Sema &S, Decl *D, 5746 const AttributeList &AL) { 5747 if (D->isInvalidDecl()) 5748 return; 5749 5750 // Check if there is only one access qualifier. 5751 if (D->hasAttr<OpenCLAccessAttr>()) { 5752 S.Diag(AL.getLoc(), diag::err_opencl_multiple_access_qualifiers) 5753 << D->getSourceRange(); 5754 D->setInvalidDecl(true); 5755 return; 5756 } 5757 5758 // OpenCL v2.0 s6.6 - read_write can be used for image types to specify that an 5759 // image object can be read and written. 5760 // OpenCL v2.0 s6.13.6 - A kernel cannot read from and write to the same pipe 5761 // object. Using the read_write (or __read_write) qualifier with the pipe 5762 // qualifier is a compilation error. 5763 if (const auto *PDecl = dyn_cast<ParmVarDecl>(D)) { 5764 const Type *DeclTy = PDecl->getType().getCanonicalType().getTypePtr(); 5765 if (AL.getName()->getName().find("read_write") != StringRef::npos) { 5766 if (S.getLangOpts().OpenCLVersion < 200 || DeclTy->isPipeType()) { 5767 S.Diag(AL.getLoc(), diag::err_opencl_invalid_read_write) 5768 << AL.getName() << PDecl->getType() << DeclTy->isImageType(); 5769 D->setInvalidDecl(true); 5770 return; 5771 } 5772 } 5773 } 5774 5775 D->addAttr(::new (S.Context) OpenCLAccessAttr( 5776 AL.getRange(), S.Context, AL.getAttributeSpellingListIndex())); 5777 } 5778 5779 //===----------------------------------------------------------------------===// 5780 // Top Level Sema Entry Points 5781 //===----------------------------------------------------------------------===// 5782 5783 /// ProcessDeclAttribute - Apply the specific attribute to the specified decl if 5784 /// the attribute applies to decls. If the attribute is a type attribute, just 5785 /// silently ignore it if a GNU attribute. 5786 static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, 5787 const AttributeList &AL, 5788 bool IncludeCXX11Attributes) { 5789 if (AL.isInvalid() || AL.getKind() == AttributeList::IgnoredAttribute) 5790 return; 5791 5792 // Ignore C++11 attributes on declarator chunks: they appertain to the type 5793 // instead. 5794 if (AL.isCXX11Attribute() && !IncludeCXX11Attributes) 5795 return; 5796 5797 // Unknown attributes are automatically warned on. Target-specific attributes 5798 // which do not apply to the current target architecture are treated as 5799 // though they were unknown attributes. 5800 if (AL.getKind() == AttributeList::UnknownAttribute || 5801 !AL.existsInTarget(S.Context.getTargetInfo())) { 5802 S.Diag(AL.getLoc(), AL.isDeclspecAttribute() 5803 ? diag::warn_unhandled_ms_attribute_ignored 5804 : diag::warn_unknown_attribute_ignored) 5805 << AL.getName(); 5806 return; 5807 } 5808 5809 if (handleCommonAttributeFeatures(S, D, AL)) 5810 return; 5811 5812 switch (AL.getKind()) { 5813 default: 5814 if (!AL.isStmtAttr()) { 5815 // Type attributes are handled elsewhere; silently move on. 5816 assert(AL.isTypeAttr() && "Non-type attribute not handled"); 5817 break; 5818 } 5819 S.Diag(AL.getLoc(), diag::err_stmt_attribute_invalid_on_decl) 5820 << AL.getName() << D->getLocation(); 5821 break; 5822 case AttributeList::AT_Interrupt: 5823 handleInterruptAttr(S, D, AL); 5824 break; 5825 case AttributeList::AT_X86ForceAlignArgPointer: 5826 handleX86ForceAlignArgPointerAttr(S, D, AL); 5827 break; 5828 case AttributeList::AT_DLLExport: 5829 case AttributeList::AT_DLLImport: 5830 handleDLLAttr(S, D, AL); 5831 break; 5832 case AttributeList::AT_Mips16: 5833 handleSimpleAttributeWithExclusions<Mips16Attr, MicroMipsAttr, 5834 MipsInterruptAttr>(S, D, AL); 5835 break; 5836 case AttributeList::AT_NoMips16: 5837 handleSimpleAttribute<NoMips16Attr>(S, D, AL); 5838 break; 5839 case AttributeList::AT_MicroMips: 5840 handleSimpleAttributeWithExclusions<MicroMipsAttr, Mips16Attr>(S, D, AL); 5841 break; 5842 case AttributeList::AT_NoMicroMips: 5843 handleSimpleAttribute<NoMicroMipsAttr>(S, D, AL); 5844 break; 5845 case AttributeList::AT_MipsLongCall: 5846 handleSimpleAttributeWithExclusions<MipsLongCallAttr, MipsShortCallAttr>( 5847 S, D, AL); 5848 break; 5849 case AttributeList::AT_MipsShortCall: 5850 handleSimpleAttributeWithExclusions<MipsShortCallAttr, MipsLongCallAttr>( 5851 S, D, AL); 5852 break; 5853 case AttributeList::AT_AMDGPUFlatWorkGroupSize: 5854 handleAMDGPUFlatWorkGroupSizeAttr(S, D, AL); 5855 break; 5856 case AttributeList::AT_AMDGPUWavesPerEU: 5857 handleAMDGPUWavesPerEUAttr(S, D, AL); 5858 break; 5859 case AttributeList::AT_AMDGPUNumSGPR: 5860 handleAMDGPUNumSGPRAttr(S, D, AL); 5861 break; 5862 case AttributeList::AT_AMDGPUNumVGPR: 5863 handleAMDGPUNumVGPRAttr(S, D, AL); 5864 break; 5865 case AttributeList::AT_AVRSignal: 5866 handleAVRSignalAttr(S, D, AL); 5867 break; 5868 case AttributeList::AT_IBAction: 5869 handleSimpleAttribute<IBActionAttr>(S, D, AL); 5870 break; 5871 case AttributeList::AT_IBOutlet: 5872 handleIBOutlet(S, D, AL); 5873 break; 5874 case AttributeList::AT_IBOutletCollection: 5875 handleIBOutletCollection(S, D, AL); 5876 break; 5877 case AttributeList::AT_IFunc: 5878 handleIFuncAttr(S, D, AL); 5879 break; 5880 case AttributeList::AT_Alias: 5881 handleAliasAttr(S, D, AL); 5882 break; 5883 case AttributeList::AT_Aligned: 5884 handleAlignedAttr(S, D, AL); 5885 break; 5886 case AttributeList::AT_AlignValue: 5887 handleAlignValueAttr(S, D, AL); 5888 break; 5889 case AttributeList::AT_AllocSize: 5890 handleAllocSizeAttr(S, D, AL); 5891 break; 5892 case AttributeList::AT_AlwaysInline: 5893 handleAlwaysInlineAttr(S, D, AL); 5894 break; 5895 case AttributeList::AT_Artificial: 5896 handleSimpleAttribute<ArtificialAttr>(S, D, AL); 5897 break; 5898 case AttributeList::AT_AnalyzerNoReturn: 5899 handleAnalyzerNoReturnAttr(S, D, AL); 5900 break; 5901 case AttributeList::AT_TLSModel: 5902 handleTLSModelAttr(S, D, AL); 5903 break; 5904 case AttributeList::AT_Annotate: 5905 handleAnnotateAttr(S, D, AL); 5906 break; 5907 case AttributeList::AT_Availability: 5908 handleAvailabilityAttr(S, D, AL); 5909 break; 5910 case AttributeList::AT_CarriesDependency: 5911 handleDependencyAttr(S, scope, D, AL); 5912 break; 5913 case AttributeList::AT_Common: 5914 handleCommonAttr(S, D, AL); 5915 break; 5916 case AttributeList::AT_CUDAConstant: 5917 handleConstantAttr(S, D, AL); 5918 break; 5919 case AttributeList::AT_PassObjectSize: 5920 handlePassObjectSizeAttr(S, D, AL); 5921 break; 5922 case AttributeList::AT_Constructor: 5923 handleConstructorAttr(S, D, AL); 5924 break; 5925 case AttributeList::AT_CXX11NoReturn: 5926 handleSimpleAttribute<CXX11NoReturnAttr>(S, D, AL); 5927 break; 5928 case AttributeList::AT_Deprecated: 5929 handleDeprecatedAttr(S, D, AL); 5930 break; 5931 case AttributeList::AT_Destructor: 5932 handleDestructorAttr(S, D, AL); 5933 break; 5934 case AttributeList::AT_EnableIf: 5935 handleEnableIfAttr(S, D, AL); 5936 break; 5937 case AttributeList::AT_DiagnoseIf: 5938 handleDiagnoseIfAttr(S, D, AL); 5939 break; 5940 case AttributeList::AT_ExtVectorType: 5941 handleExtVectorTypeAttr(S, D, AL); 5942 break; 5943 case AttributeList::AT_ExternalSourceSymbol: 5944 handleExternalSourceSymbolAttr(S, D, AL); 5945 break; 5946 case AttributeList::AT_MinSize: 5947 handleMinSizeAttr(S, D, AL); 5948 break; 5949 case AttributeList::AT_OptimizeNone: 5950 handleOptimizeNoneAttr(S, D, AL); 5951 break; 5952 case AttributeList::AT_FlagEnum: 5953 handleSimpleAttribute<FlagEnumAttr>(S, D, AL); 5954 break; 5955 case AttributeList::AT_EnumExtensibility: 5956 handleEnumExtensibilityAttr(S, D, AL); 5957 break; 5958 case AttributeList::AT_Flatten: 5959 handleSimpleAttribute<FlattenAttr>(S, D, AL); 5960 break; 5961 case AttributeList::AT_Format: 5962 handleFormatAttr(S, D, AL); 5963 break; 5964 case AttributeList::AT_FormatArg: 5965 handleFormatArgAttr(S, D, AL); 5966 break; 5967 case AttributeList::AT_CUDAGlobal: 5968 handleGlobalAttr(S, D, AL); 5969 break; 5970 case AttributeList::AT_CUDADevice: 5971 handleSimpleAttributeWithExclusions<CUDADeviceAttr, CUDAGlobalAttr>(S, D, 5972 AL); 5973 break; 5974 case AttributeList::AT_CUDAHost: 5975 handleSimpleAttributeWithExclusions<CUDAHostAttr, CUDAGlobalAttr>(S, D, 5976 AL); 5977 break; 5978 case AttributeList::AT_GNUInline: 5979 handleGNUInlineAttr(S, D, AL); 5980 break; 5981 case AttributeList::AT_CUDALaunchBounds: 5982 handleLaunchBoundsAttr(S, D, AL); 5983 break; 5984 case AttributeList::AT_Restrict: 5985 handleRestrictAttr(S, D, AL); 5986 break; 5987 case AttributeList::AT_MayAlias: 5988 handleSimpleAttribute<MayAliasAttr>(S, D, AL); 5989 break; 5990 case AttributeList::AT_Mode: 5991 handleModeAttr(S, D, AL); 5992 break; 5993 case AttributeList::AT_NoAlias: 5994 handleSimpleAttribute<NoAliasAttr>(S, D, AL); 5995 break; 5996 case AttributeList::AT_NoCommon: 5997 handleSimpleAttribute<NoCommonAttr>(S, D, AL); 5998 break; 5999 case AttributeList::AT_NoSplitStack: 6000 handleSimpleAttribute<NoSplitStackAttr>(S, D, AL); 6001 break; 6002 case AttributeList::AT_NonNull: 6003 if (auto *PVD = dyn_cast<ParmVarDecl>(D)) 6004 handleNonNullAttrParameter(S, PVD, AL); 6005 else 6006 handleNonNullAttr(S, D, AL); 6007 break; 6008 case AttributeList::AT_ReturnsNonNull: 6009 handleReturnsNonNullAttr(S, D, AL); 6010 break; 6011 case AttributeList::AT_NoEscape: 6012 handleNoEscapeAttr(S, D, AL); 6013 break; 6014 case AttributeList::AT_AssumeAligned: 6015 handleAssumeAlignedAttr(S, D, AL); 6016 break; 6017 case AttributeList::AT_AllocAlign: 6018 handleAllocAlignAttr(S, D, AL); 6019 break; 6020 case AttributeList::AT_Overloadable: 6021 handleSimpleAttribute<OverloadableAttr>(S, D, AL); 6022 break; 6023 case AttributeList::AT_Ownership: 6024 handleOwnershipAttr(S, D, AL); 6025 break; 6026 case AttributeList::AT_Cold: 6027 handleSimpleAttributeWithExclusions<ColdAttr, HotAttr>(S, D, AL); 6028 break; 6029 case AttributeList::AT_Hot: 6030 handleSimpleAttributeWithExclusions<HotAttr, ColdAttr>(S, D, AL); 6031 break; 6032 case AttributeList::AT_Naked: 6033 handleNakedAttr(S, D, AL); 6034 break; 6035 case AttributeList::AT_NoReturn: 6036 handleNoReturnAttr(S, D, AL); 6037 break; 6038 case AttributeList::AT_AnyX86NoCfCheck: 6039 handleNoCfCheckAttr(S, D, AL); 6040 break; 6041 case AttributeList::AT_NoThrow: 6042 handleSimpleAttribute<NoThrowAttr>(S, D, AL); 6043 break; 6044 case AttributeList::AT_CUDAShared: 6045 handleSharedAttr(S, D, AL); 6046 break; 6047 case AttributeList::AT_VecReturn: 6048 handleVecReturnAttr(S, D, AL); 6049 break; 6050 case AttributeList::AT_ObjCOwnership: 6051 handleObjCOwnershipAttr(S, D, AL); 6052 break; 6053 case AttributeList::AT_ObjCPreciseLifetime: 6054 handleObjCPreciseLifetimeAttr(S, D, AL); 6055 break; 6056 case AttributeList::AT_ObjCReturnsInnerPointer: 6057 handleObjCReturnsInnerPointerAttr(S, D, AL); 6058 break; 6059 case AttributeList::AT_ObjCRequiresSuper: 6060 handleObjCRequiresSuperAttr(S, D, AL); 6061 break; 6062 case AttributeList::AT_ObjCBridge: 6063 handleObjCBridgeAttr(S, D, AL); 6064 break; 6065 case AttributeList::AT_ObjCBridgeMutable: 6066 handleObjCBridgeMutableAttr(S, D, AL); 6067 break; 6068 case AttributeList::AT_ObjCBridgeRelated: 6069 handleObjCBridgeRelatedAttr(S, D, AL); 6070 break; 6071 case AttributeList::AT_ObjCDesignatedInitializer: 6072 handleObjCDesignatedInitializer(S, D, AL); 6073 break; 6074 case AttributeList::AT_ObjCRuntimeName: 6075 handleObjCRuntimeName(S, D, AL); 6076 break; 6077 case AttributeList::AT_ObjCRuntimeVisible: 6078 handleSimpleAttribute<ObjCRuntimeVisibleAttr>(S, D, AL); 6079 break; 6080 case AttributeList::AT_ObjCBoxable: 6081 handleObjCBoxable(S, D, AL); 6082 break; 6083 case AttributeList::AT_CFAuditedTransfer: 6084 handleSimpleAttributeWithExclusions<CFAuditedTransferAttr, 6085 CFUnknownTransferAttr>(S, D, AL); 6086 break; 6087 case AttributeList::AT_CFUnknownTransfer: 6088 handleSimpleAttributeWithExclusions<CFUnknownTransferAttr, 6089 CFAuditedTransferAttr>(S, D, AL); 6090 break; 6091 case AttributeList::AT_CFConsumed: 6092 case AttributeList::AT_NSConsumed: 6093 handleNSConsumedAttr(S, D, AL); 6094 break; 6095 case AttributeList::AT_NSConsumesSelf: 6096 handleSimpleAttribute<NSConsumesSelfAttr>(S, D, AL); 6097 break; 6098 case AttributeList::AT_NSReturnsAutoreleased: 6099 case AttributeList::AT_NSReturnsNotRetained: 6100 case AttributeList::AT_CFReturnsNotRetained: 6101 case AttributeList::AT_NSReturnsRetained: 6102 case AttributeList::AT_CFReturnsRetained: 6103 handleNSReturnsRetainedAttr(S, D, AL); 6104 break; 6105 case AttributeList::AT_WorkGroupSizeHint: 6106 handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, AL); 6107 break; 6108 case AttributeList::AT_ReqdWorkGroupSize: 6109 handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, AL); 6110 break; 6111 case AttributeList::AT_OpenCLIntelReqdSubGroupSize: 6112 handleSubGroupSize(S, D, AL); 6113 break; 6114 case AttributeList::AT_VecTypeHint: 6115 handleVecTypeHint(S, D, AL); 6116 break; 6117 case AttributeList::AT_RequireConstantInit: 6118 handleSimpleAttribute<RequireConstantInitAttr>(S, D, AL); 6119 break; 6120 case AttributeList::AT_InitPriority: 6121 handleInitPriorityAttr(S, D, AL); 6122 break; 6123 case AttributeList::AT_Packed: 6124 handlePackedAttr(S, D, AL); 6125 break; 6126 case AttributeList::AT_Section: 6127 handleSectionAttr(S, D, AL); 6128 break; 6129 case AttributeList::AT_Target: 6130 handleTargetAttr(S, D, AL); 6131 break; 6132 case AttributeList::AT_Unavailable: 6133 handleAttrWithMessage<UnavailableAttr>(S, D, AL); 6134 break; 6135 case AttributeList::AT_ArcWeakrefUnavailable: 6136 handleSimpleAttribute<ArcWeakrefUnavailableAttr>(S, D, AL); 6137 break; 6138 case AttributeList::AT_ObjCRootClass: 6139 handleSimpleAttribute<ObjCRootClassAttr>(S, D, AL); 6140 break; 6141 case AttributeList::AT_ObjCSubclassingRestricted: 6142 handleSimpleAttribute<ObjCSubclassingRestrictedAttr>(S, D, AL); 6143 break; 6144 case AttributeList::AT_ObjCExplicitProtocolImpl: 6145 handleObjCSuppresProtocolAttr(S, D, AL); 6146 break; 6147 case AttributeList::AT_ObjCRequiresPropertyDefs: 6148 handleSimpleAttribute<ObjCRequiresPropertyDefsAttr>(S, D, AL); 6149 break; 6150 case AttributeList::AT_Unused: 6151 handleUnusedAttr(S, D, AL); 6152 break; 6153 case AttributeList::AT_ReturnsTwice: 6154 handleSimpleAttribute<ReturnsTwiceAttr>(S, D, AL); 6155 break; 6156 case AttributeList::AT_NotTailCalled: 6157 handleSimpleAttributeWithExclusions<NotTailCalledAttr, 6158 AlwaysInlineAttr>(S, D, AL); 6159 break; 6160 case AttributeList::AT_DisableTailCalls: 6161 handleSimpleAttributeWithExclusions<DisableTailCallsAttr, 6162 NakedAttr>(S, D, AL); 6163 break; 6164 case AttributeList::AT_Used: 6165 handleSimpleAttribute<UsedAttr>(S, D, AL); 6166 break; 6167 case AttributeList::AT_Visibility: 6168 handleVisibilityAttr(S, D, AL, false); 6169 break; 6170 case AttributeList::AT_TypeVisibility: 6171 handleVisibilityAttr(S, D, AL, true); 6172 break; 6173 case AttributeList::AT_WarnUnused: 6174 handleSimpleAttribute<WarnUnusedAttr>(S, D, AL); 6175 break; 6176 case AttributeList::AT_WarnUnusedResult: 6177 handleWarnUnusedResult(S, D, AL); 6178 break; 6179 case AttributeList::AT_Weak: 6180 handleSimpleAttribute<WeakAttr>(S, D, AL); 6181 break; 6182 case AttributeList::AT_WeakRef: 6183 handleWeakRefAttr(S, D, AL); 6184 break; 6185 case AttributeList::AT_WeakImport: 6186 handleWeakImportAttr(S, D, AL); 6187 break; 6188 case AttributeList::AT_TransparentUnion: 6189 handleTransparentUnionAttr(S, D, AL); 6190 break; 6191 case AttributeList::AT_ObjCException: 6192 handleSimpleAttribute<ObjCExceptionAttr>(S, D, AL); 6193 break; 6194 case AttributeList::AT_ObjCMethodFamily: 6195 handleObjCMethodFamilyAttr(S, D, AL); 6196 break; 6197 case AttributeList::AT_ObjCNSObject: 6198 handleObjCNSObject(S, D, AL); 6199 break; 6200 case AttributeList::AT_ObjCIndependentClass: 6201 handleObjCIndependentClass(S, D, AL); 6202 break; 6203 case AttributeList::AT_Blocks: 6204 handleBlocksAttr(S, D, AL); 6205 break; 6206 case AttributeList::AT_Sentinel: 6207 handleSentinelAttr(S, D, AL); 6208 break; 6209 case AttributeList::AT_Const: 6210 handleSimpleAttribute<ConstAttr>(S, D, AL); 6211 break; 6212 case AttributeList::AT_Pure: 6213 handleSimpleAttribute<PureAttr>(S, D, AL); 6214 break; 6215 case AttributeList::AT_Cleanup: 6216 handleCleanupAttr(S, D, AL); 6217 break; 6218 case AttributeList::AT_NoDebug: 6219 handleNoDebugAttr(S, D, AL); 6220 break; 6221 case AttributeList::AT_NoDuplicate: 6222 handleSimpleAttribute<NoDuplicateAttr>(S, D, AL); 6223 break; 6224 case AttributeList::AT_Convergent: 6225 handleSimpleAttribute<ConvergentAttr>(S, D, AL); 6226 break; 6227 case AttributeList::AT_NoInline: 6228 handleSimpleAttribute<NoInlineAttr>(S, D, AL); 6229 break; 6230 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg. 6231 handleSimpleAttribute<NoInstrumentFunctionAttr>(S, D, AL); 6232 break; 6233 case AttributeList::AT_NoStackProtector: 6234 // Interacts with -fstack-protector options. 6235 handleSimpleAttribute<NoStackProtectorAttr>(S, D, AL); 6236 break; 6237 case AttributeList::AT_StdCall: 6238 case AttributeList::AT_CDecl: 6239 case AttributeList::AT_FastCall: 6240 case AttributeList::AT_ThisCall: 6241 case AttributeList::AT_Pascal: 6242 case AttributeList::AT_RegCall: 6243 case AttributeList::AT_SwiftCall: 6244 case AttributeList::AT_VectorCall: 6245 case AttributeList::AT_MSABI: 6246 case AttributeList::AT_SysVABI: 6247 case AttributeList::AT_Pcs: 6248 case AttributeList::AT_IntelOclBicc: 6249 case AttributeList::AT_PreserveMost: 6250 case AttributeList::AT_PreserveAll: 6251 handleCallConvAttr(S, D, AL); 6252 break; 6253 case AttributeList::AT_Suppress: 6254 handleSuppressAttr(S, D, AL); 6255 break; 6256 case AttributeList::AT_OpenCLKernel: 6257 handleSimpleAttribute<OpenCLKernelAttr>(S, D, AL); 6258 break; 6259 case AttributeList::AT_OpenCLAccess: 6260 handleOpenCLAccessAttr(S, D, AL); 6261 break; 6262 case AttributeList::AT_OpenCLNoSVM: 6263 handleOpenCLNoSVMAttr(S, D, AL); 6264 break; 6265 case AttributeList::AT_SwiftContext: 6266 handleParameterABIAttr(S, D, AL, ParameterABI::SwiftContext); 6267 break; 6268 case AttributeList::AT_SwiftErrorResult: 6269 handleParameterABIAttr(S, D, AL, ParameterABI::SwiftErrorResult); 6270 break; 6271 case AttributeList::AT_SwiftIndirectResult: 6272 handleParameterABIAttr(S, D, AL, ParameterABI::SwiftIndirectResult); 6273 break; 6274 case AttributeList::AT_InternalLinkage: 6275 handleInternalLinkageAttr(S, D, AL); 6276 break; 6277 case AttributeList::AT_LTOVisibilityPublic: 6278 handleSimpleAttribute<LTOVisibilityPublicAttr>(S, D, AL); 6279 break; 6280 6281 // Microsoft attributes: 6282 case AttributeList::AT_EmptyBases: 6283 handleSimpleAttribute<EmptyBasesAttr>(S, D, AL); 6284 break; 6285 case AttributeList::AT_LayoutVersion: 6286 handleLayoutVersion(S, D, AL); 6287 break; 6288 case AttributeList::AT_TrivialABI: 6289 handleSimpleAttribute<TrivialABIAttr>(S, D, AL); 6290 break; 6291 case AttributeList::AT_MSNoVTable: 6292 handleSimpleAttribute<MSNoVTableAttr>(S, D, AL); 6293 break; 6294 case AttributeList::AT_MSStruct: 6295 handleSimpleAttribute<MSStructAttr>(S, D, AL); 6296 break; 6297 case AttributeList::AT_Uuid: 6298 handleUuidAttr(S, D, AL); 6299 break; 6300 case AttributeList::AT_MSInheritance: 6301 handleMSInheritanceAttr(S, D, AL); 6302 break; 6303 case AttributeList::AT_SelectAny: 6304 handleSimpleAttribute<SelectAnyAttr>(S, D, AL); 6305 break; 6306 case AttributeList::AT_Thread: 6307 handleDeclspecThreadAttr(S, D, AL); 6308 break; 6309 6310 case AttributeList::AT_AbiTag: 6311 handleAbiTagAttr(S, D, AL); 6312 break; 6313 6314 // Thread safety attributes: 6315 case AttributeList::AT_AssertExclusiveLock: 6316 handleAssertExclusiveLockAttr(S, D, AL); 6317 break; 6318 case AttributeList::AT_AssertSharedLock: 6319 handleAssertSharedLockAttr(S, D, AL); 6320 break; 6321 case AttributeList::AT_GuardedVar: 6322 handleSimpleAttribute<GuardedVarAttr>(S, D, AL); 6323 break; 6324 case AttributeList::AT_PtGuardedVar: 6325 handlePtGuardedVarAttr(S, D, AL); 6326 break; 6327 case AttributeList::AT_ScopedLockable: 6328 handleSimpleAttribute<ScopedLockableAttr>(S, D, AL); 6329 break; 6330 case AttributeList::AT_NoSanitize: 6331 handleNoSanitizeAttr(S, D, AL); 6332 break; 6333 case AttributeList::AT_NoSanitizeSpecific: 6334 handleNoSanitizeSpecificAttr(S, D, AL); 6335 break; 6336 case AttributeList::AT_NoThreadSafetyAnalysis: 6337 handleSimpleAttribute<NoThreadSafetyAnalysisAttr>(S, D, AL); 6338 break; 6339 case AttributeList::AT_GuardedBy: 6340 handleGuardedByAttr(S, D, AL); 6341 break; 6342 case AttributeList::AT_PtGuardedBy: 6343 handlePtGuardedByAttr(S, D, AL); 6344 break; 6345 case AttributeList::AT_ExclusiveTrylockFunction: 6346 handleExclusiveTrylockFunctionAttr(S, D, AL); 6347 break; 6348 case AttributeList::AT_LockReturned: 6349 handleLockReturnedAttr(S, D, AL); 6350 break; 6351 case AttributeList::AT_LocksExcluded: 6352 handleLocksExcludedAttr(S, D, AL); 6353 break; 6354 case AttributeList::AT_SharedTrylockFunction: 6355 handleSharedTrylockFunctionAttr(S, D, AL); 6356 break; 6357 case AttributeList::AT_AcquiredBefore: 6358 handleAcquiredBeforeAttr(S, D, AL); 6359 break; 6360 case AttributeList::AT_AcquiredAfter: 6361 handleAcquiredAfterAttr(S, D, AL); 6362 break; 6363 6364 // Capability analysis attributes. 6365 case AttributeList::AT_Capability: 6366 case AttributeList::AT_Lockable: 6367 handleCapabilityAttr(S, D, AL); 6368 break; 6369 case AttributeList::AT_RequiresCapability: 6370 handleRequiresCapabilityAttr(S, D, AL); 6371 break; 6372 6373 case AttributeList::AT_AssertCapability: 6374 handleAssertCapabilityAttr(S, D, AL); 6375 break; 6376 case AttributeList::AT_AcquireCapability: 6377 handleAcquireCapabilityAttr(S, D, AL); 6378 break; 6379 case AttributeList::AT_ReleaseCapability: 6380 handleReleaseCapabilityAttr(S, D, AL); 6381 break; 6382 case AttributeList::AT_TryAcquireCapability: 6383 handleTryAcquireCapabilityAttr(S, D, AL); 6384 break; 6385 6386 // Consumed analysis attributes. 6387 case AttributeList::AT_Consumable: 6388 handleConsumableAttr(S, D, AL); 6389 break; 6390 case AttributeList::AT_ConsumableAutoCast: 6391 handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, AL); 6392 break; 6393 case AttributeList::AT_ConsumableSetOnRead: 6394 handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, AL); 6395 break; 6396 case AttributeList::AT_CallableWhen: 6397 handleCallableWhenAttr(S, D, AL); 6398 break; 6399 case AttributeList::AT_ParamTypestate: 6400 handleParamTypestateAttr(S, D, AL); 6401 break; 6402 case AttributeList::AT_ReturnTypestate: 6403 handleReturnTypestateAttr(S, D, AL); 6404 break; 6405 case AttributeList::AT_SetTypestate: 6406 handleSetTypestateAttr(S, D, AL); 6407 break; 6408 case AttributeList::AT_TestTypestate: 6409 handleTestTypestateAttr(S, D, AL); 6410 break; 6411 6412 // Type safety attributes. 6413 case AttributeList::AT_ArgumentWithTypeTag: 6414 handleArgumentWithTypeTagAttr(S, D, AL); 6415 break; 6416 case AttributeList::AT_TypeTagForDatatype: 6417 handleTypeTagForDatatypeAttr(S, D, AL); 6418 break; 6419 case AttributeList::AT_AnyX86NoCallerSavedRegisters: 6420 handleSimpleAttribute<AnyX86NoCallerSavedRegistersAttr>(S, D, AL); 6421 break; 6422 case AttributeList::AT_RenderScriptKernel: 6423 handleSimpleAttribute<RenderScriptKernelAttr>(S, D, AL); 6424 break; 6425 // XRay attributes. 6426 case AttributeList::AT_XRayInstrument: 6427 handleSimpleAttribute<XRayInstrumentAttr>(S, D, AL); 6428 break; 6429 case AttributeList::AT_XRayLogArgs: 6430 handleXRayLogArgsAttr(S, D, AL); 6431 break; 6432 } 6433 } 6434 6435 /// ProcessDeclAttributeList - Apply all the decl attributes in the specified 6436 /// attribute list to the specified decl, ignoring any type attributes. 6437 void Sema::ProcessDeclAttributeList(Scope *S, Decl *D, 6438 const AttributeList *AttrList, 6439 bool IncludeCXX11Attributes) { 6440 for (const AttributeList* l = AttrList; l; l = l->getNext()) 6441 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes); 6442 6443 // FIXME: We should be able to handle these cases in TableGen. 6444 // GCC accepts 6445 // static int a9 __attribute__((weakref)); 6446 // but that looks really pointless. We reject it. 6447 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) { 6448 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) 6449 << cast<NamedDecl>(D); 6450 D->dropAttr<WeakRefAttr>(); 6451 return; 6452 } 6453 6454 // FIXME: We should be able to handle this in TableGen as well. It would be 6455 // good to have a way to specify "these attributes must appear as a group", 6456 // for these. Additionally, it would be good to have a way to specify "these 6457 // attribute must never appear as a group" for attributes like cold and hot. 6458 if (!D->hasAttr<OpenCLKernelAttr>()) { 6459 // These attributes cannot be applied to a non-kernel function. 6460 if (const auto *A = D->getAttr<ReqdWorkGroupSizeAttr>()) { 6461 // FIXME: This emits a different error message than 6462 // diag::err_attribute_wrong_decl_type + ExpectedKernelFunction. 6463 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A; 6464 D->setInvalidDecl(); 6465 } else if (const auto *A = D->getAttr<WorkGroupSizeHintAttr>()) { 6466 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A; 6467 D->setInvalidDecl(); 6468 } else if (const auto *A = D->getAttr<VecTypeHintAttr>()) { 6469 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A; 6470 D->setInvalidDecl(); 6471 } else if (const auto *A = D->getAttr<AMDGPUFlatWorkGroupSizeAttr>()) { 6472 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type) 6473 << A << ExpectedKernelFunction; 6474 D->setInvalidDecl(); 6475 } else if (const auto *A = D->getAttr<AMDGPUWavesPerEUAttr>()) { 6476 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type) 6477 << A << ExpectedKernelFunction; 6478 D->setInvalidDecl(); 6479 } else if (const auto *A = D->getAttr<AMDGPUNumSGPRAttr>()) { 6480 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type) 6481 << A << ExpectedKernelFunction; 6482 D->setInvalidDecl(); 6483 } else if (const auto *A = D->getAttr<AMDGPUNumVGPRAttr>()) { 6484 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type) 6485 << A << ExpectedKernelFunction; 6486 D->setInvalidDecl(); 6487 } else if (const auto *A = D->getAttr<OpenCLIntelReqdSubGroupSizeAttr>()) { 6488 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A; 6489 D->setInvalidDecl(); 6490 } 6491 } 6492 } 6493 6494 // Helper for delayed processing TransparentUnion attribute. 6495 void Sema::ProcessDeclAttributeDelayed(Decl *D, const AttributeList *AttrList) { 6496 for (const AttributeList *AL = AttrList; AL; AL = AL->getNext()) 6497 if (AL->getKind() == AttributeList::AT_TransparentUnion) { 6498 handleTransparentUnionAttr(*this, D, *AL); 6499 break; 6500 } 6501 } 6502 6503 // Annotation attributes are the only attributes allowed after an access 6504 // specifier. 6505 bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl, 6506 const AttributeList *AttrList) { 6507 for (const AttributeList* l = AttrList; l; l = l->getNext()) { 6508 if (l->getKind() == AttributeList::AT_Annotate) { 6509 ProcessDeclAttribute(*this, nullptr, ASDecl, *l, l->isCXX11Attribute()); 6510 } else { 6511 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec); 6512 return true; 6513 } 6514 } 6515 6516 return false; 6517 } 6518 6519 /// checkUnusedDeclAttributes - Check a list of attributes to see if it 6520 /// contains any decl attributes that we should warn about. 6521 static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) { 6522 for ( ; A; A = A->getNext()) { 6523 // Only warn if the attribute is an unignored, non-type attribute. 6524 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue; 6525 if (A->getKind() == AttributeList::IgnoredAttribute) continue; 6526 6527 if (A->getKind() == AttributeList::UnknownAttribute) { 6528 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored) 6529 << A->getName() << A->getRange(); 6530 } else { 6531 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl) 6532 << A->getName() << A->getRange(); 6533 } 6534 } 6535 } 6536 6537 /// checkUnusedDeclAttributes - Given a declarator which is not being 6538 /// used to build a declaration, complain about any decl attributes 6539 /// which might be lying around on it. 6540 void Sema::checkUnusedDeclAttributes(Declarator &D) { 6541 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList()); 6542 ::checkUnusedDeclAttributes(*this, D.getAttributes()); 6543 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) 6544 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs()); 6545 } 6546 6547 /// DeclClonePragmaWeak - clone existing decl (maybe definition), 6548 /// \#pragma weak needs a non-definition decl and source may not have one. 6549 NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II, 6550 SourceLocation Loc) { 6551 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND)); 6552 NamedDecl *NewD = nullptr; 6553 if (auto *FD = dyn_cast<FunctionDecl>(ND)) { 6554 FunctionDecl *NewFD; 6555 // FIXME: Missing call to CheckFunctionDeclaration(). 6556 // FIXME: Mangling? 6557 // FIXME: Is the qualifier info correct? 6558 // FIXME: Is the DeclContext correct? 6559 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(), 6560 Loc, Loc, DeclarationName(II), 6561 FD->getType(), FD->getTypeSourceInfo(), 6562 SC_None, false/*isInlineSpecified*/, 6563 FD->hasPrototype(), 6564 false/*isConstexprSpecified*/); 6565 NewD = NewFD; 6566 6567 if (FD->getQualifier()) 6568 NewFD->setQualifierInfo(FD->getQualifierLoc()); 6569 6570 // Fake up parameter variables; they are declared as if this were 6571 // a typedef. 6572 QualType FDTy = FD->getType(); 6573 if (const auto *FT = FDTy->getAs<FunctionProtoType>()) { 6574 SmallVector<ParmVarDecl*, 16> Params; 6575 for (const auto &AI : FT->param_types()) { 6576 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, AI); 6577 Param->setScopeInfo(0, Params.size()); 6578 Params.push_back(Param); 6579 } 6580 NewFD->setParams(Params); 6581 } 6582 } else if (auto *VD = dyn_cast<VarDecl>(ND)) { 6583 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(), 6584 VD->getInnerLocStart(), VD->getLocation(), II, 6585 VD->getType(), VD->getTypeSourceInfo(), 6586 VD->getStorageClass()); 6587 if (VD->getQualifier()) 6588 cast<VarDecl>(NewD)->setQualifierInfo(VD->getQualifierLoc()); 6589 } 6590 return NewD; 6591 } 6592 6593 /// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak 6594 /// applied to it, possibly with an alias. 6595 void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) { 6596 if (W.getUsed()) return; // only do this once 6597 W.setUsed(true); 6598 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...)) 6599 IdentifierInfo *NDId = ND->getIdentifier(); 6600 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation()); 6601 NewD->addAttr(AliasAttr::CreateImplicit(Context, NDId->getName(), 6602 W.getLocation())); 6603 NewD->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation())); 6604 WeakTopLevelDecl.push_back(NewD); 6605 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin 6606 // to insert Decl at TU scope, sorry. 6607 DeclContext *SavedContext = CurContext; 6608 CurContext = Context.getTranslationUnitDecl(); 6609 NewD->setDeclContext(CurContext); 6610 NewD->setLexicalDeclContext(CurContext); 6611 PushOnScopeChains(NewD, S); 6612 CurContext = SavedContext; 6613 } else { // just add weak to existing 6614 ND->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation())); 6615 } 6616 } 6617 6618 void Sema::ProcessPragmaWeak(Scope *S, Decl *D) { 6619 // It's valid to "forward-declare" #pragma weak, in which case we 6620 // have to do this. 6621 LoadExternalWeakUndeclaredIdentifiers(); 6622 if (!WeakUndeclaredIdentifiers.empty()) { 6623 NamedDecl *ND = nullptr; 6624 if (auto *VD = dyn_cast<VarDecl>(D)) 6625 if (VD->isExternC()) 6626 ND = VD; 6627 if (auto *FD = dyn_cast<FunctionDecl>(D)) 6628 if (FD->isExternC()) 6629 ND = FD; 6630 if (ND) { 6631 if (IdentifierInfo *Id = ND->getIdentifier()) { 6632 auto I = WeakUndeclaredIdentifiers.find(Id); 6633 if (I != WeakUndeclaredIdentifiers.end()) { 6634 WeakInfo W = I->second; 6635 DeclApplyPragmaWeak(S, ND, W); 6636 WeakUndeclaredIdentifiers[Id] = W; 6637 } 6638 } 6639 } 6640 } 6641 } 6642 6643 /// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in 6644 /// it, apply them to D. This is a bit tricky because PD can have attributes 6645 /// specified in many different places, and we need to find and apply them all. 6646 void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) { 6647 // Apply decl attributes from the DeclSpec if present. 6648 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList()) 6649 ProcessDeclAttributeList(S, D, Attrs); 6650 6651 // Walk the declarator structure, applying decl attributes that were in a type 6652 // position to the decl itself. This handles cases like: 6653 // int *__attr__(x)** D; 6654 // when X is a decl attribute. 6655 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i) 6656 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs()) 6657 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false); 6658 6659 // Finally, apply any attributes on the decl itself. 6660 if (const AttributeList *Attrs = PD.getAttributes()) 6661 ProcessDeclAttributeList(S, D, Attrs); 6662 6663 // Apply additional attributes specified by '#pragma clang attribute'. 6664 AddPragmaAttributes(S, D); 6665 } 6666 6667 /// Is the given declaration allowed to use a forbidden type? 6668 /// If so, it'll still be annotated with an attribute that makes it 6669 /// illegal to actually use. 6670 static bool isForbiddenTypeAllowed(Sema &S, Decl *D, 6671 const DelayedDiagnostic &diag, 6672 UnavailableAttr::ImplicitReason &reason) { 6673 // Private ivars are always okay. Unfortunately, people don't 6674 // always properly make their ivars private, even in system headers. 6675 // Plus we need to make fields okay, too. 6676 if (!isa<FieldDecl>(D) && !isa<ObjCPropertyDecl>(D) && 6677 !isa<FunctionDecl>(D)) 6678 return false; 6679 6680 // Silently accept unsupported uses of __weak in both user and system 6681 // declarations when it's been disabled, for ease of integration with 6682 // -fno-objc-arc files. We do have to take some care against attempts 6683 // to define such things; for now, we've only done that for ivars 6684 // and properties. 6685 if ((isa<ObjCIvarDecl>(D) || isa<ObjCPropertyDecl>(D))) { 6686 if (diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_disabled || 6687 diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_no_runtime) { 6688 reason = UnavailableAttr::IR_ForbiddenWeak; 6689 return true; 6690 } 6691 } 6692 6693 // Allow all sorts of things in system headers. 6694 if (S.Context.getSourceManager().isInSystemHeader(D->getLocation())) { 6695 // Currently, all the failures dealt with this way are due to ARC 6696 // restrictions. 6697 reason = UnavailableAttr::IR_ARCForbiddenType; 6698 return true; 6699 } 6700 6701 return false; 6702 } 6703 6704 /// Handle a delayed forbidden-type diagnostic. 6705 static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &DD, 6706 Decl *D) { 6707 auto Reason = UnavailableAttr::IR_None; 6708 if (D && isForbiddenTypeAllowed(S, D, DD, Reason)) { 6709 assert(Reason && "didn't set reason?"); 6710 D->addAttr(UnavailableAttr::CreateImplicit(S.Context, "", Reason, DD.Loc)); 6711 return; 6712 } 6713 if (S.getLangOpts().ObjCAutoRefCount) 6714 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 6715 // FIXME: we may want to suppress diagnostics for all 6716 // kind of forbidden type messages on unavailable functions. 6717 if (FD->hasAttr<UnavailableAttr>() && 6718 DD.getForbiddenTypeDiagnostic() == 6719 diag::err_arc_array_param_no_ownership) { 6720 DD.Triggered = true; 6721 return; 6722 } 6723 } 6724 6725 S.Diag(DD.Loc, DD.getForbiddenTypeDiagnostic()) 6726 << DD.getForbiddenTypeOperand() << DD.getForbiddenTypeArgument(); 6727 DD.Triggered = true; 6728 } 6729 6730 static const AvailabilityAttr *getAttrForPlatform(ASTContext &Context, 6731 const Decl *D) { 6732 // Check each AvailabilityAttr to find the one for this platform. 6733 for (const auto *A : D->attrs()) { 6734 if (const auto *Avail = dyn_cast<AvailabilityAttr>(A)) { 6735 // FIXME: this is copied from CheckAvailability. We should try to 6736 // de-duplicate. 6737 6738 // Check if this is an App Extension "platform", and if so chop off 6739 // the suffix for matching with the actual platform. 6740 StringRef ActualPlatform = Avail->getPlatform()->getName(); 6741 StringRef RealizedPlatform = ActualPlatform; 6742 if (Context.getLangOpts().AppExt) { 6743 size_t suffix = RealizedPlatform.rfind("_app_extension"); 6744 if (suffix != StringRef::npos) 6745 RealizedPlatform = RealizedPlatform.slice(0, suffix); 6746 } 6747 6748 StringRef TargetPlatform = Context.getTargetInfo().getPlatformName(); 6749 6750 // Match the platform name. 6751 if (RealizedPlatform == TargetPlatform) 6752 return Avail; 6753 } 6754 } 6755 return nullptr; 6756 } 6757 6758 /// The diagnostic we should emit for \c D, and the declaration that 6759 /// originated it, or \c AR_Available. 6760 /// 6761 /// \param D The declaration to check. 6762 /// \param Message If non-null, this will be populated with the message from 6763 /// the availability attribute that is selected. 6764 static std::pair<AvailabilityResult, const NamedDecl *> 6765 ShouldDiagnoseAvailabilityOfDecl(const NamedDecl *D, std::string *Message) { 6766 AvailabilityResult Result = D->getAvailability(Message); 6767 6768 // For typedefs, if the typedef declaration appears available look 6769 // to the underlying type to see if it is more restrictive. 6770 while (const auto *TD = dyn_cast<TypedefNameDecl>(D)) { 6771 if (Result == AR_Available) { 6772 if (const auto *TT = TD->getUnderlyingType()->getAs<TagType>()) { 6773 D = TT->getDecl(); 6774 Result = D->getAvailability(Message); 6775 continue; 6776 } 6777 } 6778 break; 6779 } 6780 6781 // Forward class declarations get their attributes from their definition. 6782 if (const auto *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) { 6783 if (IDecl->getDefinition()) { 6784 D = IDecl->getDefinition(); 6785 Result = D->getAvailability(Message); 6786 } 6787 } 6788 6789 if (const auto *ECD = dyn_cast<EnumConstantDecl>(D)) 6790 if (Result == AR_Available) { 6791 const DeclContext *DC = ECD->getDeclContext(); 6792 if (const auto *TheEnumDecl = dyn_cast<EnumDecl>(DC)) { 6793 Result = TheEnumDecl->getAvailability(Message); 6794 D = TheEnumDecl; 6795 } 6796 } 6797 6798 return {Result, D}; 6799 } 6800 6801 6802 /// whether we should emit a diagnostic for \c K and \c DeclVersion in 6803 /// the context of \c Ctx. For example, we should emit an unavailable diagnostic 6804 /// in a deprecated context, but not the other way around. 6805 static bool ShouldDiagnoseAvailabilityInContext(Sema &S, AvailabilityResult K, 6806 VersionTuple DeclVersion, 6807 Decl *Ctx) { 6808 assert(K != AR_Available && "Expected an unavailable declaration here!"); 6809 6810 // Checks if we should emit the availability diagnostic in the context of C. 6811 auto CheckContext = [&](const Decl *C) { 6812 if (K == AR_NotYetIntroduced) { 6813 if (const AvailabilityAttr *AA = getAttrForPlatform(S.Context, C)) 6814 if (AA->getIntroduced() >= DeclVersion) 6815 return true; 6816 } else if (K == AR_Deprecated) 6817 if (C->isDeprecated()) 6818 return true; 6819 6820 if (C->isUnavailable()) 6821 return true; 6822 return false; 6823 }; 6824 6825 do { 6826 if (CheckContext(Ctx)) 6827 return false; 6828 6829 // An implementation implicitly has the availability of the interface. 6830 // Unless it is "+load" method. 6831 if (const auto *MethodD = dyn_cast<ObjCMethodDecl>(Ctx)) 6832 if (MethodD->isClassMethod() && 6833 MethodD->getSelector().getAsString() == "load") 6834 return true; 6835 6836 if (const auto *CatOrImpl = dyn_cast<ObjCImplDecl>(Ctx)) { 6837 if (const ObjCInterfaceDecl *Interface = CatOrImpl->getClassInterface()) 6838 if (CheckContext(Interface)) 6839 return false; 6840 } 6841 // A category implicitly has the availability of the interface. 6842 else if (const auto *CatD = dyn_cast<ObjCCategoryDecl>(Ctx)) 6843 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface()) 6844 if (CheckContext(Interface)) 6845 return false; 6846 } while ((Ctx = cast_or_null<Decl>(Ctx->getDeclContext()))); 6847 6848 return true; 6849 } 6850 6851 static bool 6852 shouldDiagnoseAvailabilityByDefault(const ASTContext &Context, 6853 const VersionTuple &DeploymentVersion, 6854 const VersionTuple &DeclVersion) { 6855 const auto &Triple = Context.getTargetInfo().getTriple(); 6856 VersionTuple ForceAvailabilityFromVersion; 6857 switch (Triple.getOS()) { 6858 case llvm::Triple::IOS: 6859 case llvm::Triple::TvOS: 6860 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/11); 6861 break; 6862 case llvm::Triple::WatchOS: 6863 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/4); 6864 break; 6865 case llvm::Triple::Darwin: 6866 case llvm::Triple::MacOSX: 6867 ForceAvailabilityFromVersion = VersionTuple(/*Major=*/10, /*Minor=*/13); 6868 break; 6869 default: 6870 // New targets should always warn about availability. 6871 return Triple.getVendor() == llvm::Triple::Apple; 6872 } 6873 return DeploymentVersion >= ForceAvailabilityFromVersion || 6874 DeclVersion >= ForceAvailabilityFromVersion; 6875 } 6876 6877 static NamedDecl *findEnclosingDeclToAnnotate(Decl *OrigCtx) { 6878 for (Decl *Ctx = OrigCtx; Ctx; 6879 Ctx = cast_or_null<Decl>(Ctx->getDeclContext())) { 6880 if (isa<TagDecl>(Ctx) || isa<FunctionDecl>(Ctx) || isa<ObjCMethodDecl>(Ctx)) 6881 return cast<NamedDecl>(Ctx); 6882 if (auto *CD = dyn_cast<ObjCContainerDecl>(Ctx)) { 6883 if (auto *Imp = dyn_cast<ObjCImplDecl>(Ctx)) 6884 return Imp->getClassInterface(); 6885 return CD; 6886 } 6887 } 6888 6889 return dyn_cast<NamedDecl>(OrigCtx); 6890 } 6891 6892 namespace { 6893 6894 struct AttributeInsertion { 6895 StringRef Prefix; 6896 SourceLocation Loc; 6897 StringRef Suffix; 6898 6899 static AttributeInsertion createInsertionAfter(const NamedDecl *D) { 6900 return {" ", D->getLocEnd(), ""}; 6901 } 6902 static AttributeInsertion createInsertionAfter(SourceLocation Loc) { 6903 return {" ", Loc, ""}; 6904 } 6905 static AttributeInsertion createInsertionBefore(const NamedDecl *D) { 6906 return {"", D->getLocStart(), "\n"}; 6907 } 6908 }; 6909 6910 } // end anonymous namespace 6911 6912 /// Tries to parse a string as ObjC method name. 6913 /// 6914 /// \param Name The string to parse. Expected to originate from availability 6915 /// attribute argument. 6916 /// \param SlotNames The vector that will be populated with slot names. In case 6917 /// of unsuccessful parsing can contain invalid data. 6918 /// \returns A number of method parameters if parsing was successful, None 6919 /// otherwise. 6920 static Optional<unsigned> 6921 tryParseObjCMethodName(StringRef Name, SmallVectorImpl<StringRef> &SlotNames, 6922 const LangOptions &LangOpts) { 6923 // Accept replacements starting with - or + as valid ObjC method names. 6924 if (!Name.empty() && (Name.front() == '-' || Name.front() == '+')) 6925 Name = Name.drop_front(1); 6926 if (Name.empty()) 6927 return None; 6928 Name.split(SlotNames, ':'); 6929 unsigned NumParams; 6930 if (Name.back() == ':') { 6931 // Remove an empty string at the end that doesn't represent any slot. 6932 SlotNames.pop_back(); 6933 NumParams = SlotNames.size(); 6934 } else { 6935 if (SlotNames.size() != 1) 6936 // Not a valid method name, just a colon-separated string. 6937 return None; 6938 NumParams = 0; 6939 } 6940 // Verify all slot names are valid. 6941 bool AllowDollar = LangOpts.DollarIdents; 6942 for (StringRef S : SlotNames) { 6943 if (S.empty()) 6944 continue; 6945 if (!isValidIdentifier(S, AllowDollar)) 6946 return None; 6947 } 6948 return NumParams; 6949 } 6950 6951 /// Returns a source location in which it's appropriate to insert a new 6952 /// attribute for the given declaration \D. 6953 static Optional<AttributeInsertion> 6954 createAttributeInsertion(const NamedDecl *D, const SourceManager &SM, 6955 const LangOptions &LangOpts) { 6956 if (isa<ObjCPropertyDecl>(D)) 6957 return AttributeInsertion::createInsertionAfter(D); 6958 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) { 6959 if (MD->hasBody()) 6960 return None; 6961 return AttributeInsertion::createInsertionAfter(D); 6962 } 6963 if (const auto *TD = dyn_cast<TagDecl>(D)) { 6964 SourceLocation Loc = 6965 Lexer::getLocForEndOfToken(TD->getInnerLocStart(), 0, SM, LangOpts); 6966 if (Loc.isInvalid()) 6967 return None; 6968 // Insert after the 'struct'/whatever keyword. 6969 return AttributeInsertion::createInsertionAfter(Loc); 6970 } 6971 return AttributeInsertion::createInsertionBefore(D); 6972 } 6973 6974 /// Actually emit an availability diagnostic for a reference to an unavailable 6975 /// decl. 6976 /// 6977 /// \param Ctx The context that the reference occurred in 6978 /// \param ReferringDecl The exact declaration that was referenced. 6979 /// \param OffendingDecl A related decl to \c ReferringDecl that has an 6980 /// availability attribute corresponding to \c K attached to it. Note that this 6981 /// may not be the same as ReferringDecl, i.e. if an EnumDecl is annotated and 6982 /// we refer to a member EnumConstantDecl, ReferringDecl is the EnumConstantDecl 6983 /// and OffendingDecl is the EnumDecl. 6984 static void DoEmitAvailabilityWarning(Sema &S, AvailabilityResult K, 6985 Decl *Ctx, const NamedDecl *ReferringDecl, 6986 const NamedDecl *OffendingDecl, 6987 StringRef Message, 6988 ArrayRef<SourceLocation> Locs, 6989 const ObjCInterfaceDecl *UnknownObjCClass, 6990 const ObjCPropertyDecl *ObjCProperty, 6991 bool ObjCPropertyAccess) { 6992 // Diagnostics for deprecated or unavailable. 6993 unsigned diag, diag_message, diag_fwdclass_message; 6994 unsigned diag_available_here = diag::note_availability_specified_here; 6995 SourceLocation NoteLocation = OffendingDecl->getLocation(); 6996 6997 // Matches 'diag::note_property_attribute' options. 6998 unsigned property_note_select; 6999 7000 // Matches diag::note_availability_specified_here. 7001 unsigned available_here_select_kind; 7002 7003 VersionTuple DeclVersion; 7004 if (const AvailabilityAttr *AA = getAttrForPlatform(S.Context, OffendingDecl)) 7005 DeclVersion = AA->getIntroduced(); 7006 7007 if (!ShouldDiagnoseAvailabilityInContext(S, K, DeclVersion, Ctx)) 7008 return; 7009 7010 SourceLocation Loc = Locs.front(); 7011 7012 // The declaration can have multiple availability attributes, we are looking 7013 // at one of them. 7014 const AvailabilityAttr *A = getAttrForPlatform(S.Context, OffendingDecl); 7015 if (A && A->isInherited()) { 7016 for (const Decl *Redecl = OffendingDecl->getMostRecentDecl(); Redecl; 7017 Redecl = Redecl->getPreviousDecl()) { 7018 const AvailabilityAttr *AForRedecl = 7019 getAttrForPlatform(S.Context, Redecl); 7020 if (AForRedecl && !AForRedecl->isInherited()) { 7021 // If D is a declaration with inherited attributes, the note should 7022 // point to the declaration with actual attributes. 7023 NoteLocation = Redecl->getLocation(); 7024 break; 7025 } 7026 } 7027 } 7028 7029 switch (K) { 7030 case AR_NotYetIntroduced: { 7031 // We would like to emit the diagnostic even if -Wunguarded-availability is 7032 // not specified for deployment targets >= to iOS 11 or equivalent or 7033 // for declarations that were introduced in iOS 11 (macOS 10.13, ...) or 7034 // later. 7035 const AvailabilityAttr *AA = 7036 getAttrForPlatform(S.getASTContext(), OffendingDecl); 7037 VersionTuple Introduced = AA->getIntroduced(); 7038 7039 bool UseNewWarning = shouldDiagnoseAvailabilityByDefault( 7040 S.Context, S.Context.getTargetInfo().getPlatformMinVersion(), 7041 Introduced); 7042 unsigned Warning = UseNewWarning ? diag::warn_unguarded_availability_new 7043 : diag::warn_unguarded_availability; 7044 7045 S.Diag(Loc, Warning) 7046 << OffendingDecl 7047 << AvailabilityAttr::getPrettyPlatformName( 7048 S.getASTContext().getTargetInfo().getPlatformName()) 7049 << Introduced.getAsString(); 7050 7051 S.Diag(OffendingDecl->getLocation(), diag::note_availability_specified_here) 7052 << OffendingDecl << /* partial */ 3; 7053 7054 if (const auto *Enclosing = findEnclosingDeclToAnnotate(Ctx)) { 7055 if (const auto *TD = dyn_cast<TagDecl>(Enclosing)) 7056 if (TD->getDeclName().isEmpty()) { 7057 S.Diag(TD->getLocation(), 7058 diag::note_decl_unguarded_availability_silence) 7059 << /*Anonymous*/ 1 << TD->getKindName(); 7060 return; 7061 } 7062 auto FixitNoteDiag = 7063 S.Diag(Enclosing->getLocation(), 7064 diag::note_decl_unguarded_availability_silence) 7065 << /*Named*/ 0 << Enclosing; 7066 // Don't offer a fixit for declarations with availability attributes. 7067 if (Enclosing->hasAttr<AvailabilityAttr>()) 7068 return; 7069 if (!S.getPreprocessor().isMacroDefined("API_AVAILABLE")) 7070 return; 7071 Optional<AttributeInsertion> Insertion = createAttributeInsertion( 7072 Enclosing, S.getSourceManager(), S.getLangOpts()); 7073 if (!Insertion) 7074 return; 7075 std::string PlatformName = 7076 AvailabilityAttr::getPlatformNameSourceSpelling( 7077 S.getASTContext().getTargetInfo().getPlatformName()) 7078 .lower(); 7079 std::string Introduced = 7080 OffendingDecl->getVersionIntroduced().getAsString(); 7081 FixitNoteDiag << FixItHint::CreateInsertion( 7082 Insertion->Loc, 7083 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName + 7084 "(" + Introduced + "))" + Insertion->Suffix) 7085 .str()); 7086 } 7087 return; 7088 } 7089 case AR_Deprecated: 7090 diag = !ObjCPropertyAccess ? diag::warn_deprecated 7091 : diag::warn_property_method_deprecated; 7092 diag_message = diag::warn_deprecated_message; 7093 diag_fwdclass_message = diag::warn_deprecated_fwdclass_message; 7094 property_note_select = /* deprecated */ 0; 7095 available_here_select_kind = /* deprecated */ 2; 7096 if (const auto *AL = OffendingDecl->getAttr<DeprecatedAttr>()) 7097 NoteLocation = AL->getLocation(); 7098 break; 7099 7100 case AR_Unavailable: 7101 diag = !ObjCPropertyAccess ? diag::err_unavailable 7102 : diag::err_property_method_unavailable; 7103 diag_message = diag::err_unavailable_message; 7104 diag_fwdclass_message = diag::warn_unavailable_fwdclass_message; 7105 property_note_select = /* unavailable */ 1; 7106 available_here_select_kind = /* unavailable */ 0; 7107 7108 if (auto AL = OffendingDecl->getAttr<UnavailableAttr>()) { 7109 if (AL->isImplicit() && AL->getImplicitReason()) { 7110 // Most of these failures are due to extra restrictions in ARC; 7111 // reflect that in the primary diagnostic when applicable. 7112 auto flagARCError = [&] { 7113 if (S.getLangOpts().ObjCAutoRefCount && 7114 S.getSourceManager().isInSystemHeader( 7115 OffendingDecl->getLocation())) 7116 diag = diag::err_unavailable_in_arc; 7117 }; 7118 7119 switch (AL->getImplicitReason()) { 7120 case UnavailableAttr::IR_None: break; 7121 7122 case UnavailableAttr::IR_ARCForbiddenType: 7123 flagARCError(); 7124 diag_available_here = diag::note_arc_forbidden_type; 7125 break; 7126 7127 case UnavailableAttr::IR_ForbiddenWeak: 7128 if (S.getLangOpts().ObjCWeakRuntime) 7129 diag_available_here = diag::note_arc_weak_disabled; 7130 else 7131 diag_available_here = diag::note_arc_weak_no_runtime; 7132 break; 7133 7134 case UnavailableAttr::IR_ARCForbiddenConversion: 7135 flagARCError(); 7136 diag_available_here = diag::note_performs_forbidden_arc_conversion; 7137 break; 7138 7139 case UnavailableAttr::IR_ARCInitReturnsUnrelated: 7140 flagARCError(); 7141 diag_available_here = diag::note_arc_init_returns_unrelated; 7142 break; 7143 7144 case UnavailableAttr::IR_ARCFieldWithOwnership: 7145 flagARCError(); 7146 diag_available_here = diag::note_arc_field_with_ownership; 7147 break; 7148 } 7149 } 7150 } 7151 break; 7152 7153 case AR_Available: 7154 llvm_unreachable("Warning for availability of available declaration?"); 7155 } 7156 7157 SmallVector<FixItHint, 12> FixIts; 7158 if (K == AR_Deprecated) { 7159 StringRef Replacement; 7160 if (auto AL = OffendingDecl->getAttr<DeprecatedAttr>()) 7161 Replacement = AL->getReplacement(); 7162 if (auto AL = getAttrForPlatform(S.Context, OffendingDecl)) 7163 Replacement = AL->getReplacement(); 7164 7165 CharSourceRange UseRange; 7166 if (!Replacement.empty()) 7167 UseRange = 7168 CharSourceRange::getCharRange(Loc, S.getLocForEndOfToken(Loc)); 7169 if (UseRange.isValid()) { 7170 if (const auto *MethodDecl = dyn_cast<ObjCMethodDecl>(ReferringDecl)) { 7171 Selector Sel = MethodDecl->getSelector(); 7172 SmallVector<StringRef, 12> SelectorSlotNames; 7173 Optional<unsigned> NumParams = tryParseObjCMethodName( 7174 Replacement, SelectorSlotNames, S.getLangOpts()); 7175 if (NumParams && NumParams.getValue() == Sel.getNumArgs()) { 7176 assert(SelectorSlotNames.size() == Locs.size()); 7177 for (unsigned I = 0; I < Locs.size(); ++I) { 7178 if (!Sel.getNameForSlot(I).empty()) { 7179 CharSourceRange NameRange = CharSourceRange::getCharRange( 7180 Locs[I], S.getLocForEndOfToken(Locs[I])); 7181 FixIts.push_back(FixItHint::CreateReplacement( 7182 NameRange, SelectorSlotNames[I])); 7183 } else 7184 FixIts.push_back( 7185 FixItHint::CreateInsertion(Locs[I], SelectorSlotNames[I])); 7186 } 7187 } else 7188 FixIts.push_back(FixItHint::CreateReplacement(UseRange, Replacement)); 7189 } else 7190 FixIts.push_back(FixItHint::CreateReplacement(UseRange, Replacement)); 7191 } 7192 } 7193 7194 if (!Message.empty()) { 7195 S.Diag(Loc, diag_message) << ReferringDecl << Message << FixIts; 7196 if (ObjCProperty) 7197 S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute) 7198 << ObjCProperty->getDeclName() << property_note_select; 7199 } else if (!UnknownObjCClass) { 7200 S.Diag(Loc, diag) << ReferringDecl << FixIts; 7201 if (ObjCProperty) 7202 S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute) 7203 << ObjCProperty->getDeclName() << property_note_select; 7204 } else { 7205 S.Diag(Loc, diag_fwdclass_message) << ReferringDecl << FixIts; 7206 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class); 7207 } 7208 7209 S.Diag(NoteLocation, diag_available_here) 7210 << OffendingDecl << available_here_select_kind; 7211 } 7212 7213 static void handleDelayedAvailabilityCheck(Sema &S, DelayedDiagnostic &DD, 7214 Decl *Ctx) { 7215 assert(DD.Kind == DelayedDiagnostic::Availability && 7216 "Expected an availability diagnostic here"); 7217 7218 DD.Triggered = true; 7219 DoEmitAvailabilityWarning( 7220 S, DD.getAvailabilityResult(), Ctx, DD.getAvailabilityReferringDecl(), 7221 DD.getAvailabilityOffendingDecl(), DD.getAvailabilityMessage(), 7222 DD.getAvailabilitySelectorLocs(), DD.getUnknownObjCClass(), 7223 DD.getObjCProperty(), false); 7224 } 7225 7226 void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) { 7227 assert(DelayedDiagnostics.getCurrentPool()); 7228 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool(); 7229 DelayedDiagnostics.popWithoutEmitting(state); 7230 7231 // When delaying diagnostics to run in the context of a parsed 7232 // declaration, we only want to actually emit anything if parsing 7233 // succeeds. 7234 if (!decl) return; 7235 7236 // We emit all the active diagnostics in this pool or any of its 7237 // parents. In general, we'll get one pool for the decl spec 7238 // and a child pool for each declarator; in a decl group like: 7239 // deprecated_typedef foo, *bar, baz(); 7240 // only the declarator pops will be passed decls. This is correct; 7241 // we really do need to consider delayed diagnostics from the decl spec 7242 // for each of the different declarations. 7243 const DelayedDiagnosticPool *pool = &poppedPool; 7244 do { 7245 for (DelayedDiagnosticPool::pool_iterator 7246 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) { 7247 // This const_cast is a bit lame. Really, Triggered should be mutable. 7248 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i); 7249 if (diag.Triggered) 7250 continue; 7251 7252 switch (diag.Kind) { 7253 case DelayedDiagnostic::Availability: 7254 // Don't bother giving deprecation/unavailable diagnostics if 7255 // the decl is invalid. 7256 if (!decl->isInvalidDecl()) 7257 handleDelayedAvailabilityCheck(*this, diag, decl); 7258 break; 7259 7260 case DelayedDiagnostic::Access: 7261 HandleDelayedAccessCheck(diag, decl); 7262 break; 7263 7264 case DelayedDiagnostic::ForbiddenType: 7265 handleDelayedForbiddenType(*this, diag, decl); 7266 break; 7267 } 7268 } 7269 } while ((pool = pool->getParent())); 7270 } 7271 7272 /// Given a set of delayed diagnostics, re-emit them as if they had 7273 /// been delayed in the current context instead of in the given pool. 7274 /// Essentially, this just moves them to the current pool. 7275 void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) { 7276 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool(); 7277 assert(curPool && "re-emitting in undelayed context not supported"); 7278 curPool->steal(pool); 7279 } 7280 7281 static void EmitAvailabilityWarning(Sema &S, AvailabilityResult AR, 7282 const NamedDecl *ReferringDecl, 7283 const NamedDecl *OffendingDecl, 7284 StringRef Message, 7285 ArrayRef<SourceLocation> Locs, 7286 const ObjCInterfaceDecl *UnknownObjCClass, 7287 const ObjCPropertyDecl *ObjCProperty, 7288 bool ObjCPropertyAccess) { 7289 // Delay if we're currently parsing a declaration. 7290 if (S.DelayedDiagnostics.shouldDelayDiagnostics()) { 7291 S.DelayedDiagnostics.add( 7292 DelayedDiagnostic::makeAvailability( 7293 AR, Locs, ReferringDecl, OffendingDecl, UnknownObjCClass, 7294 ObjCProperty, Message, ObjCPropertyAccess)); 7295 return; 7296 } 7297 7298 Decl *Ctx = cast<Decl>(S.getCurLexicalContext()); 7299 DoEmitAvailabilityWarning(S, AR, Ctx, ReferringDecl, OffendingDecl, 7300 Message, Locs, UnknownObjCClass, ObjCProperty, 7301 ObjCPropertyAccess); 7302 } 7303 7304 namespace { 7305 7306 /// Returns true if the given statement can be a body-like child of \p Parent. 7307 bool isBodyLikeChildStmt(const Stmt *S, const Stmt *Parent) { 7308 switch (Parent->getStmtClass()) { 7309 case Stmt::IfStmtClass: 7310 return cast<IfStmt>(Parent)->getThen() == S || 7311 cast<IfStmt>(Parent)->getElse() == S; 7312 case Stmt::WhileStmtClass: 7313 return cast<WhileStmt>(Parent)->getBody() == S; 7314 case Stmt::DoStmtClass: 7315 return cast<DoStmt>(Parent)->getBody() == S; 7316 case Stmt::ForStmtClass: 7317 return cast<ForStmt>(Parent)->getBody() == S; 7318 case Stmt::CXXForRangeStmtClass: 7319 return cast<CXXForRangeStmt>(Parent)->getBody() == S; 7320 case Stmt::ObjCForCollectionStmtClass: 7321 return cast<ObjCForCollectionStmt>(Parent)->getBody() == S; 7322 case Stmt::CaseStmtClass: 7323 case Stmt::DefaultStmtClass: 7324 return cast<SwitchCase>(Parent)->getSubStmt() == S; 7325 default: 7326 return false; 7327 } 7328 } 7329 7330 class StmtUSEFinder : public RecursiveASTVisitor<StmtUSEFinder> { 7331 const Stmt *Target; 7332 7333 public: 7334 bool VisitStmt(Stmt *S) { return S != Target; } 7335 7336 /// Returns true if the given statement is present in the given declaration. 7337 static bool isContained(const Stmt *Target, const Decl *D) { 7338 StmtUSEFinder Visitor; 7339 Visitor.Target = Target; 7340 return !Visitor.TraverseDecl(const_cast<Decl *>(D)); 7341 } 7342 }; 7343 7344 /// Traverses the AST and finds the last statement that used a given 7345 /// declaration. 7346 class LastDeclUSEFinder : public RecursiveASTVisitor<LastDeclUSEFinder> { 7347 const Decl *D; 7348 7349 public: 7350 bool VisitDeclRefExpr(DeclRefExpr *DRE) { 7351 if (DRE->getDecl() == D) 7352 return false; 7353 return true; 7354 } 7355 7356 static const Stmt *findLastStmtThatUsesDecl(const Decl *D, 7357 const CompoundStmt *Scope) { 7358 LastDeclUSEFinder Visitor; 7359 Visitor.D = D; 7360 for (auto I = Scope->body_rbegin(), E = Scope->body_rend(); I != E; ++I) { 7361 const Stmt *S = *I; 7362 if (!Visitor.TraverseStmt(const_cast<Stmt *>(S))) 7363 return S; 7364 } 7365 return nullptr; 7366 } 7367 }; 7368 7369 /// This class implements -Wunguarded-availability. 7370 /// 7371 /// This is done with a traversal of the AST of a function that makes reference 7372 /// to a partially available declaration. Whenever we encounter an \c if of the 7373 /// form: \c if(@available(...)), we use the version from the condition to visit 7374 /// the then statement. 7375 class DiagnoseUnguardedAvailability 7376 : public RecursiveASTVisitor<DiagnoseUnguardedAvailability> { 7377 typedef RecursiveASTVisitor<DiagnoseUnguardedAvailability> Base; 7378 7379 Sema &SemaRef; 7380 Decl *Ctx; 7381 7382 /// Stack of potentially nested 'if (@available(...))'s. 7383 SmallVector<VersionTuple, 8> AvailabilityStack; 7384 SmallVector<const Stmt *, 16> StmtStack; 7385 7386 void DiagnoseDeclAvailability(NamedDecl *D, SourceRange Range); 7387 7388 public: 7389 DiagnoseUnguardedAvailability(Sema &SemaRef, Decl *Ctx) 7390 : SemaRef(SemaRef), Ctx(Ctx) { 7391 AvailabilityStack.push_back( 7392 SemaRef.Context.getTargetInfo().getPlatformMinVersion()); 7393 } 7394 7395 bool TraverseDecl(Decl *D) { 7396 // Avoid visiting nested functions to prevent duplicate warnings. 7397 if (!D || isa<FunctionDecl>(D)) 7398 return true; 7399 return Base::TraverseDecl(D); 7400 } 7401 7402 bool TraverseStmt(Stmt *S) { 7403 if (!S) 7404 return true; 7405 StmtStack.push_back(S); 7406 bool Result = Base::TraverseStmt(S); 7407 StmtStack.pop_back(); 7408 return Result; 7409 } 7410 7411 void IssueDiagnostics(Stmt *S) { TraverseStmt(S); } 7412 7413 bool TraverseIfStmt(IfStmt *If); 7414 7415 bool TraverseLambdaExpr(LambdaExpr *E) { return true; } 7416 7417 // for 'case X:' statements, don't bother looking at the 'X'; it can't lead 7418 // to any useful diagnostics. 7419 bool TraverseCaseStmt(CaseStmt *CS) { return TraverseStmt(CS->getSubStmt()); } 7420 7421 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *PRE) { 7422 if (PRE->isClassReceiver()) 7423 DiagnoseDeclAvailability(PRE->getClassReceiver(), PRE->getReceiverLocation()); 7424 return true; 7425 } 7426 7427 bool VisitObjCMessageExpr(ObjCMessageExpr *Msg) { 7428 if (ObjCMethodDecl *D = Msg->getMethodDecl()) 7429 DiagnoseDeclAvailability( 7430 D, SourceRange(Msg->getSelectorStartLoc(), Msg->getLocEnd())); 7431 return true; 7432 } 7433 7434 bool VisitDeclRefExpr(DeclRefExpr *DRE) { 7435 DiagnoseDeclAvailability(DRE->getDecl(), 7436 SourceRange(DRE->getLocStart(), DRE->getLocEnd())); 7437 return true; 7438 } 7439 7440 bool VisitMemberExpr(MemberExpr *ME) { 7441 DiagnoseDeclAvailability(ME->getMemberDecl(), 7442 SourceRange(ME->getLocStart(), ME->getLocEnd())); 7443 return true; 7444 } 7445 7446 bool VisitObjCAvailabilityCheckExpr(ObjCAvailabilityCheckExpr *E) { 7447 SemaRef.Diag(E->getLocStart(), diag::warn_at_available_unchecked_use) 7448 << (!SemaRef.getLangOpts().ObjC1); 7449 return true; 7450 } 7451 7452 bool VisitTypeLoc(TypeLoc Ty); 7453 }; 7454 7455 void DiagnoseUnguardedAvailability::DiagnoseDeclAvailability( 7456 NamedDecl *D, SourceRange Range) { 7457 AvailabilityResult Result; 7458 const NamedDecl *OffendingDecl; 7459 std::tie(Result, OffendingDecl) = 7460 ShouldDiagnoseAvailabilityOfDecl(D, nullptr); 7461 if (Result != AR_Available) { 7462 // All other diagnostic kinds have already been handled in 7463 // DiagnoseAvailabilityOfDecl. 7464 if (Result != AR_NotYetIntroduced) 7465 return; 7466 7467 const AvailabilityAttr *AA = 7468 getAttrForPlatform(SemaRef.getASTContext(), OffendingDecl); 7469 VersionTuple Introduced = AA->getIntroduced(); 7470 7471 if (AvailabilityStack.back() >= Introduced) 7472 return; 7473 7474 // If the context of this function is less available than D, we should not 7475 // emit a diagnostic. 7476 if (!ShouldDiagnoseAvailabilityInContext(SemaRef, Result, Introduced, Ctx)) 7477 return; 7478 7479 // We would like to emit the diagnostic even if -Wunguarded-availability is 7480 // not specified for deployment targets >= to iOS 11 or equivalent or 7481 // for declarations that were introduced in iOS 11 (macOS 10.13, ...) or 7482 // later. 7483 unsigned DiagKind = 7484 shouldDiagnoseAvailabilityByDefault( 7485 SemaRef.Context, 7486 SemaRef.Context.getTargetInfo().getPlatformMinVersion(), Introduced) 7487 ? diag::warn_unguarded_availability_new 7488 : diag::warn_unguarded_availability; 7489 7490 SemaRef.Diag(Range.getBegin(), DiagKind) 7491 << Range << D 7492 << AvailabilityAttr::getPrettyPlatformName( 7493 SemaRef.getASTContext().getTargetInfo().getPlatformName()) 7494 << Introduced.getAsString(); 7495 7496 SemaRef.Diag(OffendingDecl->getLocation(), 7497 diag::note_availability_specified_here) 7498 << OffendingDecl << /* partial */ 3; 7499 7500 auto FixitDiag = 7501 SemaRef.Diag(Range.getBegin(), diag::note_unguarded_available_silence) 7502 << Range << D 7503 << (SemaRef.getLangOpts().ObjC1 ? /*@available*/ 0 7504 : /*__builtin_available*/ 1); 7505 7506 // Find the statement which should be enclosed in the if @available check. 7507 if (StmtStack.empty()) 7508 return; 7509 const Stmt *StmtOfUse = StmtStack.back(); 7510 const CompoundStmt *Scope = nullptr; 7511 for (const Stmt *S : llvm::reverse(StmtStack)) { 7512 if (const auto *CS = dyn_cast<CompoundStmt>(S)) { 7513 Scope = CS; 7514 break; 7515 } 7516 if (isBodyLikeChildStmt(StmtOfUse, S)) { 7517 // The declaration won't be seen outside of the statement, so we don't 7518 // have to wrap the uses of any declared variables in if (@available). 7519 // Therefore we can avoid setting Scope here. 7520 break; 7521 } 7522 StmtOfUse = S; 7523 } 7524 const Stmt *LastStmtOfUse = nullptr; 7525 if (isa<DeclStmt>(StmtOfUse) && Scope) { 7526 for (const Decl *D : cast<DeclStmt>(StmtOfUse)->decls()) { 7527 if (StmtUSEFinder::isContained(StmtStack.back(), D)) { 7528 LastStmtOfUse = LastDeclUSEFinder::findLastStmtThatUsesDecl(D, Scope); 7529 break; 7530 } 7531 } 7532 } 7533 7534 const SourceManager &SM = SemaRef.getSourceManager(); 7535 SourceLocation IfInsertionLoc = 7536 SM.getExpansionLoc(StmtOfUse->getLocStart()); 7537 SourceLocation StmtEndLoc = 7538 SM.getExpansionRange( 7539 (LastStmtOfUse ? LastStmtOfUse : StmtOfUse)->getLocEnd()) 7540 .getEnd(); 7541 if (SM.getFileID(IfInsertionLoc) != SM.getFileID(StmtEndLoc)) 7542 return; 7543 7544 StringRef Indentation = Lexer::getIndentationForLine(IfInsertionLoc, SM); 7545 const char *ExtraIndentation = " "; 7546 std::string FixItString; 7547 llvm::raw_string_ostream FixItOS(FixItString); 7548 FixItOS << "if (" << (SemaRef.getLangOpts().ObjC1 ? "@available" 7549 : "__builtin_available") 7550 << "(" 7551 << AvailabilityAttr::getPlatformNameSourceSpelling( 7552 SemaRef.getASTContext().getTargetInfo().getPlatformName()) 7553 << " " << Introduced.getAsString() << ", *)) {\n" 7554 << Indentation << ExtraIndentation; 7555 FixitDiag << FixItHint::CreateInsertion(IfInsertionLoc, FixItOS.str()); 7556 SourceLocation ElseInsertionLoc = Lexer::findLocationAfterToken( 7557 StmtEndLoc, tok::semi, SM, SemaRef.getLangOpts(), 7558 /*SkipTrailingWhitespaceAndNewLine=*/false); 7559 if (ElseInsertionLoc.isInvalid()) 7560 ElseInsertionLoc = 7561 Lexer::getLocForEndOfToken(StmtEndLoc, 0, SM, SemaRef.getLangOpts()); 7562 FixItOS.str().clear(); 7563 FixItOS << "\n" 7564 << Indentation << "} else {\n" 7565 << Indentation << ExtraIndentation 7566 << "// Fallback on earlier versions\n" 7567 << Indentation << "}"; 7568 FixitDiag << FixItHint::CreateInsertion(ElseInsertionLoc, FixItOS.str()); 7569 } 7570 } 7571 7572 bool DiagnoseUnguardedAvailability::VisitTypeLoc(TypeLoc Ty) { 7573 const Type *TyPtr = Ty.getTypePtr(); 7574 SourceRange Range{Ty.getBeginLoc(), Ty.getEndLoc()}; 7575 7576 if (Range.isInvalid()) 7577 return true; 7578 7579 if (const auto *TT = dyn_cast<TagType>(TyPtr)) { 7580 TagDecl *TD = TT->getDecl(); 7581 DiagnoseDeclAvailability(TD, Range); 7582 7583 } else if (const auto *TD = dyn_cast<TypedefType>(TyPtr)) { 7584 TypedefNameDecl *D = TD->getDecl(); 7585 DiagnoseDeclAvailability(D, Range); 7586 7587 } else if (const auto *ObjCO = dyn_cast<ObjCObjectType>(TyPtr)) { 7588 if (NamedDecl *D = ObjCO->getInterface()) 7589 DiagnoseDeclAvailability(D, Range); 7590 } 7591 7592 return true; 7593 } 7594 7595 bool DiagnoseUnguardedAvailability::TraverseIfStmt(IfStmt *If) { 7596 VersionTuple CondVersion; 7597 if (auto *E = dyn_cast<ObjCAvailabilityCheckExpr>(If->getCond())) { 7598 CondVersion = E->getVersion(); 7599 7600 // If we're using the '*' case here or if this check is redundant, then we 7601 // use the enclosing version to check both branches. 7602 if (CondVersion.empty() || CondVersion <= AvailabilityStack.back()) 7603 return TraverseStmt(If->getThen()) && TraverseStmt(If->getElse()); 7604 } else { 7605 // This isn't an availability checking 'if', we can just continue. 7606 return Base::TraverseIfStmt(If); 7607 } 7608 7609 AvailabilityStack.push_back(CondVersion); 7610 bool ShouldContinue = TraverseStmt(If->getThen()); 7611 AvailabilityStack.pop_back(); 7612 7613 return ShouldContinue && TraverseStmt(If->getElse()); 7614 } 7615 7616 } // end anonymous namespace 7617 7618 void Sema::DiagnoseUnguardedAvailabilityViolations(Decl *D) { 7619 Stmt *Body = nullptr; 7620 7621 if (auto *FD = D->getAsFunction()) { 7622 // FIXME: We only examine the pattern decl for availability violations now, 7623 // but we should also examine instantiated templates. 7624 if (FD->isTemplateInstantiation()) 7625 return; 7626 7627 Body = FD->getBody(); 7628 } else if (auto *MD = dyn_cast<ObjCMethodDecl>(D)) 7629 Body = MD->getBody(); 7630 else if (auto *BD = dyn_cast<BlockDecl>(D)) 7631 Body = BD->getBody(); 7632 7633 assert(Body && "Need a body here!"); 7634 7635 DiagnoseUnguardedAvailability(*this, D).IssueDiagnostics(Body); 7636 } 7637 7638 void Sema::DiagnoseAvailabilityOfDecl(NamedDecl *D, 7639 ArrayRef<SourceLocation> Locs, 7640 const ObjCInterfaceDecl *UnknownObjCClass, 7641 bool ObjCPropertyAccess, 7642 bool AvoidPartialAvailabilityChecks) { 7643 std::string Message; 7644 AvailabilityResult Result; 7645 const NamedDecl* OffendingDecl; 7646 // See if this declaration is unavailable, deprecated, or partial. 7647 std::tie(Result, OffendingDecl) = ShouldDiagnoseAvailabilityOfDecl(D, &Message); 7648 if (Result == AR_Available) 7649 return; 7650 7651 if (Result == AR_NotYetIntroduced) { 7652 if (AvoidPartialAvailabilityChecks) 7653 return; 7654 7655 // We need to know the @available context in the current function to 7656 // diagnose this use, let DiagnoseUnguardedAvailabilityViolations do that 7657 // when we're done parsing the current function. 7658 if (getCurFunctionOrMethodDecl()) { 7659 getEnclosingFunction()->HasPotentialAvailabilityViolations = true; 7660 return; 7661 } else if (getCurBlock() || getCurLambda()) { 7662 getCurFunction()->HasPotentialAvailabilityViolations = true; 7663 return; 7664 } 7665 } 7666 7667 const ObjCPropertyDecl *ObjCPDecl = nullptr; 7668 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) { 7669 if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) { 7670 AvailabilityResult PDeclResult = PD->getAvailability(nullptr); 7671 if (PDeclResult == Result) 7672 ObjCPDecl = PD; 7673 } 7674 } 7675 7676 EmitAvailabilityWarning(*this, Result, D, OffendingDecl, Message, Locs, 7677 UnknownObjCClass, ObjCPDecl, ObjCPropertyAccess); 7678 } 7679