1 //===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// 9 /// \file 10 /// Implements semantic analysis for C++ expressions. 11 /// 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/Sema/Template.h" 15 #include "clang/Sema/SemaInternal.h" 16 #include "TreeTransform.h" 17 #include "TypeLocBuilder.h" 18 #include "clang/AST/ASTContext.h" 19 #include "clang/AST/ASTLambda.h" 20 #include "clang/AST/CXXInheritance.h" 21 #include "clang/AST/CharUnits.h" 22 #include "clang/AST/DeclObjC.h" 23 #include "clang/AST/ExprCXX.h" 24 #include "clang/AST/ExprObjC.h" 25 #include "clang/AST/RecursiveASTVisitor.h" 26 #include "clang/AST/TypeLoc.h" 27 #include "clang/Basic/AlignedAllocation.h" 28 #include "clang/Basic/PartialDiagnostic.h" 29 #include "clang/Basic/TargetInfo.h" 30 #include "clang/Lex/Preprocessor.h" 31 #include "clang/Sema/DeclSpec.h" 32 #include "clang/Sema/Initialization.h" 33 #include "clang/Sema/Lookup.h" 34 #include "clang/Sema/ParsedTemplate.h" 35 #include "clang/Sema/Scope.h" 36 #include "clang/Sema/ScopeInfo.h" 37 #include "clang/Sema/SemaLambda.h" 38 #include "clang/Sema/TemplateDeduction.h" 39 #include "llvm/ADT/APInt.h" 40 #include "llvm/ADT/STLExtras.h" 41 #include "llvm/Support/ErrorHandling.h" 42 using namespace clang; 43 using namespace sema; 44 45 /// Handle the result of the special case name lookup for inheriting 46 /// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as 47 /// constructor names in member using declarations, even if 'X' is not the 48 /// name of the corresponding type. 49 ParsedType Sema::getInheritingConstructorName(CXXScopeSpec &SS, 50 SourceLocation NameLoc, 51 IdentifierInfo &Name) { 52 NestedNameSpecifier *NNS = SS.getScopeRep(); 53 54 // Convert the nested-name-specifier into a type. 55 QualType Type; 56 switch (NNS->getKind()) { 57 case NestedNameSpecifier::TypeSpec: 58 case NestedNameSpecifier::TypeSpecWithTemplate: 59 Type = QualType(NNS->getAsType(), 0); 60 break; 61 62 case NestedNameSpecifier::Identifier: 63 // Strip off the last layer of the nested-name-specifier and build a 64 // typename type for it. 65 assert(NNS->getAsIdentifier() == &Name && "not a constructor name"); 66 Type = Context.getDependentNameType(ETK_None, NNS->getPrefix(), 67 NNS->getAsIdentifier()); 68 break; 69 70 case NestedNameSpecifier::Global: 71 case NestedNameSpecifier::Super: 72 case NestedNameSpecifier::Namespace: 73 case NestedNameSpecifier::NamespaceAlias: 74 llvm_unreachable("Nested name specifier is not a type for inheriting ctor"); 75 } 76 77 // This reference to the type is located entirely at the location of the 78 // final identifier in the qualified-id. 79 return CreateParsedType(Type, 80 Context.getTrivialTypeSourceInfo(Type, NameLoc)); 81 } 82 83 ParsedType Sema::getConstructorName(IdentifierInfo &II, 84 SourceLocation NameLoc, 85 Scope *S, CXXScopeSpec &SS, 86 bool EnteringContext) { 87 CXXRecordDecl *CurClass = getCurrentClass(S, &SS); 88 assert(CurClass && &II == CurClass->getIdentifier() && 89 "not a constructor name"); 90 91 // When naming a constructor as a member of a dependent context (eg, in a 92 // friend declaration or an inherited constructor declaration), form an 93 // unresolved "typename" type. 94 if (CurClass->isDependentContext() && !EnteringContext && SS.getScopeRep()) { 95 QualType T = Context.getDependentNameType(ETK_None, SS.getScopeRep(), &II); 96 return ParsedType::make(T); 97 } 98 99 if (SS.isNotEmpty() && RequireCompleteDeclContext(SS, CurClass)) 100 return ParsedType(); 101 102 // Find the injected-class-name declaration. Note that we make no attempt to 103 // diagnose cases where the injected-class-name is shadowed: the only 104 // declaration that can validly shadow the injected-class-name is a 105 // non-static data member, and if the class contains both a non-static data 106 // member and a constructor then it is ill-formed (we check that in 107 // CheckCompletedCXXClass). 108 CXXRecordDecl *InjectedClassName = nullptr; 109 for (NamedDecl *ND : CurClass->lookup(&II)) { 110 auto *RD = dyn_cast<CXXRecordDecl>(ND); 111 if (RD && RD->isInjectedClassName()) { 112 InjectedClassName = RD; 113 break; 114 } 115 } 116 if (!InjectedClassName) { 117 if (!CurClass->isInvalidDecl()) { 118 // FIXME: RequireCompleteDeclContext doesn't check dependent contexts 119 // properly. Work around it here for now. 120 Diag(SS.getLastQualifierNameLoc(), 121 diag::err_incomplete_nested_name_spec) << CurClass << SS.getRange(); 122 } 123 return ParsedType(); 124 } 125 126 QualType T = Context.getTypeDeclType(InjectedClassName); 127 DiagnoseUseOfDecl(InjectedClassName, NameLoc); 128 MarkAnyDeclReferenced(NameLoc, InjectedClassName, /*OdrUse=*/false); 129 130 return ParsedType::make(T); 131 } 132 133 ParsedType Sema::getDestructorName(SourceLocation TildeLoc, 134 IdentifierInfo &II, 135 SourceLocation NameLoc, 136 Scope *S, CXXScopeSpec &SS, 137 ParsedType ObjectTypePtr, 138 bool EnteringContext) { 139 // Determine where to perform name lookup. 140 141 // FIXME: This area of the standard is very messy, and the current 142 // wording is rather unclear about which scopes we search for the 143 // destructor name; see core issues 399 and 555. Issue 399 in 144 // particular shows where the current description of destructor name 145 // lookup is completely out of line with existing practice, e.g., 146 // this appears to be ill-formed: 147 // 148 // namespace N { 149 // template <typename T> struct S { 150 // ~S(); 151 // }; 152 // } 153 // 154 // void f(N::S<int>* s) { 155 // s->N::S<int>::~S(); 156 // } 157 // 158 // See also PR6358 and PR6359. 159 // 160 // For now, we accept all the cases in which the name given could plausibly 161 // be interpreted as a correct destructor name, issuing off-by-default 162 // extension diagnostics on the cases that don't strictly conform to the 163 // C++20 rules. This basically means we always consider looking in the 164 // nested-name-specifier prefix, the complete nested-name-specifier, and 165 // the scope, and accept if we find the expected type in any of the three 166 // places. 167 168 if (SS.isInvalid()) 169 return nullptr; 170 171 // Whether we've failed with a diagnostic already. 172 bool Failed = false; 173 174 llvm::SmallVector<NamedDecl*, 8> FoundDecls; 175 llvm::SmallPtrSet<CanonicalDeclPtr<Decl>, 8> FoundDeclSet; 176 177 // If we have an object type, it's because we are in a 178 // pseudo-destructor-expression or a member access expression, and 179 // we know what type we're looking for. 180 QualType SearchType = 181 ObjectTypePtr ? GetTypeFromParser(ObjectTypePtr) : QualType(); 182 183 auto CheckLookupResult = [&](LookupResult &Found) -> ParsedType { 184 auto IsAcceptableResult = [&](NamedDecl *D) -> bool { 185 auto *Type = dyn_cast<TypeDecl>(D->getUnderlyingDecl()); 186 if (!Type) 187 return false; 188 189 if (SearchType.isNull() || SearchType->isDependentType()) 190 return true; 191 192 QualType T = Context.getTypeDeclType(Type); 193 return Context.hasSameUnqualifiedType(T, SearchType); 194 }; 195 196 unsigned NumAcceptableResults = 0; 197 for (NamedDecl *D : Found) { 198 if (IsAcceptableResult(D)) 199 ++NumAcceptableResults; 200 201 // Don't list a class twice in the lookup failure diagnostic if it's 202 // found by both its injected-class-name and by the name in the enclosing 203 // scope. 204 if (auto *RD = dyn_cast<CXXRecordDecl>(D)) 205 if (RD->isInjectedClassName()) 206 D = cast<NamedDecl>(RD->getParent()); 207 208 if (FoundDeclSet.insert(D).second) 209 FoundDecls.push_back(D); 210 } 211 212 // As an extension, attempt to "fix" an ambiguity by erasing all non-type 213 // results, and all non-matching results if we have a search type. It's not 214 // clear what the right behavior is if destructor lookup hits an ambiguity, 215 // but other compilers do generally accept at least some kinds of 216 // ambiguity. 217 if (Found.isAmbiguous() && NumAcceptableResults == 1) { 218 Diag(NameLoc, diag::ext_dtor_name_ambiguous); 219 LookupResult::Filter F = Found.makeFilter(); 220 while (F.hasNext()) { 221 NamedDecl *D = F.next(); 222 if (auto *TD = dyn_cast<TypeDecl>(D->getUnderlyingDecl())) 223 Diag(D->getLocation(), diag::note_destructor_type_here) 224 << Context.getTypeDeclType(TD); 225 else 226 Diag(D->getLocation(), diag::note_destructor_nontype_here); 227 228 if (!IsAcceptableResult(D)) 229 F.erase(); 230 } 231 F.done(); 232 } 233 234 if (Found.isAmbiguous()) 235 Failed = true; 236 237 if (TypeDecl *Type = Found.getAsSingle<TypeDecl>()) { 238 if (IsAcceptableResult(Type)) { 239 QualType T = Context.getTypeDeclType(Type); 240 MarkAnyDeclReferenced(Type->getLocation(), Type, /*OdrUse=*/false); 241 return CreateParsedType(T, 242 Context.getTrivialTypeSourceInfo(T, NameLoc)); 243 } 244 } 245 246 return nullptr; 247 }; 248 249 bool IsDependent = false; 250 251 auto LookupInObjectType = [&]() -> ParsedType { 252 if (Failed || SearchType.isNull()) 253 return nullptr; 254 255 IsDependent |= SearchType->isDependentType(); 256 257 LookupResult Found(*this, &II, NameLoc, LookupDestructorName); 258 DeclContext *LookupCtx = computeDeclContext(SearchType); 259 if (!LookupCtx) 260 return nullptr; 261 LookupQualifiedName(Found, LookupCtx); 262 return CheckLookupResult(Found); 263 }; 264 265 auto LookupInNestedNameSpec = [&](CXXScopeSpec &LookupSS) -> ParsedType { 266 if (Failed) 267 return nullptr; 268 269 IsDependent |= isDependentScopeSpecifier(LookupSS); 270 DeclContext *LookupCtx = computeDeclContext(LookupSS, EnteringContext); 271 if (!LookupCtx) 272 return nullptr; 273 274 LookupResult Found(*this, &II, NameLoc, LookupDestructorName); 275 if (RequireCompleteDeclContext(LookupSS, LookupCtx)) { 276 Failed = true; 277 return nullptr; 278 } 279 LookupQualifiedName(Found, LookupCtx); 280 return CheckLookupResult(Found); 281 }; 282 283 auto LookupInScope = [&]() -> ParsedType { 284 if (Failed || !S) 285 return nullptr; 286 287 LookupResult Found(*this, &II, NameLoc, LookupDestructorName); 288 LookupName(Found, S); 289 return CheckLookupResult(Found); 290 }; 291 292 // C++2a [basic.lookup.qual]p6: 293 // In a qualified-id of the form 294 // 295 // nested-name-specifier[opt] type-name :: ~ type-name 296 // 297 // the second type-name is looked up in the same scope as the first. 298 // 299 // We interpret this as meaning that if you do a dual-scope lookup for the 300 // first name, you also do a dual-scope lookup for the second name, per 301 // C++ [basic.lookup.classref]p4: 302 // 303 // If the id-expression in a class member access is a qualified-id of the 304 // form 305 // 306 // class-name-or-namespace-name :: ... 307 // 308 // the class-name-or-namespace-name following the . or -> is first looked 309 // up in the class of the object expression and the name, if found, is used. 310 // Otherwise, it is looked up in the context of the entire 311 // postfix-expression. 312 // 313 // This looks in the same scopes as for an unqualified destructor name: 314 // 315 // C++ [basic.lookup.classref]p3: 316 // If the unqualified-id is ~ type-name, the type-name is looked up 317 // in the context of the entire postfix-expression. If the type T 318 // of the object expression is of a class type C, the type-name is 319 // also looked up in the scope of class C. At least one of the 320 // lookups shall find a name that refers to cv T. 321 // 322 // FIXME: The intent is unclear here. Should type-name::~type-name look in 323 // the scope anyway if it finds a non-matching name declared in the class? 324 // If both lookups succeed and find a dependent result, which result should 325 // we retain? (Same question for p->~type-name().) 326 327 if (NestedNameSpecifier *Prefix = 328 SS.isSet() ? SS.getScopeRep()->getPrefix() : nullptr) { 329 // This is 330 // 331 // nested-name-specifier type-name :: ~ type-name 332 // 333 // Look for the second type-name in the nested-name-specifier. 334 CXXScopeSpec PrefixSS; 335 PrefixSS.Adopt(NestedNameSpecifierLoc(Prefix, SS.location_data())); 336 if (ParsedType T = LookupInNestedNameSpec(PrefixSS)) 337 return T; 338 } else { 339 // This is one of 340 // 341 // type-name :: ~ type-name 342 // ~ type-name 343 // 344 // Look in the scope and (if any) the object type. 345 if (ParsedType T = LookupInScope()) 346 return T; 347 if (ParsedType T = LookupInObjectType()) 348 return T; 349 } 350 351 if (Failed) 352 return nullptr; 353 354 if (IsDependent) { 355 // We didn't find our type, but that's OK: it's dependent anyway. 356 357 // FIXME: What if we have no nested-name-specifier? 358 QualType T = CheckTypenameType(ETK_None, SourceLocation(), 359 SS.getWithLocInContext(Context), 360 II, NameLoc); 361 return ParsedType::make(T); 362 } 363 364 // The remaining cases are all non-standard extensions imitating the behavior 365 // of various other compilers. 366 unsigned NumNonExtensionDecls = FoundDecls.size(); 367 368 if (SS.isSet()) { 369 // For compatibility with older broken C++ rules and existing code, 370 // 371 // nested-name-specifier :: ~ type-name 372 // 373 // also looks for type-name within the nested-name-specifier. 374 if (ParsedType T = LookupInNestedNameSpec(SS)) { 375 Diag(SS.getEndLoc(), diag::ext_dtor_named_in_wrong_scope) 376 << SS.getRange() 377 << FixItHint::CreateInsertion(SS.getEndLoc(), 378 ("::" + II.getName()).str()); 379 return T; 380 } 381 382 // For compatibility with other compilers and older versions of Clang, 383 // 384 // nested-name-specifier type-name :: ~ type-name 385 // 386 // also looks for type-name in the scope. Unfortunately, we can't 387 // reasonably apply this fallback for dependent nested-name-specifiers. 388 if (SS.getScopeRep()->getPrefix()) { 389 if (ParsedType T = LookupInScope()) { 390 Diag(SS.getEndLoc(), diag::ext_qualified_dtor_named_in_lexical_scope) 391 << FixItHint::CreateRemoval(SS.getRange()); 392 Diag(FoundDecls.back()->getLocation(), diag::note_destructor_type_here) 393 << GetTypeFromParser(T); 394 return T; 395 } 396 } 397 } 398 399 // We didn't find anything matching; tell the user what we did find (if 400 // anything). 401 402 // Don't tell the user about declarations we shouldn't have found. 403 FoundDecls.resize(NumNonExtensionDecls); 404 405 // List types before non-types. 406 std::stable_sort(FoundDecls.begin(), FoundDecls.end(), 407 [](NamedDecl *A, NamedDecl *B) { 408 return isa<TypeDecl>(A->getUnderlyingDecl()) > 409 isa<TypeDecl>(B->getUnderlyingDecl()); 410 }); 411 412 // Suggest a fixit to properly name the destroyed type. 413 auto MakeFixItHint = [&]{ 414 const CXXRecordDecl *Destroyed = nullptr; 415 // FIXME: If we have a scope specifier, suggest its last component? 416 if (!SearchType.isNull()) 417 Destroyed = SearchType->getAsCXXRecordDecl(); 418 else if (S) 419 Destroyed = dyn_cast_or_null<CXXRecordDecl>(S->getEntity()); 420 if (Destroyed) 421 return FixItHint::CreateReplacement(SourceRange(NameLoc), 422 Destroyed->getNameAsString()); 423 return FixItHint(); 424 }; 425 426 if (FoundDecls.empty()) { 427 // FIXME: Attempt typo-correction? 428 Diag(NameLoc, diag::err_undeclared_destructor_name) 429 << &II << MakeFixItHint(); 430 } else if (!SearchType.isNull() && FoundDecls.size() == 1) { 431 if (auto *TD = dyn_cast<TypeDecl>(FoundDecls[0]->getUnderlyingDecl())) { 432 assert(!SearchType.isNull() && 433 "should only reject a type result if we have a search type"); 434 QualType T = Context.getTypeDeclType(TD); 435 Diag(NameLoc, diag::err_destructor_expr_type_mismatch) 436 << T << SearchType << MakeFixItHint(); 437 } else { 438 Diag(NameLoc, diag::err_destructor_expr_nontype) 439 << &II << MakeFixItHint(); 440 } 441 } else { 442 Diag(NameLoc, SearchType.isNull() ? diag::err_destructor_name_nontype 443 : diag::err_destructor_expr_mismatch) 444 << &II << SearchType << MakeFixItHint(); 445 } 446 447 for (NamedDecl *FoundD : FoundDecls) { 448 if (auto *TD = dyn_cast<TypeDecl>(FoundD->getUnderlyingDecl())) 449 Diag(FoundD->getLocation(), diag::note_destructor_type_here) 450 << Context.getTypeDeclType(TD); 451 else 452 Diag(FoundD->getLocation(), diag::note_destructor_nontype_here) 453 << FoundD; 454 } 455 456 return nullptr; 457 } 458 459 ParsedType Sema::getDestructorTypeForDecltype(const DeclSpec &DS, 460 ParsedType ObjectType) { 461 if (DS.getTypeSpecType() == DeclSpec::TST_error) 462 return nullptr; 463 464 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto) { 465 Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid); 466 return nullptr; 467 } 468 469 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype && 470 "unexpected type in getDestructorType"); 471 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc()); 472 473 // If we know the type of the object, check that the correct destructor 474 // type was named now; we can give better diagnostics this way. 475 QualType SearchType = GetTypeFromParser(ObjectType); 476 if (!SearchType.isNull() && !SearchType->isDependentType() && 477 !Context.hasSameUnqualifiedType(T, SearchType)) { 478 Diag(DS.getTypeSpecTypeLoc(), diag::err_destructor_expr_type_mismatch) 479 << T << SearchType; 480 return nullptr; 481 } 482 483 return ParsedType::make(T); 484 } 485 486 bool Sema::checkLiteralOperatorId(const CXXScopeSpec &SS, 487 const UnqualifiedId &Name, bool IsUDSuffix) { 488 assert(Name.getKind() == UnqualifiedIdKind::IK_LiteralOperatorId); 489 if (!IsUDSuffix) { 490 // [over.literal] p8 491 // 492 // double operator""_Bq(long double); // OK: not a reserved identifier 493 // double operator"" _Bq(long double); // ill-formed, no diagnostic required 494 IdentifierInfo *II = Name.Identifier; 495 ReservedIdentifierStatus Status = II->isReserved(PP.getLangOpts()); 496 SourceLocation Loc = Name.getEndLoc(); 497 if (Status != ReservedIdentifierStatus::NotReserved && 498 !PP.getSourceManager().isInSystemHeader(Loc)) { 499 Diag(Loc, diag::warn_reserved_extern_symbol) 500 << II << static_cast<int>(Status) 501 << FixItHint::CreateReplacement( 502 Name.getSourceRange(), 503 (StringRef("operator\"\"") + II->getName()).str()); 504 } 505 } 506 507 if (!SS.isValid()) 508 return false; 509 510 switch (SS.getScopeRep()->getKind()) { 511 case NestedNameSpecifier::Identifier: 512 case NestedNameSpecifier::TypeSpec: 513 case NestedNameSpecifier::TypeSpecWithTemplate: 514 // Per C++11 [over.literal]p2, literal operators can only be declared at 515 // namespace scope. Therefore, this unqualified-id cannot name anything. 516 // Reject it early, because we have no AST representation for this in the 517 // case where the scope is dependent. 518 Diag(Name.getBeginLoc(), diag::err_literal_operator_id_outside_namespace) 519 << SS.getScopeRep(); 520 return true; 521 522 case NestedNameSpecifier::Global: 523 case NestedNameSpecifier::Super: 524 case NestedNameSpecifier::Namespace: 525 case NestedNameSpecifier::NamespaceAlias: 526 return false; 527 } 528 529 llvm_unreachable("unknown nested name specifier kind"); 530 } 531 532 /// Build a C++ typeid expression with a type operand. 533 ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType, 534 SourceLocation TypeidLoc, 535 TypeSourceInfo *Operand, 536 SourceLocation RParenLoc) { 537 // C++ [expr.typeid]p4: 538 // The top-level cv-qualifiers of the lvalue expression or the type-id 539 // that is the operand of typeid are always ignored. 540 // If the type of the type-id is a class type or a reference to a class 541 // type, the class shall be completely-defined. 542 Qualifiers Quals; 543 QualType T 544 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(), 545 Quals); 546 if (T->getAs<RecordType>() && 547 RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid)) 548 return ExprError(); 549 550 if (T->isVariablyModifiedType()) 551 return ExprError(Diag(TypeidLoc, diag::err_variably_modified_typeid) << T); 552 553 if (CheckQualifiedFunctionForTypeId(T, TypeidLoc)) 554 return ExprError(); 555 556 return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), Operand, 557 SourceRange(TypeidLoc, RParenLoc)); 558 } 559 560 /// Build a C++ typeid expression with an expression operand. 561 ExprResult Sema::BuildCXXTypeId(QualType TypeInfoType, 562 SourceLocation TypeidLoc, 563 Expr *E, 564 SourceLocation RParenLoc) { 565 bool WasEvaluated = false; 566 if (E && !E->isTypeDependent()) { 567 if (E->getType()->isPlaceholderType()) { 568 ExprResult result = CheckPlaceholderExpr(E); 569 if (result.isInvalid()) return ExprError(); 570 E = result.get(); 571 } 572 573 QualType T = E->getType(); 574 if (const RecordType *RecordT = T->getAs<RecordType>()) { 575 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl()); 576 // C++ [expr.typeid]p3: 577 // [...] If the type of the expression is a class type, the class 578 // shall be completely-defined. 579 if (RequireCompleteType(TypeidLoc, T, diag::err_incomplete_typeid)) 580 return ExprError(); 581 582 // C++ [expr.typeid]p3: 583 // When typeid is applied to an expression other than an glvalue of a 584 // polymorphic class type [...] [the] expression is an unevaluated 585 // operand. [...] 586 if (RecordD->isPolymorphic() && E->isGLValue()) { 587 if (isUnevaluatedContext()) { 588 // The operand was processed in unevaluated context, switch the 589 // context and recheck the subexpression. 590 ExprResult Result = TransformToPotentiallyEvaluated(E); 591 if (Result.isInvalid()) 592 return ExprError(); 593 E = Result.get(); 594 } 595 596 // We require a vtable to query the type at run time. 597 MarkVTableUsed(TypeidLoc, RecordD); 598 WasEvaluated = true; 599 } 600 } 601 602 ExprResult Result = CheckUnevaluatedOperand(E); 603 if (Result.isInvalid()) 604 return ExprError(); 605 E = Result.get(); 606 607 // C++ [expr.typeid]p4: 608 // [...] If the type of the type-id is a reference to a possibly 609 // cv-qualified type, the result of the typeid expression refers to a 610 // std::type_info object representing the cv-unqualified referenced 611 // type. 612 Qualifiers Quals; 613 QualType UnqualT = Context.getUnqualifiedArrayType(T, Quals); 614 if (!Context.hasSameType(T, UnqualT)) { 615 T = UnqualT; 616 E = ImpCastExprToType(E, UnqualT, CK_NoOp, E->getValueKind()).get(); 617 } 618 } 619 620 if (E->getType()->isVariablyModifiedType()) 621 return ExprError(Diag(TypeidLoc, diag::err_variably_modified_typeid) 622 << E->getType()); 623 else if (!inTemplateInstantiation() && 624 E->HasSideEffects(Context, WasEvaluated)) { 625 // The expression operand for typeid is in an unevaluated expression 626 // context, so side effects could result in unintended consequences. 627 Diag(E->getExprLoc(), WasEvaluated 628 ? diag::warn_side_effects_typeid 629 : diag::warn_side_effects_unevaluated_context); 630 } 631 632 return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), E, 633 SourceRange(TypeidLoc, RParenLoc)); 634 } 635 636 /// ActOnCXXTypeidOfType - Parse typeid( type-id ) or typeid (expression); 637 ExprResult 638 Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc, 639 bool isType, void *TyOrExpr, SourceLocation RParenLoc) { 640 // typeid is not supported in OpenCL. 641 if (getLangOpts().OpenCLCPlusPlus) { 642 return ExprError(Diag(OpLoc, diag::err_openclcxx_not_supported) 643 << "typeid"); 644 } 645 646 // Find the std::type_info type. 647 if (!getStdNamespace()) 648 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid)); 649 650 if (!CXXTypeInfoDecl) { 651 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info"); 652 LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName); 653 LookupQualifiedName(R, getStdNamespace()); 654 CXXTypeInfoDecl = R.getAsSingle<RecordDecl>(); 655 // Microsoft's typeinfo doesn't have type_info in std but in the global 656 // namespace if _HAS_EXCEPTIONS is defined to 0. See PR13153. 657 if (!CXXTypeInfoDecl && LangOpts.MSVCCompat) { 658 LookupQualifiedName(R, Context.getTranslationUnitDecl()); 659 CXXTypeInfoDecl = R.getAsSingle<RecordDecl>(); 660 } 661 if (!CXXTypeInfoDecl) 662 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid)); 663 } 664 665 if (!getLangOpts().RTTI) { 666 return ExprError(Diag(OpLoc, diag::err_no_typeid_with_fno_rtti)); 667 } 668 669 QualType TypeInfoType = Context.getTypeDeclType(CXXTypeInfoDecl); 670 671 if (isType) { 672 // The operand is a type; handle it as such. 673 TypeSourceInfo *TInfo = nullptr; 674 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr), 675 &TInfo); 676 if (T.isNull()) 677 return ExprError(); 678 679 if (!TInfo) 680 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc); 681 682 return BuildCXXTypeId(TypeInfoType, OpLoc, TInfo, RParenLoc); 683 } 684 685 // The operand is an expression. 686 ExprResult Result = 687 BuildCXXTypeId(TypeInfoType, OpLoc, (Expr *)TyOrExpr, RParenLoc); 688 689 if (!getLangOpts().RTTIData && !Result.isInvalid()) 690 if (auto *CTE = dyn_cast<CXXTypeidExpr>(Result.get())) 691 if (CTE->isPotentiallyEvaluated() && !CTE->isMostDerived(Context)) 692 Diag(OpLoc, diag::warn_no_typeid_with_rtti_disabled) 693 << (getDiagnostics().getDiagnosticOptions().getFormat() == 694 DiagnosticOptions::MSVC); 695 return Result; 696 } 697 698 /// Grabs __declspec(uuid()) off a type, or returns 0 if we cannot resolve to 699 /// a single GUID. 700 static void 701 getUuidAttrOfType(Sema &SemaRef, QualType QT, 702 llvm::SmallSetVector<const UuidAttr *, 1> &UuidAttrs) { 703 // Optionally remove one level of pointer, reference or array indirection. 704 const Type *Ty = QT.getTypePtr(); 705 if (QT->isPointerType() || QT->isReferenceType()) 706 Ty = QT->getPointeeType().getTypePtr(); 707 else if (QT->isArrayType()) 708 Ty = Ty->getBaseElementTypeUnsafe(); 709 710 const auto *TD = Ty->getAsTagDecl(); 711 if (!TD) 712 return; 713 714 if (const auto *Uuid = TD->getMostRecentDecl()->getAttr<UuidAttr>()) { 715 UuidAttrs.insert(Uuid); 716 return; 717 } 718 719 // __uuidof can grab UUIDs from template arguments. 720 if (const auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(TD)) { 721 const TemplateArgumentList &TAL = CTSD->getTemplateArgs(); 722 for (const TemplateArgument &TA : TAL.asArray()) { 723 const UuidAttr *UuidForTA = nullptr; 724 if (TA.getKind() == TemplateArgument::Type) 725 getUuidAttrOfType(SemaRef, TA.getAsType(), UuidAttrs); 726 else if (TA.getKind() == TemplateArgument::Declaration) 727 getUuidAttrOfType(SemaRef, TA.getAsDecl()->getType(), UuidAttrs); 728 729 if (UuidForTA) 730 UuidAttrs.insert(UuidForTA); 731 } 732 } 733 } 734 735 /// Build a Microsoft __uuidof expression with a type operand. 736 ExprResult Sema::BuildCXXUuidof(QualType Type, 737 SourceLocation TypeidLoc, 738 TypeSourceInfo *Operand, 739 SourceLocation RParenLoc) { 740 MSGuidDecl *Guid = nullptr; 741 if (!Operand->getType()->isDependentType()) { 742 llvm::SmallSetVector<const UuidAttr *, 1> UuidAttrs; 743 getUuidAttrOfType(*this, Operand->getType(), UuidAttrs); 744 if (UuidAttrs.empty()) 745 return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid)); 746 if (UuidAttrs.size() > 1) 747 return ExprError(Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids)); 748 Guid = UuidAttrs.back()->getGuidDecl(); 749 } 750 751 return new (Context) 752 CXXUuidofExpr(Type, Operand, Guid, SourceRange(TypeidLoc, RParenLoc)); 753 } 754 755 /// Build a Microsoft __uuidof expression with an expression operand. 756 ExprResult Sema::BuildCXXUuidof(QualType Type, SourceLocation TypeidLoc, 757 Expr *E, SourceLocation RParenLoc) { 758 MSGuidDecl *Guid = nullptr; 759 if (!E->getType()->isDependentType()) { 760 if (E->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { 761 // A null pointer results in {00000000-0000-0000-0000-000000000000}. 762 Guid = Context.getMSGuidDecl(MSGuidDecl::Parts{}); 763 } else { 764 llvm::SmallSetVector<const UuidAttr *, 1> UuidAttrs; 765 getUuidAttrOfType(*this, E->getType(), UuidAttrs); 766 if (UuidAttrs.empty()) 767 return ExprError(Diag(TypeidLoc, diag::err_uuidof_without_guid)); 768 if (UuidAttrs.size() > 1) 769 return ExprError(Diag(TypeidLoc, diag::err_uuidof_with_multiple_guids)); 770 Guid = UuidAttrs.back()->getGuidDecl(); 771 } 772 } 773 774 return new (Context) 775 CXXUuidofExpr(Type, E, Guid, SourceRange(TypeidLoc, RParenLoc)); 776 } 777 778 /// ActOnCXXUuidof - Parse __uuidof( type-id ) or __uuidof (expression); 779 ExprResult 780 Sema::ActOnCXXUuidof(SourceLocation OpLoc, SourceLocation LParenLoc, 781 bool isType, void *TyOrExpr, SourceLocation RParenLoc) { 782 QualType GuidType = Context.getMSGuidType(); 783 GuidType.addConst(); 784 785 if (isType) { 786 // The operand is a type; handle it as such. 787 TypeSourceInfo *TInfo = nullptr; 788 QualType T = GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrExpr), 789 &TInfo); 790 if (T.isNull()) 791 return ExprError(); 792 793 if (!TInfo) 794 TInfo = Context.getTrivialTypeSourceInfo(T, OpLoc); 795 796 return BuildCXXUuidof(GuidType, OpLoc, TInfo, RParenLoc); 797 } 798 799 // The operand is an expression. 800 return BuildCXXUuidof(GuidType, OpLoc, (Expr*)TyOrExpr, RParenLoc); 801 } 802 803 /// ActOnCXXBoolLiteral - Parse {true,false} literals. 804 ExprResult 805 Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) { 806 assert((Kind == tok::kw_true || Kind == tok::kw_false) && 807 "Unknown C++ Boolean value!"); 808 return new (Context) 809 CXXBoolLiteralExpr(Kind == tok::kw_true, Context.BoolTy, OpLoc); 810 } 811 812 /// ActOnCXXNullPtrLiteral - Parse 'nullptr'. 813 ExprResult 814 Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) { 815 return new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc); 816 } 817 818 /// ActOnCXXThrow - Parse throw expressions. 819 ExprResult 820 Sema::ActOnCXXThrow(Scope *S, SourceLocation OpLoc, Expr *Ex) { 821 bool IsThrownVarInScope = false; 822 if (Ex) { 823 // C++0x [class.copymove]p31: 824 // When certain criteria are met, an implementation is allowed to omit the 825 // copy/move construction of a class object [...] 826 // 827 // - in a throw-expression, when the operand is the name of a 828 // non-volatile automatic object (other than a function or catch- 829 // clause parameter) whose scope does not extend beyond the end of the 830 // innermost enclosing try-block (if there is one), the copy/move 831 // operation from the operand to the exception object (15.1) can be 832 // omitted by constructing the automatic object directly into the 833 // exception object 834 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Ex->IgnoreParens())) 835 if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) { 836 if (Var->hasLocalStorage() && !Var->getType().isVolatileQualified()) { 837 for( ; S; S = S->getParent()) { 838 if (S->isDeclScope(Var)) { 839 IsThrownVarInScope = true; 840 break; 841 } 842 843 if (S->getFlags() & 844 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope | 845 Scope::FunctionPrototypeScope | Scope::ObjCMethodScope | 846 Scope::TryScope)) 847 break; 848 } 849 } 850 } 851 } 852 853 return BuildCXXThrow(OpLoc, Ex, IsThrownVarInScope); 854 } 855 856 ExprResult Sema::BuildCXXThrow(SourceLocation OpLoc, Expr *Ex, 857 bool IsThrownVarInScope) { 858 // Don't report an error if 'throw' is used in system headers. 859 if (!getLangOpts().CXXExceptions && 860 !getSourceManager().isInSystemHeader(OpLoc) && !getLangOpts().CUDA) { 861 // Delay error emission for the OpenMP device code. 862 targetDiag(OpLoc, diag::err_exceptions_disabled) << "throw"; 863 } 864 865 // Exceptions aren't allowed in CUDA device code. 866 if (getLangOpts().CUDA) 867 CUDADiagIfDeviceCode(OpLoc, diag::err_cuda_device_exceptions) 868 << "throw" << CurrentCUDATarget(); 869 870 if (getCurScope() && getCurScope()->isOpenMPSimdDirectiveScope()) 871 Diag(OpLoc, diag::err_omp_simd_region_cannot_use_stmt) << "throw"; 872 873 if (Ex && !Ex->isTypeDependent()) { 874 // Initialize the exception result. This implicitly weeds out 875 // abstract types or types with inaccessible copy constructors. 876 877 // C++0x [class.copymove]p31: 878 // When certain criteria are met, an implementation is allowed to omit the 879 // copy/move construction of a class object [...] 880 // 881 // - in a throw-expression, when the operand is the name of a 882 // non-volatile automatic object (other than a function or 883 // catch-clause 884 // parameter) whose scope does not extend beyond the end of the 885 // innermost enclosing try-block (if there is one), the copy/move 886 // operation from the operand to the exception object (15.1) can be 887 // omitted by constructing the automatic object directly into the 888 // exception object 889 NamedReturnInfo NRInfo = 890 IsThrownVarInScope ? getNamedReturnInfo(Ex) : NamedReturnInfo(); 891 892 QualType ExceptionObjectTy = Context.getExceptionObjectType(Ex->getType()); 893 if (CheckCXXThrowOperand(OpLoc, ExceptionObjectTy, Ex)) 894 return ExprError(); 895 896 InitializedEntity Entity = InitializedEntity::InitializeException( 897 OpLoc, ExceptionObjectTy, 898 /*NRVO=*/NRInfo.isCopyElidable()); 899 ExprResult Res = PerformMoveOrCopyInitialization(Entity, NRInfo, Ex); 900 if (Res.isInvalid()) 901 return ExprError(); 902 Ex = Res.get(); 903 } 904 905 // PPC MMA non-pointer types are not allowed as throw expr types. 906 if (Ex && Context.getTargetInfo().getTriple().isPPC64()) 907 CheckPPCMMAType(Ex->getType(), Ex->getBeginLoc()); 908 909 return new (Context) 910 CXXThrowExpr(Ex, Context.VoidTy, OpLoc, IsThrownVarInScope); 911 } 912 913 static void 914 collectPublicBases(CXXRecordDecl *RD, 915 llvm::DenseMap<CXXRecordDecl *, unsigned> &SubobjectsSeen, 916 llvm::SmallPtrSetImpl<CXXRecordDecl *> &VBases, 917 llvm::SetVector<CXXRecordDecl *> &PublicSubobjectsSeen, 918 bool ParentIsPublic) { 919 for (const CXXBaseSpecifier &BS : RD->bases()) { 920 CXXRecordDecl *BaseDecl = BS.getType()->getAsCXXRecordDecl(); 921 bool NewSubobject; 922 // Virtual bases constitute the same subobject. Non-virtual bases are 923 // always distinct subobjects. 924 if (BS.isVirtual()) 925 NewSubobject = VBases.insert(BaseDecl).second; 926 else 927 NewSubobject = true; 928 929 if (NewSubobject) 930 ++SubobjectsSeen[BaseDecl]; 931 932 // Only add subobjects which have public access throughout the entire chain. 933 bool PublicPath = ParentIsPublic && BS.getAccessSpecifier() == AS_public; 934 if (PublicPath) 935 PublicSubobjectsSeen.insert(BaseDecl); 936 937 // Recurse on to each base subobject. 938 collectPublicBases(BaseDecl, SubobjectsSeen, VBases, PublicSubobjectsSeen, 939 PublicPath); 940 } 941 } 942 943 static void getUnambiguousPublicSubobjects( 944 CXXRecordDecl *RD, llvm::SmallVectorImpl<CXXRecordDecl *> &Objects) { 945 llvm::DenseMap<CXXRecordDecl *, unsigned> SubobjectsSeen; 946 llvm::SmallSet<CXXRecordDecl *, 2> VBases; 947 llvm::SetVector<CXXRecordDecl *> PublicSubobjectsSeen; 948 SubobjectsSeen[RD] = 1; 949 PublicSubobjectsSeen.insert(RD); 950 collectPublicBases(RD, SubobjectsSeen, VBases, PublicSubobjectsSeen, 951 /*ParentIsPublic=*/true); 952 953 for (CXXRecordDecl *PublicSubobject : PublicSubobjectsSeen) { 954 // Skip ambiguous objects. 955 if (SubobjectsSeen[PublicSubobject] > 1) 956 continue; 957 958 Objects.push_back(PublicSubobject); 959 } 960 } 961 962 /// CheckCXXThrowOperand - Validate the operand of a throw. 963 bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, 964 QualType ExceptionObjectTy, Expr *E) { 965 // If the type of the exception would be an incomplete type or a pointer 966 // to an incomplete type other than (cv) void the program is ill-formed. 967 QualType Ty = ExceptionObjectTy; 968 bool isPointer = false; 969 if (const PointerType* Ptr = Ty->getAs<PointerType>()) { 970 Ty = Ptr->getPointeeType(); 971 isPointer = true; 972 } 973 if (!isPointer || !Ty->isVoidType()) { 974 if (RequireCompleteType(ThrowLoc, Ty, 975 isPointer ? diag::err_throw_incomplete_ptr 976 : diag::err_throw_incomplete, 977 E->getSourceRange())) 978 return true; 979 980 if (!isPointer && Ty->isSizelessType()) { 981 Diag(ThrowLoc, diag::err_throw_sizeless) << Ty << E->getSourceRange(); 982 return true; 983 } 984 985 if (RequireNonAbstractType(ThrowLoc, ExceptionObjectTy, 986 diag::err_throw_abstract_type, E)) 987 return true; 988 } 989 990 // If the exception has class type, we need additional handling. 991 CXXRecordDecl *RD = Ty->getAsCXXRecordDecl(); 992 if (!RD) 993 return false; 994 995 // If we are throwing a polymorphic class type or pointer thereof, 996 // exception handling will make use of the vtable. 997 MarkVTableUsed(ThrowLoc, RD); 998 999 // If a pointer is thrown, the referenced object will not be destroyed. 1000 if (isPointer) 1001 return false; 1002 1003 // If the class has a destructor, we must be able to call it. 1004 if (!RD->hasIrrelevantDestructor()) { 1005 if (CXXDestructorDecl *Destructor = LookupDestructor(RD)) { 1006 MarkFunctionReferenced(E->getExprLoc(), Destructor); 1007 CheckDestructorAccess(E->getExprLoc(), Destructor, 1008 PDiag(diag::err_access_dtor_exception) << Ty); 1009 if (DiagnoseUseOfDecl(Destructor, E->getExprLoc())) 1010 return true; 1011 } 1012 } 1013 1014 // The MSVC ABI creates a list of all types which can catch the exception 1015 // object. This list also references the appropriate copy constructor to call 1016 // if the object is caught by value and has a non-trivial copy constructor. 1017 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 1018 // We are only interested in the public, unambiguous bases contained within 1019 // the exception object. Bases which are ambiguous or otherwise 1020 // inaccessible are not catchable types. 1021 llvm::SmallVector<CXXRecordDecl *, 2> UnambiguousPublicSubobjects; 1022 getUnambiguousPublicSubobjects(RD, UnambiguousPublicSubobjects); 1023 1024 for (CXXRecordDecl *Subobject : UnambiguousPublicSubobjects) { 1025 // Attempt to lookup the copy constructor. Various pieces of machinery 1026 // will spring into action, like template instantiation, which means this 1027 // cannot be a simple walk of the class's decls. Instead, we must perform 1028 // lookup and overload resolution. 1029 CXXConstructorDecl *CD = LookupCopyingConstructor(Subobject, 0); 1030 if (!CD || CD->isDeleted()) 1031 continue; 1032 1033 // Mark the constructor referenced as it is used by this throw expression. 1034 MarkFunctionReferenced(E->getExprLoc(), CD); 1035 1036 // Skip this copy constructor if it is trivial, we don't need to record it 1037 // in the catchable type data. 1038 if (CD->isTrivial()) 1039 continue; 1040 1041 // The copy constructor is non-trivial, create a mapping from this class 1042 // type to this constructor. 1043 // N.B. The selection of copy constructor is not sensitive to this 1044 // particular throw-site. Lookup will be performed at the catch-site to 1045 // ensure that the copy constructor is, in fact, accessible (via 1046 // friendship or any other means). 1047 Context.addCopyConstructorForExceptionObject(Subobject, CD); 1048 1049 // We don't keep the instantiated default argument expressions around so 1050 // we must rebuild them here. 1051 for (unsigned I = 1, E = CD->getNumParams(); I != E; ++I) { 1052 if (CheckCXXDefaultArgExpr(ThrowLoc, CD, CD->getParamDecl(I))) 1053 return true; 1054 } 1055 } 1056 } 1057 1058 // Under the Itanium C++ ABI, memory for the exception object is allocated by 1059 // the runtime with no ability for the compiler to request additional 1060 // alignment. Warn if the exception type requires alignment beyond the minimum 1061 // guaranteed by the target C++ runtime. 1062 if (Context.getTargetInfo().getCXXABI().isItaniumFamily()) { 1063 CharUnits TypeAlign = Context.getTypeAlignInChars(Ty); 1064 CharUnits ExnObjAlign = Context.getExnObjectAlignment(); 1065 if (ExnObjAlign < TypeAlign) { 1066 Diag(ThrowLoc, diag::warn_throw_underaligned_obj); 1067 Diag(ThrowLoc, diag::note_throw_underaligned_obj) 1068 << Ty << (unsigned)TypeAlign.getQuantity() 1069 << (unsigned)ExnObjAlign.getQuantity(); 1070 } 1071 } 1072 1073 return false; 1074 } 1075 1076 static QualType adjustCVQualifiersForCXXThisWithinLambda( 1077 ArrayRef<FunctionScopeInfo *> FunctionScopes, QualType ThisTy, 1078 DeclContext *CurSemaContext, ASTContext &ASTCtx) { 1079 1080 QualType ClassType = ThisTy->getPointeeType(); 1081 LambdaScopeInfo *CurLSI = nullptr; 1082 DeclContext *CurDC = CurSemaContext; 1083 1084 // Iterate through the stack of lambdas starting from the innermost lambda to 1085 // the outermost lambda, checking if '*this' is ever captured by copy - since 1086 // that could change the cv-qualifiers of the '*this' object. 1087 // The object referred to by '*this' starts out with the cv-qualifiers of its 1088 // member function. We then start with the innermost lambda and iterate 1089 // outward checking to see if any lambda performs a by-copy capture of '*this' 1090 // - and if so, any nested lambda must respect the 'constness' of that 1091 // capturing lamdbda's call operator. 1092 // 1093 1094 // Since the FunctionScopeInfo stack is representative of the lexical 1095 // nesting of the lambda expressions during initial parsing (and is the best 1096 // place for querying information about captures about lambdas that are 1097 // partially processed) and perhaps during instantiation of function templates 1098 // that contain lambda expressions that need to be transformed BUT not 1099 // necessarily during instantiation of a nested generic lambda's function call 1100 // operator (which might even be instantiated at the end of the TU) - at which 1101 // time the DeclContext tree is mature enough to query capture information 1102 // reliably - we use a two pronged approach to walk through all the lexically 1103 // enclosing lambda expressions: 1104 // 1105 // 1) Climb down the FunctionScopeInfo stack as long as each item represents 1106 // a Lambda (i.e. LambdaScopeInfo) AND each LSI's 'closure-type' is lexically 1107 // enclosed by the call-operator of the LSI below it on the stack (while 1108 // tracking the enclosing DC for step 2 if needed). Note the topmost LSI on 1109 // the stack represents the innermost lambda. 1110 // 1111 // 2) If we run out of enclosing LSI's, check if the enclosing DeclContext 1112 // represents a lambda's call operator. If it does, we must be instantiating 1113 // a generic lambda's call operator (represented by the Current LSI, and 1114 // should be the only scenario where an inconsistency between the LSI and the 1115 // DeclContext should occur), so climb out the DeclContexts if they 1116 // represent lambdas, while querying the corresponding closure types 1117 // regarding capture information. 1118 1119 // 1) Climb down the function scope info stack. 1120 for (int I = FunctionScopes.size(); 1121 I-- && isa<LambdaScopeInfo>(FunctionScopes[I]) && 1122 (!CurLSI || !CurLSI->Lambda || CurLSI->Lambda->getDeclContext() == 1123 cast<LambdaScopeInfo>(FunctionScopes[I])->CallOperator); 1124 CurDC = getLambdaAwareParentOfDeclContext(CurDC)) { 1125 CurLSI = cast<LambdaScopeInfo>(FunctionScopes[I]); 1126 1127 if (!CurLSI->isCXXThisCaptured()) 1128 continue; 1129 1130 auto C = CurLSI->getCXXThisCapture(); 1131 1132 if (C.isCopyCapture()) { 1133 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask); 1134 if (CurLSI->CallOperator->isConst()) 1135 ClassType.addConst(); 1136 return ASTCtx.getPointerType(ClassType); 1137 } 1138 } 1139 1140 // 2) We've run out of ScopeInfos but check 1. if CurDC is a lambda (which 1141 // can happen during instantiation of its nested generic lambda call 1142 // operator); 2. if we're in a lambda scope (lambda body). 1143 if (CurLSI && isLambdaCallOperator(CurDC)) { 1144 assert(isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && 1145 "While computing 'this' capture-type for a generic lambda, when we " 1146 "run out of enclosing LSI's, yet the enclosing DC is a " 1147 "lambda-call-operator we must be (i.e. Current LSI) in a generic " 1148 "lambda call oeprator"); 1149 assert(CurDC == getLambdaAwareParentOfDeclContext(CurLSI->CallOperator)); 1150 1151 auto IsThisCaptured = 1152 [](CXXRecordDecl *Closure, bool &IsByCopy, bool &IsConst) { 1153 IsConst = false; 1154 IsByCopy = false; 1155 for (auto &&C : Closure->captures()) { 1156 if (C.capturesThis()) { 1157 if (C.getCaptureKind() == LCK_StarThis) 1158 IsByCopy = true; 1159 if (Closure->getLambdaCallOperator()->isConst()) 1160 IsConst = true; 1161 return true; 1162 } 1163 } 1164 return false; 1165 }; 1166 1167 bool IsByCopyCapture = false; 1168 bool IsConstCapture = false; 1169 CXXRecordDecl *Closure = cast<CXXRecordDecl>(CurDC->getParent()); 1170 while (Closure && 1171 IsThisCaptured(Closure, IsByCopyCapture, IsConstCapture)) { 1172 if (IsByCopyCapture) { 1173 ClassType.removeLocalCVRQualifiers(Qualifiers::CVRMask); 1174 if (IsConstCapture) 1175 ClassType.addConst(); 1176 return ASTCtx.getPointerType(ClassType); 1177 } 1178 Closure = isLambdaCallOperator(Closure->getParent()) 1179 ? cast<CXXRecordDecl>(Closure->getParent()->getParent()) 1180 : nullptr; 1181 } 1182 } 1183 return ASTCtx.getPointerType(ClassType); 1184 } 1185 1186 QualType Sema::getCurrentThisType() { 1187 DeclContext *DC = getFunctionLevelDeclContext(); 1188 QualType ThisTy = CXXThisTypeOverride; 1189 1190 if (CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(DC)) { 1191 if (method && method->isInstance()) 1192 ThisTy = method->getThisType(); 1193 } 1194 1195 if (ThisTy.isNull() && isLambdaCallOperator(CurContext) && 1196 inTemplateInstantiation() && isa<CXXRecordDecl>(DC)) { 1197 1198 // This is a lambda call operator that is being instantiated as a default 1199 // initializer. DC must point to the enclosing class type, so we can recover 1200 // the 'this' type from it. 1201 QualType ClassTy = Context.getTypeDeclType(cast<CXXRecordDecl>(DC)); 1202 // There are no cv-qualifiers for 'this' within default initializers, 1203 // per [expr.prim.general]p4. 1204 ThisTy = Context.getPointerType(ClassTy); 1205 } 1206 1207 // If we are within a lambda's call operator, the cv-qualifiers of 'this' 1208 // might need to be adjusted if the lambda or any of its enclosing lambda's 1209 // captures '*this' by copy. 1210 if (!ThisTy.isNull() && isLambdaCallOperator(CurContext)) 1211 return adjustCVQualifiersForCXXThisWithinLambda(FunctionScopes, ThisTy, 1212 CurContext, Context); 1213 return ThisTy; 1214 } 1215 1216 Sema::CXXThisScopeRAII::CXXThisScopeRAII(Sema &S, 1217 Decl *ContextDecl, 1218 Qualifiers CXXThisTypeQuals, 1219 bool Enabled) 1220 : S(S), OldCXXThisTypeOverride(S.CXXThisTypeOverride), Enabled(false) 1221 { 1222 if (!Enabled || !ContextDecl) 1223 return; 1224 1225 CXXRecordDecl *Record = nullptr; 1226 if (ClassTemplateDecl *Template = dyn_cast<ClassTemplateDecl>(ContextDecl)) 1227 Record = Template->getTemplatedDecl(); 1228 else 1229 Record = cast<CXXRecordDecl>(ContextDecl); 1230 1231 QualType T = S.Context.getRecordType(Record); 1232 T = S.getASTContext().getQualifiedType(T, CXXThisTypeQuals); 1233 1234 S.CXXThisTypeOverride = S.Context.getPointerType(T); 1235 1236 this->Enabled = true; 1237 } 1238 1239 1240 Sema::CXXThisScopeRAII::~CXXThisScopeRAII() { 1241 if (Enabled) { 1242 S.CXXThisTypeOverride = OldCXXThisTypeOverride; 1243 } 1244 } 1245 1246 static void buildLambdaThisCaptureFixit(Sema &Sema, LambdaScopeInfo *LSI) { 1247 SourceLocation DiagLoc = LSI->IntroducerRange.getEnd(); 1248 assert(!LSI->isCXXThisCaptured()); 1249 // [=, this] {}; // until C++20: Error: this when = is the default 1250 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval && 1251 !Sema.getLangOpts().CPlusPlus20) 1252 return; 1253 Sema.Diag(DiagLoc, diag::note_lambda_this_capture_fixit) 1254 << FixItHint::CreateInsertion( 1255 DiagLoc, LSI->NumExplicitCaptures > 0 ? ", this" : "this"); 1256 } 1257 1258 bool Sema::CheckCXXThisCapture(SourceLocation Loc, const bool Explicit, 1259 bool BuildAndDiagnose, const unsigned *const FunctionScopeIndexToStopAt, 1260 const bool ByCopy) { 1261 // We don't need to capture this in an unevaluated context. 1262 if (isUnevaluatedContext() && !Explicit) 1263 return true; 1264 1265 assert((!ByCopy || Explicit) && "cannot implicitly capture *this by value"); 1266 1267 const int MaxFunctionScopesIndex = FunctionScopeIndexToStopAt 1268 ? *FunctionScopeIndexToStopAt 1269 : FunctionScopes.size() - 1; 1270 1271 // Check that we can capture the *enclosing object* (referred to by '*this') 1272 // by the capturing-entity/closure (lambda/block/etc) at 1273 // MaxFunctionScopesIndex-deep on the FunctionScopes stack. 1274 1275 // Note: The *enclosing object* can only be captured by-value by a 1276 // closure that is a lambda, using the explicit notation: 1277 // [*this] { ... }. 1278 // Every other capture of the *enclosing object* results in its by-reference 1279 // capture. 1280 1281 // For a closure 'L' (at MaxFunctionScopesIndex in the FunctionScopes 1282 // stack), we can capture the *enclosing object* only if: 1283 // - 'L' has an explicit byref or byval capture of the *enclosing object* 1284 // - or, 'L' has an implicit capture. 1285 // AND 1286 // -- there is no enclosing closure 1287 // -- or, there is some enclosing closure 'E' that has already captured the 1288 // *enclosing object*, and every intervening closure (if any) between 'E' 1289 // and 'L' can implicitly capture the *enclosing object*. 1290 // -- or, every enclosing closure can implicitly capture the 1291 // *enclosing object* 1292 1293 1294 unsigned NumCapturingClosures = 0; 1295 for (int idx = MaxFunctionScopesIndex; idx >= 0; idx--) { 1296 if (CapturingScopeInfo *CSI = 1297 dyn_cast<CapturingScopeInfo>(FunctionScopes[idx])) { 1298 if (CSI->CXXThisCaptureIndex != 0) { 1299 // 'this' is already being captured; there isn't anything more to do. 1300 CSI->Captures[CSI->CXXThisCaptureIndex - 1].markUsed(BuildAndDiagnose); 1301 break; 1302 } 1303 LambdaScopeInfo *LSI = dyn_cast<LambdaScopeInfo>(CSI); 1304 if (LSI && isGenericLambdaCallOperatorSpecialization(LSI->CallOperator)) { 1305 // This context can't implicitly capture 'this'; fail out. 1306 if (BuildAndDiagnose) { 1307 Diag(Loc, diag::err_this_capture) 1308 << (Explicit && idx == MaxFunctionScopesIndex); 1309 if (!Explicit) 1310 buildLambdaThisCaptureFixit(*this, LSI); 1311 } 1312 return true; 1313 } 1314 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByref || 1315 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval || 1316 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_Block || 1317 CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_CapturedRegion || 1318 (Explicit && idx == MaxFunctionScopesIndex)) { 1319 // Regarding (Explicit && idx == MaxFunctionScopesIndex): only the first 1320 // iteration through can be an explicit capture, all enclosing closures, 1321 // if any, must perform implicit captures. 1322 1323 // This closure can capture 'this'; continue looking upwards. 1324 NumCapturingClosures++; 1325 continue; 1326 } 1327 // This context can't implicitly capture 'this'; fail out. 1328 if (BuildAndDiagnose) 1329 Diag(Loc, diag::err_this_capture) 1330 << (Explicit && idx == MaxFunctionScopesIndex); 1331 1332 if (!Explicit) 1333 buildLambdaThisCaptureFixit(*this, LSI); 1334 return true; 1335 } 1336 break; 1337 } 1338 if (!BuildAndDiagnose) return false; 1339 1340 // If we got here, then the closure at MaxFunctionScopesIndex on the 1341 // FunctionScopes stack, can capture the *enclosing object*, so capture it 1342 // (including implicit by-reference captures in any enclosing closures). 1343 1344 // In the loop below, respect the ByCopy flag only for the closure requesting 1345 // the capture (i.e. first iteration through the loop below). Ignore it for 1346 // all enclosing closure's up to NumCapturingClosures (since they must be 1347 // implicitly capturing the *enclosing object* by reference (see loop 1348 // above)). 1349 assert((!ByCopy || 1350 dyn_cast<LambdaScopeInfo>(FunctionScopes[MaxFunctionScopesIndex])) && 1351 "Only a lambda can capture the enclosing object (referred to by " 1352 "*this) by copy"); 1353 QualType ThisTy = getCurrentThisType(); 1354 for (int idx = MaxFunctionScopesIndex; NumCapturingClosures; 1355 --idx, --NumCapturingClosures) { 1356 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[idx]); 1357 1358 // The type of the corresponding data member (not a 'this' pointer if 'by 1359 // copy'). 1360 QualType CaptureType = ThisTy; 1361 if (ByCopy) { 1362 // If we are capturing the object referred to by '*this' by copy, ignore 1363 // any cv qualifiers inherited from the type of the member function for 1364 // the type of the closure-type's corresponding data member and any use 1365 // of 'this'. 1366 CaptureType = ThisTy->getPointeeType(); 1367 CaptureType.removeLocalCVRQualifiers(Qualifiers::CVRMask); 1368 } 1369 1370 bool isNested = NumCapturingClosures > 1; 1371 CSI->addThisCapture(isNested, Loc, CaptureType, ByCopy); 1372 } 1373 return false; 1374 } 1375 1376 ExprResult Sema::ActOnCXXThis(SourceLocation Loc) { 1377 /// C++ 9.3.2: In the body of a non-static member function, the keyword this 1378 /// is a non-lvalue expression whose value is the address of the object for 1379 /// which the function is called. 1380 1381 QualType ThisTy = getCurrentThisType(); 1382 if (ThisTy.isNull()) 1383 return Diag(Loc, diag::err_invalid_this_use); 1384 return BuildCXXThisExpr(Loc, ThisTy, /*IsImplicit=*/false); 1385 } 1386 1387 Expr *Sema::BuildCXXThisExpr(SourceLocation Loc, QualType Type, 1388 bool IsImplicit) { 1389 auto *This = new (Context) CXXThisExpr(Loc, Type, IsImplicit); 1390 MarkThisReferenced(This); 1391 return This; 1392 } 1393 1394 void Sema::MarkThisReferenced(CXXThisExpr *This) { 1395 CheckCXXThisCapture(This->getExprLoc()); 1396 } 1397 1398 bool Sema::isThisOutsideMemberFunctionBody(QualType BaseType) { 1399 // If we're outside the body of a member function, then we'll have a specified 1400 // type for 'this'. 1401 if (CXXThisTypeOverride.isNull()) 1402 return false; 1403 1404 // Determine whether we're looking into a class that's currently being 1405 // defined. 1406 CXXRecordDecl *Class = BaseType->getAsCXXRecordDecl(); 1407 return Class && Class->isBeingDefined(); 1408 } 1409 1410 /// Parse construction of a specified type. 1411 /// Can be interpreted either as function-style casting ("int(x)") 1412 /// or class type construction ("ClassType(x,y,z)") 1413 /// or creation of a value-initialized type ("int()"). 1414 ExprResult 1415 Sema::ActOnCXXTypeConstructExpr(ParsedType TypeRep, 1416 SourceLocation LParenOrBraceLoc, 1417 MultiExprArg exprs, 1418 SourceLocation RParenOrBraceLoc, 1419 bool ListInitialization) { 1420 if (!TypeRep) 1421 return ExprError(); 1422 1423 TypeSourceInfo *TInfo; 1424 QualType Ty = GetTypeFromParser(TypeRep, &TInfo); 1425 if (!TInfo) 1426 TInfo = Context.getTrivialTypeSourceInfo(Ty, SourceLocation()); 1427 1428 auto Result = BuildCXXTypeConstructExpr(TInfo, LParenOrBraceLoc, exprs, 1429 RParenOrBraceLoc, ListInitialization); 1430 // Avoid creating a non-type-dependent expression that contains typos. 1431 // Non-type-dependent expressions are liable to be discarded without 1432 // checking for embedded typos. 1433 if (!Result.isInvalid() && Result.get()->isInstantiationDependent() && 1434 !Result.get()->isTypeDependent()) 1435 Result = CorrectDelayedTyposInExpr(Result.get()); 1436 else if (Result.isInvalid()) 1437 Result = CreateRecoveryExpr(TInfo->getTypeLoc().getBeginLoc(), 1438 RParenOrBraceLoc, exprs, Ty); 1439 return Result; 1440 } 1441 1442 ExprResult 1443 Sema::BuildCXXTypeConstructExpr(TypeSourceInfo *TInfo, 1444 SourceLocation LParenOrBraceLoc, 1445 MultiExprArg Exprs, 1446 SourceLocation RParenOrBraceLoc, 1447 bool ListInitialization) { 1448 QualType Ty = TInfo->getType(); 1449 SourceLocation TyBeginLoc = TInfo->getTypeLoc().getBeginLoc(); 1450 1451 assert((!ListInitialization || 1452 (Exprs.size() == 1 && isa<InitListExpr>(Exprs[0]))) && 1453 "List initialization must have initializer list as expression."); 1454 SourceRange FullRange = SourceRange(TyBeginLoc, RParenOrBraceLoc); 1455 1456 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TInfo); 1457 InitializationKind Kind = 1458 Exprs.size() 1459 ? ListInitialization 1460 ? InitializationKind::CreateDirectList( 1461 TyBeginLoc, LParenOrBraceLoc, RParenOrBraceLoc) 1462 : InitializationKind::CreateDirect(TyBeginLoc, LParenOrBraceLoc, 1463 RParenOrBraceLoc) 1464 : InitializationKind::CreateValue(TyBeginLoc, LParenOrBraceLoc, 1465 RParenOrBraceLoc); 1466 1467 // C++1z [expr.type.conv]p1: 1468 // If the type is a placeholder for a deduced class type, [...perform class 1469 // template argument deduction...] 1470 DeducedType *Deduced = Ty->getContainedDeducedType(); 1471 if (Deduced && isa<DeducedTemplateSpecializationType>(Deduced)) { 1472 Ty = DeduceTemplateSpecializationFromInitializer(TInfo, Entity, 1473 Kind, Exprs); 1474 if (Ty.isNull()) 1475 return ExprError(); 1476 Entity = InitializedEntity::InitializeTemporary(TInfo, Ty); 1477 } 1478 1479 if (Ty->isDependentType() || CallExpr::hasAnyTypeDependentArguments(Exprs)) { 1480 // FIXME: CXXUnresolvedConstructExpr does not model list-initialization 1481 // directly. We work around this by dropping the locations of the braces. 1482 SourceRange Locs = ListInitialization 1483 ? SourceRange() 1484 : SourceRange(LParenOrBraceLoc, RParenOrBraceLoc); 1485 return CXXUnresolvedConstructExpr::Create(Context, Ty.getNonReferenceType(), 1486 TInfo, Locs.getBegin(), Exprs, 1487 Locs.getEnd()); 1488 } 1489 1490 // C++ [expr.type.conv]p1: 1491 // If the expression list is a parenthesized single expression, the type 1492 // conversion expression is equivalent (in definedness, and if defined in 1493 // meaning) to the corresponding cast expression. 1494 if (Exprs.size() == 1 && !ListInitialization && 1495 !isa<InitListExpr>(Exprs[0])) { 1496 Expr *Arg = Exprs[0]; 1497 return BuildCXXFunctionalCastExpr(TInfo, Ty, LParenOrBraceLoc, Arg, 1498 RParenOrBraceLoc); 1499 } 1500 1501 // For an expression of the form T(), T shall not be an array type. 1502 QualType ElemTy = Ty; 1503 if (Ty->isArrayType()) { 1504 if (!ListInitialization) 1505 return ExprError(Diag(TyBeginLoc, diag::err_value_init_for_array_type) 1506 << FullRange); 1507 ElemTy = Context.getBaseElementType(Ty); 1508 } 1509 1510 // There doesn't seem to be an explicit rule against this but sanity demands 1511 // we only construct objects with object types. 1512 if (Ty->isFunctionType()) 1513 return ExprError(Diag(TyBeginLoc, diag::err_init_for_function_type) 1514 << Ty << FullRange); 1515 1516 // C++17 [expr.type.conv]p2: 1517 // If the type is cv void and the initializer is (), the expression is a 1518 // prvalue of the specified type that performs no initialization. 1519 if (!Ty->isVoidType() && 1520 RequireCompleteType(TyBeginLoc, ElemTy, 1521 diag::err_invalid_incomplete_type_use, FullRange)) 1522 return ExprError(); 1523 1524 // Otherwise, the expression is a prvalue of the specified type whose 1525 // result object is direct-initialized (11.6) with the initializer. 1526 InitializationSequence InitSeq(*this, Entity, Kind, Exprs); 1527 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Exprs); 1528 1529 if (Result.isInvalid()) 1530 return Result; 1531 1532 Expr *Inner = Result.get(); 1533 if (CXXBindTemporaryExpr *BTE = dyn_cast_or_null<CXXBindTemporaryExpr>(Inner)) 1534 Inner = BTE->getSubExpr(); 1535 if (!isa<CXXTemporaryObjectExpr>(Inner) && 1536 !isa<CXXScalarValueInitExpr>(Inner)) { 1537 // If we created a CXXTemporaryObjectExpr, that node also represents the 1538 // functional cast. Otherwise, create an explicit cast to represent 1539 // the syntactic form of a functional-style cast that was used here. 1540 // 1541 // FIXME: Creating a CXXFunctionalCastExpr around a CXXConstructExpr 1542 // would give a more consistent AST representation than using a 1543 // CXXTemporaryObjectExpr. It's also weird that the functional cast 1544 // is sometimes handled by initialization and sometimes not. 1545 QualType ResultType = Result.get()->getType(); 1546 SourceRange Locs = ListInitialization 1547 ? SourceRange() 1548 : SourceRange(LParenOrBraceLoc, RParenOrBraceLoc); 1549 Result = CXXFunctionalCastExpr::Create( 1550 Context, ResultType, Expr::getValueKindForType(Ty), TInfo, CK_NoOp, 1551 Result.get(), /*Path=*/nullptr, CurFPFeatureOverrides(), 1552 Locs.getBegin(), Locs.getEnd()); 1553 } 1554 1555 return Result; 1556 } 1557 1558 bool Sema::isUsualDeallocationFunction(const CXXMethodDecl *Method) { 1559 // [CUDA] Ignore this function, if we can't call it. 1560 const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext); 1561 if (getLangOpts().CUDA) { 1562 auto CallPreference = IdentifyCUDAPreference(Caller, Method); 1563 // If it's not callable at all, it's not the right function. 1564 if (CallPreference < CFP_WrongSide) 1565 return false; 1566 if (CallPreference == CFP_WrongSide) { 1567 // Maybe. We have to check if there are better alternatives. 1568 DeclContext::lookup_result R = 1569 Method->getDeclContext()->lookup(Method->getDeclName()); 1570 for (const auto *D : R) { 1571 if (const auto *FD = dyn_cast<FunctionDecl>(D)) { 1572 if (IdentifyCUDAPreference(Caller, FD) > CFP_WrongSide) 1573 return false; 1574 } 1575 } 1576 // We've found no better variants. 1577 } 1578 } 1579 1580 SmallVector<const FunctionDecl*, 4> PreventedBy; 1581 bool Result = Method->isUsualDeallocationFunction(PreventedBy); 1582 1583 if (Result || !getLangOpts().CUDA || PreventedBy.empty()) 1584 return Result; 1585 1586 // In case of CUDA, return true if none of the 1-argument deallocator 1587 // functions are actually callable. 1588 return llvm::none_of(PreventedBy, [&](const FunctionDecl *FD) { 1589 assert(FD->getNumParams() == 1 && 1590 "Only single-operand functions should be in PreventedBy"); 1591 return IdentifyCUDAPreference(Caller, FD) >= CFP_HostDevice; 1592 }); 1593 } 1594 1595 /// Determine whether the given function is a non-placement 1596 /// deallocation function. 1597 static bool isNonPlacementDeallocationFunction(Sema &S, FunctionDecl *FD) { 1598 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FD)) 1599 return S.isUsualDeallocationFunction(Method); 1600 1601 if (FD->getOverloadedOperator() != OO_Delete && 1602 FD->getOverloadedOperator() != OO_Array_Delete) 1603 return false; 1604 1605 unsigned UsualParams = 1; 1606 1607 if (S.getLangOpts().SizedDeallocation && UsualParams < FD->getNumParams() && 1608 S.Context.hasSameUnqualifiedType( 1609 FD->getParamDecl(UsualParams)->getType(), 1610 S.Context.getSizeType())) 1611 ++UsualParams; 1612 1613 if (S.getLangOpts().AlignedAllocation && UsualParams < FD->getNumParams() && 1614 S.Context.hasSameUnqualifiedType( 1615 FD->getParamDecl(UsualParams)->getType(), 1616 S.Context.getTypeDeclType(S.getStdAlignValT()))) 1617 ++UsualParams; 1618 1619 return UsualParams == FD->getNumParams(); 1620 } 1621 1622 namespace { 1623 struct UsualDeallocFnInfo { 1624 UsualDeallocFnInfo() : Found(), FD(nullptr) {} 1625 UsualDeallocFnInfo(Sema &S, DeclAccessPair Found) 1626 : Found(Found), FD(dyn_cast<FunctionDecl>(Found->getUnderlyingDecl())), 1627 Destroying(false), HasSizeT(false), HasAlignValT(false), 1628 CUDAPref(Sema::CFP_Native) { 1629 // A function template declaration is never a usual deallocation function. 1630 if (!FD) 1631 return; 1632 unsigned NumBaseParams = 1; 1633 if (FD->isDestroyingOperatorDelete()) { 1634 Destroying = true; 1635 ++NumBaseParams; 1636 } 1637 1638 if (NumBaseParams < FD->getNumParams() && 1639 S.Context.hasSameUnqualifiedType( 1640 FD->getParamDecl(NumBaseParams)->getType(), 1641 S.Context.getSizeType())) { 1642 ++NumBaseParams; 1643 HasSizeT = true; 1644 } 1645 1646 if (NumBaseParams < FD->getNumParams() && 1647 FD->getParamDecl(NumBaseParams)->getType()->isAlignValT()) { 1648 ++NumBaseParams; 1649 HasAlignValT = true; 1650 } 1651 1652 // In CUDA, determine how much we'd like / dislike to call this. 1653 if (S.getLangOpts().CUDA) 1654 if (auto *Caller = dyn_cast<FunctionDecl>(S.CurContext)) 1655 CUDAPref = S.IdentifyCUDAPreference(Caller, FD); 1656 } 1657 1658 explicit operator bool() const { return FD; } 1659 1660 bool isBetterThan(const UsualDeallocFnInfo &Other, bool WantSize, 1661 bool WantAlign) const { 1662 // C++ P0722: 1663 // A destroying operator delete is preferred over a non-destroying 1664 // operator delete. 1665 if (Destroying != Other.Destroying) 1666 return Destroying; 1667 1668 // C++17 [expr.delete]p10: 1669 // If the type has new-extended alignment, a function with a parameter 1670 // of type std::align_val_t is preferred; otherwise a function without 1671 // such a parameter is preferred 1672 if (HasAlignValT != Other.HasAlignValT) 1673 return HasAlignValT == WantAlign; 1674 1675 if (HasSizeT != Other.HasSizeT) 1676 return HasSizeT == WantSize; 1677 1678 // Use CUDA call preference as a tiebreaker. 1679 return CUDAPref > Other.CUDAPref; 1680 } 1681 1682 DeclAccessPair Found; 1683 FunctionDecl *FD; 1684 bool Destroying, HasSizeT, HasAlignValT; 1685 Sema::CUDAFunctionPreference CUDAPref; 1686 }; 1687 } 1688 1689 /// Determine whether a type has new-extended alignment. This may be called when 1690 /// the type is incomplete (for a delete-expression with an incomplete pointee 1691 /// type), in which case it will conservatively return false if the alignment is 1692 /// not known. 1693 static bool hasNewExtendedAlignment(Sema &S, QualType AllocType) { 1694 return S.getLangOpts().AlignedAllocation && 1695 S.getASTContext().getTypeAlignIfKnown(AllocType) > 1696 S.getASTContext().getTargetInfo().getNewAlign(); 1697 } 1698 1699 /// Select the correct "usual" deallocation function to use from a selection of 1700 /// deallocation functions (either global or class-scope). 1701 static UsualDeallocFnInfo resolveDeallocationOverload( 1702 Sema &S, LookupResult &R, bool WantSize, bool WantAlign, 1703 llvm::SmallVectorImpl<UsualDeallocFnInfo> *BestFns = nullptr) { 1704 UsualDeallocFnInfo Best; 1705 1706 for (auto I = R.begin(), E = R.end(); I != E; ++I) { 1707 UsualDeallocFnInfo Info(S, I.getPair()); 1708 if (!Info || !isNonPlacementDeallocationFunction(S, Info.FD) || 1709 Info.CUDAPref == Sema::CFP_Never) 1710 continue; 1711 1712 if (!Best) { 1713 Best = Info; 1714 if (BestFns) 1715 BestFns->push_back(Info); 1716 continue; 1717 } 1718 1719 if (Best.isBetterThan(Info, WantSize, WantAlign)) 1720 continue; 1721 1722 // If more than one preferred function is found, all non-preferred 1723 // functions are eliminated from further consideration. 1724 if (BestFns && Info.isBetterThan(Best, WantSize, WantAlign)) 1725 BestFns->clear(); 1726 1727 Best = Info; 1728 if (BestFns) 1729 BestFns->push_back(Info); 1730 } 1731 1732 return Best; 1733 } 1734 1735 /// Determine whether a given type is a class for which 'delete[]' would call 1736 /// a member 'operator delete[]' with a 'size_t' parameter. This implies that 1737 /// we need to store the array size (even if the type is 1738 /// trivially-destructible). 1739 static bool doesUsualArrayDeleteWantSize(Sema &S, SourceLocation loc, 1740 QualType allocType) { 1741 const RecordType *record = 1742 allocType->getBaseElementTypeUnsafe()->getAs<RecordType>(); 1743 if (!record) return false; 1744 1745 // Try to find an operator delete[] in class scope. 1746 1747 DeclarationName deleteName = 1748 S.Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete); 1749 LookupResult ops(S, deleteName, loc, Sema::LookupOrdinaryName); 1750 S.LookupQualifiedName(ops, record->getDecl()); 1751 1752 // We're just doing this for information. 1753 ops.suppressDiagnostics(); 1754 1755 // Very likely: there's no operator delete[]. 1756 if (ops.empty()) return false; 1757 1758 // If it's ambiguous, it should be illegal to call operator delete[] 1759 // on this thing, so it doesn't matter if we allocate extra space or not. 1760 if (ops.isAmbiguous()) return false; 1761 1762 // C++17 [expr.delete]p10: 1763 // If the deallocation functions have class scope, the one without a 1764 // parameter of type std::size_t is selected. 1765 auto Best = resolveDeallocationOverload( 1766 S, ops, /*WantSize*/false, 1767 /*WantAlign*/hasNewExtendedAlignment(S, allocType)); 1768 return Best && Best.HasSizeT; 1769 } 1770 1771 /// Parsed a C++ 'new' expression (C++ 5.3.4). 1772 /// 1773 /// E.g.: 1774 /// @code new (memory) int[size][4] @endcode 1775 /// or 1776 /// @code ::new Foo(23, "hello") @endcode 1777 /// 1778 /// \param StartLoc The first location of the expression. 1779 /// \param UseGlobal True if 'new' was prefixed with '::'. 1780 /// \param PlacementLParen Opening paren of the placement arguments. 1781 /// \param PlacementArgs Placement new arguments. 1782 /// \param PlacementRParen Closing paren of the placement arguments. 1783 /// \param TypeIdParens If the type is in parens, the source range. 1784 /// \param D The type to be allocated, as well as array dimensions. 1785 /// \param Initializer The initializing expression or initializer-list, or null 1786 /// if there is none. 1787 ExprResult 1788 Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal, 1789 SourceLocation PlacementLParen, MultiExprArg PlacementArgs, 1790 SourceLocation PlacementRParen, SourceRange TypeIdParens, 1791 Declarator &D, Expr *Initializer) { 1792 Optional<Expr *> ArraySize; 1793 // If the specified type is an array, unwrap it and save the expression. 1794 if (D.getNumTypeObjects() > 0 && 1795 D.getTypeObject(0).Kind == DeclaratorChunk::Array) { 1796 DeclaratorChunk &Chunk = D.getTypeObject(0); 1797 if (D.getDeclSpec().hasAutoTypeSpec()) 1798 return ExprError(Diag(Chunk.Loc, diag::err_new_array_of_auto) 1799 << D.getSourceRange()); 1800 if (Chunk.Arr.hasStatic) 1801 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new) 1802 << D.getSourceRange()); 1803 if (!Chunk.Arr.NumElts && !Initializer) 1804 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size) 1805 << D.getSourceRange()); 1806 1807 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts); 1808 D.DropFirstTypeObject(); 1809 } 1810 1811 // Every dimension shall be of constant size. 1812 if (ArraySize) { 1813 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) { 1814 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array) 1815 break; 1816 1817 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr; 1818 if (Expr *NumElts = (Expr *)Array.NumElts) { 1819 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent()) { 1820 // FIXME: GCC permits constant folding here. We should either do so consistently 1821 // or not do so at all, rather than changing behavior in C++14 onwards. 1822 if (getLangOpts().CPlusPlus14) { 1823 // C++1y [expr.new]p6: Every constant-expression in a noptr-new-declarator 1824 // shall be a converted constant expression (5.19) of type std::size_t 1825 // and shall evaluate to a strictly positive value. 1826 llvm::APSInt Value(Context.getIntWidth(Context.getSizeType())); 1827 Array.NumElts 1828 = CheckConvertedConstantExpression(NumElts, Context.getSizeType(), Value, 1829 CCEK_ArrayBound) 1830 .get(); 1831 } else { 1832 Array.NumElts = 1833 VerifyIntegerConstantExpression( 1834 NumElts, nullptr, diag::err_new_array_nonconst, AllowFold) 1835 .get(); 1836 } 1837 if (!Array.NumElts) 1838 return ExprError(); 1839 } 1840 } 1841 } 1842 } 1843 1844 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, /*Scope=*/nullptr); 1845 QualType AllocType = TInfo->getType(); 1846 if (D.isInvalidType()) 1847 return ExprError(); 1848 1849 SourceRange DirectInitRange; 1850 if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer)) 1851 DirectInitRange = List->getSourceRange(); 1852 1853 return BuildCXXNew(SourceRange(StartLoc, D.getEndLoc()), UseGlobal, 1854 PlacementLParen, PlacementArgs, PlacementRParen, 1855 TypeIdParens, AllocType, TInfo, ArraySize, DirectInitRange, 1856 Initializer); 1857 } 1858 1859 static bool isLegalArrayNewInitializer(CXXNewExpr::InitializationStyle Style, 1860 Expr *Init) { 1861 if (!Init) 1862 return true; 1863 if (ParenListExpr *PLE = dyn_cast<ParenListExpr>(Init)) 1864 return PLE->getNumExprs() == 0; 1865 if (isa<ImplicitValueInitExpr>(Init)) 1866 return true; 1867 else if (CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) 1868 return !CCE->isListInitialization() && 1869 CCE->getConstructor()->isDefaultConstructor(); 1870 else if (Style == CXXNewExpr::ListInit) { 1871 assert(isa<InitListExpr>(Init) && 1872 "Shouldn't create list CXXConstructExprs for arrays."); 1873 return true; 1874 } 1875 return false; 1876 } 1877 1878 bool 1879 Sema::isUnavailableAlignedAllocationFunction(const FunctionDecl &FD) const { 1880 if (!getLangOpts().AlignedAllocationUnavailable) 1881 return false; 1882 if (FD.isDefined()) 1883 return false; 1884 Optional<unsigned> AlignmentParam; 1885 if (FD.isReplaceableGlobalAllocationFunction(&AlignmentParam) && 1886 AlignmentParam.hasValue()) 1887 return true; 1888 return false; 1889 } 1890 1891 // Emit a diagnostic if an aligned allocation/deallocation function that is not 1892 // implemented in the standard library is selected. 1893 void Sema::diagnoseUnavailableAlignedAllocation(const FunctionDecl &FD, 1894 SourceLocation Loc) { 1895 if (isUnavailableAlignedAllocationFunction(FD)) { 1896 const llvm::Triple &T = getASTContext().getTargetInfo().getTriple(); 1897 StringRef OSName = AvailabilityAttr::getPlatformNameSourceSpelling( 1898 getASTContext().getTargetInfo().getPlatformName()); 1899 VersionTuple OSVersion = alignedAllocMinVersion(T.getOS()); 1900 1901 OverloadedOperatorKind Kind = FD.getDeclName().getCXXOverloadedOperator(); 1902 bool IsDelete = Kind == OO_Delete || Kind == OO_Array_Delete; 1903 Diag(Loc, diag::err_aligned_allocation_unavailable) 1904 << IsDelete << FD.getType().getAsString() << OSName 1905 << OSVersion.getAsString() << OSVersion.empty(); 1906 Diag(Loc, diag::note_silence_aligned_allocation_unavailable); 1907 } 1908 } 1909 1910 ExprResult 1911 Sema::BuildCXXNew(SourceRange Range, bool UseGlobal, 1912 SourceLocation PlacementLParen, 1913 MultiExprArg PlacementArgs, 1914 SourceLocation PlacementRParen, 1915 SourceRange TypeIdParens, 1916 QualType AllocType, 1917 TypeSourceInfo *AllocTypeInfo, 1918 Optional<Expr *> ArraySize, 1919 SourceRange DirectInitRange, 1920 Expr *Initializer) { 1921 SourceRange TypeRange = AllocTypeInfo->getTypeLoc().getSourceRange(); 1922 SourceLocation StartLoc = Range.getBegin(); 1923 1924 CXXNewExpr::InitializationStyle initStyle; 1925 if (DirectInitRange.isValid()) { 1926 assert(Initializer && "Have parens but no initializer."); 1927 initStyle = CXXNewExpr::CallInit; 1928 } else if (Initializer && isa<InitListExpr>(Initializer)) 1929 initStyle = CXXNewExpr::ListInit; 1930 else { 1931 assert((!Initializer || isa<ImplicitValueInitExpr>(Initializer) || 1932 isa<CXXConstructExpr>(Initializer)) && 1933 "Initializer expression that cannot have been implicitly created."); 1934 initStyle = CXXNewExpr::NoInit; 1935 } 1936 1937 Expr **Inits = &Initializer; 1938 unsigned NumInits = Initializer ? 1 : 0; 1939 if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer)) { 1940 assert(initStyle == CXXNewExpr::CallInit && "paren init for non-call init"); 1941 Inits = List->getExprs(); 1942 NumInits = List->getNumExprs(); 1943 } 1944 1945 // C++11 [expr.new]p15: 1946 // A new-expression that creates an object of type T initializes that 1947 // object as follows: 1948 InitializationKind Kind 1949 // - If the new-initializer is omitted, the object is default- 1950 // initialized (8.5); if no initialization is performed, 1951 // the object has indeterminate value 1952 = initStyle == CXXNewExpr::NoInit 1953 ? InitializationKind::CreateDefault(TypeRange.getBegin()) 1954 // - Otherwise, the new-initializer is interpreted according to 1955 // the 1956 // initialization rules of 8.5 for direct-initialization. 1957 : initStyle == CXXNewExpr::ListInit 1958 ? InitializationKind::CreateDirectList( 1959 TypeRange.getBegin(), Initializer->getBeginLoc(), 1960 Initializer->getEndLoc()) 1961 : InitializationKind::CreateDirect(TypeRange.getBegin(), 1962 DirectInitRange.getBegin(), 1963 DirectInitRange.getEnd()); 1964 1965 // C++11 [dcl.spec.auto]p6. Deduce the type which 'auto' stands in for. 1966 auto *Deduced = AllocType->getContainedDeducedType(); 1967 if (Deduced && isa<DeducedTemplateSpecializationType>(Deduced)) { 1968 if (ArraySize) 1969 return ExprError( 1970 Diag(ArraySize ? (*ArraySize)->getExprLoc() : TypeRange.getBegin(), 1971 diag::err_deduced_class_template_compound_type) 1972 << /*array*/ 2 1973 << (ArraySize ? (*ArraySize)->getSourceRange() : TypeRange)); 1974 1975 InitializedEntity Entity 1976 = InitializedEntity::InitializeNew(StartLoc, AllocType); 1977 AllocType = DeduceTemplateSpecializationFromInitializer( 1978 AllocTypeInfo, Entity, Kind, MultiExprArg(Inits, NumInits)); 1979 if (AllocType.isNull()) 1980 return ExprError(); 1981 } else if (Deduced) { 1982 bool Braced = (initStyle == CXXNewExpr::ListInit); 1983 if (NumInits == 1) { 1984 if (auto p = dyn_cast_or_null<InitListExpr>(Inits[0])) { 1985 Inits = p->getInits(); 1986 NumInits = p->getNumInits(); 1987 Braced = true; 1988 } 1989 } 1990 1991 if (initStyle == CXXNewExpr::NoInit || NumInits == 0) 1992 return ExprError(Diag(StartLoc, diag::err_auto_new_requires_ctor_arg) 1993 << AllocType << TypeRange); 1994 if (NumInits > 1) { 1995 Expr *FirstBad = Inits[1]; 1996 return ExprError(Diag(FirstBad->getBeginLoc(), 1997 diag::err_auto_new_ctor_multiple_expressions) 1998 << AllocType << TypeRange); 1999 } 2000 if (Braced && !getLangOpts().CPlusPlus17) 2001 Diag(Initializer->getBeginLoc(), diag::ext_auto_new_list_init) 2002 << AllocType << TypeRange; 2003 Expr *Deduce = Inits[0]; 2004 QualType DeducedType; 2005 if (DeduceAutoType(AllocTypeInfo, Deduce, DeducedType) == DAR_Failed) 2006 return ExprError(Diag(StartLoc, diag::err_auto_new_deduction_failure) 2007 << AllocType << Deduce->getType() 2008 << TypeRange << Deduce->getSourceRange()); 2009 if (DeducedType.isNull()) 2010 return ExprError(); 2011 AllocType = DeducedType; 2012 } 2013 2014 // Per C++0x [expr.new]p5, the type being constructed may be a 2015 // typedef of an array type. 2016 if (!ArraySize) { 2017 if (const ConstantArrayType *Array 2018 = Context.getAsConstantArrayType(AllocType)) { 2019 ArraySize = IntegerLiteral::Create(Context, Array->getSize(), 2020 Context.getSizeType(), 2021 TypeRange.getEnd()); 2022 AllocType = Array->getElementType(); 2023 } 2024 } 2025 2026 if (CheckAllocatedType(AllocType, TypeRange.getBegin(), TypeRange)) 2027 return ExprError(); 2028 2029 // In ARC, infer 'retaining' for the allocated 2030 if (getLangOpts().ObjCAutoRefCount && 2031 AllocType.getObjCLifetime() == Qualifiers::OCL_None && 2032 AllocType->isObjCLifetimeType()) { 2033 AllocType = Context.getLifetimeQualifiedType(AllocType, 2034 AllocType->getObjCARCImplicitLifetime()); 2035 } 2036 2037 QualType ResultType = Context.getPointerType(AllocType); 2038 2039 if (ArraySize && *ArraySize && 2040 (*ArraySize)->getType()->isNonOverloadPlaceholderType()) { 2041 ExprResult result = CheckPlaceholderExpr(*ArraySize); 2042 if (result.isInvalid()) return ExprError(); 2043 ArraySize = result.get(); 2044 } 2045 // C++98 5.3.4p6: "The expression in a direct-new-declarator shall have 2046 // integral or enumeration type with a non-negative value." 2047 // C++11 [expr.new]p6: The expression [...] shall be of integral or unscoped 2048 // enumeration type, or a class type for which a single non-explicit 2049 // conversion function to integral or unscoped enumeration type exists. 2050 // C++1y [expr.new]p6: The expression [...] is implicitly converted to 2051 // std::size_t. 2052 llvm::Optional<uint64_t> KnownArraySize; 2053 if (ArraySize && *ArraySize && !(*ArraySize)->isTypeDependent()) { 2054 ExprResult ConvertedSize; 2055 if (getLangOpts().CPlusPlus14) { 2056 assert(Context.getTargetInfo().getIntWidth() && "Builtin type of size 0?"); 2057 2058 ConvertedSize = PerformImplicitConversion(*ArraySize, Context.getSizeType(), 2059 AA_Converting); 2060 2061 if (!ConvertedSize.isInvalid() && 2062 (*ArraySize)->getType()->getAs<RecordType>()) 2063 // Diagnose the compatibility of this conversion. 2064 Diag(StartLoc, diag::warn_cxx98_compat_array_size_conversion) 2065 << (*ArraySize)->getType() << 0 << "'size_t'"; 2066 } else { 2067 class SizeConvertDiagnoser : public ICEConvertDiagnoser { 2068 protected: 2069 Expr *ArraySize; 2070 2071 public: 2072 SizeConvertDiagnoser(Expr *ArraySize) 2073 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false, false, false), 2074 ArraySize(ArraySize) {} 2075 2076 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc, 2077 QualType T) override { 2078 return S.Diag(Loc, diag::err_array_size_not_integral) 2079 << S.getLangOpts().CPlusPlus11 << T; 2080 } 2081 2082 SemaDiagnosticBuilder diagnoseIncomplete( 2083 Sema &S, SourceLocation Loc, QualType T) override { 2084 return S.Diag(Loc, diag::err_array_size_incomplete_type) 2085 << T << ArraySize->getSourceRange(); 2086 } 2087 2088 SemaDiagnosticBuilder diagnoseExplicitConv( 2089 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override { 2090 return S.Diag(Loc, diag::err_array_size_explicit_conversion) << T << ConvTy; 2091 } 2092 2093 SemaDiagnosticBuilder noteExplicitConv( 2094 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 2095 return S.Diag(Conv->getLocation(), diag::note_array_size_conversion) 2096 << ConvTy->isEnumeralType() << ConvTy; 2097 } 2098 2099 SemaDiagnosticBuilder diagnoseAmbiguous( 2100 Sema &S, SourceLocation Loc, QualType T) override { 2101 return S.Diag(Loc, diag::err_array_size_ambiguous_conversion) << T; 2102 } 2103 2104 SemaDiagnosticBuilder noteAmbiguous( 2105 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override { 2106 return S.Diag(Conv->getLocation(), diag::note_array_size_conversion) 2107 << ConvTy->isEnumeralType() << ConvTy; 2108 } 2109 2110 SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc, 2111 QualType T, 2112 QualType ConvTy) override { 2113 return S.Diag(Loc, 2114 S.getLangOpts().CPlusPlus11 2115 ? diag::warn_cxx98_compat_array_size_conversion 2116 : diag::ext_array_size_conversion) 2117 << T << ConvTy->isEnumeralType() << ConvTy; 2118 } 2119 } SizeDiagnoser(*ArraySize); 2120 2121 ConvertedSize = PerformContextualImplicitConversion(StartLoc, *ArraySize, 2122 SizeDiagnoser); 2123 } 2124 if (ConvertedSize.isInvalid()) 2125 return ExprError(); 2126 2127 ArraySize = ConvertedSize.get(); 2128 QualType SizeType = (*ArraySize)->getType(); 2129 2130 if (!SizeType->isIntegralOrUnscopedEnumerationType()) 2131 return ExprError(); 2132 2133 // C++98 [expr.new]p7: 2134 // The expression in a direct-new-declarator shall have integral type 2135 // with a non-negative value. 2136 // 2137 // Let's see if this is a constant < 0. If so, we reject it out of hand, 2138 // per CWG1464. Otherwise, if it's not a constant, we must have an 2139 // unparenthesized array type. 2140 if (!(*ArraySize)->isValueDependent()) { 2141 // We've already performed any required implicit conversion to integer or 2142 // unscoped enumeration type. 2143 // FIXME: Per CWG1464, we are required to check the value prior to 2144 // converting to size_t. This will never find a negative array size in 2145 // C++14 onwards, because Value is always unsigned here! 2146 if (Optional<llvm::APSInt> Value = 2147 (*ArraySize)->getIntegerConstantExpr(Context)) { 2148 if (Value->isSigned() && Value->isNegative()) { 2149 return ExprError(Diag((*ArraySize)->getBeginLoc(), 2150 diag::err_typecheck_negative_array_size) 2151 << (*ArraySize)->getSourceRange()); 2152 } 2153 2154 if (!AllocType->isDependentType()) { 2155 unsigned ActiveSizeBits = ConstantArrayType::getNumAddressingBits( 2156 Context, AllocType, *Value); 2157 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) 2158 return ExprError( 2159 Diag((*ArraySize)->getBeginLoc(), diag::err_array_too_large) 2160 << toString(*Value, 10) << (*ArraySize)->getSourceRange()); 2161 } 2162 2163 KnownArraySize = Value->getZExtValue(); 2164 } else if (TypeIdParens.isValid()) { 2165 // Can't have dynamic array size when the type-id is in parentheses. 2166 Diag((*ArraySize)->getBeginLoc(), diag::ext_new_paren_array_nonconst) 2167 << (*ArraySize)->getSourceRange() 2168 << FixItHint::CreateRemoval(TypeIdParens.getBegin()) 2169 << FixItHint::CreateRemoval(TypeIdParens.getEnd()); 2170 2171 TypeIdParens = SourceRange(); 2172 } 2173 } 2174 2175 // Note that we do *not* convert the argument in any way. It can 2176 // be signed, larger than size_t, whatever. 2177 } 2178 2179 FunctionDecl *OperatorNew = nullptr; 2180 FunctionDecl *OperatorDelete = nullptr; 2181 unsigned Alignment = 2182 AllocType->isDependentType() ? 0 : Context.getTypeAlign(AllocType); 2183 unsigned NewAlignment = Context.getTargetInfo().getNewAlign(); 2184 bool PassAlignment = getLangOpts().AlignedAllocation && 2185 Alignment > NewAlignment; 2186 2187 AllocationFunctionScope Scope = UseGlobal ? AFS_Global : AFS_Both; 2188 if (!AllocType->isDependentType() && 2189 !Expr::hasAnyTypeDependentArguments(PlacementArgs) && 2190 FindAllocationFunctions( 2191 StartLoc, SourceRange(PlacementLParen, PlacementRParen), Scope, Scope, 2192 AllocType, ArraySize.hasValue(), PassAlignment, PlacementArgs, 2193 OperatorNew, OperatorDelete)) 2194 return ExprError(); 2195 2196 // If this is an array allocation, compute whether the usual array 2197 // deallocation function for the type has a size_t parameter. 2198 bool UsualArrayDeleteWantsSize = false; 2199 if (ArraySize && !AllocType->isDependentType()) 2200 UsualArrayDeleteWantsSize = 2201 doesUsualArrayDeleteWantSize(*this, StartLoc, AllocType); 2202 2203 SmallVector<Expr *, 8> AllPlaceArgs; 2204 if (OperatorNew) { 2205 auto *Proto = OperatorNew->getType()->castAs<FunctionProtoType>(); 2206 VariadicCallType CallType = Proto->isVariadic() ? VariadicFunction 2207 : VariadicDoesNotApply; 2208 2209 // We've already converted the placement args, just fill in any default 2210 // arguments. Skip the first parameter because we don't have a corresponding 2211 // argument. Skip the second parameter too if we're passing in the 2212 // alignment; we've already filled it in. 2213 unsigned NumImplicitArgs = PassAlignment ? 2 : 1; 2214 if (GatherArgumentsForCall(PlacementLParen, OperatorNew, Proto, 2215 NumImplicitArgs, PlacementArgs, AllPlaceArgs, 2216 CallType)) 2217 return ExprError(); 2218 2219 if (!AllPlaceArgs.empty()) 2220 PlacementArgs = AllPlaceArgs; 2221 2222 // We would like to perform some checking on the given `operator new` call, 2223 // but the PlacementArgs does not contain the implicit arguments, 2224 // namely allocation size and maybe allocation alignment, 2225 // so we need to conjure them. 2226 2227 QualType SizeTy = Context.getSizeType(); 2228 unsigned SizeTyWidth = Context.getTypeSize(SizeTy); 2229 2230 llvm::APInt SingleEltSize( 2231 SizeTyWidth, Context.getTypeSizeInChars(AllocType).getQuantity()); 2232 2233 // How many bytes do we want to allocate here? 2234 llvm::Optional<llvm::APInt> AllocationSize; 2235 if (!ArraySize.hasValue() && !AllocType->isDependentType()) { 2236 // For non-array operator new, we only want to allocate one element. 2237 AllocationSize = SingleEltSize; 2238 } else if (KnownArraySize.hasValue() && !AllocType->isDependentType()) { 2239 // For array operator new, only deal with static array size case. 2240 bool Overflow; 2241 AllocationSize = llvm::APInt(SizeTyWidth, *KnownArraySize) 2242 .umul_ov(SingleEltSize, Overflow); 2243 (void)Overflow; 2244 assert( 2245 !Overflow && 2246 "Expected that all the overflows would have been handled already."); 2247 } 2248 2249 IntegerLiteral AllocationSizeLiteral( 2250 Context, 2251 AllocationSize.getValueOr(llvm::APInt::getNullValue(SizeTyWidth)), 2252 SizeTy, SourceLocation()); 2253 // Otherwise, if we failed to constant-fold the allocation size, we'll 2254 // just give up and pass-in something opaque, that isn't a null pointer. 2255 OpaqueValueExpr OpaqueAllocationSize(SourceLocation(), SizeTy, VK_PRValue, 2256 OK_Ordinary, /*SourceExpr=*/nullptr); 2257 2258 // Let's synthesize the alignment argument in case we will need it. 2259 // Since we *really* want to allocate these on stack, this is slightly ugly 2260 // because there might not be a `std::align_val_t` type. 2261 EnumDecl *StdAlignValT = getStdAlignValT(); 2262 QualType AlignValT = 2263 StdAlignValT ? Context.getTypeDeclType(StdAlignValT) : SizeTy; 2264 IntegerLiteral AlignmentLiteral( 2265 Context, 2266 llvm::APInt(Context.getTypeSize(SizeTy), 2267 Alignment / Context.getCharWidth()), 2268 SizeTy, SourceLocation()); 2269 ImplicitCastExpr DesiredAlignment(ImplicitCastExpr::OnStack, AlignValT, 2270 CK_IntegralCast, &AlignmentLiteral, 2271 VK_PRValue, FPOptionsOverride()); 2272 2273 // Adjust placement args by prepending conjured size and alignment exprs. 2274 llvm::SmallVector<Expr *, 8> CallArgs; 2275 CallArgs.reserve(NumImplicitArgs + PlacementArgs.size()); 2276 CallArgs.emplace_back(AllocationSize.hasValue() 2277 ? static_cast<Expr *>(&AllocationSizeLiteral) 2278 : &OpaqueAllocationSize); 2279 if (PassAlignment) 2280 CallArgs.emplace_back(&DesiredAlignment); 2281 CallArgs.insert(CallArgs.end(), PlacementArgs.begin(), PlacementArgs.end()); 2282 2283 DiagnoseSentinelCalls(OperatorNew, PlacementLParen, CallArgs); 2284 2285 checkCall(OperatorNew, Proto, /*ThisArg=*/nullptr, CallArgs, 2286 /*IsMemberFunction=*/false, StartLoc, Range, CallType); 2287 2288 // Warn if the type is over-aligned and is being allocated by (unaligned) 2289 // global operator new. 2290 if (PlacementArgs.empty() && !PassAlignment && 2291 (OperatorNew->isImplicit() || 2292 (OperatorNew->getBeginLoc().isValid() && 2293 getSourceManager().isInSystemHeader(OperatorNew->getBeginLoc())))) { 2294 if (Alignment > NewAlignment) 2295 Diag(StartLoc, diag::warn_overaligned_type) 2296 << AllocType 2297 << unsigned(Alignment / Context.getCharWidth()) 2298 << unsigned(NewAlignment / Context.getCharWidth()); 2299 } 2300 } 2301 2302 // Array 'new' can't have any initializers except empty parentheses. 2303 // Initializer lists are also allowed, in C++11. Rely on the parser for the 2304 // dialect distinction. 2305 if (ArraySize && !isLegalArrayNewInitializer(initStyle, Initializer)) { 2306 SourceRange InitRange(Inits[0]->getBeginLoc(), 2307 Inits[NumInits - 1]->getEndLoc()); 2308 Diag(StartLoc, diag::err_new_array_init_args) << InitRange; 2309 return ExprError(); 2310 } 2311 2312 // If we can perform the initialization, and we've not already done so, 2313 // do it now. 2314 if (!AllocType->isDependentType() && 2315 !Expr::hasAnyTypeDependentArguments( 2316 llvm::makeArrayRef(Inits, NumInits))) { 2317 // The type we initialize is the complete type, including the array bound. 2318 QualType InitType; 2319 if (KnownArraySize) 2320 InitType = Context.getConstantArrayType( 2321 AllocType, 2322 llvm::APInt(Context.getTypeSize(Context.getSizeType()), 2323 *KnownArraySize), 2324 *ArraySize, ArrayType::Normal, 0); 2325 else if (ArraySize) 2326 InitType = 2327 Context.getIncompleteArrayType(AllocType, ArrayType::Normal, 0); 2328 else 2329 InitType = AllocType; 2330 2331 InitializedEntity Entity 2332 = InitializedEntity::InitializeNew(StartLoc, InitType); 2333 InitializationSequence InitSeq(*this, Entity, Kind, 2334 MultiExprArg(Inits, NumInits)); 2335 ExprResult FullInit = InitSeq.Perform(*this, Entity, Kind, 2336 MultiExprArg(Inits, NumInits)); 2337 if (FullInit.isInvalid()) 2338 return ExprError(); 2339 2340 // FullInit is our initializer; strip off CXXBindTemporaryExprs, because 2341 // we don't want the initialized object to be destructed. 2342 // FIXME: We should not create these in the first place. 2343 if (CXXBindTemporaryExpr *Binder = 2344 dyn_cast_or_null<CXXBindTemporaryExpr>(FullInit.get())) 2345 FullInit = Binder->getSubExpr(); 2346 2347 Initializer = FullInit.get(); 2348 2349 // FIXME: If we have a KnownArraySize, check that the array bound of the 2350 // initializer is no greater than that constant value. 2351 2352 if (ArraySize && !*ArraySize) { 2353 auto *CAT = Context.getAsConstantArrayType(Initializer->getType()); 2354 if (CAT) { 2355 // FIXME: Track that the array size was inferred rather than explicitly 2356 // specified. 2357 ArraySize = IntegerLiteral::Create( 2358 Context, CAT->getSize(), Context.getSizeType(), TypeRange.getEnd()); 2359 } else { 2360 Diag(TypeRange.getEnd(), diag::err_new_array_size_unknown_from_init) 2361 << Initializer->getSourceRange(); 2362 } 2363 } 2364 } 2365 2366 // Mark the new and delete operators as referenced. 2367 if (OperatorNew) { 2368 if (DiagnoseUseOfDecl(OperatorNew, StartLoc)) 2369 return ExprError(); 2370 MarkFunctionReferenced(StartLoc, OperatorNew); 2371 } 2372 if (OperatorDelete) { 2373 if (DiagnoseUseOfDecl(OperatorDelete, StartLoc)) 2374 return ExprError(); 2375 MarkFunctionReferenced(StartLoc, OperatorDelete); 2376 } 2377 2378 return CXXNewExpr::Create(Context, UseGlobal, OperatorNew, OperatorDelete, 2379 PassAlignment, UsualArrayDeleteWantsSize, 2380 PlacementArgs, TypeIdParens, ArraySize, initStyle, 2381 Initializer, ResultType, AllocTypeInfo, Range, 2382 DirectInitRange); 2383 } 2384 2385 /// Checks that a type is suitable as the allocated type 2386 /// in a new-expression. 2387 bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc, 2388 SourceRange R) { 2389 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an 2390 // abstract class type or array thereof. 2391 if (AllocType->isFunctionType()) 2392 return Diag(Loc, diag::err_bad_new_type) 2393 << AllocType << 0 << R; 2394 else if (AllocType->isReferenceType()) 2395 return Diag(Loc, diag::err_bad_new_type) 2396 << AllocType << 1 << R; 2397 else if (!AllocType->isDependentType() && 2398 RequireCompleteSizedType( 2399 Loc, AllocType, diag::err_new_incomplete_or_sizeless_type, R)) 2400 return true; 2401 else if (RequireNonAbstractType(Loc, AllocType, 2402 diag::err_allocation_of_abstract_type)) 2403 return true; 2404 else if (AllocType->isVariablyModifiedType()) 2405 return Diag(Loc, diag::err_variably_modified_new_type) 2406 << AllocType; 2407 else if (AllocType.getAddressSpace() != LangAS::Default && 2408 !getLangOpts().OpenCLCPlusPlus) 2409 return Diag(Loc, diag::err_address_space_qualified_new) 2410 << AllocType.getUnqualifiedType() 2411 << AllocType.getQualifiers().getAddressSpaceAttributePrintValue(); 2412 else if (getLangOpts().ObjCAutoRefCount) { 2413 if (const ArrayType *AT = Context.getAsArrayType(AllocType)) { 2414 QualType BaseAllocType = Context.getBaseElementType(AT); 2415 if (BaseAllocType.getObjCLifetime() == Qualifiers::OCL_None && 2416 BaseAllocType->isObjCLifetimeType()) 2417 return Diag(Loc, diag::err_arc_new_array_without_ownership) 2418 << BaseAllocType; 2419 } 2420 } 2421 2422 return false; 2423 } 2424 2425 static bool resolveAllocationOverload( 2426 Sema &S, LookupResult &R, SourceRange Range, SmallVectorImpl<Expr *> &Args, 2427 bool &PassAlignment, FunctionDecl *&Operator, 2428 OverloadCandidateSet *AlignedCandidates, Expr *AlignArg, bool Diagnose) { 2429 OverloadCandidateSet Candidates(R.getNameLoc(), 2430 OverloadCandidateSet::CSK_Normal); 2431 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end(); 2432 Alloc != AllocEnd; ++Alloc) { 2433 // Even member operator new/delete are implicitly treated as 2434 // static, so don't use AddMemberCandidate. 2435 NamedDecl *D = (*Alloc)->getUnderlyingDecl(); 2436 2437 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) { 2438 S.AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(), 2439 /*ExplicitTemplateArgs=*/nullptr, Args, 2440 Candidates, 2441 /*SuppressUserConversions=*/false); 2442 continue; 2443 } 2444 2445 FunctionDecl *Fn = cast<FunctionDecl>(D); 2446 S.AddOverloadCandidate(Fn, Alloc.getPair(), Args, Candidates, 2447 /*SuppressUserConversions=*/false); 2448 } 2449 2450 // Do the resolution. 2451 OverloadCandidateSet::iterator Best; 2452 switch (Candidates.BestViableFunction(S, R.getNameLoc(), Best)) { 2453 case OR_Success: { 2454 // Got one! 2455 FunctionDecl *FnDecl = Best->Function; 2456 if (S.CheckAllocationAccess(R.getNameLoc(), Range, R.getNamingClass(), 2457 Best->FoundDecl) == Sema::AR_inaccessible) 2458 return true; 2459 2460 Operator = FnDecl; 2461 return false; 2462 } 2463 2464 case OR_No_Viable_Function: 2465 // C++17 [expr.new]p13: 2466 // If no matching function is found and the allocated object type has 2467 // new-extended alignment, the alignment argument is removed from the 2468 // argument list, and overload resolution is performed again. 2469 if (PassAlignment) { 2470 PassAlignment = false; 2471 AlignArg = Args[1]; 2472 Args.erase(Args.begin() + 1); 2473 return resolveAllocationOverload(S, R, Range, Args, PassAlignment, 2474 Operator, &Candidates, AlignArg, 2475 Diagnose); 2476 } 2477 2478 // MSVC will fall back on trying to find a matching global operator new 2479 // if operator new[] cannot be found. Also, MSVC will leak by not 2480 // generating a call to operator delete or operator delete[], but we 2481 // will not replicate that bug. 2482 // FIXME: Find out how this interacts with the std::align_val_t fallback 2483 // once MSVC implements it. 2484 if (R.getLookupName().getCXXOverloadedOperator() == OO_Array_New && 2485 S.Context.getLangOpts().MSVCCompat) { 2486 R.clear(); 2487 R.setLookupName(S.Context.DeclarationNames.getCXXOperatorName(OO_New)); 2488 S.LookupQualifiedName(R, S.Context.getTranslationUnitDecl()); 2489 // FIXME: This will give bad diagnostics pointing at the wrong functions. 2490 return resolveAllocationOverload(S, R, Range, Args, PassAlignment, 2491 Operator, /*Candidates=*/nullptr, 2492 /*AlignArg=*/nullptr, Diagnose); 2493 } 2494 2495 if (Diagnose) { 2496 // If this is an allocation of the form 'new (p) X' for some object 2497 // pointer p (or an expression that will decay to such a pointer), 2498 // diagnose the missing inclusion of <new>. 2499 if (!R.isClassLookup() && Args.size() == 2 && 2500 (Args[1]->getType()->isObjectPointerType() || 2501 Args[1]->getType()->isArrayType())) { 2502 S.Diag(R.getNameLoc(), diag::err_need_header_before_placement_new) 2503 << R.getLookupName() << Range; 2504 // Listing the candidates is unlikely to be useful; skip it. 2505 return true; 2506 } 2507 2508 // Finish checking all candidates before we note any. This checking can 2509 // produce additional diagnostics so can't be interleaved with our 2510 // emission of notes. 2511 // 2512 // For an aligned allocation, separately check the aligned and unaligned 2513 // candidates with their respective argument lists. 2514 SmallVector<OverloadCandidate*, 32> Cands; 2515 SmallVector<OverloadCandidate*, 32> AlignedCands; 2516 llvm::SmallVector<Expr*, 4> AlignedArgs; 2517 if (AlignedCandidates) { 2518 auto IsAligned = [](OverloadCandidate &C) { 2519 return C.Function->getNumParams() > 1 && 2520 C.Function->getParamDecl(1)->getType()->isAlignValT(); 2521 }; 2522 auto IsUnaligned = [&](OverloadCandidate &C) { return !IsAligned(C); }; 2523 2524 AlignedArgs.reserve(Args.size() + 1); 2525 AlignedArgs.push_back(Args[0]); 2526 AlignedArgs.push_back(AlignArg); 2527 AlignedArgs.append(Args.begin() + 1, Args.end()); 2528 AlignedCands = AlignedCandidates->CompleteCandidates( 2529 S, OCD_AllCandidates, AlignedArgs, R.getNameLoc(), IsAligned); 2530 2531 Cands = Candidates.CompleteCandidates(S, OCD_AllCandidates, Args, 2532 R.getNameLoc(), IsUnaligned); 2533 } else { 2534 Cands = Candidates.CompleteCandidates(S, OCD_AllCandidates, Args, 2535 R.getNameLoc()); 2536 } 2537 2538 S.Diag(R.getNameLoc(), diag::err_ovl_no_viable_function_in_call) 2539 << R.getLookupName() << Range; 2540 if (AlignedCandidates) 2541 AlignedCandidates->NoteCandidates(S, AlignedArgs, AlignedCands, "", 2542 R.getNameLoc()); 2543 Candidates.NoteCandidates(S, Args, Cands, "", R.getNameLoc()); 2544 } 2545 return true; 2546 2547 case OR_Ambiguous: 2548 if (Diagnose) { 2549 Candidates.NoteCandidates( 2550 PartialDiagnosticAt(R.getNameLoc(), 2551 S.PDiag(diag::err_ovl_ambiguous_call) 2552 << R.getLookupName() << Range), 2553 S, OCD_AmbiguousCandidates, Args); 2554 } 2555 return true; 2556 2557 case OR_Deleted: { 2558 if (Diagnose) { 2559 Candidates.NoteCandidates( 2560 PartialDiagnosticAt(R.getNameLoc(), 2561 S.PDiag(diag::err_ovl_deleted_call) 2562 << R.getLookupName() << Range), 2563 S, OCD_AllCandidates, Args); 2564 } 2565 return true; 2566 } 2567 } 2568 llvm_unreachable("Unreachable, bad result from BestViableFunction"); 2569 } 2570 2571 bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, 2572 AllocationFunctionScope NewScope, 2573 AllocationFunctionScope DeleteScope, 2574 QualType AllocType, bool IsArray, 2575 bool &PassAlignment, MultiExprArg PlaceArgs, 2576 FunctionDecl *&OperatorNew, 2577 FunctionDecl *&OperatorDelete, 2578 bool Diagnose) { 2579 // --- Choosing an allocation function --- 2580 // C++ 5.3.4p8 - 14 & 18 2581 // 1) If looking in AFS_Global scope for allocation functions, only look in 2582 // the global scope. Else, if AFS_Class, only look in the scope of the 2583 // allocated class. If AFS_Both, look in both. 2584 // 2) If an array size is given, look for operator new[], else look for 2585 // operator new. 2586 // 3) The first argument is always size_t. Append the arguments from the 2587 // placement form. 2588 2589 SmallVector<Expr*, 8> AllocArgs; 2590 AllocArgs.reserve((PassAlignment ? 2 : 1) + PlaceArgs.size()); 2591 2592 // We don't care about the actual value of these arguments. 2593 // FIXME: Should the Sema create the expression and embed it in the syntax 2594 // tree? Or should the consumer just recalculate the value? 2595 // FIXME: Using a dummy value will interact poorly with attribute enable_if. 2596 IntegerLiteral Size(Context, llvm::APInt::getNullValue( 2597 Context.getTargetInfo().getPointerWidth(0)), 2598 Context.getSizeType(), 2599 SourceLocation()); 2600 AllocArgs.push_back(&Size); 2601 2602 QualType AlignValT = Context.VoidTy; 2603 if (PassAlignment) { 2604 DeclareGlobalNewDelete(); 2605 AlignValT = Context.getTypeDeclType(getStdAlignValT()); 2606 } 2607 CXXScalarValueInitExpr Align(AlignValT, nullptr, SourceLocation()); 2608 if (PassAlignment) 2609 AllocArgs.push_back(&Align); 2610 2611 AllocArgs.insert(AllocArgs.end(), PlaceArgs.begin(), PlaceArgs.end()); 2612 2613 // C++ [expr.new]p8: 2614 // If the allocated type is a non-array type, the allocation 2615 // function's name is operator new and the deallocation function's 2616 // name is operator delete. If the allocated type is an array 2617 // type, the allocation function's name is operator new[] and the 2618 // deallocation function's name is operator delete[]. 2619 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName( 2620 IsArray ? OO_Array_New : OO_New); 2621 2622 QualType AllocElemType = Context.getBaseElementType(AllocType); 2623 2624 // Find the allocation function. 2625 { 2626 LookupResult R(*this, NewName, StartLoc, LookupOrdinaryName); 2627 2628 // C++1z [expr.new]p9: 2629 // If the new-expression begins with a unary :: operator, the allocation 2630 // function's name is looked up in the global scope. Otherwise, if the 2631 // allocated type is a class type T or array thereof, the allocation 2632 // function's name is looked up in the scope of T. 2633 if (AllocElemType->isRecordType() && NewScope != AFS_Global) 2634 LookupQualifiedName(R, AllocElemType->getAsCXXRecordDecl()); 2635 2636 // We can see ambiguity here if the allocation function is found in 2637 // multiple base classes. 2638 if (R.isAmbiguous()) 2639 return true; 2640 2641 // If this lookup fails to find the name, or if the allocated type is not 2642 // a class type, the allocation function's name is looked up in the 2643 // global scope. 2644 if (R.empty()) { 2645 if (NewScope == AFS_Class) 2646 return true; 2647 2648 LookupQualifiedName(R, Context.getTranslationUnitDecl()); 2649 } 2650 2651 if (getLangOpts().OpenCLCPlusPlus && R.empty()) { 2652 if (PlaceArgs.empty()) { 2653 Diag(StartLoc, diag::err_openclcxx_not_supported) << "default new"; 2654 } else { 2655 Diag(StartLoc, diag::err_openclcxx_placement_new); 2656 } 2657 return true; 2658 } 2659 2660 assert(!R.empty() && "implicitly declared allocation functions not found"); 2661 assert(!R.isAmbiguous() && "global allocation functions are ambiguous"); 2662 2663 // We do our own custom access checks below. 2664 R.suppressDiagnostics(); 2665 2666 if (resolveAllocationOverload(*this, R, Range, AllocArgs, PassAlignment, 2667 OperatorNew, /*Candidates=*/nullptr, 2668 /*AlignArg=*/nullptr, Diagnose)) 2669 return true; 2670 } 2671 2672 // We don't need an operator delete if we're running under -fno-exceptions. 2673 if (!getLangOpts().Exceptions) { 2674 OperatorDelete = nullptr; 2675 return false; 2676 } 2677 2678 // Note, the name of OperatorNew might have been changed from array to 2679 // non-array by resolveAllocationOverload. 2680 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName( 2681 OperatorNew->getDeclName().getCXXOverloadedOperator() == OO_Array_New 2682 ? OO_Array_Delete 2683 : OO_Delete); 2684 2685 // C++ [expr.new]p19: 2686 // 2687 // If the new-expression begins with a unary :: operator, the 2688 // deallocation function's name is looked up in the global 2689 // scope. Otherwise, if the allocated type is a class type T or an 2690 // array thereof, the deallocation function's name is looked up in 2691 // the scope of T. If this lookup fails to find the name, or if 2692 // the allocated type is not a class type or array thereof, the 2693 // deallocation function's name is looked up in the global scope. 2694 LookupResult FoundDelete(*this, DeleteName, StartLoc, LookupOrdinaryName); 2695 if (AllocElemType->isRecordType() && DeleteScope != AFS_Global) { 2696 auto *RD = 2697 cast<CXXRecordDecl>(AllocElemType->castAs<RecordType>()->getDecl()); 2698 LookupQualifiedName(FoundDelete, RD); 2699 } 2700 if (FoundDelete.isAmbiguous()) 2701 return true; // FIXME: clean up expressions? 2702 2703 // Filter out any destroying operator deletes. We can't possibly call such a 2704 // function in this context, because we're handling the case where the object 2705 // was not successfully constructed. 2706 // FIXME: This is not covered by the language rules yet. 2707 { 2708 LookupResult::Filter Filter = FoundDelete.makeFilter(); 2709 while (Filter.hasNext()) { 2710 auto *FD = dyn_cast<FunctionDecl>(Filter.next()->getUnderlyingDecl()); 2711 if (FD && FD->isDestroyingOperatorDelete()) 2712 Filter.erase(); 2713 } 2714 Filter.done(); 2715 } 2716 2717 bool FoundGlobalDelete = FoundDelete.empty(); 2718 if (FoundDelete.empty()) { 2719 FoundDelete.clear(LookupOrdinaryName); 2720 2721 if (DeleteScope == AFS_Class) 2722 return true; 2723 2724 DeclareGlobalNewDelete(); 2725 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl()); 2726 } 2727 2728 FoundDelete.suppressDiagnostics(); 2729 2730 SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches; 2731 2732 // Whether we're looking for a placement operator delete is dictated 2733 // by whether we selected a placement operator new, not by whether 2734 // we had explicit placement arguments. This matters for things like 2735 // struct A { void *operator new(size_t, int = 0); ... }; 2736 // A *a = new A() 2737 // 2738 // We don't have any definition for what a "placement allocation function" 2739 // is, but we assume it's any allocation function whose 2740 // parameter-declaration-clause is anything other than (size_t). 2741 // 2742 // FIXME: Should (size_t, std::align_val_t) also be considered non-placement? 2743 // This affects whether an exception from the constructor of an overaligned 2744 // type uses the sized or non-sized form of aligned operator delete. 2745 bool isPlacementNew = !PlaceArgs.empty() || OperatorNew->param_size() != 1 || 2746 OperatorNew->isVariadic(); 2747 2748 if (isPlacementNew) { 2749 // C++ [expr.new]p20: 2750 // A declaration of a placement deallocation function matches the 2751 // declaration of a placement allocation function if it has the 2752 // same number of parameters and, after parameter transformations 2753 // (8.3.5), all parameter types except the first are 2754 // identical. [...] 2755 // 2756 // To perform this comparison, we compute the function type that 2757 // the deallocation function should have, and use that type both 2758 // for template argument deduction and for comparison purposes. 2759 QualType ExpectedFunctionType; 2760 { 2761 auto *Proto = OperatorNew->getType()->castAs<FunctionProtoType>(); 2762 2763 SmallVector<QualType, 4> ArgTypes; 2764 ArgTypes.push_back(Context.VoidPtrTy); 2765 for (unsigned I = 1, N = Proto->getNumParams(); I < N; ++I) 2766 ArgTypes.push_back(Proto->getParamType(I)); 2767 2768 FunctionProtoType::ExtProtoInfo EPI; 2769 // FIXME: This is not part of the standard's rule. 2770 EPI.Variadic = Proto->isVariadic(); 2771 2772 ExpectedFunctionType 2773 = Context.getFunctionType(Context.VoidTy, ArgTypes, EPI); 2774 } 2775 2776 for (LookupResult::iterator D = FoundDelete.begin(), 2777 DEnd = FoundDelete.end(); 2778 D != DEnd; ++D) { 2779 FunctionDecl *Fn = nullptr; 2780 if (FunctionTemplateDecl *FnTmpl = 2781 dyn_cast<FunctionTemplateDecl>((*D)->getUnderlyingDecl())) { 2782 // Perform template argument deduction to try to match the 2783 // expected function type. 2784 TemplateDeductionInfo Info(StartLoc); 2785 if (DeduceTemplateArguments(FnTmpl, nullptr, ExpectedFunctionType, Fn, 2786 Info)) 2787 continue; 2788 } else 2789 Fn = cast<FunctionDecl>((*D)->getUnderlyingDecl()); 2790 2791 if (Context.hasSameType(adjustCCAndNoReturn(Fn->getType(), 2792 ExpectedFunctionType, 2793 /*AdjustExcpetionSpec*/true), 2794 ExpectedFunctionType)) 2795 Matches.push_back(std::make_pair(D.getPair(), Fn)); 2796 } 2797 2798 if (getLangOpts().CUDA) 2799 EraseUnwantedCUDAMatches(dyn_cast<FunctionDecl>(CurContext), Matches); 2800 } else { 2801 // C++1y [expr.new]p22: 2802 // For a non-placement allocation function, the normal deallocation 2803 // function lookup is used 2804 // 2805 // Per [expr.delete]p10, this lookup prefers a member operator delete 2806 // without a size_t argument, but prefers a non-member operator delete 2807 // with a size_t where possible (which it always is in this case). 2808 llvm::SmallVector<UsualDeallocFnInfo, 4> BestDeallocFns; 2809 UsualDeallocFnInfo Selected = resolveDeallocationOverload( 2810 *this, FoundDelete, /*WantSize*/ FoundGlobalDelete, 2811 /*WantAlign*/ hasNewExtendedAlignment(*this, AllocElemType), 2812 &BestDeallocFns); 2813 if (Selected) 2814 Matches.push_back(std::make_pair(Selected.Found, Selected.FD)); 2815 else { 2816 // If we failed to select an operator, all remaining functions are viable 2817 // but ambiguous. 2818 for (auto Fn : BestDeallocFns) 2819 Matches.push_back(std::make_pair(Fn.Found, Fn.FD)); 2820 } 2821 } 2822 2823 // C++ [expr.new]p20: 2824 // [...] If the lookup finds a single matching deallocation 2825 // function, that function will be called; otherwise, no 2826 // deallocation function will be called. 2827 if (Matches.size() == 1) { 2828 OperatorDelete = Matches[0].second; 2829 2830 // C++1z [expr.new]p23: 2831 // If the lookup finds a usual deallocation function (3.7.4.2) 2832 // with a parameter of type std::size_t and that function, considered 2833 // as a placement deallocation function, would have been 2834 // selected as a match for the allocation function, the program 2835 // is ill-formed. 2836 if (getLangOpts().CPlusPlus11 && isPlacementNew && 2837 isNonPlacementDeallocationFunction(*this, OperatorDelete)) { 2838 UsualDeallocFnInfo Info(*this, 2839 DeclAccessPair::make(OperatorDelete, AS_public)); 2840 // Core issue, per mail to core reflector, 2016-10-09: 2841 // If this is a member operator delete, and there is a corresponding 2842 // non-sized member operator delete, this isn't /really/ a sized 2843 // deallocation function, it just happens to have a size_t parameter. 2844 bool IsSizedDelete = Info.HasSizeT; 2845 if (IsSizedDelete && !FoundGlobalDelete) { 2846 auto NonSizedDelete = 2847 resolveDeallocationOverload(*this, FoundDelete, /*WantSize*/false, 2848 /*WantAlign*/Info.HasAlignValT); 2849 if (NonSizedDelete && !NonSizedDelete.HasSizeT && 2850 NonSizedDelete.HasAlignValT == Info.HasAlignValT) 2851 IsSizedDelete = false; 2852 } 2853 2854 if (IsSizedDelete) { 2855 SourceRange R = PlaceArgs.empty() 2856 ? SourceRange() 2857 : SourceRange(PlaceArgs.front()->getBeginLoc(), 2858 PlaceArgs.back()->getEndLoc()); 2859 Diag(StartLoc, diag::err_placement_new_non_placement_delete) << R; 2860 if (!OperatorDelete->isImplicit()) 2861 Diag(OperatorDelete->getLocation(), diag::note_previous_decl) 2862 << DeleteName; 2863 } 2864 } 2865 2866 CheckAllocationAccess(StartLoc, Range, FoundDelete.getNamingClass(), 2867 Matches[0].first); 2868 } else if (!Matches.empty()) { 2869 // We found multiple suitable operators. Per [expr.new]p20, that means we 2870 // call no 'operator delete' function, but we should at least warn the user. 2871 // FIXME: Suppress this warning if the construction cannot throw. 2872 Diag(StartLoc, diag::warn_ambiguous_suitable_delete_function_found) 2873 << DeleteName << AllocElemType; 2874 2875 for (auto &Match : Matches) 2876 Diag(Match.second->getLocation(), 2877 diag::note_member_declared_here) << DeleteName; 2878 } 2879 2880 return false; 2881 } 2882 2883 /// DeclareGlobalNewDelete - Declare the global forms of operator new and 2884 /// delete. These are: 2885 /// @code 2886 /// // C++03: 2887 /// void* operator new(std::size_t) throw(std::bad_alloc); 2888 /// void* operator new[](std::size_t) throw(std::bad_alloc); 2889 /// void operator delete(void *) throw(); 2890 /// void operator delete[](void *) throw(); 2891 /// // C++11: 2892 /// void* operator new(std::size_t); 2893 /// void* operator new[](std::size_t); 2894 /// void operator delete(void *) noexcept; 2895 /// void operator delete[](void *) noexcept; 2896 /// // C++1y: 2897 /// void* operator new(std::size_t); 2898 /// void* operator new[](std::size_t); 2899 /// void operator delete(void *) noexcept; 2900 /// void operator delete[](void *) noexcept; 2901 /// void operator delete(void *, std::size_t) noexcept; 2902 /// void operator delete[](void *, std::size_t) noexcept; 2903 /// @endcode 2904 /// Note that the placement and nothrow forms of new are *not* implicitly 2905 /// declared. Their use requires including \<new\>. 2906 void Sema::DeclareGlobalNewDelete() { 2907 if (GlobalNewDeleteDeclared) 2908 return; 2909 2910 // The implicitly declared new and delete operators 2911 // are not supported in OpenCL. 2912 if (getLangOpts().OpenCLCPlusPlus) 2913 return; 2914 2915 // C++ [basic.std.dynamic]p2: 2916 // [...] The following allocation and deallocation functions (18.4) are 2917 // implicitly declared in global scope in each translation unit of a 2918 // program 2919 // 2920 // C++03: 2921 // void* operator new(std::size_t) throw(std::bad_alloc); 2922 // void* operator new[](std::size_t) throw(std::bad_alloc); 2923 // void operator delete(void*) throw(); 2924 // void operator delete[](void*) throw(); 2925 // C++11: 2926 // void* operator new(std::size_t); 2927 // void* operator new[](std::size_t); 2928 // void operator delete(void*) noexcept; 2929 // void operator delete[](void*) noexcept; 2930 // C++1y: 2931 // void* operator new(std::size_t); 2932 // void* operator new[](std::size_t); 2933 // void operator delete(void*) noexcept; 2934 // void operator delete[](void*) noexcept; 2935 // void operator delete(void*, std::size_t) noexcept; 2936 // void operator delete[](void*, std::size_t) noexcept; 2937 // 2938 // These implicit declarations introduce only the function names operator 2939 // new, operator new[], operator delete, operator delete[]. 2940 // 2941 // Here, we need to refer to std::bad_alloc, so we will implicitly declare 2942 // "std" or "bad_alloc" as necessary to form the exception specification. 2943 // However, we do not make these implicit declarations visible to name 2944 // lookup. 2945 if (!StdBadAlloc && !getLangOpts().CPlusPlus11) { 2946 // The "std::bad_alloc" class has not yet been declared, so build it 2947 // implicitly. 2948 StdBadAlloc = CXXRecordDecl::Create(Context, TTK_Class, 2949 getOrCreateStdNamespace(), 2950 SourceLocation(), SourceLocation(), 2951 &PP.getIdentifierTable().get("bad_alloc"), 2952 nullptr); 2953 getStdBadAlloc()->setImplicit(true); 2954 } 2955 if (!StdAlignValT && getLangOpts().AlignedAllocation) { 2956 // The "std::align_val_t" enum class has not yet been declared, so build it 2957 // implicitly. 2958 auto *AlignValT = EnumDecl::Create( 2959 Context, getOrCreateStdNamespace(), SourceLocation(), SourceLocation(), 2960 &PP.getIdentifierTable().get("align_val_t"), nullptr, true, true, true); 2961 AlignValT->setIntegerType(Context.getSizeType()); 2962 AlignValT->setPromotionType(Context.getSizeType()); 2963 AlignValT->setImplicit(true); 2964 StdAlignValT = AlignValT; 2965 } 2966 2967 GlobalNewDeleteDeclared = true; 2968 2969 QualType VoidPtr = Context.getPointerType(Context.VoidTy); 2970 QualType SizeT = Context.getSizeType(); 2971 2972 auto DeclareGlobalAllocationFunctions = [&](OverloadedOperatorKind Kind, 2973 QualType Return, QualType Param) { 2974 llvm::SmallVector<QualType, 3> Params; 2975 Params.push_back(Param); 2976 2977 // Create up to four variants of the function (sized/aligned). 2978 bool HasSizedVariant = getLangOpts().SizedDeallocation && 2979 (Kind == OO_Delete || Kind == OO_Array_Delete); 2980 bool HasAlignedVariant = getLangOpts().AlignedAllocation; 2981 2982 int NumSizeVariants = (HasSizedVariant ? 2 : 1); 2983 int NumAlignVariants = (HasAlignedVariant ? 2 : 1); 2984 for (int Sized = 0; Sized < NumSizeVariants; ++Sized) { 2985 if (Sized) 2986 Params.push_back(SizeT); 2987 2988 for (int Aligned = 0; Aligned < NumAlignVariants; ++Aligned) { 2989 if (Aligned) 2990 Params.push_back(Context.getTypeDeclType(getStdAlignValT())); 2991 2992 DeclareGlobalAllocationFunction( 2993 Context.DeclarationNames.getCXXOperatorName(Kind), Return, Params); 2994 2995 if (Aligned) 2996 Params.pop_back(); 2997 } 2998 } 2999 }; 3000 3001 DeclareGlobalAllocationFunctions(OO_New, VoidPtr, SizeT); 3002 DeclareGlobalAllocationFunctions(OO_Array_New, VoidPtr, SizeT); 3003 DeclareGlobalAllocationFunctions(OO_Delete, Context.VoidTy, VoidPtr); 3004 DeclareGlobalAllocationFunctions(OO_Array_Delete, Context.VoidTy, VoidPtr); 3005 } 3006 3007 /// DeclareGlobalAllocationFunction - Declares a single implicit global 3008 /// allocation function if it doesn't already exist. 3009 void Sema::DeclareGlobalAllocationFunction(DeclarationName Name, 3010 QualType Return, 3011 ArrayRef<QualType> Params) { 3012 DeclContext *GlobalCtx = Context.getTranslationUnitDecl(); 3013 3014 // Check if this function is already declared. 3015 DeclContext::lookup_result R = GlobalCtx->lookup(Name); 3016 for (DeclContext::lookup_iterator Alloc = R.begin(), AllocEnd = R.end(); 3017 Alloc != AllocEnd; ++Alloc) { 3018 // Only look at non-template functions, as it is the predefined, 3019 // non-templated allocation function we are trying to declare here. 3020 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) { 3021 if (Func->getNumParams() == Params.size()) { 3022 llvm::SmallVector<QualType, 3> FuncParams; 3023 for (auto *P : Func->parameters()) 3024 FuncParams.push_back( 3025 Context.getCanonicalType(P->getType().getUnqualifiedType())); 3026 if (llvm::makeArrayRef(FuncParams) == Params) { 3027 // Make the function visible to name lookup, even if we found it in 3028 // an unimported module. It either is an implicitly-declared global 3029 // allocation function, or is suppressing that function. 3030 Func->setVisibleDespiteOwningModule(); 3031 return; 3032 } 3033 } 3034 } 3035 } 3036 3037 FunctionProtoType::ExtProtoInfo EPI(Context.getDefaultCallingConvention( 3038 /*IsVariadic=*/false, /*IsCXXMethod=*/false, /*IsBuiltin=*/true)); 3039 3040 QualType BadAllocType; 3041 bool HasBadAllocExceptionSpec 3042 = (Name.getCXXOverloadedOperator() == OO_New || 3043 Name.getCXXOverloadedOperator() == OO_Array_New); 3044 if (HasBadAllocExceptionSpec) { 3045 if (!getLangOpts().CPlusPlus11) { 3046 BadAllocType = Context.getTypeDeclType(getStdBadAlloc()); 3047 assert(StdBadAlloc && "Must have std::bad_alloc declared"); 3048 EPI.ExceptionSpec.Type = EST_Dynamic; 3049 EPI.ExceptionSpec.Exceptions = llvm::makeArrayRef(BadAllocType); 3050 } 3051 if (getLangOpts().NewInfallible) { 3052 EPI.ExceptionSpec.Type = EST_DynamicNone; 3053 } 3054 } else { 3055 EPI.ExceptionSpec = 3056 getLangOpts().CPlusPlus11 ? EST_BasicNoexcept : EST_DynamicNone; 3057 } 3058 3059 auto CreateAllocationFunctionDecl = [&](Attr *ExtraAttr) { 3060 QualType FnType = Context.getFunctionType(Return, Params, EPI); 3061 FunctionDecl *Alloc = FunctionDecl::Create( 3062 Context, GlobalCtx, SourceLocation(), SourceLocation(), Name, FnType, 3063 /*TInfo=*/nullptr, SC_None, getCurFPFeatures().isFPConstrained(), false, 3064 true); 3065 Alloc->setImplicit(); 3066 // Global allocation functions should always be visible. 3067 Alloc->setVisibleDespiteOwningModule(); 3068 3069 if (HasBadAllocExceptionSpec && getLangOpts().NewInfallible) 3070 Alloc->addAttr( 3071 ReturnsNonNullAttr::CreateImplicit(Context, Alloc->getLocation())); 3072 3073 Alloc->addAttr(VisibilityAttr::CreateImplicit( 3074 Context, LangOpts.GlobalAllocationFunctionVisibilityHidden 3075 ? VisibilityAttr::Hidden 3076 : VisibilityAttr::Default)); 3077 3078 llvm::SmallVector<ParmVarDecl *, 3> ParamDecls; 3079 for (QualType T : Params) { 3080 ParamDecls.push_back(ParmVarDecl::Create( 3081 Context, Alloc, SourceLocation(), SourceLocation(), nullptr, T, 3082 /*TInfo=*/nullptr, SC_None, nullptr)); 3083 ParamDecls.back()->setImplicit(); 3084 } 3085 Alloc->setParams(ParamDecls); 3086 if (ExtraAttr) 3087 Alloc->addAttr(ExtraAttr); 3088 AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction(Alloc); 3089 Context.getTranslationUnitDecl()->addDecl(Alloc); 3090 IdResolver.tryAddTopLevelDecl(Alloc, Name); 3091 }; 3092 3093 if (!LangOpts.CUDA) 3094 CreateAllocationFunctionDecl(nullptr); 3095 else { 3096 // Host and device get their own declaration so each can be 3097 // defined or re-declared independently. 3098 CreateAllocationFunctionDecl(CUDAHostAttr::CreateImplicit(Context)); 3099 CreateAllocationFunctionDecl(CUDADeviceAttr::CreateImplicit(Context)); 3100 } 3101 } 3102 3103 FunctionDecl *Sema::FindUsualDeallocationFunction(SourceLocation StartLoc, 3104 bool CanProvideSize, 3105 bool Overaligned, 3106 DeclarationName Name) { 3107 DeclareGlobalNewDelete(); 3108 3109 LookupResult FoundDelete(*this, Name, StartLoc, LookupOrdinaryName); 3110 LookupQualifiedName(FoundDelete, Context.getTranslationUnitDecl()); 3111 3112 // FIXME: It's possible for this to result in ambiguity, through a 3113 // user-declared variadic operator delete or the enable_if attribute. We 3114 // should probably not consider those cases to be usual deallocation 3115 // functions. But for now we just make an arbitrary choice in that case. 3116 auto Result = resolveDeallocationOverload(*this, FoundDelete, CanProvideSize, 3117 Overaligned); 3118 assert(Result.FD && "operator delete missing from global scope?"); 3119 return Result.FD; 3120 } 3121 3122 FunctionDecl *Sema::FindDeallocationFunctionForDestructor(SourceLocation Loc, 3123 CXXRecordDecl *RD) { 3124 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(OO_Delete); 3125 3126 FunctionDecl *OperatorDelete = nullptr; 3127 if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete)) 3128 return nullptr; 3129 if (OperatorDelete) 3130 return OperatorDelete; 3131 3132 // If there's no class-specific operator delete, look up the global 3133 // non-array delete. 3134 return FindUsualDeallocationFunction( 3135 Loc, true, hasNewExtendedAlignment(*this, Context.getRecordType(RD)), 3136 Name); 3137 } 3138 3139 bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD, 3140 DeclarationName Name, 3141 FunctionDecl *&Operator, bool Diagnose) { 3142 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName); 3143 // Try to find operator delete/operator delete[] in class scope. 3144 LookupQualifiedName(Found, RD); 3145 3146 if (Found.isAmbiguous()) 3147 return true; 3148 3149 Found.suppressDiagnostics(); 3150 3151 bool Overaligned = hasNewExtendedAlignment(*this, Context.getRecordType(RD)); 3152 3153 // C++17 [expr.delete]p10: 3154 // If the deallocation functions have class scope, the one without a 3155 // parameter of type std::size_t is selected. 3156 llvm::SmallVector<UsualDeallocFnInfo, 4> Matches; 3157 resolveDeallocationOverload(*this, Found, /*WantSize*/ false, 3158 /*WantAlign*/ Overaligned, &Matches); 3159 3160 // If we could find an overload, use it. 3161 if (Matches.size() == 1) { 3162 Operator = cast<CXXMethodDecl>(Matches[0].FD); 3163 3164 // FIXME: DiagnoseUseOfDecl? 3165 if (Operator->isDeleted()) { 3166 if (Diagnose) { 3167 Diag(StartLoc, diag::err_deleted_function_use); 3168 NoteDeletedFunction(Operator); 3169 } 3170 return true; 3171 } 3172 3173 if (CheckAllocationAccess(StartLoc, SourceRange(), Found.getNamingClass(), 3174 Matches[0].Found, Diagnose) == AR_inaccessible) 3175 return true; 3176 3177 return false; 3178 } 3179 3180 // We found multiple suitable operators; complain about the ambiguity. 3181 // FIXME: The standard doesn't say to do this; it appears that the intent 3182 // is that this should never happen. 3183 if (!Matches.empty()) { 3184 if (Diagnose) { 3185 Diag(StartLoc, diag::err_ambiguous_suitable_delete_member_function_found) 3186 << Name << RD; 3187 for (auto &Match : Matches) 3188 Diag(Match.FD->getLocation(), diag::note_member_declared_here) << Name; 3189 } 3190 return true; 3191 } 3192 3193 // We did find operator delete/operator delete[] declarations, but 3194 // none of them were suitable. 3195 if (!Found.empty()) { 3196 if (Diagnose) { 3197 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found) 3198 << Name << RD; 3199 3200 for (NamedDecl *D : Found) 3201 Diag(D->getUnderlyingDecl()->getLocation(), 3202 diag::note_member_declared_here) << Name; 3203 } 3204 return true; 3205 } 3206 3207 Operator = nullptr; 3208 return false; 3209 } 3210 3211 namespace { 3212 /// Checks whether delete-expression, and new-expression used for 3213 /// initializing deletee have the same array form. 3214 class MismatchingNewDeleteDetector { 3215 public: 3216 enum MismatchResult { 3217 /// Indicates that there is no mismatch or a mismatch cannot be proven. 3218 NoMismatch, 3219 /// Indicates that variable is initialized with mismatching form of \a new. 3220 VarInitMismatches, 3221 /// Indicates that member is initialized with mismatching form of \a new. 3222 MemberInitMismatches, 3223 /// Indicates that 1 or more constructors' definitions could not been 3224 /// analyzed, and they will be checked again at the end of translation unit. 3225 AnalyzeLater 3226 }; 3227 3228 /// \param EndOfTU True, if this is the final analysis at the end of 3229 /// translation unit. False, if this is the initial analysis at the point 3230 /// delete-expression was encountered. 3231 explicit MismatchingNewDeleteDetector(bool EndOfTU) 3232 : Field(nullptr), IsArrayForm(false), EndOfTU(EndOfTU), 3233 HasUndefinedConstructors(false) {} 3234 3235 /// Checks whether pointee of a delete-expression is initialized with 3236 /// matching form of new-expression. 3237 /// 3238 /// If return value is \c VarInitMismatches or \c MemberInitMismatches at the 3239 /// point where delete-expression is encountered, then a warning will be 3240 /// issued immediately. If return value is \c AnalyzeLater at the point where 3241 /// delete-expression is seen, then member will be analyzed at the end of 3242 /// translation unit. \c AnalyzeLater is returned iff at least one constructor 3243 /// couldn't be analyzed. If at least one constructor initializes the member 3244 /// with matching type of new, the return value is \c NoMismatch. 3245 MismatchResult analyzeDeleteExpr(const CXXDeleteExpr *DE); 3246 /// Analyzes a class member. 3247 /// \param Field Class member to analyze. 3248 /// \param DeleteWasArrayForm Array form-ness of the delete-expression used 3249 /// for deleting the \p Field. 3250 MismatchResult analyzeField(FieldDecl *Field, bool DeleteWasArrayForm); 3251 FieldDecl *Field; 3252 /// List of mismatching new-expressions used for initialization of the pointee 3253 llvm::SmallVector<const CXXNewExpr *, 4> NewExprs; 3254 /// Indicates whether delete-expression was in array form. 3255 bool IsArrayForm; 3256 3257 private: 3258 const bool EndOfTU; 3259 /// Indicates that there is at least one constructor without body. 3260 bool HasUndefinedConstructors; 3261 /// Returns \c CXXNewExpr from given initialization expression. 3262 /// \param E Expression used for initializing pointee in delete-expression. 3263 /// E can be a single-element \c InitListExpr consisting of new-expression. 3264 const CXXNewExpr *getNewExprFromInitListOrExpr(const Expr *E); 3265 /// Returns whether member is initialized with mismatching form of 3266 /// \c new either by the member initializer or in-class initialization. 3267 /// 3268 /// If bodies of all constructors are not visible at the end of translation 3269 /// unit or at least one constructor initializes member with the matching 3270 /// form of \c new, mismatch cannot be proven, and this function will return 3271 /// \c NoMismatch. 3272 MismatchResult analyzeMemberExpr(const MemberExpr *ME); 3273 /// Returns whether variable is initialized with mismatching form of 3274 /// \c new. 3275 /// 3276 /// If variable is initialized with matching form of \c new or variable is not 3277 /// initialized with a \c new expression, this function will return true. 3278 /// If variable is initialized with mismatching form of \c new, returns false. 3279 /// \param D Variable to analyze. 3280 bool hasMatchingVarInit(const DeclRefExpr *D); 3281 /// Checks whether the constructor initializes pointee with mismatching 3282 /// form of \c new. 3283 /// 3284 /// Returns true, if member is initialized with matching form of \c new in 3285 /// member initializer list. Returns false, if member is initialized with the 3286 /// matching form of \c new in this constructor's initializer or given 3287 /// constructor isn't defined at the point where delete-expression is seen, or 3288 /// member isn't initialized by the constructor. 3289 bool hasMatchingNewInCtor(const CXXConstructorDecl *CD); 3290 /// Checks whether member is initialized with matching form of 3291 /// \c new in member initializer list. 3292 bool hasMatchingNewInCtorInit(const CXXCtorInitializer *CI); 3293 /// Checks whether member is initialized with mismatching form of \c new by 3294 /// in-class initializer. 3295 MismatchResult analyzeInClassInitializer(); 3296 }; 3297 } 3298 3299 MismatchingNewDeleteDetector::MismatchResult 3300 MismatchingNewDeleteDetector::analyzeDeleteExpr(const CXXDeleteExpr *DE) { 3301 NewExprs.clear(); 3302 assert(DE && "Expected delete-expression"); 3303 IsArrayForm = DE->isArrayForm(); 3304 const Expr *E = DE->getArgument()->IgnoreParenImpCasts(); 3305 if (const MemberExpr *ME = dyn_cast<const MemberExpr>(E)) { 3306 return analyzeMemberExpr(ME); 3307 } else if (const DeclRefExpr *D = dyn_cast<const DeclRefExpr>(E)) { 3308 if (!hasMatchingVarInit(D)) 3309 return VarInitMismatches; 3310 } 3311 return NoMismatch; 3312 } 3313 3314 const CXXNewExpr * 3315 MismatchingNewDeleteDetector::getNewExprFromInitListOrExpr(const Expr *E) { 3316 assert(E != nullptr && "Expected a valid initializer expression"); 3317 E = E->IgnoreParenImpCasts(); 3318 if (const InitListExpr *ILE = dyn_cast<const InitListExpr>(E)) { 3319 if (ILE->getNumInits() == 1) 3320 E = dyn_cast<const CXXNewExpr>(ILE->getInit(0)->IgnoreParenImpCasts()); 3321 } 3322 3323 return dyn_cast_or_null<const CXXNewExpr>(E); 3324 } 3325 3326 bool MismatchingNewDeleteDetector::hasMatchingNewInCtorInit( 3327 const CXXCtorInitializer *CI) { 3328 const CXXNewExpr *NE = nullptr; 3329 if (Field == CI->getMember() && 3330 (NE = getNewExprFromInitListOrExpr(CI->getInit()))) { 3331 if (NE->isArray() == IsArrayForm) 3332 return true; 3333 else 3334 NewExprs.push_back(NE); 3335 } 3336 return false; 3337 } 3338 3339 bool MismatchingNewDeleteDetector::hasMatchingNewInCtor( 3340 const CXXConstructorDecl *CD) { 3341 if (CD->isImplicit()) 3342 return false; 3343 const FunctionDecl *Definition = CD; 3344 if (!CD->isThisDeclarationADefinition() && !CD->isDefined(Definition)) { 3345 HasUndefinedConstructors = true; 3346 return EndOfTU; 3347 } 3348 for (const auto *CI : cast<const CXXConstructorDecl>(Definition)->inits()) { 3349 if (hasMatchingNewInCtorInit(CI)) 3350 return true; 3351 } 3352 return false; 3353 } 3354 3355 MismatchingNewDeleteDetector::MismatchResult 3356 MismatchingNewDeleteDetector::analyzeInClassInitializer() { 3357 assert(Field != nullptr && "This should be called only for members"); 3358 const Expr *InitExpr = Field->getInClassInitializer(); 3359 if (!InitExpr) 3360 return EndOfTU ? NoMismatch : AnalyzeLater; 3361 if (const CXXNewExpr *NE = getNewExprFromInitListOrExpr(InitExpr)) { 3362 if (NE->isArray() != IsArrayForm) { 3363 NewExprs.push_back(NE); 3364 return MemberInitMismatches; 3365 } 3366 } 3367 return NoMismatch; 3368 } 3369 3370 MismatchingNewDeleteDetector::MismatchResult 3371 MismatchingNewDeleteDetector::analyzeField(FieldDecl *Field, 3372 bool DeleteWasArrayForm) { 3373 assert(Field != nullptr && "Analysis requires a valid class member."); 3374 this->Field = Field; 3375 IsArrayForm = DeleteWasArrayForm; 3376 const CXXRecordDecl *RD = cast<const CXXRecordDecl>(Field->getParent()); 3377 for (const auto *CD : RD->ctors()) { 3378 if (hasMatchingNewInCtor(CD)) 3379 return NoMismatch; 3380 } 3381 if (HasUndefinedConstructors) 3382 return EndOfTU ? NoMismatch : AnalyzeLater; 3383 if (!NewExprs.empty()) 3384 return MemberInitMismatches; 3385 return Field->hasInClassInitializer() ? analyzeInClassInitializer() 3386 : NoMismatch; 3387 } 3388 3389 MismatchingNewDeleteDetector::MismatchResult 3390 MismatchingNewDeleteDetector::analyzeMemberExpr(const MemberExpr *ME) { 3391 assert(ME != nullptr && "Expected a member expression"); 3392 if (FieldDecl *F = dyn_cast<FieldDecl>(ME->getMemberDecl())) 3393 return analyzeField(F, IsArrayForm); 3394 return NoMismatch; 3395 } 3396 3397 bool MismatchingNewDeleteDetector::hasMatchingVarInit(const DeclRefExpr *D) { 3398 const CXXNewExpr *NE = nullptr; 3399 if (const VarDecl *VD = dyn_cast<const VarDecl>(D->getDecl())) { 3400 if (VD->hasInit() && (NE = getNewExprFromInitListOrExpr(VD->getInit())) && 3401 NE->isArray() != IsArrayForm) { 3402 NewExprs.push_back(NE); 3403 } 3404 } 3405 return NewExprs.empty(); 3406 } 3407 3408 static void 3409 DiagnoseMismatchedNewDelete(Sema &SemaRef, SourceLocation DeleteLoc, 3410 const MismatchingNewDeleteDetector &Detector) { 3411 SourceLocation EndOfDelete = SemaRef.getLocForEndOfToken(DeleteLoc); 3412 FixItHint H; 3413 if (!Detector.IsArrayForm) 3414 H = FixItHint::CreateInsertion(EndOfDelete, "[]"); 3415 else { 3416 SourceLocation RSquare = Lexer::findLocationAfterToken( 3417 DeleteLoc, tok::l_square, SemaRef.getSourceManager(), 3418 SemaRef.getLangOpts(), true); 3419 if (RSquare.isValid()) 3420 H = FixItHint::CreateRemoval(SourceRange(EndOfDelete, RSquare)); 3421 } 3422 SemaRef.Diag(DeleteLoc, diag::warn_mismatched_delete_new) 3423 << Detector.IsArrayForm << H; 3424 3425 for (const auto *NE : Detector.NewExprs) 3426 SemaRef.Diag(NE->getExprLoc(), diag::note_allocated_here) 3427 << Detector.IsArrayForm; 3428 } 3429 3430 void Sema::AnalyzeDeleteExprMismatch(const CXXDeleteExpr *DE) { 3431 if (Diags.isIgnored(diag::warn_mismatched_delete_new, SourceLocation())) 3432 return; 3433 MismatchingNewDeleteDetector Detector(/*EndOfTU=*/false); 3434 switch (Detector.analyzeDeleteExpr(DE)) { 3435 case MismatchingNewDeleteDetector::VarInitMismatches: 3436 case MismatchingNewDeleteDetector::MemberInitMismatches: { 3437 DiagnoseMismatchedNewDelete(*this, DE->getBeginLoc(), Detector); 3438 break; 3439 } 3440 case MismatchingNewDeleteDetector::AnalyzeLater: { 3441 DeleteExprs[Detector.Field].push_back( 3442 std::make_pair(DE->getBeginLoc(), DE->isArrayForm())); 3443 break; 3444 } 3445 case MismatchingNewDeleteDetector::NoMismatch: 3446 break; 3447 } 3448 } 3449 3450 void Sema::AnalyzeDeleteExprMismatch(FieldDecl *Field, SourceLocation DeleteLoc, 3451 bool DeleteWasArrayForm) { 3452 MismatchingNewDeleteDetector Detector(/*EndOfTU=*/true); 3453 switch (Detector.analyzeField(Field, DeleteWasArrayForm)) { 3454 case MismatchingNewDeleteDetector::VarInitMismatches: 3455 llvm_unreachable("This analysis should have been done for class members."); 3456 case MismatchingNewDeleteDetector::AnalyzeLater: 3457 llvm_unreachable("Analysis cannot be postponed any point beyond end of " 3458 "translation unit."); 3459 case MismatchingNewDeleteDetector::MemberInitMismatches: 3460 DiagnoseMismatchedNewDelete(*this, DeleteLoc, Detector); 3461 break; 3462 case MismatchingNewDeleteDetector::NoMismatch: 3463 break; 3464 } 3465 } 3466 3467 /// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in: 3468 /// @code ::delete ptr; @endcode 3469 /// or 3470 /// @code delete [] ptr; @endcode 3471 ExprResult 3472 Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal, 3473 bool ArrayForm, Expr *ExE) { 3474 // C++ [expr.delete]p1: 3475 // The operand shall have a pointer type, or a class type having a single 3476 // non-explicit conversion function to a pointer type. The result has type 3477 // void. 3478 // 3479 // DR599 amends "pointer type" to "pointer to object type" in both cases. 3480 3481 ExprResult Ex = ExE; 3482 FunctionDecl *OperatorDelete = nullptr; 3483 bool ArrayFormAsWritten = ArrayForm; 3484 bool UsualArrayDeleteWantsSize = false; 3485 3486 if (!Ex.get()->isTypeDependent()) { 3487 // Perform lvalue-to-rvalue cast, if needed. 3488 Ex = DefaultLvalueConversion(Ex.get()); 3489 if (Ex.isInvalid()) 3490 return ExprError(); 3491 3492 QualType Type = Ex.get()->getType(); 3493 3494 class DeleteConverter : public ContextualImplicitConverter { 3495 public: 3496 DeleteConverter() : ContextualImplicitConverter(false, true) {} 3497 3498 bool match(QualType ConvType) override { 3499 // FIXME: If we have an operator T* and an operator void*, we must pick 3500 // the operator T*. 3501 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>()) 3502 if (ConvPtrType->getPointeeType()->isIncompleteOrObjectType()) 3503 return true; 3504 return false; 3505 } 3506 3507 SemaDiagnosticBuilder diagnoseNoMatch(Sema &S, SourceLocation Loc, 3508 QualType T) override { 3509 return S.Diag(Loc, diag::err_delete_operand) << T; 3510 } 3511 3512 SemaDiagnosticBuilder diagnoseIncomplete(Sema &S, SourceLocation Loc, 3513 QualType T) override { 3514 return S.Diag(Loc, diag::err_delete_incomplete_class_type) << T; 3515 } 3516 3517 SemaDiagnosticBuilder diagnoseExplicitConv(Sema &S, SourceLocation Loc, 3518 QualType T, 3519 QualType ConvTy) override { 3520 return S.Diag(Loc, diag::err_delete_explicit_conversion) << T << ConvTy; 3521 } 3522 3523 SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv, 3524 QualType ConvTy) override { 3525 return S.Diag(Conv->getLocation(), diag::note_delete_conversion) 3526 << ConvTy; 3527 } 3528 3529 SemaDiagnosticBuilder diagnoseAmbiguous(Sema &S, SourceLocation Loc, 3530 QualType T) override { 3531 return S.Diag(Loc, diag::err_ambiguous_delete_operand) << T; 3532 } 3533 3534 SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv, 3535 QualType ConvTy) override { 3536 return S.Diag(Conv->getLocation(), diag::note_delete_conversion) 3537 << ConvTy; 3538 } 3539 3540 SemaDiagnosticBuilder diagnoseConversion(Sema &S, SourceLocation Loc, 3541 QualType T, 3542 QualType ConvTy) override { 3543 llvm_unreachable("conversion functions are permitted"); 3544 } 3545 } Converter; 3546 3547 Ex = PerformContextualImplicitConversion(StartLoc, Ex.get(), Converter); 3548 if (Ex.isInvalid()) 3549 return ExprError(); 3550 Type = Ex.get()->getType(); 3551 if (!Converter.match(Type)) 3552 // FIXME: PerformContextualImplicitConversion should return ExprError 3553 // itself in this case. 3554 return ExprError(); 3555 3556 QualType Pointee = Type->castAs<PointerType>()->getPointeeType(); 3557 QualType PointeeElem = Context.getBaseElementType(Pointee); 3558 3559 if (Pointee.getAddressSpace() != LangAS::Default && 3560 !getLangOpts().OpenCLCPlusPlus) 3561 return Diag(Ex.get()->getBeginLoc(), 3562 diag::err_address_space_qualified_delete) 3563 << Pointee.getUnqualifiedType() 3564 << Pointee.getQualifiers().getAddressSpaceAttributePrintValue(); 3565 3566 CXXRecordDecl *PointeeRD = nullptr; 3567 if (Pointee->isVoidType() && !isSFINAEContext()) { 3568 // The C++ standard bans deleting a pointer to a non-object type, which 3569 // effectively bans deletion of "void*". However, most compilers support 3570 // this, so we treat it as a warning unless we're in a SFINAE context. 3571 Diag(StartLoc, diag::ext_delete_void_ptr_operand) 3572 << Type << Ex.get()->getSourceRange(); 3573 } else if (Pointee->isFunctionType() || Pointee->isVoidType() || 3574 Pointee->isSizelessType()) { 3575 return ExprError(Diag(StartLoc, diag::err_delete_operand) 3576 << Type << Ex.get()->getSourceRange()); 3577 } else if (!Pointee->isDependentType()) { 3578 // FIXME: This can result in errors if the definition was imported from a 3579 // module but is hidden. 3580 if (!RequireCompleteType(StartLoc, Pointee, 3581 diag::warn_delete_incomplete, Ex.get())) { 3582 if (const RecordType *RT = PointeeElem->getAs<RecordType>()) 3583 PointeeRD = cast<CXXRecordDecl>(RT->getDecl()); 3584 } 3585 } 3586 3587 if (Pointee->isArrayType() && !ArrayForm) { 3588 Diag(StartLoc, diag::warn_delete_array_type) 3589 << Type << Ex.get()->getSourceRange() 3590 << FixItHint::CreateInsertion(getLocForEndOfToken(StartLoc), "[]"); 3591 ArrayForm = true; 3592 } 3593 3594 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName( 3595 ArrayForm ? OO_Array_Delete : OO_Delete); 3596 3597 if (PointeeRD) { 3598 if (!UseGlobal && 3599 FindDeallocationFunction(StartLoc, PointeeRD, DeleteName, 3600 OperatorDelete)) 3601 return ExprError(); 3602 3603 // If we're allocating an array of records, check whether the 3604 // usual operator delete[] has a size_t parameter. 3605 if (ArrayForm) { 3606 // If the user specifically asked to use the global allocator, 3607 // we'll need to do the lookup into the class. 3608 if (UseGlobal) 3609 UsualArrayDeleteWantsSize = 3610 doesUsualArrayDeleteWantSize(*this, StartLoc, PointeeElem); 3611 3612 // Otherwise, the usual operator delete[] should be the 3613 // function we just found. 3614 else if (OperatorDelete && isa<CXXMethodDecl>(OperatorDelete)) 3615 UsualArrayDeleteWantsSize = 3616 UsualDeallocFnInfo(*this, 3617 DeclAccessPair::make(OperatorDelete, AS_public)) 3618 .HasSizeT; 3619 } 3620 3621 if (!PointeeRD->hasIrrelevantDestructor()) 3622 if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) { 3623 MarkFunctionReferenced(StartLoc, 3624 const_cast<CXXDestructorDecl*>(Dtor)); 3625 if (DiagnoseUseOfDecl(Dtor, StartLoc)) 3626 return ExprError(); 3627 } 3628 3629 CheckVirtualDtorCall(PointeeRD->getDestructor(), StartLoc, 3630 /*IsDelete=*/true, /*CallCanBeVirtual=*/true, 3631 /*WarnOnNonAbstractTypes=*/!ArrayForm, 3632 SourceLocation()); 3633 } 3634 3635 if (!OperatorDelete) { 3636 if (getLangOpts().OpenCLCPlusPlus) { 3637 Diag(StartLoc, diag::err_openclcxx_not_supported) << "default delete"; 3638 return ExprError(); 3639 } 3640 3641 bool IsComplete = isCompleteType(StartLoc, Pointee); 3642 bool CanProvideSize = 3643 IsComplete && (!ArrayForm || UsualArrayDeleteWantsSize || 3644 Pointee.isDestructedType()); 3645 bool Overaligned = hasNewExtendedAlignment(*this, Pointee); 3646 3647 // Look for a global declaration. 3648 OperatorDelete = FindUsualDeallocationFunction(StartLoc, CanProvideSize, 3649 Overaligned, DeleteName); 3650 } 3651 3652 MarkFunctionReferenced(StartLoc, OperatorDelete); 3653 3654 // Check access and ambiguity of destructor if we're going to call it. 3655 // Note that this is required even for a virtual delete. 3656 bool IsVirtualDelete = false; 3657 if (PointeeRD) { 3658 if (CXXDestructorDecl *Dtor = LookupDestructor(PointeeRD)) { 3659 CheckDestructorAccess(Ex.get()->getExprLoc(), Dtor, 3660 PDiag(diag::err_access_dtor) << PointeeElem); 3661 IsVirtualDelete = Dtor->isVirtual(); 3662 } 3663 } 3664 3665 DiagnoseUseOfDecl(OperatorDelete, StartLoc); 3666 3667 // Convert the operand to the type of the first parameter of operator 3668 // delete. This is only necessary if we selected a destroying operator 3669 // delete that we are going to call (non-virtually); converting to void* 3670 // is trivial and left to AST consumers to handle. 3671 QualType ParamType = OperatorDelete->getParamDecl(0)->getType(); 3672 if (!IsVirtualDelete && !ParamType->getPointeeType()->isVoidType()) { 3673 Qualifiers Qs = Pointee.getQualifiers(); 3674 if (Qs.hasCVRQualifiers()) { 3675 // Qualifiers are irrelevant to this conversion; we're only looking 3676 // for access and ambiguity. 3677 Qs.removeCVRQualifiers(); 3678 QualType Unqual = Context.getPointerType( 3679 Context.getQualifiedType(Pointee.getUnqualifiedType(), Qs)); 3680 Ex = ImpCastExprToType(Ex.get(), Unqual, CK_NoOp); 3681 } 3682 Ex = PerformImplicitConversion(Ex.get(), ParamType, AA_Passing); 3683 if (Ex.isInvalid()) 3684 return ExprError(); 3685 } 3686 } 3687 3688 CXXDeleteExpr *Result = new (Context) CXXDeleteExpr( 3689 Context.VoidTy, UseGlobal, ArrayForm, ArrayFormAsWritten, 3690 UsualArrayDeleteWantsSize, OperatorDelete, Ex.get(), StartLoc); 3691 AnalyzeDeleteExprMismatch(Result); 3692 return Result; 3693 } 3694 3695 static bool resolveBuiltinNewDeleteOverload(Sema &S, CallExpr *TheCall, 3696 bool IsDelete, 3697 FunctionDecl *&Operator) { 3698 3699 DeclarationName NewName = S.Context.DeclarationNames.getCXXOperatorName( 3700 IsDelete ? OO_Delete : OO_New); 3701 3702 LookupResult R(S, NewName, TheCall->getBeginLoc(), Sema::LookupOrdinaryName); 3703 S.LookupQualifiedName(R, S.Context.getTranslationUnitDecl()); 3704 assert(!R.empty() && "implicitly declared allocation functions not found"); 3705 assert(!R.isAmbiguous() && "global allocation functions are ambiguous"); 3706 3707 // We do our own custom access checks below. 3708 R.suppressDiagnostics(); 3709 3710 SmallVector<Expr *, 8> Args(TheCall->arg_begin(), TheCall->arg_end()); 3711 OverloadCandidateSet Candidates(R.getNameLoc(), 3712 OverloadCandidateSet::CSK_Normal); 3713 for (LookupResult::iterator FnOvl = R.begin(), FnOvlEnd = R.end(); 3714 FnOvl != FnOvlEnd; ++FnOvl) { 3715 // Even member operator new/delete are implicitly treated as 3716 // static, so don't use AddMemberCandidate. 3717 NamedDecl *D = (*FnOvl)->getUnderlyingDecl(); 3718 3719 if (FunctionTemplateDecl *FnTemplate = dyn_cast<FunctionTemplateDecl>(D)) { 3720 S.AddTemplateOverloadCandidate(FnTemplate, FnOvl.getPair(), 3721 /*ExplicitTemplateArgs=*/nullptr, Args, 3722 Candidates, 3723 /*SuppressUserConversions=*/false); 3724 continue; 3725 } 3726 3727 FunctionDecl *Fn = cast<FunctionDecl>(D); 3728 S.AddOverloadCandidate(Fn, FnOvl.getPair(), Args, Candidates, 3729 /*SuppressUserConversions=*/false); 3730 } 3731 3732 SourceRange Range = TheCall->getSourceRange(); 3733 3734 // Do the resolution. 3735 OverloadCandidateSet::iterator Best; 3736 switch (Candidates.BestViableFunction(S, R.getNameLoc(), Best)) { 3737 case OR_Success: { 3738 // Got one! 3739 FunctionDecl *FnDecl = Best->Function; 3740 assert(R.getNamingClass() == nullptr && 3741 "class members should not be considered"); 3742 3743 if (!FnDecl->isReplaceableGlobalAllocationFunction()) { 3744 S.Diag(R.getNameLoc(), diag::err_builtin_operator_new_delete_not_usual) 3745 << (IsDelete ? 1 : 0) << Range; 3746 S.Diag(FnDecl->getLocation(), diag::note_non_usual_function_declared_here) 3747 << R.getLookupName() << FnDecl->getSourceRange(); 3748 return true; 3749 } 3750 3751 Operator = FnDecl; 3752 return false; 3753 } 3754 3755 case OR_No_Viable_Function: 3756 Candidates.NoteCandidates( 3757 PartialDiagnosticAt(R.getNameLoc(), 3758 S.PDiag(diag::err_ovl_no_viable_function_in_call) 3759 << R.getLookupName() << Range), 3760 S, OCD_AllCandidates, Args); 3761 return true; 3762 3763 case OR_Ambiguous: 3764 Candidates.NoteCandidates( 3765 PartialDiagnosticAt(R.getNameLoc(), 3766 S.PDiag(diag::err_ovl_ambiguous_call) 3767 << R.getLookupName() << Range), 3768 S, OCD_AmbiguousCandidates, Args); 3769 return true; 3770 3771 case OR_Deleted: { 3772 Candidates.NoteCandidates( 3773 PartialDiagnosticAt(R.getNameLoc(), S.PDiag(diag::err_ovl_deleted_call) 3774 << R.getLookupName() << Range), 3775 S, OCD_AllCandidates, Args); 3776 return true; 3777 } 3778 } 3779 llvm_unreachable("Unreachable, bad result from BestViableFunction"); 3780 } 3781 3782 ExprResult 3783 Sema::SemaBuiltinOperatorNewDeleteOverloaded(ExprResult TheCallResult, 3784 bool IsDelete) { 3785 CallExpr *TheCall = cast<CallExpr>(TheCallResult.get()); 3786 if (!getLangOpts().CPlusPlus) { 3787 Diag(TheCall->getExprLoc(), diag::err_builtin_requires_language) 3788 << (IsDelete ? "__builtin_operator_delete" : "__builtin_operator_new") 3789 << "C++"; 3790 return ExprError(); 3791 } 3792 // CodeGen assumes it can find the global new and delete to call, 3793 // so ensure that they are declared. 3794 DeclareGlobalNewDelete(); 3795 3796 FunctionDecl *OperatorNewOrDelete = nullptr; 3797 if (resolveBuiltinNewDeleteOverload(*this, TheCall, IsDelete, 3798 OperatorNewOrDelete)) 3799 return ExprError(); 3800 assert(OperatorNewOrDelete && "should be found"); 3801 3802 DiagnoseUseOfDecl(OperatorNewOrDelete, TheCall->getExprLoc()); 3803 MarkFunctionReferenced(TheCall->getExprLoc(), OperatorNewOrDelete); 3804 3805 TheCall->setType(OperatorNewOrDelete->getReturnType()); 3806 for (unsigned i = 0; i != TheCall->getNumArgs(); ++i) { 3807 QualType ParamTy = OperatorNewOrDelete->getParamDecl(i)->getType(); 3808 InitializedEntity Entity = 3809 InitializedEntity::InitializeParameter(Context, ParamTy, false); 3810 ExprResult Arg = PerformCopyInitialization( 3811 Entity, TheCall->getArg(i)->getBeginLoc(), TheCall->getArg(i)); 3812 if (Arg.isInvalid()) 3813 return ExprError(); 3814 TheCall->setArg(i, Arg.get()); 3815 } 3816 auto Callee = dyn_cast<ImplicitCastExpr>(TheCall->getCallee()); 3817 assert(Callee && Callee->getCastKind() == CK_BuiltinFnToFnPtr && 3818 "Callee expected to be implicit cast to a builtin function pointer"); 3819 Callee->setType(OperatorNewOrDelete->getType()); 3820 3821 return TheCallResult; 3822 } 3823 3824 void Sema::CheckVirtualDtorCall(CXXDestructorDecl *dtor, SourceLocation Loc, 3825 bool IsDelete, bool CallCanBeVirtual, 3826 bool WarnOnNonAbstractTypes, 3827 SourceLocation DtorLoc) { 3828 if (!dtor || dtor->isVirtual() || !CallCanBeVirtual || isUnevaluatedContext()) 3829 return; 3830 3831 // C++ [expr.delete]p3: 3832 // In the first alternative (delete object), if the static type of the 3833 // object to be deleted is different from its dynamic type, the static 3834 // type shall be a base class of the dynamic type of the object to be 3835 // deleted and the static type shall have a virtual destructor or the 3836 // behavior is undefined. 3837 // 3838 const CXXRecordDecl *PointeeRD = dtor->getParent(); 3839 // Note: a final class cannot be derived from, no issue there 3840 if (!PointeeRD->isPolymorphic() || PointeeRD->hasAttr<FinalAttr>()) 3841 return; 3842 3843 // If the superclass is in a system header, there's nothing that can be done. 3844 // The `delete` (where we emit the warning) can be in a system header, 3845 // what matters for this warning is where the deleted type is defined. 3846 if (getSourceManager().isInSystemHeader(PointeeRD->getLocation())) 3847 return; 3848 3849 QualType ClassType = dtor->getThisType()->getPointeeType(); 3850 if (PointeeRD->isAbstract()) { 3851 // If the class is abstract, we warn by default, because we're 3852 // sure the code has undefined behavior. 3853 Diag(Loc, diag::warn_delete_abstract_non_virtual_dtor) << (IsDelete ? 0 : 1) 3854 << ClassType; 3855 } else if (WarnOnNonAbstractTypes) { 3856 // Otherwise, if this is not an array delete, it's a bit suspect, 3857 // but not necessarily wrong. 3858 Diag(Loc, diag::warn_delete_non_virtual_dtor) << (IsDelete ? 0 : 1) 3859 << ClassType; 3860 } 3861 if (!IsDelete) { 3862 std::string TypeStr; 3863 ClassType.getAsStringInternal(TypeStr, getPrintingPolicy()); 3864 Diag(DtorLoc, diag::note_delete_non_virtual) 3865 << FixItHint::CreateInsertion(DtorLoc, TypeStr + "::"); 3866 } 3867 } 3868 3869 Sema::ConditionResult Sema::ActOnConditionVariable(Decl *ConditionVar, 3870 SourceLocation StmtLoc, 3871 ConditionKind CK) { 3872 ExprResult E = 3873 CheckConditionVariable(cast<VarDecl>(ConditionVar), StmtLoc, CK); 3874 if (E.isInvalid()) 3875 return ConditionError(); 3876 return ConditionResult(*this, ConditionVar, MakeFullExpr(E.get(), StmtLoc), 3877 CK == ConditionKind::ConstexprIf); 3878 } 3879 3880 /// Check the use of the given variable as a C++ condition in an if, 3881 /// while, do-while, or switch statement. 3882 ExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar, 3883 SourceLocation StmtLoc, 3884 ConditionKind CK) { 3885 if (ConditionVar->isInvalidDecl()) 3886 return ExprError(); 3887 3888 QualType T = ConditionVar->getType(); 3889 3890 // C++ [stmt.select]p2: 3891 // The declarator shall not specify a function or an array. 3892 if (T->isFunctionType()) 3893 return ExprError(Diag(ConditionVar->getLocation(), 3894 diag::err_invalid_use_of_function_type) 3895 << ConditionVar->getSourceRange()); 3896 else if (T->isArrayType()) 3897 return ExprError(Diag(ConditionVar->getLocation(), 3898 diag::err_invalid_use_of_array_type) 3899 << ConditionVar->getSourceRange()); 3900 3901 ExprResult Condition = BuildDeclRefExpr( 3902 ConditionVar, ConditionVar->getType().getNonReferenceType(), VK_LValue, 3903 ConditionVar->getLocation()); 3904 3905 switch (CK) { 3906 case ConditionKind::Boolean: 3907 return CheckBooleanCondition(StmtLoc, Condition.get()); 3908 3909 case ConditionKind::ConstexprIf: 3910 return CheckBooleanCondition(StmtLoc, Condition.get(), true); 3911 3912 case ConditionKind::Switch: 3913 return CheckSwitchCondition(StmtLoc, Condition.get()); 3914 } 3915 3916 llvm_unreachable("unexpected condition kind"); 3917 } 3918 3919 /// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid. 3920 ExprResult Sema::CheckCXXBooleanCondition(Expr *CondExpr, bool IsConstexpr) { 3921 // C++11 6.4p4: 3922 // The value of a condition that is an initialized declaration in a statement 3923 // other than a switch statement is the value of the declared variable 3924 // implicitly converted to type bool. If that conversion is ill-formed, the 3925 // program is ill-formed. 3926 // The value of a condition that is an expression is the value of the 3927 // expression, implicitly converted to bool. 3928 // 3929 // C++2b 8.5.2p2 3930 // If the if statement is of the form if constexpr, the value of the condition 3931 // is contextually converted to bool and the converted expression shall be 3932 // a constant expression. 3933 // 3934 3935 ExprResult E = PerformContextuallyConvertToBool(CondExpr); 3936 if (!IsConstexpr || E.isInvalid() || E.get()->isValueDependent()) 3937 return E; 3938 3939 // FIXME: Return this value to the caller so they don't need to recompute it. 3940 llvm::APSInt Cond; 3941 E = VerifyIntegerConstantExpression( 3942 E.get(), &Cond, 3943 diag::err_constexpr_if_condition_expression_is_not_constant); 3944 return E; 3945 } 3946 3947 /// Helper function to determine whether this is the (deprecated) C++ 3948 /// conversion from a string literal to a pointer to non-const char or 3949 /// non-const wchar_t (for narrow and wide string literals, 3950 /// respectively). 3951 bool 3952 Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) { 3953 // Look inside the implicit cast, if it exists. 3954 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From)) 3955 From = Cast->getSubExpr(); 3956 3957 // A string literal (2.13.4) that is not a wide string literal can 3958 // be converted to an rvalue of type "pointer to char"; a wide 3959 // string literal can be converted to an rvalue of type "pointer 3960 // to wchar_t" (C++ 4.2p2). 3961 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From->IgnoreParens())) 3962 if (const PointerType *ToPtrType = ToType->getAs<PointerType>()) 3963 if (const BuiltinType *ToPointeeType 3964 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) { 3965 // This conversion is considered only when there is an 3966 // explicit appropriate pointer target type (C++ 4.2p2). 3967 if (!ToPtrType->getPointeeType().hasQualifiers()) { 3968 switch (StrLit->getKind()) { 3969 case StringLiteral::UTF8: 3970 case StringLiteral::UTF16: 3971 case StringLiteral::UTF32: 3972 // We don't allow UTF literals to be implicitly converted 3973 break; 3974 case StringLiteral::Ascii: 3975 return (ToPointeeType->getKind() == BuiltinType::Char_U || 3976 ToPointeeType->getKind() == BuiltinType::Char_S); 3977 case StringLiteral::Wide: 3978 return Context.typesAreCompatible(Context.getWideCharType(), 3979 QualType(ToPointeeType, 0)); 3980 } 3981 } 3982 } 3983 3984 return false; 3985 } 3986 3987 static ExprResult BuildCXXCastArgument(Sema &S, 3988 SourceLocation CastLoc, 3989 QualType Ty, 3990 CastKind Kind, 3991 CXXMethodDecl *Method, 3992 DeclAccessPair FoundDecl, 3993 bool HadMultipleCandidates, 3994 Expr *From) { 3995 switch (Kind) { 3996 default: llvm_unreachable("Unhandled cast kind!"); 3997 case CK_ConstructorConversion: { 3998 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Method); 3999 SmallVector<Expr*, 8> ConstructorArgs; 4000 4001 if (S.RequireNonAbstractType(CastLoc, Ty, 4002 diag::err_allocation_of_abstract_type)) 4003 return ExprError(); 4004 4005 if (S.CompleteConstructorCall(Constructor, Ty, From, CastLoc, 4006 ConstructorArgs)) 4007 return ExprError(); 4008 4009 S.CheckConstructorAccess(CastLoc, Constructor, FoundDecl, 4010 InitializedEntity::InitializeTemporary(Ty)); 4011 if (S.DiagnoseUseOfDecl(Method, CastLoc)) 4012 return ExprError(); 4013 4014 ExprResult Result = S.BuildCXXConstructExpr( 4015 CastLoc, Ty, FoundDecl, cast<CXXConstructorDecl>(Method), 4016 ConstructorArgs, HadMultipleCandidates, 4017 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false, 4018 CXXConstructExpr::CK_Complete, SourceRange()); 4019 if (Result.isInvalid()) 4020 return ExprError(); 4021 4022 return S.MaybeBindToTemporary(Result.getAs<Expr>()); 4023 } 4024 4025 case CK_UserDefinedConversion: { 4026 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!"); 4027 4028 S.CheckMemberOperatorAccess(CastLoc, From, /*arg*/ nullptr, FoundDecl); 4029 if (S.DiagnoseUseOfDecl(Method, CastLoc)) 4030 return ExprError(); 4031 4032 // Create an implicit call expr that calls it. 4033 CXXConversionDecl *Conv = cast<CXXConversionDecl>(Method); 4034 ExprResult Result = S.BuildCXXMemberCallExpr(From, FoundDecl, Conv, 4035 HadMultipleCandidates); 4036 if (Result.isInvalid()) 4037 return ExprError(); 4038 // Record usage of conversion in an implicit cast. 4039 Result = ImplicitCastExpr::Create(S.Context, Result.get()->getType(), 4040 CK_UserDefinedConversion, Result.get(), 4041 nullptr, Result.get()->getValueKind(), 4042 S.CurFPFeatureOverrides()); 4043 4044 return S.MaybeBindToTemporary(Result.get()); 4045 } 4046 } 4047 } 4048 4049 /// PerformImplicitConversion - Perform an implicit conversion of the 4050 /// expression From to the type ToType using the pre-computed implicit 4051 /// conversion sequence ICS. Returns the converted 4052 /// expression. Action is the kind of conversion we're performing, 4053 /// used in the error message. 4054 ExprResult 4055 Sema::PerformImplicitConversion(Expr *From, QualType ToType, 4056 const ImplicitConversionSequence &ICS, 4057 AssignmentAction Action, 4058 CheckedConversionKind CCK) { 4059 // C++ [over.match.oper]p7: [...] operands of class type are converted [...] 4060 if (CCK == CCK_ForBuiltinOverloadedOp && !From->getType()->isRecordType()) 4061 return From; 4062 4063 switch (ICS.getKind()) { 4064 case ImplicitConversionSequence::StandardConversion: { 4065 ExprResult Res = PerformImplicitConversion(From, ToType, ICS.Standard, 4066 Action, CCK); 4067 if (Res.isInvalid()) 4068 return ExprError(); 4069 From = Res.get(); 4070 break; 4071 } 4072 4073 case ImplicitConversionSequence::UserDefinedConversion: { 4074 4075 FunctionDecl *FD = ICS.UserDefined.ConversionFunction; 4076 CastKind CastKind; 4077 QualType BeforeToType; 4078 assert(FD && "no conversion function for user-defined conversion seq"); 4079 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) { 4080 CastKind = CK_UserDefinedConversion; 4081 4082 // If the user-defined conversion is specified by a conversion function, 4083 // the initial standard conversion sequence converts the source type to 4084 // the implicit object parameter of the conversion function. 4085 BeforeToType = Context.getTagDeclType(Conv->getParent()); 4086 } else { 4087 const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(FD); 4088 CastKind = CK_ConstructorConversion; 4089 // Do no conversion if dealing with ... for the first conversion. 4090 if (!ICS.UserDefined.EllipsisConversion) { 4091 // If the user-defined conversion is specified by a constructor, the 4092 // initial standard conversion sequence converts the source type to 4093 // the type required by the argument of the constructor 4094 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType(); 4095 } 4096 } 4097 // Watch out for ellipsis conversion. 4098 if (!ICS.UserDefined.EllipsisConversion) { 4099 ExprResult Res = 4100 PerformImplicitConversion(From, BeforeToType, 4101 ICS.UserDefined.Before, AA_Converting, 4102 CCK); 4103 if (Res.isInvalid()) 4104 return ExprError(); 4105 From = Res.get(); 4106 } 4107 4108 ExprResult CastArg = BuildCXXCastArgument( 4109 *this, From->getBeginLoc(), ToType.getNonReferenceType(), CastKind, 4110 cast<CXXMethodDecl>(FD), ICS.UserDefined.FoundConversionFunction, 4111 ICS.UserDefined.HadMultipleCandidates, From); 4112 4113 if (CastArg.isInvalid()) 4114 return ExprError(); 4115 4116 From = CastArg.get(); 4117 4118 // C++ [over.match.oper]p7: 4119 // [...] the second standard conversion sequence of a user-defined 4120 // conversion sequence is not applied. 4121 if (CCK == CCK_ForBuiltinOverloadedOp) 4122 return From; 4123 4124 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After, 4125 AA_Converting, CCK); 4126 } 4127 4128 case ImplicitConversionSequence::AmbiguousConversion: 4129 ICS.DiagnoseAmbiguousConversion(*this, From->getExprLoc(), 4130 PDiag(diag::err_typecheck_ambiguous_condition) 4131 << From->getSourceRange()); 4132 return ExprError(); 4133 4134 case ImplicitConversionSequence::EllipsisConversion: 4135 llvm_unreachable("Cannot perform an ellipsis conversion"); 4136 4137 case ImplicitConversionSequence::BadConversion: 4138 Sema::AssignConvertType ConvTy = 4139 CheckAssignmentConstraints(From->getExprLoc(), ToType, From->getType()); 4140 bool Diagnosed = DiagnoseAssignmentResult( 4141 ConvTy == Compatible ? Incompatible : ConvTy, From->getExprLoc(), 4142 ToType, From->getType(), From, Action); 4143 assert(Diagnosed && "failed to diagnose bad conversion"); (void)Diagnosed; 4144 return ExprError(); 4145 } 4146 4147 // Everything went well. 4148 return From; 4149 } 4150 4151 /// PerformImplicitConversion - Perform an implicit conversion of the 4152 /// expression From to the type ToType by following the standard 4153 /// conversion sequence SCS. Returns the converted 4154 /// expression. Flavor is the context in which we're performing this 4155 /// conversion, for use in error messages. 4156 ExprResult 4157 Sema::PerformImplicitConversion(Expr *From, QualType ToType, 4158 const StandardConversionSequence& SCS, 4159 AssignmentAction Action, 4160 CheckedConversionKind CCK) { 4161 bool CStyle = (CCK == CCK_CStyleCast || CCK == CCK_FunctionalCast); 4162 4163 // Overall FIXME: we are recomputing too many types here and doing far too 4164 // much extra work. What this means is that we need to keep track of more 4165 // information that is computed when we try the implicit conversion initially, 4166 // so that we don't need to recompute anything here. 4167 QualType FromType = From->getType(); 4168 4169 if (SCS.CopyConstructor) { 4170 // FIXME: When can ToType be a reference type? 4171 assert(!ToType->isReferenceType()); 4172 if (SCS.Second == ICK_Derived_To_Base) { 4173 SmallVector<Expr*, 8> ConstructorArgs; 4174 if (CompleteConstructorCall( 4175 cast<CXXConstructorDecl>(SCS.CopyConstructor), ToType, From, 4176 /*FIXME:ConstructLoc*/ SourceLocation(), ConstructorArgs)) 4177 return ExprError(); 4178 return BuildCXXConstructExpr( 4179 /*FIXME:ConstructLoc*/ SourceLocation(), ToType, 4180 SCS.FoundCopyConstructor, SCS.CopyConstructor, 4181 ConstructorArgs, /*HadMultipleCandidates*/ false, 4182 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false, 4183 CXXConstructExpr::CK_Complete, SourceRange()); 4184 } 4185 return BuildCXXConstructExpr( 4186 /*FIXME:ConstructLoc*/ SourceLocation(), ToType, 4187 SCS.FoundCopyConstructor, SCS.CopyConstructor, 4188 From, /*HadMultipleCandidates*/ false, 4189 /*ListInit*/ false, /*StdInitListInit*/ false, /*ZeroInit*/ false, 4190 CXXConstructExpr::CK_Complete, SourceRange()); 4191 } 4192 4193 // Resolve overloaded function references. 4194 if (Context.hasSameType(FromType, Context.OverloadTy)) { 4195 DeclAccessPair Found; 4196 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType, 4197 true, Found); 4198 if (!Fn) 4199 return ExprError(); 4200 4201 if (DiagnoseUseOfDecl(Fn, From->getBeginLoc())) 4202 return ExprError(); 4203 4204 From = FixOverloadedFunctionReference(From, Found, Fn); 4205 FromType = From->getType(); 4206 } 4207 4208 // If we're converting to an atomic type, first convert to the corresponding 4209 // non-atomic type. 4210 QualType ToAtomicType; 4211 if (const AtomicType *ToAtomic = ToType->getAs<AtomicType>()) { 4212 ToAtomicType = ToType; 4213 ToType = ToAtomic->getValueType(); 4214 } 4215 4216 QualType InitialFromType = FromType; 4217 // Perform the first implicit conversion. 4218 switch (SCS.First) { 4219 case ICK_Identity: 4220 if (const AtomicType *FromAtomic = FromType->getAs<AtomicType>()) { 4221 FromType = FromAtomic->getValueType().getUnqualifiedType(); 4222 From = ImplicitCastExpr::Create(Context, FromType, CK_AtomicToNonAtomic, 4223 From, /*BasePath=*/nullptr, VK_PRValue, 4224 FPOptionsOverride()); 4225 } 4226 break; 4227 4228 case ICK_Lvalue_To_Rvalue: { 4229 assert(From->getObjectKind() != OK_ObjCProperty); 4230 ExprResult FromRes = DefaultLvalueConversion(From); 4231 if (FromRes.isInvalid()) 4232 return ExprError(); 4233 4234 From = FromRes.get(); 4235 FromType = From->getType(); 4236 break; 4237 } 4238 4239 case ICK_Array_To_Pointer: 4240 FromType = Context.getArrayDecayedType(FromType); 4241 From = ImpCastExprToType(From, FromType, CK_ArrayToPointerDecay, VK_PRValue, 4242 /*BasePath=*/nullptr, CCK) 4243 .get(); 4244 break; 4245 4246 case ICK_Function_To_Pointer: 4247 FromType = Context.getPointerType(FromType); 4248 From = ImpCastExprToType(From, FromType, CK_FunctionToPointerDecay, 4249 VK_PRValue, /*BasePath=*/nullptr, CCK) 4250 .get(); 4251 break; 4252 4253 default: 4254 llvm_unreachable("Improper first standard conversion"); 4255 } 4256 4257 // Perform the second implicit conversion 4258 switch (SCS.Second) { 4259 case ICK_Identity: 4260 // C++ [except.spec]p5: 4261 // [For] assignment to and initialization of pointers to functions, 4262 // pointers to member functions, and references to functions: the 4263 // target entity shall allow at least the exceptions allowed by the 4264 // source value in the assignment or initialization. 4265 switch (Action) { 4266 case AA_Assigning: 4267 case AA_Initializing: 4268 // Note, function argument passing and returning are initialization. 4269 case AA_Passing: 4270 case AA_Returning: 4271 case AA_Sending: 4272 case AA_Passing_CFAudited: 4273 if (CheckExceptionSpecCompatibility(From, ToType)) 4274 return ExprError(); 4275 break; 4276 4277 case AA_Casting: 4278 case AA_Converting: 4279 // Casts and implicit conversions are not initialization, so are not 4280 // checked for exception specification mismatches. 4281 break; 4282 } 4283 // Nothing else to do. 4284 break; 4285 4286 case ICK_Integral_Promotion: 4287 case ICK_Integral_Conversion: 4288 if (ToType->isBooleanType()) { 4289 assert(FromType->castAs<EnumType>()->getDecl()->isFixed() && 4290 SCS.Second == ICK_Integral_Promotion && 4291 "only enums with fixed underlying type can promote to bool"); 4292 From = ImpCastExprToType(From, ToType, CK_IntegralToBoolean, VK_PRValue, 4293 /*BasePath=*/nullptr, CCK) 4294 .get(); 4295 } else { 4296 From = ImpCastExprToType(From, ToType, CK_IntegralCast, VK_PRValue, 4297 /*BasePath=*/nullptr, CCK) 4298 .get(); 4299 } 4300 break; 4301 4302 case ICK_Floating_Promotion: 4303 case ICK_Floating_Conversion: 4304 From = ImpCastExprToType(From, ToType, CK_FloatingCast, VK_PRValue, 4305 /*BasePath=*/nullptr, CCK) 4306 .get(); 4307 break; 4308 4309 case ICK_Complex_Promotion: 4310 case ICK_Complex_Conversion: { 4311 QualType FromEl = From->getType()->castAs<ComplexType>()->getElementType(); 4312 QualType ToEl = ToType->castAs<ComplexType>()->getElementType(); 4313 CastKind CK; 4314 if (FromEl->isRealFloatingType()) { 4315 if (ToEl->isRealFloatingType()) 4316 CK = CK_FloatingComplexCast; 4317 else 4318 CK = CK_FloatingComplexToIntegralComplex; 4319 } else if (ToEl->isRealFloatingType()) { 4320 CK = CK_IntegralComplexToFloatingComplex; 4321 } else { 4322 CK = CK_IntegralComplexCast; 4323 } 4324 From = ImpCastExprToType(From, ToType, CK, VK_PRValue, /*BasePath=*/nullptr, 4325 CCK) 4326 .get(); 4327 break; 4328 } 4329 4330 case ICK_Floating_Integral: 4331 if (ToType->isRealFloatingType()) 4332 From = ImpCastExprToType(From, ToType, CK_IntegralToFloating, VK_PRValue, 4333 /*BasePath=*/nullptr, CCK) 4334 .get(); 4335 else 4336 From = ImpCastExprToType(From, ToType, CK_FloatingToIntegral, VK_PRValue, 4337 /*BasePath=*/nullptr, CCK) 4338 .get(); 4339 break; 4340 4341 case ICK_Compatible_Conversion: 4342 From = ImpCastExprToType(From, ToType, CK_NoOp, From->getValueKind(), 4343 /*BasePath=*/nullptr, CCK).get(); 4344 break; 4345 4346 case ICK_Writeback_Conversion: 4347 case ICK_Pointer_Conversion: { 4348 if (SCS.IncompatibleObjC && Action != AA_Casting) { 4349 // Diagnose incompatible Objective-C conversions 4350 if (Action == AA_Initializing || Action == AA_Assigning) 4351 Diag(From->getBeginLoc(), 4352 diag::ext_typecheck_convert_incompatible_pointer) 4353 << ToType << From->getType() << Action << From->getSourceRange() 4354 << 0; 4355 else 4356 Diag(From->getBeginLoc(), 4357 diag::ext_typecheck_convert_incompatible_pointer) 4358 << From->getType() << ToType << Action << From->getSourceRange() 4359 << 0; 4360 4361 if (From->getType()->isObjCObjectPointerType() && 4362 ToType->isObjCObjectPointerType()) 4363 EmitRelatedResultTypeNote(From); 4364 } else if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers() && 4365 !CheckObjCARCUnavailableWeakConversion(ToType, 4366 From->getType())) { 4367 if (Action == AA_Initializing) 4368 Diag(From->getBeginLoc(), diag::err_arc_weak_unavailable_assign); 4369 else 4370 Diag(From->getBeginLoc(), diag::err_arc_convesion_of_weak_unavailable) 4371 << (Action == AA_Casting) << From->getType() << ToType 4372 << From->getSourceRange(); 4373 } 4374 4375 // Defer address space conversion to the third conversion. 4376 QualType FromPteeType = From->getType()->getPointeeType(); 4377 QualType ToPteeType = ToType->getPointeeType(); 4378 QualType NewToType = ToType; 4379 if (!FromPteeType.isNull() && !ToPteeType.isNull() && 4380 FromPteeType.getAddressSpace() != ToPteeType.getAddressSpace()) { 4381 NewToType = Context.removeAddrSpaceQualType(ToPteeType); 4382 NewToType = Context.getAddrSpaceQualType(NewToType, 4383 FromPteeType.getAddressSpace()); 4384 if (ToType->isObjCObjectPointerType()) 4385 NewToType = Context.getObjCObjectPointerType(NewToType); 4386 else if (ToType->isBlockPointerType()) 4387 NewToType = Context.getBlockPointerType(NewToType); 4388 else 4389 NewToType = Context.getPointerType(NewToType); 4390 } 4391 4392 CastKind Kind; 4393 CXXCastPath BasePath; 4394 if (CheckPointerConversion(From, NewToType, Kind, BasePath, CStyle)) 4395 return ExprError(); 4396 4397 // Make sure we extend blocks if necessary. 4398 // FIXME: doing this here is really ugly. 4399 if (Kind == CK_BlockPointerToObjCPointerCast) { 4400 ExprResult E = From; 4401 (void) PrepareCastToObjCObjectPointer(E); 4402 From = E.get(); 4403 } 4404 if (getLangOpts().allowsNonTrivialObjCLifetimeQualifiers()) 4405 CheckObjCConversion(SourceRange(), NewToType, From, CCK); 4406 From = ImpCastExprToType(From, NewToType, Kind, VK_PRValue, &BasePath, CCK) 4407 .get(); 4408 break; 4409 } 4410 4411 case ICK_Pointer_Member: { 4412 CastKind Kind; 4413 CXXCastPath BasePath; 4414 if (CheckMemberPointerConversion(From, ToType, Kind, BasePath, CStyle)) 4415 return ExprError(); 4416 if (CheckExceptionSpecCompatibility(From, ToType)) 4417 return ExprError(); 4418 4419 // We may not have been able to figure out what this member pointer resolved 4420 // to up until this exact point. Attempt to lock-in it's inheritance model. 4421 if (Context.getTargetInfo().getCXXABI().isMicrosoft()) { 4422 (void)isCompleteType(From->getExprLoc(), From->getType()); 4423 (void)isCompleteType(From->getExprLoc(), ToType); 4424 } 4425 4426 From = 4427 ImpCastExprToType(From, ToType, Kind, VK_PRValue, &BasePath, CCK).get(); 4428 break; 4429 } 4430 4431 case ICK_Boolean_Conversion: 4432 // Perform half-to-boolean conversion via float. 4433 if (From->getType()->isHalfType()) { 4434 From = ImpCastExprToType(From, Context.FloatTy, CK_FloatingCast).get(); 4435 FromType = Context.FloatTy; 4436 } 4437 4438 From = ImpCastExprToType(From, Context.BoolTy, 4439 ScalarTypeToBooleanCastKind(FromType), VK_PRValue, 4440 /*BasePath=*/nullptr, CCK) 4441 .get(); 4442 break; 4443 4444 case ICK_Derived_To_Base: { 4445 CXXCastPath BasePath; 4446 if (CheckDerivedToBaseConversion( 4447 From->getType(), ToType.getNonReferenceType(), From->getBeginLoc(), 4448 From->getSourceRange(), &BasePath, CStyle)) 4449 return ExprError(); 4450 4451 From = ImpCastExprToType(From, ToType.getNonReferenceType(), 4452 CK_DerivedToBase, From->getValueKind(), 4453 &BasePath, CCK).get(); 4454 break; 4455 } 4456 4457 case ICK_Vector_Conversion: 4458 From = ImpCastExprToType(From, ToType, CK_BitCast, VK_PRValue, 4459 /*BasePath=*/nullptr, CCK) 4460 .get(); 4461 break; 4462 4463 case ICK_SVE_Vector_Conversion: 4464 From = ImpCastExprToType(From, ToType, CK_BitCast, VK_PRValue, 4465 /*BasePath=*/nullptr, CCK) 4466 .get(); 4467 break; 4468 4469 case ICK_Vector_Splat: { 4470 // Vector splat from any arithmetic type to a vector. 4471 Expr *Elem = prepareVectorSplat(ToType, From).get(); 4472 From = ImpCastExprToType(Elem, ToType, CK_VectorSplat, VK_PRValue, 4473 /*BasePath=*/nullptr, CCK) 4474 .get(); 4475 break; 4476 } 4477 4478 case ICK_Complex_Real: 4479 // Case 1. x -> _Complex y 4480 if (const ComplexType *ToComplex = ToType->getAs<ComplexType>()) { 4481 QualType ElType = ToComplex->getElementType(); 4482 bool isFloatingComplex = ElType->isRealFloatingType(); 4483 4484 // x -> y 4485 if (Context.hasSameUnqualifiedType(ElType, From->getType())) { 4486 // do nothing 4487 } else if (From->getType()->isRealFloatingType()) { 4488 From = ImpCastExprToType(From, ElType, 4489 isFloatingComplex ? CK_FloatingCast : CK_FloatingToIntegral).get(); 4490 } else { 4491 assert(From->getType()->isIntegerType()); 4492 From = ImpCastExprToType(From, ElType, 4493 isFloatingComplex ? CK_IntegralToFloating : CK_IntegralCast).get(); 4494 } 4495 // y -> _Complex y 4496 From = ImpCastExprToType(From, ToType, 4497 isFloatingComplex ? CK_FloatingRealToComplex 4498 : CK_IntegralRealToComplex).get(); 4499 4500 // Case 2. _Complex x -> y 4501 } else { 4502 auto *FromComplex = From->getType()->castAs<ComplexType>(); 4503 QualType ElType = FromComplex->getElementType(); 4504 bool isFloatingComplex = ElType->isRealFloatingType(); 4505 4506 // _Complex x -> x 4507 From = ImpCastExprToType(From, ElType, 4508 isFloatingComplex ? CK_FloatingComplexToReal 4509 : CK_IntegralComplexToReal, 4510 VK_PRValue, /*BasePath=*/nullptr, CCK) 4511 .get(); 4512 4513 // x -> y 4514 if (Context.hasSameUnqualifiedType(ElType, ToType)) { 4515 // do nothing 4516 } else if (ToType->isRealFloatingType()) { 4517 From = ImpCastExprToType(From, ToType, 4518 isFloatingComplex ? CK_FloatingCast 4519 : CK_IntegralToFloating, 4520 VK_PRValue, /*BasePath=*/nullptr, CCK) 4521 .get(); 4522 } else { 4523 assert(ToType->isIntegerType()); 4524 From = ImpCastExprToType(From, ToType, 4525 isFloatingComplex ? CK_FloatingToIntegral 4526 : CK_IntegralCast, 4527 VK_PRValue, /*BasePath=*/nullptr, CCK) 4528 .get(); 4529 } 4530 } 4531 break; 4532 4533 case ICK_Block_Pointer_Conversion: { 4534 LangAS AddrSpaceL = 4535 ToType->castAs<BlockPointerType>()->getPointeeType().getAddressSpace(); 4536 LangAS AddrSpaceR = 4537 FromType->castAs<BlockPointerType>()->getPointeeType().getAddressSpace(); 4538 assert(Qualifiers::isAddressSpaceSupersetOf(AddrSpaceL, AddrSpaceR) && 4539 "Invalid cast"); 4540 CastKind Kind = 4541 AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast; 4542 From = ImpCastExprToType(From, ToType.getUnqualifiedType(), Kind, 4543 VK_PRValue, /*BasePath=*/nullptr, CCK) 4544 .get(); 4545 break; 4546 } 4547 4548 case ICK_TransparentUnionConversion: { 4549 ExprResult FromRes = From; 4550 Sema::AssignConvertType ConvTy = 4551 CheckTransparentUnionArgumentConstraints(ToType, FromRes); 4552 if (FromRes.isInvalid()) 4553 return ExprError(); 4554 From = FromRes.get(); 4555 assert ((ConvTy == Sema::Compatible) && 4556 "Improper transparent union conversion"); 4557 (void)ConvTy; 4558 break; 4559 } 4560 4561 case ICK_Zero_Event_Conversion: 4562 case ICK_Zero_Queue_Conversion: 4563 From = ImpCastExprToType(From, ToType, 4564 CK_ZeroToOCLOpaqueType, 4565 From->getValueKind()).get(); 4566 break; 4567 4568 case ICK_Lvalue_To_Rvalue: 4569 case ICK_Array_To_Pointer: 4570 case ICK_Function_To_Pointer: 4571 case ICK_Function_Conversion: 4572 case ICK_Qualification: 4573 case ICK_Num_Conversion_Kinds: 4574 case ICK_C_Only_Conversion: 4575 case ICK_Incompatible_Pointer_Conversion: 4576 llvm_unreachable("Improper second standard conversion"); 4577 } 4578 4579 switch (SCS.Third) { 4580 case ICK_Identity: 4581 // Nothing to do. 4582 break; 4583 4584 case ICK_Function_Conversion: 4585 // If both sides are functions (or pointers/references to them), there could 4586 // be incompatible exception declarations. 4587 if (CheckExceptionSpecCompatibility(From, ToType)) 4588 return ExprError(); 4589 4590 From = ImpCastExprToType(From, ToType, CK_NoOp, VK_PRValue, 4591 /*BasePath=*/nullptr, CCK) 4592 .get(); 4593 break; 4594 4595 case ICK_Qualification: { 4596 ExprValueKind VK = From->getValueKind(); 4597 CastKind CK = CK_NoOp; 4598 4599 if (ToType->isReferenceType() && 4600 ToType->getPointeeType().getAddressSpace() != 4601 From->getType().getAddressSpace()) 4602 CK = CK_AddressSpaceConversion; 4603 4604 if (ToType->isPointerType() && 4605 ToType->getPointeeType().getAddressSpace() != 4606 From->getType()->getPointeeType().getAddressSpace()) 4607 CK = CK_AddressSpaceConversion; 4608 4609 From = ImpCastExprToType(From, ToType.getNonLValueExprType(Context), CK, VK, 4610 /*BasePath=*/nullptr, CCK) 4611 .get(); 4612 4613 if (SCS.DeprecatedStringLiteralToCharPtr && 4614 !getLangOpts().WritableStrings) { 4615 Diag(From->getBeginLoc(), 4616 getLangOpts().CPlusPlus11 4617 ? diag::ext_deprecated_string_literal_conversion 4618 : diag::warn_deprecated_string_literal_conversion) 4619 << ToType.getNonReferenceType(); 4620 } 4621 4622 break; 4623 } 4624 4625 default: 4626 llvm_unreachable("Improper third standard conversion"); 4627 } 4628 4629 // If this conversion sequence involved a scalar -> atomic conversion, perform 4630 // that conversion now. 4631 if (!ToAtomicType.isNull()) { 4632 assert(Context.hasSameType( 4633 ToAtomicType->castAs<AtomicType>()->getValueType(), From->getType())); 4634 From = ImpCastExprToType(From, ToAtomicType, CK_NonAtomicToAtomic, 4635 VK_PRValue, nullptr, CCK) 4636 .get(); 4637 } 4638 4639 // Materialize a temporary if we're implicitly converting to a reference 4640 // type. This is not required by the C++ rules but is necessary to maintain 4641 // AST invariants. 4642 if (ToType->isReferenceType() && From->isPRValue()) { 4643 ExprResult Res = TemporaryMaterializationConversion(From); 4644 if (Res.isInvalid()) 4645 return ExprError(); 4646 From = Res.get(); 4647 } 4648 4649 // If this conversion sequence succeeded and involved implicitly converting a 4650 // _Nullable type to a _Nonnull one, complain. 4651 if (!isCast(CCK)) 4652 diagnoseNullableToNonnullConversion(ToType, InitialFromType, 4653 From->getBeginLoc()); 4654 4655 return From; 4656 } 4657 4658 /// Check the completeness of a type in a unary type trait. 4659 /// 4660 /// If the particular type trait requires a complete type, tries to complete 4661 /// it. If completing the type fails, a diagnostic is emitted and false 4662 /// returned. If completing the type succeeds or no completion was required, 4663 /// returns true. 4664 static bool CheckUnaryTypeTraitTypeCompleteness(Sema &S, TypeTrait UTT, 4665 SourceLocation Loc, 4666 QualType ArgTy) { 4667 // C++0x [meta.unary.prop]p3: 4668 // For all of the class templates X declared in this Clause, instantiating 4669 // that template with a template argument that is a class template 4670 // specialization may result in the implicit instantiation of the template 4671 // argument if and only if the semantics of X require that the argument 4672 // must be a complete type. 4673 // We apply this rule to all the type trait expressions used to implement 4674 // these class templates. We also try to follow any GCC documented behavior 4675 // in these expressions to ensure portability of standard libraries. 4676 switch (UTT) { 4677 default: llvm_unreachable("not a UTT"); 4678 // is_complete_type somewhat obviously cannot require a complete type. 4679 case UTT_IsCompleteType: 4680 // Fall-through 4681 4682 // These traits are modeled on the type predicates in C++0x 4683 // [meta.unary.cat] and [meta.unary.comp]. They are not specified as 4684 // requiring a complete type, as whether or not they return true cannot be 4685 // impacted by the completeness of the type. 4686 case UTT_IsVoid: 4687 case UTT_IsIntegral: 4688 case UTT_IsFloatingPoint: 4689 case UTT_IsArray: 4690 case UTT_IsPointer: 4691 case UTT_IsLvalueReference: 4692 case UTT_IsRvalueReference: 4693 case UTT_IsMemberFunctionPointer: 4694 case UTT_IsMemberObjectPointer: 4695 case UTT_IsEnum: 4696 case UTT_IsUnion: 4697 case UTT_IsClass: 4698 case UTT_IsFunction: 4699 case UTT_IsReference: 4700 case UTT_IsArithmetic: 4701 case UTT_IsFundamental: 4702 case UTT_IsObject: 4703 case UTT_IsScalar: 4704 case UTT_IsCompound: 4705 case UTT_IsMemberPointer: 4706 // Fall-through 4707 4708 // These traits are modeled on type predicates in C++0x [meta.unary.prop] 4709 // which requires some of its traits to have the complete type. However, 4710 // the completeness of the type cannot impact these traits' semantics, and 4711 // so they don't require it. This matches the comments on these traits in 4712 // Table 49. 4713 case UTT_IsConst: 4714 case UTT_IsVolatile: 4715 case UTT_IsSigned: 4716 case UTT_IsUnsigned: 4717 4718 // This type trait always returns false, checking the type is moot. 4719 case UTT_IsInterfaceClass: 4720 return true; 4721 4722 // C++14 [meta.unary.prop]: 4723 // If T is a non-union class type, T shall be a complete type. 4724 case UTT_IsEmpty: 4725 case UTT_IsPolymorphic: 4726 case UTT_IsAbstract: 4727 if (const auto *RD = ArgTy->getAsCXXRecordDecl()) 4728 if (!RD->isUnion()) 4729 return !S.RequireCompleteType( 4730 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr); 4731 return true; 4732 4733 // C++14 [meta.unary.prop]: 4734 // If T is a class type, T shall be a complete type. 4735 case UTT_IsFinal: 4736 case UTT_IsSealed: 4737 if (ArgTy->getAsCXXRecordDecl()) 4738 return !S.RequireCompleteType( 4739 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr); 4740 return true; 4741 4742 // C++1z [meta.unary.prop]: 4743 // remove_all_extents_t<T> shall be a complete type or cv void. 4744 case UTT_IsAggregate: 4745 case UTT_IsTrivial: 4746 case UTT_IsTriviallyCopyable: 4747 case UTT_IsStandardLayout: 4748 case UTT_IsPOD: 4749 case UTT_IsLiteral: 4750 // Per the GCC type traits documentation, T shall be a complete type, cv void, 4751 // or an array of unknown bound. But GCC actually imposes the same constraints 4752 // as above. 4753 case UTT_HasNothrowAssign: 4754 case UTT_HasNothrowMoveAssign: 4755 case UTT_HasNothrowConstructor: 4756 case UTT_HasNothrowCopy: 4757 case UTT_HasTrivialAssign: 4758 case UTT_HasTrivialMoveAssign: 4759 case UTT_HasTrivialDefaultConstructor: 4760 case UTT_HasTrivialMoveConstructor: 4761 case UTT_HasTrivialCopy: 4762 case UTT_HasTrivialDestructor: 4763 case UTT_HasVirtualDestructor: 4764 ArgTy = QualType(ArgTy->getBaseElementTypeUnsafe(), 0); 4765 LLVM_FALLTHROUGH; 4766 4767 // C++1z [meta.unary.prop]: 4768 // T shall be a complete type, cv void, or an array of unknown bound. 4769 case UTT_IsDestructible: 4770 case UTT_IsNothrowDestructible: 4771 case UTT_IsTriviallyDestructible: 4772 case UTT_HasUniqueObjectRepresentations: 4773 if (ArgTy->isIncompleteArrayType() || ArgTy->isVoidType()) 4774 return true; 4775 4776 return !S.RequireCompleteType( 4777 Loc, ArgTy, diag::err_incomplete_type_used_in_type_trait_expr); 4778 } 4779 } 4780 4781 static bool HasNoThrowOperator(const RecordType *RT, OverloadedOperatorKind Op, 4782 Sema &Self, SourceLocation KeyLoc, ASTContext &C, 4783 bool (CXXRecordDecl::*HasTrivial)() const, 4784 bool (CXXRecordDecl::*HasNonTrivial)() const, 4785 bool (CXXMethodDecl::*IsDesiredOp)() const) 4786 { 4787 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); 4788 if ((RD->*HasTrivial)() && !(RD->*HasNonTrivial)()) 4789 return true; 4790 4791 DeclarationName Name = C.DeclarationNames.getCXXOperatorName(Op); 4792 DeclarationNameInfo NameInfo(Name, KeyLoc); 4793 LookupResult Res(Self, NameInfo, Sema::LookupOrdinaryName); 4794 if (Self.LookupQualifiedName(Res, RD)) { 4795 bool FoundOperator = false; 4796 Res.suppressDiagnostics(); 4797 for (LookupResult::iterator Op = Res.begin(), OpEnd = Res.end(); 4798 Op != OpEnd; ++Op) { 4799 if (isa<FunctionTemplateDecl>(*Op)) 4800 continue; 4801 4802 CXXMethodDecl *Operator = cast<CXXMethodDecl>(*Op); 4803 if((Operator->*IsDesiredOp)()) { 4804 FoundOperator = true; 4805 auto *CPT = Operator->getType()->castAs<FunctionProtoType>(); 4806 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); 4807 if (!CPT || !CPT->isNothrow()) 4808 return false; 4809 } 4810 } 4811 return FoundOperator; 4812 } 4813 return false; 4814 } 4815 4816 static bool EvaluateUnaryTypeTrait(Sema &Self, TypeTrait UTT, 4817 SourceLocation KeyLoc, QualType T) { 4818 assert(!T->isDependentType() && "Cannot evaluate traits of dependent type"); 4819 4820 ASTContext &C = Self.Context; 4821 switch(UTT) { 4822 default: llvm_unreachable("not a UTT"); 4823 // Type trait expressions corresponding to the primary type category 4824 // predicates in C++0x [meta.unary.cat]. 4825 case UTT_IsVoid: 4826 return T->isVoidType(); 4827 case UTT_IsIntegral: 4828 return T->isIntegralType(C); 4829 case UTT_IsFloatingPoint: 4830 return T->isFloatingType(); 4831 case UTT_IsArray: 4832 return T->isArrayType(); 4833 case UTT_IsPointer: 4834 return T->isAnyPointerType(); 4835 case UTT_IsLvalueReference: 4836 return T->isLValueReferenceType(); 4837 case UTT_IsRvalueReference: 4838 return T->isRValueReferenceType(); 4839 case UTT_IsMemberFunctionPointer: 4840 return T->isMemberFunctionPointerType(); 4841 case UTT_IsMemberObjectPointer: 4842 return T->isMemberDataPointerType(); 4843 case UTT_IsEnum: 4844 return T->isEnumeralType(); 4845 case UTT_IsUnion: 4846 return T->isUnionType(); 4847 case UTT_IsClass: 4848 return T->isClassType() || T->isStructureType() || T->isInterfaceType(); 4849 case UTT_IsFunction: 4850 return T->isFunctionType(); 4851 4852 // Type trait expressions which correspond to the convenient composition 4853 // predicates in C++0x [meta.unary.comp]. 4854 case UTT_IsReference: 4855 return T->isReferenceType(); 4856 case UTT_IsArithmetic: 4857 return T->isArithmeticType() && !T->isEnumeralType(); 4858 case UTT_IsFundamental: 4859 return T->isFundamentalType(); 4860 case UTT_IsObject: 4861 return T->isObjectType(); 4862 case UTT_IsScalar: 4863 // Note: semantic analysis depends on Objective-C lifetime types to be 4864 // considered scalar types. However, such types do not actually behave 4865 // like scalar types at run time (since they may require retain/release 4866 // operations), so we report them as non-scalar. 4867 if (T->isObjCLifetimeType()) { 4868 switch (T.getObjCLifetime()) { 4869 case Qualifiers::OCL_None: 4870 case Qualifiers::OCL_ExplicitNone: 4871 return true; 4872 4873 case Qualifiers::OCL_Strong: 4874 case Qualifiers::OCL_Weak: 4875 case Qualifiers::OCL_Autoreleasing: 4876 return false; 4877 } 4878 } 4879 4880 return T->isScalarType(); 4881 case UTT_IsCompound: 4882 return T->isCompoundType(); 4883 case UTT_IsMemberPointer: 4884 return T->isMemberPointerType(); 4885 4886 // Type trait expressions which correspond to the type property predicates 4887 // in C++0x [meta.unary.prop]. 4888 case UTT_IsConst: 4889 return T.isConstQualified(); 4890 case UTT_IsVolatile: 4891 return T.isVolatileQualified(); 4892 case UTT_IsTrivial: 4893 return T.isTrivialType(C); 4894 case UTT_IsTriviallyCopyable: 4895 return T.isTriviallyCopyableType(C); 4896 case UTT_IsStandardLayout: 4897 return T->isStandardLayoutType(); 4898 case UTT_IsPOD: 4899 return T.isPODType(C); 4900 case UTT_IsLiteral: 4901 return T->isLiteralType(C); 4902 case UTT_IsEmpty: 4903 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 4904 return !RD->isUnion() && RD->isEmpty(); 4905 return false; 4906 case UTT_IsPolymorphic: 4907 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 4908 return !RD->isUnion() && RD->isPolymorphic(); 4909 return false; 4910 case UTT_IsAbstract: 4911 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 4912 return !RD->isUnion() && RD->isAbstract(); 4913 return false; 4914 case UTT_IsAggregate: 4915 // Report vector extensions and complex types as aggregates because they 4916 // support aggregate initialization. GCC mirrors this behavior for vectors 4917 // but not _Complex. 4918 return T->isAggregateType() || T->isVectorType() || T->isExtVectorType() || 4919 T->isAnyComplexType(); 4920 // __is_interface_class only returns true when CL is invoked in /CLR mode and 4921 // even then only when it is used with the 'interface struct ...' syntax 4922 // Clang doesn't support /CLR which makes this type trait moot. 4923 case UTT_IsInterfaceClass: 4924 return false; 4925 case UTT_IsFinal: 4926 case UTT_IsSealed: 4927 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 4928 return RD->hasAttr<FinalAttr>(); 4929 return false; 4930 case UTT_IsSigned: 4931 // Enum types should always return false. 4932 // Floating points should always return true. 4933 return T->isFloatingType() || 4934 (T->isSignedIntegerType() && !T->isEnumeralType()); 4935 case UTT_IsUnsigned: 4936 // Enum types should always return false. 4937 return T->isUnsignedIntegerType() && !T->isEnumeralType(); 4938 4939 // Type trait expressions which query classes regarding their construction, 4940 // destruction, and copying. Rather than being based directly on the 4941 // related type predicates in the standard, they are specified by both 4942 // GCC[1] and the Embarcadero C++ compiler[2], and Clang implements those 4943 // specifications. 4944 // 4945 // 1: http://gcc.gnu/.org/onlinedocs/gcc/Type-Traits.html 4946 // 2: http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index 4947 // 4948 // Note that these builtins do not behave as documented in g++: if a class 4949 // has both a trivial and a non-trivial special member of a particular kind, 4950 // they return false! For now, we emulate this behavior. 4951 // FIXME: This appears to be a g++ bug: more complex cases reveal that it 4952 // does not correctly compute triviality in the presence of multiple special 4953 // members of the same kind. Revisit this once the g++ bug is fixed. 4954 case UTT_HasTrivialDefaultConstructor: 4955 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: 4956 // If __is_pod (type) is true then the trait is true, else if type is 4957 // a cv class or union type (or array thereof) with a trivial default 4958 // constructor ([class.ctor]) then the trait is true, else it is false. 4959 if (T.isPODType(C)) 4960 return true; 4961 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) 4962 return RD->hasTrivialDefaultConstructor() && 4963 !RD->hasNonTrivialDefaultConstructor(); 4964 return false; 4965 case UTT_HasTrivialMoveConstructor: 4966 // This trait is implemented by MSVC 2012 and needed to parse the 4967 // standard library headers. Specifically this is used as the logic 4968 // behind std::is_trivially_move_constructible (20.9.4.3). 4969 if (T.isPODType(C)) 4970 return true; 4971 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) 4972 return RD->hasTrivialMoveConstructor() && !RD->hasNonTrivialMoveConstructor(); 4973 return false; 4974 case UTT_HasTrivialCopy: 4975 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: 4976 // If __is_pod (type) is true or type is a reference type then 4977 // the trait is true, else if type is a cv class or union type 4978 // with a trivial copy constructor ([class.copy]) then the trait 4979 // is true, else it is false. 4980 if (T.isPODType(C) || T->isReferenceType()) 4981 return true; 4982 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 4983 return RD->hasTrivialCopyConstructor() && 4984 !RD->hasNonTrivialCopyConstructor(); 4985 return false; 4986 case UTT_HasTrivialMoveAssign: 4987 // This trait is implemented by MSVC 2012 and needed to parse the 4988 // standard library headers. Specifically it is used as the logic 4989 // behind std::is_trivially_move_assignable (20.9.4.3) 4990 if (T.isPODType(C)) 4991 return true; 4992 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) 4993 return RD->hasTrivialMoveAssignment() && !RD->hasNonTrivialMoveAssignment(); 4994 return false; 4995 case UTT_HasTrivialAssign: 4996 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: 4997 // If type is const qualified or is a reference type then the 4998 // trait is false. Otherwise if __is_pod (type) is true then the 4999 // trait is true, else if type is a cv class or union type with 5000 // a trivial copy assignment ([class.copy]) then the trait is 5001 // true, else it is false. 5002 // Note: the const and reference restrictions are interesting, 5003 // given that const and reference members don't prevent a class 5004 // from having a trivial copy assignment operator (but do cause 5005 // errors if the copy assignment operator is actually used, q.v. 5006 // [class.copy]p12). 5007 5008 if (T.isConstQualified()) 5009 return false; 5010 if (T.isPODType(C)) 5011 return true; 5012 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 5013 return RD->hasTrivialCopyAssignment() && 5014 !RD->hasNonTrivialCopyAssignment(); 5015 return false; 5016 case UTT_IsDestructible: 5017 case UTT_IsTriviallyDestructible: 5018 case UTT_IsNothrowDestructible: 5019 // C++14 [meta.unary.prop]: 5020 // For reference types, is_destructible<T>::value is true. 5021 if (T->isReferenceType()) 5022 return true; 5023 5024 // Objective-C++ ARC: autorelease types don't require destruction. 5025 if (T->isObjCLifetimeType() && 5026 T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) 5027 return true; 5028 5029 // C++14 [meta.unary.prop]: 5030 // For incomplete types and function types, is_destructible<T>::value is 5031 // false. 5032 if (T->isIncompleteType() || T->isFunctionType()) 5033 return false; 5034 5035 // A type that requires destruction (via a non-trivial destructor or ARC 5036 // lifetime semantics) is not trivially-destructible. 5037 if (UTT == UTT_IsTriviallyDestructible && T.isDestructedType()) 5038 return false; 5039 5040 // C++14 [meta.unary.prop]: 5041 // For object types and given U equal to remove_all_extents_t<T>, if the 5042 // expression std::declval<U&>().~U() is well-formed when treated as an 5043 // unevaluated operand (Clause 5), then is_destructible<T>::value is true 5044 if (auto *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) { 5045 CXXDestructorDecl *Destructor = Self.LookupDestructor(RD); 5046 if (!Destructor) 5047 return false; 5048 // C++14 [dcl.fct.def.delete]p2: 5049 // A program that refers to a deleted function implicitly or 5050 // explicitly, other than to declare it, is ill-formed. 5051 if (Destructor->isDeleted()) 5052 return false; 5053 if (C.getLangOpts().AccessControl && Destructor->getAccess() != AS_public) 5054 return false; 5055 if (UTT == UTT_IsNothrowDestructible) { 5056 auto *CPT = Destructor->getType()->castAs<FunctionProtoType>(); 5057 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); 5058 if (!CPT || !CPT->isNothrow()) 5059 return false; 5060 } 5061 } 5062 return true; 5063 5064 case UTT_HasTrivialDestructor: 5065 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html 5066 // If __is_pod (type) is true or type is a reference type 5067 // then the trait is true, else if type is a cv class or union 5068 // type (or array thereof) with a trivial destructor 5069 // ([class.dtor]) then the trait is true, else it is 5070 // false. 5071 if (T.isPODType(C) || T->isReferenceType()) 5072 return true; 5073 5074 // Objective-C++ ARC: autorelease types don't require destruction. 5075 if (T->isObjCLifetimeType() && 5076 T.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) 5077 return true; 5078 5079 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) 5080 return RD->hasTrivialDestructor(); 5081 return false; 5082 // TODO: Propagate nothrowness for implicitly declared special members. 5083 case UTT_HasNothrowAssign: 5084 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: 5085 // If type is const qualified or is a reference type then the 5086 // trait is false. Otherwise if __has_trivial_assign (type) 5087 // is true then the trait is true, else if type is a cv class 5088 // or union type with copy assignment operators that are known 5089 // not to throw an exception then the trait is true, else it is 5090 // false. 5091 if (C.getBaseElementType(T).isConstQualified()) 5092 return false; 5093 if (T->isReferenceType()) 5094 return false; 5095 if (T.isPODType(C) || T->isObjCLifetimeType()) 5096 return true; 5097 5098 if (const RecordType *RT = T->getAs<RecordType>()) 5099 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, 5100 &CXXRecordDecl::hasTrivialCopyAssignment, 5101 &CXXRecordDecl::hasNonTrivialCopyAssignment, 5102 &CXXMethodDecl::isCopyAssignmentOperator); 5103 return false; 5104 case UTT_HasNothrowMoveAssign: 5105 // This trait is implemented by MSVC 2012 and needed to parse the 5106 // standard library headers. Specifically this is used as the logic 5107 // behind std::is_nothrow_move_assignable (20.9.4.3). 5108 if (T.isPODType(C)) 5109 return true; 5110 5111 if (const RecordType *RT = C.getBaseElementType(T)->getAs<RecordType>()) 5112 return HasNoThrowOperator(RT, OO_Equal, Self, KeyLoc, C, 5113 &CXXRecordDecl::hasTrivialMoveAssignment, 5114 &CXXRecordDecl::hasNonTrivialMoveAssignment, 5115 &CXXMethodDecl::isMoveAssignmentOperator); 5116 return false; 5117 case UTT_HasNothrowCopy: 5118 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: 5119 // If __has_trivial_copy (type) is true then the trait is true, else 5120 // if type is a cv class or union type with copy constructors that are 5121 // known not to throw an exception then the trait is true, else it is 5122 // false. 5123 if (T.isPODType(C) || T->isReferenceType() || T->isObjCLifetimeType()) 5124 return true; 5125 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) { 5126 if (RD->hasTrivialCopyConstructor() && 5127 !RD->hasNonTrivialCopyConstructor()) 5128 return true; 5129 5130 bool FoundConstructor = false; 5131 unsigned FoundTQs; 5132 for (const auto *ND : Self.LookupConstructors(RD)) { 5133 // A template constructor is never a copy constructor. 5134 // FIXME: However, it may actually be selected at the actual overload 5135 // resolution point. 5136 if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl())) 5137 continue; 5138 // UsingDecl itself is not a constructor 5139 if (isa<UsingDecl>(ND)) 5140 continue; 5141 auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl()); 5142 if (Constructor->isCopyConstructor(FoundTQs)) { 5143 FoundConstructor = true; 5144 auto *CPT = Constructor->getType()->castAs<FunctionProtoType>(); 5145 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); 5146 if (!CPT) 5147 return false; 5148 // TODO: check whether evaluating default arguments can throw. 5149 // For now, we'll be conservative and assume that they can throw. 5150 if (!CPT->isNothrow() || CPT->getNumParams() > 1) 5151 return false; 5152 } 5153 } 5154 5155 return FoundConstructor; 5156 } 5157 return false; 5158 case UTT_HasNothrowConstructor: 5159 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html 5160 // If __has_trivial_constructor (type) is true then the trait is 5161 // true, else if type is a cv class or union type (or array 5162 // thereof) with a default constructor that is known not to 5163 // throw an exception then the trait is true, else it is false. 5164 if (T.isPODType(C) || T->isObjCLifetimeType()) 5165 return true; 5166 if (CXXRecordDecl *RD = C.getBaseElementType(T)->getAsCXXRecordDecl()) { 5167 if (RD->hasTrivialDefaultConstructor() && 5168 !RD->hasNonTrivialDefaultConstructor()) 5169 return true; 5170 5171 bool FoundConstructor = false; 5172 for (const auto *ND : Self.LookupConstructors(RD)) { 5173 // FIXME: In C++0x, a constructor template can be a default constructor. 5174 if (isa<FunctionTemplateDecl>(ND->getUnderlyingDecl())) 5175 continue; 5176 // UsingDecl itself is not a constructor 5177 if (isa<UsingDecl>(ND)) 5178 continue; 5179 auto *Constructor = cast<CXXConstructorDecl>(ND->getUnderlyingDecl()); 5180 if (Constructor->isDefaultConstructor()) { 5181 FoundConstructor = true; 5182 auto *CPT = Constructor->getType()->castAs<FunctionProtoType>(); 5183 CPT = Self.ResolveExceptionSpec(KeyLoc, CPT); 5184 if (!CPT) 5185 return false; 5186 // FIXME: check whether evaluating default arguments can throw. 5187 // For now, we'll be conservative and assume that they can throw. 5188 if (!CPT->isNothrow() || CPT->getNumParams() > 0) 5189 return false; 5190 } 5191 } 5192 return FoundConstructor; 5193 } 5194 return false; 5195 case UTT_HasVirtualDestructor: 5196 // http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html: 5197 // If type is a class type with a virtual destructor ([class.dtor]) 5198 // then the trait is true, else it is false. 5199 if (CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 5200 if (CXXDestructorDecl *Destructor = Self.LookupDestructor(RD)) 5201 return Destructor->isVirtual(); 5202 return false; 5203 5204 // These type trait expressions are modeled on the specifications for the 5205 // Embarcadero C++0x type trait functions: 5206 // http://docwiki.embarcadero.com/RADStudio/XE/en/Type_Trait_Functions_(C%2B%2B0x)_Index 5207 case UTT_IsCompleteType: 5208 // http://docwiki.embarcadero.com/RADStudio/XE/en/Is_complete_type_(typename_T_): 5209 // Returns True if and only if T is a complete type at the point of the 5210 // function call. 5211 return !T->isIncompleteType(); 5212 case UTT_HasUniqueObjectRepresentations: 5213 return C.hasUniqueObjectRepresentations(T); 5214 } 5215 } 5216 5217 static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT, 5218 QualType RhsT, SourceLocation KeyLoc); 5219 5220 static bool evaluateTypeTrait(Sema &S, TypeTrait Kind, SourceLocation KWLoc, 5221 ArrayRef<TypeSourceInfo *> Args, 5222 SourceLocation RParenLoc) { 5223 if (Kind <= UTT_Last) 5224 return EvaluateUnaryTypeTrait(S, Kind, KWLoc, Args[0]->getType()); 5225 5226 // Evaluate BTT_ReferenceBindsToTemporary alongside the IsConstructible 5227 // traits to avoid duplication. 5228 if (Kind <= BTT_Last && Kind != BTT_ReferenceBindsToTemporary) 5229 return EvaluateBinaryTypeTrait(S, Kind, Args[0]->getType(), 5230 Args[1]->getType(), RParenLoc); 5231 5232 switch (Kind) { 5233 case clang::BTT_ReferenceBindsToTemporary: 5234 case clang::TT_IsConstructible: 5235 case clang::TT_IsNothrowConstructible: 5236 case clang::TT_IsTriviallyConstructible: { 5237 // C++11 [meta.unary.prop]: 5238 // is_trivially_constructible is defined as: 5239 // 5240 // is_constructible<T, Args...>::value is true and the variable 5241 // definition for is_constructible, as defined below, is known to call 5242 // no operation that is not trivial. 5243 // 5244 // The predicate condition for a template specialization 5245 // is_constructible<T, Args...> shall be satisfied if and only if the 5246 // following variable definition would be well-formed for some invented 5247 // variable t: 5248 // 5249 // T t(create<Args>()...); 5250 assert(!Args.empty()); 5251 5252 // Precondition: T and all types in the parameter pack Args shall be 5253 // complete types, (possibly cv-qualified) void, or arrays of 5254 // unknown bound. 5255 for (const auto *TSI : Args) { 5256 QualType ArgTy = TSI->getType(); 5257 if (ArgTy->isVoidType() || ArgTy->isIncompleteArrayType()) 5258 continue; 5259 5260 if (S.RequireCompleteType(KWLoc, ArgTy, 5261 diag::err_incomplete_type_used_in_type_trait_expr)) 5262 return false; 5263 } 5264 5265 // Make sure the first argument is not incomplete nor a function type. 5266 QualType T = Args[0]->getType(); 5267 if (T->isIncompleteType() || T->isFunctionType()) 5268 return false; 5269 5270 // Make sure the first argument is not an abstract type. 5271 CXXRecordDecl *RD = T->getAsCXXRecordDecl(); 5272 if (RD && RD->isAbstract()) 5273 return false; 5274 5275 llvm::BumpPtrAllocator OpaqueExprAllocator; 5276 SmallVector<Expr *, 2> ArgExprs; 5277 ArgExprs.reserve(Args.size() - 1); 5278 for (unsigned I = 1, N = Args.size(); I != N; ++I) { 5279 QualType ArgTy = Args[I]->getType(); 5280 if (ArgTy->isObjectType() || ArgTy->isFunctionType()) 5281 ArgTy = S.Context.getRValueReferenceType(ArgTy); 5282 ArgExprs.push_back( 5283 new (OpaqueExprAllocator.Allocate<OpaqueValueExpr>()) 5284 OpaqueValueExpr(Args[I]->getTypeLoc().getBeginLoc(), 5285 ArgTy.getNonLValueExprType(S.Context), 5286 Expr::getValueKindForType(ArgTy))); 5287 } 5288 5289 // Perform the initialization in an unevaluated context within a SFINAE 5290 // trap at translation unit scope. 5291 EnterExpressionEvaluationContext Unevaluated( 5292 S, Sema::ExpressionEvaluationContext::Unevaluated); 5293 Sema::SFINAETrap SFINAE(S, /*AccessCheckingSFINAE=*/true); 5294 Sema::ContextRAII TUContext(S, S.Context.getTranslationUnitDecl()); 5295 InitializedEntity To(InitializedEntity::InitializeTemporary(Args[0])); 5296 InitializationKind InitKind(InitializationKind::CreateDirect(KWLoc, KWLoc, 5297 RParenLoc)); 5298 InitializationSequence Init(S, To, InitKind, ArgExprs); 5299 if (Init.Failed()) 5300 return false; 5301 5302 ExprResult Result = Init.Perform(S, To, InitKind, ArgExprs); 5303 if (Result.isInvalid() || SFINAE.hasErrorOccurred()) 5304 return false; 5305 5306 if (Kind == clang::TT_IsConstructible) 5307 return true; 5308 5309 if (Kind == clang::BTT_ReferenceBindsToTemporary) { 5310 if (!T->isReferenceType()) 5311 return false; 5312 5313 return !Init.isDirectReferenceBinding(); 5314 } 5315 5316 if (Kind == clang::TT_IsNothrowConstructible) 5317 return S.canThrow(Result.get()) == CT_Cannot; 5318 5319 if (Kind == clang::TT_IsTriviallyConstructible) { 5320 // Under Objective-C ARC and Weak, if the destination has non-trivial 5321 // Objective-C lifetime, this is a non-trivial construction. 5322 if (T.getNonReferenceType().hasNonTrivialObjCLifetime()) 5323 return false; 5324 5325 // The initialization succeeded; now make sure there are no non-trivial 5326 // calls. 5327 return !Result.get()->hasNonTrivialCall(S.Context); 5328 } 5329 5330 llvm_unreachable("unhandled type trait"); 5331 return false; 5332 } 5333 default: llvm_unreachable("not a TT"); 5334 } 5335 5336 return false; 5337 } 5338 5339 ExprResult Sema::BuildTypeTrait(TypeTrait Kind, SourceLocation KWLoc, 5340 ArrayRef<TypeSourceInfo *> Args, 5341 SourceLocation RParenLoc) { 5342 QualType ResultType = Context.getLogicalOperationType(); 5343 5344 if (Kind <= UTT_Last && !CheckUnaryTypeTraitTypeCompleteness( 5345 *this, Kind, KWLoc, Args[0]->getType())) 5346 return ExprError(); 5347 5348 bool Dependent = false; 5349 for (unsigned I = 0, N = Args.size(); I != N; ++I) { 5350 if (Args[I]->getType()->isDependentType()) { 5351 Dependent = true; 5352 break; 5353 } 5354 } 5355 5356 bool Result = false; 5357 if (!Dependent) 5358 Result = evaluateTypeTrait(*this, Kind, KWLoc, Args, RParenLoc); 5359 5360 return TypeTraitExpr::Create(Context, ResultType, KWLoc, Kind, Args, 5361 RParenLoc, Result); 5362 } 5363 5364 ExprResult Sema::ActOnTypeTrait(TypeTrait Kind, SourceLocation KWLoc, 5365 ArrayRef<ParsedType> Args, 5366 SourceLocation RParenLoc) { 5367 SmallVector<TypeSourceInfo *, 4> ConvertedArgs; 5368 ConvertedArgs.reserve(Args.size()); 5369 5370 for (unsigned I = 0, N = Args.size(); I != N; ++I) { 5371 TypeSourceInfo *TInfo; 5372 QualType T = GetTypeFromParser(Args[I], &TInfo); 5373 if (!TInfo) 5374 TInfo = Context.getTrivialTypeSourceInfo(T, KWLoc); 5375 5376 ConvertedArgs.push_back(TInfo); 5377 } 5378 5379 return BuildTypeTrait(Kind, KWLoc, ConvertedArgs, RParenLoc); 5380 } 5381 5382 static bool EvaluateBinaryTypeTrait(Sema &Self, TypeTrait BTT, QualType LhsT, 5383 QualType RhsT, SourceLocation KeyLoc) { 5384 assert(!LhsT->isDependentType() && !RhsT->isDependentType() && 5385 "Cannot evaluate traits of dependent types"); 5386 5387 switch(BTT) { 5388 case BTT_IsBaseOf: { 5389 // C++0x [meta.rel]p2 5390 // Base is a base class of Derived without regard to cv-qualifiers or 5391 // Base and Derived are not unions and name the same class type without 5392 // regard to cv-qualifiers. 5393 5394 const RecordType *lhsRecord = LhsT->getAs<RecordType>(); 5395 const RecordType *rhsRecord = RhsT->getAs<RecordType>(); 5396 if (!rhsRecord || !lhsRecord) { 5397 const ObjCObjectType *LHSObjTy = LhsT->getAs<ObjCObjectType>(); 5398 const ObjCObjectType *RHSObjTy = RhsT->getAs<ObjCObjectType>(); 5399 if (!LHSObjTy || !RHSObjTy) 5400 return false; 5401 5402 ObjCInterfaceDecl *BaseInterface = LHSObjTy->getInterface(); 5403 ObjCInterfaceDecl *DerivedInterface = RHSObjTy->getInterface(); 5404 if (!BaseInterface || !DerivedInterface) 5405 return false; 5406 5407 if (Self.RequireCompleteType( 5408 KeyLoc, RhsT, diag::err_incomplete_type_used_in_type_trait_expr)) 5409 return false; 5410 5411 return BaseInterface->isSuperClassOf(DerivedInterface); 5412 } 5413 5414 assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT) 5415 == (lhsRecord == rhsRecord)); 5416 5417 // Unions are never base classes, and never have base classes. 5418 // It doesn't matter if they are complete or not. See PR#41843 5419 if (lhsRecord && lhsRecord->getDecl()->isUnion()) 5420 return false; 5421 if (rhsRecord && rhsRecord->getDecl()->isUnion()) 5422 return false; 5423 5424 if (lhsRecord == rhsRecord) 5425 return true; 5426 5427 // C++0x [meta.rel]p2: 5428 // If Base and Derived are class types and are different types 5429 // (ignoring possible cv-qualifiers) then Derived shall be a 5430 // complete type. 5431 if (Self.RequireCompleteType(KeyLoc, RhsT, 5432 diag::err_incomplete_type_used_in_type_trait_expr)) 5433 return false; 5434 5435 return cast<CXXRecordDecl>(rhsRecord->getDecl()) 5436 ->isDerivedFrom(cast<CXXRecordDecl>(lhsRecord->getDecl())); 5437 } 5438 case BTT_IsSame: 5439 return Self.Context.hasSameType(LhsT, RhsT); 5440 case BTT_TypeCompatible: { 5441 // GCC ignores cv-qualifiers on arrays for this builtin. 5442 Qualifiers LhsQuals, RhsQuals; 5443 QualType Lhs = Self.getASTContext().getUnqualifiedArrayType(LhsT, LhsQuals); 5444 QualType Rhs = Self.getASTContext().getUnqualifiedArrayType(RhsT, RhsQuals); 5445 return Self.Context.typesAreCompatible(Lhs, Rhs); 5446 } 5447 case BTT_IsConvertible: 5448 case BTT_IsConvertibleTo: { 5449 // C++0x [meta.rel]p4: 5450 // Given the following function prototype: 5451 // 5452 // template <class T> 5453 // typename add_rvalue_reference<T>::type create(); 5454 // 5455 // the predicate condition for a template specialization 5456 // is_convertible<From, To> shall be satisfied if and only if 5457 // the return expression in the following code would be 5458 // well-formed, including any implicit conversions to the return 5459 // type of the function: 5460 // 5461 // To test() { 5462 // return create<From>(); 5463 // } 5464 // 5465 // Access checking is performed as if in a context unrelated to To and 5466 // From. Only the validity of the immediate context of the expression 5467 // of the return-statement (including conversions to the return type) 5468 // is considered. 5469 // 5470 // We model the initialization as a copy-initialization of a temporary 5471 // of the appropriate type, which for this expression is identical to the 5472 // return statement (since NRVO doesn't apply). 5473 5474 // Functions aren't allowed to return function or array types. 5475 if (RhsT->isFunctionType() || RhsT->isArrayType()) 5476 return false; 5477 5478 // A return statement in a void function must have void type. 5479 if (RhsT->isVoidType()) 5480 return LhsT->isVoidType(); 5481 5482 // A function definition requires a complete, non-abstract return type. 5483 if (!Self.isCompleteType(KeyLoc, RhsT) || Self.isAbstractType(KeyLoc, RhsT)) 5484 return false; 5485 5486 // Compute the result of add_rvalue_reference. 5487 if (LhsT->isObjectType() || LhsT->isFunctionType()) 5488 LhsT = Self.Context.getRValueReferenceType(LhsT); 5489 5490 // Build a fake source and destination for initialization. 5491 InitializedEntity To(InitializedEntity::InitializeTemporary(RhsT)); 5492 OpaqueValueExpr From(KeyLoc, LhsT.getNonLValueExprType(Self.Context), 5493 Expr::getValueKindForType(LhsT)); 5494 Expr *FromPtr = &From; 5495 InitializationKind Kind(InitializationKind::CreateCopy(KeyLoc, 5496 SourceLocation())); 5497 5498 // Perform the initialization in an unevaluated context within a SFINAE 5499 // trap at translation unit scope. 5500 EnterExpressionEvaluationContext Unevaluated( 5501 Self, Sema::ExpressionEvaluationContext::Unevaluated); 5502 Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true); 5503 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl()); 5504 InitializationSequence Init(Self, To, Kind, FromPtr); 5505 if (Init.Failed()) 5506 return false; 5507 5508 ExprResult Result = Init.Perform(Self, To, Kind, FromPtr); 5509 return !Result.isInvalid() && !SFINAE.hasErrorOccurred(); 5510 } 5511 5512 case BTT_IsAssignable: 5513 case BTT_IsNothrowAssignable: 5514 case BTT_IsTriviallyAssignable: { 5515 // C++11 [meta.unary.prop]p3: 5516 // is_trivially_assignable is defined as: 5517 // is_assignable<T, U>::value is true and the assignment, as defined by 5518 // is_assignable, is known to call no operation that is not trivial 5519 // 5520 // is_assignable is defined as: 5521 // The expression declval<T>() = declval<U>() is well-formed when 5522 // treated as an unevaluated operand (Clause 5). 5523 // 5524 // For both, T and U shall be complete types, (possibly cv-qualified) 5525 // void, or arrays of unknown bound. 5526 if (!LhsT->isVoidType() && !LhsT->isIncompleteArrayType() && 5527 Self.RequireCompleteType(KeyLoc, LhsT, 5528 diag::err_incomplete_type_used_in_type_trait_expr)) 5529 return false; 5530 if (!RhsT->isVoidType() && !RhsT->isIncompleteArrayType() && 5531 Self.RequireCompleteType(KeyLoc, RhsT, 5532 diag::err_incomplete_type_used_in_type_trait_expr)) 5533 return false; 5534 5535 // cv void is never assignable. 5536 if (LhsT->isVoidType() || RhsT->isVoidType()) 5537 return false; 5538 5539 // Build expressions that emulate the effect of declval<T>() and 5540 // declval<U>(). 5541 if (LhsT->isObjectType() || LhsT->isFunctionType()) 5542 LhsT = Self.Context.getRValueReferenceType(LhsT); 5543 if (RhsT->isObjectType() || RhsT->isFunctionType()) 5544 RhsT = Self.Context.getRValueReferenceType(RhsT); 5545 OpaqueValueExpr Lhs(KeyLoc, LhsT.getNonLValueExprType(Self.Context), 5546 Expr::getValueKindForType(LhsT)); 5547 OpaqueValueExpr Rhs(KeyLoc, RhsT.getNonLValueExprType(Self.Context), 5548 Expr::getValueKindForType(RhsT)); 5549 5550 // Attempt the assignment in an unevaluated context within a SFINAE 5551 // trap at translation unit scope. 5552 EnterExpressionEvaluationContext Unevaluated( 5553 Self, Sema::ExpressionEvaluationContext::Unevaluated); 5554 Sema::SFINAETrap SFINAE(Self, /*AccessCheckingSFINAE=*/true); 5555 Sema::ContextRAII TUContext(Self, Self.Context.getTranslationUnitDecl()); 5556 ExprResult Result = Self.BuildBinOp(/*S=*/nullptr, KeyLoc, BO_Assign, &Lhs, 5557 &Rhs); 5558 if (Result.isInvalid()) 5559 return false; 5560 5561 // Treat the assignment as unused for the purpose of -Wdeprecated-volatile. 5562 Self.CheckUnusedVolatileAssignment(Result.get()); 5563 5564 if (SFINAE.hasErrorOccurred()) 5565 return false; 5566 5567 if (BTT == BTT_IsAssignable) 5568 return true; 5569 5570 if (BTT == BTT_IsNothrowAssignable) 5571 return Self.canThrow(Result.get()) == CT_Cannot; 5572 5573 if (BTT == BTT_IsTriviallyAssignable) { 5574 // Under Objective-C ARC and Weak, if the destination has non-trivial 5575 // Objective-C lifetime, this is a non-trivial assignment. 5576 if (LhsT.getNonReferenceType().hasNonTrivialObjCLifetime()) 5577 return false; 5578 5579 return !Result.get()->hasNonTrivialCall(Self.Context); 5580 } 5581 5582 llvm_unreachable("unhandled type trait"); 5583 return false; 5584 } 5585 default: llvm_unreachable("not a BTT"); 5586 } 5587 llvm_unreachable("Unknown type trait or not implemented"); 5588 } 5589 5590 ExprResult Sema::ActOnArrayTypeTrait(ArrayTypeTrait ATT, 5591 SourceLocation KWLoc, 5592 ParsedType Ty, 5593 Expr* DimExpr, 5594 SourceLocation RParen) { 5595 TypeSourceInfo *TSInfo; 5596 QualType T = GetTypeFromParser(Ty, &TSInfo); 5597 if (!TSInfo) 5598 TSInfo = Context.getTrivialTypeSourceInfo(T); 5599 5600 return BuildArrayTypeTrait(ATT, KWLoc, TSInfo, DimExpr, RParen); 5601 } 5602 5603 static uint64_t EvaluateArrayTypeTrait(Sema &Self, ArrayTypeTrait ATT, 5604 QualType T, Expr *DimExpr, 5605 SourceLocation KeyLoc) { 5606 assert(!T->isDependentType() && "Cannot evaluate traits of dependent type"); 5607 5608 switch(ATT) { 5609 case ATT_ArrayRank: 5610 if (T->isArrayType()) { 5611 unsigned Dim = 0; 5612 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) { 5613 ++Dim; 5614 T = AT->getElementType(); 5615 } 5616 return Dim; 5617 } 5618 return 0; 5619 5620 case ATT_ArrayExtent: { 5621 llvm::APSInt Value; 5622 uint64_t Dim; 5623 if (Self.VerifyIntegerConstantExpression( 5624 DimExpr, &Value, diag::err_dimension_expr_not_constant_integer) 5625 .isInvalid()) 5626 return 0; 5627 if (Value.isSigned() && Value.isNegative()) { 5628 Self.Diag(KeyLoc, diag::err_dimension_expr_not_constant_integer) 5629 << DimExpr->getSourceRange(); 5630 return 0; 5631 } 5632 Dim = Value.getLimitedValue(); 5633 5634 if (T->isArrayType()) { 5635 unsigned D = 0; 5636 bool Matched = false; 5637 while (const ArrayType *AT = Self.Context.getAsArrayType(T)) { 5638 if (Dim == D) { 5639 Matched = true; 5640 break; 5641 } 5642 ++D; 5643 T = AT->getElementType(); 5644 } 5645 5646 if (Matched && T->isArrayType()) { 5647 if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T)) 5648 return CAT->getSize().getLimitedValue(); 5649 } 5650 } 5651 return 0; 5652 } 5653 } 5654 llvm_unreachable("Unknown type trait or not implemented"); 5655 } 5656 5657 ExprResult Sema::BuildArrayTypeTrait(ArrayTypeTrait ATT, 5658 SourceLocation KWLoc, 5659 TypeSourceInfo *TSInfo, 5660 Expr* DimExpr, 5661 SourceLocation RParen) { 5662 QualType T = TSInfo->getType(); 5663 5664 // FIXME: This should likely be tracked as an APInt to remove any host 5665 // assumptions about the width of size_t on the target. 5666 uint64_t Value = 0; 5667 if (!T->isDependentType()) 5668 Value = EvaluateArrayTypeTrait(*this, ATT, T, DimExpr, KWLoc); 5669 5670 // While the specification for these traits from the Embarcadero C++ 5671 // compiler's documentation says the return type is 'unsigned int', Clang 5672 // returns 'size_t'. On Windows, the primary platform for the Embarcadero 5673 // compiler, there is no difference. On several other platforms this is an 5674 // important distinction. 5675 return new (Context) ArrayTypeTraitExpr(KWLoc, ATT, TSInfo, Value, DimExpr, 5676 RParen, Context.getSizeType()); 5677 } 5678 5679 ExprResult Sema::ActOnExpressionTrait(ExpressionTrait ET, 5680 SourceLocation KWLoc, 5681 Expr *Queried, 5682 SourceLocation RParen) { 5683 // If error parsing the expression, ignore. 5684 if (!Queried) 5685 return ExprError(); 5686 5687 ExprResult Result = BuildExpressionTrait(ET, KWLoc, Queried, RParen); 5688 5689 return Result; 5690 } 5691 5692 static bool EvaluateExpressionTrait(ExpressionTrait ET, Expr *E) { 5693 switch (ET) { 5694 case ET_IsLValueExpr: return E->isLValue(); 5695 case ET_IsRValueExpr: 5696 return E->isPRValue(); 5697 } 5698 llvm_unreachable("Expression trait not covered by switch"); 5699 } 5700 5701 ExprResult Sema::BuildExpressionTrait(ExpressionTrait ET, 5702 SourceLocation KWLoc, 5703 Expr *Queried, 5704 SourceLocation RParen) { 5705 if (Queried->isTypeDependent()) { 5706 // Delay type-checking for type-dependent expressions. 5707 } else if (Queried->getType()->isPlaceholderType()) { 5708 ExprResult PE = CheckPlaceholderExpr(Queried); 5709 if (PE.isInvalid()) return ExprError(); 5710 return BuildExpressionTrait(ET, KWLoc, PE.get(), RParen); 5711 } 5712 5713 bool Value = EvaluateExpressionTrait(ET, Queried); 5714 5715 return new (Context) 5716 ExpressionTraitExpr(KWLoc, ET, Queried, Value, RParen, Context.BoolTy); 5717 } 5718 5719 QualType Sema::CheckPointerToMemberOperands(ExprResult &LHS, ExprResult &RHS, 5720 ExprValueKind &VK, 5721 SourceLocation Loc, 5722 bool isIndirect) { 5723 assert(!LHS.get()->getType()->isPlaceholderType() && 5724 !RHS.get()->getType()->isPlaceholderType() && 5725 "placeholders should have been weeded out by now"); 5726 5727 // The LHS undergoes lvalue conversions if this is ->*, and undergoes the 5728 // temporary materialization conversion otherwise. 5729 if (isIndirect) 5730 LHS = DefaultLvalueConversion(LHS.get()); 5731 else if (LHS.get()->isPRValue()) 5732 LHS = TemporaryMaterializationConversion(LHS.get()); 5733 if (LHS.isInvalid()) 5734 return QualType(); 5735 5736 // The RHS always undergoes lvalue conversions. 5737 RHS = DefaultLvalueConversion(RHS.get()); 5738 if (RHS.isInvalid()) return QualType(); 5739 5740 const char *OpSpelling = isIndirect ? "->*" : ".*"; 5741 // C++ 5.5p2 5742 // The binary operator .* [p3: ->*] binds its second operand, which shall 5743 // be of type "pointer to member of T" (where T is a completely-defined 5744 // class type) [...] 5745 QualType RHSType = RHS.get()->getType(); 5746 const MemberPointerType *MemPtr = RHSType->getAs<MemberPointerType>(); 5747 if (!MemPtr) { 5748 Diag(Loc, diag::err_bad_memptr_rhs) 5749 << OpSpelling << RHSType << RHS.get()->getSourceRange(); 5750 return QualType(); 5751 } 5752 5753 QualType Class(MemPtr->getClass(), 0); 5754 5755 // Note: C++ [expr.mptr.oper]p2-3 says that the class type into which the 5756 // member pointer points must be completely-defined. However, there is no 5757 // reason for this semantic distinction, and the rule is not enforced by 5758 // other compilers. Therefore, we do not check this property, as it is 5759 // likely to be considered a defect. 5760 5761 // C++ 5.5p2 5762 // [...] to its first operand, which shall be of class T or of a class of 5763 // which T is an unambiguous and accessible base class. [p3: a pointer to 5764 // such a class] 5765 QualType LHSType = LHS.get()->getType(); 5766 if (isIndirect) { 5767 if (const PointerType *Ptr = LHSType->getAs<PointerType>()) 5768 LHSType = Ptr->getPointeeType(); 5769 else { 5770 Diag(Loc, diag::err_bad_memptr_lhs) 5771 << OpSpelling << 1 << LHSType 5772 << FixItHint::CreateReplacement(SourceRange(Loc), ".*"); 5773 return QualType(); 5774 } 5775 } 5776 5777 if (!Context.hasSameUnqualifiedType(Class, LHSType)) { 5778 // If we want to check the hierarchy, we need a complete type. 5779 if (RequireCompleteType(Loc, LHSType, diag::err_bad_memptr_lhs, 5780 OpSpelling, (int)isIndirect)) { 5781 return QualType(); 5782 } 5783 5784 if (!IsDerivedFrom(Loc, LHSType, Class)) { 5785 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling 5786 << (int)isIndirect << LHS.get()->getType(); 5787 return QualType(); 5788 } 5789 5790 CXXCastPath BasePath; 5791 if (CheckDerivedToBaseConversion( 5792 LHSType, Class, Loc, 5793 SourceRange(LHS.get()->getBeginLoc(), RHS.get()->getEndLoc()), 5794 &BasePath)) 5795 return QualType(); 5796 5797 // Cast LHS to type of use. 5798 QualType UseType = Context.getQualifiedType(Class, LHSType.getQualifiers()); 5799 if (isIndirect) 5800 UseType = Context.getPointerType(UseType); 5801 ExprValueKind VK = isIndirect ? VK_PRValue : LHS.get()->getValueKind(); 5802 LHS = ImpCastExprToType(LHS.get(), UseType, CK_DerivedToBase, VK, 5803 &BasePath); 5804 } 5805 5806 if (isa<CXXScalarValueInitExpr>(RHS.get()->IgnoreParens())) { 5807 // Diagnose use of pointer-to-member type which when used as 5808 // the functional cast in a pointer-to-member expression. 5809 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect; 5810 return QualType(); 5811 } 5812 5813 // C++ 5.5p2 5814 // The result is an object or a function of the type specified by the 5815 // second operand. 5816 // The cv qualifiers are the union of those in the pointer and the left side, 5817 // in accordance with 5.5p5 and 5.2.5. 5818 QualType Result = MemPtr->getPointeeType(); 5819 Result = Context.getCVRQualifiedType(Result, LHSType.getCVRQualifiers()); 5820 5821 // C++0x [expr.mptr.oper]p6: 5822 // In a .* expression whose object expression is an rvalue, the program is 5823 // ill-formed if the second operand is a pointer to member function with 5824 // ref-qualifier &. In a ->* expression or in a .* expression whose object 5825 // expression is an lvalue, the program is ill-formed if the second operand 5826 // is a pointer to member function with ref-qualifier &&. 5827 if (const FunctionProtoType *Proto = Result->getAs<FunctionProtoType>()) { 5828 switch (Proto->getRefQualifier()) { 5829 case RQ_None: 5830 // Do nothing 5831 break; 5832 5833 case RQ_LValue: 5834 if (!isIndirect && !LHS.get()->Classify(Context).isLValue()) { 5835 // C++2a allows functions with ref-qualifier & if their cv-qualifier-seq 5836 // is (exactly) 'const'. 5837 if (Proto->isConst() && !Proto->isVolatile()) 5838 Diag(Loc, getLangOpts().CPlusPlus20 5839 ? diag::warn_cxx17_compat_pointer_to_const_ref_member_on_rvalue 5840 : diag::ext_pointer_to_const_ref_member_on_rvalue); 5841 else 5842 Diag(Loc, diag::err_pointer_to_member_oper_value_classify) 5843 << RHSType << 1 << LHS.get()->getSourceRange(); 5844 } 5845 break; 5846 5847 case RQ_RValue: 5848 if (isIndirect || !LHS.get()->Classify(Context).isRValue()) 5849 Diag(Loc, diag::err_pointer_to_member_oper_value_classify) 5850 << RHSType << 0 << LHS.get()->getSourceRange(); 5851 break; 5852 } 5853 } 5854 5855 // C++ [expr.mptr.oper]p6: 5856 // The result of a .* expression whose second operand is a pointer 5857 // to a data member is of the same value category as its 5858 // first operand. The result of a .* expression whose second 5859 // operand is a pointer to a member function is a prvalue. The 5860 // result of an ->* expression is an lvalue if its second operand 5861 // is a pointer to data member and a prvalue otherwise. 5862 if (Result->isFunctionType()) { 5863 VK = VK_PRValue; 5864 return Context.BoundMemberTy; 5865 } else if (isIndirect) { 5866 VK = VK_LValue; 5867 } else { 5868 VK = LHS.get()->getValueKind(); 5869 } 5870 5871 return Result; 5872 } 5873 5874 /// Try to convert a type to another according to C++11 5.16p3. 5875 /// 5876 /// This is part of the parameter validation for the ? operator. If either 5877 /// value operand is a class type, the two operands are attempted to be 5878 /// converted to each other. This function does the conversion in one direction. 5879 /// It returns true if the program is ill-formed and has already been diagnosed 5880 /// as such. 5881 static bool TryClassUnification(Sema &Self, Expr *From, Expr *To, 5882 SourceLocation QuestionLoc, 5883 bool &HaveConversion, 5884 QualType &ToType) { 5885 HaveConversion = false; 5886 ToType = To->getType(); 5887 5888 InitializationKind Kind = 5889 InitializationKind::CreateCopy(To->getBeginLoc(), SourceLocation()); 5890 // C++11 5.16p3 5891 // The process for determining whether an operand expression E1 of type T1 5892 // can be converted to match an operand expression E2 of type T2 is defined 5893 // as follows: 5894 // -- If E2 is an lvalue: E1 can be converted to match E2 if E1 can be 5895 // implicitly converted to type "lvalue reference to T2", subject to the 5896 // constraint that in the conversion the reference must bind directly to 5897 // an lvalue. 5898 // -- If E2 is an xvalue: E1 can be converted to match E2 if E1 can be 5899 // implicitly converted to the type "rvalue reference to R2", subject to 5900 // the constraint that the reference must bind directly. 5901 if (To->isGLValue()) { 5902 QualType T = Self.Context.getReferenceQualifiedType(To); 5903 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T); 5904 5905 InitializationSequence InitSeq(Self, Entity, Kind, From); 5906 if (InitSeq.isDirectReferenceBinding()) { 5907 ToType = T; 5908 HaveConversion = true; 5909 return false; 5910 } 5911 5912 if (InitSeq.isAmbiguous()) 5913 return InitSeq.Diagnose(Self, Entity, Kind, From); 5914 } 5915 5916 // -- If E2 is an rvalue, or if the conversion above cannot be done: 5917 // -- if E1 and E2 have class type, and the underlying class types are 5918 // the same or one is a base class of the other: 5919 QualType FTy = From->getType(); 5920 QualType TTy = To->getType(); 5921 const RecordType *FRec = FTy->getAs<RecordType>(); 5922 const RecordType *TRec = TTy->getAs<RecordType>(); 5923 bool FDerivedFromT = FRec && TRec && FRec != TRec && 5924 Self.IsDerivedFrom(QuestionLoc, FTy, TTy); 5925 if (FRec && TRec && (FRec == TRec || FDerivedFromT || 5926 Self.IsDerivedFrom(QuestionLoc, TTy, FTy))) { 5927 // E1 can be converted to match E2 if the class of T2 is the 5928 // same type as, or a base class of, the class of T1, and 5929 // [cv2 > cv1]. 5930 if (FRec == TRec || FDerivedFromT) { 5931 if (TTy.isAtLeastAsQualifiedAs(FTy)) { 5932 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy); 5933 InitializationSequence InitSeq(Self, Entity, Kind, From); 5934 if (InitSeq) { 5935 HaveConversion = true; 5936 return false; 5937 } 5938 5939 if (InitSeq.isAmbiguous()) 5940 return InitSeq.Diagnose(Self, Entity, Kind, From); 5941 } 5942 } 5943 5944 return false; 5945 } 5946 5947 // -- Otherwise: E1 can be converted to match E2 if E1 can be 5948 // implicitly converted to the type that expression E2 would have 5949 // if E2 were converted to an rvalue (or the type it has, if E2 is 5950 // an rvalue). 5951 // 5952 // This actually refers very narrowly to the lvalue-to-rvalue conversion, not 5953 // to the array-to-pointer or function-to-pointer conversions. 5954 TTy = TTy.getNonLValueExprType(Self.Context); 5955 5956 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy); 5957 InitializationSequence InitSeq(Self, Entity, Kind, From); 5958 HaveConversion = !InitSeq.Failed(); 5959 ToType = TTy; 5960 if (InitSeq.isAmbiguous()) 5961 return InitSeq.Diagnose(Self, Entity, Kind, From); 5962 5963 return false; 5964 } 5965 5966 /// Try to find a common type for two according to C++0x 5.16p5. 5967 /// 5968 /// This is part of the parameter validation for the ? operator. If either 5969 /// value operand is a class type, overload resolution is used to find a 5970 /// conversion to a common type. 5971 static bool FindConditionalOverload(Sema &Self, ExprResult &LHS, ExprResult &RHS, 5972 SourceLocation QuestionLoc) { 5973 Expr *Args[2] = { LHS.get(), RHS.get() }; 5974 OverloadCandidateSet CandidateSet(QuestionLoc, 5975 OverloadCandidateSet::CSK_Operator); 5976 Self.AddBuiltinOperatorCandidates(OO_Conditional, QuestionLoc, Args, 5977 CandidateSet); 5978 5979 OverloadCandidateSet::iterator Best; 5980 switch (CandidateSet.BestViableFunction(Self, QuestionLoc, Best)) { 5981 case OR_Success: { 5982 // We found a match. Perform the conversions on the arguments and move on. 5983 ExprResult LHSRes = Self.PerformImplicitConversion( 5984 LHS.get(), Best->BuiltinParamTypes[0], Best->Conversions[0], 5985 Sema::AA_Converting); 5986 if (LHSRes.isInvalid()) 5987 break; 5988 LHS = LHSRes; 5989 5990 ExprResult RHSRes = Self.PerformImplicitConversion( 5991 RHS.get(), Best->BuiltinParamTypes[1], Best->Conversions[1], 5992 Sema::AA_Converting); 5993 if (RHSRes.isInvalid()) 5994 break; 5995 RHS = RHSRes; 5996 if (Best->Function) 5997 Self.MarkFunctionReferenced(QuestionLoc, Best->Function); 5998 return false; 5999 } 6000 6001 case OR_No_Viable_Function: 6002 6003 // Emit a better diagnostic if one of the expressions is a null pointer 6004 // constant and the other is a pointer type. In this case, the user most 6005 // likely forgot to take the address of the other expression. 6006 if (Self.DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) 6007 return true; 6008 6009 Self.Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 6010 << LHS.get()->getType() << RHS.get()->getType() 6011 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6012 return true; 6013 6014 case OR_Ambiguous: 6015 Self.Diag(QuestionLoc, diag::err_conditional_ambiguous_ovl) 6016 << LHS.get()->getType() << RHS.get()->getType() 6017 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6018 // FIXME: Print the possible common types by printing the return types of 6019 // the viable candidates. 6020 break; 6021 6022 case OR_Deleted: 6023 llvm_unreachable("Conditional operator has only built-in overloads"); 6024 } 6025 return true; 6026 } 6027 6028 /// Perform an "extended" implicit conversion as returned by 6029 /// TryClassUnification. 6030 static bool ConvertForConditional(Sema &Self, ExprResult &E, QualType T) { 6031 InitializedEntity Entity = InitializedEntity::InitializeTemporary(T); 6032 InitializationKind Kind = 6033 InitializationKind::CreateCopy(E.get()->getBeginLoc(), SourceLocation()); 6034 Expr *Arg = E.get(); 6035 InitializationSequence InitSeq(Self, Entity, Kind, Arg); 6036 ExprResult Result = InitSeq.Perform(Self, Entity, Kind, Arg); 6037 if (Result.isInvalid()) 6038 return true; 6039 6040 E = Result; 6041 return false; 6042 } 6043 6044 // Check the condition operand of ?: to see if it is valid for the GCC 6045 // extension. 6046 static bool isValidVectorForConditionalCondition(ASTContext &Ctx, 6047 QualType CondTy) { 6048 if (!CondTy->isVectorType() && !CondTy->isExtVectorType()) 6049 return false; 6050 const QualType EltTy = 6051 cast<VectorType>(CondTy.getCanonicalType())->getElementType(); 6052 assert(!EltTy->isBooleanType() && !EltTy->isEnumeralType() && 6053 "Vectors cant be boolean or enum types"); 6054 return EltTy->isIntegralType(Ctx); 6055 } 6056 6057 QualType Sema::CheckVectorConditionalTypes(ExprResult &Cond, ExprResult &LHS, 6058 ExprResult &RHS, 6059 SourceLocation QuestionLoc) { 6060 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 6061 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 6062 6063 QualType CondType = Cond.get()->getType(); 6064 const auto *CondVT = CondType->castAs<VectorType>(); 6065 QualType CondElementTy = CondVT->getElementType(); 6066 unsigned CondElementCount = CondVT->getNumElements(); 6067 QualType LHSType = LHS.get()->getType(); 6068 const auto *LHSVT = LHSType->getAs<VectorType>(); 6069 QualType RHSType = RHS.get()->getType(); 6070 const auto *RHSVT = RHSType->getAs<VectorType>(); 6071 6072 QualType ResultType; 6073 6074 6075 if (LHSVT && RHSVT) { 6076 if (isa<ExtVectorType>(CondVT) != isa<ExtVectorType>(LHSVT)) { 6077 Diag(QuestionLoc, diag::err_conditional_vector_cond_result_mismatch) 6078 << /*isExtVector*/ isa<ExtVectorType>(CondVT); 6079 return {}; 6080 } 6081 6082 // If both are vector types, they must be the same type. 6083 if (!Context.hasSameType(LHSType, RHSType)) { 6084 Diag(QuestionLoc, diag::err_conditional_vector_mismatched) 6085 << LHSType << RHSType; 6086 return {}; 6087 } 6088 ResultType = LHSType; 6089 } else if (LHSVT || RHSVT) { 6090 ResultType = CheckVectorOperands( 6091 LHS, RHS, QuestionLoc, /*isCompAssign*/ false, /*AllowBothBool*/ true, 6092 /*AllowBoolConversions*/ false); 6093 if (ResultType.isNull()) 6094 return {}; 6095 } else { 6096 // Both are scalar. 6097 QualType ResultElementTy; 6098 LHSType = LHSType.getCanonicalType().getUnqualifiedType(); 6099 RHSType = RHSType.getCanonicalType().getUnqualifiedType(); 6100 6101 if (Context.hasSameType(LHSType, RHSType)) 6102 ResultElementTy = LHSType; 6103 else 6104 ResultElementTy = 6105 UsualArithmeticConversions(LHS, RHS, QuestionLoc, ACK_Conditional); 6106 6107 if (ResultElementTy->isEnumeralType()) { 6108 Diag(QuestionLoc, diag::err_conditional_vector_operand_type) 6109 << ResultElementTy; 6110 return {}; 6111 } 6112 if (CondType->isExtVectorType()) 6113 ResultType = 6114 Context.getExtVectorType(ResultElementTy, CondVT->getNumElements()); 6115 else 6116 ResultType = Context.getVectorType( 6117 ResultElementTy, CondVT->getNumElements(), VectorType::GenericVector); 6118 6119 LHS = ImpCastExprToType(LHS.get(), ResultType, CK_VectorSplat); 6120 RHS = ImpCastExprToType(RHS.get(), ResultType, CK_VectorSplat); 6121 } 6122 6123 assert(!ResultType.isNull() && ResultType->isVectorType() && 6124 (!CondType->isExtVectorType() || ResultType->isExtVectorType()) && 6125 "Result should have been a vector type"); 6126 auto *ResultVectorTy = ResultType->castAs<VectorType>(); 6127 QualType ResultElementTy = ResultVectorTy->getElementType(); 6128 unsigned ResultElementCount = ResultVectorTy->getNumElements(); 6129 6130 if (ResultElementCount != CondElementCount) { 6131 Diag(QuestionLoc, diag::err_conditional_vector_size) << CondType 6132 << ResultType; 6133 return {}; 6134 } 6135 6136 if (Context.getTypeSize(ResultElementTy) != 6137 Context.getTypeSize(CondElementTy)) { 6138 Diag(QuestionLoc, diag::err_conditional_vector_element_size) << CondType 6139 << ResultType; 6140 return {}; 6141 } 6142 6143 return ResultType; 6144 } 6145 6146 /// Check the operands of ?: under C++ semantics. 6147 /// 6148 /// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y 6149 /// extension. In this case, LHS == Cond. (But they're not aliases.) 6150 /// 6151 /// This function also implements GCC's vector extension and the 6152 /// OpenCL/ext_vector_type extension for conditionals. The vector extensions 6153 /// permit the use of a?b:c where the type of a is that of a integer vector with 6154 /// the same number of elements and size as the vectors of b and c. If one of 6155 /// either b or c is a scalar it is implicitly converted to match the type of 6156 /// the vector. Otherwise the expression is ill-formed. If both b and c are 6157 /// scalars, then b and c are checked and converted to the type of a if 6158 /// possible. 6159 /// 6160 /// The expressions are evaluated differently for GCC's and OpenCL's extensions. 6161 /// For the GCC extension, the ?: operator is evaluated as 6162 /// (a[0] != 0 ? b[0] : c[0], .. , a[n] != 0 ? b[n] : c[n]). 6163 /// For the OpenCL extensions, the ?: operator is evaluated as 6164 /// (most-significant-bit-set(a[0]) ? b[0] : c[0], .. , 6165 /// most-significant-bit-set(a[n]) ? b[n] : c[n]). 6166 QualType Sema::CXXCheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, 6167 ExprResult &RHS, ExprValueKind &VK, 6168 ExprObjectKind &OK, 6169 SourceLocation QuestionLoc) { 6170 // FIXME: Handle C99's complex types, block pointers and Obj-C++ interface 6171 // pointers. 6172 6173 // Assume r-value. 6174 VK = VK_PRValue; 6175 OK = OK_Ordinary; 6176 bool IsVectorConditional = 6177 isValidVectorForConditionalCondition(Context, Cond.get()->getType()); 6178 6179 // C++11 [expr.cond]p1 6180 // The first expression is contextually converted to bool. 6181 if (!Cond.get()->isTypeDependent()) { 6182 ExprResult CondRes = IsVectorConditional 6183 ? DefaultFunctionArrayLvalueConversion(Cond.get()) 6184 : CheckCXXBooleanCondition(Cond.get()); 6185 if (CondRes.isInvalid()) 6186 return QualType(); 6187 Cond = CondRes; 6188 } else { 6189 // To implement C++, the first expression typically doesn't alter the result 6190 // type of the conditional, however the GCC compatible vector extension 6191 // changes the result type to be that of the conditional. Since we cannot 6192 // know if this is a vector extension here, delay the conversion of the 6193 // LHS/RHS below until later. 6194 return Context.DependentTy; 6195 } 6196 6197 6198 // Either of the arguments dependent? 6199 if (LHS.get()->isTypeDependent() || RHS.get()->isTypeDependent()) 6200 return Context.DependentTy; 6201 6202 // C++11 [expr.cond]p2 6203 // If either the second or the third operand has type (cv) void, ... 6204 QualType LTy = LHS.get()->getType(); 6205 QualType RTy = RHS.get()->getType(); 6206 bool LVoid = LTy->isVoidType(); 6207 bool RVoid = RTy->isVoidType(); 6208 if (LVoid || RVoid) { 6209 // ... one of the following shall hold: 6210 // -- The second or the third operand (but not both) is a (possibly 6211 // parenthesized) throw-expression; the result is of the type 6212 // and value category of the other. 6213 bool LThrow = isa<CXXThrowExpr>(LHS.get()->IgnoreParenImpCasts()); 6214 bool RThrow = isa<CXXThrowExpr>(RHS.get()->IgnoreParenImpCasts()); 6215 6216 // Void expressions aren't legal in the vector-conditional expressions. 6217 if (IsVectorConditional) { 6218 SourceRange DiagLoc = 6219 LVoid ? LHS.get()->getSourceRange() : RHS.get()->getSourceRange(); 6220 bool IsThrow = LVoid ? LThrow : RThrow; 6221 Diag(DiagLoc.getBegin(), diag::err_conditional_vector_has_void) 6222 << DiagLoc << IsThrow; 6223 return QualType(); 6224 } 6225 6226 if (LThrow != RThrow) { 6227 Expr *NonThrow = LThrow ? RHS.get() : LHS.get(); 6228 VK = NonThrow->getValueKind(); 6229 // DR (no number yet): the result is a bit-field if the 6230 // non-throw-expression operand is a bit-field. 6231 OK = NonThrow->getObjectKind(); 6232 return NonThrow->getType(); 6233 } 6234 6235 // -- Both the second and third operands have type void; the result is of 6236 // type void and is a prvalue. 6237 if (LVoid && RVoid) 6238 return Context.VoidTy; 6239 6240 // Neither holds, error. 6241 Diag(QuestionLoc, diag::err_conditional_void_nonvoid) 6242 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1) 6243 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6244 return QualType(); 6245 } 6246 6247 // Neither is void. 6248 if (IsVectorConditional) 6249 return CheckVectorConditionalTypes(Cond, LHS, RHS, QuestionLoc); 6250 6251 // C++11 [expr.cond]p3 6252 // Otherwise, if the second and third operand have different types, and 6253 // either has (cv) class type [...] an attempt is made to convert each of 6254 // those operands to the type of the other. 6255 if (!Context.hasSameType(LTy, RTy) && 6256 (LTy->isRecordType() || RTy->isRecordType())) { 6257 // These return true if a single direction is already ambiguous. 6258 QualType L2RType, R2LType; 6259 bool HaveL2R, HaveR2L; 6260 if (TryClassUnification(*this, LHS.get(), RHS.get(), QuestionLoc, HaveL2R, L2RType)) 6261 return QualType(); 6262 if (TryClassUnification(*this, RHS.get(), LHS.get(), QuestionLoc, HaveR2L, R2LType)) 6263 return QualType(); 6264 6265 // If both can be converted, [...] the program is ill-formed. 6266 if (HaveL2R && HaveR2L) { 6267 Diag(QuestionLoc, diag::err_conditional_ambiguous) 6268 << LTy << RTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6269 return QualType(); 6270 } 6271 6272 // If exactly one conversion is possible, that conversion is applied to 6273 // the chosen operand and the converted operands are used in place of the 6274 // original operands for the remainder of this section. 6275 if (HaveL2R) { 6276 if (ConvertForConditional(*this, LHS, L2RType) || LHS.isInvalid()) 6277 return QualType(); 6278 LTy = LHS.get()->getType(); 6279 } else if (HaveR2L) { 6280 if (ConvertForConditional(*this, RHS, R2LType) || RHS.isInvalid()) 6281 return QualType(); 6282 RTy = RHS.get()->getType(); 6283 } 6284 } 6285 6286 // C++11 [expr.cond]p3 6287 // if both are glvalues of the same value category and the same type except 6288 // for cv-qualification, an attempt is made to convert each of those 6289 // operands to the type of the other. 6290 // FIXME: 6291 // Resolving a defect in P0012R1: we extend this to cover all cases where 6292 // one of the operands is reference-compatible with the other, in order 6293 // to support conditionals between functions differing in noexcept. This 6294 // will similarly cover difference in array bounds after P0388R4. 6295 // FIXME: If LTy and RTy have a composite pointer type, should we convert to 6296 // that instead? 6297 ExprValueKind LVK = LHS.get()->getValueKind(); 6298 ExprValueKind RVK = RHS.get()->getValueKind(); 6299 if (!Context.hasSameType(LTy, RTy) && LVK == RVK && LVK != VK_PRValue) { 6300 // DerivedToBase was already handled by the class-specific case above. 6301 // FIXME: Should we allow ObjC conversions here? 6302 const ReferenceConversions AllowedConversions = 6303 ReferenceConversions::Qualification | 6304 ReferenceConversions::NestedQualification | 6305 ReferenceConversions::Function; 6306 6307 ReferenceConversions RefConv; 6308 if (CompareReferenceRelationship(QuestionLoc, LTy, RTy, &RefConv) == 6309 Ref_Compatible && 6310 !(RefConv & ~AllowedConversions) && 6311 // [...] subject to the constraint that the reference must bind 6312 // directly [...] 6313 !RHS.get()->refersToBitField() && !RHS.get()->refersToVectorElement()) { 6314 RHS = ImpCastExprToType(RHS.get(), LTy, CK_NoOp, RVK); 6315 RTy = RHS.get()->getType(); 6316 } else if (CompareReferenceRelationship(QuestionLoc, RTy, LTy, &RefConv) == 6317 Ref_Compatible && 6318 !(RefConv & ~AllowedConversions) && 6319 !LHS.get()->refersToBitField() && 6320 !LHS.get()->refersToVectorElement()) { 6321 LHS = ImpCastExprToType(LHS.get(), RTy, CK_NoOp, LVK); 6322 LTy = LHS.get()->getType(); 6323 } 6324 } 6325 6326 // C++11 [expr.cond]p4 6327 // If the second and third operands are glvalues of the same value 6328 // category and have the same type, the result is of that type and 6329 // value category and it is a bit-field if the second or the third 6330 // operand is a bit-field, or if both are bit-fields. 6331 // We only extend this to bitfields, not to the crazy other kinds of 6332 // l-values. 6333 bool Same = Context.hasSameType(LTy, RTy); 6334 if (Same && LVK == RVK && LVK != VK_PRValue && 6335 LHS.get()->isOrdinaryOrBitFieldObject() && 6336 RHS.get()->isOrdinaryOrBitFieldObject()) { 6337 VK = LHS.get()->getValueKind(); 6338 if (LHS.get()->getObjectKind() == OK_BitField || 6339 RHS.get()->getObjectKind() == OK_BitField) 6340 OK = OK_BitField; 6341 6342 // If we have function pointer types, unify them anyway to unify their 6343 // exception specifications, if any. 6344 if (LTy->isFunctionPointerType() || LTy->isMemberFunctionPointerType()) { 6345 Qualifiers Qs = LTy.getQualifiers(); 6346 LTy = FindCompositePointerType(QuestionLoc, LHS, RHS, 6347 /*ConvertArgs*/false); 6348 LTy = Context.getQualifiedType(LTy, Qs); 6349 6350 assert(!LTy.isNull() && "failed to find composite pointer type for " 6351 "canonically equivalent function ptr types"); 6352 assert(Context.hasSameType(LTy, RTy) && "bad composite pointer type"); 6353 } 6354 6355 return LTy; 6356 } 6357 6358 // C++11 [expr.cond]p5 6359 // Otherwise, the result is a prvalue. If the second and third operands 6360 // do not have the same type, and either has (cv) class type, ... 6361 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) { 6362 // ... overload resolution is used to determine the conversions (if any) 6363 // to be applied to the operands. If the overload resolution fails, the 6364 // program is ill-formed. 6365 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc)) 6366 return QualType(); 6367 } 6368 6369 // C++11 [expr.cond]p6 6370 // Lvalue-to-rvalue, array-to-pointer, and function-to-pointer standard 6371 // conversions are performed on the second and third operands. 6372 LHS = DefaultFunctionArrayLvalueConversion(LHS.get()); 6373 RHS = DefaultFunctionArrayLvalueConversion(RHS.get()); 6374 if (LHS.isInvalid() || RHS.isInvalid()) 6375 return QualType(); 6376 LTy = LHS.get()->getType(); 6377 RTy = RHS.get()->getType(); 6378 6379 // After those conversions, one of the following shall hold: 6380 // -- The second and third operands have the same type; the result 6381 // is of that type. If the operands have class type, the result 6382 // is a prvalue temporary of the result type, which is 6383 // copy-initialized from either the second operand or the third 6384 // operand depending on the value of the first operand. 6385 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy)) { 6386 if (LTy->isRecordType()) { 6387 // The operands have class type. Make a temporary copy. 6388 InitializedEntity Entity = InitializedEntity::InitializeTemporary(LTy); 6389 6390 ExprResult LHSCopy = PerformCopyInitialization(Entity, 6391 SourceLocation(), 6392 LHS); 6393 if (LHSCopy.isInvalid()) 6394 return QualType(); 6395 6396 ExprResult RHSCopy = PerformCopyInitialization(Entity, 6397 SourceLocation(), 6398 RHS); 6399 if (RHSCopy.isInvalid()) 6400 return QualType(); 6401 6402 LHS = LHSCopy; 6403 RHS = RHSCopy; 6404 } 6405 6406 // If we have function pointer types, unify them anyway to unify their 6407 // exception specifications, if any. 6408 if (LTy->isFunctionPointerType() || LTy->isMemberFunctionPointerType()) { 6409 LTy = FindCompositePointerType(QuestionLoc, LHS, RHS); 6410 assert(!LTy.isNull() && "failed to find composite pointer type for " 6411 "canonically equivalent function ptr types"); 6412 } 6413 6414 return LTy; 6415 } 6416 6417 // Extension: conditional operator involving vector types. 6418 if (LTy->isVectorType() || RTy->isVectorType()) 6419 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false, 6420 /*AllowBothBool*/true, 6421 /*AllowBoolConversions*/false); 6422 6423 // -- The second and third operands have arithmetic or enumeration type; 6424 // the usual arithmetic conversions are performed to bring them to a 6425 // common type, and the result is of that type. 6426 if (LTy->isArithmeticType() && RTy->isArithmeticType()) { 6427 QualType ResTy = 6428 UsualArithmeticConversions(LHS, RHS, QuestionLoc, ACK_Conditional); 6429 if (LHS.isInvalid() || RHS.isInvalid()) 6430 return QualType(); 6431 if (ResTy.isNull()) { 6432 Diag(QuestionLoc, 6433 diag::err_typecheck_cond_incompatible_operands) << LTy << RTy 6434 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6435 return QualType(); 6436 } 6437 6438 LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy)); 6439 RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy)); 6440 6441 return ResTy; 6442 } 6443 6444 // -- The second and third operands have pointer type, or one has pointer 6445 // type and the other is a null pointer constant, or both are null 6446 // pointer constants, at least one of which is non-integral; pointer 6447 // conversions and qualification conversions are performed to bring them 6448 // to their composite pointer type. The result is of the composite 6449 // pointer type. 6450 // -- The second and third operands have pointer to member type, or one has 6451 // pointer to member type and the other is a null pointer constant; 6452 // pointer to member conversions and qualification conversions are 6453 // performed to bring them to a common type, whose cv-qualification 6454 // shall match the cv-qualification of either the second or the third 6455 // operand. The result is of the common type. 6456 QualType Composite = FindCompositePointerType(QuestionLoc, LHS, RHS); 6457 if (!Composite.isNull()) 6458 return Composite; 6459 6460 // Similarly, attempt to find composite type of two objective-c pointers. 6461 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc); 6462 if (LHS.isInvalid() || RHS.isInvalid()) 6463 return QualType(); 6464 if (!Composite.isNull()) 6465 return Composite; 6466 6467 // Check if we are using a null with a non-pointer type. 6468 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc)) 6469 return QualType(); 6470 6471 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) 6472 << LHS.get()->getType() << RHS.get()->getType() 6473 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange(); 6474 return QualType(); 6475 } 6476 6477 static FunctionProtoType::ExceptionSpecInfo 6478 mergeExceptionSpecs(Sema &S, FunctionProtoType::ExceptionSpecInfo ESI1, 6479 FunctionProtoType::ExceptionSpecInfo ESI2, 6480 SmallVectorImpl<QualType> &ExceptionTypeStorage) { 6481 ExceptionSpecificationType EST1 = ESI1.Type; 6482 ExceptionSpecificationType EST2 = ESI2.Type; 6483 6484 // If either of them can throw anything, that is the result. 6485 if (EST1 == EST_None) return ESI1; 6486 if (EST2 == EST_None) return ESI2; 6487 if (EST1 == EST_MSAny) return ESI1; 6488 if (EST2 == EST_MSAny) return ESI2; 6489 if (EST1 == EST_NoexceptFalse) return ESI1; 6490 if (EST2 == EST_NoexceptFalse) return ESI2; 6491 6492 // If either of them is non-throwing, the result is the other. 6493 if (EST1 == EST_NoThrow) return ESI2; 6494 if (EST2 == EST_NoThrow) return ESI1; 6495 if (EST1 == EST_DynamicNone) return ESI2; 6496 if (EST2 == EST_DynamicNone) return ESI1; 6497 if (EST1 == EST_BasicNoexcept) return ESI2; 6498 if (EST2 == EST_BasicNoexcept) return ESI1; 6499 if (EST1 == EST_NoexceptTrue) return ESI2; 6500 if (EST2 == EST_NoexceptTrue) return ESI1; 6501 6502 // If we're left with value-dependent computed noexcept expressions, we're 6503 // stuck. Before C++17, we can just drop the exception specification entirely, 6504 // since it's not actually part of the canonical type. And this should never 6505 // happen in C++17, because it would mean we were computing the composite 6506 // pointer type of dependent types, which should never happen. 6507 if (EST1 == EST_DependentNoexcept || EST2 == EST_DependentNoexcept) { 6508 assert(!S.getLangOpts().CPlusPlus17 && 6509 "computing composite pointer type of dependent types"); 6510 return FunctionProtoType::ExceptionSpecInfo(); 6511 } 6512 6513 // Switch over the possibilities so that people adding new values know to 6514 // update this function. 6515 switch (EST1) { 6516 case EST_None: 6517 case EST_DynamicNone: 6518 case EST_MSAny: 6519 case EST_BasicNoexcept: 6520 case EST_DependentNoexcept: 6521 case EST_NoexceptFalse: 6522 case EST_NoexceptTrue: 6523 case EST_NoThrow: 6524 llvm_unreachable("handled above"); 6525 6526 case EST_Dynamic: { 6527 // This is the fun case: both exception specifications are dynamic. Form 6528 // the union of the two lists. 6529 assert(EST2 == EST_Dynamic && "other cases should already be handled"); 6530 llvm::SmallPtrSet<QualType, 8> Found; 6531 for (auto &Exceptions : {ESI1.Exceptions, ESI2.Exceptions}) 6532 for (QualType E : Exceptions) 6533 if (Found.insert(S.Context.getCanonicalType(E)).second) 6534 ExceptionTypeStorage.push_back(E); 6535 6536 FunctionProtoType::ExceptionSpecInfo Result(EST_Dynamic); 6537 Result.Exceptions = ExceptionTypeStorage; 6538 return Result; 6539 } 6540 6541 case EST_Unevaluated: 6542 case EST_Uninstantiated: 6543 case EST_Unparsed: 6544 llvm_unreachable("shouldn't see unresolved exception specifications here"); 6545 } 6546 6547 llvm_unreachable("invalid ExceptionSpecificationType"); 6548 } 6549 6550 /// Find a merged pointer type and convert the two expressions to it. 6551 /// 6552 /// This finds the composite pointer type for \p E1 and \p E2 according to 6553 /// C++2a [expr.type]p3. It converts both expressions to this type and returns 6554 /// it. It does not emit diagnostics (FIXME: that's not true if \p ConvertArgs 6555 /// is \c true). 6556 /// 6557 /// \param Loc The location of the operator requiring these two expressions to 6558 /// be converted to the composite pointer type. 6559 /// 6560 /// \param ConvertArgs If \c false, do not convert E1 and E2 to the target type. 6561 QualType Sema::FindCompositePointerType(SourceLocation Loc, 6562 Expr *&E1, Expr *&E2, 6563 bool ConvertArgs) { 6564 assert(getLangOpts().CPlusPlus && "This function assumes C++"); 6565 6566 // C++1z [expr]p14: 6567 // The composite pointer type of two operands p1 and p2 having types T1 6568 // and T2 6569 QualType T1 = E1->getType(), T2 = E2->getType(); 6570 6571 // where at least one is a pointer or pointer to member type or 6572 // std::nullptr_t is: 6573 bool T1IsPointerLike = T1->isAnyPointerType() || T1->isMemberPointerType() || 6574 T1->isNullPtrType(); 6575 bool T2IsPointerLike = T2->isAnyPointerType() || T2->isMemberPointerType() || 6576 T2->isNullPtrType(); 6577 if (!T1IsPointerLike && !T2IsPointerLike) 6578 return QualType(); 6579 6580 // - if both p1 and p2 are null pointer constants, std::nullptr_t; 6581 // This can't actually happen, following the standard, but we also use this 6582 // to implement the end of [expr.conv], which hits this case. 6583 // 6584 // - if either p1 or p2 is a null pointer constant, T2 or T1, respectively; 6585 if (T1IsPointerLike && 6586 E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { 6587 if (ConvertArgs) 6588 E2 = ImpCastExprToType(E2, T1, T1->isMemberPointerType() 6589 ? CK_NullToMemberPointer 6590 : CK_NullToPointer).get(); 6591 return T1; 6592 } 6593 if (T2IsPointerLike && 6594 E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { 6595 if (ConvertArgs) 6596 E1 = ImpCastExprToType(E1, T2, T2->isMemberPointerType() 6597 ? CK_NullToMemberPointer 6598 : CK_NullToPointer).get(); 6599 return T2; 6600 } 6601 6602 // Now both have to be pointers or member pointers. 6603 if (!T1IsPointerLike || !T2IsPointerLike) 6604 return QualType(); 6605 assert(!T1->isNullPtrType() && !T2->isNullPtrType() && 6606 "nullptr_t should be a null pointer constant"); 6607 6608 struct Step { 6609 enum Kind { Pointer, ObjCPointer, MemberPointer, Array } K; 6610 // Qualifiers to apply under the step kind. 6611 Qualifiers Quals; 6612 /// The class for a pointer-to-member; a constant array type with a bound 6613 /// (if any) for an array. 6614 const Type *ClassOrBound; 6615 6616 Step(Kind K, const Type *ClassOrBound = nullptr) 6617 : K(K), Quals(), ClassOrBound(ClassOrBound) {} 6618 QualType rebuild(ASTContext &Ctx, QualType T) const { 6619 T = Ctx.getQualifiedType(T, Quals); 6620 switch (K) { 6621 case Pointer: 6622 return Ctx.getPointerType(T); 6623 case MemberPointer: 6624 return Ctx.getMemberPointerType(T, ClassOrBound); 6625 case ObjCPointer: 6626 return Ctx.getObjCObjectPointerType(T); 6627 case Array: 6628 if (auto *CAT = cast_or_null<ConstantArrayType>(ClassOrBound)) 6629 return Ctx.getConstantArrayType(T, CAT->getSize(), nullptr, 6630 ArrayType::Normal, 0); 6631 else 6632 return Ctx.getIncompleteArrayType(T, ArrayType::Normal, 0); 6633 } 6634 llvm_unreachable("unknown step kind"); 6635 } 6636 }; 6637 6638 SmallVector<Step, 8> Steps; 6639 6640 // - if T1 is "pointer to cv1 C1" and T2 is "pointer to cv2 C2", where C1 6641 // is reference-related to C2 or C2 is reference-related to C1 (8.6.3), 6642 // the cv-combined type of T1 and T2 or the cv-combined type of T2 and T1, 6643 // respectively; 6644 // - if T1 is "pointer to member of C1 of type cv1 U1" and T2 is "pointer 6645 // to member of C2 of type cv2 U2" for some non-function type U, where 6646 // C1 is reference-related to C2 or C2 is reference-related to C1, the 6647 // cv-combined type of T2 and T1 or the cv-combined type of T1 and T2, 6648 // respectively; 6649 // - if T1 and T2 are similar types (4.5), the cv-combined type of T1 and 6650 // T2; 6651 // 6652 // Dismantle T1 and T2 to simultaneously determine whether they are similar 6653 // and to prepare to form the cv-combined type if so. 6654 QualType Composite1 = T1; 6655 QualType Composite2 = T2; 6656 unsigned NeedConstBefore = 0; 6657 while (true) { 6658 assert(!Composite1.isNull() && !Composite2.isNull()); 6659 6660 Qualifiers Q1, Q2; 6661 Composite1 = Context.getUnqualifiedArrayType(Composite1, Q1); 6662 Composite2 = Context.getUnqualifiedArrayType(Composite2, Q2); 6663 6664 // Top-level qualifiers are ignored. Merge at all lower levels. 6665 if (!Steps.empty()) { 6666 // Find the qualifier union: (approximately) the unique minimal set of 6667 // qualifiers that is compatible with both types. 6668 Qualifiers Quals = Qualifiers::fromCVRUMask(Q1.getCVRUQualifiers() | 6669 Q2.getCVRUQualifiers()); 6670 6671 // Under one level of pointer or pointer-to-member, we can change to an 6672 // unambiguous compatible address space. 6673 if (Q1.getAddressSpace() == Q2.getAddressSpace()) { 6674 Quals.setAddressSpace(Q1.getAddressSpace()); 6675 } else if (Steps.size() == 1) { 6676 bool MaybeQ1 = Q1.isAddressSpaceSupersetOf(Q2); 6677 bool MaybeQ2 = Q2.isAddressSpaceSupersetOf(Q1); 6678 if (MaybeQ1 == MaybeQ2) 6679 return QualType(); // No unique best address space. 6680 Quals.setAddressSpace(MaybeQ1 ? Q1.getAddressSpace() 6681 : Q2.getAddressSpace()); 6682 } else { 6683 return QualType(); 6684 } 6685 6686 // FIXME: In C, we merge __strong and none to __strong at the top level. 6687 if (Q1.getObjCGCAttr() == Q2.getObjCGCAttr()) 6688 Quals.setObjCGCAttr(Q1.getObjCGCAttr()); 6689 else if (T1->isVoidPointerType() || T2->isVoidPointerType()) 6690 assert(Steps.size() == 1); 6691 else 6692 return QualType(); 6693 6694 // Mismatched lifetime qualifiers never compatibly include each other. 6695 if (Q1.getObjCLifetime() == Q2.getObjCLifetime()) 6696 Quals.setObjCLifetime(Q1.getObjCLifetime()); 6697 else if (T1->isVoidPointerType() || T2->isVoidPointerType()) 6698 assert(Steps.size() == 1); 6699 else 6700 return QualType(); 6701 6702 Steps.back().Quals = Quals; 6703 if (Q1 != Quals || Q2 != Quals) 6704 NeedConstBefore = Steps.size() - 1; 6705 } 6706 6707 // FIXME: Can we unify the following with UnwrapSimilarTypes? 6708 const PointerType *Ptr1, *Ptr2; 6709 if ((Ptr1 = Composite1->getAs<PointerType>()) && 6710 (Ptr2 = Composite2->getAs<PointerType>())) { 6711 Composite1 = Ptr1->getPointeeType(); 6712 Composite2 = Ptr2->getPointeeType(); 6713 Steps.emplace_back(Step::Pointer); 6714 continue; 6715 } 6716 6717 const ObjCObjectPointerType *ObjPtr1, *ObjPtr2; 6718 if ((ObjPtr1 = Composite1->getAs<ObjCObjectPointerType>()) && 6719 (ObjPtr2 = Composite2->getAs<ObjCObjectPointerType>())) { 6720 Composite1 = ObjPtr1->getPointeeType(); 6721 Composite2 = ObjPtr2->getPointeeType(); 6722 Steps.emplace_back(Step::ObjCPointer); 6723 continue; 6724 } 6725 6726 const MemberPointerType *MemPtr1, *MemPtr2; 6727 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) && 6728 (MemPtr2 = Composite2->getAs<MemberPointerType>())) { 6729 Composite1 = MemPtr1->getPointeeType(); 6730 Composite2 = MemPtr2->getPointeeType(); 6731 6732 // At the top level, we can perform a base-to-derived pointer-to-member 6733 // conversion: 6734 // 6735 // - [...] where C1 is reference-related to C2 or C2 is 6736 // reference-related to C1 6737 // 6738 // (Note that the only kinds of reference-relatedness in scope here are 6739 // "same type or derived from".) At any other level, the class must 6740 // exactly match. 6741 const Type *Class = nullptr; 6742 QualType Cls1(MemPtr1->getClass(), 0); 6743 QualType Cls2(MemPtr2->getClass(), 0); 6744 if (Context.hasSameType(Cls1, Cls2)) 6745 Class = MemPtr1->getClass(); 6746 else if (Steps.empty()) 6747 Class = IsDerivedFrom(Loc, Cls1, Cls2) ? MemPtr1->getClass() : 6748 IsDerivedFrom(Loc, Cls2, Cls1) ? MemPtr2->getClass() : nullptr; 6749 if (!Class) 6750 return QualType(); 6751 6752 Steps.emplace_back(Step::MemberPointer, Class); 6753 continue; 6754 } 6755 6756 // Special case: at the top level, we can decompose an Objective-C pointer 6757 // and a 'cv void *'. Unify the qualifiers. 6758 if (Steps.empty() && ((Composite1->isVoidPointerType() && 6759 Composite2->isObjCObjectPointerType()) || 6760 (Composite1->isObjCObjectPointerType() && 6761 Composite2->isVoidPointerType()))) { 6762 Composite1 = Composite1->getPointeeType(); 6763 Composite2 = Composite2->getPointeeType(); 6764 Steps.emplace_back(Step::Pointer); 6765 continue; 6766 } 6767 6768 // FIXME: arrays 6769 6770 // FIXME: block pointer types? 6771 6772 // Cannot unwrap any more types. 6773 break; 6774 } 6775 6776 // - if T1 or T2 is "pointer to noexcept function" and the other type is 6777 // "pointer to function", where the function types are otherwise the same, 6778 // "pointer to function"; 6779 // - if T1 or T2 is "pointer to member of C1 of type function", the other 6780 // type is "pointer to member of C2 of type noexcept function", and C1 6781 // is reference-related to C2 or C2 is reference-related to C1, where 6782 // the function types are otherwise the same, "pointer to member of C2 of 6783 // type function" or "pointer to member of C1 of type function", 6784 // respectively; 6785 // 6786 // We also support 'noreturn' here, so as a Clang extension we generalize the 6787 // above to: 6788 // 6789 // - [Clang] If T1 and T2 are both of type "pointer to function" or 6790 // "pointer to member function" and the pointee types can be unified 6791 // by a function pointer conversion, that conversion is applied 6792 // before checking the following rules. 6793 // 6794 // We've already unwrapped down to the function types, and we want to merge 6795 // rather than just convert, so do this ourselves rather than calling 6796 // IsFunctionConversion. 6797 // 6798 // FIXME: In order to match the standard wording as closely as possible, we 6799 // currently only do this under a single level of pointers. Ideally, we would 6800 // allow this in general, and set NeedConstBefore to the relevant depth on 6801 // the side(s) where we changed anything. If we permit that, we should also 6802 // consider this conversion when determining type similarity and model it as 6803 // a qualification conversion. 6804 if (Steps.size() == 1) { 6805 if (auto *FPT1 = Composite1->getAs<FunctionProtoType>()) { 6806 if (auto *FPT2 = Composite2->getAs<FunctionProtoType>()) { 6807 FunctionProtoType::ExtProtoInfo EPI1 = FPT1->getExtProtoInfo(); 6808 FunctionProtoType::ExtProtoInfo EPI2 = FPT2->getExtProtoInfo(); 6809 6810 // The result is noreturn if both operands are. 6811 bool Noreturn = 6812 EPI1.ExtInfo.getNoReturn() && EPI2.ExtInfo.getNoReturn(); 6813 EPI1.ExtInfo = EPI1.ExtInfo.withNoReturn(Noreturn); 6814 EPI2.ExtInfo = EPI2.ExtInfo.withNoReturn(Noreturn); 6815 6816 // The result is nothrow if both operands are. 6817 SmallVector<QualType, 8> ExceptionTypeStorage; 6818 EPI1.ExceptionSpec = EPI2.ExceptionSpec = 6819 mergeExceptionSpecs(*this, EPI1.ExceptionSpec, EPI2.ExceptionSpec, 6820 ExceptionTypeStorage); 6821 6822 Composite1 = Context.getFunctionType(FPT1->getReturnType(), 6823 FPT1->getParamTypes(), EPI1); 6824 Composite2 = Context.getFunctionType(FPT2->getReturnType(), 6825 FPT2->getParamTypes(), EPI2); 6826 } 6827 } 6828 } 6829 6830 // There are some more conversions we can perform under exactly one pointer. 6831 if (Steps.size() == 1 && Steps.front().K == Step::Pointer && 6832 !Context.hasSameType(Composite1, Composite2)) { 6833 // - if T1 or T2 is "pointer to cv1 void" and the other type is 6834 // "pointer to cv2 T", where T is an object type or void, 6835 // "pointer to cv12 void", where cv12 is the union of cv1 and cv2; 6836 if (Composite1->isVoidType() && Composite2->isObjectType()) 6837 Composite2 = Composite1; 6838 else if (Composite2->isVoidType() && Composite1->isObjectType()) 6839 Composite1 = Composite2; 6840 // - if T1 is "pointer to cv1 C1" and T2 is "pointer to cv2 C2", where C1 6841 // is reference-related to C2 or C2 is reference-related to C1 (8.6.3), 6842 // the cv-combined type of T1 and T2 or the cv-combined type of T2 and 6843 // T1, respectively; 6844 // 6845 // The "similar type" handling covers all of this except for the "T1 is a 6846 // base class of T2" case in the definition of reference-related. 6847 else if (IsDerivedFrom(Loc, Composite1, Composite2)) 6848 Composite1 = Composite2; 6849 else if (IsDerivedFrom(Loc, Composite2, Composite1)) 6850 Composite2 = Composite1; 6851 } 6852 6853 // At this point, either the inner types are the same or we have failed to 6854 // find a composite pointer type. 6855 if (!Context.hasSameType(Composite1, Composite2)) 6856 return QualType(); 6857 6858 // Per C++ [conv.qual]p3, add 'const' to every level before the last 6859 // differing qualifier. 6860 for (unsigned I = 0; I != NeedConstBefore; ++I) 6861 Steps[I].Quals.addConst(); 6862 6863 // Rebuild the composite type. 6864 QualType Composite = Composite1; 6865 for (auto &S : llvm::reverse(Steps)) 6866 Composite = S.rebuild(Context, Composite); 6867 6868 if (ConvertArgs) { 6869 // Convert the expressions to the composite pointer type. 6870 InitializedEntity Entity = 6871 InitializedEntity::InitializeTemporary(Composite); 6872 InitializationKind Kind = 6873 InitializationKind::CreateCopy(Loc, SourceLocation()); 6874 6875 InitializationSequence E1ToC(*this, Entity, Kind, E1); 6876 if (!E1ToC) 6877 return QualType(); 6878 6879 InitializationSequence E2ToC(*this, Entity, Kind, E2); 6880 if (!E2ToC) 6881 return QualType(); 6882 6883 // FIXME: Let the caller know if these fail to avoid duplicate diagnostics. 6884 ExprResult E1Result = E1ToC.Perform(*this, Entity, Kind, E1); 6885 if (E1Result.isInvalid()) 6886 return QualType(); 6887 E1 = E1Result.get(); 6888 6889 ExprResult E2Result = E2ToC.Perform(*this, Entity, Kind, E2); 6890 if (E2Result.isInvalid()) 6891 return QualType(); 6892 E2 = E2Result.get(); 6893 } 6894 6895 return Composite; 6896 } 6897 6898 ExprResult Sema::MaybeBindToTemporary(Expr *E) { 6899 if (!E) 6900 return ExprError(); 6901 6902 assert(!isa<CXXBindTemporaryExpr>(E) && "Double-bound temporary?"); 6903 6904 // If the result is a glvalue, we shouldn't bind it. 6905 if (E->isGLValue()) 6906 return E; 6907 6908 // In ARC, calls that return a retainable type can return retained, 6909 // in which case we have to insert a consuming cast. 6910 if (getLangOpts().ObjCAutoRefCount && 6911 E->getType()->isObjCRetainableType()) { 6912 6913 bool ReturnsRetained; 6914 6915 // For actual calls, we compute this by examining the type of the 6916 // called value. 6917 if (CallExpr *Call = dyn_cast<CallExpr>(E)) { 6918 Expr *Callee = Call->getCallee()->IgnoreParens(); 6919 QualType T = Callee->getType(); 6920 6921 if (T == Context.BoundMemberTy) { 6922 // Handle pointer-to-members. 6923 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Callee)) 6924 T = BinOp->getRHS()->getType(); 6925 else if (MemberExpr *Mem = dyn_cast<MemberExpr>(Callee)) 6926 T = Mem->getMemberDecl()->getType(); 6927 } 6928 6929 if (const PointerType *Ptr = T->getAs<PointerType>()) 6930 T = Ptr->getPointeeType(); 6931 else if (const BlockPointerType *Ptr = T->getAs<BlockPointerType>()) 6932 T = Ptr->getPointeeType(); 6933 else if (const MemberPointerType *MemPtr = T->getAs<MemberPointerType>()) 6934 T = MemPtr->getPointeeType(); 6935 6936 auto *FTy = T->castAs<FunctionType>(); 6937 ReturnsRetained = FTy->getExtInfo().getProducesResult(); 6938 6939 // ActOnStmtExpr arranges things so that StmtExprs of retainable 6940 // type always produce a +1 object. 6941 } else if (isa<StmtExpr>(E)) { 6942 ReturnsRetained = true; 6943 6944 // We hit this case with the lambda conversion-to-block optimization; 6945 // we don't want any extra casts here. 6946 } else if (isa<CastExpr>(E) && 6947 isa<BlockExpr>(cast<CastExpr>(E)->getSubExpr())) { 6948 return E; 6949 6950 // For message sends and property references, we try to find an 6951 // actual method. FIXME: we should infer retention by selector in 6952 // cases where we don't have an actual method. 6953 } else { 6954 ObjCMethodDecl *D = nullptr; 6955 if (ObjCMessageExpr *Send = dyn_cast<ObjCMessageExpr>(E)) { 6956 D = Send->getMethodDecl(); 6957 } else if (ObjCBoxedExpr *BoxedExpr = dyn_cast<ObjCBoxedExpr>(E)) { 6958 D = BoxedExpr->getBoxingMethod(); 6959 } else if (ObjCArrayLiteral *ArrayLit = dyn_cast<ObjCArrayLiteral>(E)) { 6960 // Don't do reclaims if we're using the zero-element array 6961 // constant. 6962 if (ArrayLit->getNumElements() == 0 && 6963 Context.getLangOpts().ObjCRuntime.hasEmptyCollections()) 6964 return E; 6965 6966 D = ArrayLit->getArrayWithObjectsMethod(); 6967 } else if (ObjCDictionaryLiteral *DictLit 6968 = dyn_cast<ObjCDictionaryLiteral>(E)) { 6969 // Don't do reclaims if we're using the zero-element dictionary 6970 // constant. 6971 if (DictLit->getNumElements() == 0 && 6972 Context.getLangOpts().ObjCRuntime.hasEmptyCollections()) 6973 return E; 6974 6975 D = DictLit->getDictWithObjectsMethod(); 6976 } 6977 6978 ReturnsRetained = (D && D->hasAttr<NSReturnsRetainedAttr>()); 6979 6980 // Don't do reclaims on performSelector calls; despite their 6981 // return type, the invoked method doesn't necessarily actually 6982 // return an object. 6983 if (!ReturnsRetained && 6984 D && D->getMethodFamily() == OMF_performSelector) 6985 return E; 6986 } 6987 6988 // Don't reclaim an object of Class type. 6989 if (!ReturnsRetained && E->getType()->isObjCARCImplicitlyUnretainedType()) 6990 return E; 6991 6992 Cleanup.setExprNeedsCleanups(true); 6993 6994 CastKind ck = (ReturnsRetained ? CK_ARCConsumeObject 6995 : CK_ARCReclaimReturnedObject); 6996 return ImplicitCastExpr::Create(Context, E->getType(), ck, E, nullptr, 6997 VK_PRValue, FPOptionsOverride()); 6998 } 6999 7000 if (E->getType().isDestructedType() == QualType::DK_nontrivial_c_struct) 7001 Cleanup.setExprNeedsCleanups(true); 7002 7003 if (!getLangOpts().CPlusPlus) 7004 return E; 7005 7006 // Search for the base element type (cf. ASTContext::getBaseElementType) with 7007 // a fast path for the common case that the type is directly a RecordType. 7008 const Type *T = Context.getCanonicalType(E->getType().getTypePtr()); 7009 const RecordType *RT = nullptr; 7010 while (!RT) { 7011 switch (T->getTypeClass()) { 7012 case Type::Record: 7013 RT = cast<RecordType>(T); 7014 break; 7015 case Type::ConstantArray: 7016 case Type::IncompleteArray: 7017 case Type::VariableArray: 7018 case Type::DependentSizedArray: 7019 T = cast<ArrayType>(T)->getElementType().getTypePtr(); 7020 break; 7021 default: 7022 return E; 7023 } 7024 } 7025 7026 // That should be enough to guarantee that this type is complete, if we're 7027 // not processing a decltype expression. 7028 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); 7029 if (RD->isInvalidDecl() || RD->isDependentContext()) 7030 return E; 7031 7032 bool IsDecltype = ExprEvalContexts.back().ExprContext == 7033 ExpressionEvaluationContextRecord::EK_Decltype; 7034 CXXDestructorDecl *Destructor = IsDecltype ? nullptr : LookupDestructor(RD); 7035 7036 if (Destructor) { 7037 MarkFunctionReferenced(E->getExprLoc(), Destructor); 7038 CheckDestructorAccess(E->getExprLoc(), Destructor, 7039 PDiag(diag::err_access_dtor_temp) 7040 << E->getType()); 7041 if (DiagnoseUseOfDecl(Destructor, E->getExprLoc())) 7042 return ExprError(); 7043 7044 // If destructor is trivial, we can avoid the extra copy. 7045 if (Destructor->isTrivial()) 7046 return E; 7047 7048 // We need a cleanup, but we don't need to remember the temporary. 7049 Cleanup.setExprNeedsCleanups(true); 7050 } 7051 7052 CXXTemporary *Temp = CXXTemporary::Create(Context, Destructor); 7053 CXXBindTemporaryExpr *Bind = CXXBindTemporaryExpr::Create(Context, Temp, E); 7054 7055 if (IsDecltype) 7056 ExprEvalContexts.back().DelayedDecltypeBinds.push_back(Bind); 7057 7058 return Bind; 7059 } 7060 7061 ExprResult 7062 Sema::MaybeCreateExprWithCleanups(ExprResult SubExpr) { 7063 if (SubExpr.isInvalid()) 7064 return ExprError(); 7065 7066 return MaybeCreateExprWithCleanups(SubExpr.get()); 7067 } 7068 7069 Expr *Sema::MaybeCreateExprWithCleanups(Expr *SubExpr) { 7070 assert(SubExpr && "subexpression can't be null!"); 7071 7072 CleanupVarDeclMarking(); 7073 7074 unsigned FirstCleanup = ExprEvalContexts.back().NumCleanupObjects; 7075 assert(ExprCleanupObjects.size() >= FirstCleanup); 7076 assert(Cleanup.exprNeedsCleanups() || 7077 ExprCleanupObjects.size() == FirstCleanup); 7078 if (!Cleanup.exprNeedsCleanups()) 7079 return SubExpr; 7080 7081 auto Cleanups = llvm::makeArrayRef(ExprCleanupObjects.begin() + FirstCleanup, 7082 ExprCleanupObjects.size() - FirstCleanup); 7083 7084 auto *E = ExprWithCleanups::Create( 7085 Context, SubExpr, Cleanup.cleanupsHaveSideEffects(), Cleanups); 7086 DiscardCleanupsInEvaluationContext(); 7087 7088 return E; 7089 } 7090 7091 Stmt *Sema::MaybeCreateStmtWithCleanups(Stmt *SubStmt) { 7092 assert(SubStmt && "sub-statement can't be null!"); 7093 7094 CleanupVarDeclMarking(); 7095 7096 if (!Cleanup.exprNeedsCleanups()) 7097 return SubStmt; 7098 7099 // FIXME: In order to attach the temporaries, wrap the statement into 7100 // a StmtExpr; currently this is only used for asm statements. 7101 // This is hacky, either create a new CXXStmtWithTemporaries statement or 7102 // a new AsmStmtWithTemporaries. 7103 CompoundStmt *CompStmt = CompoundStmt::Create( 7104 Context, SubStmt, SourceLocation(), SourceLocation()); 7105 Expr *E = new (Context) 7106 StmtExpr(CompStmt, Context.VoidTy, SourceLocation(), SourceLocation(), 7107 /*FIXME TemplateDepth=*/0); 7108 return MaybeCreateExprWithCleanups(E); 7109 } 7110 7111 /// Process the expression contained within a decltype. For such expressions, 7112 /// certain semantic checks on temporaries are delayed until this point, and 7113 /// are omitted for the 'topmost' call in the decltype expression. If the 7114 /// topmost call bound a temporary, strip that temporary off the expression. 7115 ExprResult Sema::ActOnDecltypeExpression(Expr *E) { 7116 assert(ExprEvalContexts.back().ExprContext == 7117 ExpressionEvaluationContextRecord::EK_Decltype && 7118 "not in a decltype expression"); 7119 7120 ExprResult Result = CheckPlaceholderExpr(E); 7121 if (Result.isInvalid()) 7122 return ExprError(); 7123 E = Result.get(); 7124 7125 // C++11 [expr.call]p11: 7126 // If a function call is a prvalue of object type, 7127 // -- if the function call is either 7128 // -- the operand of a decltype-specifier, or 7129 // -- the right operand of a comma operator that is the operand of a 7130 // decltype-specifier, 7131 // a temporary object is not introduced for the prvalue. 7132 7133 // Recursively rebuild ParenExprs and comma expressions to strip out the 7134 // outermost CXXBindTemporaryExpr, if any. 7135 if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) { 7136 ExprResult SubExpr = ActOnDecltypeExpression(PE->getSubExpr()); 7137 if (SubExpr.isInvalid()) 7138 return ExprError(); 7139 if (SubExpr.get() == PE->getSubExpr()) 7140 return E; 7141 return ActOnParenExpr(PE->getLParen(), PE->getRParen(), SubExpr.get()); 7142 } 7143 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 7144 if (BO->getOpcode() == BO_Comma) { 7145 ExprResult RHS = ActOnDecltypeExpression(BO->getRHS()); 7146 if (RHS.isInvalid()) 7147 return ExprError(); 7148 if (RHS.get() == BO->getRHS()) 7149 return E; 7150 return BinaryOperator::Create(Context, BO->getLHS(), RHS.get(), BO_Comma, 7151 BO->getType(), BO->getValueKind(), 7152 BO->getObjectKind(), BO->getOperatorLoc(), 7153 BO->getFPFeatures(getLangOpts())); 7154 } 7155 } 7156 7157 CXXBindTemporaryExpr *TopBind = dyn_cast<CXXBindTemporaryExpr>(E); 7158 CallExpr *TopCall = TopBind ? dyn_cast<CallExpr>(TopBind->getSubExpr()) 7159 : nullptr; 7160 if (TopCall) 7161 E = TopCall; 7162 else 7163 TopBind = nullptr; 7164 7165 // Disable the special decltype handling now. 7166 ExprEvalContexts.back().ExprContext = 7167 ExpressionEvaluationContextRecord::EK_Other; 7168 7169 Result = CheckUnevaluatedOperand(E); 7170 if (Result.isInvalid()) 7171 return ExprError(); 7172 E = Result.get(); 7173 7174 // In MS mode, don't perform any extra checking of call return types within a 7175 // decltype expression. 7176 if (getLangOpts().MSVCCompat) 7177 return E; 7178 7179 // Perform the semantic checks we delayed until this point. 7180 for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeCalls.size(); 7181 I != N; ++I) { 7182 CallExpr *Call = ExprEvalContexts.back().DelayedDecltypeCalls[I]; 7183 if (Call == TopCall) 7184 continue; 7185 7186 if (CheckCallReturnType(Call->getCallReturnType(Context), 7187 Call->getBeginLoc(), Call, Call->getDirectCallee())) 7188 return ExprError(); 7189 } 7190 7191 // Now all relevant types are complete, check the destructors are accessible 7192 // and non-deleted, and annotate them on the temporaries. 7193 for (unsigned I = 0, N = ExprEvalContexts.back().DelayedDecltypeBinds.size(); 7194 I != N; ++I) { 7195 CXXBindTemporaryExpr *Bind = 7196 ExprEvalContexts.back().DelayedDecltypeBinds[I]; 7197 if (Bind == TopBind) 7198 continue; 7199 7200 CXXTemporary *Temp = Bind->getTemporary(); 7201 7202 CXXRecordDecl *RD = 7203 Bind->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); 7204 CXXDestructorDecl *Destructor = LookupDestructor(RD); 7205 Temp->setDestructor(Destructor); 7206 7207 MarkFunctionReferenced(Bind->getExprLoc(), Destructor); 7208 CheckDestructorAccess(Bind->getExprLoc(), Destructor, 7209 PDiag(diag::err_access_dtor_temp) 7210 << Bind->getType()); 7211 if (DiagnoseUseOfDecl(Destructor, Bind->getExprLoc())) 7212 return ExprError(); 7213 7214 // We need a cleanup, but we don't need to remember the temporary. 7215 Cleanup.setExprNeedsCleanups(true); 7216 } 7217 7218 // Possibly strip off the top CXXBindTemporaryExpr. 7219 return E; 7220 } 7221 7222 /// Note a set of 'operator->' functions that were used for a member access. 7223 static void noteOperatorArrows(Sema &S, 7224 ArrayRef<FunctionDecl *> OperatorArrows) { 7225 unsigned SkipStart = OperatorArrows.size(), SkipCount = 0; 7226 // FIXME: Make this configurable? 7227 unsigned Limit = 9; 7228 if (OperatorArrows.size() > Limit) { 7229 // Produce Limit-1 normal notes and one 'skipping' note. 7230 SkipStart = (Limit - 1) / 2 + (Limit - 1) % 2; 7231 SkipCount = OperatorArrows.size() - (Limit - 1); 7232 } 7233 7234 for (unsigned I = 0; I < OperatorArrows.size(); /**/) { 7235 if (I == SkipStart) { 7236 S.Diag(OperatorArrows[I]->getLocation(), 7237 diag::note_operator_arrows_suppressed) 7238 << SkipCount; 7239 I += SkipCount; 7240 } else { 7241 S.Diag(OperatorArrows[I]->getLocation(), diag::note_operator_arrow_here) 7242 << OperatorArrows[I]->getCallResultType(); 7243 ++I; 7244 } 7245 } 7246 } 7247 7248 ExprResult Sema::ActOnStartCXXMemberReference(Scope *S, Expr *Base, 7249 SourceLocation OpLoc, 7250 tok::TokenKind OpKind, 7251 ParsedType &ObjectType, 7252 bool &MayBePseudoDestructor) { 7253 // Since this might be a postfix expression, get rid of ParenListExprs. 7254 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base); 7255 if (Result.isInvalid()) return ExprError(); 7256 Base = Result.get(); 7257 7258 Result = CheckPlaceholderExpr(Base); 7259 if (Result.isInvalid()) return ExprError(); 7260 Base = Result.get(); 7261 7262 QualType BaseType = Base->getType(); 7263 MayBePseudoDestructor = false; 7264 if (BaseType->isDependentType()) { 7265 // If we have a pointer to a dependent type and are using the -> operator, 7266 // the object type is the type that the pointer points to. We might still 7267 // have enough information about that type to do something useful. 7268 if (OpKind == tok::arrow) 7269 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) 7270 BaseType = Ptr->getPointeeType(); 7271 7272 ObjectType = ParsedType::make(BaseType); 7273 MayBePseudoDestructor = true; 7274 return Base; 7275 } 7276 7277 // C++ [over.match.oper]p8: 7278 // [...] When operator->returns, the operator-> is applied to the value 7279 // returned, with the original second operand. 7280 if (OpKind == tok::arrow) { 7281 QualType StartingType = BaseType; 7282 bool NoArrowOperatorFound = false; 7283 bool FirstIteration = true; 7284 FunctionDecl *CurFD = dyn_cast<FunctionDecl>(CurContext); 7285 // The set of types we've considered so far. 7286 llvm::SmallPtrSet<CanQualType,8> CTypes; 7287 SmallVector<FunctionDecl*, 8> OperatorArrows; 7288 CTypes.insert(Context.getCanonicalType(BaseType)); 7289 7290 while (BaseType->isRecordType()) { 7291 if (OperatorArrows.size() >= getLangOpts().ArrowDepth) { 7292 Diag(OpLoc, diag::err_operator_arrow_depth_exceeded) 7293 << StartingType << getLangOpts().ArrowDepth << Base->getSourceRange(); 7294 noteOperatorArrows(*this, OperatorArrows); 7295 Diag(OpLoc, diag::note_operator_arrow_depth) 7296 << getLangOpts().ArrowDepth; 7297 return ExprError(); 7298 } 7299 7300 Result = BuildOverloadedArrowExpr( 7301 S, Base, OpLoc, 7302 // When in a template specialization and on the first loop iteration, 7303 // potentially give the default diagnostic (with the fixit in a 7304 // separate note) instead of having the error reported back to here 7305 // and giving a diagnostic with a fixit attached to the error itself. 7306 (FirstIteration && CurFD && CurFD->isFunctionTemplateSpecialization()) 7307 ? nullptr 7308 : &NoArrowOperatorFound); 7309 if (Result.isInvalid()) { 7310 if (NoArrowOperatorFound) { 7311 if (FirstIteration) { 7312 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion) 7313 << BaseType << 1 << Base->getSourceRange() 7314 << FixItHint::CreateReplacement(OpLoc, "."); 7315 OpKind = tok::period; 7316 break; 7317 } 7318 Diag(OpLoc, diag::err_typecheck_member_reference_arrow) 7319 << BaseType << Base->getSourceRange(); 7320 CallExpr *CE = dyn_cast<CallExpr>(Base); 7321 if (Decl *CD = (CE ? CE->getCalleeDecl() : nullptr)) { 7322 Diag(CD->getBeginLoc(), 7323 diag::note_member_reference_arrow_from_operator_arrow); 7324 } 7325 } 7326 return ExprError(); 7327 } 7328 Base = Result.get(); 7329 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(Base)) 7330 OperatorArrows.push_back(OpCall->getDirectCallee()); 7331 BaseType = Base->getType(); 7332 CanQualType CBaseType = Context.getCanonicalType(BaseType); 7333 if (!CTypes.insert(CBaseType).second) { 7334 Diag(OpLoc, diag::err_operator_arrow_circular) << StartingType; 7335 noteOperatorArrows(*this, OperatorArrows); 7336 return ExprError(); 7337 } 7338 FirstIteration = false; 7339 } 7340 7341 if (OpKind == tok::arrow) { 7342 if (BaseType->isPointerType()) 7343 BaseType = BaseType->getPointeeType(); 7344 else if (auto *AT = Context.getAsArrayType(BaseType)) 7345 BaseType = AT->getElementType(); 7346 } 7347 } 7348 7349 // Objective-C properties allow "." access on Objective-C pointer types, 7350 // so adjust the base type to the object type itself. 7351 if (BaseType->isObjCObjectPointerType()) 7352 BaseType = BaseType->getPointeeType(); 7353 7354 // C++ [basic.lookup.classref]p2: 7355 // [...] If the type of the object expression is of pointer to scalar 7356 // type, the unqualified-id is looked up in the context of the complete 7357 // postfix-expression. 7358 // 7359 // This also indicates that we could be parsing a pseudo-destructor-name. 7360 // Note that Objective-C class and object types can be pseudo-destructor 7361 // expressions or normal member (ivar or property) access expressions, and 7362 // it's legal for the type to be incomplete if this is a pseudo-destructor 7363 // call. We'll do more incomplete-type checks later in the lookup process, 7364 // so just skip this check for ObjC types. 7365 if (!BaseType->isRecordType()) { 7366 ObjectType = ParsedType::make(BaseType); 7367 MayBePseudoDestructor = true; 7368 return Base; 7369 } 7370 7371 // The object type must be complete (or dependent), or 7372 // C++11 [expr.prim.general]p3: 7373 // Unlike the object expression in other contexts, *this is not required to 7374 // be of complete type for purposes of class member access (5.2.5) outside 7375 // the member function body. 7376 if (!BaseType->isDependentType() && 7377 !isThisOutsideMemberFunctionBody(BaseType) && 7378 RequireCompleteType(OpLoc, BaseType, diag::err_incomplete_member_access)) 7379 return ExprError(); 7380 7381 // C++ [basic.lookup.classref]p2: 7382 // If the id-expression in a class member access (5.2.5) is an 7383 // unqualified-id, and the type of the object expression is of a class 7384 // type C (or of pointer to a class type C), the unqualified-id is looked 7385 // up in the scope of class C. [...] 7386 ObjectType = ParsedType::make(BaseType); 7387 return Base; 7388 } 7389 7390 static bool CheckArrow(Sema &S, QualType &ObjectType, Expr *&Base, 7391 tok::TokenKind &OpKind, SourceLocation OpLoc) { 7392 if (Base->hasPlaceholderType()) { 7393 ExprResult result = S.CheckPlaceholderExpr(Base); 7394 if (result.isInvalid()) return true; 7395 Base = result.get(); 7396 } 7397 ObjectType = Base->getType(); 7398 7399 // C++ [expr.pseudo]p2: 7400 // The left-hand side of the dot operator shall be of scalar type. The 7401 // left-hand side of the arrow operator shall be of pointer to scalar type. 7402 // This scalar type is the object type. 7403 // Note that this is rather different from the normal handling for the 7404 // arrow operator. 7405 if (OpKind == tok::arrow) { 7406 // The operator requires a prvalue, so perform lvalue conversions. 7407 // Only do this if we might plausibly end with a pointer, as otherwise 7408 // this was likely to be intended to be a '.'. 7409 if (ObjectType->isPointerType() || ObjectType->isArrayType() || 7410 ObjectType->isFunctionType()) { 7411 ExprResult BaseResult = S.DefaultFunctionArrayLvalueConversion(Base); 7412 if (BaseResult.isInvalid()) 7413 return true; 7414 Base = BaseResult.get(); 7415 ObjectType = Base->getType(); 7416 } 7417 7418 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) { 7419 ObjectType = Ptr->getPointeeType(); 7420 } else if (!Base->isTypeDependent()) { 7421 // The user wrote "p->" when they probably meant "p."; fix it. 7422 S.Diag(OpLoc, diag::err_typecheck_member_reference_suggestion) 7423 << ObjectType << true 7424 << FixItHint::CreateReplacement(OpLoc, "."); 7425 if (S.isSFINAEContext()) 7426 return true; 7427 7428 OpKind = tok::period; 7429 } 7430 } 7431 7432 return false; 7433 } 7434 7435 /// Check if it's ok to try and recover dot pseudo destructor calls on 7436 /// pointer objects. 7437 static bool 7438 canRecoverDotPseudoDestructorCallsOnPointerObjects(Sema &SemaRef, 7439 QualType DestructedType) { 7440 // If this is a record type, check if its destructor is callable. 7441 if (auto *RD = DestructedType->getAsCXXRecordDecl()) { 7442 if (RD->hasDefinition()) 7443 if (CXXDestructorDecl *D = SemaRef.LookupDestructor(RD)) 7444 return SemaRef.CanUseDecl(D, /*TreatUnavailableAsInvalid=*/false); 7445 return false; 7446 } 7447 7448 // Otherwise, check if it's a type for which it's valid to use a pseudo-dtor. 7449 return DestructedType->isDependentType() || DestructedType->isScalarType() || 7450 DestructedType->isVectorType(); 7451 } 7452 7453 ExprResult Sema::BuildPseudoDestructorExpr(Expr *Base, 7454 SourceLocation OpLoc, 7455 tok::TokenKind OpKind, 7456 const CXXScopeSpec &SS, 7457 TypeSourceInfo *ScopeTypeInfo, 7458 SourceLocation CCLoc, 7459 SourceLocation TildeLoc, 7460 PseudoDestructorTypeStorage Destructed) { 7461 TypeSourceInfo *DestructedTypeInfo = Destructed.getTypeSourceInfo(); 7462 7463 QualType ObjectType; 7464 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc)) 7465 return ExprError(); 7466 7467 if (!ObjectType->isDependentType() && !ObjectType->isScalarType() && 7468 !ObjectType->isVectorType()) { 7469 if (getLangOpts().MSVCCompat && ObjectType->isVoidType()) 7470 Diag(OpLoc, diag::ext_pseudo_dtor_on_void) << Base->getSourceRange(); 7471 else { 7472 Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar) 7473 << ObjectType << Base->getSourceRange(); 7474 return ExprError(); 7475 } 7476 } 7477 7478 // C++ [expr.pseudo]p2: 7479 // [...] The cv-unqualified versions of the object type and of the type 7480 // designated by the pseudo-destructor-name shall be the same type. 7481 if (DestructedTypeInfo) { 7482 QualType DestructedType = DestructedTypeInfo->getType(); 7483 SourceLocation DestructedTypeStart 7484 = DestructedTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(); 7485 if (!DestructedType->isDependentType() && !ObjectType->isDependentType()) { 7486 if (!Context.hasSameUnqualifiedType(DestructedType, ObjectType)) { 7487 // Detect dot pseudo destructor calls on pointer objects, e.g.: 7488 // Foo *foo; 7489 // foo.~Foo(); 7490 if (OpKind == tok::period && ObjectType->isPointerType() && 7491 Context.hasSameUnqualifiedType(DestructedType, 7492 ObjectType->getPointeeType())) { 7493 auto Diagnostic = 7494 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion) 7495 << ObjectType << /*IsArrow=*/0 << Base->getSourceRange(); 7496 7497 // Issue a fixit only when the destructor is valid. 7498 if (canRecoverDotPseudoDestructorCallsOnPointerObjects( 7499 *this, DestructedType)) 7500 Diagnostic << FixItHint::CreateReplacement(OpLoc, "->"); 7501 7502 // Recover by setting the object type to the destructed type and the 7503 // operator to '->'. 7504 ObjectType = DestructedType; 7505 OpKind = tok::arrow; 7506 } else { 7507 Diag(DestructedTypeStart, diag::err_pseudo_dtor_type_mismatch) 7508 << ObjectType << DestructedType << Base->getSourceRange() 7509 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange(); 7510 7511 // Recover by setting the destructed type to the object type. 7512 DestructedType = ObjectType; 7513 DestructedTypeInfo = 7514 Context.getTrivialTypeSourceInfo(ObjectType, DestructedTypeStart); 7515 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo); 7516 } 7517 } else if (DestructedType.getObjCLifetime() != 7518 ObjectType.getObjCLifetime()) { 7519 7520 if (DestructedType.getObjCLifetime() == Qualifiers::OCL_None) { 7521 // Okay: just pretend that the user provided the correctly-qualified 7522 // type. 7523 } else { 7524 Diag(DestructedTypeStart, diag::err_arc_pseudo_dtor_inconstant_quals) 7525 << ObjectType << DestructedType << Base->getSourceRange() 7526 << DestructedTypeInfo->getTypeLoc().getLocalSourceRange(); 7527 } 7528 7529 // Recover by setting the destructed type to the object type. 7530 DestructedType = ObjectType; 7531 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(ObjectType, 7532 DestructedTypeStart); 7533 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo); 7534 } 7535 } 7536 } 7537 7538 // C++ [expr.pseudo]p2: 7539 // [...] Furthermore, the two type-names in a pseudo-destructor-name of the 7540 // form 7541 // 7542 // ::[opt] nested-name-specifier[opt] type-name :: ~ type-name 7543 // 7544 // shall designate the same scalar type. 7545 if (ScopeTypeInfo) { 7546 QualType ScopeType = ScopeTypeInfo->getType(); 7547 if (!ScopeType->isDependentType() && !ObjectType->isDependentType() && 7548 !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) { 7549 7550 Diag(ScopeTypeInfo->getTypeLoc().getLocalSourceRange().getBegin(), 7551 diag::err_pseudo_dtor_type_mismatch) 7552 << ObjectType << ScopeType << Base->getSourceRange() 7553 << ScopeTypeInfo->getTypeLoc().getLocalSourceRange(); 7554 7555 ScopeType = QualType(); 7556 ScopeTypeInfo = nullptr; 7557 } 7558 } 7559 7560 Expr *Result 7561 = new (Context) CXXPseudoDestructorExpr(Context, Base, 7562 OpKind == tok::arrow, OpLoc, 7563 SS.getWithLocInContext(Context), 7564 ScopeTypeInfo, 7565 CCLoc, 7566 TildeLoc, 7567 Destructed); 7568 7569 return Result; 7570 } 7571 7572 ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base, 7573 SourceLocation OpLoc, 7574 tok::TokenKind OpKind, 7575 CXXScopeSpec &SS, 7576 UnqualifiedId &FirstTypeName, 7577 SourceLocation CCLoc, 7578 SourceLocation TildeLoc, 7579 UnqualifiedId &SecondTypeName) { 7580 assert((FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || 7581 FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) && 7582 "Invalid first type name in pseudo-destructor"); 7583 assert((SecondTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || 7584 SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) && 7585 "Invalid second type name in pseudo-destructor"); 7586 7587 QualType ObjectType; 7588 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc)) 7589 return ExprError(); 7590 7591 // Compute the object type that we should use for name lookup purposes. Only 7592 // record types and dependent types matter. 7593 ParsedType ObjectTypePtrForLookup; 7594 if (!SS.isSet()) { 7595 if (ObjectType->isRecordType()) 7596 ObjectTypePtrForLookup = ParsedType::make(ObjectType); 7597 else if (ObjectType->isDependentType()) 7598 ObjectTypePtrForLookup = ParsedType::make(Context.DependentTy); 7599 } 7600 7601 // Convert the name of the type being destructed (following the ~) into a 7602 // type (with source-location information). 7603 QualType DestructedType; 7604 TypeSourceInfo *DestructedTypeInfo = nullptr; 7605 PseudoDestructorTypeStorage Destructed; 7606 if (SecondTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) { 7607 ParsedType T = getTypeName(*SecondTypeName.Identifier, 7608 SecondTypeName.StartLocation, 7609 S, &SS, true, false, ObjectTypePtrForLookup, 7610 /*IsCtorOrDtorName*/true); 7611 if (!T && 7612 ((SS.isSet() && !computeDeclContext(SS, false)) || 7613 (!SS.isSet() && ObjectType->isDependentType()))) { 7614 // The name of the type being destroyed is a dependent name, and we 7615 // couldn't find anything useful in scope. Just store the identifier and 7616 // it's location, and we'll perform (qualified) name lookup again at 7617 // template instantiation time. 7618 Destructed = PseudoDestructorTypeStorage(SecondTypeName.Identifier, 7619 SecondTypeName.StartLocation); 7620 } else if (!T) { 7621 Diag(SecondTypeName.StartLocation, 7622 diag::err_pseudo_dtor_destructor_non_type) 7623 << SecondTypeName.Identifier << ObjectType; 7624 if (isSFINAEContext()) 7625 return ExprError(); 7626 7627 // Recover by assuming we had the right type all along. 7628 DestructedType = ObjectType; 7629 } else 7630 DestructedType = GetTypeFromParser(T, &DestructedTypeInfo); 7631 } else { 7632 // Resolve the template-id to a type. 7633 TemplateIdAnnotation *TemplateId = SecondTypeName.TemplateId; 7634 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), 7635 TemplateId->NumArgs); 7636 TypeResult T = ActOnTemplateIdType(S, 7637 SS, 7638 TemplateId->TemplateKWLoc, 7639 TemplateId->Template, 7640 TemplateId->Name, 7641 TemplateId->TemplateNameLoc, 7642 TemplateId->LAngleLoc, 7643 TemplateArgsPtr, 7644 TemplateId->RAngleLoc, 7645 /*IsCtorOrDtorName*/true); 7646 if (T.isInvalid() || !T.get()) { 7647 // Recover by assuming we had the right type all along. 7648 DestructedType = ObjectType; 7649 } else 7650 DestructedType = GetTypeFromParser(T.get(), &DestructedTypeInfo); 7651 } 7652 7653 // If we've performed some kind of recovery, (re-)build the type source 7654 // information. 7655 if (!DestructedType.isNull()) { 7656 if (!DestructedTypeInfo) 7657 DestructedTypeInfo = Context.getTrivialTypeSourceInfo(DestructedType, 7658 SecondTypeName.StartLocation); 7659 Destructed = PseudoDestructorTypeStorage(DestructedTypeInfo); 7660 } 7661 7662 // Convert the name of the scope type (the type prior to '::') into a type. 7663 TypeSourceInfo *ScopeTypeInfo = nullptr; 7664 QualType ScopeType; 7665 if (FirstTypeName.getKind() == UnqualifiedIdKind::IK_TemplateId || 7666 FirstTypeName.Identifier) { 7667 if (FirstTypeName.getKind() == UnqualifiedIdKind::IK_Identifier) { 7668 ParsedType T = getTypeName(*FirstTypeName.Identifier, 7669 FirstTypeName.StartLocation, 7670 S, &SS, true, false, ObjectTypePtrForLookup, 7671 /*IsCtorOrDtorName*/true); 7672 if (!T) { 7673 Diag(FirstTypeName.StartLocation, 7674 diag::err_pseudo_dtor_destructor_non_type) 7675 << FirstTypeName.Identifier << ObjectType; 7676 7677 if (isSFINAEContext()) 7678 return ExprError(); 7679 7680 // Just drop this type. It's unnecessary anyway. 7681 ScopeType = QualType(); 7682 } else 7683 ScopeType = GetTypeFromParser(T, &ScopeTypeInfo); 7684 } else { 7685 // Resolve the template-id to a type. 7686 TemplateIdAnnotation *TemplateId = FirstTypeName.TemplateId; 7687 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(), 7688 TemplateId->NumArgs); 7689 TypeResult T = ActOnTemplateIdType(S, 7690 SS, 7691 TemplateId->TemplateKWLoc, 7692 TemplateId->Template, 7693 TemplateId->Name, 7694 TemplateId->TemplateNameLoc, 7695 TemplateId->LAngleLoc, 7696 TemplateArgsPtr, 7697 TemplateId->RAngleLoc, 7698 /*IsCtorOrDtorName*/true); 7699 if (T.isInvalid() || !T.get()) { 7700 // Recover by dropping this type. 7701 ScopeType = QualType(); 7702 } else 7703 ScopeType = GetTypeFromParser(T.get(), &ScopeTypeInfo); 7704 } 7705 } 7706 7707 if (!ScopeType.isNull() && !ScopeTypeInfo) 7708 ScopeTypeInfo = Context.getTrivialTypeSourceInfo(ScopeType, 7709 FirstTypeName.StartLocation); 7710 7711 7712 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, SS, 7713 ScopeTypeInfo, CCLoc, TildeLoc, 7714 Destructed); 7715 } 7716 7717 ExprResult Sema::ActOnPseudoDestructorExpr(Scope *S, Expr *Base, 7718 SourceLocation OpLoc, 7719 tok::TokenKind OpKind, 7720 SourceLocation TildeLoc, 7721 const DeclSpec& DS) { 7722 QualType ObjectType; 7723 if (CheckArrow(*this, ObjectType, Base, OpKind, OpLoc)) 7724 return ExprError(); 7725 7726 if (DS.getTypeSpecType() == DeclSpec::TST_decltype_auto) { 7727 Diag(DS.getTypeSpecTypeLoc(), diag::err_decltype_auto_invalid); 7728 return true; 7729 } 7730 7731 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc(), 7732 false); 7733 7734 TypeLocBuilder TLB; 7735 DecltypeTypeLoc DecltypeTL = TLB.push<DecltypeTypeLoc>(T); 7736 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc()); 7737 TypeSourceInfo *DestructedTypeInfo = TLB.getTypeSourceInfo(Context, T); 7738 PseudoDestructorTypeStorage Destructed(DestructedTypeInfo); 7739 7740 return BuildPseudoDestructorExpr(Base, OpLoc, OpKind, CXXScopeSpec(), 7741 nullptr, SourceLocation(), TildeLoc, 7742 Destructed); 7743 } 7744 7745 ExprResult Sema::BuildCXXMemberCallExpr(Expr *E, NamedDecl *FoundDecl, 7746 CXXConversionDecl *Method, 7747 bool HadMultipleCandidates) { 7748 // Convert the expression to match the conversion function's implicit object 7749 // parameter. 7750 ExprResult Exp = PerformObjectArgumentInitialization(E, /*Qualifier=*/nullptr, 7751 FoundDecl, Method); 7752 if (Exp.isInvalid()) 7753 return true; 7754 7755 if (Method->getParent()->isLambda() && 7756 Method->getConversionType()->isBlockPointerType()) { 7757 // This is a lambda conversion to block pointer; check if the argument 7758 // was a LambdaExpr. 7759 Expr *SubE = E; 7760 CastExpr *CE = dyn_cast<CastExpr>(SubE); 7761 if (CE && CE->getCastKind() == CK_NoOp) 7762 SubE = CE->getSubExpr(); 7763 SubE = SubE->IgnoreParens(); 7764 if (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(SubE)) 7765 SubE = BE->getSubExpr(); 7766 if (isa<LambdaExpr>(SubE)) { 7767 // For the conversion to block pointer on a lambda expression, we 7768 // construct a special BlockLiteral instead; this doesn't really make 7769 // a difference in ARC, but outside of ARC the resulting block literal 7770 // follows the normal lifetime rules for block literals instead of being 7771 // autoreleased. 7772 PushExpressionEvaluationContext( 7773 ExpressionEvaluationContext::PotentiallyEvaluated); 7774 ExprResult BlockExp = BuildBlockForLambdaConversion( 7775 Exp.get()->getExprLoc(), Exp.get()->getExprLoc(), Method, Exp.get()); 7776 PopExpressionEvaluationContext(); 7777 7778 // FIXME: This note should be produced by a CodeSynthesisContext. 7779 if (BlockExp.isInvalid()) 7780 Diag(Exp.get()->getExprLoc(), diag::note_lambda_to_block_conv); 7781 return BlockExp; 7782 } 7783 } 7784 7785 MemberExpr *ME = 7786 BuildMemberExpr(Exp.get(), /*IsArrow=*/false, SourceLocation(), 7787 NestedNameSpecifierLoc(), SourceLocation(), Method, 7788 DeclAccessPair::make(FoundDecl, FoundDecl->getAccess()), 7789 HadMultipleCandidates, DeclarationNameInfo(), 7790 Context.BoundMemberTy, VK_PRValue, OK_Ordinary); 7791 7792 QualType ResultType = Method->getReturnType(); 7793 ExprValueKind VK = Expr::getValueKindForType(ResultType); 7794 ResultType = ResultType.getNonLValueExprType(Context); 7795 7796 CXXMemberCallExpr *CE = CXXMemberCallExpr::Create( 7797 Context, ME, /*Args=*/{}, ResultType, VK, Exp.get()->getEndLoc(), 7798 CurFPFeatureOverrides()); 7799 7800 if (CheckFunctionCall(Method, CE, 7801 Method->getType()->castAs<FunctionProtoType>())) 7802 return ExprError(); 7803 7804 return CheckForImmediateInvocation(CE, CE->getMethodDecl()); 7805 } 7806 7807 ExprResult Sema::BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand, 7808 SourceLocation RParen) { 7809 // If the operand is an unresolved lookup expression, the expression is ill- 7810 // formed per [over.over]p1, because overloaded function names cannot be used 7811 // without arguments except in explicit contexts. 7812 ExprResult R = CheckPlaceholderExpr(Operand); 7813 if (R.isInvalid()) 7814 return R; 7815 7816 R = CheckUnevaluatedOperand(R.get()); 7817 if (R.isInvalid()) 7818 return ExprError(); 7819 7820 Operand = R.get(); 7821 7822 if (!inTemplateInstantiation() && !Operand->isInstantiationDependent() && 7823 Operand->HasSideEffects(Context, false)) { 7824 // The expression operand for noexcept is in an unevaluated expression 7825 // context, so side effects could result in unintended consequences. 7826 Diag(Operand->getExprLoc(), diag::warn_side_effects_unevaluated_context); 7827 } 7828 7829 CanThrowResult CanThrow = canThrow(Operand); 7830 return new (Context) 7831 CXXNoexceptExpr(Context.BoolTy, Operand, CanThrow, KeyLoc, RParen); 7832 } 7833 7834 ExprResult Sema::ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation, 7835 Expr *Operand, SourceLocation RParen) { 7836 return BuildCXXNoexceptExpr(KeyLoc, Operand, RParen); 7837 } 7838 7839 static void MaybeDecrementCount( 7840 Expr *E, llvm::DenseMap<const VarDecl *, int> &RefsMinusAssignments) { 7841 DeclRefExpr *LHS = nullptr; 7842 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { 7843 if (BO->getLHS()->getType()->isDependentType() || 7844 BO->getRHS()->getType()->isDependentType()) { 7845 if (BO->getOpcode() != BO_Assign) 7846 return; 7847 } else if (!BO->isAssignmentOp()) 7848 return; 7849 LHS = dyn_cast<DeclRefExpr>(BO->getLHS()); 7850 } else if (CXXOperatorCallExpr *COCE = dyn_cast<CXXOperatorCallExpr>(E)) { 7851 if (COCE->getOperator() != OO_Equal) 7852 return; 7853 LHS = dyn_cast<DeclRefExpr>(COCE->getArg(0)); 7854 } 7855 if (!LHS) 7856 return; 7857 VarDecl *VD = dyn_cast<VarDecl>(LHS->getDecl()); 7858 if (!VD) 7859 return; 7860 auto iter = RefsMinusAssignments.find(VD); 7861 if (iter == RefsMinusAssignments.end()) 7862 return; 7863 iter->getSecond()--; 7864 } 7865 7866 /// Perform the conversions required for an expression used in a 7867 /// context that ignores the result. 7868 ExprResult Sema::IgnoredValueConversions(Expr *E) { 7869 MaybeDecrementCount(E, RefsMinusAssignments); 7870 7871 if (E->hasPlaceholderType()) { 7872 ExprResult result = CheckPlaceholderExpr(E); 7873 if (result.isInvalid()) return E; 7874 E = result.get(); 7875 } 7876 7877 // C99 6.3.2.1: 7878 // [Except in specific positions,] an lvalue that does not have 7879 // array type is converted to the value stored in the 7880 // designated object (and is no longer an lvalue). 7881 if (E->isPRValue()) { 7882 // In C, function designators (i.e. expressions of function type) 7883 // are r-values, but we still want to do function-to-pointer decay 7884 // on them. This is both technically correct and convenient for 7885 // some clients. 7886 if (!getLangOpts().CPlusPlus && E->getType()->isFunctionType()) 7887 return DefaultFunctionArrayConversion(E); 7888 7889 return E; 7890 } 7891 7892 if (getLangOpts().CPlusPlus) { 7893 // The C++11 standard defines the notion of a discarded-value expression; 7894 // normally, we don't need to do anything to handle it, but if it is a 7895 // volatile lvalue with a special form, we perform an lvalue-to-rvalue 7896 // conversion. 7897 if (getLangOpts().CPlusPlus11 && E->isReadIfDiscardedInCPlusPlus11()) { 7898 ExprResult Res = DefaultLvalueConversion(E); 7899 if (Res.isInvalid()) 7900 return E; 7901 E = Res.get(); 7902 } else { 7903 // Per C++2a [expr.ass]p5, a volatile assignment is not deprecated if 7904 // it occurs as a discarded-value expression. 7905 CheckUnusedVolatileAssignment(E); 7906 } 7907 7908 // C++1z: 7909 // If the expression is a prvalue after this optional conversion, the 7910 // temporary materialization conversion is applied. 7911 // 7912 // We skip this step: IR generation is able to synthesize the storage for 7913 // itself in the aggregate case, and adding the extra node to the AST is 7914 // just clutter. 7915 // FIXME: We don't emit lifetime markers for the temporaries due to this. 7916 // FIXME: Do any other AST consumers care about this? 7917 return E; 7918 } 7919 7920 // GCC seems to also exclude expressions of incomplete enum type. 7921 if (const EnumType *T = E->getType()->getAs<EnumType>()) { 7922 if (!T->getDecl()->isComplete()) { 7923 // FIXME: stupid workaround for a codegen bug! 7924 E = ImpCastExprToType(E, Context.VoidTy, CK_ToVoid).get(); 7925 return E; 7926 } 7927 } 7928 7929 ExprResult Res = DefaultFunctionArrayLvalueConversion(E); 7930 if (Res.isInvalid()) 7931 return E; 7932 E = Res.get(); 7933 7934 if (!E->getType()->isVoidType()) 7935 RequireCompleteType(E->getExprLoc(), E->getType(), 7936 diag::err_incomplete_type); 7937 return E; 7938 } 7939 7940 ExprResult Sema::CheckUnevaluatedOperand(Expr *E) { 7941 // Per C++2a [expr.ass]p5, a volatile assignment is not deprecated if 7942 // it occurs as an unevaluated operand. 7943 CheckUnusedVolatileAssignment(E); 7944 7945 return E; 7946 } 7947 7948 // If we can unambiguously determine whether Var can never be used 7949 // in a constant expression, return true. 7950 // - if the variable and its initializer are non-dependent, then 7951 // we can unambiguously check if the variable is a constant expression. 7952 // - if the initializer is not value dependent - we can determine whether 7953 // it can be used to initialize a constant expression. If Init can not 7954 // be used to initialize a constant expression we conclude that Var can 7955 // never be a constant expression. 7956 // - FXIME: if the initializer is dependent, we can still do some analysis and 7957 // identify certain cases unambiguously as non-const by using a Visitor: 7958 // - such as those that involve odr-use of a ParmVarDecl, involve a new 7959 // delete, lambda-expr, dynamic-cast, reinterpret-cast etc... 7960 static inline bool VariableCanNeverBeAConstantExpression(VarDecl *Var, 7961 ASTContext &Context) { 7962 if (isa<ParmVarDecl>(Var)) return true; 7963 const VarDecl *DefVD = nullptr; 7964 7965 // If there is no initializer - this can not be a constant expression. 7966 if (!Var->getAnyInitializer(DefVD)) return true; 7967 assert(DefVD); 7968 if (DefVD->isWeak()) return false; 7969 EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt(); 7970 7971 Expr *Init = cast<Expr>(Eval->Value); 7972 7973 if (Var->getType()->isDependentType() || Init->isValueDependent()) { 7974 // FIXME: Teach the constant evaluator to deal with the non-dependent parts 7975 // of value-dependent expressions, and use it here to determine whether the 7976 // initializer is a potential constant expression. 7977 return false; 7978 } 7979 7980 return !Var->isUsableInConstantExpressions(Context); 7981 } 7982 7983 /// Check if the current lambda has any potential captures 7984 /// that must be captured by any of its enclosing lambdas that are ready to 7985 /// capture. If there is a lambda that can capture a nested 7986 /// potential-capture, go ahead and do so. Also, check to see if any 7987 /// variables are uncaptureable or do not involve an odr-use so do not 7988 /// need to be captured. 7989 7990 static void CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures( 7991 Expr *const FE, LambdaScopeInfo *const CurrentLSI, Sema &S) { 7992 7993 assert(!S.isUnevaluatedContext()); 7994 assert(S.CurContext->isDependentContext()); 7995 #ifndef NDEBUG 7996 DeclContext *DC = S.CurContext; 7997 while (DC && isa<CapturedDecl>(DC)) 7998 DC = DC->getParent(); 7999 assert( 8000 CurrentLSI->CallOperator == DC && 8001 "The current call operator must be synchronized with Sema's CurContext"); 8002 #endif // NDEBUG 8003 8004 const bool IsFullExprInstantiationDependent = FE->isInstantiationDependent(); 8005 8006 // All the potentially captureable variables in the current nested 8007 // lambda (within a generic outer lambda), must be captured by an 8008 // outer lambda that is enclosed within a non-dependent context. 8009 CurrentLSI->visitPotentialCaptures([&] (VarDecl *Var, Expr *VarExpr) { 8010 // If the variable is clearly identified as non-odr-used and the full 8011 // expression is not instantiation dependent, only then do we not 8012 // need to check enclosing lambda's for speculative captures. 8013 // For e.g.: 8014 // Even though 'x' is not odr-used, it should be captured. 8015 // int test() { 8016 // const int x = 10; 8017 // auto L = [=](auto a) { 8018 // (void) +x + a; 8019 // }; 8020 // } 8021 if (CurrentLSI->isVariableExprMarkedAsNonODRUsed(VarExpr) && 8022 !IsFullExprInstantiationDependent) 8023 return; 8024 8025 // If we have a capture-capable lambda for the variable, go ahead and 8026 // capture the variable in that lambda (and all its enclosing lambdas). 8027 if (const Optional<unsigned> Index = 8028 getStackIndexOfNearestEnclosingCaptureCapableLambda( 8029 S.FunctionScopes, Var, S)) 8030 S.MarkCaptureUsedInEnclosingContext(Var, VarExpr->getExprLoc(), 8031 Index.getValue()); 8032 const bool IsVarNeverAConstantExpression = 8033 VariableCanNeverBeAConstantExpression(Var, S.Context); 8034 if (!IsFullExprInstantiationDependent || IsVarNeverAConstantExpression) { 8035 // This full expression is not instantiation dependent or the variable 8036 // can not be used in a constant expression - which means 8037 // this variable must be odr-used here, so diagnose a 8038 // capture violation early, if the variable is un-captureable. 8039 // This is purely for diagnosing errors early. Otherwise, this 8040 // error would get diagnosed when the lambda becomes capture ready. 8041 QualType CaptureType, DeclRefType; 8042 SourceLocation ExprLoc = VarExpr->getExprLoc(); 8043 if (S.tryCaptureVariable(Var, ExprLoc, S.TryCapture_Implicit, 8044 /*EllipsisLoc*/ SourceLocation(), 8045 /*BuildAndDiagnose*/false, CaptureType, 8046 DeclRefType, nullptr)) { 8047 // We will never be able to capture this variable, and we need 8048 // to be able to in any and all instantiations, so diagnose it. 8049 S.tryCaptureVariable(Var, ExprLoc, S.TryCapture_Implicit, 8050 /*EllipsisLoc*/ SourceLocation(), 8051 /*BuildAndDiagnose*/true, CaptureType, 8052 DeclRefType, nullptr); 8053 } 8054 } 8055 }); 8056 8057 // Check if 'this' needs to be captured. 8058 if (CurrentLSI->hasPotentialThisCapture()) { 8059 // If we have a capture-capable lambda for 'this', go ahead and capture 8060 // 'this' in that lambda (and all its enclosing lambdas). 8061 if (const Optional<unsigned> Index = 8062 getStackIndexOfNearestEnclosingCaptureCapableLambda( 8063 S.FunctionScopes, /*0 is 'this'*/ nullptr, S)) { 8064 const unsigned FunctionScopeIndexOfCapturableLambda = Index.getValue(); 8065 S.CheckCXXThisCapture(CurrentLSI->PotentialThisCaptureLocation, 8066 /*Explicit*/ false, /*BuildAndDiagnose*/ true, 8067 &FunctionScopeIndexOfCapturableLambda); 8068 } 8069 } 8070 8071 // Reset all the potential captures at the end of each full-expression. 8072 CurrentLSI->clearPotentialCaptures(); 8073 } 8074 8075 static ExprResult attemptRecovery(Sema &SemaRef, 8076 const TypoCorrectionConsumer &Consumer, 8077 const TypoCorrection &TC) { 8078 LookupResult R(SemaRef, Consumer.getLookupResult().getLookupNameInfo(), 8079 Consumer.getLookupResult().getLookupKind()); 8080 const CXXScopeSpec *SS = Consumer.getSS(); 8081 CXXScopeSpec NewSS; 8082 8083 // Use an approprate CXXScopeSpec for building the expr. 8084 if (auto *NNS = TC.getCorrectionSpecifier()) 8085 NewSS.MakeTrivial(SemaRef.Context, NNS, TC.getCorrectionRange()); 8086 else if (SS && !TC.WillReplaceSpecifier()) 8087 NewSS = *SS; 8088 8089 if (auto *ND = TC.getFoundDecl()) { 8090 R.setLookupName(ND->getDeclName()); 8091 R.addDecl(ND); 8092 if (ND->isCXXClassMember()) { 8093 // Figure out the correct naming class to add to the LookupResult. 8094 CXXRecordDecl *Record = nullptr; 8095 if (auto *NNS = TC.getCorrectionSpecifier()) 8096 Record = NNS->getAsType()->getAsCXXRecordDecl(); 8097 if (!Record) 8098 Record = 8099 dyn_cast<CXXRecordDecl>(ND->getDeclContext()->getRedeclContext()); 8100 if (Record) 8101 R.setNamingClass(Record); 8102 8103 // Detect and handle the case where the decl might be an implicit 8104 // member. 8105 bool MightBeImplicitMember; 8106 if (!Consumer.isAddressOfOperand()) 8107 MightBeImplicitMember = true; 8108 else if (!NewSS.isEmpty()) 8109 MightBeImplicitMember = false; 8110 else if (R.isOverloadedResult()) 8111 MightBeImplicitMember = false; 8112 else if (R.isUnresolvableResult()) 8113 MightBeImplicitMember = true; 8114 else 8115 MightBeImplicitMember = isa<FieldDecl>(ND) || 8116 isa<IndirectFieldDecl>(ND) || 8117 isa<MSPropertyDecl>(ND); 8118 8119 if (MightBeImplicitMember) 8120 return SemaRef.BuildPossibleImplicitMemberExpr( 8121 NewSS, /*TemplateKWLoc*/ SourceLocation(), R, 8122 /*TemplateArgs*/ nullptr, /*S*/ nullptr); 8123 } else if (auto *Ivar = dyn_cast<ObjCIvarDecl>(ND)) { 8124 return SemaRef.LookupInObjCMethod(R, Consumer.getScope(), 8125 Ivar->getIdentifier()); 8126 } 8127 } 8128 8129 return SemaRef.BuildDeclarationNameExpr(NewSS, R, /*NeedsADL*/ false, 8130 /*AcceptInvalidDecl*/ true); 8131 } 8132 8133 namespace { 8134 class FindTypoExprs : public RecursiveASTVisitor<FindTypoExprs> { 8135 llvm::SmallSetVector<TypoExpr *, 2> &TypoExprs; 8136 8137 public: 8138 explicit FindTypoExprs(llvm::SmallSetVector<TypoExpr *, 2> &TypoExprs) 8139 : TypoExprs(TypoExprs) {} 8140 bool VisitTypoExpr(TypoExpr *TE) { 8141 TypoExprs.insert(TE); 8142 return true; 8143 } 8144 }; 8145 8146 class TransformTypos : public TreeTransform<TransformTypos> { 8147 typedef TreeTransform<TransformTypos> BaseTransform; 8148 8149 VarDecl *InitDecl; // A decl to avoid as a correction because it is in the 8150 // process of being initialized. 8151 llvm::function_ref<ExprResult(Expr *)> ExprFilter; 8152 llvm::SmallSetVector<TypoExpr *, 2> TypoExprs, AmbiguousTypoExprs; 8153 llvm::SmallDenseMap<TypoExpr *, ExprResult, 2> TransformCache; 8154 llvm::SmallDenseMap<OverloadExpr *, Expr *, 4> OverloadResolution; 8155 8156 /// Emit diagnostics for all of the TypoExprs encountered. 8157 /// 8158 /// If the TypoExprs were successfully corrected, then the diagnostics should 8159 /// suggest the corrections. Otherwise the diagnostics will not suggest 8160 /// anything (having been passed an empty TypoCorrection). 8161 /// 8162 /// If we've failed to correct due to ambiguous corrections, we need to 8163 /// be sure to pass empty corrections and replacements. Otherwise it's 8164 /// possible that the Consumer has a TypoCorrection that failed to ambiguity 8165 /// and we don't want to report those diagnostics. 8166 void EmitAllDiagnostics(bool IsAmbiguous) { 8167 for (TypoExpr *TE : TypoExprs) { 8168 auto &State = SemaRef.getTypoExprState(TE); 8169 if (State.DiagHandler) { 8170 TypoCorrection TC = IsAmbiguous 8171 ? TypoCorrection() : State.Consumer->getCurrentCorrection(); 8172 ExprResult Replacement = IsAmbiguous ? ExprError() : TransformCache[TE]; 8173 8174 // Extract the NamedDecl from the transformed TypoExpr and add it to the 8175 // TypoCorrection, replacing the existing decls. This ensures the right 8176 // NamedDecl is used in diagnostics e.g. in the case where overload 8177 // resolution was used to select one from several possible decls that 8178 // had been stored in the TypoCorrection. 8179 if (auto *ND = getDeclFromExpr( 8180 Replacement.isInvalid() ? nullptr : Replacement.get())) 8181 TC.setCorrectionDecl(ND); 8182 8183 State.DiagHandler(TC); 8184 } 8185 SemaRef.clearDelayedTypo(TE); 8186 } 8187 } 8188 8189 /// Try to advance the typo correction state of the first unfinished TypoExpr. 8190 /// We allow advancement of the correction stream by removing it from the 8191 /// TransformCache which allows `TransformTypoExpr` to advance during the 8192 /// next transformation attempt. 8193 /// 8194 /// Any substitution attempts for the previous TypoExprs (which must have been 8195 /// finished) will need to be retried since it's possible that they will now 8196 /// be invalid given the latest advancement. 8197 /// 8198 /// We need to be sure that we're making progress - it's possible that the 8199 /// tree is so malformed that the transform never makes it to the 8200 /// `TransformTypoExpr`. 8201 /// 8202 /// Returns true if there are any untried correction combinations. 8203 bool CheckAndAdvanceTypoExprCorrectionStreams() { 8204 for (auto TE : TypoExprs) { 8205 auto &State = SemaRef.getTypoExprState(TE); 8206 TransformCache.erase(TE); 8207 if (!State.Consumer->hasMadeAnyCorrectionProgress()) 8208 return false; 8209 if (!State.Consumer->finished()) 8210 return true; 8211 State.Consumer->resetCorrectionStream(); 8212 } 8213 return false; 8214 } 8215 8216 NamedDecl *getDeclFromExpr(Expr *E) { 8217 if (auto *OE = dyn_cast_or_null<OverloadExpr>(E)) 8218 E = OverloadResolution[OE]; 8219 8220 if (!E) 8221 return nullptr; 8222 if (auto *DRE = dyn_cast<DeclRefExpr>(E)) 8223 return DRE->getFoundDecl(); 8224 if (auto *ME = dyn_cast<MemberExpr>(E)) 8225 return ME->getFoundDecl(); 8226 // FIXME: Add any other expr types that could be be seen by the delayed typo 8227 // correction TreeTransform for which the corresponding TypoCorrection could 8228 // contain multiple decls. 8229 return nullptr; 8230 } 8231 8232 ExprResult TryTransform(Expr *E) { 8233 Sema::SFINAETrap Trap(SemaRef); 8234 ExprResult Res = TransformExpr(E); 8235 if (Trap.hasErrorOccurred() || Res.isInvalid()) 8236 return ExprError(); 8237 8238 return ExprFilter(Res.get()); 8239 } 8240 8241 // Since correcting typos may intoduce new TypoExprs, this function 8242 // checks for new TypoExprs and recurses if it finds any. Note that it will 8243 // only succeed if it is able to correct all typos in the given expression. 8244 ExprResult CheckForRecursiveTypos(ExprResult Res, bool &IsAmbiguous) { 8245 if (Res.isInvalid()) { 8246 return Res; 8247 } 8248 // Check to see if any new TypoExprs were created. If so, we need to recurse 8249 // to check their validity. 8250 Expr *FixedExpr = Res.get(); 8251 8252 auto SavedTypoExprs = std::move(TypoExprs); 8253 auto SavedAmbiguousTypoExprs = std::move(AmbiguousTypoExprs); 8254 TypoExprs.clear(); 8255 AmbiguousTypoExprs.clear(); 8256 8257 FindTypoExprs(TypoExprs).TraverseStmt(FixedExpr); 8258 if (!TypoExprs.empty()) { 8259 // Recurse to handle newly created TypoExprs. If we're not able to 8260 // handle them, discard these TypoExprs. 8261 ExprResult RecurResult = 8262 RecursiveTransformLoop(FixedExpr, IsAmbiguous); 8263 if (RecurResult.isInvalid()) { 8264 Res = ExprError(); 8265 // Recursive corrections didn't work, wipe them away and don't add 8266 // them to the TypoExprs set. Remove them from Sema's TypoExpr list 8267 // since we don't want to clear them twice. Note: it's possible the 8268 // TypoExprs were created recursively and thus won't be in our 8269 // Sema's TypoExprs - they were created in our `RecursiveTransformLoop`. 8270 auto &SemaTypoExprs = SemaRef.TypoExprs; 8271 for (auto TE : TypoExprs) { 8272 TransformCache.erase(TE); 8273 SemaRef.clearDelayedTypo(TE); 8274 8275 auto SI = find(SemaTypoExprs, TE); 8276 if (SI != SemaTypoExprs.end()) { 8277 SemaTypoExprs.erase(SI); 8278 } 8279 } 8280 } else { 8281 // TypoExpr is valid: add newly created TypoExprs since we were 8282 // able to correct them. 8283 Res = RecurResult; 8284 SavedTypoExprs.set_union(TypoExprs); 8285 } 8286 } 8287 8288 TypoExprs = std::move(SavedTypoExprs); 8289 AmbiguousTypoExprs = std::move(SavedAmbiguousTypoExprs); 8290 8291 return Res; 8292 } 8293 8294 // Try to transform the given expression, looping through the correction 8295 // candidates with `CheckAndAdvanceTypoExprCorrectionStreams`. 8296 // 8297 // If valid ambiguous typo corrections are seen, `IsAmbiguous` is set to 8298 // true and this method immediately will return an `ExprError`. 8299 ExprResult RecursiveTransformLoop(Expr *E, bool &IsAmbiguous) { 8300 ExprResult Res; 8301 auto SavedTypoExprs = std::move(SemaRef.TypoExprs); 8302 SemaRef.TypoExprs.clear(); 8303 8304 while (true) { 8305 Res = CheckForRecursiveTypos(TryTransform(E), IsAmbiguous); 8306 8307 // Recursion encountered an ambiguous correction. This means that our 8308 // correction itself is ambiguous, so stop now. 8309 if (IsAmbiguous) 8310 break; 8311 8312 // If the transform is still valid after checking for any new typos, 8313 // it's good to go. 8314 if (!Res.isInvalid()) 8315 break; 8316 8317 // The transform was invalid, see if we have any TypoExprs with untried 8318 // correction candidates. 8319 if (!CheckAndAdvanceTypoExprCorrectionStreams()) 8320 break; 8321 } 8322 8323 // If we found a valid result, double check to make sure it's not ambiguous. 8324 if (!IsAmbiguous && !Res.isInvalid() && !AmbiguousTypoExprs.empty()) { 8325 auto SavedTransformCache = 8326 llvm::SmallDenseMap<TypoExpr *, ExprResult, 2>(TransformCache); 8327 8328 // Ensure none of the TypoExprs have multiple typo correction candidates 8329 // with the same edit length that pass all the checks and filters. 8330 while (!AmbiguousTypoExprs.empty()) { 8331 auto TE = AmbiguousTypoExprs.back(); 8332 8333 // TryTransform itself can create new Typos, adding them to the TypoExpr map 8334 // and invalidating our TypoExprState, so always fetch it instead of storing. 8335 SemaRef.getTypoExprState(TE).Consumer->saveCurrentPosition(); 8336 8337 TypoCorrection TC = SemaRef.getTypoExprState(TE).Consumer->peekNextCorrection(); 8338 TypoCorrection Next; 8339 do { 8340 // Fetch the next correction by erasing the typo from the cache and calling 8341 // `TryTransform` which will iterate through corrections in 8342 // `TransformTypoExpr`. 8343 TransformCache.erase(TE); 8344 ExprResult AmbigRes = CheckForRecursiveTypos(TryTransform(E), IsAmbiguous); 8345 8346 if (!AmbigRes.isInvalid() || IsAmbiguous) { 8347 SemaRef.getTypoExprState(TE).Consumer->resetCorrectionStream(); 8348 SavedTransformCache.erase(TE); 8349 Res = ExprError(); 8350 IsAmbiguous = true; 8351 break; 8352 } 8353 } while ((Next = SemaRef.getTypoExprState(TE).Consumer->peekNextCorrection()) && 8354 Next.getEditDistance(false) == TC.getEditDistance(false)); 8355 8356 if (IsAmbiguous) 8357 break; 8358 8359 AmbiguousTypoExprs.remove(TE); 8360 SemaRef.getTypoExprState(TE).Consumer->restoreSavedPosition(); 8361 TransformCache[TE] = SavedTransformCache[TE]; 8362 } 8363 TransformCache = std::move(SavedTransformCache); 8364 } 8365 8366 // Wipe away any newly created TypoExprs that we don't know about. Since we 8367 // clear any invalid TypoExprs in `CheckForRecursiveTypos`, this is only 8368 // possible if a `TypoExpr` is created during a transformation but then 8369 // fails before we can discover it. 8370 auto &SemaTypoExprs = SemaRef.TypoExprs; 8371 for (auto Iterator = SemaTypoExprs.begin(); Iterator != SemaTypoExprs.end();) { 8372 auto TE = *Iterator; 8373 auto FI = find(TypoExprs, TE); 8374 if (FI != TypoExprs.end()) { 8375 Iterator++; 8376 continue; 8377 } 8378 SemaRef.clearDelayedTypo(TE); 8379 Iterator = SemaTypoExprs.erase(Iterator); 8380 } 8381 SemaRef.TypoExprs = std::move(SavedTypoExprs); 8382 8383 return Res; 8384 } 8385 8386 public: 8387 TransformTypos(Sema &SemaRef, VarDecl *InitDecl, llvm::function_ref<ExprResult(Expr *)> Filter) 8388 : BaseTransform(SemaRef), InitDecl(InitDecl), ExprFilter(Filter) {} 8389 8390 ExprResult RebuildCallExpr(Expr *Callee, SourceLocation LParenLoc, 8391 MultiExprArg Args, 8392 SourceLocation RParenLoc, 8393 Expr *ExecConfig = nullptr) { 8394 auto Result = BaseTransform::RebuildCallExpr(Callee, LParenLoc, Args, 8395 RParenLoc, ExecConfig); 8396 if (auto *OE = dyn_cast<OverloadExpr>(Callee)) { 8397 if (Result.isUsable()) { 8398 Expr *ResultCall = Result.get(); 8399 if (auto *BE = dyn_cast<CXXBindTemporaryExpr>(ResultCall)) 8400 ResultCall = BE->getSubExpr(); 8401 if (auto *CE = dyn_cast<CallExpr>(ResultCall)) 8402 OverloadResolution[OE] = CE->getCallee(); 8403 } 8404 } 8405 return Result; 8406 } 8407 8408 ExprResult TransformLambdaExpr(LambdaExpr *E) { return Owned(E); } 8409 8410 ExprResult TransformBlockExpr(BlockExpr *E) { return Owned(E); } 8411 8412 ExprResult Transform(Expr *E) { 8413 bool IsAmbiguous = false; 8414 ExprResult Res = RecursiveTransformLoop(E, IsAmbiguous); 8415 8416 if (!Res.isUsable()) 8417 FindTypoExprs(TypoExprs).TraverseStmt(E); 8418 8419 EmitAllDiagnostics(IsAmbiguous); 8420 8421 return Res; 8422 } 8423 8424 ExprResult TransformTypoExpr(TypoExpr *E) { 8425 // If the TypoExpr hasn't been seen before, record it. Otherwise, return the 8426 // cached transformation result if there is one and the TypoExpr isn't the 8427 // first one that was encountered. 8428 auto &CacheEntry = TransformCache[E]; 8429 if (!TypoExprs.insert(E) && !CacheEntry.isUnset()) { 8430 return CacheEntry; 8431 } 8432 8433 auto &State = SemaRef.getTypoExprState(E); 8434 assert(State.Consumer && "Cannot transform a cleared TypoExpr"); 8435 8436 // For the first TypoExpr and an uncached TypoExpr, find the next likely 8437 // typo correction and return it. 8438 while (TypoCorrection TC = State.Consumer->getNextCorrection()) { 8439 if (InitDecl && TC.getFoundDecl() == InitDecl) 8440 continue; 8441 // FIXME: If we would typo-correct to an invalid declaration, it's 8442 // probably best to just suppress all errors from this typo correction. 8443 ExprResult NE = State.RecoveryHandler ? 8444 State.RecoveryHandler(SemaRef, E, TC) : 8445 attemptRecovery(SemaRef, *State.Consumer, TC); 8446 if (!NE.isInvalid()) { 8447 // Check whether there may be a second viable correction with the same 8448 // edit distance; if so, remember this TypoExpr may have an ambiguous 8449 // correction so it can be more thoroughly vetted later. 8450 TypoCorrection Next; 8451 if ((Next = State.Consumer->peekNextCorrection()) && 8452 Next.getEditDistance(false) == TC.getEditDistance(false)) { 8453 AmbiguousTypoExprs.insert(E); 8454 } else { 8455 AmbiguousTypoExprs.remove(E); 8456 } 8457 assert(!NE.isUnset() && 8458 "Typo was transformed into a valid-but-null ExprResult"); 8459 return CacheEntry = NE; 8460 } 8461 } 8462 return CacheEntry = ExprError(); 8463 } 8464 }; 8465 } 8466 8467 ExprResult 8468 Sema::CorrectDelayedTyposInExpr(Expr *E, VarDecl *InitDecl, 8469 bool RecoverUncorrectedTypos, 8470 llvm::function_ref<ExprResult(Expr *)> Filter) { 8471 // If the current evaluation context indicates there are uncorrected typos 8472 // and the current expression isn't guaranteed to not have typos, try to 8473 // resolve any TypoExpr nodes that might be in the expression. 8474 if (E && !ExprEvalContexts.empty() && ExprEvalContexts.back().NumTypos && 8475 (E->isTypeDependent() || E->isValueDependent() || 8476 E->isInstantiationDependent())) { 8477 auto TyposResolved = DelayedTypos.size(); 8478 auto Result = TransformTypos(*this, InitDecl, Filter).Transform(E); 8479 TyposResolved -= DelayedTypos.size(); 8480 if (Result.isInvalid() || Result.get() != E) { 8481 ExprEvalContexts.back().NumTypos -= TyposResolved; 8482 if (Result.isInvalid() && RecoverUncorrectedTypos) { 8483 struct TyposReplace : TreeTransform<TyposReplace> { 8484 TyposReplace(Sema &SemaRef) : TreeTransform(SemaRef) {} 8485 ExprResult TransformTypoExpr(clang::TypoExpr *E) { 8486 return this->SemaRef.CreateRecoveryExpr(E->getBeginLoc(), 8487 E->getEndLoc(), {}); 8488 } 8489 } TT(*this); 8490 return TT.TransformExpr(E); 8491 } 8492 return Result; 8493 } 8494 assert(TyposResolved == 0 && "Corrected typo but got same Expr back?"); 8495 } 8496 return E; 8497 } 8498 8499 ExprResult Sema::ActOnFinishFullExpr(Expr *FE, SourceLocation CC, 8500 bool DiscardedValue, 8501 bool IsConstexpr) { 8502 ExprResult FullExpr = FE; 8503 8504 if (!FullExpr.get()) 8505 return ExprError(); 8506 8507 if (DiagnoseUnexpandedParameterPack(FullExpr.get())) 8508 return ExprError(); 8509 8510 if (DiscardedValue) { 8511 // Top-level expressions default to 'id' when we're in a debugger. 8512 if (getLangOpts().DebuggerCastResultToId && 8513 FullExpr.get()->getType() == Context.UnknownAnyTy) { 8514 FullExpr = forceUnknownAnyToType(FullExpr.get(), Context.getObjCIdType()); 8515 if (FullExpr.isInvalid()) 8516 return ExprError(); 8517 } 8518 8519 FullExpr = CheckPlaceholderExpr(FullExpr.get()); 8520 if (FullExpr.isInvalid()) 8521 return ExprError(); 8522 8523 FullExpr = IgnoredValueConversions(FullExpr.get()); 8524 if (FullExpr.isInvalid()) 8525 return ExprError(); 8526 8527 DiagnoseUnusedExprResult(FullExpr.get()); 8528 } 8529 8530 FullExpr = CorrectDelayedTyposInExpr(FullExpr.get(), /*InitDecl=*/nullptr, 8531 /*RecoverUncorrectedTypos=*/true); 8532 if (FullExpr.isInvalid()) 8533 return ExprError(); 8534 8535 CheckCompletedExpr(FullExpr.get(), CC, IsConstexpr); 8536 8537 // At the end of this full expression (which could be a deeply nested 8538 // lambda), if there is a potential capture within the nested lambda, 8539 // have the outer capture-able lambda try and capture it. 8540 // Consider the following code: 8541 // void f(int, int); 8542 // void f(const int&, double); 8543 // void foo() { 8544 // const int x = 10, y = 20; 8545 // auto L = [=](auto a) { 8546 // auto M = [=](auto b) { 8547 // f(x, b); <-- requires x to be captured by L and M 8548 // f(y, a); <-- requires y to be captured by L, but not all Ms 8549 // }; 8550 // }; 8551 // } 8552 8553 // FIXME: Also consider what happens for something like this that involves 8554 // the gnu-extension statement-expressions or even lambda-init-captures: 8555 // void f() { 8556 // const int n = 0; 8557 // auto L = [&](auto a) { 8558 // +n + ({ 0; a; }); 8559 // }; 8560 // } 8561 // 8562 // Here, we see +n, and then the full-expression 0; ends, so we don't 8563 // capture n (and instead remove it from our list of potential captures), 8564 // and then the full-expression +n + ({ 0; }); ends, but it's too late 8565 // for us to see that we need to capture n after all. 8566 8567 LambdaScopeInfo *const CurrentLSI = 8568 getCurLambda(/*IgnoreCapturedRegions=*/true); 8569 // FIXME: PR 17877 showed that getCurLambda() can return a valid pointer 8570 // even if CurContext is not a lambda call operator. Refer to that Bug Report 8571 // for an example of the code that might cause this asynchrony. 8572 // By ensuring we are in the context of a lambda's call operator 8573 // we can fix the bug (we only need to check whether we need to capture 8574 // if we are within a lambda's body); but per the comments in that 8575 // PR, a proper fix would entail : 8576 // "Alternative suggestion: 8577 // - Add to Sema an integer holding the smallest (outermost) scope 8578 // index that we are *lexically* within, and save/restore/set to 8579 // FunctionScopes.size() in InstantiatingTemplate's 8580 // constructor/destructor. 8581 // - Teach the handful of places that iterate over FunctionScopes to 8582 // stop at the outermost enclosing lexical scope." 8583 DeclContext *DC = CurContext; 8584 while (DC && isa<CapturedDecl>(DC)) 8585 DC = DC->getParent(); 8586 const bool IsInLambdaDeclContext = isLambdaCallOperator(DC); 8587 if (IsInLambdaDeclContext && CurrentLSI && 8588 CurrentLSI->hasPotentialCaptures() && !FullExpr.isInvalid()) 8589 CheckIfAnyEnclosingLambdasMustCaptureAnyPotentialCaptures(FE, CurrentLSI, 8590 *this); 8591 return MaybeCreateExprWithCleanups(FullExpr); 8592 } 8593 8594 StmtResult Sema::ActOnFinishFullStmt(Stmt *FullStmt) { 8595 if (!FullStmt) return StmtError(); 8596 8597 return MaybeCreateStmtWithCleanups(FullStmt); 8598 } 8599 8600 Sema::IfExistsResult 8601 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, 8602 CXXScopeSpec &SS, 8603 const DeclarationNameInfo &TargetNameInfo) { 8604 DeclarationName TargetName = TargetNameInfo.getName(); 8605 if (!TargetName) 8606 return IER_DoesNotExist; 8607 8608 // If the name itself is dependent, then the result is dependent. 8609 if (TargetName.isDependentName()) 8610 return IER_Dependent; 8611 8612 // Do the redeclaration lookup in the current scope. 8613 LookupResult R(*this, TargetNameInfo, Sema::LookupAnyName, 8614 Sema::NotForRedeclaration); 8615 LookupParsedName(R, S, &SS); 8616 R.suppressDiagnostics(); 8617 8618 switch (R.getResultKind()) { 8619 case LookupResult::Found: 8620 case LookupResult::FoundOverloaded: 8621 case LookupResult::FoundUnresolvedValue: 8622 case LookupResult::Ambiguous: 8623 return IER_Exists; 8624 8625 case LookupResult::NotFound: 8626 return IER_DoesNotExist; 8627 8628 case LookupResult::NotFoundInCurrentInstantiation: 8629 return IER_Dependent; 8630 } 8631 8632 llvm_unreachable("Invalid LookupResult Kind!"); 8633 } 8634 8635 Sema::IfExistsResult 8636 Sema::CheckMicrosoftIfExistsSymbol(Scope *S, SourceLocation KeywordLoc, 8637 bool IsIfExists, CXXScopeSpec &SS, 8638 UnqualifiedId &Name) { 8639 DeclarationNameInfo TargetNameInfo = GetNameFromUnqualifiedId(Name); 8640 8641 // Check for an unexpanded parameter pack. 8642 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists; 8643 if (DiagnoseUnexpandedParameterPack(SS, UPPC) || 8644 DiagnoseUnexpandedParameterPack(TargetNameInfo, UPPC)) 8645 return IER_Error; 8646 8647 return CheckMicrosoftIfExistsSymbol(S, SS, TargetNameInfo); 8648 } 8649 8650 concepts::Requirement *Sema::ActOnSimpleRequirement(Expr *E) { 8651 return BuildExprRequirement(E, /*IsSimple=*/true, 8652 /*NoexceptLoc=*/SourceLocation(), 8653 /*ReturnTypeRequirement=*/{}); 8654 } 8655 8656 concepts::Requirement * 8657 Sema::ActOnTypeRequirement(SourceLocation TypenameKWLoc, CXXScopeSpec &SS, 8658 SourceLocation NameLoc, IdentifierInfo *TypeName, 8659 TemplateIdAnnotation *TemplateId) { 8660 assert(((!TypeName && TemplateId) || (TypeName && !TemplateId)) && 8661 "Exactly one of TypeName and TemplateId must be specified."); 8662 TypeSourceInfo *TSI = nullptr; 8663 if (TypeName) { 8664 QualType T = CheckTypenameType(ETK_Typename, TypenameKWLoc, 8665 SS.getWithLocInContext(Context), *TypeName, 8666 NameLoc, &TSI, /*DeducedTypeContext=*/false); 8667 if (T.isNull()) 8668 return nullptr; 8669 } else { 8670 ASTTemplateArgsPtr ArgsPtr(TemplateId->getTemplateArgs(), 8671 TemplateId->NumArgs); 8672 TypeResult T = ActOnTypenameType(CurScope, TypenameKWLoc, SS, 8673 TemplateId->TemplateKWLoc, 8674 TemplateId->Template, TemplateId->Name, 8675 TemplateId->TemplateNameLoc, 8676 TemplateId->LAngleLoc, ArgsPtr, 8677 TemplateId->RAngleLoc); 8678 if (T.isInvalid()) 8679 return nullptr; 8680 if (GetTypeFromParser(T.get(), &TSI).isNull()) 8681 return nullptr; 8682 } 8683 return BuildTypeRequirement(TSI); 8684 } 8685 8686 concepts::Requirement * 8687 Sema::ActOnCompoundRequirement(Expr *E, SourceLocation NoexceptLoc) { 8688 return BuildExprRequirement(E, /*IsSimple=*/false, NoexceptLoc, 8689 /*ReturnTypeRequirement=*/{}); 8690 } 8691 8692 concepts::Requirement * 8693 Sema::ActOnCompoundRequirement( 8694 Expr *E, SourceLocation NoexceptLoc, CXXScopeSpec &SS, 8695 TemplateIdAnnotation *TypeConstraint, unsigned Depth) { 8696 // C++2a [expr.prim.req.compound] p1.3.3 8697 // [..] the expression is deduced against an invented function template 8698 // F [...] F is a void function template with a single type template 8699 // parameter T declared with the constrained-parameter. Form a new 8700 // cv-qualifier-seq cv by taking the union of const and volatile specifiers 8701 // around the constrained-parameter. F has a single parameter whose 8702 // type-specifier is cv T followed by the abstract-declarator. [...] 8703 // 8704 // The cv part is done in the calling function - we get the concept with 8705 // arguments and the abstract declarator with the correct CV qualification and 8706 // have to synthesize T and the single parameter of F. 8707 auto &II = Context.Idents.get("expr-type"); 8708 auto *TParam = TemplateTypeParmDecl::Create(Context, CurContext, 8709 SourceLocation(), 8710 SourceLocation(), Depth, 8711 /*Index=*/0, &II, 8712 /*Typename=*/true, 8713 /*ParameterPack=*/false, 8714 /*HasTypeConstraint=*/true); 8715 8716 if (BuildTypeConstraint(SS, TypeConstraint, TParam, 8717 /*EllpsisLoc=*/SourceLocation(), 8718 /*AllowUnexpandedPack=*/true)) 8719 // Just produce a requirement with no type requirements. 8720 return BuildExprRequirement(E, /*IsSimple=*/false, NoexceptLoc, {}); 8721 8722 auto *TPL = TemplateParameterList::Create(Context, SourceLocation(), 8723 SourceLocation(), 8724 ArrayRef<NamedDecl *>(TParam), 8725 SourceLocation(), 8726 /*RequiresClause=*/nullptr); 8727 return BuildExprRequirement( 8728 E, /*IsSimple=*/false, NoexceptLoc, 8729 concepts::ExprRequirement::ReturnTypeRequirement(TPL)); 8730 } 8731 8732 concepts::ExprRequirement * 8733 Sema::BuildExprRequirement( 8734 Expr *E, bool IsSimple, SourceLocation NoexceptLoc, 8735 concepts::ExprRequirement::ReturnTypeRequirement ReturnTypeRequirement) { 8736 auto Status = concepts::ExprRequirement::SS_Satisfied; 8737 ConceptSpecializationExpr *SubstitutedConstraintExpr = nullptr; 8738 if (E->isInstantiationDependent() || ReturnTypeRequirement.isDependent()) 8739 Status = concepts::ExprRequirement::SS_Dependent; 8740 else if (NoexceptLoc.isValid() && canThrow(E) == CanThrowResult::CT_Can) 8741 Status = concepts::ExprRequirement::SS_NoexceptNotMet; 8742 else if (ReturnTypeRequirement.isSubstitutionFailure()) 8743 Status = concepts::ExprRequirement::SS_TypeRequirementSubstitutionFailure; 8744 else if (ReturnTypeRequirement.isTypeConstraint()) { 8745 // C++2a [expr.prim.req]p1.3.3 8746 // The immediately-declared constraint ([temp]) of decltype((E)) shall 8747 // be satisfied. 8748 TemplateParameterList *TPL = 8749 ReturnTypeRequirement.getTypeConstraintTemplateParameterList(); 8750 QualType MatchedType = 8751 Context.getReferenceQualifiedType(E).getCanonicalType(); 8752 llvm::SmallVector<TemplateArgument, 1> Args; 8753 Args.push_back(TemplateArgument(MatchedType)); 8754 TemplateArgumentList TAL(TemplateArgumentList::OnStack, Args); 8755 MultiLevelTemplateArgumentList MLTAL(TAL); 8756 for (unsigned I = 0; I < TPL->getDepth(); ++I) 8757 MLTAL.addOuterRetainedLevel(); 8758 Expr *IDC = 8759 cast<TemplateTypeParmDecl>(TPL->getParam(0))->getTypeConstraint() 8760 ->getImmediatelyDeclaredConstraint(); 8761 ExprResult Constraint = SubstExpr(IDC, MLTAL); 8762 assert(!Constraint.isInvalid() && 8763 "Substitution cannot fail as it is simply putting a type template " 8764 "argument into a concept specialization expression's parameter."); 8765 8766 SubstitutedConstraintExpr = 8767 cast<ConceptSpecializationExpr>(Constraint.get()); 8768 if (!SubstitutedConstraintExpr->isSatisfied()) 8769 Status = concepts::ExprRequirement::SS_ConstraintsNotSatisfied; 8770 } 8771 return new (Context) concepts::ExprRequirement(E, IsSimple, NoexceptLoc, 8772 ReturnTypeRequirement, Status, 8773 SubstitutedConstraintExpr); 8774 } 8775 8776 concepts::ExprRequirement * 8777 Sema::BuildExprRequirement( 8778 concepts::Requirement::SubstitutionDiagnostic *ExprSubstitutionDiagnostic, 8779 bool IsSimple, SourceLocation NoexceptLoc, 8780 concepts::ExprRequirement::ReturnTypeRequirement ReturnTypeRequirement) { 8781 return new (Context) concepts::ExprRequirement(ExprSubstitutionDiagnostic, 8782 IsSimple, NoexceptLoc, 8783 ReturnTypeRequirement); 8784 } 8785 8786 concepts::TypeRequirement * 8787 Sema::BuildTypeRequirement(TypeSourceInfo *Type) { 8788 return new (Context) concepts::TypeRequirement(Type); 8789 } 8790 8791 concepts::TypeRequirement * 8792 Sema::BuildTypeRequirement( 8793 concepts::Requirement::SubstitutionDiagnostic *SubstDiag) { 8794 return new (Context) concepts::TypeRequirement(SubstDiag); 8795 } 8796 8797 concepts::Requirement *Sema::ActOnNestedRequirement(Expr *Constraint) { 8798 return BuildNestedRequirement(Constraint); 8799 } 8800 8801 concepts::NestedRequirement * 8802 Sema::BuildNestedRequirement(Expr *Constraint) { 8803 ConstraintSatisfaction Satisfaction; 8804 if (!Constraint->isInstantiationDependent() && 8805 CheckConstraintSatisfaction(nullptr, {Constraint}, /*TemplateArgs=*/{}, 8806 Constraint->getSourceRange(), Satisfaction)) 8807 return nullptr; 8808 return new (Context) concepts::NestedRequirement(Context, Constraint, 8809 Satisfaction); 8810 } 8811 8812 concepts::NestedRequirement * 8813 Sema::BuildNestedRequirement( 8814 concepts::Requirement::SubstitutionDiagnostic *SubstDiag) { 8815 return new (Context) concepts::NestedRequirement(SubstDiag); 8816 } 8817 8818 RequiresExprBodyDecl * 8819 Sema::ActOnStartRequiresExpr(SourceLocation RequiresKWLoc, 8820 ArrayRef<ParmVarDecl *> LocalParameters, 8821 Scope *BodyScope) { 8822 assert(BodyScope); 8823 8824 RequiresExprBodyDecl *Body = RequiresExprBodyDecl::Create(Context, CurContext, 8825 RequiresKWLoc); 8826 8827 PushDeclContext(BodyScope, Body); 8828 8829 for (ParmVarDecl *Param : LocalParameters) { 8830 if (Param->hasDefaultArg()) 8831 // C++2a [expr.prim.req] p4 8832 // [...] A local parameter of a requires-expression shall not have a 8833 // default argument. [...] 8834 Diag(Param->getDefaultArgRange().getBegin(), 8835 diag::err_requires_expr_local_parameter_default_argument); 8836 // Ignore default argument and move on 8837 8838 Param->setDeclContext(Body); 8839 // If this has an identifier, add it to the scope stack. 8840 if (Param->getIdentifier()) { 8841 CheckShadow(BodyScope, Param); 8842 PushOnScopeChains(Param, BodyScope); 8843 } 8844 } 8845 return Body; 8846 } 8847 8848 void Sema::ActOnFinishRequiresExpr() { 8849 assert(CurContext && "DeclContext imbalance!"); 8850 CurContext = CurContext->getLexicalParent(); 8851 assert(CurContext && "Popped translation unit!"); 8852 } 8853 8854 ExprResult 8855 Sema::ActOnRequiresExpr(SourceLocation RequiresKWLoc, 8856 RequiresExprBodyDecl *Body, 8857 ArrayRef<ParmVarDecl *> LocalParameters, 8858 ArrayRef<concepts::Requirement *> Requirements, 8859 SourceLocation ClosingBraceLoc) { 8860 auto *RE = RequiresExpr::Create(Context, RequiresKWLoc, Body, LocalParameters, 8861 Requirements, ClosingBraceLoc); 8862 if (DiagnoseUnexpandedParameterPackInRequiresExpr(RE)) 8863 return ExprError(); 8864 return RE; 8865 } 8866