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/Sema/SemaInternal.h" 15 #include "clang/AST/ASTConsumer.h" 16 #include "clang/AST/ASTContext.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/ASTMutationListener.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/Lookup.h" 32 #include "clang/Sema/Scope.h" 33 #include "llvm/ADT/StringExtras.h" 34 #include "llvm/Support/MathExtras.h" 35 36 using namespace clang; 37 using namespace sema; 38 39 namespace AttributeLangSupport { 40 enum LANG { 41 C, 42 Cpp, 43 ObjC 44 }; 45 } // end namespace AttributeLangSupport 46 47 //===----------------------------------------------------------------------===// 48 // Helper functions 49 //===----------------------------------------------------------------------===// 50 51 /// isFunctionOrMethod - Return true if the given decl has function 52 /// type (function or function-typed variable) or an Objective-C 53 /// method. 54 static bool isFunctionOrMethod(const Decl *D) { 55 return (D->getFunctionType() != nullptr) || isa<ObjCMethodDecl>(D); 56 } 57 58 /// \brief Return true if the given decl has function type (function or 59 /// function-typed variable) or an Objective-C method or a block. 60 static bool isFunctionOrMethodOrBlock(const Decl *D) { 61 return isFunctionOrMethod(D) || isa<BlockDecl>(D); 62 } 63 64 /// Return true if the given decl has a declarator that should have 65 /// been processed by Sema::GetTypeForDeclarator. 66 static bool hasDeclarator(const Decl *D) { 67 // In some sense, TypedefDecl really *ought* to be a DeclaratorDecl. 68 return isa<DeclaratorDecl>(D) || isa<BlockDecl>(D) || isa<TypedefNameDecl>(D) || 69 isa<ObjCPropertyDecl>(D); 70 } 71 72 /// hasFunctionProto - Return true if the given decl has a argument 73 /// information. This decl should have already passed 74 /// isFunctionOrMethod or isFunctionOrMethodOrBlock. 75 static bool hasFunctionProto(const Decl *D) { 76 if (const FunctionType *FnTy = D->getFunctionType()) 77 return isa<FunctionProtoType>(FnTy); 78 return isa<ObjCMethodDecl>(D) || isa<BlockDecl>(D); 79 } 80 81 /// getFunctionOrMethodNumParams - Return number of function or method 82 /// parameters. It is an error to call this on a K&R function (use 83 /// hasFunctionProto first). 84 static unsigned getFunctionOrMethodNumParams(const Decl *D) { 85 if (const FunctionType *FnTy = D->getFunctionType()) 86 return cast<FunctionProtoType>(FnTy)->getNumParams(); 87 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) 88 return BD->getNumParams(); 89 return cast<ObjCMethodDecl>(D)->param_size(); 90 } 91 92 static QualType getFunctionOrMethodParamType(const Decl *D, unsigned Idx) { 93 if (const FunctionType *FnTy = D->getFunctionType()) 94 return cast<FunctionProtoType>(FnTy)->getParamType(Idx); 95 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) 96 return BD->getParamDecl(Idx)->getType(); 97 98 return cast<ObjCMethodDecl>(D)->parameters()[Idx]->getType(); 99 } 100 101 static SourceRange getFunctionOrMethodParamRange(const Decl *D, unsigned Idx) { 102 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 103 return FD->getParamDecl(Idx)->getSourceRange(); 104 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) 105 return MD->parameters()[Idx]->getSourceRange(); 106 if (const auto *BD = dyn_cast<BlockDecl>(D)) 107 return BD->getParamDecl(Idx)->getSourceRange(); 108 return SourceRange(); 109 } 110 111 static QualType getFunctionOrMethodResultType(const Decl *D) { 112 if (const FunctionType *FnTy = D->getFunctionType()) 113 return cast<FunctionType>(FnTy)->getReturnType(); 114 return cast<ObjCMethodDecl>(D)->getReturnType(); 115 } 116 117 static SourceRange getFunctionOrMethodResultSourceRange(const Decl *D) { 118 if (const auto *FD = dyn_cast<FunctionDecl>(D)) 119 return FD->getReturnTypeSourceRange(); 120 if (const auto *MD = dyn_cast<ObjCMethodDecl>(D)) 121 return MD->getReturnTypeSourceRange(); 122 return SourceRange(); 123 } 124 125 static bool isFunctionOrMethodVariadic(const Decl *D) { 126 if (const FunctionType *FnTy = D->getFunctionType()) { 127 const FunctionProtoType *proto = cast<FunctionProtoType>(FnTy); 128 return proto->isVariadic(); 129 } 130 if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) 131 return BD->isVariadic(); 132 133 return cast<ObjCMethodDecl>(D)->isVariadic(); 134 } 135 136 static bool isInstanceMethod(const Decl *D) { 137 if (const CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) 138 return MethodDecl->isInstance(); 139 return false; 140 } 141 142 static inline bool isNSStringType(QualType T, ASTContext &Ctx) { 143 const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>(); 144 if (!PT) 145 return false; 146 147 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface(); 148 if (!Cls) 149 return false; 150 151 IdentifierInfo* ClsName = Cls->getIdentifier(); 152 153 // FIXME: Should we walk the chain of classes? 154 return ClsName == &Ctx.Idents.get("NSString") || 155 ClsName == &Ctx.Idents.get("NSMutableString"); 156 } 157 158 static inline bool isCFStringType(QualType T, ASTContext &Ctx) { 159 const PointerType *PT = T->getAs<PointerType>(); 160 if (!PT) 161 return false; 162 163 const RecordType *RT = PT->getPointeeType()->getAs<RecordType>(); 164 if (!RT) 165 return false; 166 167 const RecordDecl *RD = RT->getDecl(); 168 if (RD->getTagKind() != TTK_Struct) 169 return false; 170 171 return RD->getIdentifier() == &Ctx.Idents.get("__CFString"); 172 } 173 174 static unsigned getNumAttributeArgs(const AttributeList &Attr) { 175 // FIXME: Include the type in the argument list. 176 return Attr.getNumArgs() + Attr.hasParsedType(); 177 } 178 179 template <typename Compare> 180 static bool checkAttributeNumArgsImpl(Sema &S, const AttributeList &Attr, 181 unsigned Num, unsigned Diag, 182 Compare Comp) { 183 if (Comp(getNumAttributeArgs(Attr), Num)) { 184 S.Diag(Attr.getLoc(), Diag) << Attr.getName() << Num; 185 return false; 186 } 187 188 return true; 189 } 190 191 /// \brief Check if the attribute has exactly as many args as Num. May 192 /// output an error. 193 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr, 194 unsigned Num) { 195 return checkAttributeNumArgsImpl(S, Attr, Num, 196 diag::err_attribute_wrong_number_arguments, 197 std::not_equal_to<unsigned>()); 198 } 199 200 /// \brief Check if the attribute has at least as many args as Num. May 201 /// output an error. 202 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr, 203 unsigned Num) { 204 return checkAttributeNumArgsImpl(S, Attr, Num, 205 diag::err_attribute_too_few_arguments, 206 std::less<unsigned>()); 207 } 208 209 /// \brief Check if the attribute has at most as many args as Num. May 210 /// output an error. 211 static bool checkAttributeAtMostNumArgs(Sema &S, const AttributeList &Attr, 212 unsigned Num) { 213 return checkAttributeNumArgsImpl(S, Attr, Num, 214 diag::err_attribute_too_many_arguments, 215 std::greater<unsigned>()); 216 } 217 218 /// \brief If Expr is a valid integer constant, get the value of the integer 219 /// expression and return success or failure. May output an error. 220 static bool checkUInt32Argument(Sema &S, const AttributeList &Attr, 221 const Expr *Expr, uint32_t &Val, 222 unsigned Idx = UINT_MAX) { 223 llvm::APSInt I(32); 224 if (Expr->isTypeDependent() || Expr->isValueDependent() || 225 !Expr->isIntegerConstantExpr(I, S.Context)) { 226 if (Idx != UINT_MAX) 227 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 228 << Attr.getName() << Idx << AANT_ArgumentIntegerConstant 229 << Expr->getSourceRange(); 230 else 231 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) 232 << Attr.getName() << AANT_ArgumentIntegerConstant 233 << Expr->getSourceRange(); 234 return false; 235 } 236 237 if (!I.isIntN(32)) { 238 S.Diag(Expr->getExprLoc(), diag::err_ice_too_large) 239 << I.toString(10, false) << 32 << /* Unsigned */ 1; 240 return false; 241 } 242 243 Val = (uint32_t)I.getZExtValue(); 244 return true; 245 } 246 247 /// \brief Diagnose mutually exclusive attributes when present on a given 248 /// declaration. Returns true if diagnosed. 249 template <typename AttrTy> 250 static bool checkAttrMutualExclusion(Sema &S, Decl *D, SourceRange Range, 251 IdentifierInfo *Ident) { 252 if (AttrTy *A = D->getAttr<AttrTy>()) { 253 S.Diag(Range.getBegin(), diag::err_attributes_are_not_compatible) << Ident 254 << A; 255 S.Diag(A->getLocation(), diag::note_conflicting_attribute); 256 return true; 257 } 258 return false; 259 } 260 261 /// \brief Check if IdxExpr is a valid parameter index for a function or 262 /// instance method D. May output an error. 263 /// 264 /// \returns true if IdxExpr is a valid index. 265 static bool checkFunctionOrMethodParameterIndex(Sema &S, const Decl *D, 266 const AttributeList &Attr, 267 unsigned AttrArgNum, 268 const Expr *IdxExpr, 269 uint64_t &Idx) { 270 assert(isFunctionOrMethodOrBlock(D)); 271 272 // In C++ the implicit 'this' function parameter also counts. 273 // Parameters are counted from one. 274 bool HP = hasFunctionProto(D); 275 bool HasImplicitThisParam = isInstanceMethod(D); 276 bool IV = HP && isFunctionOrMethodVariadic(D); 277 unsigned NumParams = 278 (HP ? getFunctionOrMethodNumParams(D) : 0) + HasImplicitThisParam; 279 280 llvm::APSInt IdxInt; 281 if (IdxExpr->isTypeDependent() || IdxExpr->isValueDependent() || 282 !IdxExpr->isIntegerConstantExpr(IdxInt, S.Context)) { 283 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 284 << Attr.getName() << AttrArgNum << AANT_ArgumentIntegerConstant 285 << IdxExpr->getSourceRange(); 286 return false; 287 } 288 289 Idx = IdxInt.getLimitedValue(); 290 if (Idx < 1 || (!IV && Idx > NumParams)) { 291 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) 292 << Attr.getName() << AttrArgNum << IdxExpr->getSourceRange(); 293 return false; 294 } 295 Idx--; // Convert to zero-based. 296 if (HasImplicitThisParam) { 297 if (Idx == 0) { 298 S.Diag(Attr.getLoc(), 299 diag::err_attribute_invalid_implicit_this_argument) 300 << Attr.getName() << IdxExpr->getSourceRange(); 301 return false; 302 } 303 --Idx; 304 } 305 306 return true; 307 } 308 309 /// \brief Check if the argument \p ArgNum of \p Attr is a ASCII string literal. 310 /// If not emit an error and return false. If the argument is an identifier it 311 /// will emit an error with a fixit hint and treat it as if it was a string 312 /// literal. 313 bool Sema::checkStringLiteralArgumentAttr(const AttributeList &Attr, 314 unsigned ArgNum, StringRef &Str, 315 SourceLocation *ArgLocation) { 316 // Look for identifiers. If we have one emit a hint to fix it to a literal. 317 if (Attr.isArgIdent(ArgNum)) { 318 IdentifierLoc *Loc = Attr.getArgAsIdent(ArgNum); 319 Diag(Loc->Loc, diag::err_attribute_argument_type) 320 << Attr.getName() << AANT_ArgumentString 321 << FixItHint::CreateInsertion(Loc->Loc, "\"") 322 << FixItHint::CreateInsertion(getLocForEndOfToken(Loc->Loc), "\""); 323 Str = Loc->Ident->getName(); 324 if (ArgLocation) 325 *ArgLocation = Loc->Loc; 326 return true; 327 } 328 329 // Now check for an actual string literal. 330 Expr *ArgExpr = Attr.getArgAsExpr(ArgNum); 331 StringLiteral *Literal = dyn_cast<StringLiteral>(ArgExpr->IgnoreParenCasts()); 332 if (ArgLocation) 333 *ArgLocation = ArgExpr->getLocStart(); 334 335 if (!Literal || !Literal->isAscii()) { 336 Diag(ArgExpr->getLocStart(), diag::err_attribute_argument_type) 337 << Attr.getName() << AANT_ArgumentString; 338 return false; 339 } 340 341 Str = Literal->getString(); 342 return true; 343 } 344 345 /// \brief Applies the given attribute to the Decl without performing any 346 /// additional semantic checking. 347 template <typename AttrType> 348 static void handleSimpleAttribute(Sema &S, Decl *D, 349 const AttributeList &Attr) { 350 D->addAttr(::new (S.Context) AttrType(Attr.getRange(), S.Context, 351 Attr.getAttributeSpellingListIndex())); 352 } 353 354 template <typename AttrType> 355 static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D, 356 const AttributeList &Attr) { 357 handleSimpleAttribute<AttrType>(S, D, Attr); 358 } 359 360 /// \brief Applies the given attribute to the Decl so long as the Decl doesn't 361 /// already have one of the given incompatible attributes. 362 template <typename AttrType, typename IncompatibleAttrType, 363 typename... IncompatibleAttrTypes> 364 static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D, 365 const AttributeList &Attr) { 366 if (checkAttrMutualExclusion<IncompatibleAttrType>(S, D, Attr.getRange(), 367 Attr.getName())) 368 return; 369 handleSimpleAttributeWithExclusions<AttrType, IncompatibleAttrTypes...>(S, D, 370 Attr); 371 } 372 373 /// \brief Check if the passed-in expression is of type int or bool. 374 static bool isIntOrBool(Expr *Exp) { 375 QualType QT = Exp->getType(); 376 return QT->isBooleanType() || QT->isIntegerType(); 377 } 378 379 380 // Check to see if the type is a smart pointer of some kind. We assume 381 // it's a smart pointer if it defines both operator-> and operator*. 382 static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) { 383 DeclContextLookupResult Res1 = RT->getDecl()->lookup( 384 S.Context.DeclarationNames.getCXXOperatorName(OO_Star)); 385 if (Res1.empty()) 386 return false; 387 388 DeclContextLookupResult Res2 = RT->getDecl()->lookup( 389 S.Context.DeclarationNames.getCXXOperatorName(OO_Arrow)); 390 if (Res2.empty()) 391 return false; 392 393 return true; 394 } 395 396 /// \brief Check if passed in Decl is a pointer type. 397 /// Note that this function may produce an error message. 398 /// \return true if the Decl is a pointer type; false otherwise 399 static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D, 400 const AttributeList &Attr) { 401 const ValueDecl *vd = cast<ValueDecl>(D); 402 QualType QT = vd->getType(); 403 if (QT->isAnyPointerType()) 404 return true; 405 406 if (const RecordType *RT = QT->getAs<RecordType>()) { 407 // If it's an incomplete type, it could be a smart pointer; skip it. 408 // (We don't want to force template instantiation if we can avoid it, 409 // since that would alter the order in which templates are instantiated.) 410 if (RT->isIncompleteType()) 411 return true; 412 413 if (threadSafetyCheckIsSmartPointer(S, RT)) 414 return true; 415 } 416 417 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer) 418 << Attr.getName() << QT; 419 return false; 420 } 421 422 /// \brief Checks that the passed in QualType either is of RecordType or points 423 /// to RecordType. Returns the relevant RecordType, null if it does not exit. 424 static const RecordType *getRecordType(QualType QT) { 425 if (const RecordType *RT = QT->getAs<RecordType>()) 426 return RT; 427 428 // Now check if we point to record type. 429 if (const PointerType *PT = QT->getAs<PointerType>()) 430 return PT->getPointeeType()->getAs<RecordType>(); 431 432 return nullptr; 433 } 434 435 static bool checkRecordTypeForCapability(Sema &S, QualType Ty) { 436 const RecordType *RT = getRecordType(Ty); 437 438 if (!RT) 439 return false; 440 441 // Don't check for the capability if the class hasn't been defined yet. 442 if (RT->isIncompleteType()) 443 return true; 444 445 // Allow smart pointers to be used as capability objects. 446 // FIXME -- Check the type that the smart pointer points to. 447 if (threadSafetyCheckIsSmartPointer(S, RT)) 448 return true; 449 450 // Check if the record itself has a capability. 451 RecordDecl *RD = RT->getDecl(); 452 if (RD->hasAttr<CapabilityAttr>()) 453 return true; 454 455 // Else check if any base classes have a capability. 456 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { 457 CXXBasePaths BPaths(false, false); 458 if (CRD->lookupInBases([](const CXXBaseSpecifier *BS, CXXBasePath &) { 459 const auto *Type = BS->getType()->getAs<RecordType>(); 460 return Type->getDecl()->hasAttr<CapabilityAttr>(); 461 }, BPaths)) 462 return true; 463 } 464 return false; 465 } 466 467 static bool checkTypedefTypeForCapability(QualType Ty) { 468 const auto *TD = Ty->getAs<TypedefType>(); 469 if (!TD) 470 return false; 471 472 TypedefNameDecl *TN = TD->getDecl(); 473 if (!TN) 474 return false; 475 476 return TN->hasAttr<CapabilityAttr>(); 477 } 478 479 static bool typeHasCapability(Sema &S, QualType Ty) { 480 if (checkTypedefTypeForCapability(Ty)) 481 return true; 482 483 if (checkRecordTypeForCapability(S, Ty)) 484 return true; 485 486 return false; 487 } 488 489 static bool isCapabilityExpr(Sema &S, const Expr *Ex) { 490 // Capability expressions are simple expressions involving the boolean logic 491 // operators &&, || or !, a simple DeclRefExpr, CastExpr or a ParenExpr. Once 492 // a DeclRefExpr is found, its type should be checked to determine whether it 493 // is a capability or not. 494 495 if (const auto *E = dyn_cast<DeclRefExpr>(Ex)) 496 return typeHasCapability(S, E->getType()); 497 else if (const auto *E = dyn_cast<CastExpr>(Ex)) 498 return isCapabilityExpr(S, E->getSubExpr()); 499 else if (const auto *E = dyn_cast<ParenExpr>(Ex)) 500 return isCapabilityExpr(S, E->getSubExpr()); 501 else if (const auto *E = dyn_cast<UnaryOperator>(Ex)) { 502 if (E->getOpcode() == UO_LNot) 503 return isCapabilityExpr(S, E->getSubExpr()); 504 return false; 505 } else if (const auto *E = dyn_cast<BinaryOperator>(Ex)) { 506 if (E->getOpcode() == BO_LAnd || E->getOpcode() == BO_LOr) 507 return isCapabilityExpr(S, E->getLHS()) && 508 isCapabilityExpr(S, E->getRHS()); 509 return false; 510 } 511 512 return false; 513 } 514 515 /// \brief Checks that all attribute arguments, starting from Sidx, resolve to 516 /// a capability object. 517 /// \param Sidx The attribute argument index to start checking with. 518 /// \param ParamIdxOk Whether an argument can be indexing into a function 519 /// parameter list. 520 static void checkAttrArgsAreCapabilityObjs(Sema &S, Decl *D, 521 const AttributeList &Attr, 522 SmallVectorImpl<Expr *> &Args, 523 int Sidx = 0, 524 bool ParamIdxOk = false) { 525 for (unsigned Idx = Sidx; Idx < Attr.getNumArgs(); ++Idx) { 526 Expr *ArgExp = Attr.getArgAsExpr(Idx); 527 528 if (ArgExp->isTypeDependent()) { 529 // FIXME -- need to check this again on template instantiation 530 Args.push_back(ArgExp); 531 continue; 532 } 533 534 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(ArgExp)) { 535 if (StrLit->getLength() == 0 || 536 (StrLit->isAscii() && StrLit->getString() == StringRef("*"))) { 537 // Pass empty strings to the analyzer without warnings. 538 // Treat "*" as the universal lock. 539 Args.push_back(ArgExp); 540 continue; 541 } 542 543 // We allow constant strings to be used as a placeholder for expressions 544 // that are not valid C++ syntax, but warn that they are ignored. 545 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_ignored) << 546 Attr.getName(); 547 Args.push_back(ArgExp); 548 continue; 549 } 550 551 QualType ArgTy = ArgExp->getType(); 552 553 // A pointer to member expression of the form &MyClass::mu is treated 554 // specially -- we need to look at the type of the member. 555 if (UnaryOperator *UOp = dyn_cast<UnaryOperator>(ArgExp)) 556 if (UOp->getOpcode() == UO_AddrOf) 557 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(UOp->getSubExpr())) 558 if (DRE->getDecl()->isCXXInstanceMember()) 559 ArgTy = DRE->getDecl()->getType(); 560 561 // First see if we can just cast to record type, or pointer to record type. 562 const RecordType *RT = getRecordType(ArgTy); 563 564 // Now check if we index into a record type function param. 565 if(!RT && ParamIdxOk) { 566 FunctionDecl *FD = dyn_cast<FunctionDecl>(D); 567 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(ArgExp); 568 if(FD && IL) { 569 unsigned int NumParams = FD->getNumParams(); 570 llvm::APInt ArgValue = IL->getValue(); 571 uint64_t ParamIdxFromOne = ArgValue.getZExtValue(); 572 uint64_t ParamIdxFromZero = ParamIdxFromOne - 1; 573 if(!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) { 574 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_range) 575 << Attr.getName() << Idx + 1 << NumParams; 576 continue; 577 } 578 ArgTy = FD->getParamDecl(ParamIdxFromZero)->getType(); 579 } 580 } 581 582 // If the type does not have a capability, see if the components of the 583 // expression have capabilities. This allows for writing C code where the 584 // capability may be on the type, and the expression is a capability 585 // boolean logic expression. Eg) requires_capability(A || B && !C) 586 if (!typeHasCapability(S, ArgTy) && !isCapabilityExpr(S, ArgExp)) 587 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_argument_not_lockable) 588 << Attr.getName() << ArgTy; 589 590 Args.push_back(ArgExp); 591 } 592 } 593 594 //===----------------------------------------------------------------------===// 595 // Attribute Implementations 596 //===----------------------------------------------------------------------===// 597 598 static void handlePtGuardedVarAttr(Sema &S, Decl *D, 599 const AttributeList &Attr) { 600 if (!threadSafetyCheckIsPointer(S, D, Attr)) 601 return; 602 603 D->addAttr(::new (S.Context) 604 PtGuardedVarAttr(Attr.getRange(), S.Context, 605 Attr.getAttributeSpellingListIndex())); 606 } 607 608 static bool checkGuardedByAttrCommon(Sema &S, Decl *D, 609 const AttributeList &Attr, 610 Expr* &Arg) { 611 SmallVector<Expr*, 1> Args; 612 // check that all arguments are lockable objects 613 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args); 614 unsigned Size = Args.size(); 615 if (Size != 1) 616 return false; 617 618 Arg = Args[0]; 619 620 return true; 621 } 622 623 static void handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) { 624 Expr *Arg = nullptr; 625 if (!checkGuardedByAttrCommon(S, D, Attr, Arg)) 626 return; 627 628 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg, 629 Attr.getAttributeSpellingListIndex())); 630 } 631 632 static void handlePtGuardedByAttr(Sema &S, Decl *D, 633 const AttributeList &Attr) { 634 Expr *Arg = nullptr; 635 if (!checkGuardedByAttrCommon(S, D, Attr, Arg)) 636 return; 637 638 if (!threadSafetyCheckIsPointer(S, D, Attr)) 639 return; 640 641 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(), 642 S.Context, Arg, 643 Attr.getAttributeSpellingListIndex())); 644 } 645 646 static bool checkAcquireOrderAttrCommon(Sema &S, Decl *D, 647 const AttributeList &Attr, 648 SmallVectorImpl<Expr *> &Args) { 649 if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) 650 return false; 651 652 // Check that this attribute only applies to lockable types. 653 QualType QT = cast<ValueDecl>(D)->getType(); 654 if (!QT->isDependentType() && !typeHasCapability(S, QT)) { 655 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_lockable) 656 << Attr.getName(); 657 return false; 658 } 659 660 // Check that all arguments are lockable objects. 661 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args); 662 if (Args.empty()) 663 return false; 664 665 return true; 666 } 667 668 static void handleAcquiredAfterAttr(Sema &S, Decl *D, 669 const AttributeList &Attr) { 670 SmallVector<Expr*, 1> Args; 671 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args)) 672 return; 673 674 Expr **StartArg = &Args[0]; 675 D->addAttr(::new (S.Context) 676 AcquiredAfterAttr(Attr.getRange(), S.Context, 677 StartArg, Args.size(), 678 Attr.getAttributeSpellingListIndex())); 679 } 680 681 static void handleAcquiredBeforeAttr(Sema &S, Decl *D, 682 const AttributeList &Attr) { 683 SmallVector<Expr*, 1> Args; 684 if (!checkAcquireOrderAttrCommon(S, D, Attr, Args)) 685 return; 686 687 Expr **StartArg = &Args[0]; 688 D->addAttr(::new (S.Context) 689 AcquiredBeforeAttr(Attr.getRange(), S.Context, 690 StartArg, Args.size(), 691 Attr.getAttributeSpellingListIndex())); 692 } 693 694 static bool checkLockFunAttrCommon(Sema &S, Decl *D, 695 const AttributeList &Attr, 696 SmallVectorImpl<Expr *> &Args) { 697 // zero or more arguments ok 698 // check that all arguments are lockable objects 699 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 0, /*ParamIdxOk=*/true); 700 701 return true; 702 } 703 704 static void handleAssertSharedLockAttr(Sema &S, Decl *D, 705 const AttributeList &Attr) { 706 SmallVector<Expr*, 1> Args; 707 if (!checkLockFunAttrCommon(S, D, Attr, Args)) 708 return; 709 710 unsigned Size = Args.size(); 711 Expr **StartArg = Size == 0 ? nullptr : &Args[0]; 712 D->addAttr(::new (S.Context) 713 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size, 714 Attr.getAttributeSpellingListIndex())); 715 } 716 717 static void handleAssertExclusiveLockAttr(Sema &S, Decl *D, 718 const AttributeList &Attr) { 719 SmallVector<Expr*, 1> Args; 720 if (!checkLockFunAttrCommon(S, D, Attr, Args)) 721 return; 722 723 unsigned Size = Args.size(); 724 Expr **StartArg = Size == 0 ? nullptr : &Args[0]; 725 D->addAttr(::new (S.Context) 726 AssertExclusiveLockAttr(Attr.getRange(), S.Context, 727 StartArg, Size, 728 Attr.getAttributeSpellingListIndex())); 729 } 730 731 732 static bool checkTryLockFunAttrCommon(Sema &S, Decl *D, 733 const AttributeList &Attr, 734 SmallVectorImpl<Expr *> &Args) { 735 if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) 736 return false; 737 738 if (!isIntOrBool(Attr.getArgAsExpr(0))) { 739 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 740 << Attr.getName() << 1 << AANT_ArgumentIntOrBool; 741 return false; 742 } 743 744 // check that all arguments are lockable objects 745 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 1); 746 747 return true; 748 } 749 750 static void handleSharedTrylockFunctionAttr(Sema &S, Decl *D, 751 const AttributeList &Attr) { 752 SmallVector<Expr*, 2> Args; 753 if (!checkTryLockFunAttrCommon(S, D, Attr, Args)) 754 return; 755 756 D->addAttr(::new (S.Context) 757 SharedTrylockFunctionAttr(Attr.getRange(), S.Context, 758 Attr.getArgAsExpr(0), 759 Args.data(), Args.size(), 760 Attr.getAttributeSpellingListIndex())); 761 } 762 763 static void handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D, 764 const AttributeList &Attr) { 765 SmallVector<Expr*, 2> Args; 766 if (!checkTryLockFunAttrCommon(S, D, Attr, Args)) 767 return; 768 769 D->addAttr(::new (S.Context) ExclusiveTrylockFunctionAttr( 770 Attr.getRange(), S.Context, Attr.getArgAsExpr(0), Args.data(), 771 Args.size(), Attr.getAttributeSpellingListIndex())); 772 } 773 774 static void handleLockReturnedAttr(Sema &S, Decl *D, 775 const AttributeList &Attr) { 776 // check that the argument is lockable object 777 SmallVector<Expr*, 1> Args; 778 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args); 779 unsigned Size = Args.size(); 780 if (Size == 0) 781 return; 782 783 D->addAttr(::new (S.Context) 784 LockReturnedAttr(Attr.getRange(), S.Context, Args[0], 785 Attr.getAttributeSpellingListIndex())); 786 } 787 788 static void handleLocksExcludedAttr(Sema &S, Decl *D, 789 const AttributeList &Attr) { 790 if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) 791 return; 792 793 // check that all arguments are lockable objects 794 SmallVector<Expr*, 1> Args; 795 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args); 796 unsigned Size = Args.size(); 797 if (Size == 0) 798 return; 799 Expr **StartArg = &Args[0]; 800 801 D->addAttr(::new (S.Context) 802 LocksExcludedAttr(Attr.getRange(), S.Context, StartArg, Size, 803 Attr.getAttributeSpellingListIndex())); 804 } 805 806 static void handleEnableIfAttr(Sema &S, Decl *D, const AttributeList &Attr) { 807 S.Diag(Attr.getLoc(), diag::ext_clang_enable_if); 808 809 Expr *Cond = Attr.getArgAsExpr(0); 810 if (!Cond->isTypeDependent()) { 811 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond); 812 if (Converted.isInvalid()) 813 return; 814 Cond = Converted.get(); 815 } 816 817 StringRef Msg; 818 if (!S.checkStringLiteralArgumentAttr(Attr, 1, Msg)) 819 return; 820 821 SmallVector<PartialDiagnosticAt, 8> Diags; 822 if (!Cond->isValueDependent() && 823 !Expr::isPotentialConstantExprUnevaluated(Cond, cast<FunctionDecl>(D), 824 Diags)) { 825 S.Diag(Attr.getLoc(), diag::err_enable_if_never_constant_expr); 826 for (int I = 0, N = Diags.size(); I != N; ++I) 827 S.Diag(Diags[I].first, Diags[I].second); 828 return; 829 } 830 831 D->addAttr(::new (S.Context) 832 EnableIfAttr(Attr.getRange(), S.Context, Cond, Msg, 833 Attr.getAttributeSpellingListIndex())); 834 } 835 836 static void handlePassObjectSizeAttr(Sema &S, Decl *D, 837 const AttributeList &Attr) { 838 if (D->hasAttr<PassObjectSizeAttr>()) { 839 S.Diag(D->getLocStart(), diag::err_attribute_only_once_per_parameter) 840 << Attr.getName(); 841 return; 842 } 843 844 Expr *E = Attr.getArgAsExpr(0); 845 uint32_t Type; 846 if (!checkUInt32Argument(S, Attr, E, Type, /*Idx=*/1)) 847 return; 848 849 // pass_object_size's argument is passed in as the second argument of 850 // __builtin_object_size. So, it has the same constraints as that second 851 // argument; namely, it must be in the range [0, 3]. 852 if (Type > 3) { 853 S.Diag(E->getLocStart(), diag::err_attribute_argument_outof_range) 854 << Attr.getName() << 0 << 3 << E->getSourceRange(); 855 return; 856 } 857 858 // pass_object_size is only supported on constant pointer parameters; as a 859 // kindness to users, we allow the parameter to be non-const for declarations. 860 // At this point, we have no clue if `D` belongs to a function declaration or 861 // definition, so we defer the constness check until later. 862 if (!cast<ParmVarDecl>(D)->getType()->isPointerType()) { 863 S.Diag(D->getLocStart(), diag::err_attribute_pointers_only) 864 << Attr.getName() << 1; 865 return; 866 } 867 868 D->addAttr(::new (S.Context) 869 PassObjectSizeAttr(Attr.getRange(), S.Context, (int)Type, 870 Attr.getAttributeSpellingListIndex())); 871 } 872 873 static void handleConsumableAttr(Sema &S, Decl *D, const AttributeList &Attr) { 874 ConsumableAttr::ConsumedState DefaultState; 875 876 if (Attr.isArgIdent(0)) { 877 IdentifierLoc *IL = Attr.getArgAsIdent(0); 878 if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(), 879 DefaultState)) { 880 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) 881 << Attr.getName() << IL->Ident; 882 return; 883 } 884 } else { 885 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) 886 << Attr.getName() << AANT_ArgumentIdentifier; 887 return; 888 } 889 890 D->addAttr(::new (S.Context) 891 ConsumableAttr(Attr.getRange(), S.Context, DefaultState, 892 Attr.getAttributeSpellingListIndex())); 893 } 894 895 static bool checkForConsumableClass(Sema &S, const CXXMethodDecl *MD, 896 const AttributeList &Attr) { 897 ASTContext &CurrContext = S.getASTContext(); 898 QualType ThisType = MD->getThisType(CurrContext)->getPointeeType(); 899 900 if (const CXXRecordDecl *RD = ThisType->getAsCXXRecordDecl()) { 901 if (!RD->hasAttr<ConsumableAttr>()) { 902 S.Diag(Attr.getLoc(), diag::warn_attr_on_unconsumable_class) << 903 RD->getNameAsString(); 904 905 return false; 906 } 907 } 908 909 return true; 910 } 911 912 static void handleCallableWhenAttr(Sema &S, Decl *D, 913 const AttributeList &Attr) { 914 if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) 915 return; 916 917 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr)) 918 return; 919 920 SmallVector<CallableWhenAttr::ConsumedState, 3> States; 921 for (unsigned ArgIndex = 0; ArgIndex < Attr.getNumArgs(); ++ArgIndex) { 922 CallableWhenAttr::ConsumedState CallableState; 923 924 StringRef StateString; 925 SourceLocation Loc; 926 if (Attr.isArgIdent(ArgIndex)) { 927 IdentifierLoc *Ident = Attr.getArgAsIdent(ArgIndex); 928 StateString = Ident->Ident->getName(); 929 Loc = Ident->Loc; 930 } else { 931 if (!S.checkStringLiteralArgumentAttr(Attr, ArgIndex, StateString, &Loc)) 932 return; 933 } 934 935 if (!CallableWhenAttr::ConvertStrToConsumedState(StateString, 936 CallableState)) { 937 S.Diag(Loc, diag::warn_attribute_type_not_supported) 938 << Attr.getName() << StateString; 939 return; 940 } 941 942 States.push_back(CallableState); 943 } 944 945 D->addAttr(::new (S.Context) 946 CallableWhenAttr(Attr.getRange(), S.Context, States.data(), 947 States.size(), Attr.getAttributeSpellingListIndex())); 948 } 949 950 static void handleParamTypestateAttr(Sema &S, Decl *D, 951 const AttributeList &Attr) { 952 ParamTypestateAttr::ConsumedState ParamState; 953 954 if (Attr.isArgIdent(0)) { 955 IdentifierLoc *Ident = Attr.getArgAsIdent(0); 956 StringRef StateString = Ident->Ident->getName(); 957 958 if (!ParamTypestateAttr::ConvertStrToConsumedState(StateString, 959 ParamState)) { 960 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) 961 << Attr.getName() << StateString; 962 return; 963 } 964 } else { 965 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << 966 Attr.getName() << AANT_ArgumentIdentifier; 967 return; 968 } 969 970 // FIXME: This check is currently being done in the analysis. It can be 971 // enabled here only after the parser propagates attributes at 972 // template specialization definition, not declaration. 973 //QualType ReturnType = cast<ParmVarDecl>(D)->getType(); 974 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl(); 975 // 976 //if (!RD || !RD->hasAttr<ConsumableAttr>()) { 977 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) << 978 // ReturnType.getAsString(); 979 // return; 980 //} 981 982 D->addAttr(::new (S.Context) 983 ParamTypestateAttr(Attr.getRange(), S.Context, ParamState, 984 Attr.getAttributeSpellingListIndex())); 985 } 986 987 static void handleReturnTypestateAttr(Sema &S, Decl *D, 988 const AttributeList &Attr) { 989 ReturnTypestateAttr::ConsumedState ReturnState; 990 991 if (Attr.isArgIdent(0)) { 992 IdentifierLoc *IL = Attr.getArgAsIdent(0); 993 if (!ReturnTypestateAttr::ConvertStrToConsumedState(IL->Ident->getName(), 994 ReturnState)) { 995 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) 996 << Attr.getName() << IL->Ident; 997 return; 998 } 999 } else { 1000 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << 1001 Attr.getName() << AANT_ArgumentIdentifier; 1002 return; 1003 } 1004 1005 // FIXME: This check is currently being done in the analysis. It can be 1006 // enabled here only after the parser propagates attributes at 1007 // template specialization definition, not declaration. 1008 //QualType ReturnType; 1009 // 1010 //if (const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D)) { 1011 // ReturnType = Param->getType(); 1012 // 1013 //} else if (const CXXConstructorDecl *Constructor = 1014 // dyn_cast<CXXConstructorDecl>(D)) { 1015 // ReturnType = Constructor->getThisType(S.getASTContext())->getPointeeType(); 1016 // 1017 //} else { 1018 // 1019 // ReturnType = cast<FunctionDecl>(D)->getCallResultType(); 1020 //} 1021 // 1022 //const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl(); 1023 // 1024 //if (!RD || !RD->hasAttr<ConsumableAttr>()) { 1025 // S.Diag(Attr.getLoc(), diag::warn_return_state_for_unconsumable_type) << 1026 // ReturnType.getAsString(); 1027 // return; 1028 //} 1029 1030 D->addAttr(::new (S.Context) 1031 ReturnTypestateAttr(Attr.getRange(), S.Context, ReturnState, 1032 Attr.getAttributeSpellingListIndex())); 1033 } 1034 1035 static void handleSetTypestateAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1036 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr)) 1037 return; 1038 1039 SetTypestateAttr::ConsumedState NewState; 1040 if (Attr.isArgIdent(0)) { 1041 IdentifierLoc *Ident = Attr.getArgAsIdent(0); 1042 StringRef Param = Ident->Ident->getName(); 1043 if (!SetTypestateAttr::ConvertStrToConsumedState(Param, NewState)) { 1044 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) 1045 << Attr.getName() << Param; 1046 return; 1047 } 1048 } else { 1049 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << 1050 Attr.getName() << AANT_ArgumentIdentifier; 1051 return; 1052 } 1053 1054 D->addAttr(::new (S.Context) 1055 SetTypestateAttr(Attr.getRange(), S.Context, NewState, 1056 Attr.getAttributeSpellingListIndex())); 1057 } 1058 1059 static void handleTestTypestateAttr(Sema &S, Decl *D, 1060 const AttributeList &Attr) { 1061 if (!checkForConsumableClass(S, cast<CXXMethodDecl>(D), Attr)) 1062 return; 1063 1064 TestTypestateAttr::ConsumedState TestState; 1065 if (Attr.isArgIdent(0)) { 1066 IdentifierLoc *Ident = Attr.getArgAsIdent(0); 1067 StringRef Param = Ident->Ident->getName(); 1068 if (!TestTypestateAttr::ConvertStrToConsumedState(Param, TestState)) { 1069 S.Diag(Ident->Loc, diag::warn_attribute_type_not_supported) 1070 << Attr.getName() << Param; 1071 return; 1072 } 1073 } else { 1074 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << 1075 Attr.getName() << AANT_ArgumentIdentifier; 1076 return; 1077 } 1078 1079 D->addAttr(::new (S.Context) 1080 TestTypestateAttr(Attr.getRange(), S.Context, TestState, 1081 Attr.getAttributeSpellingListIndex())); 1082 } 1083 1084 static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D, 1085 const AttributeList &Attr) { 1086 // Remember this typedef decl, we will need it later for diagnostics. 1087 S.ExtVectorDecls.push_back(cast<TypedefNameDecl>(D)); 1088 } 1089 1090 static void handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1091 if (TagDecl *TD = dyn_cast<TagDecl>(D)) 1092 TD->addAttr(::new (S.Context) PackedAttr(Attr.getRange(), S.Context, 1093 Attr.getAttributeSpellingListIndex())); 1094 else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { 1095 // Report warning about changed offset in the newer compiler versions. 1096 if (!FD->getType()->isDependentType() && 1097 !FD->getType()->isIncompleteType() && FD->isBitField() && 1098 S.Context.getTypeAlign(FD->getType()) <= 8) 1099 S.Diag(Attr.getLoc(), diag::warn_attribute_packed_for_bitfield); 1100 1101 FD->addAttr(::new (S.Context) PackedAttr( 1102 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 1103 } else 1104 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); 1105 } 1106 1107 static bool checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) { 1108 // The IBOutlet/IBOutletCollection attributes only apply to instance 1109 // variables or properties of Objective-C classes. The outlet must also 1110 // have an object reference type. 1111 if (const ObjCIvarDecl *VD = dyn_cast<ObjCIvarDecl>(D)) { 1112 if (!VD->getType()->getAs<ObjCObjectPointerType>()) { 1113 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type) 1114 << Attr.getName() << VD->getType() << 0; 1115 return false; 1116 } 1117 } 1118 else if (const ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) { 1119 if (!PD->getType()->getAs<ObjCObjectPointerType>()) { 1120 S.Diag(Attr.getLoc(), diag::warn_iboutlet_object_type) 1121 << Attr.getName() << PD->getType() << 1; 1122 return false; 1123 } 1124 } 1125 else { 1126 S.Diag(Attr.getLoc(), diag::warn_attribute_iboutlet) << Attr.getName(); 1127 return false; 1128 } 1129 1130 return true; 1131 } 1132 1133 static void handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) { 1134 if (!checkIBOutletCommon(S, D, Attr)) 1135 return; 1136 1137 D->addAttr(::new (S.Context) 1138 IBOutletAttr(Attr.getRange(), S.Context, 1139 Attr.getAttributeSpellingListIndex())); 1140 } 1141 1142 static void handleIBOutletCollection(Sema &S, Decl *D, 1143 const AttributeList &Attr) { 1144 1145 // The iboutletcollection attribute can have zero or one arguments. 1146 if (Attr.getNumArgs() > 1) { 1147 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) 1148 << Attr.getName() << 1; 1149 return; 1150 } 1151 1152 if (!checkIBOutletCommon(S, D, Attr)) 1153 return; 1154 1155 ParsedType PT; 1156 1157 if (Attr.hasParsedType()) 1158 PT = Attr.getTypeArg(); 1159 else { 1160 PT = S.getTypeName(S.Context.Idents.get("NSObject"), Attr.getLoc(), 1161 S.getScopeForContext(D->getDeclContext()->getParent())); 1162 if (!PT) { 1163 S.Diag(Attr.getLoc(), diag::err_iboutletcollection_type) << "NSObject"; 1164 return; 1165 } 1166 } 1167 1168 TypeSourceInfo *QTLoc = nullptr; 1169 QualType QT = S.GetTypeFromParser(PT, &QTLoc); 1170 if (!QTLoc) 1171 QTLoc = S.Context.getTrivialTypeSourceInfo(QT, Attr.getLoc()); 1172 1173 // Diagnose use of non-object type in iboutletcollection attribute. 1174 // FIXME. Gnu attribute extension ignores use of builtin types in 1175 // attributes. So, __attribute__((iboutletcollection(char))) will be 1176 // treated as __attribute__((iboutletcollection())). 1177 if (!QT->isObjCIdType() && !QT->isObjCObjectType()) { 1178 S.Diag(Attr.getLoc(), 1179 QT->isBuiltinType() ? diag::err_iboutletcollection_builtintype 1180 : diag::err_iboutletcollection_type) << QT; 1181 return; 1182 } 1183 1184 D->addAttr(::new (S.Context) 1185 IBOutletCollectionAttr(Attr.getRange(), S.Context, QTLoc, 1186 Attr.getAttributeSpellingListIndex())); 1187 } 1188 1189 bool Sema::isValidPointerAttrType(QualType T, bool RefOkay) { 1190 if (RefOkay) { 1191 if (T->isReferenceType()) 1192 return true; 1193 } else { 1194 T = T.getNonReferenceType(); 1195 } 1196 1197 // The nonnull attribute, and other similar attributes, can be applied to a 1198 // transparent union that contains a pointer type. 1199 if (const RecordType *UT = T->getAsUnionType()) { 1200 if (UT && UT->getDecl()->hasAttr<TransparentUnionAttr>()) { 1201 RecordDecl *UD = UT->getDecl(); 1202 for (const auto *I : UD->fields()) { 1203 QualType QT = I->getType(); 1204 if (QT->isAnyPointerType() || QT->isBlockPointerType()) 1205 return true; 1206 } 1207 } 1208 } 1209 1210 return T->isAnyPointerType() || T->isBlockPointerType(); 1211 } 1212 1213 static bool attrNonNullArgCheck(Sema &S, QualType T, const AttributeList &Attr, 1214 SourceRange AttrParmRange, 1215 SourceRange TypeRange, 1216 bool isReturnValue = false) { 1217 if (!S.isValidPointerAttrType(T)) { 1218 if (isReturnValue) 1219 S.Diag(Attr.getLoc(), diag::warn_attribute_return_pointers_only) 1220 << Attr.getName() << AttrParmRange << TypeRange; 1221 else 1222 S.Diag(Attr.getLoc(), diag::warn_attribute_pointers_only) 1223 << Attr.getName() << AttrParmRange << TypeRange << 0; 1224 return false; 1225 } 1226 return true; 1227 } 1228 1229 static void handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1230 SmallVector<unsigned, 8> NonNullArgs; 1231 for (unsigned I = 0; I < Attr.getNumArgs(); ++I) { 1232 Expr *Ex = Attr.getArgAsExpr(I); 1233 uint64_t Idx; 1234 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, I + 1, Ex, Idx)) 1235 return; 1236 1237 // Is the function argument a pointer type? 1238 if (Idx < getFunctionOrMethodNumParams(D) && 1239 !attrNonNullArgCheck(S, getFunctionOrMethodParamType(D, Idx), Attr, 1240 Ex->getSourceRange(), 1241 getFunctionOrMethodParamRange(D, Idx))) 1242 continue; 1243 1244 NonNullArgs.push_back(Idx); 1245 } 1246 1247 // If no arguments were specified to __attribute__((nonnull)) then all pointer 1248 // arguments have a nonnull attribute; warn if there aren't any. Skip this 1249 // check if the attribute came from a macro expansion or a template 1250 // instantiation. 1251 if (NonNullArgs.empty() && Attr.getLoc().isFileID() && 1252 S.ActiveTemplateInstantiations.empty()) { 1253 bool AnyPointers = isFunctionOrMethodVariadic(D); 1254 for (unsigned I = 0, E = getFunctionOrMethodNumParams(D); 1255 I != E && !AnyPointers; ++I) { 1256 QualType T = getFunctionOrMethodParamType(D, I); 1257 if (T->isDependentType() || S.isValidPointerAttrType(T)) 1258 AnyPointers = true; 1259 } 1260 1261 if (!AnyPointers) 1262 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_no_pointers); 1263 } 1264 1265 unsigned *Start = NonNullArgs.data(); 1266 unsigned Size = NonNullArgs.size(); 1267 llvm::array_pod_sort(Start, Start + Size); 1268 D->addAttr(::new (S.Context) 1269 NonNullAttr(Attr.getRange(), S.Context, Start, Size, 1270 Attr.getAttributeSpellingListIndex())); 1271 } 1272 1273 static void handleNonNullAttrParameter(Sema &S, ParmVarDecl *D, 1274 const AttributeList &Attr) { 1275 if (Attr.getNumArgs() > 0) { 1276 if (D->getFunctionType()) { 1277 handleNonNullAttr(S, D, Attr); 1278 } else { 1279 S.Diag(Attr.getLoc(), diag::warn_attribute_nonnull_parm_no_args) 1280 << D->getSourceRange(); 1281 } 1282 return; 1283 } 1284 1285 // Is the argument a pointer type? 1286 if (!attrNonNullArgCheck(S, D->getType(), Attr, SourceRange(), 1287 D->getSourceRange())) 1288 return; 1289 1290 D->addAttr(::new (S.Context) 1291 NonNullAttr(Attr.getRange(), S.Context, nullptr, 0, 1292 Attr.getAttributeSpellingListIndex())); 1293 } 1294 1295 static void handleReturnsNonNullAttr(Sema &S, Decl *D, 1296 const AttributeList &Attr) { 1297 QualType ResultType = getFunctionOrMethodResultType(D); 1298 SourceRange SR = getFunctionOrMethodResultSourceRange(D); 1299 if (!attrNonNullArgCheck(S, ResultType, Attr, SourceRange(), SR, 1300 /* isReturnValue */ true)) 1301 return; 1302 1303 D->addAttr(::new (S.Context) 1304 ReturnsNonNullAttr(Attr.getRange(), S.Context, 1305 Attr.getAttributeSpellingListIndex())); 1306 } 1307 1308 static void handleAssumeAlignedAttr(Sema &S, Decl *D, 1309 const AttributeList &Attr) { 1310 Expr *E = Attr.getArgAsExpr(0), 1311 *OE = Attr.getNumArgs() > 1 ? Attr.getArgAsExpr(1) : nullptr; 1312 S.AddAssumeAlignedAttr(Attr.getRange(), D, E, OE, 1313 Attr.getAttributeSpellingListIndex()); 1314 } 1315 1316 void Sema::AddAssumeAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E, 1317 Expr *OE, unsigned SpellingListIndex) { 1318 QualType ResultType = getFunctionOrMethodResultType(D); 1319 SourceRange SR = getFunctionOrMethodResultSourceRange(D); 1320 1321 AssumeAlignedAttr TmpAttr(AttrRange, Context, E, OE, SpellingListIndex); 1322 SourceLocation AttrLoc = AttrRange.getBegin(); 1323 1324 if (!isValidPointerAttrType(ResultType, /* RefOkay */ true)) { 1325 Diag(AttrLoc, diag::warn_attribute_return_pointers_refs_only) 1326 << &TmpAttr << AttrRange << SR; 1327 return; 1328 } 1329 1330 if (!E->isValueDependent()) { 1331 llvm::APSInt I(64); 1332 if (!E->isIntegerConstantExpr(I, Context)) { 1333 if (OE) 1334 Diag(AttrLoc, diag::err_attribute_argument_n_type) 1335 << &TmpAttr << 1 << AANT_ArgumentIntegerConstant 1336 << E->getSourceRange(); 1337 else 1338 Diag(AttrLoc, diag::err_attribute_argument_type) 1339 << &TmpAttr << AANT_ArgumentIntegerConstant 1340 << E->getSourceRange(); 1341 return; 1342 } 1343 1344 if (!I.isPowerOf2()) { 1345 Diag(AttrLoc, diag::err_alignment_not_power_of_two) 1346 << E->getSourceRange(); 1347 return; 1348 } 1349 } 1350 1351 if (OE) { 1352 if (!OE->isValueDependent()) { 1353 llvm::APSInt I(64); 1354 if (!OE->isIntegerConstantExpr(I, Context)) { 1355 Diag(AttrLoc, diag::err_attribute_argument_n_type) 1356 << &TmpAttr << 2 << AANT_ArgumentIntegerConstant 1357 << OE->getSourceRange(); 1358 return; 1359 } 1360 } 1361 } 1362 1363 D->addAttr(::new (Context) 1364 AssumeAlignedAttr(AttrRange, Context, E, OE, SpellingListIndex)); 1365 } 1366 1367 /// Normalize the attribute, __foo__ becomes foo. 1368 /// Returns true if normalization was applied. 1369 static bool normalizeName(StringRef &AttrName) { 1370 if (AttrName.size() > 4 && AttrName.startswith("__") && 1371 AttrName.endswith("__")) { 1372 AttrName = AttrName.drop_front(2).drop_back(2); 1373 return true; 1374 } 1375 return false; 1376 } 1377 1378 static void handleOwnershipAttr(Sema &S, Decl *D, const AttributeList &AL) { 1379 // This attribute must be applied to a function declaration. The first 1380 // argument to the attribute must be an identifier, the name of the resource, 1381 // for example: malloc. The following arguments must be argument indexes, the 1382 // arguments must be of integer type for Returns, otherwise of pointer type. 1383 // The difference between Holds and Takes is that a pointer may still be used 1384 // after being held. free() should be __attribute((ownership_takes)), whereas 1385 // a list append function may well be __attribute((ownership_holds)). 1386 1387 if (!AL.isArgIdent(0)) { 1388 S.Diag(AL.getLoc(), diag::err_attribute_argument_n_type) 1389 << AL.getName() << 1 << AANT_ArgumentIdentifier; 1390 return; 1391 } 1392 1393 // Figure out our Kind. 1394 OwnershipAttr::OwnershipKind K = 1395 OwnershipAttr(AL.getLoc(), S.Context, nullptr, nullptr, 0, 1396 AL.getAttributeSpellingListIndex()).getOwnKind(); 1397 1398 // Check arguments. 1399 switch (K) { 1400 case OwnershipAttr::Takes: 1401 case OwnershipAttr::Holds: 1402 if (AL.getNumArgs() < 2) { 1403 S.Diag(AL.getLoc(), diag::err_attribute_too_few_arguments) 1404 << AL.getName() << 2; 1405 return; 1406 } 1407 break; 1408 case OwnershipAttr::Returns: 1409 if (AL.getNumArgs() > 2) { 1410 S.Diag(AL.getLoc(), diag::err_attribute_too_many_arguments) 1411 << AL.getName() << 1; 1412 return; 1413 } 1414 break; 1415 } 1416 1417 IdentifierInfo *Module = AL.getArgAsIdent(0)->Ident; 1418 1419 StringRef ModuleName = Module->getName(); 1420 if (normalizeName(ModuleName)) { 1421 Module = &S.PP.getIdentifierTable().get(ModuleName); 1422 } 1423 1424 SmallVector<unsigned, 8> OwnershipArgs; 1425 for (unsigned i = 1; i < AL.getNumArgs(); ++i) { 1426 Expr *Ex = AL.getArgAsExpr(i); 1427 uint64_t Idx; 1428 if (!checkFunctionOrMethodParameterIndex(S, D, AL, i, Ex, Idx)) 1429 return; 1430 1431 // Is the function argument a pointer type? 1432 QualType T = getFunctionOrMethodParamType(D, Idx); 1433 int Err = -1; // No error 1434 switch (K) { 1435 case OwnershipAttr::Takes: 1436 case OwnershipAttr::Holds: 1437 if (!T->isAnyPointerType() && !T->isBlockPointerType()) 1438 Err = 0; 1439 break; 1440 case OwnershipAttr::Returns: 1441 if (!T->isIntegerType()) 1442 Err = 1; 1443 break; 1444 } 1445 if (-1 != Err) { 1446 S.Diag(AL.getLoc(), diag::err_ownership_type) << AL.getName() << Err 1447 << Ex->getSourceRange(); 1448 return; 1449 } 1450 1451 // Check we don't have a conflict with another ownership attribute. 1452 for (const auto *I : D->specific_attrs<OwnershipAttr>()) { 1453 // Cannot have two ownership attributes of different kinds for the same 1454 // index. 1455 if (I->getOwnKind() != K && I->args_end() != 1456 std::find(I->args_begin(), I->args_end(), Idx)) { 1457 S.Diag(AL.getLoc(), diag::err_attributes_are_not_compatible) 1458 << AL.getName() << I; 1459 return; 1460 } else if (K == OwnershipAttr::Returns && 1461 I->getOwnKind() == OwnershipAttr::Returns) { 1462 // A returns attribute conflicts with any other returns attribute using 1463 // a different index. Note, diagnostic reporting is 1-based, but stored 1464 // argument indexes are 0-based. 1465 if (std::find(I->args_begin(), I->args_end(), Idx) == I->args_end()) { 1466 S.Diag(I->getLocation(), diag::err_ownership_returns_index_mismatch) 1467 << *(I->args_begin()) + 1; 1468 if (I->args_size()) 1469 S.Diag(AL.getLoc(), diag::note_ownership_returns_index_mismatch) 1470 << (unsigned)Idx + 1 << Ex->getSourceRange(); 1471 return; 1472 } 1473 } 1474 } 1475 OwnershipArgs.push_back(Idx); 1476 } 1477 1478 unsigned* start = OwnershipArgs.data(); 1479 unsigned size = OwnershipArgs.size(); 1480 llvm::array_pod_sort(start, start + size); 1481 1482 D->addAttr(::new (S.Context) 1483 OwnershipAttr(AL.getLoc(), S.Context, Module, start, size, 1484 AL.getAttributeSpellingListIndex())); 1485 } 1486 1487 static void handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1488 // Check the attribute arguments. 1489 if (Attr.getNumArgs() > 1) { 1490 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) 1491 << Attr.getName() << 1; 1492 return; 1493 } 1494 1495 NamedDecl *nd = cast<NamedDecl>(D); 1496 1497 // gcc rejects 1498 // class c { 1499 // static int a __attribute__((weakref ("v2"))); 1500 // static int b() __attribute__((weakref ("f3"))); 1501 // }; 1502 // and ignores the attributes of 1503 // void f(void) { 1504 // static int a __attribute__((weakref ("v2"))); 1505 // } 1506 // we reject them 1507 const DeclContext *Ctx = D->getDeclContext()->getRedeclContext(); 1508 if (!Ctx->isFileContext()) { 1509 S.Diag(Attr.getLoc(), diag::err_attribute_weakref_not_global_context) 1510 << nd; 1511 return; 1512 } 1513 1514 // The GCC manual says 1515 // 1516 // At present, a declaration to which `weakref' is attached can only 1517 // be `static'. 1518 // 1519 // It also says 1520 // 1521 // Without a TARGET, 1522 // given as an argument to `weakref' or to `alias', `weakref' is 1523 // equivalent to `weak'. 1524 // 1525 // gcc 4.4.1 will accept 1526 // int a7 __attribute__((weakref)); 1527 // as 1528 // int a7 __attribute__((weak)); 1529 // This looks like a bug in gcc. We reject that for now. We should revisit 1530 // it if this behaviour is actually used. 1531 1532 // GCC rejects 1533 // static ((alias ("y"), weakref)). 1534 // Should we? How to check that weakref is before or after alias? 1535 1536 // FIXME: it would be good for us to keep the WeakRefAttr as-written instead 1537 // of transforming it into an AliasAttr. The WeakRefAttr never uses the 1538 // StringRef parameter it was given anyway. 1539 StringRef Str; 1540 if (Attr.getNumArgs() && S.checkStringLiteralArgumentAttr(Attr, 0, Str)) 1541 // GCC will accept anything as the argument of weakref. Should we 1542 // check for an existing decl? 1543 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, Str, 1544 Attr.getAttributeSpellingListIndex())); 1545 1546 D->addAttr(::new (S.Context) 1547 WeakRefAttr(Attr.getRange(), S.Context, 1548 Attr.getAttributeSpellingListIndex())); 1549 } 1550 1551 static void handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1552 StringRef Str; 1553 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str)) 1554 return; 1555 1556 if (S.Context.getTargetInfo().getTriple().isOSDarwin()) { 1557 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_darwin); 1558 return; 1559 } 1560 if (S.Context.getTargetInfo().getTriple().isNVPTX()) { 1561 S.Diag(Attr.getLoc(), diag::err_alias_not_supported_on_nvptx); 1562 } 1563 1564 // Aliases should be on declarations, not definitions. 1565 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 1566 if (FD->isThisDeclarationADefinition()) { 1567 S.Diag(Attr.getLoc(), diag::err_alias_is_definition) << FD; 1568 return; 1569 } 1570 } else { 1571 const auto *VD = cast<VarDecl>(D); 1572 if (VD->isThisDeclarationADefinition() && VD->isExternallyVisible()) { 1573 S.Diag(Attr.getLoc(), diag::err_alias_is_definition) << VD; 1574 return; 1575 } 1576 } 1577 1578 // FIXME: check if target symbol exists in current file 1579 1580 D->addAttr(::new (S.Context) AliasAttr(Attr.getRange(), S.Context, Str, 1581 Attr.getAttributeSpellingListIndex())); 1582 } 1583 1584 static void handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1585 if (checkAttrMutualExclusion<HotAttr>(S, D, Attr.getRange(), Attr.getName())) 1586 return; 1587 1588 D->addAttr(::new (S.Context) ColdAttr(Attr.getRange(), S.Context, 1589 Attr.getAttributeSpellingListIndex())); 1590 } 1591 1592 static void handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1593 if (checkAttrMutualExclusion<ColdAttr>(S, D, Attr.getRange(), Attr.getName())) 1594 return; 1595 1596 D->addAttr(::new (S.Context) HotAttr(Attr.getRange(), S.Context, 1597 Attr.getAttributeSpellingListIndex())); 1598 } 1599 1600 static void handleTLSModelAttr(Sema &S, Decl *D, 1601 const AttributeList &Attr) { 1602 StringRef Model; 1603 SourceLocation LiteralLoc; 1604 // Check that it is a string. 1605 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Model, &LiteralLoc)) 1606 return; 1607 1608 // Check that the value. 1609 if (Model != "global-dynamic" && Model != "local-dynamic" 1610 && Model != "initial-exec" && Model != "local-exec") { 1611 S.Diag(LiteralLoc, diag::err_attr_tlsmodel_arg); 1612 return; 1613 } 1614 1615 D->addAttr(::new (S.Context) 1616 TLSModelAttr(Attr.getRange(), S.Context, Model, 1617 Attr.getAttributeSpellingListIndex())); 1618 } 1619 1620 static void handleRestrictAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1621 QualType ResultType = getFunctionOrMethodResultType(D); 1622 if (ResultType->isAnyPointerType() || ResultType->isBlockPointerType()) { 1623 D->addAttr(::new (S.Context) RestrictAttr( 1624 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 1625 return; 1626 } 1627 1628 S.Diag(Attr.getLoc(), diag::warn_attribute_return_pointers_only) 1629 << Attr.getName() << getFunctionOrMethodResultSourceRange(D); 1630 } 1631 1632 static void handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1633 if (S.LangOpts.CPlusPlus) { 1634 S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang) 1635 << Attr.getName() << AttributeLangSupport::Cpp; 1636 return; 1637 } 1638 1639 if (CommonAttr *CA = S.mergeCommonAttr(D, Attr.getRange(), Attr.getName(), 1640 Attr.getAttributeSpellingListIndex())) 1641 D->addAttr(CA); 1642 } 1643 1644 static void handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1645 if (checkAttrMutualExclusion<DisableTailCallsAttr>(S, D, Attr.getRange(), 1646 Attr.getName())) 1647 return; 1648 1649 D->addAttr(::new (S.Context) NakedAttr(Attr.getRange(), S.Context, 1650 Attr.getAttributeSpellingListIndex())); 1651 } 1652 1653 static void handleNoReturnAttr(Sema &S, Decl *D, const AttributeList &attr) { 1654 if (hasDeclarator(D)) return; 1655 1656 if (S.CheckNoReturnAttr(attr)) return; 1657 1658 if (!isa<ObjCMethodDecl>(D)) { 1659 S.Diag(attr.getLoc(), diag::warn_attribute_wrong_decl_type) 1660 << attr.getName() << ExpectedFunctionOrMethod; 1661 return; 1662 } 1663 1664 D->addAttr(::new (S.Context) 1665 NoReturnAttr(attr.getRange(), S.Context, 1666 attr.getAttributeSpellingListIndex())); 1667 } 1668 1669 bool Sema::CheckNoReturnAttr(const AttributeList &attr) { 1670 if (!checkAttributeNumArgs(*this, attr, 0)) { 1671 attr.setInvalid(); 1672 return true; 1673 } 1674 1675 return false; 1676 } 1677 1678 static void handleAnalyzerNoReturnAttr(Sema &S, Decl *D, 1679 const AttributeList &Attr) { 1680 1681 // The checking path for 'noreturn' and 'analyzer_noreturn' are different 1682 // because 'analyzer_noreturn' does not impact the type. 1683 if (!isFunctionOrMethodOrBlock(D)) { 1684 ValueDecl *VD = dyn_cast<ValueDecl>(D); 1685 if (!VD || (!VD->getType()->isBlockPointerType() && 1686 !VD->getType()->isFunctionPointerType())) { 1687 S.Diag(Attr.getLoc(), 1688 Attr.isCXX11Attribute() ? diag::err_attribute_wrong_decl_type 1689 : diag::warn_attribute_wrong_decl_type) 1690 << Attr.getName() << ExpectedFunctionMethodOrBlock; 1691 return; 1692 } 1693 } 1694 1695 D->addAttr(::new (S.Context) 1696 AnalyzerNoReturnAttr(Attr.getRange(), S.Context, 1697 Attr.getAttributeSpellingListIndex())); 1698 } 1699 1700 // PS3 PPU-specific. 1701 static void handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1702 /* 1703 Returning a Vector Class in Registers 1704 1705 According to the PPU ABI specifications, a class with a single member of 1706 vector type is returned in memory when used as the return value of a function. 1707 This results in inefficient code when implementing vector classes. To return 1708 the value in a single vector register, add the vecreturn attribute to the 1709 class definition. This attribute is also applicable to struct types. 1710 1711 Example: 1712 1713 struct Vector 1714 { 1715 __vector float xyzw; 1716 } __attribute__((vecreturn)); 1717 1718 Vector Add(Vector lhs, Vector rhs) 1719 { 1720 Vector result; 1721 result.xyzw = vec_add(lhs.xyzw, rhs.xyzw); 1722 return result; // This will be returned in a register 1723 } 1724 */ 1725 if (VecReturnAttr *A = D->getAttr<VecReturnAttr>()) { 1726 S.Diag(Attr.getLoc(), diag::err_repeat_attribute) << A; 1727 return; 1728 } 1729 1730 RecordDecl *record = cast<RecordDecl>(D); 1731 int count = 0; 1732 1733 if (!isa<CXXRecordDecl>(record)) { 1734 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member); 1735 return; 1736 } 1737 1738 if (!cast<CXXRecordDecl>(record)->isPOD()) { 1739 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_pod_record); 1740 return; 1741 } 1742 1743 for (const auto *I : record->fields()) { 1744 if ((count == 1) || !I->getType()->isVectorType()) { 1745 S.Diag(Attr.getLoc(), diag::err_attribute_vecreturn_only_vector_member); 1746 return; 1747 } 1748 count++; 1749 } 1750 1751 D->addAttr(::new (S.Context) 1752 VecReturnAttr(Attr.getRange(), S.Context, 1753 Attr.getAttributeSpellingListIndex())); 1754 } 1755 1756 static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D, 1757 const AttributeList &Attr) { 1758 if (isa<ParmVarDecl>(D)) { 1759 // [[carries_dependency]] can only be applied to a parameter if it is a 1760 // parameter of a function declaration or lambda. 1761 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) { 1762 S.Diag(Attr.getLoc(), 1763 diag::err_carries_dependency_param_not_function_decl); 1764 return; 1765 } 1766 } 1767 1768 D->addAttr(::new (S.Context) CarriesDependencyAttr( 1769 Attr.getRange(), S.Context, 1770 Attr.getAttributeSpellingListIndex())); 1771 } 1772 1773 static void handleNotTailCalledAttr(Sema &S, Decl *D, 1774 const AttributeList &Attr) { 1775 if (checkAttrMutualExclusion<AlwaysInlineAttr>(S, D, Attr.getRange(), 1776 Attr.getName())) 1777 return; 1778 1779 D->addAttr(::new (S.Context) NotTailCalledAttr( 1780 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 1781 } 1782 1783 static void handleDisableTailCallsAttr(Sema &S, Decl *D, 1784 const AttributeList &Attr) { 1785 if (checkAttrMutualExclusion<NakedAttr>(S, D, Attr.getRange(), 1786 Attr.getName())) 1787 return; 1788 1789 D->addAttr(::new (S.Context) DisableTailCallsAttr( 1790 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 1791 } 1792 1793 static void handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1794 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 1795 if (VD->hasLocalStorage()) { 1796 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); 1797 return; 1798 } 1799 } else if (!isFunctionOrMethod(D)) { 1800 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 1801 << Attr.getName() << ExpectedVariableOrFunction; 1802 return; 1803 } 1804 1805 D->addAttr(::new (S.Context) 1806 UsedAttr(Attr.getRange(), S.Context, 1807 Attr.getAttributeSpellingListIndex())); 1808 } 1809 1810 static void handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1811 uint32_t priority = ConstructorAttr::DefaultPriority; 1812 if (Attr.getNumArgs() && 1813 !checkUInt32Argument(S, Attr, Attr.getArgAsExpr(0), priority)) 1814 return; 1815 1816 D->addAttr(::new (S.Context) 1817 ConstructorAttr(Attr.getRange(), S.Context, priority, 1818 Attr.getAttributeSpellingListIndex())); 1819 } 1820 1821 static void handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) { 1822 uint32_t priority = DestructorAttr::DefaultPriority; 1823 if (Attr.getNumArgs() && 1824 !checkUInt32Argument(S, Attr, Attr.getArgAsExpr(0), priority)) 1825 return; 1826 1827 D->addAttr(::new (S.Context) 1828 DestructorAttr(Attr.getRange(), S.Context, priority, 1829 Attr.getAttributeSpellingListIndex())); 1830 } 1831 1832 template <typename AttrTy> 1833 static void handleAttrWithMessage(Sema &S, Decl *D, 1834 const AttributeList &Attr) { 1835 // Handle the case where the attribute has a text message. 1836 StringRef Str; 1837 if (Attr.getNumArgs() == 1 && !S.checkStringLiteralArgumentAttr(Attr, 0, Str)) 1838 return; 1839 1840 D->addAttr(::new (S.Context) AttrTy(Attr.getRange(), S.Context, Str, 1841 Attr.getAttributeSpellingListIndex())); 1842 } 1843 1844 static void handleObjCSuppresProtocolAttr(Sema &S, Decl *D, 1845 const AttributeList &Attr) { 1846 if (!cast<ObjCProtocolDecl>(D)->isThisDeclarationADefinition()) { 1847 S.Diag(Attr.getLoc(), diag::err_objc_attr_protocol_requires_definition) 1848 << Attr.getName() << Attr.getRange(); 1849 return; 1850 } 1851 1852 D->addAttr(::new (S.Context) 1853 ObjCExplicitProtocolImplAttr(Attr.getRange(), S.Context, 1854 Attr.getAttributeSpellingListIndex())); 1855 } 1856 1857 static bool checkAvailabilityAttr(Sema &S, SourceRange Range, 1858 IdentifierInfo *Platform, 1859 VersionTuple Introduced, 1860 VersionTuple Deprecated, 1861 VersionTuple Obsoleted) { 1862 StringRef PlatformName 1863 = AvailabilityAttr::getPrettyPlatformName(Platform->getName()); 1864 if (PlatformName.empty()) 1865 PlatformName = Platform->getName(); 1866 1867 // Ensure that Introduced <= Deprecated <= Obsoleted (although not all 1868 // of these steps are needed). 1869 if (!Introduced.empty() && !Deprecated.empty() && 1870 !(Introduced <= Deprecated)) { 1871 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) 1872 << 1 << PlatformName << Deprecated.getAsString() 1873 << 0 << Introduced.getAsString(); 1874 return true; 1875 } 1876 1877 if (!Introduced.empty() && !Obsoleted.empty() && 1878 !(Introduced <= Obsoleted)) { 1879 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) 1880 << 2 << PlatformName << Obsoleted.getAsString() 1881 << 0 << Introduced.getAsString(); 1882 return true; 1883 } 1884 1885 if (!Deprecated.empty() && !Obsoleted.empty() && 1886 !(Deprecated <= Obsoleted)) { 1887 S.Diag(Range.getBegin(), diag::warn_availability_version_ordering) 1888 << 2 << PlatformName << Obsoleted.getAsString() 1889 << 1 << Deprecated.getAsString(); 1890 return true; 1891 } 1892 1893 return false; 1894 } 1895 1896 /// \brief Check whether the two versions match. 1897 /// 1898 /// If either version tuple is empty, then they are assumed to match. If 1899 /// \p BeforeIsOkay is true, then \p X can be less than or equal to \p Y. 1900 static bool versionsMatch(const VersionTuple &X, const VersionTuple &Y, 1901 bool BeforeIsOkay) { 1902 if (X.empty() || Y.empty()) 1903 return true; 1904 1905 if (X == Y) 1906 return true; 1907 1908 if (BeforeIsOkay && X < Y) 1909 return true; 1910 1911 return false; 1912 } 1913 1914 AvailabilityAttr *Sema::mergeAvailabilityAttr(NamedDecl *D, SourceRange Range, 1915 IdentifierInfo *Platform, 1916 VersionTuple Introduced, 1917 VersionTuple Deprecated, 1918 VersionTuple Obsoleted, 1919 bool IsUnavailable, 1920 StringRef Message, 1921 bool IsStrict, 1922 AvailabilityMergeKind AMK, 1923 unsigned AttrSpellingListIndex) { 1924 VersionTuple MergedIntroduced = Introduced; 1925 VersionTuple MergedDeprecated = Deprecated; 1926 VersionTuple MergedObsoleted = Obsoleted; 1927 bool FoundAny = false; 1928 bool OverrideOrImpl = false; 1929 switch (AMK) { 1930 case AMK_None: 1931 case AMK_Redeclaration: 1932 OverrideOrImpl = false; 1933 break; 1934 1935 case AMK_Override: 1936 case AMK_ProtocolImplementation: 1937 OverrideOrImpl = true; 1938 break; 1939 } 1940 1941 if (D->hasAttrs()) { 1942 AttrVec &Attrs = D->getAttrs(); 1943 for (unsigned i = 0, e = Attrs.size(); i != e;) { 1944 const AvailabilityAttr *OldAA = dyn_cast<AvailabilityAttr>(Attrs[i]); 1945 if (!OldAA) { 1946 ++i; 1947 continue; 1948 } 1949 1950 IdentifierInfo *OldPlatform = OldAA->getPlatform(); 1951 if (OldPlatform != Platform) { 1952 ++i; 1953 continue; 1954 } 1955 1956 // If there is an existing availability attribute for this platform that 1957 // is explicit and the new one is implicit use the explicit one and 1958 // discard the new implicit attribute. 1959 if (OldAA->getRange().isValid() && Range.isInvalid()) { 1960 return nullptr; 1961 } 1962 1963 // If there is an existing attribute for this platform that is implicit 1964 // and the new attribute is explicit then erase the old one and 1965 // continue processing the attributes. 1966 if (Range.isValid() && OldAA->getRange().isInvalid()) { 1967 Attrs.erase(Attrs.begin() + i); 1968 --e; 1969 continue; 1970 } 1971 1972 FoundAny = true; 1973 VersionTuple OldIntroduced = OldAA->getIntroduced(); 1974 VersionTuple OldDeprecated = OldAA->getDeprecated(); 1975 VersionTuple OldObsoleted = OldAA->getObsoleted(); 1976 bool OldIsUnavailable = OldAA->getUnavailable(); 1977 1978 if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl) || 1979 !versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl) || 1980 !versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl) || 1981 !(OldIsUnavailable == IsUnavailable || 1982 (OverrideOrImpl && !OldIsUnavailable && IsUnavailable))) { 1983 if (OverrideOrImpl) { 1984 int Which = -1; 1985 VersionTuple FirstVersion; 1986 VersionTuple SecondVersion; 1987 if (!versionsMatch(OldIntroduced, Introduced, OverrideOrImpl)) { 1988 Which = 0; 1989 FirstVersion = OldIntroduced; 1990 SecondVersion = Introduced; 1991 } else if (!versionsMatch(Deprecated, OldDeprecated, OverrideOrImpl)) { 1992 Which = 1; 1993 FirstVersion = Deprecated; 1994 SecondVersion = OldDeprecated; 1995 } else if (!versionsMatch(Obsoleted, OldObsoleted, OverrideOrImpl)) { 1996 Which = 2; 1997 FirstVersion = Obsoleted; 1998 SecondVersion = OldObsoleted; 1999 } 2000 2001 if (Which == -1) { 2002 Diag(OldAA->getLocation(), 2003 diag::warn_mismatched_availability_override_unavail) 2004 << AvailabilityAttr::getPrettyPlatformName(Platform->getName()) 2005 << (AMK == AMK_Override); 2006 } else { 2007 Diag(OldAA->getLocation(), 2008 diag::warn_mismatched_availability_override) 2009 << Which 2010 << AvailabilityAttr::getPrettyPlatformName(Platform->getName()) 2011 << FirstVersion.getAsString() << SecondVersion.getAsString() 2012 << (AMK == AMK_Override); 2013 } 2014 if (AMK == AMK_Override) 2015 Diag(Range.getBegin(), diag::note_overridden_method); 2016 else 2017 Diag(Range.getBegin(), diag::note_protocol_method); 2018 } else { 2019 Diag(OldAA->getLocation(), diag::warn_mismatched_availability); 2020 Diag(Range.getBegin(), diag::note_previous_attribute); 2021 } 2022 2023 Attrs.erase(Attrs.begin() + i); 2024 --e; 2025 continue; 2026 } 2027 2028 VersionTuple MergedIntroduced2 = MergedIntroduced; 2029 VersionTuple MergedDeprecated2 = MergedDeprecated; 2030 VersionTuple MergedObsoleted2 = MergedObsoleted; 2031 2032 if (MergedIntroduced2.empty()) 2033 MergedIntroduced2 = OldIntroduced; 2034 if (MergedDeprecated2.empty()) 2035 MergedDeprecated2 = OldDeprecated; 2036 if (MergedObsoleted2.empty()) 2037 MergedObsoleted2 = OldObsoleted; 2038 2039 if (checkAvailabilityAttr(*this, OldAA->getRange(), Platform, 2040 MergedIntroduced2, MergedDeprecated2, 2041 MergedObsoleted2)) { 2042 Attrs.erase(Attrs.begin() + i); 2043 --e; 2044 continue; 2045 } 2046 2047 MergedIntroduced = MergedIntroduced2; 2048 MergedDeprecated = MergedDeprecated2; 2049 MergedObsoleted = MergedObsoleted2; 2050 ++i; 2051 } 2052 } 2053 2054 if (FoundAny && 2055 MergedIntroduced == Introduced && 2056 MergedDeprecated == Deprecated && 2057 MergedObsoleted == Obsoleted) 2058 return nullptr; 2059 2060 // Only create a new attribute if !OverrideOrImpl, but we want to do 2061 // the checking. 2062 if (!checkAvailabilityAttr(*this, Range, Platform, MergedIntroduced, 2063 MergedDeprecated, MergedObsoleted) && 2064 !OverrideOrImpl) { 2065 return ::new (Context) AvailabilityAttr(Range, Context, Platform, 2066 Introduced, Deprecated, 2067 Obsoleted, IsUnavailable, Message, 2068 IsStrict, AttrSpellingListIndex); 2069 } 2070 return nullptr; 2071 } 2072 2073 static void handleAvailabilityAttr(Sema &S, Decl *D, 2074 const AttributeList &Attr) { 2075 if (!checkAttributeNumArgs(S, Attr, 1)) 2076 return; 2077 IdentifierLoc *Platform = Attr.getArgAsIdent(0); 2078 unsigned Index = Attr.getAttributeSpellingListIndex(); 2079 2080 IdentifierInfo *II = Platform->Ident; 2081 if (AvailabilityAttr::getPrettyPlatformName(II->getName()).empty()) 2082 S.Diag(Platform->Loc, diag::warn_availability_unknown_platform) 2083 << Platform->Ident; 2084 2085 NamedDecl *ND = dyn_cast<NamedDecl>(D); 2086 if (!ND) { 2087 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); 2088 return; 2089 } 2090 2091 AvailabilityChange Introduced = Attr.getAvailabilityIntroduced(); 2092 AvailabilityChange Deprecated = Attr.getAvailabilityDeprecated(); 2093 AvailabilityChange Obsoleted = Attr.getAvailabilityObsoleted(); 2094 bool IsUnavailable = Attr.getUnavailableLoc().isValid(); 2095 bool IsStrict = Attr.getStrictLoc().isValid(); 2096 StringRef Str; 2097 if (const StringLiteral *SE = 2098 dyn_cast_or_null<StringLiteral>(Attr.getMessageExpr())) 2099 Str = SE->getString(); 2100 2101 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, Attr.getRange(), II, 2102 Introduced.Version, 2103 Deprecated.Version, 2104 Obsoleted.Version, 2105 IsUnavailable, Str, 2106 IsStrict, 2107 Sema::AMK_None, 2108 Index); 2109 if (NewAttr) 2110 D->addAttr(NewAttr); 2111 2112 // Transcribe "ios" to "watchos" (and add a new attribute) if the versioning 2113 // matches before the start of the watchOS platform. 2114 if (S.Context.getTargetInfo().getTriple().isWatchOS()) { 2115 IdentifierInfo *NewII = nullptr; 2116 if (II->getName() == "ios") 2117 NewII = &S.Context.Idents.get("watchos"); 2118 else if (II->getName() == "ios_app_extension") 2119 NewII = &S.Context.Idents.get("watchos_app_extension"); 2120 2121 if (NewII) { 2122 auto adjustWatchOSVersion = [](VersionTuple Version) -> VersionTuple { 2123 if (Version.empty()) 2124 return Version; 2125 auto Major = Version.getMajor(); 2126 auto NewMajor = Major >= 9 ? Major - 7 : 0; 2127 if (NewMajor >= 2) { 2128 if (Version.getMinor().hasValue()) { 2129 if (Version.getSubminor().hasValue()) 2130 return VersionTuple(NewMajor, Version.getMinor().getValue(), 2131 Version.getSubminor().getValue()); 2132 else 2133 return VersionTuple(NewMajor, Version.getMinor().getValue()); 2134 } 2135 } 2136 2137 return VersionTuple(2, 0); 2138 }; 2139 2140 auto NewIntroduced = adjustWatchOSVersion(Introduced.Version); 2141 auto NewDeprecated = adjustWatchOSVersion(Deprecated.Version); 2142 auto NewObsoleted = adjustWatchOSVersion(Obsoleted.Version); 2143 2144 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, 2145 SourceRange(), 2146 NewII, 2147 NewIntroduced, 2148 NewDeprecated, 2149 NewObsoleted, 2150 IsUnavailable, Str, 2151 IsStrict, 2152 Sema::AMK_None, 2153 Index); 2154 if (NewAttr) 2155 D->addAttr(NewAttr); 2156 } 2157 } else if (S.Context.getTargetInfo().getTriple().isTvOS()) { 2158 // Transcribe "ios" to "tvos" (and add a new attribute) if the versioning 2159 // matches before the start of the tvOS platform. 2160 IdentifierInfo *NewII = nullptr; 2161 if (II->getName() == "ios") 2162 NewII = &S.Context.Idents.get("tvos"); 2163 else if (II->getName() == "ios_app_extension") 2164 NewII = &S.Context.Idents.get("tvos_app_extension"); 2165 2166 if (NewII) { 2167 AvailabilityAttr *NewAttr = S.mergeAvailabilityAttr(ND, 2168 SourceRange(), 2169 NewII, 2170 Introduced.Version, 2171 Deprecated.Version, 2172 Obsoleted.Version, 2173 IsUnavailable, Str, 2174 IsStrict, 2175 Sema::AMK_None, 2176 Index); 2177 if (NewAttr) 2178 D->addAttr(NewAttr); 2179 } 2180 } 2181 } 2182 2183 template <class T> 2184 static T *mergeVisibilityAttr(Sema &S, Decl *D, SourceRange range, 2185 typename T::VisibilityType value, 2186 unsigned attrSpellingListIndex) { 2187 T *existingAttr = D->getAttr<T>(); 2188 if (existingAttr) { 2189 typename T::VisibilityType existingValue = existingAttr->getVisibility(); 2190 if (existingValue == value) 2191 return nullptr; 2192 S.Diag(existingAttr->getLocation(), diag::err_mismatched_visibility); 2193 S.Diag(range.getBegin(), diag::note_previous_attribute); 2194 D->dropAttr<T>(); 2195 } 2196 return ::new (S.Context) T(range, S.Context, value, attrSpellingListIndex); 2197 } 2198 2199 VisibilityAttr *Sema::mergeVisibilityAttr(Decl *D, SourceRange Range, 2200 VisibilityAttr::VisibilityType Vis, 2201 unsigned AttrSpellingListIndex) { 2202 return ::mergeVisibilityAttr<VisibilityAttr>(*this, D, Range, Vis, 2203 AttrSpellingListIndex); 2204 } 2205 2206 TypeVisibilityAttr *Sema::mergeTypeVisibilityAttr(Decl *D, SourceRange Range, 2207 TypeVisibilityAttr::VisibilityType Vis, 2208 unsigned AttrSpellingListIndex) { 2209 return ::mergeVisibilityAttr<TypeVisibilityAttr>(*this, D, Range, Vis, 2210 AttrSpellingListIndex); 2211 } 2212 2213 static void handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr, 2214 bool isTypeVisibility) { 2215 // Visibility attributes don't mean anything on a typedef. 2216 if (isa<TypedefNameDecl>(D)) { 2217 S.Diag(Attr.getRange().getBegin(), diag::warn_attribute_ignored) 2218 << Attr.getName(); 2219 return; 2220 } 2221 2222 // 'type_visibility' can only go on a type or namespace. 2223 if (isTypeVisibility && 2224 !(isa<TagDecl>(D) || 2225 isa<ObjCInterfaceDecl>(D) || 2226 isa<NamespaceDecl>(D))) { 2227 S.Diag(Attr.getRange().getBegin(), diag::err_attribute_wrong_decl_type) 2228 << Attr.getName() << ExpectedTypeOrNamespace; 2229 return; 2230 } 2231 2232 // Check that the argument is a string literal. 2233 StringRef TypeStr; 2234 SourceLocation LiteralLoc; 2235 if (!S.checkStringLiteralArgumentAttr(Attr, 0, TypeStr, &LiteralLoc)) 2236 return; 2237 2238 VisibilityAttr::VisibilityType type; 2239 if (!VisibilityAttr::ConvertStrToVisibilityType(TypeStr, type)) { 2240 S.Diag(LiteralLoc, diag::warn_attribute_type_not_supported) 2241 << Attr.getName() << TypeStr; 2242 return; 2243 } 2244 2245 // Complain about attempts to use protected visibility on targets 2246 // (like Darwin) that don't support it. 2247 if (type == VisibilityAttr::Protected && 2248 !S.Context.getTargetInfo().hasProtectedVisibility()) { 2249 S.Diag(Attr.getLoc(), diag::warn_attribute_protected_visibility); 2250 type = VisibilityAttr::Default; 2251 } 2252 2253 unsigned Index = Attr.getAttributeSpellingListIndex(); 2254 clang::Attr *newAttr; 2255 if (isTypeVisibility) { 2256 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(), 2257 (TypeVisibilityAttr::VisibilityType) type, 2258 Index); 2259 } else { 2260 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index); 2261 } 2262 if (newAttr) 2263 D->addAttr(newAttr); 2264 } 2265 2266 static void handleObjCMethodFamilyAttr(Sema &S, Decl *decl, 2267 const AttributeList &Attr) { 2268 ObjCMethodDecl *method = cast<ObjCMethodDecl>(decl); 2269 if (!Attr.isArgIdent(0)) { 2270 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 2271 << Attr.getName() << 1 << AANT_ArgumentIdentifier; 2272 return; 2273 } 2274 2275 IdentifierLoc *IL = Attr.getArgAsIdent(0); 2276 ObjCMethodFamilyAttr::FamilyKind F; 2277 if (!ObjCMethodFamilyAttr::ConvertStrToFamilyKind(IL->Ident->getName(), F)) { 2278 S.Diag(IL->Loc, diag::warn_attribute_type_not_supported) << Attr.getName() 2279 << IL->Ident; 2280 return; 2281 } 2282 2283 if (F == ObjCMethodFamilyAttr::OMF_init && 2284 !method->getReturnType()->isObjCObjectPointerType()) { 2285 S.Diag(method->getLocation(), diag::err_init_method_bad_return_type) 2286 << method->getReturnType(); 2287 // Ignore the attribute. 2288 return; 2289 } 2290 2291 method->addAttr(new (S.Context) ObjCMethodFamilyAttr(Attr.getRange(), 2292 S.Context, F, 2293 Attr.getAttributeSpellingListIndex())); 2294 } 2295 2296 static void handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) { 2297 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) { 2298 QualType T = TD->getUnderlyingType(); 2299 if (!T->isCARCBridgableType()) { 2300 S.Diag(TD->getLocation(), diag::err_nsobject_attribute); 2301 return; 2302 } 2303 } 2304 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) { 2305 QualType T = PD->getType(); 2306 if (!T->isCARCBridgableType()) { 2307 S.Diag(PD->getLocation(), diag::err_nsobject_attribute); 2308 return; 2309 } 2310 } 2311 else { 2312 // It is okay to include this attribute on properties, e.g.: 2313 // 2314 // @property (retain, nonatomic) struct Bork *Q __attribute__((NSObject)); 2315 // 2316 // In this case it follows tradition and suppresses an error in the above 2317 // case. 2318 S.Diag(D->getLocation(), diag::warn_nsobject_attribute); 2319 } 2320 D->addAttr(::new (S.Context) 2321 ObjCNSObjectAttr(Attr.getRange(), S.Context, 2322 Attr.getAttributeSpellingListIndex())); 2323 } 2324 2325 static void handleObjCIndependentClass(Sema &S, Decl *D, const AttributeList &Attr) { 2326 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) { 2327 QualType T = TD->getUnderlyingType(); 2328 if (!T->isObjCObjectPointerType()) { 2329 S.Diag(TD->getLocation(), diag::warn_ptr_independentclass_attribute); 2330 return; 2331 } 2332 } else { 2333 S.Diag(D->getLocation(), diag::warn_independentclass_attribute); 2334 return; 2335 } 2336 D->addAttr(::new (S.Context) 2337 ObjCIndependentClassAttr(Attr.getRange(), S.Context, 2338 Attr.getAttributeSpellingListIndex())); 2339 } 2340 2341 static void handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) { 2342 if (!Attr.isArgIdent(0)) { 2343 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 2344 << Attr.getName() << 1 << AANT_ArgumentIdentifier; 2345 return; 2346 } 2347 2348 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident; 2349 BlocksAttr::BlockType type; 2350 if (!BlocksAttr::ConvertStrToBlockType(II->getName(), type)) { 2351 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) 2352 << Attr.getName() << II; 2353 return; 2354 } 2355 2356 D->addAttr(::new (S.Context) 2357 BlocksAttr(Attr.getRange(), S.Context, type, 2358 Attr.getAttributeSpellingListIndex())); 2359 } 2360 2361 static void handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) { 2362 unsigned sentinel = (unsigned)SentinelAttr::DefaultSentinel; 2363 if (Attr.getNumArgs() > 0) { 2364 Expr *E = Attr.getArgAsExpr(0); 2365 llvm::APSInt Idx(32); 2366 if (E->isTypeDependent() || E->isValueDependent() || 2367 !E->isIntegerConstantExpr(Idx, S.Context)) { 2368 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 2369 << Attr.getName() << 1 << AANT_ArgumentIntegerConstant 2370 << E->getSourceRange(); 2371 return; 2372 } 2373 2374 if (Idx.isSigned() && Idx.isNegative()) { 2375 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_less_than_zero) 2376 << E->getSourceRange(); 2377 return; 2378 } 2379 2380 sentinel = Idx.getZExtValue(); 2381 } 2382 2383 unsigned nullPos = (unsigned)SentinelAttr::DefaultNullPos; 2384 if (Attr.getNumArgs() > 1) { 2385 Expr *E = Attr.getArgAsExpr(1); 2386 llvm::APSInt Idx(32); 2387 if (E->isTypeDependent() || E->isValueDependent() || 2388 !E->isIntegerConstantExpr(Idx, S.Context)) { 2389 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 2390 << Attr.getName() << 2 << AANT_ArgumentIntegerConstant 2391 << E->getSourceRange(); 2392 return; 2393 } 2394 nullPos = Idx.getZExtValue(); 2395 2396 if ((Idx.isSigned() && Idx.isNegative()) || nullPos > 1) { 2397 // FIXME: This error message could be improved, it would be nice 2398 // to say what the bounds actually are. 2399 S.Diag(Attr.getLoc(), diag::err_attribute_sentinel_not_zero_or_one) 2400 << E->getSourceRange(); 2401 return; 2402 } 2403 } 2404 2405 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 2406 const FunctionType *FT = FD->getType()->castAs<FunctionType>(); 2407 if (isa<FunctionNoProtoType>(FT)) { 2408 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_named_arguments); 2409 return; 2410 } 2411 2412 if (!cast<FunctionProtoType>(FT)->isVariadic()) { 2413 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0; 2414 return; 2415 } 2416 } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { 2417 if (!MD->isVariadic()) { 2418 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 0; 2419 return; 2420 } 2421 } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) { 2422 if (!BD->isVariadic()) { 2423 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << 1; 2424 return; 2425 } 2426 } else if (const VarDecl *V = dyn_cast<VarDecl>(D)) { 2427 QualType Ty = V->getType(); 2428 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { 2429 const FunctionType *FT = Ty->isFunctionPointerType() 2430 ? D->getFunctionType() 2431 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>(); 2432 if (!cast<FunctionProtoType>(FT)->isVariadic()) { 2433 int m = Ty->isFunctionPointerType() ? 0 : 1; 2434 S.Diag(Attr.getLoc(), diag::warn_attribute_sentinel_not_variadic) << m; 2435 return; 2436 } 2437 } else { 2438 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 2439 << Attr.getName() << ExpectedFunctionMethodOrBlock; 2440 return; 2441 } 2442 } else { 2443 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 2444 << Attr.getName() << ExpectedFunctionMethodOrBlock; 2445 return; 2446 } 2447 D->addAttr(::new (S.Context) 2448 SentinelAttr(Attr.getRange(), S.Context, sentinel, nullPos, 2449 Attr.getAttributeSpellingListIndex())); 2450 } 2451 2452 static void handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) { 2453 if (D->getFunctionType() && 2454 D->getFunctionType()->getReturnType()->isVoidType()) { 2455 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method) 2456 << Attr.getName() << 0; 2457 return; 2458 } 2459 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) 2460 if (MD->getReturnType()->isVoidType()) { 2461 S.Diag(Attr.getLoc(), diag::warn_attribute_void_function_method) 2462 << Attr.getName() << 1; 2463 return; 2464 } 2465 2466 D->addAttr(::new (S.Context) 2467 WarnUnusedResultAttr(Attr.getRange(), S.Context, 2468 Attr.getAttributeSpellingListIndex())); 2469 } 2470 2471 static void handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) { 2472 // weak_import only applies to variable & function declarations. 2473 bool isDef = false; 2474 if (!D->canBeWeakImported(isDef)) { 2475 if (isDef) 2476 S.Diag(Attr.getLoc(), diag::warn_attribute_invalid_on_definition) 2477 << "weak_import"; 2478 else if (isa<ObjCPropertyDecl>(D) || isa<ObjCMethodDecl>(D) || 2479 (S.Context.getTargetInfo().getTriple().isOSDarwin() && 2480 (isa<ObjCInterfaceDecl>(D) || isa<EnumDecl>(D)))) { 2481 // Nothing to warn about here. 2482 } else 2483 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 2484 << Attr.getName() << ExpectedVariableOrFunction; 2485 2486 return; 2487 } 2488 2489 D->addAttr(::new (S.Context) 2490 WeakImportAttr(Attr.getRange(), S.Context, 2491 Attr.getAttributeSpellingListIndex())); 2492 } 2493 2494 // Handles reqd_work_group_size and work_group_size_hint. 2495 template <typename WorkGroupAttr> 2496 static void handleWorkGroupSize(Sema &S, Decl *D, 2497 const AttributeList &Attr) { 2498 uint32_t WGSize[3]; 2499 for (unsigned i = 0; i < 3; ++i) { 2500 const Expr *E = Attr.getArgAsExpr(i); 2501 if (!checkUInt32Argument(S, Attr, E, WGSize[i], i)) 2502 return; 2503 if (WGSize[i] == 0) { 2504 S.Diag(Attr.getLoc(), diag::err_attribute_argument_is_zero) 2505 << Attr.getName() << E->getSourceRange(); 2506 return; 2507 } 2508 } 2509 2510 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>(); 2511 if (Existing && !(Existing->getXDim() == WGSize[0] && 2512 Existing->getYDim() == WGSize[1] && 2513 Existing->getZDim() == WGSize[2])) 2514 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName(); 2515 2516 D->addAttr(::new (S.Context) WorkGroupAttr(Attr.getRange(), S.Context, 2517 WGSize[0], WGSize[1], WGSize[2], 2518 Attr.getAttributeSpellingListIndex())); 2519 } 2520 2521 static void handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) { 2522 if (!Attr.hasParsedType()) { 2523 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) 2524 << Attr.getName() << 1; 2525 return; 2526 } 2527 2528 TypeSourceInfo *ParmTSI = nullptr; 2529 QualType ParmType = S.GetTypeFromParser(Attr.getTypeArg(), &ParmTSI); 2530 assert(ParmTSI && "no type source info for attribute argument"); 2531 2532 if (!ParmType->isExtVectorType() && !ParmType->isFloatingType() && 2533 (ParmType->isBooleanType() || 2534 !ParmType->isIntegralType(S.getASTContext()))) { 2535 S.Diag(Attr.getLoc(), diag::err_attribute_argument_vec_type_hint) 2536 << ParmType; 2537 return; 2538 } 2539 2540 if (VecTypeHintAttr *A = D->getAttr<VecTypeHintAttr>()) { 2541 if (!S.Context.hasSameType(A->getTypeHint(), ParmType)) { 2542 S.Diag(Attr.getLoc(), diag::warn_duplicate_attribute) << Attr.getName(); 2543 return; 2544 } 2545 } 2546 2547 D->addAttr(::new (S.Context) VecTypeHintAttr(Attr.getLoc(), S.Context, 2548 ParmTSI, 2549 Attr.getAttributeSpellingListIndex())); 2550 } 2551 2552 SectionAttr *Sema::mergeSectionAttr(Decl *D, SourceRange Range, 2553 StringRef Name, 2554 unsigned AttrSpellingListIndex) { 2555 if (SectionAttr *ExistingAttr = D->getAttr<SectionAttr>()) { 2556 if (ExistingAttr->getName() == Name) 2557 return nullptr; 2558 Diag(ExistingAttr->getLocation(), diag::warn_mismatched_section); 2559 Diag(Range.getBegin(), diag::note_previous_attribute); 2560 return nullptr; 2561 } 2562 return ::new (Context) SectionAttr(Range, Context, Name, 2563 AttrSpellingListIndex); 2564 } 2565 2566 bool Sema::checkSectionName(SourceLocation LiteralLoc, StringRef SecName) { 2567 std::string Error = Context.getTargetInfo().isValidSectionSpecifier(SecName); 2568 if (!Error.empty()) { 2569 Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) << Error; 2570 return false; 2571 } 2572 return true; 2573 } 2574 2575 static void handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) { 2576 // Make sure that there is a string literal as the sections's single 2577 // argument. 2578 StringRef Str; 2579 SourceLocation LiteralLoc; 2580 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &LiteralLoc)) 2581 return; 2582 2583 if (!S.checkSectionName(LiteralLoc, Str)) 2584 return; 2585 2586 // If the target wants to validate the section specifier, make it happen. 2587 std::string Error = S.Context.getTargetInfo().isValidSectionSpecifier(Str); 2588 if (!Error.empty()) { 2589 S.Diag(LiteralLoc, diag::err_attribute_section_invalid_for_target) 2590 << Error; 2591 return; 2592 } 2593 2594 unsigned Index = Attr.getAttributeSpellingListIndex(); 2595 SectionAttr *NewAttr = S.mergeSectionAttr(D, Attr.getRange(), Str, Index); 2596 if (NewAttr) 2597 D->addAttr(NewAttr); 2598 } 2599 2600 // Check for things we'd like to warn about, no errors or validation for now. 2601 // TODO: Validation should use a backend target library that specifies 2602 // the allowable subtarget features and cpus. We could use something like a 2603 // TargetCodeGenInfo hook here to do validation. 2604 void Sema::checkTargetAttr(SourceLocation LiteralLoc, StringRef AttrStr) { 2605 for (auto Str : {"tune=", "fpmath="}) 2606 if (AttrStr.find(Str) != StringRef::npos) 2607 Diag(LiteralLoc, diag::warn_unsupported_target_attribute) << Str; 2608 } 2609 2610 static void handleTargetAttr(Sema &S, Decl *D, const AttributeList &Attr) { 2611 StringRef Str; 2612 SourceLocation LiteralLoc; 2613 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &LiteralLoc)) 2614 return; 2615 S.checkTargetAttr(LiteralLoc, Str); 2616 unsigned Index = Attr.getAttributeSpellingListIndex(); 2617 TargetAttr *NewAttr = 2618 ::new (S.Context) TargetAttr(Attr.getRange(), S.Context, Str, Index); 2619 D->addAttr(NewAttr); 2620 } 2621 2622 static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) { 2623 VarDecl *VD = cast<VarDecl>(D); 2624 if (!VD->hasLocalStorage()) { 2625 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); 2626 return; 2627 } 2628 2629 Expr *E = Attr.getArgAsExpr(0); 2630 SourceLocation Loc = E->getExprLoc(); 2631 FunctionDecl *FD = nullptr; 2632 DeclarationNameInfo NI; 2633 2634 // gcc only allows for simple identifiers. Since we support more than gcc, we 2635 // will warn the user. 2636 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { 2637 if (DRE->hasQualifier()) 2638 S.Diag(Loc, diag::warn_cleanup_ext); 2639 FD = dyn_cast<FunctionDecl>(DRE->getDecl()); 2640 NI = DRE->getNameInfo(); 2641 if (!FD) { 2642 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 1 2643 << NI.getName(); 2644 return; 2645 } 2646 } else if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) { 2647 if (ULE->hasExplicitTemplateArgs()) 2648 S.Diag(Loc, diag::warn_cleanup_ext); 2649 FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true); 2650 NI = ULE->getNameInfo(); 2651 if (!FD) { 2652 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 2 2653 << NI.getName(); 2654 if (ULE->getType() == S.Context.OverloadTy) 2655 S.NoteAllOverloadCandidates(ULE); 2656 return; 2657 } 2658 } else { 2659 S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0; 2660 return; 2661 } 2662 2663 if (FD->getNumParams() != 1) { 2664 S.Diag(Loc, diag::err_attribute_cleanup_func_must_take_one_arg) 2665 << NI.getName(); 2666 return; 2667 } 2668 2669 // We're currently more strict than GCC about what function types we accept. 2670 // If this ever proves to be a problem it should be easy to fix. 2671 QualType Ty = S.Context.getPointerType(VD->getType()); 2672 QualType ParamTy = FD->getParamDecl(0)->getType(); 2673 if (S.CheckAssignmentConstraints(FD->getParamDecl(0)->getLocation(), 2674 ParamTy, Ty) != Sema::Compatible) { 2675 S.Diag(Loc, diag::err_attribute_cleanup_func_arg_incompatible_type) 2676 << NI.getName() << ParamTy << Ty; 2677 return; 2678 } 2679 2680 D->addAttr(::new (S.Context) 2681 CleanupAttr(Attr.getRange(), S.Context, FD, 2682 Attr.getAttributeSpellingListIndex())); 2683 } 2684 2685 /// Handle __attribute__((format_arg((idx)))) attribute based on 2686 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html 2687 static void handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) { 2688 Expr *IdxExpr = Attr.getArgAsExpr(0); 2689 uint64_t Idx; 2690 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 1, IdxExpr, Idx)) 2691 return; 2692 2693 // Make sure the format string is really a string. 2694 QualType Ty = getFunctionOrMethodParamType(D, Idx); 2695 2696 bool NotNSStringTy = !isNSStringType(Ty, S.Context); 2697 if (NotNSStringTy && 2698 !isCFStringType(Ty, S.Context) && 2699 (!Ty->isPointerType() || 2700 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) { 2701 S.Diag(Attr.getLoc(), diag::err_format_attribute_not) 2702 << "a string type" << IdxExpr->getSourceRange() 2703 << getFunctionOrMethodParamRange(D, 0); 2704 return; 2705 } 2706 Ty = getFunctionOrMethodResultType(D); 2707 if (!isNSStringType(Ty, S.Context) && 2708 !isCFStringType(Ty, S.Context) && 2709 (!Ty->isPointerType() || 2710 !Ty->getAs<PointerType>()->getPointeeType()->isCharType())) { 2711 S.Diag(Attr.getLoc(), diag::err_format_attribute_result_not) 2712 << (NotNSStringTy ? "string type" : "NSString") 2713 << IdxExpr->getSourceRange() << getFunctionOrMethodParamRange(D, 0); 2714 return; 2715 } 2716 2717 // We cannot use the Idx returned from checkFunctionOrMethodParameterIndex 2718 // because that has corrected for the implicit this parameter, and is zero- 2719 // based. The attribute expects what the user wrote explicitly. 2720 llvm::APSInt Val; 2721 IdxExpr->EvaluateAsInt(Val, S.Context); 2722 2723 D->addAttr(::new (S.Context) 2724 FormatArgAttr(Attr.getRange(), S.Context, Val.getZExtValue(), 2725 Attr.getAttributeSpellingListIndex())); 2726 } 2727 2728 enum FormatAttrKind { 2729 CFStringFormat, 2730 NSStringFormat, 2731 StrftimeFormat, 2732 SupportedFormat, 2733 IgnoredFormat, 2734 InvalidFormat 2735 }; 2736 2737 /// getFormatAttrKind - Map from format attribute names to supported format 2738 /// types. 2739 static FormatAttrKind getFormatAttrKind(StringRef Format) { 2740 return llvm::StringSwitch<FormatAttrKind>(Format) 2741 // Check for formats that get handled specially. 2742 .Case("NSString", NSStringFormat) 2743 .Case("CFString", CFStringFormat) 2744 .Case("strftime", StrftimeFormat) 2745 2746 // Otherwise, check for supported formats. 2747 .Cases("scanf", "printf", "printf0", "strfmon", SupportedFormat) 2748 .Cases("cmn_err", "vcmn_err", "zcmn_err", SupportedFormat) 2749 .Case("kprintf", SupportedFormat) // OpenBSD. 2750 .Case("freebsd_kprintf", SupportedFormat) // FreeBSD. 2751 .Case("os_trace", SupportedFormat) 2752 2753 .Cases("gcc_diag", "gcc_cdiag", "gcc_cxxdiag", "gcc_tdiag", IgnoredFormat) 2754 .Default(InvalidFormat); 2755 } 2756 2757 /// Handle __attribute__((init_priority(priority))) attributes based on 2758 /// http://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Attributes.html 2759 static void handleInitPriorityAttr(Sema &S, Decl *D, 2760 const AttributeList &Attr) { 2761 if (!S.getLangOpts().CPlusPlus) { 2762 S.Diag(Attr.getLoc(), diag::warn_attribute_ignored) << Attr.getName(); 2763 return; 2764 } 2765 2766 if (S.getCurFunctionOrMethodDecl()) { 2767 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr); 2768 Attr.setInvalid(); 2769 return; 2770 } 2771 QualType T = cast<VarDecl>(D)->getType(); 2772 if (S.Context.getAsArrayType(T)) 2773 T = S.Context.getBaseElementType(T); 2774 if (!T->getAs<RecordType>()) { 2775 S.Diag(Attr.getLoc(), diag::err_init_priority_object_attr); 2776 Attr.setInvalid(); 2777 return; 2778 } 2779 2780 Expr *E = Attr.getArgAsExpr(0); 2781 uint32_t prioritynum; 2782 if (!checkUInt32Argument(S, Attr, E, prioritynum)) { 2783 Attr.setInvalid(); 2784 return; 2785 } 2786 2787 if (prioritynum < 101 || prioritynum > 65535) { 2788 S.Diag(Attr.getLoc(), diag::err_attribute_argument_outof_range) 2789 << E->getSourceRange() << Attr.getName() << 101 << 65535; 2790 Attr.setInvalid(); 2791 return; 2792 } 2793 D->addAttr(::new (S.Context) 2794 InitPriorityAttr(Attr.getRange(), S.Context, prioritynum, 2795 Attr.getAttributeSpellingListIndex())); 2796 } 2797 2798 FormatAttr *Sema::mergeFormatAttr(Decl *D, SourceRange Range, 2799 IdentifierInfo *Format, int FormatIdx, 2800 int FirstArg, 2801 unsigned AttrSpellingListIndex) { 2802 // Check whether we already have an equivalent format attribute. 2803 for (auto *F : D->specific_attrs<FormatAttr>()) { 2804 if (F->getType() == Format && 2805 F->getFormatIdx() == FormatIdx && 2806 F->getFirstArg() == FirstArg) { 2807 // If we don't have a valid location for this attribute, adopt the 2808 // location. 2809 if (F->getLocation().isInvalid()) 2810 F->setRange(Range); 2811 return nullptr; 2812 } 2813 } 2814 2815 return ::new (Context) FormatAttr(Range, Context, Format, FormatIdx, 2816 FirstArg, AttrSpellingListIndex); 2817 } 2818 2819 /// Handle __attribute__((format(type,idx,firstarg))) attributes based on 2820 /// http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html 2821 static void handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) { 2822 if (!Attr.isArgIdent(0)) { 2823 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 2824 << Attr.getName() << 1 << AANT_ArgumentIdentifier; 2825 return; 2826 } 2827 2828 // In C++ the implicit 'this' function parameter also counts, and they are 2829 // counted from one. 2830 bool HasImplicitThisParam = isInstanceMethod(D); 2831 unsigned NumArgs = getFunctionOrMethodNumParams(D) + HasImplicitThisParam; 2832 2833 IdentifierInfo *II = Attr.getArgAsIdent(0)->Ident; 2834 StringRef Format = II->getName(); 2835 2836 if (normalizeName(Format)) { 2837 // If we've modified the string name, we need a new identifier for it. 2838 II = &S.Context.Idents.get(Format); 2839 } 2840 2841 // Check for supported formats. 2842 FormatAttrKind Kind = getFormatAttrKind(Format); 2843 2844 if (Kind == IgnoredFormat) 2845 return; 2846 2847 if (Kind == InvalidFormat) { 2848 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) 2849 << Attr.getName() << II->getName(); 2850 return; 2851 } 2852 2853 // checks for the 2nd argument 2854 Expr *IdxExpr = Attr.getArgAsExpr(1); 2855 uint32_t Idx; 2856 if (!checkUInt32Argument(S, Attr, IdxExpr, Idx, 2)) 2857 return; 2858 2859 if (Idx < 1 || Idx > NumArgs) { 2860 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) 2861 << Attr.getName() << 2 << IdxExpr->getSourceRange(); 2862 return; 2863 } 2864 2865 // FIXME: Do we need to bounds check? 2866 unsigned ArgIdx = Idx - 1; 2867 2868 if (HasImplicitThisParam) { 2869 if (ArgIdx == 0) { 2870 S.Diag(Attr.getLoc(), 2871 diag::err_format_attribute_implicit_this_format_string) 2872 << IdxExpr->getSourceRange(); 2873 return; 2874 } 2875 ArgIdx--; 2876 } 2877 2878 // make sure the format string is really a string 2879 QualType Ty = getFunctionOrMethodParamType(D, ArgIdx); 2880 2881 if (Kind == CFStringFormat) { 2882 if (!isCFStringType(Ty, S.Context)) { 2883 S.Diag(Attr.getLoc(), diag::err_format_attribute_not) 2884 << "a CFString" << IdxExpr->getSourceRange() 2885 << getFunctionOrMethodParamRange(D, ArgIdx); 2886 return; 2887 } 2888 } else if (Kind == NSStringFormat) { 2889 // FIXME: do we need to check if the type is NSString*? What are the 2890 // semantics? 2891 if (!isNSStringType(Ty, S.Context)) { 2892 S.Diag(Attr.getLoc(), diag::err_format_attribute_not) 2893 << "an NSString" << IdxExpr->getSourceRange() 2894 << getFunctionOrMethodParamRange(D, ArgIdx); 2895 return; 2896 } 2897 } else if (!Ty->isPointerType() || 2898 !Ty->getAs<PointerType>()->getPointeeType()->isCharType()) { 2899 S.Diag(Attr.getLoc(), diag::err_format_attribute_not) 2900 << "a string type" << IdxExpr->getSourceRange() 2901 << getFunctionOrMethodParamRange(D, ArgIdx); 2902 return; 2903 } 2904 2905 // check the 3rd argument 2906 Expr *FirstArgExpr = Attr.getArgAsExpr(2); 2907 uint32_t FirstArg; 2908 if (!checkUInt32Argument(S, Attr, FirstArgExpr, FirstArg, 3)) 2909 return; 2910 2911 // check if the function is variadic if the 3rd argument non-zero 2912 if (FirstArg != 0) { 2913 if (isFunctionOrMethodVariadic(D)) { 2914 ++NumArgs; // +1 for ... 2915 } else { 2916 S.Diag(D->getLocation(), diag::err_format_attribute_requires_variadic); 2917 return; 2918 } 2919 } 2920 2921 // strftime requires FirstArg to be 0 because it doesn't read from any 2922 // variable the input is just the current time + the format string. 2923 if (Kind == StrftimeFormat) { 2924 if (FirstArg != 0) { 2925 S.Diag(Attr.getLoc(), diag::err_format_strftime_third_parameter) 2926 << FirstArgExpr->getSourceRange(); 2927 return; 2928 } 2929 // if 0 it disables parameter checking (to use with e.g. va_list) 2930 } else if (FirstArg != 0 && FirstArg != NumArgs) { 2931 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) 2932 << Attr.getName() << 3 << FirstArgExpr->getSourceRange(); 2933 return; 2934 } 2935 2936 FormatAttr *NewAttr = S.mergeFormatAttr(D, Attr.getRange(), II, 2937 Idx, FirstArg, 2938 Attr.getAttributeSpellingListIndex()); 2939 if (NewAttr) 2940 D->addAttr(NewAttr); 2941 } 2942 2943 static void handleTransparentUnionAttr(Sema &S, Decl *D, 2944 const AttributeList &Attr) { 2945 // Try to find the underlying union declaration. 2946 RecordDecl *RD = nullptr; 2947 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D); 2948 if (TD && TD->getUnderlyingType()->isUnionType()) 2949 RD = TD->getUnderlyingType()->getAsUnionType()->getDecl(); 2950 else 2951 RD = dyn_cast<RecordDecl>(D); 2952 2953 if (!RD || !RD->isUnion()) { 2954 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 2955 << Attr.getName() << ExpectedUnion; 2956 return; 2957 } 2958 2959 if (!RD->isCompleteDefinition()) { 2960 S.Diag(Attr.getLoc(), 2961 diag::warn_transparent_union_attribute_not_definition); 2962 return; 2963 } 2964 2965 RecordDecl::field_iterator Field = RD->field_begin(), 2966 FieldEnd = RD->field_end(); 2967 if (Field == FieldEnd) { 2968 S.Diag(Attr.getLoc(), diag::warn_transparent_union_attribute_zero_fields); 2969 return; 2970 } 2971 2972 FieldDecl *FirstField = *Field; 2973 QualType FirstType = FirstField->getType(); 2974 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { 2975 S.Diag(FirstField->getLocation(), 2976 diag::warn_transparent_union_attribute_floating) 2977 << FirstType->isVectorType() << FirstType; 2978 return; 2979 } 2980 2981 uint64_t FirstSize = S.Context.getTypeSize(FirstType); 2982 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); 2983 for (; Field != FieldEnd; ++Field) { 2984 QualType FieldType = Field->getType(); 2985 // FIXME: this isn't fully correct; we also need to test whether the 2986 // members of the union would all have the same calling convention as the 2987 // first member of the union. Checking just the size and alignment isn't 2988 // sufficient (consider structs passed on the stack instead of in registers 2989 // as an example). 2990 if (S.Context.getTypeSize(FieldType) != FirstSize || 2991 S.Context.getTypeAlign(FieldType) > FirstAlign) { 2992 // Warn if we drop the attribute. 2993 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize; 2994 unsigned FieldBits = isSize? S.Context.getTypeSize(FieldType) 2995 : S.Context.getTypeAlign(FieldType); 2996 S.Diag(Field->getLocation(), 2997 diag::warn_transparent_union_attribute_field_size_align) 2998 << isSize << Field->getDeclName() << FieldBits; 2999 unsigned FirstBits = isSize? FirstSize : FirstAlign; 3000 S.Diag(FirstField->getLocation(), 3001 diag::note_transparent_union_first_field_size_align) 3002 << isSize << FirstBits; 3003 return; 3004 } 3005 } 3006 3007 RD->addAttr(::new (S.Context) 3008 TransparentUnionAttr(Attr.getRange(), S.Context, 3009 Attr.getAttributeSpellingListIndex())); 3010 } 3011 3012 static void handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) { 3013 // Make sure that there is a string literal as the annotation's single 3014 // argument. 3015 StringRef Str; 3016 if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str)) 3017 return; 3018 3019 // Don't duplicate annotations that are already set. 3020 for (const auto *I : D->specific_attrs<AnnotateAttr>()) { 3021 if (I->getAnnotation() == Str) 3022 return; 3023 } 3024 3025 D->addAttr(::new (S.Context) 3026 AnnotateAttr(Attr.getRange(), S.Context, Str, 3027 Attr.getAttributeSpellingListIndex())); 3028 } 3029 3030 static void handleAlignValueAttr(Sema &S, Decl *D, 3031 const AttributeList &Attr) { 3032 S.AddAlignValueAttr(Attr.getRange(), D, Attr.getArgAsExpr(0), 3033 Attr.getAttributeSpellingListIndex()); 3034 } 3035 3036 void Sema::AddAlignValueAttr(SourceRange AttrRange, Decl *D, Expr *E, 3037 unsigned SpellingListIndex) { 3038 AlignValueAttr TmpAttr(AttrRange, Context, E, SpellingListIndex); 3039 SourceLocation AttrLoc = AttrRange.getBegin(); 3040 3041 QualType T; 3042 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) 3043 T = TD->getUnderlyingType(); 3044 else if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) 3045 T = VD->getType(); 3046 else 3047 llvm_unreachable("Unknown decl type for align_value"); 3048 3049 if (!T->isDependentType() && !T->isAnyPointerType() && 3050 !T->isReferenceType() && !T->isMemberPointerType()) { 3051 Diag(AttrLoc, diag::warn_attribute_pointer_or_reference_only) 3052 << &TmpAttr /*TmpAttr.getName()*/ << T << D->getSourceRange(); 3053 return; 3054 } 3055 3056 if (!E->isValueDependent()) { 3057 llvm::APSInt Alignment; 3058 ExprResult ICE 3059 = VerifyIntegerConstantExpression(E, &Alignment, 3060 diag::err_align_value_attribute_argument_not_int, 3061 /*AllowFold*/ false); 3062 if (ICE.isInvalid()) 3063 return; 3064 3065 if (!Alignment.isPowerOf2()) { 3066 Diag(AttrLoc, diag::err_alignment_not_power_of_two) 3067 << E->getSourceRange(); 3068 return; 3069 } 3070 3071 D->addAttr(::new (Context) 3072 AlignValueAttr(AttrRange, Context, ICE.get(), 3073 SpellingListIndex)); 3074 return; 3075 } 3076 3077 // Save dependent expressions in the AST to be instantiated. 3078 D->addAttr(::new (Context) AlignValueAttr(TmpAttr)); 3079 } 3080 3081 static void handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) { 3082 // check the attribute arguments. 3083 if (Attr.getNumArgs() > 1) { 3084 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) 3085 << Attr.getName() << 1; 3086 return; 3087 } 3088 3089 if (Attr.getNumArgs() == 0) { 3090 D->addAttr(::new (S.Context) AlignedAttr(Attr.getRange(), S.Context, 3091 true, nullptr, Attr.getAttributeSpellingListIndex())); 3092 return; 3093 } 3094 3095 Expr *E = Attr.getArgAsExpr(0); 3096 if (Attr.isPackExpansion() && !E->containsUnexpandedParameterPack()) { 3097 S.Diag(Attr.getEllipsisLoc(), 3098 diag::err_pack_expansion_without_parameter_packs); 3099 return; 3100 } 3101 3102 if (!Attr.isPackExpansion() && S.DiagnoseUnexpandedParameterPack(E)) 3103 return; 3104 3105 if (E->isValueDependent()) { 3106 if (const auto *TND = dyn_cast<TypedefNameDecl>(D)) { 3107 if (!TND->getUnderlyingType()->isDependentType()) { 3108 S.Diag(Attr.getLoc(), diag::err_alignment_dependent_typedef_name) 3109 << E->getSourceRange(); 3110 return; 3111 } 3112 } 3113 } 3114 3115 S.AddAlignedAttr(Attr.getRange(), D, E, Attr.getAttributeSpellingListIndex(), 3116 Attr.isPackExpansion()); 3117 } 3118 3119 void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, Expr *E, 3120 unsigned SpellingListIndex, bool IsPackExpansion) { 3121 AlignedAttr TmpAttr(AttrRange, Context, true, E, SpellingListIndex); 3122 SourceLocation AttrLoc = AttrRange.getBegin(); 3123 3124 // C++11 alignas(...) and C11 _Alignas(...) have additional requirements. 3125 if (TmpAttr.isAlignas()) { 3126 // C++11 [dcl.align]p1: 3127 // An alignment-specifier may be applied to a variable or to a class 3128 // data member, but it shall not be applied to a bit-field, a function 3129 // parameter, the formal parameter of a catch clause, or a variable 3130 // declared with the register storage class specifier. An 3131 // alignment-specifier may also be applied to the declaration of a class 3132 // or enumeration type. 3133 // C11 6.7.5/2: 3134 // An alignment attribute shall not be specified in a declaration of 3135 // a typedef, or a bit-field, or a function, or a parameter, or an 3136 // object declared with the register storage-class specifier. 3137 int DiagKind = -1; 3138 if (isa<ParmVarDecl>(D)) { 3139 DiagKind = 0; 3140 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) { 3141 if (VD->getStorageClass() == SC_Register) 3142 DiagKind = 1; 3143 if (VD->isExceptionVariable()) 3144 DiagKind = 2; 3145 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { 3146 if (FD->isBitField()) 3147 DiagKind = 3; 3148 } else if (!isa<TagDecl>(D)) { 3149 Diag(AttrLoc, diag::err_attribute_wrong_decl_type) << &TmpAttr 3150 << (TmpAttr.isC11() ? ExpectedVariableOrField 3151 : ExpectedVariableFieldOrTag); 3152 return; 3153 } 3154 if (DiagKind != -1) { 3155 Diag(AttrLoc, diag::err_alignas_attribute_wrong_decl_type) 3156 << &TmpAttr << DiagKind; 3157 return; 3158 } 3159 } 3160 3161 if (E->isTypeDependent() || E->isValueDependent()) { 3162 // Save dependent expressions in the AST to be instantiated. 3163 AlignedAttr *AA = ::new (Context) AlignedAttr(TmpAttr); 3164 AA->setPackExpansion(IsPackExpansion); 3165 D->addAttr(AA); 3166 return; 3167 } 3168 3169 // FIXME: Cache the number on the Attr object? 3170 llvm::APSInt Alignment; 3171 ExprResult ICE 3172 = VerifyIntegerConstantExpression(E, &Alignment, 3173 diag::err_aligned_attribute_argument_not_int, 3174 /*AllowFold*/ false); 3175 if (ICE.isInvalid()) 3176 return; 3177 3178 uint64_t AlignVal = Alignment.getZExtValue(); 3179 3180 // C++11 [dcl.align]p2: 3181 // -- if the constant expression evaluates to zero, the alignment 3182 // specifier shall have no effect 3183 // C11 6.7.5p6: 3184 // An alignment specification of zero has no effect. 3185 if (!(TmpAttr.isAlignas() && !Alignment)) { 3186 if (!llvm::isPowerOf2_64(AlignVal)) { 3187 Diag(AttrLoc, diag::err_alignment_not_power_of_two) 3188 << E->getSourceRange(); 3189 return; 3190 } 3191 } 3192 3193 // Alignment calculations can wrap around if it's greater than 2**28. 3194 unsigned MaxValidAlignment = 3195 Context.getTargetInfo().getTriple().isOSBinFormatCOFF() ? 8192 3196 : 268435456; 3197 if (AlignVal > MaxValidAlignment) { 3198 Diag(AttrLoc, diag::err_attribute_aligned_too_great) << MaxValidAlignment 3199 << E->getSourceRange(); 3200 return; 3201 } 3202 3203 if (Context.getTargetInfo().isTLSSupported()) { 3204 unsigned MaxTLSAlign = 3205 Context.toCharUnitsFromBits(Context.getTargetInfo().getMaxTLSAlign()) 3206 .getQuantity(); 3207 auto *VD = dyn_cast<VarDecl>(D); 3208 if (MaxTLSAlign && AlignVal > MaxTLSAlign && VD && 3209 VD->getTLSKind() != VarDecl::TLS_None) { 3210 Diag(VD->getLocation(), diag::err_tls_var_aligned_over_maximum) 3211 << (unsigned)AlignVal << VD << MaxTLSAlign; 3212 return; 3213 } 3214 } 3215 3216 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, true, 3217 ICE.get(), SpellingListIndex); 3218 AA->setPackExpansion(IsPackExpansion); 3219 D->addAttr(AA); 3220 } 3221 3222 void Sema::AddAlignedAttr(SourceRange AttrRange, Decl *D, TypeSourceInfo *TS, 3223 unsigned SpellingListIndex, bool IsPackExpansion) { 3224 // FIXME: Cache the number on the Attr object if non-dependent? 3225 // FIXME: Perform checking of type validity 3226 AlignedAttr *AA = ::new (Context) AlignedAttr(AttrRange, Context, false, TS, 3227 SpellingListIndex); 3228 AA->setPackExpansion(IsPackExpansion); 3229 D->addAttr(AA); 3230 } 3231 3232 void Sema::CheckAlignasUnderalignment(Decl *D) { 3233 assert(D->hasAttrs() && "no attributes on decl"); 3234 3235 QualType UnderlyingTy, DiagTy; 3236 if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) { 3237 UnderlyingTy = DiagTy = VD->getType(); 3238 } else { 3239 UnderlyingTy = DiagTy = Context.getTagDeclType(cast<TagDecl>(D)); 3240 if (EnumDecl *ED = dyn_cast<EnumDecl>(D)) 3241 UnderlyingTy = ED->getIntegerType(); 3242 } 3243 if (DiagTy->isDependentType() || DiagTy->isIncompleteType()) 3244 return; 3245 3246 // C++11 [dcl.align]p5, C11 6.7.5/4: 3247 // The combined effect of all alignment attributes in a declaration shall 3248 // not specify an alignment that is less strict than the alignment that 3249 // would otherwise be required for the entity being declared. 3250 AlignedAttr *AlignasAttr = nullptr; 3251 unsigned Align = 0; 3252 for (auto *I : D->specific_attrs<AlignedAttr>()) { 3253 if (I->isAlignmentDependent()) 3254 return; 3255 if (I->isAlignas()) 3256 AlignasAttr = I; 3257 Align = std::max(Align, I->getAlignment(Context)); 3258 } 3259 3260 if (AlignasAttr && Align) { 3261 CharUnits RequestedAlign = Context.toCharUnitsFromBits(Align); 3262 CharUnits NaturalAlign = Context.getTypeAlignInChars(UnderlyingTy); 3263 if (NaturalAlign > RequestedAlign) 3264 Diag(AlignasAttr->getLocation(), diag::err_alignas_underaligned) 3265 << DiagTy << (unsigned)NaturalAlign.getQuantity(); 3266 } 3267 } 3268 3269 bool Sema::checkMSInheritanceAttrOnDefinition( 3270 CXXRecordDecl *RD, SourceRange Range, bool BestCase, 3271 MSInheritanceAttr::Spelling SemanticSpelling) { 3272 assert(RD->hasDefinition() && "RD has no definition!"); 3273 3274 // We may not have seen base specifiers or any virtual methods yet. We will 3275 // have to wait until the record is defined to catch any mismatches. 3276 if (!RD->getDefinition()->isCompleteDefinition()) 3277 return false; 3278 3279 // The unspecified model never matches what a definition could need. 3280 if (SemanticSpelling == MSInheritanceAttr::Keyword_unspecified_inheritance) 3281 return false; 3282 3283 if (BestCase) { 3284 if (RD->calculateInheritanceModel() == SemanticSpelling) 3285 return false; 3286 } else { 3287 if (RD->calculateInheritanceModel() <= SemanticSpelling) 3288 return false; 3289 } 3290 3291 Diag(Range.getBegin(), diag::err_mismatched_ms_inheritance) 3292 << 0 /*definition*/; 3293 Diag(RD->getDefinition()->getLocation(), diag::note_defined_here) 3294 << RD->getNameAsString(); 3295 return true; 3296 } 3297 3298 /// parseModeAttrArg - Parses attribute mode string and returns parsed type 3299 /// attribute. 3300 static void parseModeAttrArg(Sema &S, StringRef Str, unsigned &DestWidth, 3301 bool &IntegerMode, bool &ComplexMode) { 3302 IntegerMode = true; 3303 ComplexMode = false; 3304 switch (Str.size()) { 3305 case 2: 3306 switch (Str[0]) { 3307 case 'Q': 3308 DestWidth = 8; 3309 break; 3310 case 'H': 3311 DestWidth = 16; 3312 break; 3313 case 'S': 3314 DestWidth = 32; 3315 break; 3316 case 'D': 3317 DestWidth = 64; 3318 break; 3319 case 'X': 3320 DestWidth = 96; 3321 break; 3322 case 'T': 3323 DestWidth = 128; 3324 break; 3325 } 3326 if (Str[1] == 'F') { 3327 IntegerMode = false; 3328 } else if (Str[1] == 'C') { 3329 IntegerMode = false; 3330 ComplexMode = true; 3331 } else if (Str[1] != 'I') { 3332 DestWidth = 0; 3333 } 3334 break; 3335 case 4: 3336 // FIXME: glibc uses 'word' to define register_t; this is narrower than a 3337 // pointer on PIC16 and other embedded platforms. 3338 if (Str == "word") 3339 DestWidth = S.Context.getTargetInfo().getRegisterWidth(); 3340 else if (Str == "byte") 3341 DestWidth = S.Context.getTargetInfo().getCharWidth(); 3342 break; 3343 case 7: 3344 if (Str == "pointer") 3345 DestWidth = S.Context.getTargetInfo().getPointerWidth(0); 3346 break; 3347 case 11: 3348 if (Str == "unwind_word") 3349 DestWidth = S.Context.getTargetInfo().getUnwindWordWidth(); 3350 break; 3351 } 3352 } 3353 3354 /// handleModeAttr - This attribute modifies the width of a decl with primitive 3355 /// type. 3356 /// 3357 /// Despite what would be logical, the mode attribute is a decl attribute, not a 3358 /// type attribute: 'int ** __attribute((mode(HI))) *G;' tries to make 'G' be 3359 /// HImode, not an intermediate pointer. 3360 static void handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) { 3361 // This attribute isn't documented, but glibc uses it. It changes 3362 // the width of an int or unsigned int to the specified size. 3363 if (!Attr.isArgIdent(0)) { 3364 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName() 3365 << AANT_ArgumentIdentifier; 3366 return; 3367 } 3368 3369 IdentifierInfo *Name = Attr.getArgAsIdent(0)->Ident; 3370 3371 S.AddModeAttr(Attr.getRange(), D, Name, Attr.getAttributeSpellingListIndex()); 3372 } 3373 3374 void Sema::AddModeAttr(SourceRange AttrRange, Decl *D, IdentifierInfo *Name, 3375 unsigned SpellingListIndex, bool InInstantiation) { 3376 StringRef Str = Name->getName(); 3377 normalizeName(Str); 3378 SourceLocation AttrLoc = AttrRange.getBegin(); 3379 3380 unsigned DestWidth = 0; 3381 bool IntegerMode = true; 3382 bool ComplexMode = false; 3383 llvm::APInt VectorSize(64, 0); 3384 if (Str.size() >= 4 && Str[0] == 'V') { 3385 // Minimal length of vector mode is 4: 'V' + NUMBER(>=1) + TYPE(>=2). 3386 size_t StrSize = Str.size(); 3387 size_t VectorStringLength = 0; 3388 while ((VectorStringLength + 1) < StrSize && 3389 isdigit(Str[VectorStringLength + 1])) 3390 ++VectorStringLength; 3391 if (VectorStringLength && 3392 !Str.substr(1, VectorStringLength).getAsInteger(10, VectorSize) && 3393 VectorSize.isPowerOf2()) { 3394 parseModeAttrArg(*this, Str.substr(VectorStringLength + 1), DestWidth, 3395 IntegerMode, ComplexMode); 3396 // Avoid duplicate warning from template instantiation. 3397 if (!InInstantiation) 3398 Diag(AttrLoc, diag::warn_vector_mode_deprecated); 3399 } else { 3400 VectorSize = 0; 3401 } 3402 } 3403 3404 if (!VectorSize) 3405 parseModeAttrArg(*this, Str, DestWidth, IntegerMode, ComplexMode); 3406 3407 // FIXME: Sync this with InitializePredefinedMacros; we need to match int8_t 3408 // and friends, at least with glibc. 3409 // FIXME: Make sure floating-point mappings are accurate 3410 // FIXME: Support XF and TF types 3411 if (!DestWidth) { 3412 Diag(AttrLoc, diag::err_machine_mode) << 0 /*Unknown*/ << Name; 3413 return; 3414 } 3415 3416 QualType OldTy; 3417 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) 3418 OldTy = TD->getUnderlyingType(); 3419 else if (EnumDecl *ED = dyn_cast<EnumDecl>(D)) { 3420 // Something like 'typedef enum { X } __attribute__((mode(XX))) T;'. 3421 // Try to get type from enum declaration, default to int. 3422 OldTy = ED->getIntegerType(); 3423 if (OldTy.isNull()) 3424 OldTy = Context.IntTy; 3425 } else 3426 OldTy = cast<ValueDecl>(D)->getType(); 3427 3428 if (OldTy->isDependentType()) { 3429 D->addAttr(::new (Context) 3430 ModeAttr(AttrRange, Context, Name, SpellingListIndex)); 3431 return; 3432 } 3433 3434 // Base type can also be a vector type (see PR17453). 3435 // Distinguish between base type and base element type. 3436 QualType OldElemTy = OldTy; 3437 if (const VectorType *VT = OldTy->getAs<VectorType>()) 3438 OldElemTy = VT->getElementType(); 3439 3440 // GCC allows 'mode' attribute on enumeration types (even incomplete), except 3441 // for vector modes. So, 'enum X __attribute__((mode(QI)));' forms a complete 3442 // type, 'enum { A } __attribute__((mode(V4SI)))' is rejected. 3443 if ((isa<EnumDecl>(D) || OldElemTy->getAs<EnumType>()) && 3444 VectorSize.getBoolValue()) { 3445 Diag(AttrLoc, diag::err_enum_mode_vector_type) << Name << AttrRange; 3446 return; 3447 } 3448 bool IntegralOrAnyEnumType = 3449 OldElemTy->isIntegralOrEnumerationType() || OldElemTy->getAs<EnumType>(); 3450 3451 if (!OldElemTy->getAs<BuiltinType>() && !OldElemTy->isComplexType() && 3452 !IntegralOrAnyEnumType) 3453 Diag(AttrLoc, diag::err_mode_not_primitive); 3454 else if (IntegerMode) { 3455 if (!IntegralOrAnyEnumType) 3456 Diag(AttrLoc, diag::err_mode_wrong_type); 3457 } else if (ComplexMode) { 3458 if (!OldElemTy->isComplexType()) 3459 Diag(AttrLoc, diag::err_mode_wrong_type); 3460 } else { 3461 if (!OldElemTy->isFloatingType()) 3462 Diag(AttrLoc, diag::err_mode_wrong_type); 3463 } 3464 3465 QualType NewElemTy; 3466 3467 if (IntegerMode) 3468 NewElemTy = Context.getIntTypeForBitwidth(DestWidth, 3469 OldElemTy->isSignedIntegerType()); 3470 else 3471 NewElemTy = Context.getRealTypeForBitwidth(DestWidth); 3472 3473 if (NewElemTy.isNull()) { 3474 Diag(AttrLoc, diag::err_machine_mode) << 1 /*Unsupported*/ << Name; 3475 return; 3476 } 3477 3478 if (ComplexMode) { 3479 NewElemTy = Context.getComplexType(NewElemTy); 3480 } 3481 3482 QualType NewTy = NewElemTy; 3483 if (VectorSize.getBoolValue()) { 3484 NewTy = Context.getVectorType(NewTy, VectorSize.getZExtValue(), 3485 VectorType::GenericVector); 3486 } else if (const VectorType *OldVT = OldTy->getAs<VectorType>()) { 3487 // Complex machine mode does not support base vector types. 3488 if (ComplexMode) { 3489 Diag(AttrLoc, diag::err_complex_mode_vector_type); 3490 return; 3491 } 3492 unsigned NumElements = Context.getTypeSize(OldElemTy) * 3493 OldVT->getNumElements() / 3494 Context.getTypeSize(NewElemTy); 3495 NewTy = 3496 Context.getVectorType(NewElemTy, NumElements, OldVT->getVectorKind()); 3497 } 3498 3499 if (NewTy.isNull()) { 3500 Diag(AttrLoc, diag::err_mode_wrong_type); 3501 return; 3502 } 3503 3504 // Install the new type. 3505 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) 3506 TD->setModedTypeSourceInfo(TD->getTypeSourceInfo(), NewTy); 3507 else if (EnumDecl *ED = dyn_cast<EnumDecl>(D)) 3508 ED->setIntegerType(NewTy); 3509 else 3510 cast<ValueDecl>(D)->setType(NewTy); 3511 3512 D->addAttr(::new (Context) 3513 ModeAttr(AttrRange, Context, Name, SpellingListIndex)); 3514 } 3515 3516 static void handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) { 3517 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { 3518 if (!VD->hasGlobalStorage()) 3519 S.Diag(Attr.getLoc(), 3520 diag::warn_attribute_requires_functions_or_static_globals) 3521 << Attr.getName(); 3522 } else if (!isFunctionOrMethod(D)) { 3523 S.Diag(Attr.getLoc(), 3524 diag::warn_attribute_requires_functions_or_static_globals) 3525 << Attr.getName(); 3526 return; 3527 } 3528 3529 D->addAttr(::new (S.Context) 3530 NoDebugAttr(Attr.getRange(), S.Context, 3531 Attr.getAttributeSpellingListIndex())); 3532 } 3533 3534 AlwaysInlineAttr *Sema::mergeAlwaysInlineAttr(Decl *D, SourceRange Range, 3535 IdentifierInfo *Ident, 3536 unsigned AttrSpellingListIndex) { 3537 if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) { 3538 Diag(Range.getBegin(), diag::warn_attribute_ignored) << Ident; 3539 Diag(Optnone->getLocation(), diag::note_conflicting_attribute); 3540 return nullptr; 3541 } 3542 3543 if (D->hasAttr<AlwaysInlineAttr>()) 3544 return nullptr; 3545 3546 return ::new (Context) AlwaysInlineAttr(Range, Context, 3547 AttrSpellingListIndex); 3548 } 3549 3550 CommonAttr *Sema::mergeCommonAttr(Decl *D, SourceRange Range, 3551 IdentifierInfo *Ident, 3552 unsigned AttrSpellingListIndex) { 3553 if (checkAttrMutualExclusion<InternalLinkageAttr>(*this, D, Range, Ident)) 3554 return nullptr; 3555 3556 return ::new (Context) CommonAttr(Range, Context, AttrSpellingListIndex); 3557 } 3558 3559 InternalLinkageAttr * 3560 Sema::mergeInternalLinkageAttr(Decl *D, SourceRange Range, 3561 IdentifierInfo *Ident, 3562 unsigned AttrSpellingListIndex) { 3563 if (auto VD = dyn_cast<VarDecl>(D)) { 3564 // Attribute applies to Var but not any subclass of it (like ParmVar, 3565 // ImplicitParm or VarTemplateSpecialization). 3566 if (VD->getKind() != Decl::Var) { 3567 Diag(Range.getBegin(), diag::warn_attribute_wrong_decl_type) 3568 << Ident << (getLangOpts().CPlusPlus ? ExpectedFunctionVariableOrClass 3569 : ExpectedVariableOrFunction); 3570 return nullptr; 3571 } 3572 // Attribute does not apply to non-static local variables. 3573 if (VD->hasLocalStorage()) { 3574 Diag(VD->getLocation(), diag::warn_internal_linkage_local_storage); 3575 return nullptr; 3576 } 3577 } 3578 3579 if (checkAttrMutualExclusion<CommonAttr>(*this, D, Range, Ident)) 3580 return nullptr; 3581 3582 return ::new (Context) 3583 InternalLinkageAttr(Range, Context, AttrSpellingListIndex); 3584 } 3585 3586 MinSizeAttr *Sema::mergeMinSizeAttr(Decl *D, SourceRange Range, 3587 unsigned AttrSpellingListIndex) { 3588 if (OptimizeNoneAttr *Optnone = D->getAttr<OptimizeNoneAttr>()) { 3589 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'minsize'"; 3590 Diag(Optnone->getLocation(), diag::note_conflicting_attribute); 3591 return nullptr; 3592 } 3593 3594 if (D->hasAttr<MinSizeAttr>()) 3595 return nullptr; 3596 3597 return ::new (Context) MinSizeAttr(Range, Context, AttrSpellingListIndex); 3598 } 3599 3600 OptimizeNoneAttr *Sema::mergeOptimizeNoneAttr(Decl *D, SourceRange Range, 3601 unsigned AttrSpellingListIndex) { 3602 if (AlwaysInlineAttr *Inline = D->getAttr<AlwaysInlineAttr>()) { 3603 Diag(Inline->getLocation(), diag::warn_attribute_ignored) << Inline; 3604 Diag(Range.getBegin(), diag::note_conflicting_attribute); 3605 D->dropAttr<AlwaysInlineAttr>(); 3606 } 3607 if (MinSizeAttr *MinSize = D->getAttr<MinSizeAttr>()) { 3608 Diag(MinSize->getLocation(), diag::warn_attribute_ignored) << MinSize; 3609 Diag(Range.getBegin(), diag::note_conflicting_attribute); 3610 D->dropAttr<MinSizeAttr>(); 3611 } 3612 3613 if (D->hasAttr<OptimizeNoneAttr>()) 3614 return nullptr; 3615 3616 return ::new (Context) OptimizeNoneAttr(Range, Context, 3617 AttrSpellingListIndex); 3618 } 3619 3620 static void handleAlwaysInlineAttr(Sema &S, Decl *D, 3621 const AttributeList &Attr) { 3622 if (checkAttrMutualExclusion<NotTailCalledAttr>(S, D, Attr.getRange(), 3623 Attr.getName())) 3624 return; 3625 3626 if (AlwaysInlineAttr *Inline = S.mergeAlwaysInlineAttr( 3627 D, Attr.getRange(), Attr.getName(), 3628 Attr.getAttributeSpellingListIndex())) 3629 D->addAttr(Inline); 3630 } 3631 3632 static void handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) { 3633 if (MinSizeAttr *MinSize = S.mergeMinSizeAttr( 3634 D, Attr.getRange(), Attr.getAttributeSpellingListIndex())) 3635 D->addAttr(MinSize); 3636 } 3637 3638 static void handleOptimizeNoneAttr(Sema &S, Decl *D, 3639 const AttributeList &Attr) { 3640 if (OptimizeNoneAttr *Optnone = S.mergeOptimizeNoneAttr( 3641 D, Attr.getRange(), Attr.getAttributeSpellingListIndex())) 3642 D->addAttr(Optnone); 3643 } 3644 3645 static void handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) { 3646 if (checkAttrMutualExclusion<CUDADeviceAttr>(S, D, Attr.getRange(), 3647 Attr.getName()) || 3648 checkAttrMutualExclusion<CUDAHostAttr>(S, D, Attr.getRange(), 3649 Attr.getName())) { 3650 return; 3651 } 3652 FunctionDecl *FD = cast<FunctionDecl>(D); 3653 if (!FD->getReturnType()->isVoidType()) { 3654 SourceRange RTRange = FD->getReturnTypeSourceRange(); 3655 S.Diag(FD->getTypeSpecStartLoc(), diag::err_kern_type_not_void_return) 3656 << FD->getType() 3657 << (RTRange.isValid() ? FixItHint::CreateReplacement(RTRange, "void") 3658 : FixItHint()); 3659 return; 3660 } 3661 if (const auto *Method = dyn_cast<CXXMethodDecl>(FD)) { 3662 if (Method->isInstance()) { 3663 S.Diag(Method->getLocStart(), diag::err_kern_is_nonstatic_method) 3664 << Method; 3665 return; 3666 } 3667 S.Diag(Method->getLocStart(), diag::warn_kern_is_method) << Method; 3668 } 3669 // Only warn for "inline" when compiling for host, to cut down on noise. 3670 if (FD->isInlineSpecified() && !S.getLangOpts().CUDAIsDevice) 3671 S.Diag(FD->getLocStart(), diag::warn_kern_is_inline) << FD; 3672 3673 D->addAttr(::new (S.Context) 3674 CUDAGlobalAttr(Attr.getRange(), S.Context, 3675 Attr.getAttributeSpellingListIndex())); 3676 } 3677 3678 static void handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) { 3679 FunctionDecl *Fn = cast<FunctionDecl>(D); 3680 if (!Fn->isInlineSpecified()) { 3681 S.Diag(Attr.getLoc(), diag::warn_gnu_inline_attribute_requires_inline); 3682 return; 3683 } 3684 3685 D->addAttr(::new (S.Context) 3686 GNUInlineAttr(Attr.getRange(), S.Context, 3687 Attr.getAttributeSpellingListIndex())); 3688 } 3689 3690 static void handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) { 3691 if (hasDeclarator(D)) return; 3692 3693 // Diagnostic is emitted elsewhere: here we store the (valid) Attr 3694 // in the Decl node for syntactic reasoning, e.g., pretty-printing. 3695 CallingConv CC; 3696 if (S.CheckCallingConvAttr(Attr, CC, /*FD*/nullptr)) 3697 return; 3698 3699 if (!isa<ObjCMethodDecl>(D)) { 3700 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 3701 << Attr.getName() << ExpectedFunctionOrMethod; 3702 return; 3703 } 3704 3705 switch (Attr.getKind()) { 3706 case AttributeList::AT_FastCall: 3707 D->addAttr(::new (S.Context) 3708 FastCallAttr(Attr.getRange(), S.Context, 3709 Attr.getAttributeSpellingListIndex())); 3710 return; 3711 case AttributeList::AT_StdCall: 3712 D->addAttr(::new (S.Context) 3713 StdCallAttr(Attr.getRange(), S.Context, 3714 Attr.getAttributeSpellingListIndex())); 3715 return; 3716 case AttributeList::AT_ThisCall: 3717 D->addAttr(::new (S.Context) 3718 ThisCallAttr(Attr.getRange(), S.Context, 3719 Attr.getAttributeSpellingListIndex())); 3720 return; 3721 case AttributeList::AT_CDecl: 3722 D->addAttr(::new (S.Context) 3723 CDeclAttr(Attr.getRange(), S.Context, 3724 Attr.getAttributeSpellingListIndex())); 3725 return; 3726 case AttributeList::AT_Pascal: 3727 D->addAttr(::new (S.Context) 3728 PascalAttr(Attr.getRange(), S.Context, 3729 Attr.getAttributeSpellingListIndex())); 3730 return; 3731 case AttributeList::AT_VectorCall: 3732 D->addAttr(::new (S.Context) 3733 VectorCallAttr(Attr.getRange(), S.Context, 3734 Attr.getAttributeSpellingListIndex())); 3735 return; 3736 case AttributeList::AT_MSABI: 3737 D->addAttr(::new (S.Context) 3738 MSABIAttr(Attr.getRange(), S.Context, 3739 Attr.getAttributeSpellingListIndex())); 3740 return; 3741 case AttributeList::AT_SysVABI: 3742 D->addAttr(::new (S.Context) 3743 SysVABIAttr(Attr.getRange(), S.Context, 3744 Attr.getAttributeSpellingListIndex())); 3745 return; 3746 case AttributeList::AT_Pcs: { 3747 PcsAttr::PCSType PCS; 3748 switch (CC) { 3749 case CC_AAPCS: 3750 PCS = PcsAttr::AAPCS; 3751 break; 3752 case CC_AAPCS_VFP: 3753 PCS = PcsAttr::AAPCS_VFP; 3754 break; 3755 default: 3756 llvm_unreachable("unexpected calling convention in pcs attribute"); 3757 } 3758 3759 D->addAttr(::new (S.Context) 3760 PcsAttr(Attr.getRange(), S.Context, PCS, 3761 Attr.getAttributeSpellingListIndex())); 3762 return; 3763 } 3764 case AttributeList::AT_IntelOclBicc: 3765 D->addAttr(::new (S.Context) 3766 IntelOclBiccAttr(Attr.getRange(), S.Context, 3767 Attr.getAttributeSpellingListIndex())); 3768 return; 3769 3770 default: 3771 llvm_unreachable("unexpected attribute kind"); 3772 } 3773 } 3774 3775 bool Sema::CheckCallingConvAttr(const AttributeList &attr, CallingConv &CC, 3776 const FunctionDecl *FD) { 3777 if (attr.isInvalid()) 3778 return true; 3779 3780 if (attr.hasProcessingCache()) { 3781 CC = (CallingConv) attr.getProcessingCache(); 3782 return false; 3783 } 3784 3785 unsigned ReqArgs = attr.getKind() == AttributeList::AT_Pcs ? 1 : 0; 3786 if (!checkAttributeNumArgs(*this, attr, ReqArgs)) { 3787 attr.setInvalid(); 3788 return true; 3789 } 3790 3791 // TODO: diagnose uses of these conventions on the wrong target. 3792 switch (attr.getKind()) { 3793 case AttributeList::AT_CDecl: CC = CC_C; break; 3794 case AttributeList::AT_FastCall: CC = CC_X86FastCall; break; 3795 case AttributeList::AT_StdCall: CC = CC_X86StdCall; break; 3796 case AttributeList::AT_ThisCall: CC = CC_X86ThisCall; break; 3797 case AttributeList::AT_Pascal: CC = CC_X86Pascal; break; 3798 case AttributeList::AT_VectorCall: CC = CC_X86VectorCall; break; 3799 case AttributeList::AT_MSABI: 3800 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_C : 3801 CC_X86_64Win64; 3802 break; 3803 case AttributeList::AT_SysVABI: 3804 CC = Context.getTargetInfo().getTriple().isOSWindows() ? CC_X86_64SysV : 3805 CC_C; 3806 break; 3807 case AttributeList::AT_Pcs: { 3808 StringRef StrRef; 3809 if (!checkStringLiteralArgumentAttr(attr, 0, StrRef)) { 3810 attr.setInvalid(); 3811 return true; 3812 } 3813 if (StrRef == "aapcs") { 3814 CC = CC_AAPCS; 3815 break; 3816 } else if (StrRef == "aapcs-vfp") { 3817 CC = CC_AAPCS_VFP; 3818 break; 3819 } 3820 3821 attr.setInvalid(); 3822 Diag(attr.getLoc(), diag::err_invalid_pcs); 3823 return true; 3824 } 3825 case AttributeList::AT_IntelOclBicc: CC = CC_IntelOclBicc; break; 3826 default: llvm_unreachable("unexpected attribute kind"); 3827 } 3828 3829 const TargetInfo &TI = Context.getTargetInfo(); 3830 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC); 3831 if (A != TargetInfo::CCCR_OK) { 3832 if (A == TargetInfo::CCCR_Warning) 3833 Diag(attr.getLoc(), diag::warn_cconv_ignored) << attr.getName(); 3834 3835 // This convention is not valid for the target. Use the default function or 3836 // method calling convention. 3837 TargetInfo::CallingConvMethodType MT = TargetInfo::CCMT_Unknown; 3838 if (FD) 3839 MT = FD->isCXXInstanceMember() ? TargetInfo::CCMT_Member : 3840 TargetInfo::CCMT_NonMember; 3841 CC = TI.getDefaultCallingConv(MT); 3842 } 3843 3844 attr.setProcessingCache((unsigned) CC); 3845 return false; 3846 } 3847 3848 /// Checks a regparm attribute, returning true if it is ill-formed and 3849 /// otherwise setting numParams to the appropriate value. 3850 bool Sema::CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) { 3851 if (Attr.isInvalid()) 3852 return true; 3853 3854 if (!checkAttributeNumArgs(*this, Attr, 1)) { 3855 Attr.setInvalid(); 3856 return true; 3857 } 3858 3859 uint32_t NP; 3860 Expr *NumParamsExpr = Attr.getArgAsExpr(0); 3861 if (!checkUInt32Argument(*this, Attr, NumParamsExpr, NP)) { 3862 Attr.setInvalid(); 3863 return true; 3864 } 3865 3866 if (Context.getTargetInfo().getRegParmMax() == 0) { 3867 Diag(Attr.getLoc(), diag::err_attribute_regparm_wrong_platform) 3868 << NumParamsExpr->getSourceRange(); 3869 Attr.setInvalid(); 3870 return true; 3871 } 3872 3873 numParams = NP; 3874 if (numParams > Context.getTargetInfo().getRegParmMax()) { 3875 Diag(Attr.getLoc(), diag::err_attribute_regparm_invalid_number) 3876 << Context.getTargetInfo().getRegParmMax() << NumParamsExpr->getSourceRange(); 3877 Attr.setInvalid(); 3878 return true; 3879 } 3880 3881 return false; 3882 } 3883 3884 // Checks whether an argument of launch_bounds attribute is acceptable 3885 // May output an error. 3886 static bool checkLaunchBoundsArgument(Sema &S, Expr *E, 3887 const CUDALaunchBoundsAttr &Attr, 3888 const unsigned Idx) { 3889 if (S.DiagnoseUnexpandedParameterPack(E)) 3890 return false; 3891 3892 // Accept template arguments for now as they depend on something else. 3893 // We'll get to check them when they eventually get instantiated. 3894 if (E->isValueDependent()) 3895 return true; 3896 3897 llvm::APSInt I(64); 3898 if (!E->isIntegerConstantExpr(I, S.Context)) { 3899 S.Diag(E->getExprLoc(), diag::err_attribute_argument_n_type) 3900 << &Attr << Idx << AANT_ArgumentIntegerConstant << E->getSourceRange(); 3901 return false; 3902 } 3903 // Make sure we can fit it in 32 bits. 3904 if (!I.isIntN(32)) { 3905 S.Diag(E->getExprLoc(), diag::err_ice_too_large) << I.toString(10, false) 3906 << 32 << /* Unsigned */ 1; 3907 return false; 3908 } 3909 if (I < 0) 3910 S.Diag(E->getExprLoc(), diag::warn_attribute_argument_n_negative) 3911 << &Attr << Idx << E->getSourceRange(); 3912 3913 return true; 3914 } 3915 3916 void Sema::AddLaunchBoundsAttr(SourceRange AttrRange, Decl *D, Expr *MaxThreads, 3917 Expr *MinBlocks, unsigned SpellingListIndex) { 3918 CUDALaunchBoundsAttr TmpAttr(AttrRange, Context, MaxThreads, MinBlocks, 3919 SpellingListIndex); 3920 3921 if (!checkLaunchBoundsArgument(*this, MaxThreads, TmpAttr, 0)) 3922 return; 3923 3924 if (MinBlocks && !checkLaunchBoundsArgument(*this, MinBlocks, TmpAttr, 1)) 3925 return; 3926 3927 D->addAttr(::new (Context) CUDALaunchBoundsAttr( 3928 AttrRange, Context, MaxThreads, MinBlocks, SpellingListIndex)); 3929 } 3930 3931 static void handleLaunchBoundsAttr(Sema &S, Decl *D, 3932 const AttributeList &Attr) { 3933 if (!checkAttributeAtLeastNumArgs(S, Attr, 1) || 3934 !checkAttributeAtMostNumArgs(S, Attr, 2)) 3935 return; 3936 3937 S.AddLaunchBoundsAttr(Attr.getRange(), D, Attr.getArgAsExpr(0), 3938 Attr.getNumArgs() > 1 ? Attr.getArgAsExpr(1) : nullptr, 3939 Attr.getAttributeSpellingListIndex()); 3940 } 3941 3942 static void handleArgumentWithTypeTagAttr(Sema &S, Decl *D, 3943 const AttributeList &Attr) { 3944 if (!Attr.isArgIdent(0)) { 3945 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 3946 << Attr.getName() << /* arg num = */ 1 << AANT_ArgumentIdentifier; 3947 return; 3948 } 3949 3950 if (!checkAttributeNumArgs(S, Attr, 3)) 3951 return; 3952 3953 IdentifierInfo *ArgumentKind = Attr.getArgAsIdent(0)->Ident; 3954 3955 if (!isFunctionOrMethod(D) || !hasFunctionProto(D)) { 3956 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) 3957 << Attr.getName() << ExpectedFunctionOrMethod; 3958 return; 3959 } 3960 3961 uint64_t ArgumentIdx; 3962 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 2, Attr.getArgAsExpr(1), 3963 ArgumentIdx)) 3964 return; 3965 3966 uint64_t TypeTagIdx; 3967 if (!checkFunctionOrMethodParameterIndex(S, D, Attr, 3, Attr.getArgAsExpr(2), 3968 TypeTagIdx)) 3969 return; 3970 3971 bool IsPointer = (Attr.getName()->getName() == "pointer_with_type_tag"); 3972 if (IsPointer) { 3973 // Ensure that buffer has a pointer type. 3974 QualType BufferTy = getFunctionOrMethodParamType(D, ArgumentIdx); 3975 if (!BufferTy->isPointerType()) { 3976 S.Diag(Attr.getLoc(), diag::err_attribute_pointers_only) 3977 << Attr.getName() << 0; 3978 } 3979 } 3980 3981 D->addAttr(::new (S.Context) 3982 ArgumentWithTypeTagAttr(Attr.getRange(), S.Context, ArgumentKind, 3983 ArgumentIdx, TypeTagIdx, IsPointer, 3984 Attr.getAttributeSpellingListIndex())); 3985 } 3986 3987 static void handleTypeTagForDatatypeAttr(Sema &S, Decl *D, 3988 const AttributeList &Attr) { 3989 if (!Attr.isArgIdent(0)) { 3990 S.Diag(Attr.getLoc(), diag::err_attribute_argument_n_type) 3991 << Attr.getName() << 1 << AANT_ArgumentIdentifier; 3992 return; 3993 } 3994 3995 if (!checkAttributeNumArgs(S, Attr, 1)) 3996 return; 3997 3998 if (!isa<VarDecl>(D)) { 3999 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_decl_type) 4000 << Attr.getName() << ExpectedVariable; 4001 return; 4002 } 4003 4004 IdentifierInfo *PointerKind = Attr.getArgAsIdent(0)->Ident; 4005 TypeSourceInfo *MatchingCTypeLoc = nullptr; 4006 S.GetTypeFromParser(Attr.getMatchingCType(), &MatchingCTypeLoc); 4007 assert(MatchingCTypeLoc && "no type source info for attribute argument"); 4008 4009 D->addAttr(::new (S.Context) 4010 TypeTagForDatatypeAttr(Attr.getRange(), S.Context, PointerKind, 4011 MatchingCTypeLoc, 4012 Attr.getLayoutCompatible(), 4013 Attr.getMustBeNull(), 4014 Attr.getAttributeSpellingListIndex())); 4015 } 4016 4017 //===----------------------------------------------------------------------===// 4018 // Checker-specific attribute handlers. 4019 //===----------------------------------------------------------------------===// 4020 4021 static bool isValidSubjectOfNSReturnsRetainedAttribute(QualType type) { 4022 return type->isDependentType() || 4023 type->isObjCRetainableType(); 4024 } 4025 4026 static bool isValidSubjectOfNSAttribute(Sema &S, QualType type) { 4027 return type->isDependentType() || 4028 type->isObjCObjectPointerType() || 4029 S.Context.isObjCNSObjectType(type); 4030 } 4031 4032 static bool isValidSubjectOfCFAttribute(Sema &S, QualType type) { 4033 return type->isDependentType() || 4034 type->isPointerType() || 4035 isValidSubjectOfNSAttribute(S, type); 4036 } 4037 4038 static void handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) { 4039 S.AddNSConsumedAttr(Attr.getRange(), D, Attr.getAttributeSpellingListIndex(), 4040 Attr.getKind() == AttributeList::AT_NSConsumed, 4041 /*template instantiation*/ false); 4042 } 4043 4044 void Sema::AddNSConsumedAttr(SourceRange attrRange, Decl *D, 4045 unsigned spellingIndex, bool isNSConsumed, 4046 bool isTemplateInstantiation) { 4047 ParmVarDecl *param = cast<ParmVarDecl>(D); 4048 bool typeOK; 4049 4050 if (isNSConsumed) { 4051 typeOK = isValidSubjectOfNSAttribute(*this, param->getType()); 4052 } else { 4053 typeOK = isValidSubjectOfCFAttribute(*this, param->getType()); 4054 } 4055 4056 if (!typeOK) { 4057 // These attributes are normally just advisory, but in ARC, ns_consumed 4058 // is significant. Allow non-dependent code to contain inappropriate 4059 // attributes even in ARC, but require template instantiations to be 4060 // set up correctly. 4061 Diag(D->getLocStart(), 4062 (isTemplateInstantiation && isNSConsumed && 4063 getLangOpts().ObjCAutoRefCount 4064 ? diag::err_ns_attribute_wrong_parameter_type 4065 : diag::warn_ns_attribute_wrong_parameter_type)) 4066 << attrRange 4067 << (isNSConsumed ? "ns_consumed" : "cf_consumed") 4068 << (isNSConsumed ? /*objc pointers*/ 0 : /*cf pointers*/ 1); 4069 return; 4070 } 4071 4072 if (isNSConsumed) 4073 param->addAttr(::new (Context) 4074 NSConsumedAttr(attrRange, Context, spellingIndex)); 4075 else 4076 param->addAttr(::new (Context) 4077 CFConsumedAttr(attrRange, Context, spellingIndex)); 4078 } 4079 4080 static void handleNSReturnsRetainedAttr(Sema &S, Decl *D, 4081 const AttributeList &Attr) { 4082 QualType returnType; 4083 4084 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) 4085 returnType = MD->getReturnType(); 4086 else if (S.getLangOpts().ObjCAutoRefCount && hasDeclarator(D) && 4087 (Attr.getKind() == AttributeList::AT_NSReturnsRetained)) 4088 return; // ignore: was handled as a type attribute 4089 else if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(D)) 4090 returnType = PD->getType(); 4091 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 4092 returnType = FD->getReturnType(); 4093 else if (auto *Param = dyn_cast<ParmVarDecl>(D)) { 4094 returnType = Param->getType()->getPointeeType(); 4095 if (returnType.isNull()) { 4096 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type) 4097 << Attr.getName() << /*pointer-to-CF*/2 4098 << Attr.getRange(); 4099 return; 4100 } 4101 } else { 4102 AttributeDeclKind ExpectedDeclKind; 4103 switch (Attr.getKind()) { 4104 default: llvm_unreachable("invalid ownership attribute"); 4105 case AttributeList::AT_NSReturnsRetained: 4106 case AttributeList::AT_NSReturnsAutoreleased: 4107 case AttributeList::AT_NSReturnsNotRetained: 4108 ExpectedDeclKind = ExpectedFunctionOrMethod; 4109 break; 4110 4111 case AttributeList::AT_CFReturnsRetained: 4112 case AttributeList::AT_CFReturnsNotRetained: 4113 ExpectedDeclKind = ExpectedFunctionMethodOrParameter; 4114 break; 4115 } 4116 S.Diag(D->getLocStart(), diag::warn_attribute_wrong_decl_type) 4117 << Attr.getRange() << Attr.getName() << ExpectedDeclKind; 4118 return; 4119 } 4120 4121 bool typeOK; 4122 bool cf; 4123 switch (Attr.getKind()) { 4124 default: llvm_unreachable("invalid ownership attribute"); 4125 case AttributeList::AT_NSReturnsRetained: 4126 typeOK = isValidSubjectOfNSReturnsRetainedAttribute(returnType); 4127 cf = false; 4128 break; 4129 4130 case AttributeList::AT_NSReturnsAutoreleased: 4131 case AttributeList::AT_NSReturnsNotRetained: 4132 typeOK = isValidSubjectOfNSAttribute(S, returnType); 4133 cf = false; 4134 break; 4135 4136 case AttributeList::AT_CFReturnsRetained: 4137 case AttributeList::AT_CFReturnsNotRetained: 4138 typeOK = isValidSubjectOfCFAttribute(S, returnType); 4139 cf = true; 4140 break; 4141 } 4142 4143 if (!typeOK) { 4144 if (isa<ParmVarDecl>(D)) { 4145 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_parameter_type) 4146 << Attr.getName() << /*pointer-to-CF*/2 4147 << Attr.getRange(); 4148 } else { 4149 // Needs to be kept in sync with warn_ns_attribute_wrong_return_type. 4150 enum : unsigned { 4151 Function, 4152 Method, 4153 Property 4154 } SubjectKind = Function; 4155 if (isa<ObjCMethodDecl>(D)) 4156 SubjectKind = Method; 4157 else if (isa<ObjCPropertyDecl>(D)) 4158 SubjectKind = Property; 4159 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type) 4160 << Attr.getName() << SubjectKind << cf 4161 << Attr.getRange(); 4162 } 4163 return; 4164 } 4165 4166 switch (Attr.getKind()) { 4167 default: 4168 llvm_unreachable("invalid ownership attribute"); 4169 case AttributeList::AT_NSReturnsAutoreleased: 4170 D->addAttr(::new (S.Context) NSReturnsAutoreleasedAttr( 4171 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 4172 return; 4173 case AttributeList::AT_CFReturnsNotRetained: 4174 D->addAttr(::new (S.Context) CFReturnsNotRetainedAttr( 4175 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 4176 return; 4177 case AttributeList::AT_NSReturnsNotRetained: 4178 D->addAttr(::new (S.Context) NSReturnsNotRetainedAttr( 4179 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 4180 return; 4181 case AttributeList::AT_CFReturnsRetained: 4182 D->addAttr(::new (S.Context) CFReturnsRetainedAttr( 4183 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 4184 return; 4185 case AttributeList::AT_NSReturnsRetained: 4186 D->addAttr(::new (S.Context) NSReturnsRetainedAttr( 4187 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 4188 return; 4189 }; 4190 } 4191 4192 static void handleObjCReturnsInnerPointerAttr(Sema &S, Decl *D, 4193 const AttributeList &attr) { 4194 const int EP_ObjCMethod = 1; 4195 const int EP_ObjCProperty = 2; 4196 4197 SourceLocation loc = attr.getLoc(); 4198 QualType resultType; 4199 if (isa<ObjCMethodDecl>(D)) 4200 resultType = cast<ObjCMethodDecl>(D)->getReturnType(); 4201 else 4202 resultType = cast<ObjCPropertyDecl>(D)->getType(); 4203 4204 if (!resultType->isReferenceType() && 4205 (!resultType->isPointerType() || resultType->isObjCRetainableType())) { 4206 S.Diag(D->getLocStart(), diag::warn_ns_attribute_wrong_return_type) 4207 << SourceRange(loc) 4208 << attr.getName() 4209 << (isa<ObjCMethodDecl>(D) ? EP_ObjCMethod : EP_ObjCProperty) 4210 << /*non-retainable pointer*/ 2; 4211 4212 // Drop the attribute. 4213 return; 4214 } 4215 4216 D->addAttr(::new (S.Context) ObjCReturnsInnerPointerAttr( 4217 attr.getRange(), S.Context, attr.getAttributeSpellingListIndex())); 4218 } 4219 4220 static void handleObjCRequiresSuperAttr(Sema &S, Decl *D, 4221 const AttributeList &attr) { 4222 ObjCMethodDecl *method = cast<ObjCMethodDecl>(D); 4223 4224 DeclContext *DC = method->getDeclContext(); 4225 if (const ObjCProtocolDecl *PDecl = dyn_cast_or_null<ObjCProtocolDecl>(DC)) { 4226 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol) 4227 << attr.getName() << 0; 4228 S.Diag(PDecl->getLocation(), diag::note_protocol_decl); 4229 return; 4230 } 4231 if (method->getMethodFamily() == OMF_dealloc) { 4232 S.Diag(D->getLocStart(), diag::warn_objc_requires_super_protocol) 4233 << attr.getName() << 1; 4234 return; 4235 } 4236 4237 method->addAttr(::new (S.Context) 4238 ObjCRequiresSuperAttr(attr.getRange(), S.Context, 4239 attr.getAttributeSpellingListIndex())); 4240 } 4241 4242 static void handleCFAuditedTransferAttr(Sema &S, Decl *D, 4243 const AttributeList &Attr) { 4244 if (checkAttrMutualExclusion<CFUnknownTransferAttr>(S, D, Attr.getRange(), 4245 Attr.getName())) 4246 return; 4247 4248 D->addAttr(::new (S.Context) 4249 CFAuditedTransferAttr(Attr.getRange(), S.Context, 4250 Attr.getAttributeSpellingListIndex())); 4251 } 4252 4253 static void handleCFUnknownTransferAttr(Sema &S, Decl *D, 4254 const AttributeList &Attr) { 4255 if (checkAttrMutualExclusion<CFAuditedTransferAttr>(S, D, Attr.getRange(), 4256 Attr.getName())) 4257 return; 4258 4259 D->addAttr(::new (S.Context) 4260 CFUnknownTransferAttr(Attr.getRange(), S.Context, 4261 Attr.getAttributeSpellingListIndex())); 4262 } 4263 4264 static void handleObjCBridgeAttr(Sema &S, Scope *Sc, Decl *D, 4265 const AttributeList &Attr) { 4266 IdentifierLoc * Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : nullptr; 4267 4268 if (!Parm) { 4269 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0; 4270 return; 4271 } 4272 4273 // Typedefs only allow objc_bridge(id) and have some additional checking. 4274 if (auto TD = dyn_cast<TypedefNameDecl>(D)) { 4275 if (!Parm->Ident->isStr("id")) { 4276 S.Diag(Attr.getLoc(), diag::err_objc_attr_typedef_not_id) 4277 << Attr.getName(); 4278 return; 4279 } 4280 4281 // Only allow 'cv void *'. 4282 QualType T = TD->getUnderlyingType(); 4283 if (!T->isVoidPointerType()) { 4284 S.Diag(Attr.getLoc(), diag::err_objc_attr_typedef_not_void_pointer); 4285 return; 4286 } 4287 } 4288 4289 D->addAttr(::new (S.Context) 4290 ObjCBridgeAttr(Attr.getRange(), S.Context, Parm->Ident, 4291 Attr.getAttributeSpellingListIndex())); 4292 } 4293 4294 static void handleObjCBridgeMutableAttr(Sema &S, Scope *Sc, Decl *D, 4295 const AttributeList &Attr) { 4296 IdentifierLoc * Parm = Attr.isArgIdent(0) ? Attr.getArgAsIdent(0) : nullptr; 4297 4298 if (!Parm) { 4299 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0; 4300 return; 4301 } 4302 4303 D->addAttr(::new (S.Context) 4304 ObjCBridgeMutableAttr(Attr.getRange(), S.Context, Parm->Ident, 4305 Attr.getAttributeSpellingListIndex())); 4306 } 4307 4308 static void handleObjCBridgeRelatedAttr(Sema &S, Scope *Sc, Decl *D, 4309 const AttributeList &Attr) { 4310 IdentifierInfo *RelatedClass = 4311 Attr.isArgIdent(0) ? Attr.getArgAsIdent(0)->Ident : nullptr; 4312 if (!RelatedClass) { 4313 S.Diag(D->getLocStart(), diag::err_objc_attr_not_id) << Attr.getName() << 0; 4314 return; 4315 } 4316 IdentifierInfo *ClassMethod = 4317 Attr.getArgAsIdent(1) ? Attr.getArgAsIdent(1)->Ident : nullptr; 4318 IdentifierInfo *InstanceMethod = 4319 Attr.getArgAsIdent(2) ? Attr.getArgAsIdent(2)->Ident : nullptr; 4320 D->addAttr(::new (S.Context) 4321 ObjCBridgeRelatedAttr(Attr.getRange(), S.Context, RelatedClass, 4322 ClassMethod, InstanceMethod, 4323 Attr.getAttributeSpellingListIndex())); 4324 } 4325 4326 static void handleObjCDesignatedInitializer(Sema &S, Decl *D, 4327 const AttributeList &Attr) { 4328 ObjCInterfaceDecl *IFace; 4329 if (ObjCCategoryDecl *CatDecl = 4330 dyn_cast<ObjCCategoryDecl>(D->getDeclContext())) 4331 IFace = CatDecl->getClassInterface(); 4332 else 4333 IFace = cast<ObjCInterfaceDecl>(D->getDeclContext()); 4334 4335 if (!IFace) 4336 return; 4337 4338 IFace->setHasDesignatedInitializers(); 4339 D->addAttr(::new (S.Context) 4340 ObjCDesignatedInitializerAttr(Attr.getRange(), S.Context, 4341 Attr.getAttributeSpellingListIndex())); 4342 } 4343 4344 static void handleObjCRuntimeName(Sema &S, Decl *D, 4345 const AttributeList &Attr) { 4346 StringRef MetaDataName; 4347 if (!S.checkStringLiteralArgumentAttr(Attr, 0, MetaDataName)) 4348 return; 4349 D->addAttr(::new (S.Context) 4350 ObjCRuntimeNameAttr(Attr.getRange(), S.Context, 4351 MetaDataName, 4352 Attr.getAttributeSpellingListIndex())); 4353 } 4354 4355 // when a user wants to use objc_boxable with a union or struct 4356 // but she doesn't have access to the declaration (legacy/third-party code) 4357 // then she can 'enable' this feature via trick with a typedef 4358 // e.g.: 4359 // typedef struct __attribute((objc_boxable)) legacy_struct legacy_struct; 4360 static void handleObjCBoxable(Sema &S, Decl *D, const AttributeList &Attr) { 4361 bool notify = false; 4362 4363 RecordDecl *RD = dyn_cast<RecordDecl>(D); 4364 if (RD && RD->getDefinition()) { 4365 RD = RD->getDefinition(); 4366 notify = true; 4367 } 4368 4369 if (RD) { 4370 ObjCBoxableAttr *BoxableAttr = ::new (S.Context) 4371 ObjCBoxableAttr(Attr.getRange(), S.Context, 4372 Attr.getAttributeSpellingListIndex()); 4373 RD->addAttr(BoxableAttr); 4374 if (notify) { 4375 // we need to notify ASTReader/ASTWriter about 4376 // modification of existing declaration 4377 if (ASTMutationListener *L = S.getASTMutationListener()) 4378 L->AddedAttributeToRecord(BoxableAttr, RD); 4379 } 4380 } 4381 } 4382 4383 static void handleObjCOwnershipAttr(Sema &S, Decl *D, 4384 const AttributeList &Attr) { 4385 if (hasDeclarator(D)) return; 4386 4387 S.Diag(D->getLocStart(), diag::err_attribute_wrong_decl_type) 4388 << Attr.getRange() << Attr.getName() << ExpectedVariable; 4389 } 4390 4391 static void handleObjCPreciseLifetimeAttr(Sema &S, Decl *D, 4392 const AttributeList &Attr) { 4393 ValueDecl *vd = cast<ValueDecl>(D); 4394 QualType type = vd->getType(); 4395 4396 if (!type->isDependentType() && 4397 !type->isObjCLifetimeType()) { 4398 S.Diag(Attr.getLoc(), diag::err_objc_precise_lifetime_bad_type) 4399 << type; 4400 return; 4401 } 4402 4403 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime(); 4404 4405 // If we have no lifetime yet, check the lifetime we're presumably 4406 // going to infer. 4407 if (lifetime == Qualifiers::OCL_None && !type->isDependentType()) 4408 lifetime = type->getObjCARCImplicitLifetime(); 4409 4410 switch (lifetime) { 4411 case Qualifiers::OCL_None: 4412 assert(type->isDependentType() && 4413 "didn't infer lifetime for non-dependent type?"); 4414 break; 4415 4416 case Qualifiers::OCL_Weak: // meaningful 4417 case Qualifiers::OCL_Strong: // meaningful 4418 break; 4419 4420 case Qualifiers::OCL_ExplicitNone: 4421 case Qualifiers::OCL_Autoreleasing: 4422 S.Diag(Attr.getLoc(), diag::warn_objc_precise_lifetime_meaningless) 4423 << (lifetime == Qualifiers::OCL_Autoreleasing); 4424 break; 4425 } 4426 4427 D->addAttr(::new (S.Context) 4428 ObjCPreciseLifetimeAttr(Attr.getRange(), S.Context, 4429 Attr.getAttributeSpellingListIndex())); 4430 } 4431 4432 //===----------------------------------------------------------------------===// 4433 // Microsoft specific attribute handlers. 4434 //===----------------------------------------------------------------------===// 4435 4436 static void handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) { 4437 if (!S.LangOpts.CPlusPlus) { 4438 S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang) 4439 << Attr.getName() << AttributeLangSupport::C; 4440 return; 4441 } 4442 4443 if (!isa<CXXRecordDecl>(D)) { 4444 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 4445 << Attr.getName() << ExpectedClass; 4446 return; 4447 } 4448 4449 StringRef StrRef; 4450 SourceLocation LiteralLoc; 4451 if (!S.checkStringLiteralArgumentAttr(Attr, 0, StrRef, &LiteralLoc)) 4452 return; 4453 4454 // GUID format is "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" or 4455 // "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}", normalize to the former. 4456 if (StrRef.size() == 38 && StrRef.front() == '{' && StrRef.back() == '}') 4457 StrRef = StrRef.drop_front().drop_back(); 4458 4459 // Validate GUID length. 4460 if (StrRef.size() != 36) { 4461 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid); 4462 return; 4463 } 4464 4465 for (unsigned i = 0; i < 36; ++i) { 4466 if (i == 8 || i == 13 || i == 18 || i == 23) { 4467 if (StrRef[i] != '-') { 4468 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid); 4469 return; 4470 } 4471 } else if (!isHexDigit(StrRef[i])) { 4472 S.Diag(LiteralLoc, diag::err_attribute_uuid_malformed_guid); 4473 return; 4474 } 4475 } 4476 4477 D->addAttr(::new (S.Context) UuidAttr(Attr.getRange(), S.Context, StrRef, 4478 Attr.getAttributeSpellingListIndex())); 4479 } 4480 4481 static void handleMSInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) { 4482 if (!S.LangOpts.CPlusPlus) { 4483 S.Diag(Attr.getLoc(), diag::err_attribute_not_supported_in_lang) 4484 << Attr.getName() << AttributeLangSupport::C; 4485 return; 4486 } 4487 MSInheritanceAttr *IA = S.mergeMSInheritanceAttr( 4488 D, Attr.getRange(), /*BestCase=*/true, 4489 Attr.getAttributeSpellingListIndex(), 4490 (MSInheritanceAttr::Spelling)Attr.getSemanticSpelling()); 4491 if (IA) { 4492 D->addAttr(IA); 4493 S.Consumer.AssignInheritanceModel(cast<CXXRecordDecl>(D)); 4494 } 4495 } 4496 4497 static void handleDeclspecThreadAttr(Sema &S, Decl *D, 4498 const AttributeList &Attr) { 4499 VarDecl *VD = cast<VarDecl>(D); 4500 if (!S.Context.getTargetInfo().isTLSSupported()) { 4501 S.Diag(Attr.getLoc(), diag::err_thread_unsupported); 4502 return; 4503 } 4504 if (VD->getTSCSpec() != TSCS_unspecified) { 4505 S.Diag(Attr.getLoc(), diag::err_declspec_thread_on_thread_variable); 4506 return; 4507 } 4508 if (VD->hasLocalStorage()) { 4509 S.Diag(Attr.getLoc(), diag::err_thread_non_global) << "__declspec(thread)"; 4510 return; 4511 } 4512 VD->addAttr(::new (S.Context) ThreadAttr( 4513 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 4514 } 4515 4516 static void handleARMInterruptAttr(Sema &S, Decl *D, 4517 const AttributeList &Attr) { 4518 // Check the attribute arguments. 4519 if (Attr.getNumArgs() > 1) { 4520 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) 4521 << Attr.getName() << 1; 4522 return; 4523 } 4524 4525 StringRef Str; 4526 SourceLocation ArgLoc; 4527 4528 if (Attr.getNumArgs() == 0) 4529 Str = ""; 4530 else if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &ArgLoc)) 4531 return; 4532 4533 ARMInterruptAttr::InterruptType Kind; 4534 if (!ARMInterruptAttr::ConvertStrToInterruptType(Str, Kind)) { 4535 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) 4536 << Attr.getName() << Str << ArgLoc; 4537 return; 4538 } 4539 4540 unsigned Index = Attr.getAttributeSpellingListIndex(); 4541 D->addAttr(::new (S.Context) 4542 ARMInterruptAttr(Attr.getLoc(), S.Context, Kind, Index)); 4543 } 4544 4545 static void handleMSP430InterruptAttr(Sema &S, Decl *D, 4546 const AttributeList &Attr) { 4547 if (!checkAttributeNumArgs(S, Attr, 1)) 4548 return; 4549 4550 if (!Attr.isArgExpr(0)) { 4551 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) << Attr.getName() 4552 << AANT_ArgumentIntegerConstant; 4553 return; 4554 } 4555 4556 // FIXME: Check for decl - it should be void ()(void). 4557 4558 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArgAsExpr(0)); 4559 llvm::APSInt NumParams(32); 4560 if (!NumParamsExpr->isIntegerConstantExpr(NumParams, S.Context)) { 4561 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type) 4562 << Attr.getName() << AANT_ArgumentIntegerConstant 4563 << NumParamsExpr->getSourceRange(); 4564 return; 4565 } 4566 4567 unsigned Num = NumParams.getLimitedValue(255); 4568 if ((Num & 1) || Num > 30) { 4569 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds) 4570 << Attr.getName() << (int)NumParams.getSExtValue() 4571 << NumParamsExpr->getSourceRange(); 4572 return; 4573 } 4574 4575 D->addAttr(::new (S.Context) 4576 MSP430InterruptAttr(Attr.getLoc(), S.Context, Num, 4577 Attr.getAttributeSpellingListIndex())); 4578 D->addAttr(UsedAttr::CreateImplicit(S.Context)); 4579 } 4580 4581 static void handleMipsInterruptAttr(Sema &S, Decl *D, 4582 const AttributeList &Attr) { 4583 // Only one optional argument permitted. 4584 if (Attr.getNumArgs() > 1) { 4585 S.Diag(Attr.getLoc(), diag::err_attribute_too_many_arguments) 4586 << Attr.getName() << 1; 4587 return; 4588 } 4589 4590 StringRef Str; 4591 SourceLocation ArgLoc; 4592 4593 if (Attr.getNumArgs() == 0) 4594 Str = ""; 4595 else if (!S.checkStringLiteralArgumentAttr(Attr, 0, Str, &ArgLoc)) 4596 return; 4597 4598 // Semantic checks for a function with the 'interrupt' attribute for MIPS: 4599 // a) Must be a function. 4600 // b) Must have no parameters. 4601 // c) Must have the 'void' return type. 4602 // d) Cannot have the 'mips16' attribute, as that instruction set 4603 // lacks the 'eret' instruction. 4604 // e) The attribute itself must either have no argument or one of the 4605 // valid interrupt types, see [MipsInterruptDocs]. 4606 4607 if (!isFunctionOrMethod(D)) { 4608 S.Diag(D->getLocation(), diag::warn_attribute_wrong_decl_type) 4609 << "'interrupt'" << ExpectedFunctionOrMethod; 4610 return; 4611 } 4612 4613 if (hasFunctionProto(D) && getFunctionOrMethodNumParams(D) != 0) { 4614 S.Diag(D->getLocation(), diag::warn_mips_interrupt_attribute) 4615 << 0; 4616 return; 4617 } 4618 4619 if (!getFunctionOrMethodResultType(D)->isVoidType()) { 4620 S.Diag(D->getLocation(), diag::warn_mips_interrupt_attribute) 4621 << 1; 4622 return; 4623 } 4624 4625 if (checkAttrMutualExclusion<Mips16Attr>(S, D, Attr.getRange(), 4626 Attr.getName())) 4627 return; 4628 4629 MipsInterruptAttr::InterruptType Kind; 4630 if (!MipsInterruptAttr::ConvertStrToInterruptType(Str, Kind)) { 4631 S.Diag(Attr.getLoc(), diag::warn_attribute_type_not_supported) 4632 << Attr.getName() << "'" + std::string(Str) + "'"; 4633 return; 4634 } 4635 4636 D->addAttr(::new (S.Context) MipsInterruptAttr( 4637 Attr.getLoc(), S.Context, Kind, Attr.getAttributeSpellingListIndex())); 4638 } 4639 4640 static void handleAnyX86InterruptAttr(Sema &S, Decl *D, 4641 const AttributeList &Attr) { 4642 // Semantic checks for a function with the 'interrupt' attribute. 4643 // a) Must be a function. 4644 // b) Must have the 'void' return type. 4645 // c) Must take 1 or 2 arguments. 4646 // d) The 1st argument must be a pointer. 4647 // e) The 2nd argument (if any) must be an unsigned integer. 4648 if (!isFunctionOrMethod(D) || !hasFunctionProto(D) || isInstanceMethod(D) || 4649 CXXMethodDecl::isStaticOverloadedOperator( 4650 cast<NamedDecl>(D)->getDeclName().getCXXOverloadedOperator())) { 4651 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 4652 << Attr.getName() << ExpectedFunctionWithProtoType; 4653 return; 4654 } 4655 // Interrupt handler must have void return type. 4656 if (!getFunctionOrMethodResultType(D)->isVoidType()) { 4657 S.Diag(getFunctionOrMethodResultSourceRange(D).getBegin(), 4658 diag::err_anyx86_interrupt_attribute) 4659 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86 4660 ? 0 4661 : 1) 4662 << 0; 4663 return; 4664 } 4665 // Interrupt handler must have 1 or 2 parameters. 4666 unsigned NumParams = getFunctionOrMethodNumParams(D); 4667 if (NumParams < 1 || NumParams > 2) { 4668 S.Diag(D->getLocStart(), diag::err_anyx86_interrupt_attribute) 4669 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86 4670 ? 0 4671 : 1) 4672 << 1; 4673 return; 4674 } 4675 // The first argument must be a pointer. 4676 if (!getFunctionOrMethodParamType(D, 0)->isPointerType()) { 4677 S.Diag(getFunctionOrMethodParamRange(D, 0).getBegin(), 4678 diag::err_anyx86_interrupt_attribute) 4679 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86 4680 ? 0 4681 : 1) 4682 << 2; 4683 return; 4684 } 4685 // The second argument, if present, must be an unsigned integer. 4686 unsigned TypeSize = 4687 S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86_64 4688 ? 64 4689 : 32; 4690 if (NumParams == 2 && 4691 (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() || 4692 S.Context.getTypeSize(getFunctionOrMethodParamType(D, 1)) != TypeSize)) { 4693 S.Diag(getFunctionOrMethodParamRange(D, 1).getBegin(), 4694 diag::err_anyx86_interrupt_attribute) 4695 << (S.Context.getTargetInfo().getTriple().getArch() == llvm::Triple::x86 4696 ? 0 4697 : 1) 4698 << 3 << S.Context.getIntTypeForBitwidth(TypeSize, /*Signed=*/false); 4699 return; 4700 } 4701 D->addAttr(::new (S.Context) AnyX86InterruptAttr( 4702 Attr.getLoc(), S.Context, Attr.getAttributeSpellingListIndex())); 4703 D->addAttr(UsedAttr::CreateImplicit(S.Context)); 4704 } 4705 4706 static void handleInterruptAttr(Sema &S, Decl *D, const AttributeList &Attr) { 4707 // Dispatch the interrupt attribute based on the current target. 4708 switch (S.Context.getTargetInfo().getTriple().getArch()) { 4709 case llvm::Triple::msp430: 4710 handleMSP430InterruptAttr(S, D, Attr); 4711 break; 4712 case llvm::Triple::mipsel: 4713 case llvm::Triple::mips: 4714 handleMipsInterruptAttr(S, D, Attr); 4715 break; 4716 case llvm::Triple::x86: 4717 case llvm::Triple::x86_64: 4718 handleAnyX86InterruptAttr(S, D, Attr); 4719 break; 4720 default: 4721 handleARMInterruptAttr(S, D, Attr); 4722 break; 4723 } 4724 } 4725 4726 static void handleAMDGPUNumVGPRAttr(Sema &S, Decl *D, 4727 const AttributeList &Attr) { 4728 uint32_t NumRegs; 4729 Expr *NumRegsExpr = static_cast<Expr *>(Attr.getArgAsExpr(0)); 4730 if (!checkUInt32Argument(S, Attr, NumRegsExpr, NumRegs)) 4731 return; 4732 4733 D->addAttr(::new (S.Context) 4734 AMDGPUNumVGPRAttr(Attr.getLoc(), S.Context, 4735 NumRegs, 4736 Attr.getAttributeSpellingListIndex())); 4737 } 4738 4739 static void handleAMDGPUNumSGPRAttr(Sema &S, Decl *D, 4740 const AttributeList &Attr) { 4741 uint32_t NumRegs; 4742 Expr *NumRegsExpr = static_cast<Expr *>(Attr.getArgAsExpr(0)); 4743 if (!checkUInt32Argument(S, Attr, NumRegsExpr, NumRegs)) 4744 return; 4745 4746 D->addAttr(::new (S.Context) 4747 AMDGPUNumSGPRAttr(Attr.getLoc(), S.Context, 4748 NumRegs, 4749 Attr.getAttributeSpellingListIndex())); 4750 } 4751 4752 static void handleX86ForceAlignArgPointerAttr(Sema &S, Decl *D, 4753 const AttributeList& Attr) { 4754 // If we try to apply it to a function pointer, don't warn, but don't 4755 // do anything, either. It doesn't matter anyway, because there's nothing 4756 // special about calling a force_align_arg_pointer function. 4757 ValueDecl *VD = dyn_cast<ValueDecl>(D); 4758 if (VD && VD->getType()->isFunctionPointerType()) 4759 return; 4760 // Also don't warn on function pointer typedefs. 4761 TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D); 4762 if (TD && (TD->getUnderlyingType()->isFunctionPointerType() || 4763 TD->getUnderlyingType()->isFunctionType())) 4764 return; 4765 // Attribute can only be applied to function types. 4766 if (!isa<FunctionDecl>(D)) { 4767 S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type) 4768 << Attr.getName() << /* function */0; 4769 return; 4770 } 4771 4772 D->addAttr(::new (S.Context) 4773 X86ForceAlignArgPointerAttr(Attr.getRange(), S.Context, 4774 Attr.getAttributeSpellingListIndex())); 4775 } 4776 4777 DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range, 4778 unsigned AttrSpellingListIndex) { 4779 if (D->hasAttr<DLLExportAttr>()) { 4780 Diag(Range.getBegin(), diag::warn_attribute_ignored) << "'dllimport'"; 4781 return nullptr; 4782 } 4783 4784 if (D->hasAttr<DLLImportAttr>()) 4785 return nullptr; 4786 4787 return ::new (Context) DLLImportAttr(Range, Context, AttrSpellingListIndex); 4788 } 4789 4790 DLLExportAttr *Sema::mergeDLLExportAttr(Decl *D, SourceRange Range, 4791 unsigned AttrSpellingListIndex) { 4792 if (DLLImportAttr *Import = D->getAttr<DLLImportAttr>()) { 4793 Diag(Import->getLocation(), diag::warn_attribute_ignored) << Import; 4794 D->dropAttr<DLLImportAttr>(); 4795 } 4796 4797 if (D->hasAttr<DLLExportAttr>()) 4798 return nullptr; 4799 4800 return ::new (Context) DLLExportAttr(Range, Context, AttrSpellingListIndex); 4801 } 4802 4803 static void handleDLLAttr(Sema &S, Decl *D, const AttributeList &A) { 4804 if (isa<ClassTemplatePartialSpecializationDecl>(D) && 4805 S.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 4806 S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored) 4807 << A.getName(); 4808 return; 4809 } 4810 4811 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 4812 if (FD->isInlined() && A.getKind() == AttributeList::AT_DLLImport && 4813 !S.Context.getTargetInfo().getCXXABI().isMicrosoft()) { 4814 // MinGW doesn't allow dllimport on inline functions. 4815 S.Diag(A.getRange().getBegin(), diag::warn_attribute_ignored_on_inline) 4816 << A.getName(); 4817 return; 4818 } 4819 } 4820 4821 if (auto *MD = dyn_cast<CXXMethodDecl>(D)) { 4822 if (S.Context.getTargetInfo().getCXXABI().isMicrosoft() && 4823 MD->getParent()->isLambda()) { 4824 S.Diag(A.getRange().getBegin(), diag::err_attribute_dll_lambda) << A.getName(); 4825 return; 4826 } 4827 } 4828 4829 unsigned Index = A.getAttributeSpellingListIndex(); 4830 Attr *NewAttr = A.getKind() == AttributeList::AT_DLLExport 4831 ? (Attr *)S.mergeDLLExportAttr(D, A.getRange(), Index) 4832 : (Attr *)S.mergeDLLImportAttr(D, A.getRange(), Index); 4833 if (NewAttr) 4834 D->addAttr(NewAttr); 4835 } 4836 4837 MSInheritanceAttr * 4838 Sema::mergeMSInheritanceAttr(Decl *D, SourceRange Range, bool BestCase, 4839 unsigned AttrSpellingListIndex, 4840 MSInheritanceAttr::Spelling SemanticSpelling) { 4841 if (MSInheritanceAttr *IA = D->getAttr<MSInheritanceAttr>()) { 4842 if (IA->getSemanticSpelling() == SemanticSpelling) 4843 return nullptr; 4844 Diag(IA->getLocation(), diag::err_mismatched_ms_inheritance) 4845 << 1 /*previous declaration*/; 4846 Diag(Range.getBegin(), diag::note_previous_ms_inheritance); 4847 D->dropAttr<MSInheritanceAttr>(); 4848 } 4849 4850 CXXRecordDecl *RD = cast<CXXRecordDecl>(D); 4851 if (RD->hasDefinition()) { 4852 if (checkMSInheritanceAttrOnDefinition(RD, Range, BestCase, 4853 SemanticSpelling)) { 4854 return nullptr; 4855 } 4856 } else { 4857 if (isa<ClassTemplatePartialSpecializationDecl>(RD)) { 4858 Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance) 4859 << 1 /*partial specialization*/; 4860 return nullptr; 4861 } 4862 if (RD->getDescribedClassTemplate()) { 4863 Diag(Range.getBegin(), diag::warn_ignored_ms_inheritance) 4864 << 0 /*primary template*/; 4865 return nullptr; 4866 } 4867 } 4868 4869 return ::new (Context) 4870 MSInheritanceAttr(Range, Context, BestCase, AttrSpellingListIndex); 4871 } 4872 4873 static void handleCapabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) { 4874 // The capability attributes take a single string parameter for the name of 4875 // the capability they represent. The lockable attribute does not take any 4876 // parameters. However, semantically, both attributes represent the same 4877 // concept, and so they use the same semantic attribute. Eventually, the 4878 // lockable attribute will be removed. 4879 // 4880 // For backward compatibility, any capability which has no specified string 4881 // literal will be considered a "mutex." 4882 StringRef N("mutex"); 4883 SourceLocation LiteralLoc; 4884 if (Attr.getKind() == AttributeList::AT_Capability && 4885 !S.checkStringLiteralArgumentAttr(Attr, 0, N, &LiteralLoc)) 4886 return; 4887 4888 // Currently, there are only two names allowed for a capability: role and 4889 // mutex (case insensitive). Diagnose other capability names. 4890 if (!N.equals_lower("mutex") && !N.equals_lower("role")) 4891 S.Diag(LiteralLoc, diag::warn_invalid_capability_name) << N; 4892 4893 D->addAttr(::new (S.Context) CapabilityAttr(Attr.getRange(), S.Context, N, 4894 Attr.getAttributeSpellingListIndex())); 4895 } 4896 4897 static void handleAssertCapabilityAttr(Sema &S, Decl *D, 4898 const AttributeList &Attr) { 4899 D->addAttr(::new (S.Context) AssertCapabilityAttr(Attr.getRange(), S.Context, 4900 Attr.getArgAsExpr(0), 4901 Attr.getAttributeSpellingListIndex())); 4902 } 4903 4904 static void handleAcquireCapabilityAttr(Sema &S, Decl *D, 4905 const AttributeList &Attr) { 4906 SmallVector<Expr*, 1> Args; 4907 if (!checkLockFunAttrCommon(S, D, Attr, Args)) 4908 return; 4909 4910 D->addAttr(::new (S.Context) AcquireCapabilityAttr(Attr.getRange(), 4911 S.Context, 4912 Args.data(), Args.size(), 4913 Attr.getAttributeSpellingListIndex())); 4914 } 4915 4916 static void handleTryAcquireCapabilityAttr(Sema &S, Decl *D, 4917 const AttributeList &Attr) { 4918 SmallVector<Expr*, 2> Args; 4919 if (!checkTryLockFunAttrCommon(S, D, Attr, Args)) 4920 return; 4921 4922 D->addAttr(::new (S.Context) TryAcquireCapabilityAttr(Attr.getRange(), 4923 S.Context, 4924 Attr.getArgAsExpr(0), 4925 Args.data(), 4926 Args.size(), 4927 Attr.getAttributeSpellingListIndex())); 4928 } 4929 4930 static void handleReleaseCapabilityAttr(Sema &S, Decl *D, 4931 const AttributeList &Attr) { 4932 // Check that all arguments are lockable objects. 4933 SmallVector<Expr *, 1> Args; 4934 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args, 0, true); 4935 4936 D->addAttr(::new (S.Context) ReleaseCapabilityAttr( 4937 Attr.getRange(), S.Context, Args.data(), Args.size(), 4938 Attr.getAttributeSpellingListIndex())); 4939 } 4940 4941 static void handleRequiresCapabilityAttr(Sema &S, Decl *D, 4942 const AttributeList &Attr) { 4943 if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) 4944 return; 4945 4946 // check that all arguments are lockable objects 4947 SmallVector<Expr*, 1> Args; 4948 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args); 4949 if (Args.empty()) 4950 return; 4951 4952 RequiresCapabilityAttr *RCA = ::new (S.Context) 4953 RequiresCapabilityAttr(Attr.getRange(), S.Context, Args.data(), 4954 Args.size(), Attr.getAttributeSpellingListIndex()); 4955 4956 D->addAttr(RCA); 4957 } 4958 4959 static void handleDeprecatedAttr(Sema &S, Decl *D, const AttributeList &Attr) { 4960 if (auto *NSD = dyn_cast<NamespaceDecl>(D)) { 4961 if (NSD->isAnonymousNamespace()) { 4962 S.Diag(Attr.getLoc(), diag::warn_deprecated_anonymous_namespace); 4963 // Do not want to attach the attribute to the namespace because that will 4964 // cause confusing diagnostic reports for uses of declarations within the 4965 // namespace. 4966 return; 4967 } 4968 } 4969 4970 if (!S.getLangOpts().CPlusPlus14) 4971 if (Attr.isCXX11Attribute() && 4972 !(Attr.hasScope() && Attr.getScopeName()->isStr("gnu"))) 4973 S.Diag(Attr.getLoc(), diag::ext_deprecated_attr_is_a_cxx14_extension); 4974 4975 handleAttrWithMessage<DeprecatedAttr>(S, D, Attr); 4976 } 4977 4978 static void handleNoSanitizeAttr(Sema &S, Decl *D, const AttributeList &Attr) { 4979 if (!checkAttributeAtLeastNumArgs(S, Attr, 1)) 4980 return; 4981 4982 std::vector<StringRef> Sanitizers; 4983 4984 for (unsigned I = 0, E = Attr.getNumArgs(); I != E; ++I) { 4985 StringRef SanitizerName; 4986 SourceLocation LiteralLoc; 4987 4988 if (!S.checkStringLiteralArgumentAttr(Attr, I, SanitizerName, &LiteralLoc)) 4989 return; 4990 4991 if (parseSanitizerValue(SanitizerName, /*AllowGroups=*/true) == 0) 4992 S.Diag(LiteralLoc, diag::warn_unknown_sanitizer_ignored) << SanitizerName; 4993 4994 Sanitizers.push_back(SanitizerName); 4995 } 4996 4997 D->addAttr(::new (S.Context) NoSanitizeAttr( 4998 Attr.getRange(), S.Context, Sanitizers.data(), Sanitizers.size(), 4999 Attr.getAttributeSpellingListIndex())); 5000 } 5001 5002 static void handleNoSanitizeSpecificAttr(Sema &S, Decl *D, 5003 const AttributeList &Attr) { 5004 StringRef AttrName = Attr.getName()->getName(); 5005 normalizeName(AttrName); 5006 StringRef SanitizerName = 5007 llvm::StringSwitch<StringRef>(AttrName) 5008 .Case("no_address_safety_analysis", "address") 5009 .Case("no_sanitize_address", "address") 5010 .Case("no_sanitize_thread", "thread") 5011 .Case("no_sanitize_memory", "memory"); 5012 D->addAttr(::new (S.Context) 5013 NoSanitizeAttr(Attr.getRange(), S.Context, &SanitizerName, 1, 5014 Attr.getAttributeSpellingListIndex())); 5015 } 5016 5017 static void handleInternalLinkageAttr(Sema &S, Decl *D, 5018 const AttributeList &Attr) { 5019 if (InternalLinkageAttr *Internal = 5020 S.mergeInternalLinkageAttr(D, Attr.getRange(), Attr.getName(), 5021 Attr.getAttributeSpellingListIndex())) 5022 D->addAttr(Internal); 5023 } 5024 5025 /// Handles semantic checking for features that are common to all attributes, 5026 /// such as checking whether a parameter was properly specified, or the correct 5027 /// number of arguments were passed, etc. 5028 static bool handleCommonAttributeFeatures(Sema &S, Scope *scope, Decl *D, 5029 const AttributeList &Attr) { 5030 // Several attributes carry different semantics than the parsing requires, so 5031 // those are opted out of the common handling. 5032 // 5033 // We also bail on unknown and ignored attributes because those are handled 5034 // as part of the target-specific handling logic. 5035 if (Attr.hasCustomParsing() || 5036 Attr.getKind() == AttributeList::UnknownAttribute) 5037 return false; 5038 5039 // Check whether the attribute requires specific language extensions to be 5040 // enabled. 5041 if (!Attr.diagnoseLangOpts(S)) 5042 return true; 5043 5044 if (Attr.getMinArgs() == Attr.getMaxArgs()) { 5045 // If there are no optional arguments, then checking for the argument count 5046 // is trivial. 5047 if (!checkAttributeNumArgs(S, Attr, Attr.getMinArgs())) 5048 return true; 5049 } else { 5050 // There are optional arguments, so checking is slightly more involved. 5051 if (Attr.getMinArgs() && 5052 !checkAttributeAtLeastNumArgs(S, Attr, Attr.getMinArgs())) 5053 return true; 5054 else if (!Attr.hasVariadicArg() && Attr.getMaxArgs() && 5055 !checkAttributeAtMostNumArgs(S, Attr, Attr.getMaxArgs())) 5056 return true; 5057 } 5058 5059 // Check whether the attribute appertains to the given subject. 5060 if (!Attr.diagnoseAppertainsTo(S, D)) 5061 return true; 5062 5063 return false; 5064 } 5065 5066 static void handleOpenCLAccessAttr(Sema &S, Decl *D, 5067 const AttributeList &Attr) { 5068 if (D->isInvalidDecl()) 5069 return; 5070 5071 // Check if there is only one access qualifier. 5072 if (D->hasAttr<OpenCLAccessAttr>()) { 5073 S.Diag(Attr.getLoc(), diag::err_opencl_multiple_access_qualifiers) 5074 << D->getSourceRange(); 5075 D->setInvalidDecl(true); 5076 return; 5077 } 5078 5079 // OpenCL v2.0 s6.6 - read_write can be used for image types to specify that an 5080 // image object can be read and written. 5081 // OpenCL v2.0 s6.13.6 - A kernel cannot read from and write to the same pipe 5082 // object. Using the read_write (or __read_write) qualifier with the pipe 5083 // qualifier is a compilation error. 5084 if (const ParmVarDecl *PDecl = dyn_cast<ParmVarDecl>(D)) { 5085 const Type *DeclTy = PDecl->getType().getCanonicalType().getTypePtr(); 5086 if (Attr.getName()->getName().find("read_write") != StringRef::npos) { 5087 if (S.getLangOpts().OpenCLVersion < 200 || DeclTy->isPipeType()) { 5088 S.Diag(Attr.getLoc(), diag::err_opencl_invalid_read_write) 5089 << Attr.getName() << PDecl->getType() << DeclTy->isImageType(); 5090 D->setInvalidDecl(true); 5091 return; 5092 } 5093 } 5094 } 5095 5096 D->addAttr(::new (S.Context) OpenCLAccessAttr( 5097 Attr.getRange(), S.Context, Attr.getAttributeSpellingListIndex())); 5098 } 5099 5100 //===----------------------------------------------------------------------===// 5101 // Top Level Sema Entry Points 5102 //===----------------------------------------------------------------------===// 5103 5104 /// ProcessDeclAttribute - Apply the specific attribute to the specified decl if 5105 /// the attribute applies to decls. If the attribute is a type attribute, just 5106 /// silently ignore it if a GNU attribute. 5107 static void ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, 5108 const AttributeList &Attr, 5109 bool IncludeCXX11Attributes) { 5110 if (Attr.isInvalid() || Attr.getKind() == AttributeList::IgnoredAttribute) 5111 return; 5112 5113 // Ignore C++11 attributes on declarator chunks: they appertain to the type 5114 // instead. 5115 if (Attr.isCXX11Attribute() && !IncludeCXX11Attributes) 5116 return; 5117 5118 // Unknown attributes are automatically warned on. Target-specific attributes 5119 // which do not apply to the current target architecture are treated as 5120 // though they were unknown attributes. 5121 if (Attr.getKind() == AttributeList::UnknownAttribute || 5122 !Attr.existsInTarget(S.Context.getTargetInfo())) { 5123 S.Diag(Attr.getLoc(), Attr.isDeclspecAttribute() 5124 ? diag::warn_unhandled_ms_attribute_ignored 5125 : diag::warn_unknown_attribute_ignored) 5126 << Attr.getName(); 5127 return; 5128 } 5129 5130 if (handleCommonAttributeFeatures(S, scope, D, Attr)) 5131 return; 5132 5133 switch (Attr.getKind()) { 5134 default: 5135 // Type attributes are handled elsewhere; silently move on. 5136 assert(Attr.isTypeAttr() && "Non-type attribute not handled"); 5137 break; 5138 case AttributeList::AT_Interrupt: 5139 handleInterruptAttr(S, D, Attr); 5140 break; 5141 case AttributeList::AT_X86ForceAlignArgPointer: 5142 handleX86ForceAlignArgPointerAttr(S, D, Attr); 5143 break; 5144 case AttributeList::AT_DLLExport: 5145 case AttributeList::AT_DLLImport: 5146 handleDLLAttr(S, D, Attr); 5147 break; 5148 case AttributeList::AT_Mips16: 5149 handleSimpleAttributeWithExclusions<Mips16Attr, MipsInterruptAttr>(S, D, 5150 Attr); 5151 break; 5152 case AttributeList::AT_NoMips16: 5153 handleSimpleAttribute<NoMips16Attr>(S, D, Attr); 5154 break; 5155 case AttributeList::AT_AMDGPUNumVGPR: 5156 handleAMDGPUNumVGPRAttr(S, D, Attr); 5157 break; 5158 case AttributeList::AT_AMDGPUNumSGPR: 5159 handleAMDGPUNumSGPRAttr(S, D, Attr); 5160 break; 5161 case AttributeList::AT_IBAction: 5162 handleSimpleAttribute<IBActionAttr>(S, D, Attr); 5163 break; 5164 case AttributeList::AT_IBOutlet: 5165 handleIBOutlet(S, D, Attr); 5166 break; 5167 case AttributeList::AT_IBOutletCollection: 5168 handleIBOutletCollection(S, D, Attr); 5169 break; 5170 case AttributeList::AT_Alias: 5171 handleAliasAttr(S, D, Attr); 5172 break; 5173 case AttributeList::AT_Aligned: 5174 handleAlignedAttr(S, D, Attr); 5175 break; 5176 case AttributeList::AT_AlignValue: 5177 handleAlignValueAttr(S, D, Attr); 5178 break; 5179 case AttributeList::AT_AlwaysInline: 5180 handleAlwaysInlineAttr(S, D, Attr); 5181 break; 5182 case AttributeList::AT_AnalyzerNoReturn: 5183 handleAnalyzerNoReturnAttr(S, D, Attr); 5184 break; 5185 case AttributeList::AT_TLSModel: 5186 handleTLSModelAttr(S, D, Attr); 5187 break; 5188 case AttributeList::AT_Annotate: 5189 handleAnnotateAttr(S, D, Attr); 5190 break; 5191 case AttributeList::AT_Availability: 5192 handleAvailabilityAttr(S, D, Attr); 5193 break; 5194 case AttributeList::AT_CarriesDependency: 5195 handleDependencyAttr(S, scope, D, Attr); 5196 break; 5197 case AttributeList::AT_Common: 5198 handleCommonAttr(S, D, Attr); 5199 break; 5200 case AttributeList::AT_CUDAConstant: 5201 handleSimpleAttributeWithExclusions<CUDAConstantAttr, CUDASharedAttr>(S, D, 5202 Attr); 5203 break; 5204 case AttributeList::AT_PassObjectSize: 5205 handlePassObjectSizeAttr(S, D, Attr); 5206 break; 5207 case AttributeList::AT_Constructor: 5208 handleConstructorAttr(S, D, Attr); 5209 break; 5210 case AttributeList::AT_CXX11NoReturn: 5211 handleSimpleAttribute<CXX11NoReturnAttr>(S, D, Attr); 5212 break; 5213 case AttributeList::AT_Deprecated: 5214 handleDeprecatedAttr(S, D, Attr); 5215 break; 5216 case AttributeList::AT_Destructor: 5217 handleDestructorAttr(S, D, Attr); 5218 break; 5219 case AttributeList::AT_EnableIf: 5220 handleEnableIfAttr(S, D, Attr); 5221 break; 5222 case AttributeList::AT_ExtVectorType: 5223 handleExtVectorTypeAttr(S, scope, D, Attr); 5224 break; 5225 case AttributeList::AT_MinSize: 5226 handleMinSizeAttr(S, D, Attr); 5227 break; 5228 case AttributeList::AT_OptimizeNone: 5229 handleOptimizeNoneAttr(S, D, Attr); 5230 break; 5231 case AttributeList::AT_FlagEnum: 5232 handleSimpleAttribute<FlagEnumAttr>(S, D, Attr); 5233 break; 5234 case AttributeList::AT_Flatten: 5235 handleSimpleAttribute<FlattenAttr>(S, D, Attr); 5236 break; 5237 case AttributeList::AT_Format: 5238 handleFormatAttr(S, D, Attr); 5239 break; 5240 case AttributeList::AT_FormatArg: 5241 handleFormatArgAttr(S, D, Attr); 5242 break; 5243 case AttributeList::AT_CUDAGlobal: 5244 handleGlobalAttr(S, D, Attr); 5245 break; 5246 case AttributeList::AT_CUDADevice: 5247 handleSimpleAttributeWithExclusions<CUDADeviceAttr, CUDAGlobalAttr>(S, D, 5248 Attr); 5249 break; 5250 case AttributeList::AT_CUDAHost: 5251 handleSimpleAttributeWithExclusions<CUDAHostAttr, CUDAGlobalAttr>(S, D, 5252 Attr); 5253 break; 5254 case AttributeList::AT_GNUInline: 5255 handleGNUInlineAttr(S, D, Attr); 5256 break; 5257 case AttributeList::AT_CUDALaunchBounds: 5258 handleLaunchBoundsAttr(S, D, Attr); 5259 break; 5260 case AttributeList::AT_Restrict: 5261 handleRestrictAttr(S, D, Attr); 5262 break; 5263 case AttributeList::AT_MayAlias: 5264 handleSimpleAttribute<MayAliasAttr>(S, D, Attr); 5265 break; 5266 case AttributeList::AT_Mode: 5267 handleModeAttr(S, D, Attr); 5268 break; 5269 case AttributeList::AT_NoAlias: 5270 handleSimpleAttribute<NoAliasAttr>(S, D, Attr); 5271 break; 5272 case AttributeList::AT_NoCommon: 5273 handleSimpleAttribute<NoCommonAttr>(S, D, Attr); 5274 break; 5275 case AttributeList::AT_NoSplitStack: 5276 handleSimpleAttribute<NoSplitStackAttr>(S, D, Attr); 5277 break; 5278 case AttributeList::AT_NonNull: 5279 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(D)) 5280 handleNonNullAttrParameter(S, PVD, Attr); 5281 else 5282 handleNonNullAttr(S, D, Attr); 5283 break; 5284 case AttributeList::AT_ReturnsNonNull: 5285 handleReturnsNonNullAttr(S, D, Attr); 5286 break; 5287 case AttributeList::AT_AssumeAligned: 5288 handleAssumeAlignedAttr(S, D, Attr); 5289 break; 5290 case AttributeList::AT_Overloadable: 5291 handleSimpleAttribute<OverloadableAttr>(S, D, Attr); 5292 break; 5293 case AttributeList::AT_Ownership: 5294 handleOwnershipAttr(S, D, Attr); 5295 break; 5296 case AttributeList::AT_Cold: 5297 handleColdAttr(S, D, Attr); 5298 break; 5299 case AttributeList::AT_Hot: 5300 handleHotAttr(S, D, Attr); 5301 break; 5302 case AttributeList::AT_Naked: 5303 handleNakedAttr(S, D, Attr); 5304 break; 5305 case AttributeList::AT_NoReturn: 5306 handleNoReturnAttr(S, D, Attr); 5307 break; 5308 case AttributeList::AT_NoThrow: 5309 handleSimpleAttribute<NoThrowAttr>(S, D, Attr); 5310 break; 5311 case AttributeList::AT_CUDAShared: 5312 handleSimpleAttributeWithExclusions<CUDASharedAttr, CUDAConstantAttr>(S, D, 5313 Attr); 5314 break; 5315 case AttributeList::AT_VecReturn: 5316 handleVecReturnAttr(S, D, Attr); 5317 break; 5318 case AttributeList::AT_ObjCOwnership: 5319 handleObjCOwnershipAttr(S, D, Attr); 5320 break; 5321 case AttributeList::AT_ObjCPreciseLifetime: 5322 handleObjCPreciseLifetimeAttr(S, D, Attr); 5323 break; 5324 case AttributeList::AT_ObjCReturnsInnerPointer: 5325 handleObjCReturnsInnerPointerAttr(S, D, Attr); 5326 break; 5327 case AttributeList::AT_ObjCRequiresSuper: 5328 handleObjCRequiresSuperAttr(S, D, Attr); 5329 break; 5330 case AttributeList::AT_ObjCBridge: 5331 handleObjCBridgeAttr(S, scope, D, Attr); 5332 break; 5333 case AttributeList::AT_ObjCBridgeMutable: 5334 handleObjCBridgeMutableAttr(S, scope, D, Attr); 5335 break; 5336 case AttributeList::AT_ObjCBridgeRelated: 5337 handleObjCBridgeRelatedAttr(S, scope, D, Attr); 5338 break; 5339 case AttributeList::AT_ObjCDesignatedInitializer: 5340 handleObjCDesignatedInitializer(S, D, Attr); 5341 break; 5342 case AttributeList::AT_ObjCRuntimeName: 5343 handleObjCRuntimeName(S, D, Attr); 5344 break; 5345 case AttributeList::AT_ObjCBoxable: 5346 handleObjCBoxable(S, D, Attr); 5347 break; 5348 case AttributeList::AT_CFAuditedTransfer: 5349 handleCFAuditedTransferAttr(S, D, Attr); 5350 break; 5351 case AttributeList::AT_CFUnknownTransfer: 5352 handleCFUnknownTransferAttr(S, D, Attr); 5353 break; 5354 case AttributeList::AT_CFConsumed: 5355 case AttributeList::AT_NSConsumed: 5356 handleNSConsumedAttr(S, D, Attr); 5357 break; 5358 case AttributeList::AT_NSConsumesSelf: 5359 handleSimpleAttribute<NSConsumesSelfAttr>(S, D, Attr); 5360 break; 5361 case AttributeList::AT_NSReturnsAutoreleased: 5362 case AttributeList::AT_NSReturnsNotRetained: 5363 case AttributeList::AT_CFReturnsNotRetained: 5364 case AttributeList::AT_NSReturnsRetained: 5365 case AttributeList::AT_CFReturnsRetained: 5366 handleNSReturnsRetainedAttr(S, D, Attr); 5367 break; 5368 case AttributeList::AT_WorkGroupSizeHint: 5369 handleWorkGroupSize<WorkGroupSizeHintAttr>(S, D, Attr); 5370 break; 5371 case AttributeList::AT_ReqdWorkGroupSize: 5372 handleWorkGroupSize<ReqdWorkGroupSizeAttr>(S, D, Attr); 5373 break; 5374 case AttributeList::AT_VecTypeHint: 5375 handleVecTypeHint(S, D, Attr); 5376 break; 5377 case AttributeList::AT_InitPriority: 5378 handleInitPriorityAttr(S, D, Attr); 5379 break; 5380 case AttributeList::AT_Packed: 5381 handlePackedAttr(S, D, Attr); 5382 break; 5383 case AttributeList::AT_Section: 5384 handleSectionAttr(S, D, Attr); 5385 break; 5386 case AttributeList::AT_Target: 5387 handleTargetAttr(S, D, Attr); 5388 break; 5389 case AttributeList::AT_Unavailable: 5390 handleAttrWithMessage<UnavailableAttr>(S, D, Attr); 5391 break; 5392 case AttributeList::AT_ArcWeakrefUnavailable: 5393 handleSimpleAttribute<ArcWeakrefUnavailableAttr>(S, D, Attr); 5394 break; 5395 case AttributeList::AT_ObjCRootClass: 5396 handleSimpleAttribute<ObjCRootClassAttr>(S, D, Attr); 5397 break; 5398 case AttributeList::AT_ObjCExplicitProtocolImpl: 5399 handleObjCSuppresProtocolAttr(S, D, Attr); 5400 break; 5401 case AttributeList::AT_ObjCRequiresPropertyDefs: 5402 handleSimpleAttribute<ObjCRequiresPropertyDefsAttr>(S, D, Attr); 5403 break; 5404 case AttributeList::AT_Unused: 5405 handleSimpleAttribute<UnusedAttr>(S, D, Attr); 5406 break; 5407 case AttributeList::AT_ReturnsTwice: 5408 handleSimpleAttribute<ReturnsTwiceAttr>(S, D, Attr); 5409 break; 5410 case AttributeList::AT_NotTailCalled: 5411 handleNotTailCalledAttr(S, D, Attr); 5412 break; 5413 case AttributeList::AT_DisableTailCalls: 5414 handleDisableTailCallsAttr(S, D, Attr); 5415 break; 5416 case AttributeList::AT_Used: 5417 handleUsedAttr(S, D, Attr); 5418 break; 5419 case AttributeList::AT_Visibility: 5420 handleVisibilityAttr(S, D, Attr, false); 5421 break; 5422 case AttributeList::AT_TypeVisibility: 5423 handleVisibilityAttr(S, D, Attr, true); 5424 break; 5425 case AttributeList::AT_WarnUnused: 5426 handleSimpleAttribute<WarnUnusedAttr>(S, D, Attr); 5427 break; 5428 case AttributeList::AT_WarnUnusedResult: 5429 handleWarnUnusedResult(S, D, Attr); 5430 break; 5431 case AttributeList::AT_Weak: 5432 handleSimpleAttribute<WeakAttr>(S, D, Attr); 5433 break; 5434 case AttributeList::AT_WeakRef: 5435 handleWeakRefAttr(S, D, Attr); 5436 break; 5437 case AttributeList::AT_WeakImport: 5438 handleWeakImportAttr(S, D, Attr); 5439 break; 5440 case AttributeList::AT_TransparentUnion: 5441 handleTransparentUnionAttr(S, D, Attr); 5442 break; 5443 case AttributeList::AT_ObjCException: 5444 handleSimpleAttribute<ObjCExceptionAttr>(S, D, Attr); 5445 break; 5446 case AttributeList::AT_ObjCMethodFamily: 5447 handleObjCMethodFamilyAttr(S, D, Attr); 5448 break; 5449 case AttributeList::AT_ObjCNSObject: 5450 handleObjCNSObject(S, D, Attr); 5451 break; 5452 case AttributeList::AT_ObjCIndependentClass: 5453 handleObjCIndependentClass(S, D, Attr); 5454 break; 5455 case AttributeList::AT_Blocks: 5456 handleBlocksAttr(S, D, Attr); 5457 break; 5458 case AttributeList::AT_Sentinel: 5459 handleSentinelAttr(S, D, Attr); 5460 break; 5461 case AttributeList::AT_Const: 5462 handleSimpleAttribute<ConstAttr>(S, D, Attr); 5463 break; 5464 case AttributeList::AT_Pure: 5465 handleSimpleAttribute<PureAttr>(S, D, Attr); 5466 break; 5467 case AttributeList::AT_Cleanup: 5468 handleCleanupAttr(S, D, Attr); 5469 break; 5470 case AttributeList::AT_NoDebug: 5471 handleNoDebugAttr(S, D, Attr); 5472 break; 5473 case AttributeList::AT_NoDuplicate: 5474 handleSimpleAttribute<NoDuplicateAttr>(S, D, Attr); 5475 break; 5476 case AttributeList::AT_NoInline: 5477 handleSimpleAttribute<NoInlineAttr>(S, D, Attr); 5478 break; 5479 case AttributeList::AT_NoInstrumentFunction: // Interacts with -pg. 5480 handleSimpleAttribute<NoInstrumentFunctionAttr>(S, D, Attr); 5481 break; 5482 case AttributeList::AT_StdCall: 5483 case AttributeList::AT_CDecl: 5484 case AttributeList::AT_FastCall: 5485 case AttributeList::AT_ThisCall: 5486 case AttributeList::AT_Pascal: 5487 case AttributeList::AT_VectorCall: 5488 case AttributeList::AT_MSABI: 5489 case AttributeList::AT_SysVABI: 5490 case AttributeList::AT_Pcs: 5491 case AttributeList::AT_IntelOclBicc: 5492 handleCallConvAttr(S, D, Attr); 5493 break; 5494 case AttributeList::AT_OpenCLKernel: 5495 handleSimpleAttribute<OpenCLKernelAttr>(S, D, Attr); 5496 break; 5497 case AttributeList::AT_OpenCLAccess: 5498 handleOpenCLAccessAttr(S, D, Attr); 5499 break; 5500 case AttributeList::AT_InternalLinkage: 5501 handleInternalLinkageAttr(S, D, Attr); 5502 break; 5503 5504 // Microsoft attributes: 5505 case AttributeList::AT_MSNoVTable: 5506 handleSimpleAttribute<MSNoVTableAttr>(S, D, Attr); 5507 break; 5508 case AttributeList::AT_MSStruct: 5509 handleSimpleAttribute<MSStructAttr>(S, D, Attr); 5510 break; 5511 case AttributeList::AT_Uuid: 5512 handleUuidAttr(S, D, Attr); 5513 break; 5514 case AttributeList::AT_MSInheritance: 5515 handleMSInheritanceAttr(S, D, Attr); 5516 break; 5517 case AttributeList::AT_SelectAny: 5518 handleSimpleAttribute<SelectAnyAttr>(S, D, Attr); 5519 break; 5520 case AttributeList::AT_Thread: 5521 handleDeclspecThreadAttr(S, D, Attr); 5522 break; 5523 5524 // Thread safety attributes: 5525 case AttributeList::AT_AssertExclusiveLock: 5526 handleAssertExclusiveLockAttr(S, D, Attr); 5527 break; 5528 case AttributeList::AT_AssertSharedLock: 5529 handleAssertSharedLockAttr(S, D, Attr); 5530 break; 5531 case AttributeList::AT_GuardedVar: 5532 handleSimpleAttribute<GuardedVarAttr>(S, D, Attr); 5533 break; 5534 case AttributeList::AT_PtGuardedVar: 5535 handlePtGuardedVarAttr(S, D, Attr); 5536 break; 5537 case AttributeList::AT_ScopedLockable: 5538 handleSimpleAttribute<ScopedLockableAttr>(S, D, Attr); 5539 break; 5540 case AttributeList::AT_NoSanitize: 5541 handleNoSanitizeAttr(S, D, Attr); 5542 break; 5543 case AttributeList::AT_NoSanitizeSpecific: 5544 handleNoSanitizeSpecificAttr(S, D, Attr); 5545 break; 5546 case AttributeList::AT_NoThreadSafetyAnalysis: 5547 handleSimpleAttribute<NoThreadSafetyAnalysisAttr>(S, D, Attr); 5548 break; 5549 case AttributeList::AT_GuardedBy: 5550 handleGuardedByAttr(S, D, Attr); 5551 break; 5552 case AttributeList::AT_PtGuardedBy: 5553 handlePtGuardedByAttr(S, D, Attr); 5554 break; 5555 case AttributeList::AT_ExclusiveTrylockFunction: 5556 handleExclusiveTrylockFunctionAttr(S, D, Attr); 5557 break; 5558 case AttributeList::AT_LockReturned: 5559 handleLockReturnedAttr(S, D, Attr); 5560 break; 5561 case AttributeList::AT_LocksExcluded: 5562 handleLocksExcludedAttr(S, D, Attr); 5563 break; 5564 case AttributeList::AT_SharedTrylockFunction: 5565 handleSharedTrylockFunctionAttr(S, D, Attr); 5566 break; 5567 case AttributeList::AT_AcquiredBefore: 5568 handleAcquiredBeforeAttr(S, D, Attr); 5569 break; 5570 case AttributeList::AT_AcquiredAfter: 5571 handleAcquiredAfterAttr(S, D, Attr); 5572 break; 5573 5574 // Capability analysis attributes. 5575 case AttributeList::AT_Capability: 5576 case AttributeList::AT_Lockable: 5577 handleCapabilityAttr(S, D, Attr); 5578 break; 5579 case AttributeList::AT_RequiresCapability: 5580 handleRequiresCapabilityAttr(S, D, Attr); 5581 break; 5582 5583 case AttributeList::AT_AssertCapability: 5584 handleAssertCapabilityAttr(S, D, Attr); 5585 break; 5586 case AttributeList::AT_AcquireCapability: 5587 handleAcquireCapabilityAttr(S, D, Attr); 5588 break; 5589 case AttributeList::AT_ReleaseCapability: 5590 handleReleaseCapabilityAttr(S, D, Attr); 5591 break; 5592 case AttributeList::AT_TryAcquireCapability: 5593 handleTryAcquireCapabilityAttr(S, D, Attr); 5594 break; 5595 5596 // Consumed analysis attributes. 5597 case AttributeList::AT_Consumable: 5598 handleConsumableAttr(S, D, Attr); 5599 break; 5600 case AttributeList::AT_ConsumableAutoCast: 5601 handleSimpleAttribute<ConsumableAutoCastAttr>(S, D, Attr); 5602 break; 5603 case AttributeList::AT_ConsumableSetOnRead: 5604 handleSimpleAttribute<ConsumableSetOnReadAttr>(S, D, Attr); 5605 break; 5606 case AttributeList::AT_CallableWhen: 5607 handleCallableWhenAttr(S, D, Attr); 5608 break; 5609 case AttributeList::AT_ParamTypestate: 5610 handleParamTypestateAttr(S, D, Attr); 5611 break; 5612 case AttributeList::AT_ReturnTypestate: 5613 handleReturnTypestateAttr(S, D, Attr); 5614 break; 5615 case AttributeList::AT_SetTypestate: 5616 handleSetTypestateAttr(S, D, Attr); 5617 break; 5618 case AttributeList::AT_TestTypestate: 5619 handleTestTypestateAttr(S, D, Attr); 5620 break; 5621 5622 // Type safety attributes. 5623 case AttributeList::AT_ArgumentWithTypeTag: 5624 handleArgumentWithTypeTagAttr(S, D, Attr); 5625 break; 5626 case AttributeList::AT_TypeTagForDatatype: 5627 handleTypeTagForDatatypeAttr(S, D, Attr); 5628 break; 5629 } 5630 } 5631 5632 /// ProcessDeclAttributeList - Apply all the decl attributes in the specified 5633 /// attribute list to the specified decl, ignoring any type attributes. 5634 void Sema::ProcessDeclAttributeList(Scope *S, Decl *D, 5635 const AttributeList *AttrList, 5636 bool IncludeCXX11Attributes) { 5637 for (const AttributeList* l = AttrList; l; l = l->getNext()) 5638 ProcessDeclAttribute(*this, S, D, *l, IncludeCXX11Attributes); 5639 5640 // FIXME: We should be able to handle these cases in TableGen. 5641 // GCC accepts 5642 // static int a9 __attribute__((weakref)); 5643 // but that looks really pointless. We reject it. 5644 if (D->hasAttr<WeakRefAttr>() && !D->hasAttr<AliasAttr>()) { 5645 Diag(AttrList->getLoc(), diag::err_attribute_weakref_without_alias) 5646 << cast<NamedDecl>(D); 5647 D->dropAttr<WeakRefAttr>(); 5648 return; 5649 } 5650 5651 // FIXME: We should be able to handle this in TableGen as well. It would be 5652 // good to have a way to specify "these attributes must appear as a group", 5653 // for these. Additionally, it would be good to have a way to specify "these 5654 // attribute must never appear as a group" for attributes like cold and hot. 5655 if (!D->hasAttr<OpenCLKernelAttr>()) { 5656 // These attributes cannot be applied to a non-kernel function. 5657 if (Attr *A = D->getAttr<ReqdWorkGroupSizeAttr>()) { 5658 // FIXME: This emits a different error message than 5659 // diag::err_attribute_wrong_decl_type + ExpectedKernelFunction. 5660 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A; 5661 D->setInvalidDecl(); 5662 } else if (Attr *A = D->getAttr<WorkGroupSizeHintAttr>()) { 5663 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A; 5664 D->setInvalidDecl(); 5665 } else if (Attr *A = D->getAttr<VecTypeHintAttr>()) { 5666 Diag(D->getLocation(), diag::err_opencl_kernel_attr) << A; 5667 D->setInvalidDecl(); 5668 } else if (Attr *A = D->getAttr<AMDGPUNumVGPRAttr>()) { 5669 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type) 5670 << A << ExpectedKernelFunction; 5671 D->setInvalidDecl(); 5672 } else if (Attr *A = D->getAttr<AMDGPUNumSGPRAttr>()) { 5673 Diag(D->getLocation(), diag::err_attribute_wrong_decl_type) 5674 << A << ExpectedKernelFunction; 5675 D->setInvalidDecl(); 5676 } 5677 } 5678 } 5679 5680 // Annotation attributes are the only attributes allowed after an access 5681 // specifier. 5682 bool Sema::ProcessAccessDeclAttributeList(AccessSpecDecl *ASDecl, 5683 const AttributeList *AttrList) { 5684 for (const AttributeList* l = AttrList; l; l = l->getNext()) { 5685 if (l->getKind() == AttributeList::AT_Annotate) { 5686 ProcessDeclAttribute(*this, nullptr, ASDecl, *l, l->isCXX11Attribute()); 5687 } else { 5688 Diag(l->getLoc(), diag::err_only_annotate_after_access_spec); 5689 return true; 5690 } 5691 } 5692 5693 return false; 5694 } 5695 5696 /// checkUnusedDeclAttributes - Check a list of attributes to see if it 5697 /// contains any decl attributes that we should warn about. 5698 static void checkUnusedDeclAttributes(Sema &S, const AttributeList *A) { 5699 for ( ; A; A = A->getNext()) { 5700 // Only warn if the attribute is an unignored, non-type attribute. 5701 if (A->isUsedAsTypeAttr() || A->isInvalid()) continue; 5702 if (A->getKind() == AttributeList::IgnoredAttribute) continue; 5703 5704 if (A->getKind() == AttributeList::UnknownAttribute) { 5705 S.Diag(A->getLoc(), diag::warn_unknown_attribute_ignored) 5706 << A->getName() << A->getRange(); 5707 } else { 5708 S.Diag(A->getLoc(), diag::warn_attribute_not_on_decl) 5709 << A->getName() << A->getRange(); 5710 } 5711 } 5712 } 5713 5714 /// checkUnusedDeclAttributes - Given a declarator which is not being 5715 /// used to build a declaration, complain about any decl attributes 5716 /// which might be lying around on it. 5717 void Sema::checkUnusedDeclAttributes(Declarator &D) { 5718 ::checkUnusedDeclAttributes(*this, D.getDeclSpec().getAttributes().getList()); 5719 ::checkUnusedDeclAttributes(*this, D.getAttributes()); 5720 for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) 5721 ::checkUnusedDeclAttributes(*this, D.getTypeObject(i).getAttrs()); 5722 } 5723 5724 /// DeclClonePragmaWeak - clone existing decl (maybe definition), 5725 /// \#pragma weak needs a non-definition decl and source may not have one. 5726 NamedDecl * Sema::DeclClonePragmaWeak(NamedDecl *ND, IdentifierInfo *II, 5727 SourceLocation Loc) { 5728 assert(isa<FunctionDecl>(ND) || isa<VarDecl>(ND)); 5729 NamedDecl *NewD = nullptr; 5730 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) { 5731 FunctionDecl *NewFD; 5732 // FIXME: Missing call to CheckFunctionDeclaration(). 5733 // FIXME: Mangling? 5734 // FIXME: Is the qualifier info correct? 5735 // FIXME: Is the DeclContext correct? 5736 NewFD = FunctionDecl::Create(FD->getASTContext(), FD->getDeclContext(), 5737 Loc, Loc, DeclarationName(II), 5738 FD->getType(), FD->getTypeSourceInfo(), 5739 SC_None, false/*isInlineSpecified*/, 5740 FD->hasPrototype(), 5741 false/*isConstexprSpecified*/); 5742 NewD = NewFD; 5743 5744 if (FD->getQualifier()) 5745 NewFD->setQualifierInfo(FD->getQualifierLoc()); 5746 5747 // Fake up parameter variables; they are declared as if this were 5748 // a typedef. 5749 QualType FDTy = FD->getType(); 5750 if (const FunctionProtoType *FT = FDTy->getAs<FunctionProtoType>()) { 5751 SmallVector<ParmVarDecl*, 16> Params; 5752 for (const auto &AI : FT->param_types()) { 5753 ParmVarDecl *Param = BuildParmVarDeclForTypedef(NewFD, Loc, AI); 5754 Param->setScopeInfo(0, Params.size()); 5755 Params.push_back(Param); 5756 } 5757 NewFD->setParams(Params); 5758 } 5759 } else if (VarDecl *VD = dyn_cast<VarDecl>(ND)) { 5760 NewD = VarDecl::Create(VD->getASTContext(), VD->getDeclContext(), 5761 VD->getInnerLocStart(), VD->getLocation(), II, 5762 VD->getType(), VD->getTypeSourceInfo(), 5763 VD->getStorageClass()); 5764 if (VD->getQualifier()) { 5765 VarDecl *NewVD = cast<VarDecl>(NewD); 5766 NewVD->setQualifierInfo(VD->getQualifierLoc()); 5767 } 5768 } 5769 return NewD; 5770 } 5771 5772 /// DeclApplyPragmaWeak - A declaration (maybe definition) needs \#pragma weak 5773 /// applied to it, possibly with an alias. 5774 void Sema::DeclApplyPragmaWeak(Scope *S, NamedDecl *ND, WeakInfo &W) { 5775 if (W.getUsed()) return; // only do this once 5776 W.setUsed(true); 5777 if (W.getAlias()) { // clone decl, impersonate __attribute(weak,alias(...)) 5778 IdentifierInfo *NDId = ND->getIdentifier(); 5779 NamedDecl *NewD = DeclClonePragmaWeak(ND, W.getAlias(), W.getLocation()); 5780 NewD->addAttr(AliasAttr::CreateImplicit(Context, NDId->getName(), 5781 W.getLocation())); 5782 NewD->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation())); 5783 WeakTopLevelDecl.push_back(NewD); 5784 // FIXME: "hideous" code from Sema::LazilyCreateBuiltin 5785 // to insert Decl at TU scope, sorry. 5786 DeclContext *SavedContext = CurContext; 5787 CurContext = Context.getTranslationUnitDecl(); 5788 NewD->setDeclContext(CurContext); 5789 NewD->setLexicalDeclContext(CurContext); 5790 PushOnScopeChains(NewD, S); 5791 CurContext = SavedContext; 5792 } else { // just add weak to existing 5793 ND->addAttr(WeakAttr::CreateImplicit(Context, W.getLocation())); 5794 } 5795 } 5796 5797 void Sema::ProcessPragmaWeak(Scope *S, Decl *D) { 5798 // It's valid to "forward-declare" #pragma weak, in which case we 5799 // have to do this. 5800 LoadExternalWeakUndeclaredIdentifiers(); 5801 if (!WeakUndeclaredIdentifiers.empty()) { 5802 NamedDecl *ND = nullptr; 5803 if (VarDecl *VD = dyn_cast<VarDecl>(D)) 5804 if (VD->isExternC()) 5805 ND = VD; 5806 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) 5807 if (FD->isExternC()) 5808 ND = FD; 5809 if (ND) { 5810 if (IdentifierInfo *Id = ND->getIdentifier()) { 5811 auto I = WeakUndeclaredIdentifiers.find(Id); 5812 if (I != WeakUndeclaredIdentifiers.end()) { 5813 WeakInfo W = I->second; 5814 DeclApplyPragmaWeak(S, ND, W); 5815 WeakUndeclaredIdentifiers[Id] = W; 5816 } 5817 } 5818 } 5819 } 5820 } 5821 5822 /// ProcessDeclAttributes - Given a declarator (PD) with attributes indicated in 5823 /// it, apply them to D. This is a bit tricky because PD can have attributes 5824 /// specified in many different places, and we need to find and apply them all. 5825 void Sema::ProcessDeclAttributes(Scope *S, Decl *D, const Declarator &PD) { 5826 // Apply decl attributes from the DeclSpec if present. 5827 if (const AttributeList *Attrs = PD.getDeclSpec().getAttributes().getList()) 5828 ProcessDeclAttributeList(S, D, Attrs); 5829 5830 // Walk the declarator structure, applying decl attributes that were in a type 5831 // position to the decl itself. This handles cases like: 5832 // int *__attr__(x)** D; 5833 // when X is a decl attribute. 5834 for (unsigned i = 0, e = PD.getNumTypeObjects(); i != e; ++i) 5835 if (const AttributeList *Attrs = PD.getTypeObject(i).getAttrs()) 5836 ProcessDeclAttributeList(S, D, Attrs, /*IncludeCXX11Attributes=*/false); 5837 5838 // Finally, apply any attributes on the decl itself. 5839 if (const AttributeList *Attrs = PD.getAttributes()) 5840 ProcessDeclAttributeList(S, D, Attrs); 5841 } 5842 5843 /// Is the given declaration allowed to use a forbidden type? 5844 /// If so, it'll still be annotated with an attribute that makes it 5845 /// illegal to actually use. 5846 static bool isForbiddenTypeAllowed(Sema &S, Decl *decl, 5847 const DelayedDiagnostic &diag, 5848 UnavailableAttr::ImplicitReason &reason) { 5849 // Private ivars are always okay. Unfortunately, people don't 5850 // always properly make their ivars private, even in system headers. 5851 // Plus we need to make fields okay, too. 5852 if (!isa<FieldDecl>(decl) && !isa<ObjCPropertyDecl>(decl) && 5853 !isa<FunctionDecl>(decl)) 5854 return false; 5855 5856 // Silently accept unsupported uses of __weak in both user and system 5857 // declarations when it's been disabled, for ease of integration with 5858 // -fno-objc-arc files. We do have to take some care against attempts 5859 // to define such things; for now, we've only done that for ivars 5860 // and properties. 5861 if ((isa<ObjCIvarDecl>(decl) || isa<ObjCPropertyDecl>(decl))) { 5862 if (diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_disabled || 5863 diag.getForbiddenTypeDiagnostic() == diag::err_arc_weak_no_runtime) { 5864 reason = UnavailableAttr::IR_ForbiddenWeak; 5865 return true; 5866 } 5867 } 5868 5869 // Allow all sorts of things in system headers. 5870 if (S.Context.getSourceManager().isInSystemHeader(decl->getLocation())) { 5871 // Currently, all the failures dealt with this way are due to ARC 5872 // restrictions. 5873 reason = UnavailableAttr::IR_ARCForbiddenType; 5874 return true; 5875 } 5876 5877 return false; 5878 } 5879 5880 /// Handle a delayed forbidden-type diagnostic. 5881 static void handleDelayedForbiddenType(Sema &S, DelayedDiagnostic &diag, 5882 Decl *decl) { 5883 auto reason = UnavailableAttr::IR_None; 5884 if (decl && isForbiddenTypeAllowed(S, decl, diag, reason)) { 5885 assert(reason && "didn't set reason?"); 5886 decl->addAttr(UnavailableAttr::CreateImplicit(S.Context, "", reason, 5887 diag.Loc)); 5888 return; 5889 } 5890 if (S.getLangOpts().ObjCAutoRefCount) 5891 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(decl)) { 5892 // FIXME: we may want to suppress diagnostics for all 5893 // kind of forbidden type messages on unavailable functions. 5894 if (FD->hasAttr<UnavailableAttr>() && 5895 diag.getForbiddenTypeDiagnostic() == 5896 diag::err_arc_array_param_no_ownership) { 5897 diag.Triggered = true; 5898 return; 5899 } 5900 } 5901 5902 S.Diag(diag.Loc, diag.getForbiddenTypeDiagnostic()) 5903 << diag.getForbiddenTypeOperand() << diag.getForbiddenTypeArgument(); 5904 diag.Triggered = true; 5905 } 5906 5907 static bool isDeclDeprecated(Decl *D) { 5908 do { 5909 if (D->isDeprecated()) 5910 return true; 5911 // A category implicitly has the availability of the interface. 5912 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D)) 5913 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface()) 5914 return Interface->isDeprecated(); 5915 } while ((D = cast_or_null<Decl>(D->getDeclContext()))); 5916 return false; 5917 } 5918 5919 static bool isDeclUnavailable(Decl *D) { 5920 do { 5921 if (D->isUnavailable()) 5922 return true; 5923 // A category implicitly has the availability of the interface. 5924 if (const ObjCCategoryDecl *CatD = dyn_cast<ObjCCategoryDecl>(D)) 5925 if (const ObjCInterfaceDecl *Interface = CatD->getClassInterface()) 5926 return Interface->isUnavailable(); 5927 } while ((D = cast_or_null<Decl>(D->getDeclContext()))); 5928 return false; 5929 } 5930 5931 static void DoEmitAvailabilityWarning(Sema &S, Sema::AvailabilityDiagnostic K, 5932 Decl *Ctx, const NamedDecl *D, 5933 StringRef Message, SourceLocation Loc, 5934 const ObjCInterfaceDecl *UnknownObjCClass, 5935 const ObjCPropertyDecl *ObjCProperty, 5936 bool ObjCPropertyAccess) { 5937 // Diagnostics for deprecated or unavailable. 5938 unsigned diag, diag_message, diag_fwdclass_message; 5939 unsigned diag_available_here = diag::note_availability_specified_here; 5940 5941 // Matches 'diag::note_property_attribute' options. 5942 unsigned property_note_select; 5943 5944 // Matches diag::note_availability_specified_here. 5945 unsigned available_here_select_kind; 5946 5947 // Don't warn if our current context is deprecated or unavailable. 5948 switch (K) { 5949 case Sema::AD_Deprecation: 5950 if (isDeclDeprecated(Ctx) || isDeclUnavailable(Ctx)) 5951 return; 5952 diag = !ObjCPropertyAccess ? diag::warn_deprecated 5953 : diag::warn_property_method_deprecated; 5954 diag_message = diag::warn_deprecated_message; 5955 diag_fwdclass_message = diag::warn_deprecated_fwdclass_message; 5956 property_note_select = /* deprecated */ 0; 5957 available_here_select_kind = /* deprecated */ 2; 5958 break; 5959 5960 case Sema::AD_Unavailable: 5961 if (isDeclUnavailable(Ctx)) 5962 return; 5963 diag = !ObjCPropertyAccess ? diag::err_unavailable 5964 : diag::err_property_method_unavailable; 5965 diag_message = diag::err_unavailable_message; 5966 diag_fwdclass_message = diag::warn_unavailable_fwdclass_message; 5967 property_note_select = /* unavailable */ 1; 5968 available_here_select_kind = /* unavailable */ 0; 5969 5970 if (auto attr = D->getAttr<UnavailableAttr>()) { 5971 if (attr->isImplicit() && attr->getImplicitReason()) { 5972 // Most of these failures are due to extra restrictions in ARC; 5973 // reflect that in the primary diagnostic when applicable. 5974 auto flagARCError = [&] { 5975 if (S.getLangOpts().ObjCAutoRefCount && 5976 S.getSourceManager().isInSystemHeader(D->getLocation())) 5977 diag = diag::err_unavailable_in_arc; 5978 }; 5979 5980 switch (attr->getImplicitReason()) { 5981 case UnavailableAttr::IR_None: break; 5982 5983 case UnavailableAttr::IR_ARCForbiddenType: 5984 flagARCError(); 5985 diag_available_here = diag::note_arc_forbidden_type; 5986 break; 5987 5988 case UnavailableAttr::IR_ForbiddenWeak: 5989 if (S.getLangOpts().ObjCWeakRuntime) 5990 diag_available_here = diag::note_arc_weak_disabled; 5991 else 5992 diag_available_here = diag::note_arc_weak_no_runtime; 5993 break; 5994 5995 case UnavailableAttr::IR_ARCForbiddenConversion: 5996 flagARCError(); 5997 diag_available_here = diag::note_performs_forbidden_arc_conversion; 5998 break; 5999 6000 case UnavailableAttr::IR_ARCInitReturnsUnrelated: 6001 flagARCError(); 6002 diag_available_here = diag::note_arc_init_returns_unrelated; 6003 break; 6004 6005 case UnavailableAttr::IR_ARCFieldWithOwnership: 6006 flagARCError(); 6007 diag_available_here = diag::note_arc_field_with_ownership; 6008 break; 6009 } 6010 } 6011 } 6012 break; 6013 6014 case Sema::AD_Partial: 6015 diag = diag::warn_partial_availability; 6016 diag_message = diag::warn_partial_message; 6017 diag_fwdclass_message = diag::warn_partial_fwdclass_message; 6018 property_note_select = /* partial */ 2; 6019 available_here_select_kind = /* partial */ 3; 6020 break; 6021 } 6022 6023 if (!Message.empty()) { 6024 S.Diag(Loc, diag_message) << D << Message; 6025 if (ObjCProperty) 6026 S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute) 6027 << ObjCProperty->getDeclName() << property_note_select; 6028 } else if (!UnknownObjCClass) { 6029 S.Diag(Loc, diag) << D; 6030 if (ObjCProperty) 6031 S.Diag(ObjCProperty->getLocation(), diag::note_property_attribute) 6032 << ObjCProperty->getDeclName() << property_note_select; 6033 } else { 6034 S.Diag(Loc, diag_fwdclass_message) << D; 6035 S.Diag(UnknownObjCClass->getLocation(), diag::note_forward_class); 6036 } 6037 6038 S.Diag(D->getLocation(), diag_available_here) 6039 << D << available_here_select_kind; 6040 if (K == Sema::AD_Partial) 6041 S.Diag(Loc, diag::note_partial_availability_silence) << D; 6042 } 6043 6044 static void handleDelayedAvailabilityCheck(Sema &S, DelayedDiagnostic &DD, 6045 Decl *Ctx) { 6046 assert(DD.Kind == DelayedDiagnostic::Deprecation || 6047 DD.Kind == DelayedDiagnostic::Unavailable); 6048 Sema::AvailabilityDiagnostic AD = DD.Kind == DelayedDiagnostic::Deprecation 6049 ? Sema::AD_Deprecation 6050 : Sema::AD_Unavailable; 6051 DD.Triggered = true; 6052 DoEmitAvailabilityWarning( 6053 S, AD, Ctx, DD.getDeprecationDecl(), DD.getDeprecationMessage(), DD.Loc, 6054 DD.getUnknownObjCClass(), DD.getObjCProperty(), false); 6055 } 6056 6057 void Sema::PopParsingDeclaration(ParsingDeclState state, Decl *decl) { 6058 assert(DelayedDiagnostics.getCurrentPool()); 6059 DelayedDiagnosticPool &poppedPool = *DelayedDiagnostics.getCurrentPool(); 6060 DelayedDiagnostics.popWithoutEmitting(state); 6061 6062 // When delaying diagnostics to run in the context of a parsed 6063 // declaration, we only want to actually emit anything if parsing 6064 // succeeds. 6065 if (!decl) return; 6066 6067 // We emit all the active diagnostics in this pool or any of its 6068 // parents. In general, we'll get one pool for the decl spec 6069 // and a child pool for each declarator; in a decl group like: 6070 // deprecated_typedef foo, *bar, baz(); 6071 // only the declarator pops will be passed decls. This is correct; 6072 // we really do need to consider delayed diagnostics from the decl spec 6073 // for each of the different declarations. 6074 const DelayedDiagnosticPool *pool = &poppedPool; 6075 do { 6076 for (DelayedDiagnosticPool::pool_iterator 6077 i = pool->pool_begin(), e = pool->pool_end(); i != e; ++i) { 6078 // This const_cast is a bit lame. Really, Triggered should be mutable. 6079 DelayedDiagnostic &diag = const_cast<DelayedDiagnostic&>(*i); 6080 if (diag.Triggered) 6081 continue; 6082 6083 switch (diag.Kind) { 6084 case DelayedDiagnostic::Deprecation: 6085 case DelayedDiagnostic::Unavailable: 6086 // Don't bother giving deprecation/unavailable diagnostics if 6087 // the decl is invalid. 6088 if (!decl->isInvalidDecl()) 6089 handleDelayedAvailabilityCheck(*this, diag, decl); 6090 break; 6091 6092 case DelayedDiagnostic::Access: 6093 HandleDelayedAccessCheck(diag, decl); 6094 break; 6095 6096 case DelayedDiagnostic::ForbiddenType: 6097 handleDelayedForbiddenType(*this, diag, decl); 6098 break; 6099 } 6100 } 6101 } while ((pool = pool->getParent())); 6102 } 6103 6104 /// Given a set of delayed diagnostics, re-emit them as if they had 6105 /// been delayed in the current context instead of in the given pool. 6106 /// Essentially, this just moves them to the current pool. 6107 void Sema::redelayDiagnostics(DelayedDiagnosticPool &pool) { 6108 DelayedDiagnosticPool *curPool = DelayedDiagnostics.getCurrentPool(); 6109 assert(curPool && "re-emitting in undelayed context not supported"); 6110 curPool->steal(pool); 6111 } 6112 6113 void Sema::EmitAvailabilityWarning(AvailabilityDiagnostic AD, 6114 NamedDecl *D, StringRef Message, 6115 SourceLocation Loc, 6116 const ObjCInterfaceDecl *UnknownObjCClass, 6117 const ObjCPropertyDecl *ObjCProperty, 6118 bool ObjCPropertyAccess) { 6119 // Delay if we're currently parsing a declaration. 6120 if (DelayedDiagnostics.shouldDelayDiagnostics() && AD != AD_Partial) { 6121 DelayedDiagnostics.add(DelayedDiagnostic::makeAvailability( 6122 AD, Loc, D, UnknownObjCClass, ObjCProperty, Message, 6123 ObjCPropertyAccess)); 6124 return; 6125 } 6126 6127 Decl *Ctx = cast<Decl>(getCurLexicalContext()); 6128 DoEmitAvailabilityWarning(*this, AD, Ctx, D, Message, Loc, UnknownObjCClass, 6129 ObjCProperty, ObjCPropertyAccess); 6130 } 6131