1 //===------- SemaTemplateDeduction.cpp - Template Argument Deduction ------===/ 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 //===----------------------------------------------------------------------===/ 8 // 9 // This file implements C++ template argument deduction. 10 // 11 //===----------------------------------------------------------------------===/ 12 13 #include "clang/Sema/TemplateDeduction.h" 14 #include "TreeTransform.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/ASTLambda.h" 17 #include "clang/AST/DeclObjC.h" 18 #include "clang/AST/DeclTemplate.h" 19 #include "clang/AST/Expr.h" 20 #include "clang/AST/ExprCXX.h" 21 #include "clang/AST/StmtVisitor.h" 22 #include "clang/Sema/DeclSpec.h" 23 #include "clang/Sema/Sema.h" 24 #include "clang/Sema/Template.h" 25 #include "llvm/ADT/SmallBitVector.h" 26 #include <algorithm> 27 28 namespace clang { 29 using namespace sema; 30 /// \brief Various flags that control template argument deduction. 31 /// 32 /// These flags can be bitwise-OR'd together. 33 enum TemplateDeductionFlags { 34 /// \brief No template argument deduction flags, which indicates the 35 /// strictest results for template argument deduction (as used for, e.g., 36 /// matching class template partial specializations). 37 TDF_None = 0, 38 /// \brief Within template argument deduction from a function call, we are 39 /// matching with a parameter type for which the original parameter was 40 /// a reference. 41 TDF_ParamWithReferenceType = 0x1, 42 /// \brief Within template argument deduction from a function call, we 43 /// are matching in a case where we ignore cv-qualifiers. 44 TDF_IgnoreQualifiers = 0x02, 45 /// \brief Within template argument deduction from a function call, 46 /// we are matching in a case where we can perform template argument 47 /// deduction from a template-id of a derived class of the argument type. 48 TDF_DerivedClass = 0x04, 49 /// \brief Allow non-dependent types to differ, e.g., when performing 50 /// template argument deduction from a function call where conversions 51 /// may apply. 52 TDF_SkipNonDependent = 0x08, 53 /// \brief Whether we are performing template argument deduction for 54 /// parameters and arguments in a top-level template argument 55 TDF_TopLevelParameterTypeList = 0x10, 56 /// \brief Within template argument deduction from overload resolution per 57 /// C++ [over.over] allow matching function types that are compatible in 58 /// terms of noreturn and default calling convention adjustments. 59 TDF_InOverloadResolution = 0x20 60 }; 61 } 62 63 using namespace clang; 64 65 /// \brief Compare two APSInts, extending and switching the sign as 66 /// necessary to compare their values regardless of underlying type. 67 static bool hasSameExtendedValue(llvm::APSInt X, llvm::APSInt Y) { 68 if (Y.getBitWidth() > X.getBitWidth()) 69 X = X.extend(Y.getBitWidth()); 70 else if (Y.getBitWidth() < X.getBitWidth()) 71 Y = Y.extend(X.getBitWidth()); 72 73 // If there is a signedness mismatch, correct it. 74 if (X.isSigned() != Y.isSigned()) { 75 // If the signed value is negative, then the values cannot be the same. 76 if ((Y.isSigned() && Y.isNegative()) || (X.isSigned() && X.isNegative())) 77 return false; 78 79 Y.setIsSigned(true); 80 X.setIsSigned(true); 81 } 82 83 return X == Y; 84 } 85 86 static Sema::TemplateDeductionResult 87 DeduceTemplateArguments(Sema &S, 88 TemplateParameterList *TemplateParams, 89 const TemplateArgument &Param, 90 TemplateArgument Arg, 91 TemplateDeductionInfo &Info, 92 SmallVectorImpl<DeducedTemplateArgument> &Deduced); 93 94 /// \brief Whether template argument deduction for two reference parameters 95 /// resulted in the argument type, parameter type, or neither type being more 96 /// qualified than the other. 97 enum DeductionQualifierComparison { 98 NeitherMoreQualified = 0, 99 ParamMoreQualified, 100 ArgMoreQualified 101 }; 102 103 /// \brief Stores the result of comparing two reference parameters while 104 /// performing template argument deduction for partial ordering of function 105 /// templates. 106 struct RefParamPartialOrderingComparison { 107 /// \brief Whether the parameter type is an rvalue reference type. 108 bool ParamIsRvalueRef; 109 /// \brief Whether the argument type is an rvalue reference type. 110 bool ArgIsRvalueRef; 111 112 /// \brief Whether the parameter or argument (or neither) is more qualified. 113 DeductionQualifierComparison Qualifiers; 114 }; 115 116 117 118 static Sema::TemplateDeductionResult 119 DeduceTemplateArgumentsByTypeMatch(Sema &S, 120 TemplateParameterList *TemplateParams, 121 QualType Param, 122 QualType Arg, 123 TemplateDeductionInfo &Info, 124 SmallVectorImpl<DeducedTemplateArgument> & 125 Deduced, 126 unsigned TDF, 127 bool PartialOrdering = false, 128 SmallVectorImpl<RefParamPartialOrderingComparison> * 129 RefParamComparisons = 0); 130 131 static Sema::TemplateDeductionResult 132 DeduceTemplateArguments(Sema &S, 133 TemplateParameterList *TemplateParams, 134 const TemplateArgument *Params, unsigned NumParams, 135 const TemplateArgument *Args, unsigned NumArgs, 136 TemplateDeductionInfo &Info, 137 SmallVectorImpl<DeducedTemplateArgument> &Deduced); 138 139 /// \brief If the given expression is of a form that permits the deduction 140 /// of a non-type template parameter, return the declaration of that 141 /// non-type template parameter. 142 static NonTypeTemplateParmDecl *getDeducedParameterFromExpr(Expr *E) { 143 // If we are within an alias template, the expression may have undergone 144 // any number of parameter substitutions already. 145 while (1) { 146 if (ImplicitCastExpr *IC = dyn_cast<ImplicitCastExpr>(E)) 147 E = IC->getSubExpr(); 148 else if (SubstNonTypeTemplateParmExpr *Subst = 149 dyn_cast<SubstNonTypeTemplateParmExpr>(E)) 150 E = Subst->getReplacement(); 151 else 152 break; 153 } 154 155 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) 156 return dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl()); 157 158 return 0; 159 } 160 161 /// \brief Determine whether two declaration pointers refer to the same 162 /// declaration. 163 static bool isSameDeclaration(Decl *X, Decl *Y) { 164 if (NamedDecl *NX = dyn_cast<NamedDecl>(X)) 165 X = NX->getUnderlyingDecl(); 166 if (NamedDecl *NY = dyn_cast<NamedDecl>(Y)) 167 Y = NY->getUnderlyingDecl(); 168 169 return X->getCanonicalDecl() == Y->getCanonicalDecl(); 170 } 171 172 /// \brief Verify that the given, deduced template arguments are compatible. 173 /// 174 /// \returns The deduced template argument, or a NULL template argument if 175 /// the deduced template arguments were incompatible. 176 static DeducedTemplateArgument 177 checkDeducedTemplateArguments(ASTContext &Context, 178 const DeducedTemplateArgument &X, 179 const DeducedTemplateArgument &Y) { 180 // We have no deduction for one or both of the arguments; they're compatible. 181 if (X.isNull()) 182 return Y; 183 if (Y.isNull()) 184 return X; 185 186 switch (X.getKind()) { 187 case TemplateArgument::Null: 188 llvm_unreachable("Non-deduced template arguments handled above"); 189 190 case TemplateArgument::Type: 191 // If two template type arguments have the same type, they're compatible. 192 if (Y.getKind() == TemplateArgument::Type && 193 Context.hasSameType(X.getAsType(), Y.getAsType())) 194 return X; 195 196 return DeducedTemplateArgument(); 197 198 case TemplateArgument::Integral: 199 // If we deduced a constant in one case and either a dependent expression or 200 // declaration in another case, keep the integral constant. 201 // If both are integral constants with the same value, keep that value. 202 if (Y.getKind() == TemplateArgument::Expression || 203 Y.getKind() == TemplateArgument::Declaration || 204 (Y.getKind() == TemplateArgument::Integral && 205 hasSameExtendedValue(X.getAsIntegral(), Y.getAsIntegral()))) 206 return DeducedTemplateArgument(X, 207 X.wasDeducedFromArrayBound() && 208 Y.wasDeducedFromArrayBound()); 209 210 // All other combinations are incompatible. 211 return DeducedTemplateArgument(); 212 213 case TemplateArgument::Template: 214 if (Y.getKind() == TemplateArgument::Template && 215 Context.hasSameTemplateName(X.getAsTemplate(), Y.getAsTemplate())) 216 return X; 217 218 // All other combinations are incompatible. 219 return DeducedTemplateArgument(); 220 221 case TemplateArgument::TemplateExpansion: 222 if (Y.getKind() == TemplateArgument::TemplateExpansion && 223 Context.hasSameTemplateName(X.getAsTemplateOrTemplatePattern(), 224 Y.getAsTemplateOrTemplatePattern())) 225 return X; 226 227 // All other combinations are incompatible. 228 return DeducedTemplateArgument(); 229 230 case TemplateArgument::Expression: 231 // If we deduced a dependent expression in one case and either an integral 232 // constant or a declaration in another case, keep the integral constant 233 // or declaration. 234 if (Y.getKind() == TemplateArgument::Integral || 235 Y.getKind() == TemplateArgument::Declaration) 236 return DeducedTemplateArgument(Y, X.wasDeducedFromArrayBound() && 237 Y.wasDeducedFromArrayBound()); 238 239 if (Y.getKind() == TemplateArgument::Expression) { 240 // Compare the expressions for equality 241 llvm::FoldingSetNodeID ID1, ID2; 242 X.getAsExpr()->Profile(ID1, Context, true); 243 Y.getAsExpr()->Profile(ID2, Context, true); 244 if (ID1 == ID2) 245 return X; 246 } 247 248 // All other combinations are incompatible. 249 return DeducedTemplateArgument(); 250 251 case TemplateArgument::Declaration: 252 // If we deduced a declaration and a dependent expression, keep the 253 // declaration. 254 if (Y.getKind() == TemplateArgument::Expression) 255 return X; 256 257 // If we deduced a declaration and an integral constant, keep the 258 // integral constant. 259 if (Y.getKind() == TemplateArgument::Integral) 260 return Y; 261 262 // If we deduced two declarations, make sure they they refer to the 263 // same declaration. 264 if (Y.getKind() == TemplateArgument::Declaration && 265 isSameDeclaration(X.getAsDecl(), Y.getAsDecl()) && 266 X.isDeclForReferenceParam() == Y.isDeclForReferenceParam()) 267 return X; 268 269 // All other combinations are incompatible. 270 return DeducedTemplateArgument(); 271 272 case TemplateArgument::NullPtr: 273 // If we deduced a null pointer and a dependent expression, keep the 274 // null pointer. 275 if (Y.getKind() == TemplateArgument::Expression) 276 return X; 277 278 // If we deduced a null pointer and an integral constant, keep the 279 // integral constant. 280 if (Y.getKind() == TemplateArgument::Integral) 281 return Y; 282 283 // If we deduced two null pointers, make sure they have the same type. 284 if (Y.getKind() == TemplateArgument::NullPtr && 285 Context.hasSameType(X.getNullPtrType(), Y.getNullPtrType())) 286 return X; 287 288 // All other combinations are incompatible. 289 return DeducedTemplateArgument(); 290 291 case TemplateArgument::Pack: 292 if (Y.getKind() != TemplateArgument::Pack || 293 X.pack_size() != Y.pack_size()) 294 return DeducedTemplateArgument(); 295 296 for (TemplateArgument::pack_iterator XA = X.pack_begin(), 297 XAEnd = X.pack_end(), 298 YA = Y.pack_begin(); 299 XA != XAEnd; ++XA, ++YA) { 300 if (checkDeducedTemplateArguments(Context, 301 DeducedTemplateArgument(*XA, X.wasDeducedFromArrayBound()), 302 DeducedTemplateArgument(*YA, Y.wasDeducedFromArrayBound())) 303 .isNull()) 304 return DeducedTemplateArgument(); 305 } 306 307 return X; 308 } 309 310 llvm_unreachable("Invalid TemplateArgument Kind!"); 311 } 312 313 /// \brief Deduce the value of the given non-type template parameter 314 /// from the given constant. 315 static Sema::TemplateDeductionResult 316 DeduceNonTypeTemplateArgument(Sema &S, 317 NonTypeTemplateParmDecl *NTTP, 318 llvm::APSInt Value, QualType ValueType, 319 bool DeducedFromArrayBound, 320 TemplateDeductionInfo &Info, 321 SmallVectorImpl<DeducedTemplateArgument> &Deduced) { 322 assert(NTTP->getDepth() == 0 && 323 "Cannot deduce non-type template argument with depth > 0"); 324 325 DeducedTemplateArgument NewDeduced(S.Context, Value, ValueType, 326 DeducedFromArrayBound); 327 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, 328 Deduced[NTTP->getIndex()], 329 NewDeduced); 330 if (Result.isNull()) { 331 Info.Param = NTTP; 332 Info.FirstArg = Deduced[NTTP->getIndex()]; 333 Info.SecondArg = NewDeduced; 334 return Sema::TDK_Inconsistent; 335 } 336 337 Deduced[NTTP->getIndex()] = Result; 338 return Sema::TDK_Success; 339 } 340 341 /// \brief Deduce the value of the given non-type template parameter 342 /// from the given type- or value-dependent expression. 343 /// 344 /// \returns true if deduction succeeded, false otherwise. 345 static Sema::TemplateDeductionResult 346 DeduceNonTypeTemplateArgument(Sema &S, 347 NonTypeTemplateParmDecl *NTTP, 348 Expr *Value, 349 TemplateDeductionInfo &Info, 350 SmallVectorImpl<DeducedTemplateArgument> &Deduced) { 351 assert(NTTP->getDepth() == 0 && 352 "Cannot deduce non-type template argument with depth > 0"); 353 assert((Value->isTypeDependent() || Value->isValueDependent()) && 354 "Expression template argument must be type- or value-dependent."); 355 356 DeducedTemplateArgument NewDeduced(Value); 357 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, 358 Deduced[NTTP->getIndex()], 359 NewDeduced); 360 361 if (Result.isNull()) { 362 Info.Param = NTTP; 363 Info.FirstArg = Deduced[NTTP->getIndex()]; 364 Info.SecondArg = NewDeduced; 365 return Sema::TDK_Inconsistent; 366 } 367 368 Deduced[NTTP->getIndex()] = Result; 369 return Sema::TDK_Success; 370 } 371 372 /// \brief Deduce the value of the given non-type template parameter 373 /// from the given declaration. 374 /// 375 /// \returns true if deduction succeeded, false otherwise. 376 static Sema::TemplateDeductionResult 377 DeduceNonTypeTemplateArgument(Sema &S, 378 NonTypeTemplateParmDecl *NTTP, 379 ValueDecl *D, 380 TemplateDeductionInfo &Info, 381 SmallVectorImpl<DeducedTemplateArgument> &Deduced) { 382 assert(NTTP->getDepth() == 0 && 383 "Cannot deduce non-type template argument with depth > 0"); 384 385 D = D ? cast<ValueDecl>(D->getCanonicalDecl()) : 0; 386 TemplateArgument New(D, NTTP->getType()->isReferenceType()); 387 DeducedTemplateArgument NewDeduced(New); 388 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, 389 Deduced[NTTP->getIndex()], 390 NewDeduced); 391 if (Result.isNull()) { 392 Info.Param = NTTP; 393 Info.FirstArg = Deduced[NTTP->getIndex()]; 394 Info.SecondArg = NewDeduced; 395 return Sema::TDK_Inconsistent; 396 } 397 398 Deduced[NTTP->getIndex()] = Result; 399 return Sema::TDK_Success; 400 } 401 402 static Sema::TemplateDeductionResult 403 DeduceTemplateArguments(Sema &S, 404 TemplateParameterList *TemplateParams, 405 TemplateName Param, 406 TemplateName Arg, 407 TemplateDeductionInfo &Info, 408 SmallVectorImpl<DeducedTemplateArgument> &Deduced) { 409 TemplateDecl *ParamDecl = Param.getAsTemplateDecl(); 410 if (!ParamDecl) { 411 // The parameter type is dependent and is not a template template parameter, 412 // so there is nothing that we can deduce. 413 return Sema::TDK_Success; 414 } 415 416 if (TemplateTemplateParmDecl *TempParam 417 = dyn_cast<TemplateTemplateParmDecl>(ParamDecl)) { 418 DeducedTemplateArgument NewDeduced(S.Context.getCanonicalTemplateName(Arg)); 419 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, 420 Deduced[TempParam->getIndex()], 421 NewDeduced); 422 if (Result.isNull()) { 423 Info.Param = TempParam; 424 Info.FirstArg = Deduced[TempParam->getIndex()]; 425 Info.SecondArg = NewDeduced; 426 return Sema::TDK_Inconsistent; 427 } 428 429 Deduced[TempParam->getIndex()] = Result; 430 return Sema::TDK_Success; 431 } 432 433 // Verify that the two template names are equivalent. 434 if (S.Context.hasSameTemplateName(Param, Arg)) 435 return Sema::TDK_Success; 436 437 // Mismatch of non-dependent template parameter to argument. 438 Info.FirstArg = TemplateArgument(Param); 439 Info.SecondArg = TemplateArgument(Arg); 440 return Sema::TDK_NonDeducedMismatch; 441 } 442 443 /// \brief Deduce the template arguments by comparing the template parameter 444 /// type (which is a template-id) with the template argument type. 445 /// 446 /// \param S the Sema 447 /// 448 /// \param TemplateParams the template parameters that we are deducing 449 /// 450 /// \param Param the parameter type 451 /// 452 /// \param Arg the argument type 453 /// 454 /// \param Info information about the template argument deduction itself 455 /// 456 /// \param Deduced the deduced template arguments 457 /// 458 /// \returns the result of template argument deduction so far. Note that a 459 /// "success" result means that template argument deduction has not yet failed, 460 /// but it may still fail, later, for other reasons. 461 static Sema::TemplateDeductionResult 462 DeduceTemplateArguments(Sema &S, 463 TemplateParameterList *TemplateParams, 464 const TemplateSpecializationType *Param, 465 QualType Arg, 466 TemplateDeductionInfo &Info, 467 SmallVectorImpl<DeducedTemplateArgument> &Deduced) { 468 assert(Arg.isCanonical() && "Argument type must be canonical"); 469 470 // Check whether the template argument is a dependent template-id. 471 if (const TemplateSpecializationType *SpecArg 472 = dyn_cast<TemplateSpecializationType>(Arg)) { 473 // Perform template argument deduction for the template name. 474 if (Sema::TemplateDeductionResult Result 475 = DeduceTemplateArguments(S, TemplateParams, 476 Param->getTemplateName(), 477 SpecArg->getTemplateName(), 478 Info, Deduced)) 479 return Result; 480 481 482 // Perform template argument deduction on each template 483 // argument. Ignore any missing/extra arguments, since they could be 484 // filled in by default arguments. 485 return DeduceTemplateArguments(S, TemplateParams, 486 Param->getArgs(), Param->getNumArgs(), 487 SpecArg->getArgs(), SpecArg->getNumArgs(), 488 Info, Deduced); 489 } 490 491 // If the argument type is a class template specialization, we 492 // perform template argument deduction using its template 493 // arguments. 494 const RecordType *RecordArg = dyn_cast<RecordType>(Arg); 495 if (!RecordArg) { 496 Info.FirstArg = TemplateArgument(QualType(Param, 0)); 497 Info.SecondArg = TemplateArgument(Arg); 498 return Sema::TDK_NonDeducedMismatch; 499 } 500 501 ClassTemplateSpecializationDecl *SpecArg 502 = dyn_cast<ClassTemplateSpecializationDecl>(RecordArg->getDecl()); 503 if (!SpecArg) { 504 Info.FirstArg = TemplateArgument(QualType(Param, 0)); 505 Info.SecondArg = TemplateArgument(Arg); 506 return Sema::TDK_NonDeducedMismatch; 507 } 508 509 // Perform template argument deduction for the template name. 510 if (Sema::TemplateDeductionResult Result 511 = DeduceTemplateArguments(S, 512 TemplateParams, 513 Param->getTemplateName(), 514 TemplateName(SpecArg->getSpecializedTemplate()), 515 Info, Deduced)) 516 return Result; 517 518 // Perform template argument deduction for the template arguments. 519 return DeduceTemplateArguments(S, TemplateParams, 520 Param->getArgs(), Param->getNumArgs(), 521 SpecArg->getTemplateArgs().data(), 522 SpecArg->getTemplateArgs().size(), 523 Info, Deduced); 524 } 525 526 /// \brief Determines whether the given type is an opaque type that 527 /// might be more qualified when instantiated. 528 static bool IsPossiblyOpaquelyQualifiedType(QualType T) { 529 switch (T->getTypeClass()) { 530 case Type::TypeOfExpr: 531 case Type::TypeOf: 532 case Type::DependentName: 533 case Type::Decltype: 534 case Type::UnresolvedUsing: 535 case Type::TemplateTypeParm: 536 return true; 537 538 case Type::ConstantArray: 539 case Type::IncompleteArray: 540 case Type::VariableArray: 541 case Type::DependentSizedArray: 542 return IsPossiblyOpaquelyQualifiedType( 543 cast<ArrayType>(T)->getElementType()); 544 545 default: 546 return false; 547 } 548 } 549 550 /// \brief Retrieve the depth and index of a template parameter. 551 static std::pair<unsigned, unsigned> 552 getDepthAndIndex(NamedDecl *ND) { 553 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND)) 554 return std::make_pair(TTP->getDepth(), TTP->getIndex()); 555 556 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND)) 557 return std::make_pair(NTTP->getDepth(), NTTP->getIndex()); 558 559 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND); 560 return std::make_pair(TTP->getDepth(), TTP->getIndex()); 561 } 562 563 /// \brief Retrieve the depth and index of an unexpanded parameter pack. 564 static std::pair<unsigned, unsigned> 565 getDepthAndIndex(UnexpandedParameterPack UPP) { 566 if (const TemplateTypeParmType *TTP 567 = UPP.first.dyn_cast<const TemplateTypeParmType *>()) 568 return std::make_pair(TTP->getDepth(), TTP->getIndex()); 569 570 return getDepthAndIndex(UPP.first.get<NamedDecl *>()); 571 } 572 573 /// \brief Helper function to build a TemplateParameter when we don't 574 /// know its type statically. 575 static TemplateParameter makeTemplateParameter(Decl *D) { 576 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(D)) 577 return TemplateParameter(TTP); 578 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(D)) 579 return TemplateParameter(NTTP); 580 581 return TemplateParameter(cast<TemplateTemplateParmDecl>(D)); 582 } 583 584 typedef SmallVector<SmallVector<DeducedTemplateArgument, 4>, 2> 585 NewlyDeducedPacksType; 586 587 /// \brief Prepare to perform template argument deduction for all of the 588 /// arguments in a set of argument packs. 589 static void 590 PrepareArgumentPackDeduction(Sema &S, 591 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 592 ArrayRef<unsigned> PackIndices, 593 SmallVectorImpl<DeducedTemplateArgument> &SavedPacks, 594 NewlyDeducedPacksType &NewlyDeducedPacks) { 595 // Save the deduced template arguments for each parameter pack expanded 596 // by this pack expansion, then clear out the deduction. 597 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) { 598 // Save the previously-deduced argument pack, then clear it out so that we 599 // can deduce a new argument pack. 600 SavedPacks[I] = Deduced[PackIndices[I]]; 601 Deduced[PackIndices[I]] = TemplateArgument(); 602 603 if (!S.CurrentInstantiationScope) 604 continue; 605 606 // If the template argument pack was explicitly specified, add that to 607 // the set of deduced arguments. 608 const TemplateArgument *ExplicitArgs; 609 unsigned NumExplicitArgs; 610 if (NamedDecl *PartiallySubstitutedPack 611 = S.CurrentInstantiationScope->getPartiallySubstitutedPack( 612 &ExplicitArgs, 613 &NumExplicitArgs)) { 614 if (getDepthAndIndex(PartiallySubstitutedPack).second == PackIndices[I]) 615 NewlyDeducedPacks[I].append(ExplicitArgs, 616 ExplicitArgs + NumExplicitArgs); 617 } 618 } 619 } 620 621 /// \brief Finish template argument deduction for a set of argument packs, 622 /// producing the argument packs and checking for consistency with prior 623 /// deductions. 624 static Sema::TemplateDeductionResult 625 FinishArgumentPackDeduction(Sema &S, 626 TemplateParameterList *TemplateParams, 627 bool HasAnyArguments, 628 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 629 ArrayRef<unsigned> PackIndices, 630 SmallVectorImpl<DeducedTemplateArgument> &SavedPacks, 631 NewlyDeducedPacksType &NewlyDeducedPacks, 632 TemplateDeductionInfo &Info) { 633 // Build argument packs for each of the parameter packs expanded by this 634 // pack expansion. 635 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) { 636 if (HasAnyArguments && NewlyDeducedPacks[I].empty()) { 637 // We were not able to deduce anything for this parameter pack, 638 // so just restore the saved argument pack. 639 Deduced[PackIndices[I]] = SavedPacks[I]; 640 continue; 641 } 642 643 DeducedTemplateArgument NewPack; 644 645 if (NewlyDeducedPacks[I].empty()) { 646 // If we deduced an empty argument pack, create it now. 647 NewPack = DeducedTemplateArgument(TemplateArgument::getEmptyPack()); 648 } else { 649 TemplateArgument *ArgumentPack 650 = new (S.Context) TemplateArgument [NewlyDeducedPacks[I].size()]; 651 std::copy(NewlyDeducedPacks[I].begin(), NewlyDeducedPacks[I].end(), 652 ArgumentPack); 653 NewPack 654 = DeducedTemplateArgument(TemplateArgument(ArgumentPack, 655 NewlyDeducedPacks[I].size()), 656 NewlyDeducedPacks[I][0].wasDeducedFromArrayBound()); 657 } 658 659 DeducedTemplateArgument Result 660 = checkDeducedTemplateArguments(S.Context, SavedPacks[I], NewPack); 661 if (Result.isNull()) { 662 Info.Param 663 = makeTemplateParameter(TemplateParams->getParam(PackIndices[I])); 664 Info.FirstArg = SavedPacks[I]; 665 Info.SecondArg = NewPack; 666 return Sema::TDK_Inconsistent; 667 } 668 669 Deduced[PackIndices[I]] = Result; 670 } 671 672 return Sema::TDK_Success; 673 } 674 675 /// \brief Deduce the template arguments by comparing the list of parameter 676 /// types to the list of argument types, as in the parameter-type-lists of 677 /// function types (C++ [temp.deduct.type]p10). 678 /// 679 /// \param S The semantic analysis object within which we are deducing 680 /// 681 /// \param TemplateParams The template parameters that we are deducing 682 /// 683 /// \param Params The list of parameter types 684 /// 685 /// \param NumParams The number of types in \c Params 686 /// 687 /// \param Args The list of argument types 688 /// 689 /// \param NumArgs The number of types in \c Args 690 /// 691 /// \param Info information about the template argument deduction itself 692 /// 693 /// \param Deduced the deduced template arguments 694 /// 695 /// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe 696 /// how template argument deduction is performed. 697 /// 698 /// \param PartialOrdering If true, we are performing template argument 699 /// deduction for during partial ordering for a call 700 /// (C++0x [temp.deduct.partial]). 701 /// 702 /// \param RefParamComparisons If we're performing template argument deduction 703 /// in the context of partial ordering, the set of qualifier comparisons. 704 /// 705 /// \returns the result of template argument deduction so far. Note that a 706 /// "success" result means that template argument deduction has not yet failed, 707 /// but it may still fail, later, for other reasons. 708 static Sema::TemplateDeductionResult 709 DeduceTemplateArguments(Sema &S, 710 TemplateParameterList *TemplateParams, 711 const QualType *Params, unsigned NumParams, 712 const QualType *Args, unsigned NumArgs, 713 TemplateDeductionInfo &Info, 714 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 715 unsigned TDF, 716 bool PartialOrdering = false, 717 SmallVectorImpl<RefParamPartialOrderingComparison> * 718 RefParamComparisons = 0) { 719 // Fast-path check to see if we have too many/too few arguments. 720 if (NumParams != NumArgs && 721 !(NumParams && isa<PackExpansionType>(Params[NumParams - 1])) && 722 !(NumArgs && isa<PackExpansionType>(Args[NumArgs - 1]))) 723 return Sema::TDK_MiscellaneousDeductionFailure; 724 725 // C++0x [temp.deduct.type]p10: 726 // Similarly, if P has a form that contains (T), then each parameter type 727 // Pi of the respective parameter-type- list of P is compared with the 728 // corresponding parameter type Ai of the corresponding parameter-type-list 729 // of A. [...] 730 unsigned ArgIdx = 0, ParamIdx = 0; 731 for (; ParamIdx != NumParams; ++ParamIdx) { 732 // Check argument types. 733 const PackExpansionType *Expansion 734 = dyn_cast<PackExpansionType>(Params[ParamIdx]); 735 if (!Expansion) { 736 // Simple case: compare the parameter and argument types at this point. 737 738 // Make sure we have an argument. 739 if (ArgIdx >= NumArgs) 740 return Sema::TDK_MiscellaneousDeductionFailure; 741 742 if (isa<PackExpansionType>(Args[ArgIdx])) { 743 // C++0x [temp.deduct.type]p22: 744 // If the original function parameter associated with A is a function 745 // parameter pack and the function parameter associated with P is not 746 // a function parameter pack, then template argument deduction fails. 747 return Sema::TDK_MiscellaneousDeductionFailure; 748 } 749 750 if (Sema::TemplateDeductionResult Result 751 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 752 Params[ParamIdx], Args[ArgIdx], 753 Info, Deduced, TDF, 754 PartialOrdering, 755 RefParamComparisons)) 756 return Result; 757 758 ++ArgIdx; 759 continue; 760 } 761 762 // C++0x [temp.deduct.type]p5: 763 // The non-deduced contexts are: 764 // - A function parameter pack that does not occur at the end of the 765 // parameter-declaration-clause. 766 if (ParamIdx + 1 < NumParams) 767 return Sema::TDK_Success; 768 769 // C++0x [temp.deduct.type]p10: 770 // If the parameter-declaration corresponding to Pi is a function 771 // parameter pack, then the type of its declarator- id is compared with 772 // each remaining parameter type in the parameter-type-list of A. Each 773 // comparison deduces template arguments for subsequent positions in the 774 // template parameter packs expanded by the function parameter pack. 775 776 // Compute the set of template parameter indices that correspond to 777 // parameter packs expanded by the pack expansion. 778 SmallVector<unsigned, 2> PackIndices; 779 QualType Pattern = Expansion->getPattern(); 780 { 781 llvm::SmallBitVector SawIndices(TemplateParams->size()); 782 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 783 S.collectUnexpandedParameterPacks(Pattern, Unexpanded); 784 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) { 785 unsigned Depth, Index; 786 std::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]); 787 if (Depth == 0 && !SawIndices[Index]) { 788 SawIndices[Index] = true; 789 PackIndices.push_back(Index); 790 } 791 } 792 } 793 assert(!PackIndices.empty() && "Pack expansion without unexpanded packs?"); 794 795 // Keep track of the deduced template arguments for each parameter pack 796 // expanded by this pack expansion (the outer index) and for each 797 // template argument (the inner SmallVectors). 798 NewlyDeducedPacksType NewlyDeducedPacks(PackIndices.size()); 799 SmallVector<DeducedTemplateArgument, 2> 800 SavedPacks(PackIndices.size()); 801 PrepareArgumentPackDeduction(S, Deduced, PackIndices, SavedPacks, 802 NewlyDeducedPacks); 803 804 bool HasAnyArguments = false; 805 for (; ArgIdx < NumArgs; ++ArgIdx) { 806 HasAnyArguments = true; 807 808 // Deduce template arguments from the pattern. 809 if (Sema::TemplateDeductionResult Result 810 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, Pattern, 811 Args[ArgIdx], Info, Deduced, 812 TDF, PartialOrdering, 813 RefParamComparisons)) 814 return Result; 815 816 // Capture the deduced template arguments for each parameter pack expanded 817 // by this pack expansion, add them to the list of arguments we've deduced 818 // for that pack, then clear out the deduced argument. 819 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) { 820 DeducedTemplateArgument &DeducedArg = Deduced[PackIndices[I]]; 821 if (!DeducedArg.isNull()) { 822 NewlyDeducedPacks[I].push_back(DeducedArg); 823 DeducedArg = DeducedTemplateArgument(); 824 } 825 } 826 } 827 828 // Build argument packs for each of the parameter packs expanded by this 829 // pack expansion. 830 if (Sema::TemplateDeductionResult Result 831 = FinishArgumentPackDeduction(S, TemplateParams, HasAnyArguments, 832 Deduced, PackIndices, SavedPacks, 833 NewlyDeducedPacks, Info)) 834 return Result; 835 } 836 837 // Make sure we don't have any extra arguments. 838 if (ArgIdx < NumArgs) 839 return Sema::TDK_MiscellaneousDeductionFailure; 840 841 return Sema::TDK_Success; 842 } 843 844 /// \brief Determine whether the parameter has qualifiers that are either 845 /// inconsistent with or a superset of the argument's qualifiers. 846 static bool hasInconsistentOrSupersetQualifiersOf(QualType ParamType, 847 QualType ArgType) { 848 Qualifiers ParamQs = ParamType.getQualifiers(); 849 Qualifiers ArgQs = ArgType.getQualifiers(); 850 851 if (ParamQs == ArgQs) 852 return false; 853 854 // Mismatched (but not missing) Objective-C GC attributes. 855 if (ParamQs.getObjCGCAttr() != ArgQs.getObjCGCAttr() && 856 ParamQs.hasObjCGCAttr()) 857 return true; 858 859 // Mismatched (but not missing) address spaces. 860 if (ParamQs.getAddressSpace() != ArgQs.getAddressSpace() && 861 ParamQs.hasAddressSpace()) 862 return true; 863 864 // Mismatched (but not missing) Objective-C lifetime qualifiers. 865 if (ParamQs.getObjCLifetime() != ArgQs.getObjCLifetime() && 866 ParamQs.hasObjCLifetime()) 867 return true; 868 869 // CVR qualifier superset. 870 return (ParamQs.getCVRQualifiers() != ArgQs.getCVRQualifiers()) && 871 ((ParamQs.getCVRQualifiers() | ArgQs.getCVRQualifiers()) 872 == ParamQs.getCVRQualifiers()); 873 } 874 875 /// \brief Compare types for equality with respect to possibly compatible 876 /// function types (noreturn adjustment, implicit calling conventions). If any 877 /// of parameter and argument is not a function, just perform type comparison. 878 /// 879 /// \param Param the template parameter type. 880 /// 881 /// \param Arg the argument type. 882 bool Sema::isSameOrCompatibleFunctionType(CanQualType Param, 883 CanQualType Arg) { 884 const FunctionType *ParamFunction = Param->getAs<FunctionType>(), 885 *ArgFunction = Arg->getAs<FunctionType>(); 886 887 // Just compare if not functions. 888 if (!ParamFunction || !ArgFunction) 889 return Param == Arg; 890 891 // Noreturn adjustment. 892 QualType AdjustedParam; 893 if (IsNoReturnConversion(Param, Arg, AdjustedParam)) 894 return Arg == Context.getCanonicalType(AdjustedParam); 895 896 // FIXME: Compatible calling conventions. 897 898 return Param == Arg; 899 } 900 901 /// \brief Deduce the template arguments by comparing the parameter type and 902 /// the argument type (C++ [temp.deduct.type]). 903 /// 904 /// \param S the semantic analysis object within which we are deducing 905 /// 906 /// \param TemplateParams the template parameters that we are deducing 907 /// 908 /// \param ParamIn the parameter type 909 /// 910 /// \param ArgIn the argument type 911 /// 912 /// \param Info information about the template argument deduction itself 913 /// 914 /// \param Deduced the deduced template arguments 915 /// 916 /// \param TDF bitwise OR of the TemplateDeductionFlags bits that describe 917 /// how template argument deduction is performed. 918 /// 919 /// \param PartialOrdering Whether we're performing template argument deduction 920 /// in the context of partial ordering (C++0x [temp.deduct.partial]). 921 /// 922 /// \param RefParamComparisons If we're performing template argument deduction 923 /// in the context of partial ordering, the set of qualifier comparisons. 924 /// 925 /// \returns the result of template argument deduction so far. Note that a 926 /// "success" result means that template argument deduction has not yet failed, 927 /// but it may still fail, later, for other reasons. 928 static Sema::TemplateDeductionResult 929 DeduceTemplateArgumentsByTypeMatch(Sema &S, 930 TemplateParameterList *TemplateParams, 931 QualType ParamIn, QualType ArgIn, 932 TemplateDeductionInfo &Info, 933 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 934 unsigned TDF, 935 bool PartialOrdering, 936 SmallVectorImpl<RefParamPartialOrderingComparison> * 937 RefParamComparisons) { 938 // We only want to look at the canonical types, since typedefs and 939 // sugar are not part of template argument deduction. 940 QualType Param = S.Context.getCanonicalType(ParamIn); 941 QualType Arg = S.Context.getCanonicalType(ArgIn); 942 943 // If the argument type is a pack expansion, look at its pattern. 944 // This isn't explicitly called out 945 if (const PackExpansionType *ArgExpansion 946 = dyn_cast<PackExpansionType>(Arg)) 947 Arg = ArgExpansion->getPattern(); 948 949 if (PartialOrdering) { 950 // C++0x [temp.deduct.partial]p5: 951 // Before the partial ordering is done, certain transformations are 952 // performed on the types used for partial ordering: 953 // - If P is a reference type, P is replaced by the type referred to. 954 const ReferenceType *ParamRef = Param->getAs<ReferenceType>(); 955 if (ParamRef) 956 Param = ParamRef->getPointeeType(); 957 958 // - If A is a reference type, A is replaced by the type referred to. 959 const ReferenceType *ArgRef = Arg->getAs<ReferenceType>(); 960 if (ArgRef) 961 Arg = ArgRef->getPointeeType(); 962 963 if (RefParamComparisons && ParamRef && ArgRef) { 964 // C++0x [temp.deduct.partial]p6: 965 // If both P and A were reference types (before being replaced with the 966 // type referred to above), determine which of the two types (if any) is 967 // more cv-qualified than the other; otherwise the types are considered 968 // to be equally cv-qualified for partial ordering purposes. The result 969 // of this determination will be used below. 970 // 971 // We save this information for later, using it only when deduction 972 // succeeds in both directions. 973 RefParamPartialOrderingComparison Comparison; 974 Comparison.ParamIsRvalueRef = ParamRef->getAs<RValueReferenceType>(); 975 Comparison.ArgIsRvalueRef = ArgRef->getAs<RValueReferenceType>(); 976 Comparison.Qualifiers = NeitherMoreQualified; 977 978 Qualifiers ParamQuals = Param.getQualifiers(); 979 Qualifiers ArgQuals = Arg.getQualifiers(); 980 if (ParamQuals.isStrictSupersetOf(ArgQuals)) 981 Comparison.Qualifiers = ParamMoreQualified; 982 else if (ArgQuals.isStrictSupersetOf(ParamQuals)) 983 Comparison.Qualifiers = ArgMoreQualified; 984 else if (ArgQuals.getObjCLifetime() != ParamQuals.getObjCLifetime() && 985 ArgQuals.withoutObjCLifetime() 986 == ParamQuals.withoutObjCLifetime()) { 987 // Prefer binding to non-__unsafe_autoretained parameters. 988 if (ArgQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone && 989 ParamQuals.getObjCLifetime()) 990 Comparison.Qualifiers = ParamMoreQualified; 991 else if (ParamQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone && 992 ArgQuals.getObjCLifetime()) 993 Comparison.Qualifiers = ArgMoreQualified; 994 } 995 RefParamComparisons->push_back(Comparison); 996 } 997 998 // C++0x [temp.deduct.partial]p7: 999 // Remove any top-level cv-qualifiers: 1000 // - If P is a cv-qualified type, P is replaced by the cv-unqualified 1001 // version of P. 1002 Param = Param.getUnqualifiedType(); 1003 // - If A is a cv-qualified type, A is replaced by the cv-unqualified 1004 // version of A. 1005 Arg = Arg.getUnqualifiedType(); 1006 } else { 1007 // C++0x [temp.deduct.call]p4 bullet 1: 1008 // - If the original P is a reference type, the deduced A (i.e., the type 1009 // referred to by the reference) can be more cv-qualified than the 1010 // transformed A. 1011 if (TDF & TDF_ParamWithReferenceType) { 1012 Qualifiers Quals; 1013 QualType UnqualParam = S.Context.getUnqualifiedArrayType(Param, Quals); 1014 Quals.setCVRQualifiers(Quals.getCVRQualifiers() & 1015 Arg.getCVRQualifiers()); 1016 Param = S.Context.getQualifiedType(UnqualParam, Quals); 1017 } 1018 1019 if ((TDF & TDF_TopLevelParameterTypeList) && !Param->isFunctionType()) { 1020 // C++0x [temp.deduct.type]p10: 1021 // If P and A are function types that originated from deduction when 1022 // taking the address of a function template (14.8.2.2) or when deducing 1023 // template arguments from a function declaration (14.8.2.6) and Pi and 1024 // Ai are parameters of the top-level parameter-type-list of P and A, 1025 // respectively, Pi is adjusted if it is an rvalue reference to a 1026 // cv-unqualified template parameter and Ai is an lvalue reference, in 1027 // which case the type of Pi is changed to be the template parameter 1028 // type (i.e., T&& is changed to simply T). [ Note: As a result, when 1029 // Pi is T&& and Ai is X&, the adjusted Pi will be T, causing T to be 1030 // deduced as X&. - end note ] 1031 TDF &= ~TDF_TopLevelParameterTypeList; 1032 1033 if (const RValueReferenceType *ParamRef 1034 = Param->getAs<RValueReferenceType>()) { 1035 if (isa<TemplateTypeParmType>(ParamRef->getPointeeType()) && 1036 !ParamRef->getPointeeType().getQualifiers()) 1037 if (Arg->isLValueReferenceType()) 1038 Param = ParamRef->getPointeeType(); 1039 } 1040 } 1041 } 1042 1043 // C++ [temp.deduct.type]p9: 1044 // A template type argument T, a template template argument TT or a 1045 // template non-type argument i can be deduced if P and A have one of 1046 // the following forms: 1047 // 1048 // T 1049 // cv-list T 1050 if (const TemplateTypeParmType *TemplateTypeParm 1051 = Param->getAs<TemplateTypeParmType>()) { 1052 // Just skip any attempts to deduce from a placeholder type. 1053 if (Arg->isPlaceholderType()) 1054 return Sema::TDK_Success; 1055 1056 unsigned Index = TemplateTypeParm->getIndex(); 1057 bool RecanonicalizeArg = false; 1058 1059 // If the argument type is an array type, move the qualifiers up to the 1060 // top level, so they can be matched with the qualifiers on the parameter. 1061 if (isa<ArrayType>(Arg)) { 1062 Qualifiers Quals; 1063 Arg = S.Context.getUnqualifiedArrayType(Arg, Quals); 1064 if (Quals) { 1065 Arg = S.Context.getQualifiedType(Arg, Quals); 1066 RecanonicalizeArg = true; 1067 } 1068 } 1069 1070 // The argument type can not be less qualified than the parameter 1071 // type. 1072 if (!(TDF & TDF_IgnoreQualifiers) && 1073 hasInconsistentOrSupersetQualifiersOf(Param, Arg)) { 1074 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index)); 1075 Info.FirstArg = TemplateArgument(Param); 1076 Info.SecondArg = TemplateArgument(Arg); 1077 return Sema::TDK_Underqualified; 1078 } 1079 1080 assert(TemplateTypeParm->getDepth() == 0 && "Can't deduce with depth > 0"); 1081 assert(Arg != S.Context.OverloadTy && "Unresolved overloaded function"); 1082 QualType DeducedType = Arg; 1083 1084 // Remove any qualifiers on the parameter from the deduced type. 1085 // We checked the qualifiers for consistency above. 1086 Qualifiers DeducedQs = DeducedType.getQualifiers(); 1087 Qualifiers ParamQs = Param.getQualifiers(); 1088 DeducedQs.removeCVRQualifiers(ParamQs.getCVRQualifiers()); 1089 if (ParamQs.hasObjCGCAttr()) 1090 DeducedQs.removeObjCGCAttr(); 1091 if (ParamQs.hasAddressSpace()) 1092 DeducedQs.removeAddressSpace(); 1093 if (ParamQs.hasObjCLifetime()) 1094 DeducedQs.removeObjCLifetime(); 1095 1096 // Objective-C ARC: 1097 // If template deduction would produce a lifetime qualifier on a type 1098 // that is not a lifetime type, template argument deduction fails. 1099 if (ParamQs.hasObjCLifetime() && !DeducedType->isObjCLifetimeType() && 1100 !DeducedType->isDependentType()) { 1101 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index)); 1102 Info.FirstArg = TemplateArgument(Param); 1103 Info.SecondArg = TemplateArgument(Arg); 1104 return Sema::TDK_Underqualified; 1105 } 1106 1107 // Objective-C ARC: 1108 // If template deduction would produce an argument type with lifetime type 1109 // but no lifetime qualifier, the __strong lifetime qualifier is inferred. 1110 if (S.getLangOpts().ObjCAutoRefCount && 1111 DeducedType->isObjCLifetimeType() && 1112 !DeducedQs.hasObjCLifetime()) 1113 DeducedQs.setObjCLifetime(Qualifiers::OCL_Strong); 1114 1115 DeducedType = S.Context.getQualifiedType(DeducedType.getUnqualifiedType(), 1116 DeducedQs); 1117 1118 if (RecanonicalizeArg) 1119 DeducedType = S.Context.getCanonicalType(DeducedType); 1120 1121 DeducedTemplateArgument NewDeduced(DeducedType); 1122 DeducedTemplateArgument Result = checkDeducedTemplateArguments(S.Context, 1123 Deduced[Index], 1124 NewDeduced); 1125 if (Result.isNull()) { 1126 Info.Param = cast<TemplateTypeParmDecl>(TemplateParams->getParam(Index)); 1127 Info.FirstArg = Deduced[Index]; 1128 Info.SecondArg = NewDeduced; 1129 return Sema::TDK_Inconsistent; 1130 } 1131 1132 Deduced[Index] = Result; 1133 return Sema::TDK_Success; 1134 } 1135 1136 // Set up the template argument deduction information for a failure. 1137 Info.FirstArg = TemplateArgument(ParamIn); 1138 Info.SecondArg = TemplateArgument(ArgIn); 1139 1140 // If the parameter is an already-substituted template parameter 1141 // pack, do nothing: we don't know which of its arguments to look 1142 // at, so we have to wait until all of the parameter packs in this 1143 // expansion have arguments. 1144 if (isa<SubstTemplateTypeParmPackType>(Param)) 1145 return Sema::TDK_Success; 1146 1147 // Check the cv-qualifiers on the parameter and argument types. 1148 CanQualType CanParam = S.Context.getCanonicalType(Param); 1149 CanQualType CanArg = S.Context.getCanonicalType(Arg); 1150 if (!(TDF & TDF_IgnoreQualifiers)) { 1151 if (TDF & TDF_ParamWithReferenceType) { 1152 if (hasInconsistentOrSupersetQualifiersOf(Param, Arg)) 1153 return Sema::TDK_NonDeducedMismatch; 1154 } else if (!IsPossiblyOpaquelyQualifiedType(Param)) { 1155 if (Param.getCVRQualifiers() != Arg.getCVRQualifiers()) 1156 return Sema::TDK_NonDeducedMismatch; 1157 } 1158 1159 // If the parameter type is not dependent, there is nothing to deduce. 1160 if (!Param->isDependentType()) { 1161 if (!(TDF & TDF_SkipNonDependent)) { 1162 bool NonDeduced = (TDF & TDF_InOverloadResolution)? 1163 !S.isSameOrCompatibleFunctionType(CanParam, CanArg) : 1164 Param != Arg; 1165 if (NonDeduced) { 1166 return Sema::TDK_NonDeducedMismatch; 1167 } 1168 } 1169 return Sema::TDK_Success; 1170 } 1171 } else if (!Param->isDependentType()) { 1172 CanQualType ParamUnqualType = CanParam.getUnqualifiedType(), 1173 ArgUnqualType = CanArg.getUnqualifiedType(); 1174 bool Success = (TDF & TDF_InOverloadResolution)? 1175 S.isSameOrCompatibleFunctionType(ParamUnqualType, 1176 ArgUnqualType) : 1177 ParamUnqualType == ArgUnqualType; 1178 if (Success) 1179 return Sema::TDK_Success; 1180 } 1181 1182 switch (Param->getTypeClass()) { 1183 // Non-canonical types cannot appear here. 1184 #define NON_CANONICAL_TYPE(Class, Base) \ 1185 case Type::Class: llvm_unreachable("deducing non-canonical type: " #Class); 1186 #define TYPE(Class, Base) 1187 #include "clang/AST/TypeNodes.def" 1188 1189 case Type::TemplateTypeParm: 1190 case Type::SubstTemplateTypeParmPack: 1191 llvm_unreachable("Type nodes handled above"); 1192 1193 // These types cannot be dependent, so simply check whether the types are 1194 // the same. 1195 case Type::Builtin: 1196 case Type::VariableArray: 1197 case Type::Vector: 1198 case Type::FunctionNoProto: 1199 case Type::Record: 1200 case Type::Enum: 1201 case Type::ObjCObject: 1202 case Type::ObjCInterface: 1203 case Type::ObjCObjectPointer: { 1204 if (TDF & TDF_SkipNonDependent) 1205 return Sema::TDK_Success; 1206 1207 if (TDF & TDF_IgnoreQualifiers) { 1208 Param = Param.getUnqualifiedType(); 1209 Arg = Arg.getUnqualifiedType(); 1210 } 1211 1212 return Param == Arg? Sema::TDK_Success : Sema::TDK_NonDeducedMismatch; 1213 } 1214 1215 // _Complex T [placeholder extension] 1216 case Type::Complex: 1217 if (const ComplexType *ComplexArg = Arg->getAs<ComplexType>()) 1218 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1219 cast<ComplexType>(Param)->getElementType(), 1220 ComplexArg->getElementType(), 1221 Info, Deduced, TDF); 1222 1223 return Sema::TDK_NonDeducedMismatch; 1224 1225 // _Atomic T [extension] 1226 case Type::Atomic: 1227 if (const AtomicType *AtomicArg = Arg->getAs<AtomicType>()) 1228 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1229 cast<AtomicType>(Param)->getValueType(), 1230 AtomicArg->getValueType(), 1231 Info, Deduced, TDF); 1232 1233 return Sema::TDK_NonDeducedMismatch; 1234 1235 // T * 1236 case Type::Pointer: { 1237 QualType PointeeType; 1238 if (const PointerType *PointerArg = Arg->getAs<PointerType>()) { 1239 PointeeType = PointerArg->getPointeeType(); 1240 } else if (const ObjCObjectPointerType *PointerArg 1241 = Arg->getAs<ObjCObjectPointerType>()) { 1242 PointeeType = PointerArg->getPointeeType(); 1243 } else { 1244 return Sema::TDK_NonDeducedMismatch; 1245 } 1246 1247 unsigned SubTDF = TDF & (TDF_IgnoreQualifiers | TDF_DerivedClass); 1248 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1249 cast<PointerType>(Param)->getPointeeType(), 1250 PointeeType, 1251 Info, Deduced, SubTDF); 1252 } 1253 1254 // T & 1255 case Type::LValueReference: { 1256 const LValueReferenceType *ReferenceArg = Arg->getAs<LValueReferenceType>(); 1257 if (!ReferenceArg) 1258 return Sema::TDK_NonDeducedMismatch; 1259 1260 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1261 cast<LValueReferenceType>(Param)->getPointeeType(), 1262 ReferenceArg->getPointeeType(), Info, Deduced, 0); 1263 } 1264 1265 // T && [C++0x] 1266 case Type::RValueReference: { 1267 const RValueReferenceType *ReferenceArg = Arg->getAs<RValueReferenceType>(); 1268 if (!ReferenceArg) 1269 return Sema::TDK_NonDeducedMismatch; 1270 1271 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1272 cast<RValueReferenceType>(Param)->getPointeeType(), 1273 ReferenceArg->getPointeeType(), 1274 Info, Deduced, 0); 1275 } 1276 1277 // T [] (implied, but not stated explicitly) 1278 case Type::IncompleteArray: { 1279 const IncompleteArrayType *IncompleteArrayArg = 1280 S.Context.getAsIncompleteArrayType(Arg); 1281 if (!IncompleteArrayArg) 1282 return Sema::TDK_NonDeducedMismatch; 1283 1284 unsigned SubTDF = TDF & TDF_IgnoreQualifiers; 1285 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1286 S.Context.getAsIncompleteArrayType(Param)->getElementType(), 1287 IncompleteArrayArg->getElementType(), 1288 Info, Deduced, SubTDF); 1289 } 1290 1291 // T [integer-constant] 1292 case Type::ConstantArray: { 1293 const ConstantArrayType *ConstantArrayArg = 1294 S.Context.getAsConstantArrayType(Arg); 1295 if (!ConstantArrayArg) 1296 return Sema::TDK_NonDeducedMismatch; 1297 1298 const ConstantArrayType *ConstantArrayParm = 1299 S.Context.getAsConstantArrayType(Param); 1300 if (ConstantArrayArg->getSize() != ConstantArrayParm->getSize()) 1301 return Sema::TDK_NonDeducedMismatch; 1302 1303 unsigned SubTDF = TDF & TDF_IgnoreQualifiers; 1304 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1305 ConstantArrayParm->getElementType(), 1306 ConstantArrayArg->getElementType(), 1307 Info, Deduced, SubTDF); 1308 } 1309 1310 // type [i] 1311 case Type::DependentSizedArray: { 1312 const ArrayType *ArrayArg = S.Context.getAsArrayType(Arg); 1313 if (!ArrayArg) 1314 return Sema::TDK_NonDeducedMismatch; 1315 1316 unsigned SubTDF = TDF & TDF_IgnoreQualifiers; 1317 1318 // Check the element type of the arrays 1319 const DependentSizedArrayType *DependentArrayParm 1320 = S.Context.getAsDependentSizedArrayType(Param); 1321 if (Sema::TemplateDeductionResult Result 1322 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1323 DependentArrayParm->getElementType(), 1324 ArrayArg->getElementType(), 1325 Info, Deduced, SubTDF)) 1326 return Result; 1327 1328 // Determine the array bound is something we can deduce. 1329 NonTypeTemplateParmDecl *NTTP 1330 = getDeducedParameterFromExpr(DependentArrayParm->getSizeExpr()); 1331 if (!NTTP) 1332 return Sema::TDK_Success; 1333 1334 // We can perform template argument deduction for the given non-type 1335 // template parameter. 1336 assert(NTTP->getDepth() == 0 && 1337 "Cannot deduce non-type template argument at depth > 0"); 1338 if (const ConstantArrayType *ConstantArrayArg 1339 = dyn_cast<ConstantArrayType>(ArrayArg)) { 1340 llvm::APSInt Size(ConstantArrayArg->getSize()); 1341 return DeduceNonTypeTemplateArgument(S, NTTP, Size, 1342 S.Context.getSizeType(), 1343 /*ArrayBound=*/true, 1344 Info, Deduced); 1345 } 1346 if (const DependentSizedArrayType *DependentArrayArg 1347 = dyn_cast<DependentSizedArrayType>(ArrayArg)) 1348 if (DependentArrayArg->getSizeExpr()) 1349 return DeduceNonTypeTemplateArgument(S, NTTP, 1350 DependentArrayArg->getSizeExpr(), 1351 Info, Deduced); 1352 1353 // Incomplete type does not match a dependently-sized array type 1354 return Sema::TDK_NonDeducedMismatch; 1355 } 1356 1357 // type(*)(T) 1358 // T(*)() 1359 // T(*)(T) 1360 case Type::FunctionProto: { 1361 unsigned SubTDF = TDF & TDF_TopLevelParameterTypeList; 1362 const FunctionProtoType *FunctionProtoArg = 1363 dyn_cast<FunctionProtoType>(Arg); 1364 if (!FunctionProtoArg) 1365 return Sema::TDK_NonDeducedMismatch; 1366 1367 const FunctionProtoType *FunctionProtoParam = 1368 cast<FunctionProtoType>(Param); 1369 1370 if (FunctionProtoParam->getTypeQuals() 1371 != FunctionProtoArg->getTypeQuals() || 1372 FunctionProtoParam->getRefQualifier() 1373 != FunctionProtoArg->getRefQualifier() || 1374 FunctionProtoParam->isVariadic() != FunctionProtoArg->isVariadic()) 1375 return Sema::TDK_NonDeducedMismatch; 1376 1377 // Check return types. 1378 if (Sema::TemplateDeductionResult Result = 1379 DeduceTemplateArgumentsByTypeMatch( 1380 S, TemplateParams, FunctionProtoParam->getReturnType(), 1381 FunctionProtoArg->getReturnType(), Info, Deduced, 0)) 1382 return Result; 1383 1384 return DeduceTemplateArguments( 1385 S, TemplateParams, FunctionProtoParam->param_type_begin(), 1386 FunctionProtoParam->getNumParams(), 1387 FunctionProtoArg->param_type_begin(), 1388 FunctionProtoArg->getNumParams(), Info, Deduced, SubTDF); 1389 } 1390 1391 case Type::InjectedClassName: { 1392 // Treat a template's injected-class-name as if the template 1393 // specialization type had been used. 1394 Param = cast<InjectedClassNameType>(Param) 1395 ->getInjectedSpecializationType(); 1396 assert(isa<TemplateSpecializationType>(Param) && 1397 "injected class name is not a template specialization type"); 1398 // fall through 1399 } 1400 1401 // template-name<T> (where template-name refers to a class template) 1402 // template-name<i> 1403 // TT<T> 1404 // TT<i> 1405 // TT<> 1406 case Type::TemplateSpecialization: { 1407 const TemplateSpecializationType *SpecParam 1408 = cast<TemplateSpecializationType>(Param); 1409 1410 // Try to deduce template arguments from the template-id. 1411 Sema::TemplateDeductionResult Result 1412 = DeduceTemplateArguments(S, TemplateParams, SpecParam, Arg, 1413 Info, Deduced); 1414 1415 if (Result && (TDF & TDF_DerivedClass)) { 1416 // C++ [temp.deduct.call]p3b3: 1417 // If P is a class, and P has the form template-id, then A can be a 1418 // derived class of the deduced A. Likewise, if P is a pointer to a 1419 // class of the form template-id, A can be a pointer to a derived 1420 // class pointed to by the deduced A. 1421 // 1422 // More importantly: 1423 // These alternatives are considered only if type deduction would 1424 // otherwise fail. 1425 if (const RecordType *RecordT = Arg->getAs<RecordType>()) { 1426 // We cannot inspect base classes as part of deduction when the type 1427 // is incomplete, so either instantiate any templates necessary to 1428 // complete the type, or skip over it if it cannot be completed. 1429 if (S.RequireCompleteType(Info.getLocation(), Arg, 0)) 1430 return Result; 1431 1432 // Use data recursion to crawl through the list of base classes. 1433 // Visited contains the set of nodes we have already visited, while 1434 // ToVisit is our stack of records that we still need to visit. 1435 llvm::SmallPtrSet<const RecordType *, 8> Visited; 1436 SmallVector<const RecordType *, 8> ToVisit; 1437 ToVisit.push_back(RecordT); 1438 bool Successful = false; 1439 SmallVector<DeducedTemplateArgument, 8> DeducedOrig(Deduced.begin(), 1440 Deduced.end()); 1441 while (!ToVisit.empty()) { 1442 // Retrieve the next class in the inheritance hierarchy. 1443 const RecordType *NextT = ToVisit.pop_back_val(); 1444 1445 // If we have already seen this type, skip it. 1446 if (!Visited.insert(NextT)) 1447 continue; 1448 1449 // If this is a base class, try to perform template argument 1450 // deduction from it. 1451 if (NextT != RecordT) { 1452 TemplateDeductionInfo BaseInfo(Info.getLocation()); 1453 Sema::TemplateDeductionResult BaseResult 1454 = DeduceTemplateArguments(S, TemplateParams, SpecParam, 1455 QualType(NextT, 0), BaseInfo, 1456 Deduced); 1457 1458 // If template argument deduction for this base was successful, 1459 // note that we had some success. Otherwise, ignore any deductions 1460 // from this base class. 1461 if (BaseResult == Sema::TDK_Success) { 1462 Successful = true; 1463 DeducedOrig.clear(); 1464 DeducedOrig.append(Deduced.begin(), Deduced.end()); 1465 Info.Param = BaseInfo.Param; 1466 Info.FirstArg = BaseInfo.FirstArg; 1467 Info.SecondArg = BaseInfo.SecondArg; 1468 } 1469 else 1470 Deduced = DeducedOrig; 1471 } 1472 1473 // Visit base classes 1474 CXXRecordDecl *Next = cast<CXXRecordDecl>(NextT->getDecl()); 1475 for (const auto &Base : Next->bases()) { 1476 assert(Base.getType()->isRecordType() && 1477 "Base class that isn't a record?"); 1478 ToVisit.push_back(Base.getType()->getAs<RecordType>()); 1479 } 1480 } 1481 1482 if (Successful) 1483 return Sema::TDK_Success; 1484 } 1485 1486 } 1487 1488 return Result; 1489 } 1490 1491 // T type::* 1492 // T T::* 1493 // T (type::*)() 1494 // type (T::*)() 1495 // type (type::*)(T) 1496 // type (T::*)(T) 1497 // T (type::*)(T) 1498 // T (T::*)() 1499 // T (T::*)(T) 1500 case Type::MemberPointer: { 1501 const MemberPointerType *MemPtrParam = cast<MemberPointerType>(Param); 1502 const MemberPointerType *MemPtrArg = dyn_cast<MemberPointerType>(Arg); 1503 if (!MemPtrArg) 1504 return Sema::TDK_NonDeducedMismatch; 1505 1506 if (Sema::TemplateDeductionResult Result 1507 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1508 MemPtrParam->getPointeeType(), 1509 MemPtrArg->getPointeeType(), 1510 Info, Deduced, 1511 TDF & TDF_IgnoreQualifiers)) 1512 return Result; 1513 1514 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1515 QualType(MemPtrParam->getClass(), 0), 1516 QualType(MemPtrArg->getClass(), 0), 1517 Info, Deduced, 1518 TDF & TDF_IgnoreQualifiers); 1519 } 1520 1521 // (clang extension) 1522 // 1523 // type(^)(T) 1524 // T(^)() 1525 // T(^)(T) 1526 case Type::BlockPointer: { 1527 const BlockPointerType *BlockPtrParam = cast<BlockPointerType>(Param); 1528 const BlockPointerType *BlockPtrArg = dyn_cast<BlockPointerType>(Arg); 1529 1530 if (!BlockPtrArg) 1531 return Sema::TDK_NonDeducedMismatch; 1532 1533 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1534 BlockPtrParam->getPointeeType(), 1535 BlockPtrArg->getPointeeType(), 1536 Info, Deduced, 0); 1537 } 1538 1539 // (clang extension) 1540 // 1541 // T __attribute__(((ext_vector_type(<integral constant>)))) 1542 case Type::ExtVector: { 1543 const ExtVectorType *VectorParam = cast<ExtVectorType>(Param); 1544 if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) { 1545 // Make sure that the vectors have the same number of elements. 1546 if (VectorParam->getNumElements() != VectorArg->getNumElements()) 1547 return Sema::TDK_NonDeducedMismatch; 1548 1549 // Perform deduction on the element types. 1550 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1551 VectorParam->getElementType(), 1552 VectorArg->getElementType(), 1553 Info, Deduced, TDF); 1554 } 1555 1556 if (const DependentSizedExtVectorType *VectorArg 1557 = dyn_cast<DependentSizedExtVectorType>(Arg)) { 1558 // We can't check the number of elements, since the argument has a 1559 // dependent number of elements. This can only occur during partial 1560 // ordering. 1561 1562 // Perform deduction on the element types. 1563 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1564 VectorParam->getElementType(), 1565 VectorArg->getElementType(), 1566 Info, Deduced, TDF); 1567 } 1568 1569 return Sema::TDK_NonDeducedMismatch; 1570 } 1571 1572 // (clang extension) 1573 // 1574 // T __attribute__(((ext_vector_type(N)))) 1575 case Type::DependentSizedExtVector: { 1576 const DependentSizedExtVectorType *VectorParam 1577 = cast<DependentSizedExtVectorType>(Param); 1578 1579 if (const ExtVectorType *VectorArg = dyn_cast<ExtVectorType>(Arg)) { 1580 // Perform deduction on the element types. 1581 if (Sema::TemplateDeductionResult Result 1582 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1583 VectorParam->getElementType(), 1584 VectorArg->getElementType(), 1585 Info, Deduced, TDF)) 1586 return Result; 1587 1588 // Perform deduction on the vector size, if we can. 1589 NonTypeTemplateParmDecl *NTTP 1590 = getDeducedParameterFromExpr(VectorParam->getSizeExpr()); 1591 if (!NTTP) 1592 return Sema::TDK_Success; 1593 1594 llvm::APSInt ArgSize(S.Context.getTypeSize(S.Context.IntTy), false); 1595 ArgSize = VectorArg->getNumElements(); 1596 return DeduceNonTypeTemplateArgument(S, NTTP, ArgSize, S.Context.IntTy, 1597 false, Info, Deduced); 1598 } 1599 1600 if (const DependentSizedExtVectorType *VectorArg 1601 = dyn_cast<DependentSizedExtVectorType>(Arg)) { 1602 // Perform deduction on the element types. 1603 if (Sema::TemplateDeductionResult Result 1604 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1605 VectorParam->getElementType(), 1606 VectorArg->getElementType(), 1607 Info, Deduced, TDF)) 1608 return Result; 1609 1610 // Perform deduction on the vector size, if we can. 1611 NonTypeTemplateParmDecl *NTTP 1612 = getDeducedParameterFromExpr(VectorParam->getSizeExpr()); 1613 if (!NTTP) 1614 return Sema::TDK_Success; 1615 1616 return DeduceNonTypeTemplateArgument(S, NTTP, VectorArg->getSizeExpr(), 1617 Info, Deduced); 1618 } 1619 1620 return Sema::TDK_NonDeducedMismatch; 1621 } 1622 1623 case Type::TypeOfExpr: 1624 case Type::TypeOf: 1625 case Type::DependentName: 1626 case Type::UnresolvedUsing: 1627 case Type::Decltype: 1628 case Type::UnaryTransform: 1629 case Type::Auto: 1630 case Type::DependentTemplateSpecialization: 1631 case Type::PackExpansion: 1632 // No template argument deduction for these types 1633 return Sema::TDK_Success; 1634 } 1635 1636 llvm_unreachable("Invalid Type Class!"); 1637 } 1638 1639 static Sema::TemplateDeductionResult 1640 DeduceTemplateArguments(Sema &S, 1641 TemplateParameterList *TemplateParams, 1642 const TemplateArgument &Param, 1643 TemplateArgument Arg, 1644 TemplateDeductionInfo &Info, 1645 SmallVectorImpl<DeducedTemplateArgument> &Deduced) { 1646 // If the template argument is a pack expansion, perform template argument 1647 // deduction against the pattern of that expansion. This only occurs during 1648 // partial ordering. 1649 if (Arg.isPackExpansion()) 1650 Arg = Arg.getPackExpansionPattern(); 1651 1652 switch (Param.getKind()) { 1653 case TemplateArgument::Null: 1654 llvm_unreachable("Null template argument in parameter list"); 1655 1656 case TemplateArgument::Type: 1657 if (Arg.getKind() == TemplateArgument::Type) 1658 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 1659 Param.getAsType(), 1660 Arg.getAsType(), 1661 Info, Deduced, 0); 1662 Info.FirstArg = Param; 1663 Info.SecondArg = Arg; 1664 return Sema::TDK_NonDeducedMismatch; 1665 1666 case TemplateArgument::Template: 1667 if (Arg.getKind() == TemplateArgument::Template) 1668 return DeduceTemplateArguments(S, TemplateParams, 1669 Param.getAsTemplate(), 1670 Arg.getAsTemplate(), Info, Deduced); 1671 Info.FirstArg = Param; 1672 Info.SecondArg = Arg; 1673 return Sema::TDK_NonDeducedMismatch; 1674 1675 case TemplateArgument::TemplateExpansion: 1676 llvm_unreachable("caller should handle pack expansions"); 1677 1678 case TemplateArgument::Declaration: 1679 if (Arg.getKind() == TemplateArgument::Declaration && 1680 isSameDeclaration(Param.getAsDecl(), Arg.getAsDecl()) && 1681 Param.isDeclForReferenceParam() == Arg.isDeclForReferenceParam()) 1682 return Sema::TDK_Success; 1683 1684 Info.FirstArg = Param; 1685 Info.SecondArg = Arg; 1686 return Sema::TDK_NonDeducedMismatch; 1687 1688 case TemplateArgument::NullPtr: 1689 if (Arg.getKind() == TemplateArgument::NullPtr && 1690 S.Context.hasSameType(Param.getNullPtrType(), Arg.getNullPtrType())) 1691 return Sema::TDK_Success; 1692 1693 Info.FirstArg = Param; 1694 Info.SecondArg = Arg; 1695 return Sema::TDK_NonDeducedMismatch; 1696 1697 case TemplateArgument::Integral: 1698 if (Arg.getKind() == TemplateArgument::Integral) { 1699 if (hasSameExtendedValue(Param.getAsIntegral(), Arg.getAsIntegral())) 1700 return Sema::TDK_Success; 1701 1702 Info.FirstArg = Param; 1703 Info.SecondArg = Arg; 1704 return Sema::TDK_NonDeducedMismatch; 1705 } 1706 1707 if (Arg.getKind() == TemplateArgument::Expression) { 1708 Info.FirstArg = Param; 1709 Info.SecondArg = Arg; 1710 return Sema::TDK_NonDeducedMismatch; 1711 } 1712 1713 Info.FirstArg = Param; 1714 Info.SecondArg = Arg; 1715 return Sema::TDK_NonDeducedMismatch; 1716 1717 case TemplateArgument::Expression: { 1718 if (NonTypeTemplateParmDecl *NTTP 1719 = getDeducedParameterFromExpr(Param.getAsExpr())) { 1720 if (Arg.getKind() == TemplateArgument::Integral) 1721 return DeduceNonTypeTemplateArgument(S, NTTP, 1722 Arg.getAsIntegral(), 1723 Arg.getIntegralType(), 1724 /*ArrayBound=*/false, 1725 Info, Deduced); 1726 if (Arg.getKind() == TemplateArgument::Expression) 1727 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsExpr(), 1728 Info, Deduced); 1729 if (Arg.getKind() == TemplateArgument::Declaration) 1730 return DeduceNonTypeTemplateArgument(S, NTTP, Arg.getAsDecl(), 1731 Info, Deduced); 1732 1733 Info.FirstArg = Param; 1734 Info.SecondArg = Arg; 1735 return Sema::TDK_NonDeducedMismatch; 1736 } 1737 1738 // Can't deduce anything, but that's okay. 1739 return Sema::TDK_Success; 1740 } 1741 case TemplateArgument::Pack: 1742 llvm_unreachable("Argument packs should be expanded by the caller!"); 1743 } 1744 1745 llvm_unreachable("Invalid TemplateArgument Kind!"); 1746 } 1747 1748 /// \brief Determine whether there is a template argument to be used for 1749 /// deduction. 1750 /// 1751 /// This routine "expands" argument packs in-place, overriding its input 1752 /// parameters so that \c Args[ArgIdx] will be the available template argument. 1753 /// 1754 /// \returns true if there is another template argument (which will be at 1755 /// \c Args[ArgIdx]), false otherwise. 1756 static bool hasTemplateArgumentForDeduction(const TemplateArgument *&Args, 1757 unsigned &ArgIdx, 1758 unsigned &NumArgs) { 1759 if (ArgIdx == NumArgs) 1760 return false; 1761 1762 const TemplateArgument &Arg = Args[ArgIdx]; 1763 if (Arg.getKind() != TemplateArgument::Pack) 1764 return true; 1765 1766 assert(ArgIdx == NumArgs - 1 && "Pack not at the end of argument list?"); 1767 Args = Arg.pack_begin(); 1768 NumArgs = Arg.pack_size(); 1769 ArgIdx = 0; 1770 return ArgIdx < NumArgs; 1771 } 1772 1773 /// \brief Determine whether the given set of template arguments has a pack 1774 /// expansion that is not the last template argument. 1775 static bool hasPackExpansionBeforeEnd(const TemplateArgument *Args, 1776 unsigned NumArgs) { 1777 unsigned ArgIdx = 0; 1778 while (ArgIdx < NumArgs) { 1779 const TemplateArgument &Arg = Args[ArgIdx]; 1780 1781 // Unwrap argument packs. 1782 if (Args[ArgIdx].getKind() == TemplateArgument::Pack) { 1783 Args = Arg.pack_begin(); 1784 NumArgs = Arg.pack_size(); 1785 ArgIdx = 0; 1786 continue; 1787 } 1788 1789 ++ArgIdx; 1790 if (ArgIdx == NumArgs) 1791 return false; 1792 1793 if (Arg.isPackExpansion()) 1794 return true; 1795 } 1796 1797 return false; 1798 } 1799 1800 static Sema::TemplateDeductionResult 1801 DeduceTemplateArguments(Sema &S, 1802 TemplateParameterList *TemplateParams, 1803 const TemplateArgument *Params, unsigned NumParams, 1804 const TemplateArgument *Args, unsigned NumArgs, 1805 TemplateDeductionInfo &Info, 1806 SmallVectorImpl<DeducedTemplateArgument> &Deduced) { 1807 // C++0x [temp.deduct.type]p9: 1808 // If the template argument list of P contains a pack expansion that is not 1809 // the last template argument, the entire template argument list is a 1810 // non-deduced context. 1811 if (hasPackExpansionBeforeEnd(Params, NumParams)) 1812 return Sema::TDK_Success; 1813 1814 // C++0x [temp.deduct.type]p9: 1815 // If P has a form that contains <T> or <i>, then each argument Pi of the 1816 // respective template argument list P is compared with the corresponding 1817 // argument Ai of the corresponding template argument list of A. 1818 unsigned ArgIdx = 0, ParamIdx = 0; 1819 for (; hasTemplateArgumentForDeduction(Params, ParamIdx, NumParams); 1820 ++ParamIdx) { 1821 if (!Params[ParamIdx].isPackExpansion()) { 1822 // The simple case: deduce template arguments by matching Pi and Ai. 1823 1824 // Check whether we have enough arguments. 1825 if (!hasTemplateArgumentForDeduction(Args, ArgIdx, NumArgs)) 1826 return Sema::TDK_Success; 1827 1828 if (Args[ArgIdx].isPackExpansion()) { 1829 // FIXME: We follow the logic of C++0x [temp.deduct.type]p22 here, 1830 // but applied to pack expansions that are template arguments. 1831 return Sema::TDK_MiscellaneousDeductionFailure; 1832 } 1833 1834 // Perform deduction for this Pi/Ai pair. 1835 if (Sema::TemplateDeductionResult Result 1836 = DeduceTemplateArguments(S, TemplateParams, 1837 Params[ParamIdx], Args[ArgIdx], 1838 Info, Deduced)) 1839 return Result; 1840 1841 // Move to the next argument. 1842 ++ArgIdx; 1843 continue; 1844 } 1845 1846 // The parameter is a pack expansion. 1847 1848 // C++0x [temp.deduct.type]p9: 1849 // If Pi is a pack expansion, then the pattern of Pi is compared with 1850 // each remaining argument in the template argument list of A. Each 1851 // comparison deduces template arguments for subsequent positions in the 1852 // template parameter packs expanded by Pi. 1853 TemplateArgument Pattern = Params[ParamIdx].getPackExpansionPattern(); 1854 1855 // Compute the set of template parameter indices that correspond to 1856 // parameter packs expanded by the pack expansion. 1857 SmallVector<unsigned, 2> PackIndices; 1858 { 1859 llvm::SmallBitVector SawIndices(TemplateParams->size()); 1860 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 1861 S.collectUnexpandedParameterPacks(Pattern, Unexpanded); 1862 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) { 1863 unsigned Depth, Index; 1864 std::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]); 1865 if (Depth == 0 && !SawIndices[Index]) { 1866 SawIndices[Index] = true; 1867 PackIndices.push_back(Index); 1868 } 1869 } 1870 } 1871 assert(!PackIndices.empty() && "Pack expansion without unexpanded packs?"); 1872 1873 // FIXME: If there are no remaining arguments, we can bail out early 1874 // and set any deduced parameter packs to an empty argument pack. 1875 // The latter part of this is a (minor) correctness issue. 1876 1877 // Save the deduced template arguments for each parameter pack expanded 1878 // by this pack expansion, then clear out the deduction. 1879 SmallVector<DeducedTemplateArgument, 2> 1880 SavedPacks(PackIndices.size()); 1881 NewlyDeducedPacksType NewlyDeducedPacks(PackIndices.size()); 1882 PrepareArgumentPackDeduction(S, Deduced, PackIndices, SavedPacks, 1883 NewlyDeducedPacks); 1884 1885 // Keep track of the deduced template arguments for each parameter pack 1886 // expanded by this pack expansion (the outer index) and for each 1887 // template argument (the inner SmallVectors). 1888 bool HasAnyArguments = false; 1889 while (hasTemplateArgumentForDeduction(Args, ArgIdx, NumArgs)) { 1890 HasAnyArguments = true; 1891 1892 // Deduce template arguments from the pattern. 1893 if (Sema::TemplateDeductionResult Result 1894 = DeduceTemplateArguments(S, TemplateParams, Pattern, Args[ArgIdx], 1895 Info, Deduced)) 1896 return Result; 1897 1898 // Capture the deduced template arguments for each parameter pack expanded 1899 // by this pack expansion, add them to the list of arguments we've deduced 1900 // for that pack, then clear out the deduced argument. 1901 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) { 1902 DeducedTemplateArgument &DeducedArg = Deduced[PackIndices[I]]; 1903 if (!DeducedArg.isNull()) { 1904 NewlyDeducedPacks[I].push_back(DeducedArg); 1905 DeducedArg = DeducedTemplateArgument(); 1906 } 1907 } 1908 1909 ++ArgIdx; 1910 } 1911 1912 // Build argument packs for each of the parameter packs expanded by this 1913 // pack expansion. 1914 if (Sema::TemplateDeductionResult Result 1915 = FinishArgumentPackDeduction(S, TemplateParams, HasAnyArguments, 1916 Deduced, PackIndices, SavedPacks, 1917 NewlyDeducedPacks, Info)) 1918 return Result; 1919 } 1920 1921 return Sema::TDK_Success; 1922 } 1923 1924 static Sema::TemplateDeductionResult 1925 DeduceTemplateArguments(Sema &S, 1926 TemplateParameterList *TemplateParams, 1927 const TemplateArgumentList &ParamList, 1928 const TemplateArgumentList &ArgList, 1929 TemplateDeductionInfo &Info, 1930 SmallVectorImpl<DeducedTemplateArgument> &Deduced) { 1931 return DeduceTemplateArguments(S, TemplateParams, 1932 ParamList.data(), ParamList.size(), 1933 ArgList.data(), ArgList.size(), 1934 Info, Deduced); 1935 } 1936 1937 /// \brief Determine whether two template arguments are the same. 1938 static bool isSameTemplateArg(ASTContext &Context, 1939 const TemplateArgument &X, 1940 const TemplateArgument &Y) { 1941 if (X.getKind() != Y.getKind()) 1942 return false; 1943 1944 switch (X.getKind()) { 1945 case TemplateArgument::Null: 1946 llvm_unreachable("Comparing NULL template argument"); 1947 1948 case TemplateArgument::Type: 1949 return Context.getCanonicalType(X.getAsType()) == 1950 Context.getCanonicalType(Y.getAsType()); 1951 1952 case TemplateArgument::Declaration: 1953 return isSameDeclaration(X.getAsDecl(), Y.getAsDecl()) && 1954 X.isDeclForReferenceParam() == Y.isDeclForReferenceParam(); 1955 1956 case TemplateArgument::NullPtr: 1957 return Context.hasSameType(X.getNullPtrType(), Y.getNullPtrType()); 1958 1959 case TemplateArgument::Template: 1960 case TemplateArgument::TemplateExpansion: 1961 return Context.getCanonicalTemplateName( 1962 X.getAsTemplateOrTemplatePattern()).getAsVoidPointer() == 1963 Context.getCanonicalTemplateName( 1964 Y.getAsTemplateOrTemplatePattern()).getAsVoidPointer(); 1965 1966 case TemplateArgument::Integral: 1967 return X.getAsIntegral() == Y.getAsIntegral(); 1968 1969 case TemplateArgument::Expression: { 1970 llvm::FoldingSetNodeID XID, YID; 1971 X.getAsExpr()->Profile(XID, Context, true); 1972 Y.getAsExpr()->Profile(YID, Context, true); 1973 return XID == YID; 1974 } 1975 1976 case TemplateArgument::Pack: 1977 if (X.pack_size() != Y.pack_size()) 1978 return false; 1979 1980 for (TemplateArgument::pack_iterator XP = X.pack_begin(), 1981 XPEnd = X.pack_end(), 1982 YP = Y.pack_begin(); 1983 XP != XPEnd; ++XP, ++YP) 1984 if (!isSameTemplateArg(Context, *XP, *YP)) 1985 return false; 1986 1987 return true; 1988 } 1989 1990 llvm_unreachable("Invalid TemplateArgument Kind!"); 1991 } 1992 1993 /// \brief Allocate a TemplateArgumentLoc where all locations have 1994 /// been initialized to the given location. 1995 /// 1996 /// \param S The semantic analysis object. 1997 /// 1998 /// \param Arg The template argument we are producing template argument 1999 /// location information for. 2000 /// 2001 /// \param NTTPType For a declaration template argument, the type of 2002 /// the non-type template parameter that corresponds to this template 2003 /// argument. 2004 /// 2005 /// \param Loc The source location to use for the resulting template 2006 /// argument. 2007 static TemplateArgumentLoc 2008 getTrivialTemplateArgumentLoc(Sema &S, 2009 const TemplateArgument &Arg, 2010 QualType NTTPType, 2011 SourceLocation Loc) { 2012 switch (Arg.getKind()) { 2013 case TemplateArgument::Null: 2014 llvm_unreachable("Can't get a NULL template argument here"); 2015 2016 case TemplateArgument::Type: 2017 return TemplateArgumentLoc(Arg, 2018 S.Context.getTrivialTypeSourceInfo(Arg.getAsType(), Loc)); 2019 2020 case TemplateArgument::Declaration: { 2021 Expr *E 2022 = S.BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc) 2023 .takeAs<Expr>(); 2024 return TemplateArgumentLoc(TemplateArgument(E), E); 2025 } 2026 2027 case TemplateArgument::NullPtr: { 2028 Expr *E 2029 = S.BuildExpressionFromDeclTemplateArgument(Arg, NTTPType, Loc) 2030 .takeAs<Expr>(); 2031 return TemplateArgumentLoc(TemplateArgument(NTTPType, /*isNullPtr*/true), 2032 E); 2033 } 2034 2035 case TemplateArgument::Integral: { 2036 Expr *E 2037 = S.BuildExpressionFromIntegralTemplateArgument(Arg, Loc).takeAs<Expr>(); 2038 return TemplateArgumentLoc(TemplateArgument(E), E); 2039 } 2040 2041 case TemplateArgument::Template: 2042 case TemplateArgument::TemplateExpansion: { 2043 NestedNameSpecifierLocBuilder Builder; 2044 TemplateName Template = Arg.getAsTemplate(); 2045 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) 2046 Builder.MakeTrivial(S.Context, DTN->getQualifier(), Loc); 2047 else if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) 2048 Builder.MakeTrivial(S.Context, QTN->getQualifier(), Loc); 2049 2050 if (Arg.getKind() == TemplateArgument::Template) 2051 return TemplateArgumentLoc(Arg, 2052 Builder.getWithLocInContext(S.Context), 2053 Loc); 2054 2055 2056 return TemplateArgumentLoc(Arg, Builder.getWithLocInContext(S.Context), 2057 Loc, Loc); 2058 } 2059 2060 case TemplateArgument::Expression: 2061 return TemplateArgumentLoc(Arg, Arg.getAsExpr()); 2062 2063 case TemplateArgument::Pack: 2064 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo()); 2065 } 2066 2067 llvm_unreachable("Invalid TemplateArgument Kind!"); 2068 } 2069 2070 2071 /// \brief Convert the given deduced template argument and add it to the set of 2072 /// fully-converted template arguments. 2073 static bool 2074 ConvertDeducedTemplateArgument(Sema &S, NamedDecl *Param, 2075 DeducedTemplateArgument Arg, 2076 NamedDecl *Template, 2077 QualType NTTPType, 2078 unsigned ArgumentPackIndex, 2079 TemplateDeductionInfo &Info, 2080 bool InFunctionTemplate, 2081 SmallVectorImpl<TemplateArgument> &Output) { 2082 if (Arg.getKind() == TemplateArgument::Pack) { 2083 // This is a template argument pack, so check each of its arguments against 2084 // the template parameter. 2085 SmallVector<TemplateArgument, 2> PackedArgsBuilder; 2086 for (TemplateArgument::pack_iterator PA = Arg.pack_begin(), 2087 PAEnd = Arg.pack_end(); 2088 PA != PAEnd; ++PA) { 2089 // When converting the deduced template argument, append it to the 2090 // general output list. We need to do this so that the template argument 2091 // checking logic has all of the prior template arguments available. 2092 DeducedTemplateArgument InnerArg(*PA); 2093 InnerArg.setDeducedFromArrayBound(Arg.wasDeducedFromArrayBound()); 2094 if (ConvertDeducedTemplateArgument(S, Param, InnerArg, Template, 2095 NTTPType, PackedArgsBuilder.size(), 2096 Info, InFunctionTemplate, Output)) 2097 return true; 2098 2099 // Move the converted template argument into our argument pack. 2100 PackedArgsBuilder.push_back(Output.pop_back_val()); 2101 } 2102 2103 // Create the resulting argument pack. 2104 Output.push_back(TemplateArgument::CreatePackCopy(S.Context, 2105 PackedArgsBuilder.data(), 2106 PackedArgsBuilder.size())); 2107 return false; 2108 } 2109 2110 // Convert the deduced template argument into a template 2111 // argument that we can check, almost as if the user had written 2112 // the template argument explicitly. 2113 TemplateArgumentLoc ArgLoc = getTrivialTemplateArgumentLoc(S, Arg, NTTPType, 2114 Info.getLocation()); 2115 2116 // Check the template argument, converting it as necessary. 2117 return S.CheckTemplateArgument(Param, ArgLoc, 2118 Template, 2119 Template->getLocation(), 2120 Template->getSourceRange().getEnd(), 2121 ArgumentPackIndex, 2122 Output, 2123 InFunctionTemplate 2124 ? (Arg.wasDeducedFromArrayBound() 2125 ? Sema::CTAK_DeducedFromArrayBound 2126 : Sema::CTAK_Deduced) 2127 : Sema::CTAK_Specified); 2128 } 2129 2130 /// Complete template argument deduction for a class template partial 2131 /// specialization. 2132 static Sema::TemplateDeductionResult 2133 FinishTemplateArgumentDeduction(Sema &S, 2134 ClassTemplatePartialSpecializationDecl *Partial, 2135 const TemplateArgumentList &TemplateArgs, 2136 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 2137 TemplateDeductionInfo &Info) { 2138 // Unevaluated SFINAE context. 2139 EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated); 2140 Sema::SFINAETrap Trap(S); 2141 2142 Sema::ContextRAII SavedContext(S, Partial); 2143 2144 // C++ [temp.deduct.type]p2: 2145 // [...] or if any template argument remains neither deduced nor 2146 // explicitly specified, template argument deduction fails. 2147 SmallVector<TemplateArgument, 4> Builder; 2148 TemplateParameterList *PartialParams = Partial->getTemplateParameters(); 2149 for (unsigned I = 0, N = PartialParams->size(); I != N; ++I) { 2150 NamedDecl *Param = PartialParams->getParam(I); 2151 if (Deduced[I].isNull()) { 2152 Info.Param = makeTemplateParameter(Param); 2153 return Sema::TDK_Incomplete; 2154 } 2155 2156 // We have deduced this argument, so it still needs to be 2157 // checked and converted. 2158 2159 // First, for a non-type template parameter type that is 2160 // initialized by a declaration, we need the type of the 2161 // corresponding non-type template parameter. 2162 QualType NTTPType; 2163 if (NonTypeTemplateParmDecl *NTTP 2164 = dyn_cast<NonTypeTemplateParmDecl>(Param)) { 2165 NTTPType = NTTP->getType(); 2166 if (NTTPType->isDependentType()) { 2167 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, 2168 Builder.data(), Builder.size()); 2169 NTTPType = S.SubstType(NTTPType, 2170 MultiLevelTemplateArgumentList(TemplateArgs), 2171 NTTP->getLocation(), 2172 NTTP->getDeclName()); 2173 if (NTTPType.isNull()) { 2174 Info.Param = makeTemplateParameter(Param); 2175 // FIXME: These template arguments are temporary. Free them! 2176 Info.reset(TemplateArgumentList::CreateCopy(S.Context, 2177 Builder.data(), 2178 Builder.size())); 2179 return Sema::TDK_SubstitutionFailure; 2180 } 2181 } 2182 } 2183 2184 if (ConvertDeducedTemplateArgument(S, Param, Deduced[I], 2185 Partial, NTTPType, 0, Info, false, 2186 Builder)) { 2187 Info.Param = makeTemplateParameter(Param); 2188 // FIXME: These template arguments are temporary. Free them! 2189 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(), 2190 Builder.size())); 2191 return Sema::TDK_SubstitutionFailure; 2192 } 2193 } 2194 2195 // Form the template argument list from the deduced template arguments. 2196 TemplateArgumentList *DeducedArgumentList 2197 = TemplateArgumentList::CreateCopy(S.Context, Builder.data(), 2198 Builder.size()); 2199 2200 Info.reset(DeducedArgumentList); 2201 2202 // Substitute the deduced template arguments into the template 2203 // arguments of the class template partial specialization, and 2204 // verify that the instantiated template arguments are both valid 2205 // and are equivalent to the template arguments originally provided 2206 // to the class template. 2207 LocalInstantiationScope InstScope(S); 2208 ClassTemplateDecl *ClassTemplate = Partial->getSpecializedTemplate(); 2209 const ASTTemplateArgumentListInfo *PartialTemplArgInfo 2210 = Partial->getTemplateArgsAsWritten(); 2211 const TemplateArgumentLoc *PartialTemplateArgs 2212 = PartialTemplArgInfo->getTemplateArgs(); 2213 2214 TemplateArgumentListInfo InstArgs(PartialTemplArgInfo->LAngleLoc, 2215 PartialTemplArgInfo->RAngleLoc); 2216 2217 if (S.Subst(PartialTemplateArgs, PartialTemplArgInfo->NumTemplateArgs, 2218 InstArgs, MultiLevelTemplateArgumentList(*DeducedArgumentList))) { 2219 unsigned ArgIdx = InstArgs.size(), ParamIdx = ArgIdx; 2220 if (ParamIdx >= Partial->getTemplateParameters()->size()) 2221 ParamIdx = Partial->getTemplateParameters()->size() - 1; 2222 2223 Decl *Param 2224 = const_cast<NamedDecl *>( 2225 Partial->getTemplateParameters()->getParam(ParamIdx)); 2226 Info.Param = makeTemplateParameter(Param); 2227 Info.FirstArg = PartialTemplateArgs[ArgIdx].getArgument(); 2228 return Sema::TDK_SubstitutionFailure; 2229 } 2230 2231 SmallVector<TemplateArgument, 4> ConvertedInstArgs; 2232 if (S.CheckTemplateArgumentList(ClassTemplate, Partial->getLocation(), 2233 InstArgs, false, ConvertedInstArgs)) 2234 return Sema::TDK_SubstitutionFailure; 2235 2236 TemplateParameterList *TemplateParams 2237 = ClassTemplate->getTemplateParameters(); 2238 for (unsigned I = 0, E = TemplateParams->size(); I != E; ++I) { 2239 TemplateArgument InstArg = ConvertedInstArgs.data()[I]; 2240 if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg)) { 2241 Info.Param = makeTemplateParameter(TemplateParams->getParam(I)); 2242 Info.FirstArg = TemplateArgs[I]; 2243 Info.SecondArg = InstArg; 2244 return Sema::TDK_NonDeducedMismatch; 2245 } 2246 } 2247 2248 if (Trap.hasErrorOccurred()) 2249 return Sema::TDK_SubstitutionFailure; 2250 2251 return Sema::TDK_Success; 2252 } 2253 2254 /// \brief Perform template argument deduction to determine whether 2255 /// the given template arguments match the given class template 2256 /// partial specialization per C++ [temp.class.spec.match]. 2257 Sema::TemplateDeductionResult 2258 Sema::DeduceTemplateArguments(ClassTemplatePartialSpecializationDecl *Partial, 2259 const TemplateArgumentList &TemplateArgs, 2260 TemplateDeductionInfo &Info) { 2261 if (Partial->isInvalidDecl()) 2262 return TDK_Invalid; 2263 2264 // C++ [temp.class.spec.match]p2: 2265 // A partial specialization matches a given actual template 2266 // argument list if the template arguments of the partial 2267 // specialization can be deduced from the actual template argument 2268 // list (14.8.2). 2269 2270 // Unevaluated SFINAE context. 2271 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated); 2272 SFINAETrap Trap(*this); 2273 2274 SmallVector<DeducedTemplateArgument, 4> Deduced; 2275 Deduced.resize(Partial->getTemplateParameters()->size()); 2276 if (TemplateDeductionResult Result 2277 = ::DeduceTemplateArguments(*this, 2278 Partial->getTemplateParameters(), 2279 Partial->getTemplateArgs(), 2280 TemplateArgs, Info, Deduced)) 2281 return Result; 2282 2283 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end()); 2284 InstantiatingTemplate Inst(*this, Info.getLocation(), Partial, DeducedArgs, 2285 Info); 2286 if (Inst.isInvalid()) 2287 return TDK_InstantiationDepth; 2288 2289 if (Trap.hasErrorOccurred()) 2290 return Sema::TDK_SubstitutionFailure; 2291 2292 return ::FinishTemplateArgumentDeduction(*this, Partial, TemplateArgs, 2293 Deduced, Info); 2294 } 2295 2296 /// Complete template argument deduction for a variable template partial 2297 /// specialization. 2298 /// TODO: Unify with ClassTemplatePartialSpecializationDecl version? 2299 /// May require unifying ClassTemplate(Partial)SpecializationDecl and 2300 /// VarTemplate(Partial)SpecializationDecl with a new data 2301 /// structure Template(Partial)SpecializationDecl, and 2302 /// using Template(Partial)SpecializationDecl as input type. 2303 static Sema::TemplateDeductionResult FinishTemplateArgumentDeduction( 2304 Sema &S, VarTemplatePartialSpecializationDecl *Partial, 2305 const TemplateArgumentList &TemplateArgs, 2306 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 2307 TemplateDeductionInfo &Info) { 2308 // Unevaluated SFINAE context. 2309 EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated); 2310 Sema::SFINAETrap Trap(S); 2311 2312 // C++ [temp.deduct.type]p2: 2313 // [...] or if any template argument remains neither deduced nor 2314 // explicitly specified, template argument deduction fails. 2315 SmallVector<TemplateArgument, 4> Builder; 2316 TemplateParameterList *PartialParams = Partial->getTemplateParameters(); 2317 for (unsigned I = 0, N = PartialParams->size(); I != N; ++I) { 2318 NamedDecl *Param = PartialParams->getParam(I); 2319 if (Deduced[I].isNull()) { 2320 Info.Param = makeTemplateParameter(Param); 2321 return Sema::TDK_Incomplete; 2322 } 2323 2324 // We have deduced this argument, so it still needs to be 2325 // checked and converted. 2326 2327 // First, for a non-type template parameter type that is 2328 // initialized by a declaration, we need the type of the 2329 // corresponding non-type template parameter. 2330 QualType NTTPType; 2331 if (NonTypeTemplateParmDecl *NTTP = 2332 dyn_cast<NonTypeTemplateParmDecl>(Param)) { 2333 NTTPType = NTTP->getType(); 2334 if (NTTPType->isDependentType()) { 2335 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, 2336 Builder.data(), Builder.size()); 2337 NTTPType = 2338 S.SubstType(NTTPType, MultiLevelTemplateArgumentList(TemplateArgs), 2339 NTTP->getLocation(), NTTP->getDeclName()); 2340 if (NTTPType.isNull()) { 2341 Info.Param = makeTemplateParameter(Param); 2342 // FIXME: These template arguments are temporary. Free them! 2343 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(), 2344 Builder.size())); 2345 return Sema::TDK_SubstitutionFailure; 2346 } 2347 } 2348 } 2349 2350 if (ConvertDeducedTemplateArgument(S, Param, Deduced[I], Partial, NTTPType, 2351 0, Info, false, Builder)) { 2352 Info.Param = makeTemplateParameter(Param); 2353 // FIXME: These template arguments are temporary. Free them! 2354 Info.reset(TemplateArgumentList::CreateCopy(S.Context, Builder.data(), 2355 Builder.size())); 2356 return Sema::TDK_SubstitutionFailure; 2357 } 2358 } 2359 2360 // Form the template argument list from the deduced template arguments. 2361 TemplateArgumentList *DeducedArgumentList = TemplateArgumentList::CreateCopy( 2362 S.Context, Builder.data(), Builder.size()); 2363 2364 Info.reset(DeducedArgumentList); 2365 2366 // Substitute the deduced template arguments into the template 2367 // arguments of the class template partial specialization, and 2368 // verify that the instantiated template arguments are both valid 2369 // and are equivalent to the template arguments originally provided 2370 // to the class template. 2371 LocalInstantiationScope InstScope(S); 2372 VarTemplateDecl *VarTemplate = Partial->getSpecializedTemplate(); 2373 const ASTTemplateArgumentListInfo *PartialTemplArgInfo 2374 = Partial->getTemplateArgsAsWritten(); 2375 const TemplateArgumentLoc *PartialTemplateArgs 2376 = PartialTemplArgInfo->getTemplateArgs(); 2377 2378 TemplateArgumentListInfo InstArgs(PartialTemplArgInfo->LAngleLoc, 2379 PartialTemplArgInfo->RAngleLoc); 2380 2381 if (S.Subst(PartialTemplateArgs, PartialTemplArgInfo->NumTemplateArgs, 2382 InstArgs, MultiLevelTemplateArgumentList(*DeducedArgumentList))) { 2383 unsigned ArgIdx = InstArgs.size(), ParamIdx = ArgIdx; 2384 if (ParamIdx >= Partial->getTemplateParameters()->size()) 2385 ParamIdx = Partial->getTemplateParameters()->size() - 1; 2386 2387 Decl *Param = const_cast<NamedDecl *>( 2388 Partial->getTemplateParameters()->getParam(ParamIdx)); 2389 Info.Param = makeTemplateParameter(Param); 2390 Info.FirstArg = PartialTemplateArgs[ArgIdx].getArgument(); 2391 return Sema::TDK_SubstitutionFailure; 2392 } 2393 SmallVector<TemplateArgument, 4> ConvertedInstArgs; 2394 if (S.CheckTemplateArgumentList(VarTemplate, Partial->getLocation(), InstArgs, 2395 false, ConvertedInstArgs)) 2396 return Sema::TDK_SubstitutionFailure; 2397 2398 TemplateParameterList *TemplateParams = VarTemplate->getTemplateParameters(); 2399 for (unsigned I = 0, E = TemplateParams->size(); I != E; ++I) { 2400 TemplateArgument InstArg = ConvertedInstArgs.data()[I]; 2401 if (!isSameTemplateArg(S.Context, TemplateArgs[I], InstArg)) { 2402 Info.Param = makeTemplateParameter(TemplateParams->getParam(I)); 2403 Info.FirstArg = TemplateArgs[I]; 2404 Info.SecondArg = InstArg; 2405 return Sema::TDK_NonDeducedMismatch; 2406 } 2407 } 2408 2409 if (Trap.hasErrorOccurred()) 2410 return Sema::TDK_SubstitutionFailure; 2411 2412 return Sema::TDK_Success; 2413 } 2414 2415 /// \brief Perform template argument deduction to determine whether 2416 /// the given template arguments match the given variable template 2417 /// partial specialization per C++ [temp.class.spec.match]. 2418 /// TODO: Unify with ClassTemplatePartialSpecializationDecl version? 2419 /// May require unifying ClassTemplate(Partial)SpecializationDecl and 2420 /// VarTemplate(Partial)SpecializationDecl with a new data 2421 /// structure Template(Partial)SpecializationDecl, and 2422 /// using Template(Partial)SpecializationDecl as input type. 2423 Sema::TemplateDeductionResult 2424 Sema::DeduceTemplateArguments(VarTemplatePartialSpecializationDecl *Partial, 2425 const TemplateArgumentList &TemplateArgs, 2426 TemplateDeductionInfo &Info) { 2427 if (Partial->isInvalidDecl()) 2428 return TDK_Invalid; 2429 2430 // C++ [temp.class.spec.match]p2: 2431 // A partial specialization matches a given actual template 2432 // argument list if the template arguments of the partial 2433 // specialization can be deduced from the actual template argument 2434 // list (14.8.2). 2435 2436 // Unevaluated SFINAE context. 2437 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated); 2438 SFINAETrap Trap(*this); 2439 2440 SmallVector<DeducedTemplateArgument, 4> Deduced; 2441 Deduced.resize(Partial->getTemplateParameters()->size()); 2442 if (TemplateDeductionResult Result = ::DeduceTemplateArguments( 2443 *this, Partial->getTemplateParameters(), Partial->getTemplateArgs(), 2444 TemplateArgs, Info, Deduced)) 2445 return Result; 2446 2447 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end()); 2448 InstantiatingTemplate Inst(*this, Info.getLocation(), Partial, DeducedArgs, 2449 Info); 2450 if (Inst.isInvalid()) 2451 return TDK_InstantiationDepth; 2452 2453 if (Trap.hasErrorOccurred()) 2454 return Sema::TDK_SubstitutionFailure; 2455 2456 return ::FinishTemplateArgumentDeduction(*this, Partial, TemplateArgs, 2457 Deduced, Info); 2458 } 2459 2460 /// \brief Determine whether the given type T is a simple-template-id type. 2461 static bool isSimpleTemplateIdType(QualType T) { 2462 if (const TemplateSpecializationType *Spec 2463 = T->getAs<TemplateSpecializationType>()) 2464 return Spec->getTemplateName().getAsTemplateDecl() != 0; 2465 2466 return false; 2467 } 2468 2469 /// \brief Substitute the explicitly-provided template arguments into the 2470 /// given function template according to C++ [temp.arg.explicit]. 2471 /// 2472 /// \param FunctionTemplate the function template into which the explicit 2473 /// template arguments will be substituted. 2474 /// 2475 /// \param ExplicitTemplateArgs the explicitly-specified template 2476 /// arguments. 2477 /// 2478 /// \param Deduced the deduced template arguments, which will be populated 2479 /// with the converted and checked explicit template arguments. 2480 /// 2481 /// \param ParamTypes will be populated with the instantiated function 2482 /// parameters. 2483 /// 2484 /// \param FunctionType if non-NULL, the result type of the function template 2485 /// will also be instantiated and the pointed-to value will be updated with 2486 /// the instantiated function type. 2487 /// 2488 /// \param Info if substitution fails for any reason, this object will be 2489 /// populated with more information about the failure. 2490 /// 2491 /// \returns TDK_Success if substitution was successful, or some failure 2492 /// condition. 2493 Sema::TemplateDeductionResult 2494 Sema::SubstituteExplicitTemplateArguments( 2495 FunctionTemplateDecl *FunctionTemplate, 2496 TemplateArgumentListInfo &ExplicitTemplateArgs, 2497 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 2498 SmallVectorImpl<QualType> &ParamTypes, 2499 QualType *FunctionType, 2500 TemplateDeductionInfo &Info) { 2501 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl(); 2502 TemplateParameterList *TemplateParams 2503 = FunctionTemplate->getTemplateParameters(); 2504 2505 if (ExplicitTemplateArgs.size() == 0) { 2506 // No arguments to substitute; just copy over the parameter types and 2507 // fill in the function type. 2508 for (auto P : Function->params()) 2509 ParamTypes.push_back(P->getType()); 2510 2511 if (FunctionType) 2512 *FunctionType = Function->getType(); 2513 return TDK_Success; 2514 } 2515 2516 // Unevaluated SFINAE context. 2517 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated); 2518 SFINAETrap Trap(*this); 2519 2520 // C++ [temp.arg.explicit]p3: 2521 // Template arguments that are present shall be specified in the 2522 // declaration order of their corresponding template-parameters. The 2523 // template argument list shall not specify more template-arguments than 2524 // there are corresponding template-parameters. 2525 SmallVector<TemplateArgument, 4> Builder; 2526 2527 // Enter a new template instantiation context where we check the 2528 // explicitly-specified template arguments against this function template, 2529 // and then substitute them into the function parameter types. 2530 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end()); 2531 InstantiatingTemplate Inst(*this, Info.getLocation(), FunctionTemplate, 2532 DeducedArgs, 2533 ActiveTemplateInstantiation::ExplicitTemplateArgumentSubstitution, 2534 Info); 2535 if (Inst.isInvalid()) 2536 return TDK_InstantiationDepth; 2537 2538 if (CheckTemplateArgumentList(FunctionTemplate, 2539 SourceLocation(), 2540 ExplicitTemplateArgs, 2541 true, 2542 Builder) || Trap.hasErrorOccurred()) { 2543 unsigned Index = Builder.size(); 2544 if (Index >= TemplateParams->size()) 2545 Index = TemplateParams->size() - 1; 2546 Info.Param = makeTemplateParameter(TemplateParams->getParam(Index)); 2547 return TDK_InvalidExplicitArguments; 2548 } 2549 2550 // Form the template argument list from the explicitly-specified 2551 // template arguments. 2552 TemplateArgumentList *ExplicitArgumentList 2553 = TemplateArgumentList::CreateCopy(Context, Builder.data(), Builder.size()); 2554 Info.reset(ExplicitArgumentList); 2555 2556 // Template argument deduction and the final substitution should be 2557 // done in the context of the templated declaration. Explicit 2558 // argument substitution, on the other hand, needs to happen in the 2559 // calling context. 2560 ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl()); 2561 2562 // If we deduced template arguments for a template parameter pack, 2563 // note that the template argument pack is partially substituted and record 2564 // the explicit template arguments. They'll be used as part of deduction 2565 // for this template parameter pack. 2566 for (unsigned I = 0, N = Builder.size(); I != N; ++I) { 2567 const TemplateArgument &Arg = Builder[I]; 2568 if (Arg.getKind() == TemplateArgument::Pack) { 2569 CurrentInstantiationScope->SetPartiallySubstitutedPack( 2570 TemplateParams->getParam(I), 2571 Arg.pack_begin(), 2572 Arg.pack_size()); 2573 break; 2574 } 2575 } 2576 2577 const FunctionProtoType *Proto 2578 = Function->getType()->getAs<FunctionProtoType>(); 2579 assert(Proto && "Function template does not have a prototype?"); 2580 2581 // Instantiate the types of each of the function parameters given the 2582 // explicitly-specified template arguments. If the function has a trailing 2583 // return type, substitute it after the arguments to ensure we substitute 2584 // in lexical order. 2585 if (Proto->hasTrailingReturn()) { 2586 if (SubstParmTypes(Function->getLocation(), 2587 Function->param_begin(), Function->getNumParams(), 2588 MultiLevelTemplateArgumentList(*ExplicitArgumentList), 2589 ParamTypes)) 2590 return TDK_SubstitutionFailure; 2591 } 2592 2593 // Instantiate the return type. 2594 QualType ResultType; 2595 { 2596 // C++11 [expr.prim.general]p3: 2597 // If a declaration declares a member function or member function 2598 // template of a class X, the expression this is a prvalue of type 2599 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq 2600 // and the end of the function-definition, member-declarator, or 2601 // declarator. 2602 unsigned ThisTypeQuals = 0; 2603 CXXRecordDecl *ThisContext = 0; 2604 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Function)) { 2605 ThisContext = Method->getParent(); 2606 ThisTypeQuals = Method->getTypeQualifiers(); 2607 } 2608 2609 CXXThisScopeRAII ThisScope(*this, ThisContext, ThisTypeQuals, 2610 getLangOpts().CPlusPlus11); 2611 2612 ResultType = 2613 SubstType(Proto->getReturnType(), 2614 MultiLevelTemplateArgumentList(*ExplicitArgumentList), 2615 Function->getTypeSpecStartLoc(), Function->getDeclName()); 2616 if (ResultType.isNull() || Trap.hasErrorOccurred()) 2617 return TDK_SubstitutionFailure; 2618 } 2619 2620 // Instantiate the types of each of the function parameters given the 2621 // explicitly-specified template arguments if we didn't do so earlier. 2622 if (!Proto->hasTrailingReturn() && 2623 SubstParmTypes(Function->getLocation(), 2624 Function->param_begin(), Function->getNumParams(), 2625 MultiLevelTemplateArgumentList(*ExplicitArgumentList), 2626 ParamTypes)) 2627 return TDK_SubstitutionFailure; 2628 2629 if (FunctionType) { 2630 *FunctionType = BuildFunctionType(ResultType, ParamTypes, 2631 Function->getLocation(), 2632 Function->getDeclName(), 2633 Proto->getExtProtoInfo()); 2634 if (FunctionType->isNull() || Trap.hasErrorOccurred()) 2635 return TDK_SubstitutionFailure; 2636 } 2637 2638 // C++ [temp.arg.explicit]p2: 2639 // Trailing template arguments that can be deduced (14.8.2) may be 2640 // omitted from the list of explicit template-arguments. If all of the 2641 // template arguments can be deduced, they may all be omitted; in this 2642 // case, the empty template argument list <> itself may also be omitted. 2643 // 2644 // Take all of the explicitly-specified arguments and put them into 2645 // the set of deduced template arguments. Explicitly-specified 2646 // parameter packs, however, will be set to NULL since the deduction 2647 // mechanisms handle explicitly-specified argument packs directly. 2648 Deduced.reserve(TemplateParams->size()); 2649 for (unsigned I = 0, N = ExplicitArgumentList->size(); I != N; ++I) { 2650 const TemplateArgument &Arg = ExplicitArgumentList->get(I); 2651 if (Arg.getKind() == TemplateArgument::Pack) 2652 Deduced.push_back(DeducedTemplateArgument()); 2653 else 2654 Deduced.push_back(Arg); 2655 } 2656 2657 return TDK_Success; 2658 } 2659 2660 /// \brief Check whether the deduced argument type for a call to a function 2661 /// template matches the actual argument type per C++ [temp.deduct.call]p4. 2662 static bool 2663 CheckOriginalCallArgDeduction(Sema &S, Sema::OriginalCallArg OriginalArg, 2664 QualType DeducedA) { 2665 ASTContext &Context = S.Context; 2666 2667 QualType A = OriginalArg.OriginalArgType; 2668 QualType OriginalParamType = OriginalArg.OriginalParamType; 2669 2670 // Check for type equality (top-level cv-qualifiers are ignored). 2671 if (Context.hasSameUnqualifiedType(A, DeducedA)) 2672 return false; 2673 2674 // Strip off references on the argument types; they aren't needed for 2675 // the following checks. 2676 if (const ReferenceType *DeducedARef = DeducedA->getAs<ReferenceType>()) 2677 DeducedA = DeducedARef->getPointeeType(); 2678 if (const ReferenceType *ARef = A->getAs<ReferenceType>()) 2679 A = ARef->getPointeeType(); 2680 2681 // C++ [temp.deduct.call]p4: 2682 // [...] However, there are three cases that allow a difference: 2683 // - If the original P is a reference type, the deduced A (i.e., the 2684 // type referred to by the reference) can be more cv-qualified than 2685 // the transformed A. 2686 if (const ReferenceType *OriginalParamRef 2687 = OriginalParamType->getAs<ReferenceType>()) { 2688 // We don't want to keep the reference around any more. 2689 OriginalParamType = OriginalParamRef->getPointeeType(); 2690 2691 Qualifiers AQuals = A.getQualifiers(); 2692 Qualifiers DeducedAQuals = DeducedA.getQualifiers(); 2693 2694 // Under Objective-C++ ARC, the deduced type may have implicitly 2695 // been given strong or (when dealing with a const reference) 2696 // unsafe_unretained lifetime. If so, update the original 2697 // qualifiers to include this lifetime. 2698 if (S.getLangOpts().ObjCAutoRefCount && 2699 ((DeducedAQuals.getObjCLifetime() == Qualifiers::OCL_Strong && 2700 AQuals.getObjCLifetime() == Qualifiers::OCL_None) || 2701 (DeducedAQuals.hasConst() && 2702 DeducedAQuals.getObjCLifetime() == Qualifiers::OCL_ExplicitNone))) { 2703 AQuals.setObjCLifetime(DeducedAQuals.getObjCLifetime()); 2704 } 2705 2706 if (AQuals == DeducedAQuals) { 2707 // Qualifiers match; there's nothing to do. 2708 } else if (!DeducedAQuals.compatiblyIncludes(AQuals)) { 2709 return true; 2710 } else { 2711 // Qualifiers are compatible, so have the argument type adopt the 2712 // deduced argument type's qualifiers as if we had performed the 2713 // qualification conversion. 2714 A = Context.getQualifiedType(A.getUnqualifiedType(), DeducedAQuals); 2715 } 2716 } 2717 2718 // - The transformed A can be another pointer or pointer to member 2719 // type that can be converted to the deduced A via a qualification 2720 // conversion. 2721 // 2722 // Also allow conversions which merely strip [[noreturn]] from function types 2723 // (recursively) as an extension. 2724 // FIXME: Currently, this doesn't play nicely with qualification conversions. 2725 bool ObjCLifetimeConversion = false; 2726 QualType ResultTy; 2727 if ((A->isAnyPointerType() || A->isMemberPointerType()) && 2728 (S.IsQualificationConversion(A, DeducedA, false, 2729 ObjCLifetimeConversion) || 2730 S.IsNoReturnConversion(A, DeducedA, ResultTy))) 2731 return false; 2732 2733 2734 // - If P is a class and P has the form simple-template-id, then the 2735 // transformed A can be a derived class of the deduced A. [...] 2736 // [...] Likewise, if P is a pointer to a class of the form 2737 // simple-template-id, the transformed A can be a pointer to a 2738 // derived class pointed to by the deduced A. 2739 if (const PointerType *OriginalParamPtr 2740 = OriginalParamType->getAs<PointerType>()) { 2741 if (const PointerType *DeducedAPtr = DeducedA->getAs<PointerType>()) { 2742 if (const PointerType *APtr = A->getAs<PointerType>()) { 2743 if (A->getPointeeType()->isRecordType()) { 2744 OriginalParamType = OriginalParamPtr->getPointeeType(); 2745 DeducedA = DeducedAPtr->getPointeeType(); 2746 A = APtr->getPointeeType(); 2747 } 2748 } 2749 } 2750 } 2751 2752 if (Context.hasSameUnqualifiedType(A, DeducedA)) 2753 return false; 2754 2755 if (A->isRecordType() && isSimpleTemplateIdType(OriginalParamType) && 2756 S.IsDerivedFrom(A, DeducedA)) 2757 return false; 2758 2759 return true; 2760 } 2761 2762 /// \brief Finish template argument deduction for a function template, 2763 /// checking the deduced template arguments for completeness and forming 2764 /// the function template specialization. 2765 /// 2766 /// \param OriginalCallArgs If non-NULL, the original call arguments against 2767 /// which the deduced argument types should be compared. 2768 Sema::TemplateDeductionResult 2769 Sema::FinishTemplateArgumentDeduction(FunctionTemplateDecl *FunctionTemplate, 2770 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 2771 unsigned NumExplicitlySpecified, 2772 FunctionDecl *&Specialization, 2773 TemplateDeductionInfo &Info, 2774 SmallVectorImpl<OriginalCallArg> const *OriginalCallArgs) { 2775 TemplateParameterList *TemplateParams 2776 = FunctionTemplate->getTemplateParameters(); 2777 2778 // Unevaluated SFINAE context. 2779 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated); 2780 SFINAETrap Trap(*this); 2781 2782 // Enter a new template instantiation context while we instantiate the 2783 // actual function declaration. 2784 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), Deduced.end()); 2785 InstantiatingTemplate Inst(*this, Info.getLocation(), FunctionTemplate, 2786 DeducedArgs, 2787 ActiveTemplateInstantiation::DeducedTemplateArgumentSubstitution, 2788 Info); 2789 if (Inst.isInvalid()) 2790 return TDK_InstantiationDepth; 2791 2792 ContextRAII SavedContext(*this, FunctionTemplate->getTemplatedDecl()); 2793 2794 // C++ [temp.deduct.type]p2: 2795 // [...] or if any template argument remains neither deduced nor 2796 // explicitly specified, template argument deduction fails. 2797 SmallVector<TemplateArgument, 4> Builder; 2798 for (unsigned I = 0, N = TemplateParams->size(); I != N; ++I) { 2799 NamedDecl *Param = TemplateParams->getParam(I); 2800 2801 if (!Deduced[I].isNull()) { 2802 if (I < NumExplicitlySpecified) { 2803 // We have already fully type-checked and converted this 2804 // argument, because it was explicitly-specified. Just record the 2805 // presence of this argument. 2806 Builder.push_back(Deduced[I]); 2807 continue; 2808 } 2809 2810 // We have deduced this argument, so it still needs to be 2811 // checked and converted. 2812 2813 // First, for a non-type template parameter type that is 2814 // initialized by a declaration, we need the type of the 2815 // corresponding non-type template parameter. 2816 QualType NTTPType; 2817 if (NonTypeTemplateParmDecl *NTTP 2818 = dyn_cast<NonTypeTemplateParmDecl>(Param)) { 2819 NTTPType = NTTP->getType(); 2820 if (NTTPType->isDependentType()) { 2821 TemplateArgumentList TemplateArgs(TemplateArgumentList::OnStack, 2822 Builder.data(), Builder.size()); 2823 NTTPType = SubstType(NTTPType, 2824 MultiLevelTemplateArgumentList(TemplateArgs), 2825 NTTP->getLocation(), 2826 NTTP->getDeclName()); 2827 if (NTTPType.isNull()) { 2828 Info.Param = makeTemplateParameter(Param); 2829 // FIXME: These template arguments are temporary. Free them! 2830 Info.reset(TemplateArgumentList::CreateCopy(Context, 2831 Builder.data(), 2832 Builder.size())); 2833 return TDK_SubstitutionFailure; 2834 } 2835 } 2836 } 2837 2838 if (ConvertDeducedTemplateArgument(*this, Param, Deduced[I], 2839 FunctionTemplate, NTTPType, 0, Info, 2840 true, Builder)) { 2841 Info.Param = makeTemplateParameter(Param); 2842 // FIXME: These template arguments are temporary. Free them! 2843 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(), 2844 Builder.size())); 2845 return TDK_SubstitutionFailure; 2846 } 2847 2848 continue; 2849 } 2850 2851 // C++0x [temp.arg.explicit]p3: 2852 // A trailing template parameter pack (14.5.3) not otherwise deduced will 2853 // be deduced to an empty sequence of template arguments. 2854 // FIXME: Where did the word "trailing" come from? 2855 if (Param->isTemplateParameterPack()) { 2856 // We may have had explicitly-specified template arguments for this 2857 // template parameter pack. If so, our empty deduction extends the 2858 // explicitly-specified set (C++0x [temp.arg.explicit]p9). 2859 const TemplateArgument *ExplicitArgs; 2860 unsigned NumExplicitArgs; 2861 if (CurrentInstantiationScope && 2862 CurrentInstantiationScope->getPartiallySubstitutedPack(&ExplicitArgs, 2863 &NumExplicitArgs) 2864 == Param) { 2865 Builder.push_back(TemplateArgument(ExplicitArgs, NumExplicitArgs)); 2866 2867 // Forget the partially-substituted pack; it's substitution is now 2868 // complete. 2869 CurrentInstantiationScope->ResetPartiallySubstitutedPack(); 2870 } else { 2871 Builder.push_back(TemplateArgument::getEmptyPack()); 2872 } 2873 continue; 2874 } 2875 2876 // Substitute into the default template argument, if available. 2877 bool HasDefaultArg = false; 2878 TemplateArgumentLoc DefArg 2879 = SubstDefaultTemplateArgumentIfAvailable(FunctionTemplate, 2880 FunctionTemplate->getLocation(), 2881 FunctionTemplate->getSourceRange().getEnd(), 2882 Param, 2883 Builder, HasDefaultArg); 2884 2885 // If there was no default argument, deduction is incomplete. 2886 if (DefArg.getArgument().isNull()) { 2887 Info.Param = makeTemplateParameter( 2888 const_cast<NamedDecl *>(TemplateParams->getParam(I))); 2889 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(), 2890 Builder.size())); 2891 return HasDefaultArg ? TDK_SubstitutionFailure : TDK_Incomplete; 2892 } 2893 2894 // Check whether we can actually use the default argument. 2895 if (CheckTemplateArgument(Param, DefArg, 2896 FunctionTemplate, 2897 FunctionTemplate->getLocation(), 2898 FunctionTemplate->getSourceRange().getEnd(), 2899 0, Builder, 2900 CTAK_Specified)) { 2901 Info.Param = makeTemplateParameter( 2902 const_cast<NamedDecl *>(TemplateParams->getParam(I))); 2903 // FIXME: These template arguments are temporary. Free them! 2904 Info.reset(TemplateArgumentList::CreateCopy(Context, Builder.data(), 2905 Builder.size())); 2906 return TDK_SubstitutionFailure; 2907 } 2908 2909 // If we get here, we successfully used the default template argument. 2910 } 2911 2912 // Form the template argument list from the deduced template arguments. 2913 TemplateArgumentList *DeducedArgumentList 2914 = TemplateArgumentList::CreateCopy(Context, Builder.data(), Builder.size()); 2915 Info.reset(DeducedArgumentList); 2916 2917 // Substitute the deduced template arguments into the function template 2918 // declaration to produce the function template specialization. 2919 DeclContext *Owner = FunctionTemplate->getDeclContext(); 2920 if (FunctionTemplate->getFriendObjectKind()) 2921 Owner = FunctionTemplate->getLexicalDeclContext(); 2922 Specialization = cast_or_null<FunctionDecl>( 2923 SubstDecl(FunctionTemplate->getTemplatedDecl(), Owner, 2924 MultiLevelTemplateArgumentList(*DeducedArgumentList))); 2925 if (!Specialization || Specialization->isInvalidDecl()) 2926 return TDK_SubstitutionFailure; 2927 2928 assert(Specialization->getPrimaryTemplate()->getCanonicalDecl() == 2929 FunctionTemplate->getCanonicalDecl()); 2930 2931 // If the template argument list is owned by the function template 2932 // specialization, release it. 2933 if (Specialization->getTemplateSpecializationArgs() == DeducedArgumentList && 2934 !Trap.hasErrorOccurred()) 2935 Info.take(); 2936 2937 // There may have been an error that did not prevent us from constructing a 2938 // declaration. Mark the declaration invalid and return with a substitution 2939 // failure. 2940 if (Trap.hasErrorOccurred()) { 2941 Specialization->setInvalidDecl(true); 2942 return TDK_SubstitutionFailure; 2943 } 2944 2945 if (OriginalCallArgs) { 2946 // C++ [temp.deduct.call]p4: 2947 // In general, the deduction process attempts to find template argument 2948 // values that will make the deduced A identical to A (after the type A 2949 // is transformed as described above). [...] 2950 for (unsigned I = 0, N = OriginalCallArgs->size(); I != N; ++I) { 2951 OriginalCallArg OriginalArg = (*OriginalCallArgs)[I]; 2952 unsigned ParamIdx = OriginalArg.ArgIdx; 2953 2954 if (ParamIdx >= Specialization->getNumParams()) 2955 continue; 2956 2957 QualType DeducedA = Specialization->getParamDecl(ParamIdx)->getType(); 2958 if (CheckOriginalCallArgDeduction(*this, OriginalArg, DeducedA)) 2959 return Sema::TDK_SubstitutionFailure; 2960 } 2961 } 2962 2963 // If we suppressed any diagnostics while performing template argument 2964 // deduction, and if we haven't already instantiated this declaration, 2965 // keep track of these diagnostics. They'll be emitted if this specialization 2966 // is actually used. 2967 if (Info.diag_begin() != Info.diag_end()) { 2968 SuppressedDiagnosticsMap::iterator 2969 Pos = SuppressedDiagnostics.find(Specialization->getCanonicalDecl()); 2970 if (Pos == SuppressedDiagnostics.end()) 2971 SuppressedDiagnostics[Specialization->getCanonicalDecl()] 2972 .append(Info.diag_begin(), Info.diag_end()); 2973 } 2974 2975 return TDK_Success; 2976 } 2977 2978 /// Gets the type of a function for template-argument-deducton 2979 /// purposes when it's considered as part of an overload set. 2980 static QualType GetTypeOfFunction(Sema &S, const OverloadExpr::FindResult &R, 2981 FunctionDecl *Fn) { 2982 // We may need to deduce the return type of the function now. 2983 if (S.getLangOpts().CPlusPlus1y && Fn->getReturnType()->isUndeducedType() && 2984 S.DeduceReturnType(Fn, R.Expression->getExprLoc(), /*Diagnose*/ false)) 2985 return QualType(); 2986 2987 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) 2988 if (Method->isInstance()) { 2989 // An instance method that's referenced in a form that doesn't 2990 // look like a member pointer is just invalid. 2991 if (!R.HasFormOfMemberPointer) return QualType(); 2992 2993 return S.Context.getMemberPointerType(Fn->getType(), 2994 S.Context.getTypeDeclType(Method->getParent()).getTypePtr()); 2995 } 2996 2997 if (!R.IsAddressOfOperand) return Fn->getType(); 2998 return S.Context.getPointerType(Fn->getType()); 2999 } 3000 3001 /// Apply the deduction rules for overload sets. 3002 /// 3003 /// \return the null type if this argument should be treated as an 3004 /// undeduced context 3005 static QualType 3006 ResolveOverloadForDeduction(Sema &S, TemplateParameterList *TemplateParams, 3007 Expr *Arg, QualType ParamType, 3008 bool ParamWasReference) { 3009 3010 OverloadExpr::FindResult R = OverloadExpr::find(Arg); 3011 3012 OverloadExpr *Ovl = R.Expression; 3013 3014 // C++0x [temp.deduct.call]p4 3015 unsigned TDF = 0; 3016 if (ParamWasReference) 3017 TDF |= TDF_ParamWithReferenceType; 3018 if (R.IsAddressOfOperand) 3019 TDF |= TDF_IgnoreQualifiers; 3020 3021 // C++0x [temp.deduct.call]p6: 3022 // When P is a function type, pointer to function type, or pointer 3023 // to member function type: 3024 3025 if (!ParamType->isFunctionType() && 3026 !ParamType->isFunctionPointerType() && 3027 !ParamType->isMemberFunctionPointerType()) { 3028 if (Ovl->hasExplicitTemplateArgs()) { 3029 // But we can still look for an explicit specialization. 3030 if (FunctionDecl *ExplicitSpec 3031 = S.ResolveSingleFunctionTemplateSpecialization(Ovl)) 3032 return GetTypeOfFunction(S, R, ExplicitSpec); 3033 } 3034 3035 return QualType(); 3036 } 3037 3038 // Gather the explicit template arguments, if any. 3039 TemplateArgumentListInfo ExplicitTemplateArgs; 3040 if (Ovl->hasExplicitTemplateArgs()) 3041 Ovl->getExplicitTemplateArgs().copyInto(ExplicitTemplateArgs); 3042 QualType Match; 3043 for (UnresolvedSetIterator I = Ovl->decls_begin(), 3044 E = Ovl->decls_end(); I != E; ++I) { 3045 NamedDecl *D = (*I)->getUnderlyingDecl(); 3046 3047 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D)) { 3048 // - If the argument is an overload set containing one or more 3049 // function templates, the parameter is treated as a 3050 // non-deduced context. 3051 if (!Ovl->hasExplicitTemplateArgs()) 3052 return QualType(); 3053 3054 // Otherwise, see if we can resolve a function type 3055 FunctionDecl *Specialization = 0; 3056 TemplateDeductionInfo Info(Ovl->getNameLoc()); 3057 if (S.DeduceTemplateArguments(FunTmpl, &ExplicitTemplateArgs, 3058 Specialization, Info)) 3059 continue; 3060 3061 D = Specialization; 3062 } 3063 3064 FunctionDecl *Fn = cast<FunctionDecl>(D); 3065 QualType ArgType = GetTypeOfFunction(S, R, Fn); 3066 if (ArgType.isNull()) continue; 3067 3068 // Function-to-pointer conversion. 3069 if (!ParamWasReference && ParamType->isPointerType() && 3070 ArgType->isFunctionType()) 3071 ArgType = S.Context.getPointerType(ArgType); 3072 3073 // - If the argument is an overload set (not containing function 3074 // templates), trial argument deduction is attempted using each 3075 // of the members of the set. If deduction succeeds for only one 3076 // of the overload set members, that member is used as the 3077 // argument value for the deduction. If deduction succeeds for 3078 // more than one member of the overload set the parameter is 3079 // treated as a non-deduced context. 3080 3081 // We do all of this in a fresh context per C++0x [temp.deduct.type]p2: 3082 // Type deduction is done independently for each P/A pair, and 3083 // the deduced template argument values are then combined. 3084 // So we do not reject deductions which were made elsewhere. 3085 SmallVector<DeducedTemplateArgument, 8> 3086 Deduced(TemplateParams->size()); 3087 TemplateDeductionInfo Info(Ovl->getNameLoc()); 3088 Sema::TemplateDeductionResult Result 3089 = DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, ParamType, 3090 ArgType, Info, Deduced, TDF); 3091 if (Result) continue; 3092 if (!Match.isNull()) return QualType(); 3093 Match = ArgType; 3094 } 3095 3096 return Match; 3097 } 3098 3099 /// \brief Perform the adjustments to the parameter and argument types 3100 /// described in C++ [temp.deduct.call]. 3101 /// 3102 /// \returns true if the caller should not attempt to perform any template 3103 /// argument deduction based on this P/A pair because the argument is an 3104 /// overloaded function set that could not be resolved. 3105 static bool AdjustFunctionParmAndArgTypesForDeduction(Sema &S, 3106 TemplateParameterList *TemplateParams, 3107 QualType &ParamType, 3108 QualType &ArgType, 3109 Expr *Arg, 3110 unsigned &TDF) { 3111 // C++0x [temp.deduct.call]p3: 3112 // If P is a cv-qualified type, the top level cv-qualifiers of P's type 3113 // are ignored for type deduction. 3114 if (ParamType.hasQualifiers()) 3115 ParamType = ParamType.getUnqualifiedType(); 3116 const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>(); 3117 if (ParamRefType) { 3118 QualType PointeeType = ParamRefType->getPointeeType(); 3119 3120 // If the argument has incomplete array type, try to complete its type. 3121 if (ArgType->isIncompleteArrayType() && !S.RequireCompleteExprType(Arg, 0)) 3122 ArgType = Arg->getType(); 3123 3124 // [C++0x] If P is an rvalue reference to a cv-unqualified 3125 // template parameter and the argument is an lvalue, the type 3126 // "lvalue reference to A" is used in place of A for type 3127 // deduction. 3128 if (isa<RValueReferenceType>(ParamType)) { 3129 if (!PointeeType.getQualifiers() && 3130 isa<TemplateTypeParmType>(PointeeType) && 3131 Arg->Classify(S.Context).isLValue() && 3132 Arg->getType() != S.Context.OverloadTy && 3133 Arg->getType() != S.Context.BoundMemberTy) 3134 ArgType = S.Context.getLValueReferenceType(ArgType); 3135 } 3136 3137 // [...] If P is a reference type, the type referred to by P is used 3138 // for type deduction. 3139 ParamType = PointeeType; 3140 } 3141 3142 // Overload sets usually make this parameter an undeduced 3143 // context, but there are sometimes special circumstances. 3144 if (ArgType == S.Context.OverloadTy) { 3145 ArgType = ResolveOverloadForDeduction(S, TemplateParams, 3146 Arg, ParamType, 3147 ParamRefType != 0); 3148 if (ArgType.isNull()) 3149 return true; 3150 } 3151 3152 if (ParamRefType) { 3153 // C++0x [temp.deduct.call]p3: 3154 // [...] If P is of the form T&&, where T is a template parameter, and 3155 // the argument is an lvalue, the type A& is used in place of A for 3156 // type deduction. 3157 if (ParamRefType->isRValueReferenceType() && 3158 ParamRefType->getAs<TemplateTypeParmType>() && 3159 Arg->isLValue()) 3160 ArgType = S.Context.getLValueReferenceType(ArgType); 3161 } else { 3162 // C++ [temp.deduct.call]p2: 3163 // If P is not a reference type: 3164 // - If A is an array type, the pointer type produced by the 3165 // array-to-pointer standard conversion (4.2) is used in place of 3166 // A for type deduction; otherwise, 3167 if (ArgType->isArrayType()) 3168 ArgType = S.Context.getArrayDecayedType(ArgType); 3169 // - If A is a function type, the pointer type produced by the 3170 // function-to-pointer standard conversion (4.3) is used in place 3171 // of A for type deduction; otherwise, 3172 else if (ArgType->isFunctionType()) 3173 ArgType = S.Context.getPointerType(ArgType); 3174 else { 3175 // - If A is a cv-qualified type, the top level cv-qualifiers of A's 3176 // type are ignored for type deduction. 3177 ArgType = ArgType.getUnqualifiedType(); 3178 } 3179 } 3180 3181 // C++0x [temp.deduct.call]p4: 3182 // In general, the deduction process attempts to find template argument 3183 // values that will make the deduced A identical to A (after the type A 3184 // is transformed as described above). [...] 3185 TDF = TDF_SkipNonDependent; 3186 3187 // - If the original P is a reference type, the deduced A (i.e., the 3188 // type referred to by the reference) can be more cv-qualified than 3189 // the transformed A. 3190 if (ParamRefType) 3191 TDF |= TDF_ParamWithReferenceType; 3192 // - The transformed A can be another pointer or pointer to member 3193 // type that can be converted to the deduced A via a qualification 3194 // conversion (4.4). 3195 if (ArgType->isPointerType() || ArgType->isMemberPointerType() || 3196 ArgType->isObjCObjectPointerType()) 3197 TDF |= TDF_IgnoreQualifiers; 3198 // - If P is a class and P has the form simple-template-id, then the 3199 // transformed A can be a derived class of the deduced A. Likewise, 3200 // if P is a pointer to a class of the form simple-template-id, the 3201 // transformed A can be a pointer to a derived class pointed to by 3202 // the deduced A. 3203 if (isSimpleTemplateIdType(ParamType) || 3204 (isa<PointerType>(ParamType) && 3205 isSimpleTemplateIdType( 3206 ParamType->getAs<PointerType>()->getPointeeType()))) 3207 TDF |= TDF_DerivedClass; 3208 3209 return false; 3210 } 3211 3212 static bool hasDeducibleTemplateParameters(Sema &S, 3213 FunctionTemplateDecl *FunctionTemplate, 3214 QualType T); 3215 3216 /// \brief Perform template argument deduction by matching a parameter type 3217 /// against a single expression, where the expression is an element of 3218 /// an initializer list that was originally matched against a parameter 3219 /// of type \c initializer_list\<ParamType\>. 3220 static Sema::TemplateDeductionResult 3221 DeduceTemplateArgumentByListElement(Sema &S, 3222 TemplateParameterList *TemplateParams, 3223 QualType ParamType, Expr *Arg, 3224 TemplateDeductionInfo &Info, 3225 SmallVectorImpl<DeducedTemplateArgument> &Deduced, 3226 unsigned TDF) { 3227 // Handle the case where an init list contains another init list as the 3228 // element. 3229 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) { 3230 QualType X; 3231 if (!S.isStdInitializerList(ParamType.getNonReferenceType(), &X)) 3232 return Sema::TDK_Success; // Just ignore this expression. 3233 3234 // Recurse down into the init list. 3235 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) { 3236 if (Sema::TemplateDeductionResult Result = 3237 DeduceTemplateArgumentByListElement(S, TemplateParams, X, 3238 ILE->getInit(i), 3239 Info, Deduced, TDF)) 3240 return Result; 3241 } 3242 return Sema::TDK_Success; 3243 } 3244 3245 // For all other cases, just match by type. 3246 QualType ArgType = Arg->getType(); 3247 if (AdjustFunctionParmAndArgTypesForDeduction(S, TemplateParams, ParamType, 3248 ArgType, Arg, TDF)) { 3249 Info.Expression = Arg; 3250 return Sema::TDK_FailedOverloadResolution; 3251 } 3252 return DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, ParamType, 3253 ArgType, Info, Deduced, TDF); 3254 } 3255 3256 /// \brief Perform template argument deduction from a function call 3257 /// (C++ [temp.deduct.call]). 3258 /// 3259 /// \param FunctionTemplate the function template for which we are performing 3260 /// template argument deduction. 3261 /// 3262 /// \param ExplicitTemplateArgs the explicit template arguments provided 3263 /// for this call. 3264 /// 3265 /// \param Args the function call arguments 3266 /// 3267 /// \param Specialization if template argument deduction was successful, 3268 /// this will be set to the function template specialization produced by 3269 /// template argument deduction. 3270 /// 3271 /// \param Info the argument will be updated to provide additional information 3272 /// about template argument deduction. 3273 /// 3274 /// \returns the result of template argument deduction. 3275 Sema::TemplateDeductionResult Sema::DeduceTemplateArguments( 3276 FunctionTemplateDecl *FunctionTemplate, 3277 TemplateArgumentListInfo *ExplicitTemplateArgs, ArrayRef<Expr *> Args, 3278 FunctionDecl *&Specialization, TemplateDeductionInfo &Info) { 3279 if (FunctionTemplate->isInvalidDecl()) 3280 return TDK_Invalid; 3281 3282 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl(); 3283 3284 // C++ [temp.deduct.call]p1: 3285 // Template argument deduction is done by comparing each function template 3286 // parameter type (call it P) with the type of the corresponding argument 3287 // of the call (call it A) as described below. 3288 unsigned CheckArgs = Args.size(); 3289 if (Args.size() < Function->getMinRequiredArguments()) 3290 return TDK_TooFewArguments; 3291 else if (Args.size() > Function->getNumParams()) { 3292 const FunctionProtoType *Proto 3293 = Function->getType()->getAs<FunctionProtoType>(); 3294 if (Proto->isTemplateVariadic()) 3295 /* Do nothing */; 3296 else if (Proto->isVariadic()) 3297 CheckArgs = Function->getNumParams(); 3298 else 3299 return TDK_TooManyArguments; 3300 } 3301 3302 // The types of the parameters from which we will perform template argument 3303 // deduction. 3304 LocalInstantiationScope InstScope(*this); 3305 TemplateParameterList *TemplateParams 3306 = FunctionTemplate->getTemplateParameters(); 3307 SmallVector<DeducedTemplateArgument, 4> Deduced; 3308 SmallVector<QualType, 4> ParamTypes; 3309 unsigned NumExplicitlySpecified = 0; 3310 if (ExplicitTemplateArgs) { 3311 TemplateDeductionResult Result = 3312 SubstituteExplicitTemplateArguments(FunctionTemplate, 3313 *ExplicitTemplateArgs, 3314 Deduced, 3315 ParamTypes, 3316 0, 3317 Info); 3318 if (Result) 3319 return Result; 3320 3321 NumExplicitlySpecified = Deduced.size(); 3322 } else { 3323 // Just fill in the parameter types from the function declaration. 3324 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I) 3325 ParamTypes.push_back(Function->getParamDecl(I)->getType()); 3326 } 3327 3328 // Deduce template arguments from the function parameters. 3329 Deduced.resize(TemplateParams->size()); 3330 unsigned ArgIdx = 0; 3331 SmallVector<OriginalCallArg, 4> OriginalCallArgs; 3332 for (unsigned ParamIdx = 0, NumParams = ParamTypes.size(); 3333 ParamIdx != NumParams; ++ParamIdx) { 3334 QualType OrigParamType = ParamTypes[ParamIdx]; 3335 QualType ParamType = OrigParamType; 3336 3337 const PackExpansionType *ParamExpansion 3338 = dyn_cast<PackExpansionType>(ParamType); 3339 if (!ParamExpansion) { 3340 // Simple case: matching a function parameter to a function argument. 3341 if (ArgIdx >= CheckArgs) 3342 break; 3343 3344 Expr *Arg = Args[ArgIdx++]; 3345 QualType ArgType = Arg->getType(); 3346 3347 unsigned TDF = 0; 3348 if (AdjustFunctionParmAndArgTypesForDeduction(*this, TemplateParams, 3349 ParamType, ArgType, Arg, 3350 TDF)) 3351 continue; 3352 3353 // If we have nothing to deduce, we're done. 3354 if (!hasDeducibleTemplateParameters(*this, FunctionTemplate, ParamType)) 3355 continue; 3356 3357 // If the argument is an initializer list ... 3358 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) { 3359 // ... then the parameter is an undeduced context, unless the parameter 3360 // type is (reference to cv) std::initializer_list<P'>, in which case 3361 // deduction is done for each element of the initializer list, and the 3362 // result is the deduced type if it's the same for all elements. 3363 QualType X; 3364 // Removing references was already done. 3365 if (!isStdInitializerList(ParamType, &X)) 3366 continue; 3367 3368 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) { 3369 if (TemplateDeductionResult Result = 3370 DeduceTemplateArgumentByListElement(*this, TemplateParams, X, 3371 ILE->getInit(i), 3372 Info, Deduced, TDF)) 3373 return Result; 3374 } 3375 // Don't track the argument type, since an initializer list has none. 3376 continue; 3377 } 3378 3379 // Keep track of the argument type and corresponding parameter index, 3380 // so we can check for compatibility between the deduced A and A. 3381 OriginalCallArgs.push_back(OriginalCallArg(OrigParamType, ArgIdx-1, 3382 ArgType)); 3383 3384 if (TemplateDeductionResult Result 3385 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams, 3386 ParamType, ArgType, 3387 Info, Deduced, TDF)) 3388 return Result; 3389 3390 continue; 3391 } 3392 3393 // C++0x [temp.deduct.call]p1: 3394 // For a function parameter pack that occurs at the end of the 3395 // parameter-declaration-list, the type A of each remaining argument of 3396 // the call is compared with the type P of the declarator-id of the 3397 // function parameter pack. Each comparison deduces template arguments 3398 // for subsequent positions in the template parameter packs expanded by 3399 // the function parameter pack. For a function parameter pack that does 3400 // not occur at the end of the parameter-declaration-list, the type of 3401 // the parameter pack is a non-deduced context. 3402 if (ParamIdx + 1 < NumParams) 3403 break; 3404 3405 QualType ParamPattern = ParamExpansion->getPattern(); 3406 SmallVector<unsigned, 2> PackIndices; 3407 { 3408 llvm::SmallBitVector SawIndices(TemplateParams->size()); 3409 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 3410 collectUnexpandedParameterPacks(ParamPattern, Unexpanded); 3411 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) { 3412 unsigned Depth, Index; 3413 std::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]); 3414 if (Depth == 0 && !SawIndices[Index]) { 3415 SawIndices[Index] = true; 3416 PackIndices.push_back(Index); 3417 } 3418 } 3419 } 3420 assert(!PackIndices.empty() && "Pack expansion without unexpanded packs?"); 3421 3422 // Keep track of the deduced template arguments for each parameter pack 3423 // expanded by this pack expansion (the outer index) and for each 3424 // template argument (the inner SmallVectors). 3425 NewlyDeducedPacksType NewlyDeducedPacks(PackIndices.size()); 3426 SmallVector<DeducedTemplateArgument, 2> 3427 SavedPacks(PackIndices.size()); 3428 PrepareArgumentPackDeduction(*this, Deduced, PackIndices, SavedPacks, 3429 NewlyDeducedPacks); 3430 bool HasAnyArguments = false; 3431 for (; ArgIdx < Args.size(); ++ArgIdx) { 3432 HasAnyArguments = true; 3433 3434 QualType OrigParamType = ParamPattern; 3435 ParamType = OrigParamType; 3436 Expr *Arg = Args[ArgIdx]; 3437 QualType ArgType = Arg->getType(); 3438 3439 unsigned TDF = 0; 3440 if (AdjustFunctionParmAndArgTypesForDeduction(*this, TemplateParams, 3441 ParamType, ArgType, Arg, 3442 TDF)) { 3443 // We can't actually perform any deduction for this argument, so stop 3444 // deduction at this point. 3445 ++ArgIdx; 3446 break; 3447 } 3448 3449 // As above, initializer lists need special handling. 3450 if (InitListExpr *ILE = dyn_cast<InitListExpr>(Arg)) { 3451 QualType X; 3452 if (!isStdInitializerList(ParamType, &X)) { 3453 ++ArgIdx; 3454 break; 3455 } 3456 3457 for (unsigned i = 0, e = ILE->getNumInits(); i < e; ++i) { 3458 if (TemplateDeductionResult Result = 3459 DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams, X, 3460 ILE->getInit(i)->getType(), 3461 Info, Deduced, TDF)) 3462 return Result; 3463 } 3464 } else { 3465 3466 // Keep track of the argument type and corresponding argument index, 3467 // so we can check for compatibility between the deduced A and A. 3468 if (hasDeducibleTemplateParameters(*this, FunctionTemplate, ParamType)) 3469 OriginalCallArgs.push_back(OriginalCallArg(OrigParamType, ArgIdx, 3470 ArgType)); 3471 3472 if (TemplateDeductionResult Result 3473 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams, 3474 ParamType, ArgType, Info, 3475 Deduced, TDF)) 3476 return Result; 3477 } 3478 3479 // Capture the deduced template arguments for each parameter pack expanded 3480 // by this pack expansion, add them to the list of arguments we've deduced 3481 // for that pack, then clear out the deduced argument. 3482 for (unsigned I = 0, N = PackIndices.size(); I != N; ++I) { 3483 DeducedTemplateArgument &DeducedArg = Deduced[PackIndices[I]]; 3484 if (!DeducedArg.isNull()) { 3485 NewlyDeducedPacks[I].push_back(DeducedArg); 3486 DeducedArg = DeducedTemplateArgument(); 3487 } 3488 } 3489 } 3490 3491 // Build argument packs for each of the parameter packs expanded by this 3492 // pack expansion. 3493 if (Sema::TemplateDeductionResult Result 3494 = FinishArgumentPackDeduction(*this, TemplateParams, HasAnyArguments, 3495 Deduced, PackIndices, SavedPacks, 3496 NewlyDeducedPacks, Info)) 3497 return Result; 3498 3499 // After we've matching against a parameter pack, we're done. 3500 break; 3501 } 3502 3503 return FinishTemplateArgumentDeduction(FunctionTemplate, Deduced, 3504 NumExplicitlySpecified, 3505 Specialization, Info, &OriginalCallArgs); 3506 } 3507 3508 QualType Sema::adjustCCAndNoReturn(QualType ArgFunctionType, 3509 QualType FunctionType) { 3510 if (ArgFunctionType.isNull()) 3511 return ArgFunctionType; 3512 3513 const FunctionProtoType *FunctionTypeP = 3514 FunctionType->castAs<FunctionProtoType>(); 3515 CallingConv CC = FunctionTypeP->getCallConv(); 3516 bool NoReturn = FunctionTypeP->getNoReturnAttr(); 3517 const FunctionProtoType *ArgFunctionTypeP = 3518 ArgFunctionType->getAs<FunctionProtoType>(); 3519 if (ArgFunctionTypeP->getCallConv() == CC && 3520 ArgFunctionTypeP->getNoReturnAttr() == NoReturn) 3521 return ArgFunctionType; 3522 3523 FunctionType::ExtInfo EI = ArgFunctionTypeP->getExtInfo().withCallingConv(CC); 3524 EI = EI.withNoReturn(NoReturn); 3525 ArgFunctionTypeP = 3526 cast<FunctionProtoType>(Context.adjustFunctionType(ArgFunctionTypeP, EI)); 3527 return QualType(ArgFunctionTypeP, 0); 3528 } 3529 3530 /// \brief Deduce template arguments when taking the address of a function 3531 /// template (C++ [temp.deduct.funcaddr]) or matching a specialization to 3532 /// a template. 3533 /// 3534 /// \param FunctionTemplate the function template for which we are performing 3535 /// template argument deduction. 3536 /// 3537 /// \param ExplicitTemplateArgs the explicitly-specified template 3538 /// arguments. 3539 /// 3540 /// \param ArgFunctionType the function type that will be used as the 3541 /// "argument" type (A) when performing template argument deduction from the 3542 /// function template's function type. This type may be NULL, if there is no 3543 /// argument type to compare against, in C++0x [temp.arg.explicit]p3. 3544 /// 3545 /// \param Specialization if template argument deduction was successful, 3546 /// this will be set to the function template specialization produced by 3547 /// template argument deduction. 3548 /// 3549 /// \param Info the argument will be updated to provide additional information 3550 /// about template argument deduction. 3551 /// 3552 /// \returns the result of template argument deduction. 3553 Sema::TemplateDeductionResult 3554 Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate, 3555 TemplateArgumentListInfo *ExplicitTemplateArgs, 3556 QualType ArgFunctionType, 3557 FunctionDecl *&Specialization, 3558 TemplateDeductionInfo &Info, 3559 bool InOverloadResolution) { 3560 if (FunctionTemplate->isInvalidDecl()) 3561 return TDK_Invalid; 3562 3563 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl(); 3564 TemplateParameterList *TemplateParams 3565 = FunctionTemplate->getTemplateParameters(); 3566 QualType FunctionType = Function->getType(); 3567 if (!InOverloadResolution) 3568 ArgFunctionType = adjustCCAndNoReturn(ArgFunctionType, FunctionType); 3569 3570 // Substitute any explicit template arguments. 3571 LocalInstantiationScope InstScope(*this); 3572 SmallVector<DeducedTemplateArgument, 4> Deduced; 3573 unsigned NumExplicitlySpecified = 0; 3574 SmallVector<QualType, 4> ParamTypes; 3575 if (ExplicitTemplateArgs) { 3576 if (TemplateDeductionResult Result 3577 = SubstituteExplicitTemplateArguments(FunctionTemplate, 3578 *ExplicitTemplateArgs, 3579 Deduced, ParamTypes, 3580 &FunctionType, Info)) 3581 return Result; 3582 3583 NumExplicitlySpecified = Deduced.size(); 3584 } 3585 3586 // Unevaluated SFINAE context. 3587 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated); 3588 SFINAETrap Trap(*this); 3589 3590 Deduced.resize(TemplateParams->size()); 3591 3592 // If the function has a deduced return type, substitute it for a dependent 3593 // type so that we treat it as a non-deduced context in what follows. 3594 bool HasDeducedReturnType = false; 3595 if (getLangOpts().CPlusPlus1y && InOverloadResolution && 3596 Function->getReturnType()->getContainedAutoType()) { 3597 FunctionType = SubstAutoType(FunctionType, Context.DependentTy); 3598 HasDeducedReturnType = true; 3599 } 3600 3601 if (!ArgFunctionType.isNull()) { 3602 unsigned TDF = TDF_TopLevelParameterTypeList; 3603 if (InOverloadResolution) TDF |= TDF_InOverloadResolution; 3604 // Deduce template arguments from the function type. 3605 if (TemplateDeductionResult Result 3606 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams, 3607 FunctionType, ArgFunctionType, 3608 Info, Deduced, TDF)) 3609 return Result; 3610 } 3611 3612 if (TemplateDeductionResult Result 3613 = FinishTemplateArgumentDeduction(FunctionTemplate, Deduced, 3614 NumExplicitlySpecified, 3615 Specialization, Info)) 3616 return Result; 3617 3618 // If the function has a deduced return type, deduce it now, so we can check 3619 // that the deduced function type matches the requested type. 3620 if (HasDeducedReturnType && 3621 Specialization->getReturnType()->isUndeducedType() && 3622 DeduceReturnType(Specialization, Info.getLocation(), false)) 3623 return TDK_MiscellaneousDeductionFailure; 3624 3625 // If the requested function type does not match the actual type of the 3626 // specialization with respect to arguments of compatible pointer to function 3627 // types, template argument deduction fails. 3628 if (!ArgFunctionType.isNull()) { 3629 if (InOverloadResolution && !isSameOrCompatibleFunctionType( 3630 Context.getCanonicalType(Specialization->getType()), 3631 Context.getCanonicalType(ArgFunctionType))) 3632 return TDK_MiscellaneousDeductionFailure; 3633 else if(!InOverloadResolution && 3634 !Context.hasSameType(Specialization->getType(), ArgFunctionType)) 3635 return TDK_MiscellaneousDeductionFailure; 3636 } 3637 3638 return TDK_Success; 3639 } 3640 3641 /// \brief Given a function declaration (e.g. a generic lambda conversion 3642 /// function) that contains an 'auto' in its result type, substitute it 3643 /// with TypeToReplaceAutoWith. Be careful to pass in the type you want 3644 /// to replace 'auto' with and not the actual result type you want 3645 /// to set the function to. 3646 static inline void 3647 SubstAutoWithinFunctionReturnType(FunctionDecl *F, 3648 QualType TypeToReplaceAutoWith, Sema &S) { 3649 assert(!TypeToReplaceAutoWith->getContainedAutoType()); 3650 QualType AutoResultType = F->getReturnType(); 3651 assert(AutoResultType->getContainedAutoType()); 3652 QualType DeducedResultType = S.SubstAutoType(AutoResultType, 3653 TypeToReplaceAutoWith); 3654 S.Context.adjustDeducedFunctionResultType(F, DeducedResultType); 3655 } 3656 3657 /// \brief Given a specialized conversion operator of a generic lambda 3658 /// create the corresponding specializations of the call operator and 3659 /// the static-invoker. If the return type of the call operator is auto, 3660 /// deduce its return type and check if that matches the 3661 /// return type of the destination function ptr. 3662 3663 static inline Sema::TemplateDeductionResult 3664 SpecializeCorrespondingLambdaCallOperatorAndInvoker( 3665 CXXConversionDecl *ConversionSpecialized, 3666 SmallVectorImpl<DeducedTemplateArgument> &DeducedArguments, 3667 QualType ReturnTypeOfDestFunctionPtr, 3668 TemplateDeductionInfo &TDInfo, 3669 Sema &S) { 3670 3671 CXXRecordDecl *LambdaClass = ConversionSpecialized->getParent(); 3672 assert(LambdaClass && LambdaClass->isGenericLambda()); 3673 3674 CXXMethodDecl *CallOpGeneric = LambdaClass->getLambdaCallOperator(); 3675 QualType CallOpResultType = CallOpGeneric->getReturnType(); 3676 const bool GenericLambdaCallOperatorHasDeducedReturnType = 3677 CallOpResultType->getContainedAutoType(); 3678 3679 FunctionTemplateDecl *CallOpTemplate = 3680 CallOpGeneric->getDescribedFunctionTemplate(); 3681 3682 FunctionDecl *CallOpSpecialized = 0; 3683 // Use the deduced arguments of the conversion function, to specialize our 3684 // generic lambda's call operator. 3685 if (Sema::TemplateDeductionResult Result 3686 = S.FinishTemplateArgumentDeduction(CallOpTemplate, 3687 DeducedArguments, 3688 0, CallOpSpecialized, TDInfo)) 3689 return Result; 3690 3691 // If we need to deduce the return type, do so (instantiates the callop). 3692 if (GenericLambdaCallOperatorHasDeducedReturnType && 3693 CallOpSpecialized->getReturnType()->isUndeducedType()) 3694 S.DeduceReturnType(CallOpSpecialized, 3695 CallOpSpecialized->getPointOfInstantiation(), 3696 /*Diagnose*/ true); 3697 3698 // Check to see if the return type of the destination ptr-to-function 3699 // matches the return type of the call operator. 3700 if (!S.Context.hasSameType(CallOpSpecialized->getReturnType(), 3701 ReturnTypeOfDestFunctionPtr)) 3702 return Sema::TDK_NonDeducedMismatch; 3703 // Since we have succeeded in matching the source and destination 3704 // ptr-to-functions (now including return type), and have successfully 3705 // specialized our corresponding call operator, we are ready to 3706 // specialize the static invoker with the deduced arguments of our 3707 // ptr-to-function. 3708 FunctionDecl *InvokerSpecialized = 0; 3709 FunctionTemplateDecl *InvokerTemplate = LambdaClass-> 3710 getLambdaStaticInvoker()->getDescribedFunctionTemplate(); 3711 3712 Sema::TemplateDeductionResult LLVM_ATTRIBUTE_UNUSED Result 3713 = S.FinishTemplateArgumentDeduction(InvokerTemplate, DeducedArguments, 0, 3714 InvokerSpecialized, TDInfo); 3715 assert(Result == Sema::TDK_Success && 3716 "If the call operator succeeded so should the invoker!"); 3717 // Set the result type to match the corresponding call operator 3718 // specialization's result type. 3719 if (GenericLambdaCallOperatorHasDeducedReturnType && 3720 InvokerSpecialized->getReturnType()->isUndeducedType()) { 3721 // Be sure to get the type to replace 'auto' with and not 3722 // the full result type of the call op specialization 3723 // to substitute into the 'auto' of the invoker and conversion 3724 // function. 3725 // For e.g. 3726 // int* (*fp)(int*) = [](auto* a) -> auto* { return a; }; 3727 // We don't want to subst 'int*' into 'auto' to get int**. 3728 3729 QualType TypeToReplaceAutoWith = CallOpSpecialized->getReturnType() 3730 ->getContainedAutoType() 3731 ->getDeducedType(); 3732 SubstAutoWithinFunctionReturnType(InvokerSpecialized, 3733 TypeToReplaceAutoWith, S); 3734 SubstAutoWithinFunctionReturnType(ConversionSpecialized, 3735 TypeToReplaceAutoWith, S); 3736 } 3737 3738 // Ensure that static invoker doesn't have a const qualifier. 3739 // FIXME: When creating the InvokerTemplate in SemaLambda.cpp 3740 // do not use the CallOperator's TypeSourceInfo which allows 3741 // the const qualifier to leak through. 3742 const FunctionProtoType *InvokerFPT = InvokerSpecialized-> 3743 getType().getTypePtr()->castAs<FunctionProtoType>(); 3744 FunctionProtoType::ExtProtoInfo EPI = InvokerFPT->getExtProtoInfo(); 3745 EPI.TypeQuals = 0; 3746 InvokerSpecialized->setType(S.Context.getFunctionType( 3747 InvokerFPT->getReturnType(), InvokerFPT->getParamTypes(), EPI)); 3748 return Sema::TDK_Success; 3749 } 3750 /// \brief Deduce template arguments for a templated conversion 3751 /// function (C++ [temp.deduct.conv]) and, if successful, produce a 3752 /// conversion function template specialization. 3753 Sema::TemplateDeductionResult 3754 Sema::DeduceTemplateArguments(FunctionTemplateDecl *ConversionTemplate, 3755 QualType ToType, 3756 CXXConversionDecl *&Specialization, 3757 TemplateDeductionInfo &Info) { 3758 if (ConversionTemplate->isInvalidDecl()) 3759 return TDK_Invalid; 3760 3761 CXXConversionDecl *ConversionGeneric 3762 = cast<CXXConversionDecl>(ConversionTemplate->getTemplatedDecl()); 3763 3764 QualType FromType = ConversionGeneric->getConversionType(); 3765 3766 // Canonicalize the types for deduction. 3767 QualType P = Context.getCanonicalType(FromType); 3768 QualType A = Context.getCanonicalType(ToType); 3769 3770 // C++0x [temp.deduct.conv]p2: 3771 // If P is a reference type, the type referred to by P is used for 3772 // type deduction. 3773 if (const ReferenceType *PRef = P->getAs<ReferenceType>()) 3774 P = PRef->getPointeeType(); 3775 3776 // C++0x [temp.deduct.conv]p4: 3777 // [...] If A is a reference type, the type referred to by A is used 3778 // for type deduction. 3779 if (const ReferenceType *ARef = A->getAs<ReferenceType>()) 3780 A = ARef->getPointeeType().getUnqualifiedType(); 3781 // C++ [temp.deduct.conv]p3: 3782 // 3783 // If A is not a reference type: 3784 else { 3785 assert(!A->isReferenceType() && "Reference types were handled above"); 3786 3787 // - If P is an array type, the pointer type produced by the 3788 // array-to-pointer standard conversion (4.2) is used in place 3789 // of P for type deduction; otherwise, 3790 if (P->isArrayType()) 3791 P = Context.getArrayDecayedType(P); 3792 // - If P is a function type, the pointer type produced by the 3793 // function-to-pointer standard conversion (4.3) is used in 3794 // place of P for type deduction; otherwise, 3795 else if (P->isFunctionType()) 3796 P = Context.getPointerType(P); 3797 // - If P is a cv-qualified type, the top level cv-qualifiers of 3798 // P's type are ignored for type deduction. 3799 else 3800 P = P.getUnqualifiedType(); 3801 3802 // C++0x [temp.deduct.conv]p4: 3803 // If A is a cv-qualified type, the top level cv-qualifiers of A's 3804 // type are ignored for type deduction. If A is a reference type, the type 3805 // referred to by A is used for type deduction. 3806 A = A.getUnqualifiedType(); 3807 } 3808 3809 // Unevaluated SFINAE context. 3810 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated); 3811 SFINAETrap Trap(*this); 3812 3813 // C++ [temp.deduct.conv]p1: 3814 // Template argument deduction is done by comparing the return 3815 // type of the template conversion function (call it P) with the 3816 // type that is required as the result of the conversion (call it 3817 // A) as described in 14.8.2.4. 3818 TemplateParameterList *TemplateParams 3819 = ConversionTemplate->getTemplateParameters(); 3820 SmallVector<DeducedTemplateArgument, 4> Deduced; 3821 Deduced.resize(TemplateParams->size()); 3822 3823 // C++0x [temp.deduct.conv]p4: 3824 // In general, the deduction process attempts to find template 3825 // argument values that will make the deduced A identical to 3826 // A. However, there are two cases that allow a difference: 3827 unsigned TDF = 0; 3828 // - If the original A is a reference type, A can be more 3829 // cv-qualified than the deduced A (i.e., the type referred to 3830 // by the reference) 3831 if (ToType->isReferenceType()) 3832 TDF |= TDF_ParamWithReferenceType; 3833 // - The deduced A can be another pointer or pointer to member 3834 // type that can be converted to A via a qualification 3835 // conversion. 3836 // 3837 // (C++0x [temp.deduct.conv]p6 clarifies that this only happens when 3838 // both P and A are pointers or member pointers. In this case, we 3839 // just ignore cv-qualifiers completely). 3840 if ((P->isPointerType() && A->isPointerType()) || 3841 (P->isMemberPointerType() && A->isMemberPointerType())) 3842 TDF |= TDF_IgnoreQualifiers; 3843 if (TemplateDeductionResult Result 3844 = DeduceTemplateArgumentsByTypeMatch(*this, TemplateParams, 3845 P, A, Info, Deduced, TDF)) 3846 return Result; 3847 3848 // Create an Instantiation Scope for finalizing the operator. 3849 LocalInstantiationScope InstScope(*this); 3850 // Finish template argument deduction. 3851 FunctionDecl *ConversionSpecialized = 0; 3852 TemplateDeductionResult Result 3853 = FinishTemplateArgumentDeduction(ConversionTemplate, Deduced, 0, 3854 ConversionSpecialized, Info); 3855 Specialization = cast_or_null<CXXConversionDecl>(ConversionSpecialized); 3856 3857 // If the conversion operator is being invoked on a lambda closure to convert 3858 // to a ptr-to-function, use the deduced arguments from the conversion function 3859 // to specialize the corresponding call operator. 3860 // e.g., int (*fp)(int) = [](auto a) { return a; }; 3861 if (Result == TDK_Success && isLambdaConversionOperator(ConversionGeneric)) { 3862 3863 // Get the return type of the destination ptr-to-function we are converting 3864 // to. This is necessary for matching the lambda call operator's return 3865 // type to that of the destination ptr-to-function's return type. 3866 assert(A->isPointerType() && 3867 "Can only convert from lambda to ptr-to-function"); 3868 const FunctionType *ToFunType = 3869 A->getPointeeType().getTypePtr()->getAs<FunctionType>(); 3870 const QualType DestFunctionPtrReturnType = ToFunType->getReturnType(); 3871 3872 // Create the corresponding specializations of the call operator and 3873 // the static-invoker; and if the return type is auto, 3874 // deduce the return type and check if it matches the 3875 // DestFunctionPtrReturnType. 3876 // For instance: 3877 // auto L = [](auto a) { return f(a); }; 3878 // int (*fp)(int) = L; 3879 // char (*fp2)(int) = L; <-- Not OK. 3880 3881 Result = SpecializeCorrespondingLambdaCallOperatorAndInvoker( 3882 Specialization, Deduced, DestFunctionPtrReturnType, 3883 Info, *this); 3884 } 3885 return Result; 3886 } 3887 3888 /// \brief Deduce template arguments for a function template when there is 3889 /// nothing to deduce against (C++0x [temp.arg.explicit]p3). 3890 /// 3891 /// \param FunctionTemplate the function template for which we are performing 3892 /// template argument deduction. 3893 /// 3894 /// \param ExplicitTemplateArgs the explicitly-specified template 3895 /// arguments. 3896 /// 3897 /// \param Specialization if template argument deduction was successful, 3898 /// this will be set to the function template specialization produced by 3899 /// template argument deduction. 3900 /// 3901 /// \param Info the argument will be updated to provide additional information 3902 /// about template argument deduction. 3903 /// 3904 /// \returns the result of template argument deduction. 3905 Sema::TemplateDeductionResult 3906 Sema::DeduceTemplateArguments(FunctionTemplateDecl *FunctionTemplate, 3907 TemplateArgumentListInfo *ExplicitTemplateArgs, 3908 FunctionDecl *&Specialization, 3909 TemplateDeductionInfo &Info, 3910 bool InOverloadResolution) { 3911 return DeduceTemplateArguments(FunctionTemplate, ExplicitTemplateArgs, 3912 QualType(), Specialization, Info, 3913 InOverloadResolution); 3914 } 3915 3916 namespace { 3917 /// Substitute the 'auto' type specifier within a type for a given replacement 3918 /// type. 3919 class SubstituteAutoTransform : 3920 public TreeTransform<SubstituteAutoTransform> { 3921 QualType Replacement; 3922 public: 3923 SubstituteAutoTransform(Sema &SemaRef, QualType Replacement) : 3924 TreeTransform<SubstituteAutoTransform>(SemaRef), Replacement(Replacement) { 3925 } 3926 QualType TransformAutoType(TypeLocBuilder &TLB, AutoTypeLoc TL) { 3927 // If we're building the type pattern to deduce against, don't wrap the 3928 // substituted type in an AutoType. Certain template deduction rules 3929 // apply only when a template type parameter appears directly (and not if 3930 // the parameter is found through desugaring). For instance: 3931 // auto &&lref = lvalue; 3932 // must transform into "rvalue reference to T" not "rvalue reference to 3933 // auto type deduced as T" in order for [temp.deduct.call]p3 to apply. 3934 if (!Replacement.isNull() && isa<TemplateTypeParmType>(Replacement)) { 3935 QualType Result = Replacement; 3936 TemplateTypeParmTypeLoc NewTL = 3937 TLB.push<TemplateTypeParmTypeLoc>(Result); 3938 NewTL.setNameLoc(TL.getNameLoc()); 3939 return Result; 3940 } else { 3941 bool Dependent = 3942 !Replacement.isNull() && Replacement->isDependentType(); 3943 QualType Result = 3944 SemaRef.Context.getAutoType(Dependent ? QualType() : Replacement, 3945 TL.getTypePtr()->isDecltypeAuto(), 3946 Dependent); 3947 AutoTypeLoc NewTL = TLB.push<AutoTypeLoc>(Result); 3948 NewTL.setNameLoc(TL.getNameLoc()); 3949 return Result; 3950 } 3951 } 3952 3953 ExprResult TransformLambdaExpr(LambdaExpr *E) { 3954 // Lambdas never need to be transformed. 3955 return E; 3956 } 3957 3958 QualType Apply(TypeLoc TL) { 3959 // Create some scratch storage for the transformed type locations. 3960 // FIXME: We're just going to throw this information away. Don't build it. 3961 TypeLocBuilder TLB; 3962 TLB.reserve(TL.getFullDataSize()); 3963 return TransformType(TLB, TL); 3964 } 3965 }; 3966 } 3967 3968 Sema::DeduceAutoResult 3969 Sema::DeduceAutoType(TypeSourceInfo *Type, Expr *&Init, QualType &Result) { 3970 return DeduceAutoType(Type->getTypeLoc(), Init, Result); 3971 } 3972 3973 /// \brief Deduce the type for an auto type-specifier (C++11 [dcl.spec.auto]p6) 3974 /// 3975 /// \param Type the type pattern using the auto type-specifier. 3976 /// \param Init the initializer for the variable whose type is to be deduced. 3977 /// \param Result if type deduction was successful, this will be set to the 3978 /// deduced type. 3979 Sema::DeduceAutoResult 3980 Sema::DeduceAutoType(TypeLoc Type, Expr *&Init, QualType &Result) { 3981 if (Init->getType()->isNonOverloadPlaceholderType()) { 3982 ExprResult NonPlaceholder = CheckPlaceholderExpr(Init); 3983 if (NonPlaceholder.isInvalid()) 3984 return DAR_FailedAlreadyDiagnosed; 3985 Init = NonPlaceholder.take(); 3986 } 3987 3988 if (Init->isTypeDependent() || Type.getType()->isDependentType()) { 3989 Result = SubstituteAutoTransform(*this, Context.DependentTy).Apply(Type); 3990 assert(!Result.isNull() && "substituting DependentTy can't fail"); 3991 return DAR_Succeeded; 3992 } 3993 3994 // If this is a 'decltype(auto)' specifier, do the decltype dance. 3995 // Since 'decltype(auto)' can only occur at the top of the type, we 3996 // don't need to go digging for it. 3997 if (const AutoType *AT = Type.getType()->getAs<AutoType>()) { 3998 if (AT->isDecltypeAuto()) { 3999 if (isa<InitListExpr>(Init)) { 4000 Diag(Init->getLocStart(), diag::err_decltype_auto_initializer_list); 4001 return DAR_FailedAlreadyDiagnosed; 4002 } 4003 4004 QualType Deduced = BuildDecltypeType(Init, Init->getLocStart()); 4005 // FIXME: Support a non-canonical deduced type for 'auto'. 4006 Deduced = Context.getCanonicalType(Deduced); 4007 Result = SubstituteAutoTransform(*this, Deduced).Apply(Type); 4008 if (Result.isNull()) 4009 return DAR_FailedAlreadyDiagnosed; 4010 return DAR_Succeeded; 4011 } 4012 } 4013 4014 SourceLocation Loc = Init->getExprLoc(); 4015 4016 LocalInstantiationScope InstScope(*this); 4017 4018 // Build template<class TemplParam> void Func(FuncParam); 4019 TemplateTypeParmDecl *TemplParam = 4020 TemplateTypeParmDecl::Create(Context, 0, SourceLocation(), Loc, 0, 0, 0, 4021 false, false); 4022 QualType TemplArg = QualType(TemplParam->getTypeForDecl(), 0); 4023 NamedDecl *TemplParamPtr = TemplParam; 4024 FixedSizeTemplateParameterList<1> TemplateParams(Loc, Loc, &TemplParamPtr, 4025 Loc); 4026 4027 QualType FuncParam = SubstituteAutoTransform(*this, TemplArg).Apply(Type); 4028 assert(!FuncParam.isNull() && 4029 "substituting template parameter for 'auto' failed"); 4030 4031 // Deduce type of TemplParam in Func(Init) 4032 SmallVector<DeducedTemplateArgument, 1> Deduced; 4033 Deduced.resize(1); 4034 QualType InitType = Init->getType(); 4035 unsigned TDF = 0; 4036 4037 TemplateDeductionInfo Info(Loc); 4038 4039 InitListExpr *InitList = dyn_cast<InitListExpr>(Init); 4040 if (InitList) { 4041 for (unsigned i = 0, e = InitList->getNumInits(); i < e; ++i) { 4042 if (DeduceTemplateArgumentByListElement(*this, &TemplateParams, 4043 TemplArg, 4044 InitList->getInit(i), 4045 Info, Deduced, TDF)) 4046 return DAR_Failed; 4047 } 4048 } else { 4049 if (AdjustFunctionParmAndArgTypesForDeduction(*this, &TemplateParams, 4050 FuncParam, InitType, Init, 4051 TDF)) 4052 return DAR_Failed; 4053 4054 if (DeduceTemplateArgumentsByTypeMatch(*this, &TemplateParams, FuncParam, 4055 InitType, Info, Deduced, TDF)) 4056 return DAR_Failed; 4057 } 4058 4059 if (Deduced[0].getKind() != TemplateArgument::Type) 4060 return DAR_Failed; 4061 4062 QualType DeducedType = Deduced[0].getAsType(); 4063 4064 if (InitList) { 4065 DeducedType = BuildStdInitializerList(DeducedType, Loc); 4066 if (DeducedType.isNull()) 4067 return DAR_FailedAlreadyDiagnosed; 4068 } 4069 4070 Result = SubstituteAutoTransform(*this, DeducedType).Apply(Type); 4071 if (Result.isNull()) 4072 return DAR_FailedAlreadyDiagnosed; 4073 4074 // Check that the deduced argument type is compatible with the original 4075 // argument type per C++ [temp.deduct.call]p4. 4076 if (!InitList && !Result.isNull() && 4077 CheckOriginalCallArgDeduction(*this, 4078 Sema::OriginalCallArg(FuncParam,0,InitType), 4079 Result)) { 4080 Result = QualType(); 4081 return DAR_Failed; 4082 } 4083 4084 return DAR_Succeeded; 4085 } 4086 4087 QualType Sema::SubstAutoType(QualType TypeWithAuto, 4088 QualType TypeToReplaceAuto) { 4089 return SubstituteAutoTransform(*this, TypeToReplaceAuto). 4090 TransformType(TypeWithAuto); 4091 } 4092 4093 TypeSourceInfo* Sema::SubstAutoTypeSourceInfo(TypeSourceInfo *TypeWithAuto, 4094 QualType TypeToReplaceAuto) { 4095 return SubstituteAutoTransform(*this, TypeToReplaceAuto). 4096 TransformType(TypeWithAuto); 4097 } 4098 4099 void Sema::DiagnoseAutoDeductionFailure(VarDecl *VDecl, Expr *Init) { 4100 if (isa<InitListExpr>(Init)) 4101 Diag(VDecl->getLocation(), 4102 VDecl->isInitCapture() 4103 ? diag::err_init_capture_deduction_failure_from_init_list 4104 : diag::err_auto_var_deduction_failure_from_init_list) 4105 << VDecl->getDeclName() << VDecl->getType() << Init->getSourceRange(); 4106 else 4107 Diag(VDecl->getLocation(), 4108 VDecl->isInitCapture() ? diag::err_init_capture_deduction_failure 4109 : diag::err_auto_var_deduction_failure) 4110 << VDecl->getDeclName() << VDecl->getType() << Init->getType() 4111 << Init->getSourceRange(); 4112 } 4113 4114 bool Sema::DeduceReturnType(FunctionDecl *FD, SourceLocation Loc, 4115 bool Diagnose) { 4116 assert(FD->getReturnType()->isUndeducedType()); 4117 4118 if (FD->getTemplateInstantiationPattern()) 4119 InstantiateFunctionDefinition(Loc, FD); 4120 4121 bool StillUndeduced = FD->getReturnType()->isUndeducedType(); 4122 if (StillUndeduced && Diagnose && !FD->isInvalidDecl()) { 4123 Diag(Loc, diag::err_auto_fn_used_before_defined) << FD; 4124 Diag(FD->getLocation(), diag::note_callee_decl) << FD; 4125 } 4126 4127 return StillUndeduced; 4128 } 4129 4130 static void 4131 MarkUsedTemplateParameters(ASTContext &Ctx, QualType T, 4132 bool OnlyDeduced, 4133 unsigned Level, 4134 llvm::SmallBitVector &Deduced); 4135 4136 /// \brief If this is a non-static member function, 4137 static void 4138 AddImplicitObjectParameterType(ASTContext &Context, 4139 CXXMethodDecl *Method, 4140 SmallVectorImpl<QualType> &ArgTypes) { 4141 // C++11 [temp.func.order]p3: 4142 // [...] The new parameter is of type "reference to cv A," where cv are 4143 // the cv-qualifiers of the function template (if any) and A is 4144 // the class of which the function template is a member. 4145 // 4146 // The standard doesn't say explicitly, but we pick the appropriate kind of 4147 // reference type based on [over.match.funcs]p4. 4148 QualType ArgTy = Context.getTypeDeclType(Method->getParent()); 4149 ArgTy = Context.getQualifiedType(ArgTy, 4150 Qualifiers::fromCVRMask(Method->getTypeQualifiers())); 4151 if (Method->getRefQualifier() == RQ_RValue) 4152 ArgTy = Context.getRValueReferenceType(ArgTy); 4153 else 4154 ArgTy = Context.getLValueReferenceType(ArgTy); 4155 ArgTypes.push_back(ArgTy); 4156 } 4157 4158 /// \brief Determine whether the function template \p FT1 is at least as 4159 /// specialized as \p FT2. 4160 static bool isAtLeastAsSpecializedAs(Sema &S, 4161 SourceLocation Loc, 4162 FunctionTemplateDecl *FT1, 4163 FunctionTemplateDecl *FT2, 4164 TemplatePartialOrderingContext TPOC, 4165 unsigned NumCallArguments1, 4166 SmallVectorImpl<RefParamPartialOrderingComparison> *RefParamComparisons) { 4167 FunctionDecl *FD1 = FT1->getTemplatedDecl(); 4168 FunctionDecl *FD2 = FT2->getTemplatedDecl(); 4169 const FunctionProtoType *Proto1 = FD1->getType()->getAs<FunctionProtoType>(); 4170 const FunctionProtoType *Proto2 = FD2->getType()->getAs<FunctionProtoType>(); 4171 4172 assert(Proto1 && Proto2 && "Function templates must have prototypes"); 4173 TemplateParameterList *TemplateParams = FT2->getTemplateParameters(); 4174 SmallVector<DeducedTemplateArgument, 4> Deduced; 4175 Deduced.resize(TemplateParams->size()); 4176 4177 // C++0x [temp.deduct.partial]p3: 4178 // The types used to determine the ordering depend on the context in which 4179 // the partial ordering is done: 4180 TemplateDeductionInfo Info(Loc); 4181 SmallVector<QualType, 4> Args2; 4182 switch (TPOC) { 4183 case TPOC_Call: { 4184 // - In the context of a function call, the function parameter types are 4185 // used. 4186 CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1); 4187 CXXMethodDecl *Method2 = dyn_cast<CXXMethodDecl>(FD2); 4188 4189 // C++11 [temp.func.order]p3: 4190 // [...] If only one of the function templates is a non-static 4191 // member, that function template is considered to have a new 4192 // first parameter inserted in its function parameter list. The 4193 // new parameter is of type "reference to cv A," where cv are 4194 // the cv-qualifiers of the function template (if any) and A is 4195 // the class of which the function template is a member. 4196 // 4197 // Note that we interpret this to mean "if one of the function 4198 // templates is a non-static member and the other is a non-member"; 4199 // otherwise, the ordering rules for static functions against non-static 4200 // functions don't make any sense. 4201 // 4202 // C++98/03 doesn't have this provision, so instead we drop the 4203 // first argument of the free function, which seems to match 4204 // existing practice. 4205 SmallVector<QualType, 4> Args1; 4206 4207 unsigned Skip1 = 0, Skip2 = 0; 4208 unsigned NumComparedArguments = NumCallArguments1; 4209 4210 if (!Method2 && Method1 && !Method1->isStatic()) { 4211 if (S.getLangOpts().CPlusPlus11) { 4212 // Compare 'this' from Method1 against first parameter from Method2. 4213 AddImplicitObjectParameterType(S.Context, Method1, Args1); 4214 ++NumComparedArguments; 4215 } else 4216 // Ignore first parameter from Method2. 4217 ++Skip2; 4218 } else if (!Method1 && Method2 && !Method2->isStatic()) { 4219 if (S.getLangOpts().CPlusPlus11) 4220 // Compare 'this' from Method2 against first parameter from Method1. 4221 AddImplicitObjectParameterType(S.Context, Method2, Args2); 4222 else 4223 // Ignore first parameter from Method1. 4224 ++Skip1; 4225 } 4226 4227 Args1.insert(Args1.end(), Proto1->param_type_begin() + Skip1, 4228 Proto1->param_type_end()); 4229 Args2.insert(Args2.end(), Proto2->param_type_begin() + Skip2, 4230 Proto2->param_type_end()); 4231 4232 // C++ [temp.func.order]p5: 4233 // The presence of unused ellipsis and default arguments has no effect on 4234 // the partial ordering of function templates. 4235 if (Args1.size() > NumComparedArguments) 4236 Args1.resize(NumComparedArguments); 4237 if (Args2.size() > NumComparedArguments) 4238 Args2.resize(NumComparedArguments); 4239 if (DeduceTemplateArguments(S, TemplateParams, Args2.data(), Args2.size(), 4240 Args1.data(), Args1.size(), Info, Deduced, 4241 TDF_None, /*PartialOrdering=*/true, 4242 RefParamComparisons)) 4243 return false; 4244 4245 break; 4246 } 4247 4248 case TPOC_Conversion: 4249 // - In the context of a call to a conversion operator, the return types 4250 // of the conversion function templates are used. 4251 if (DeduceTemplateArgumentsByTypeMatch( 4252 S, TemplateParams, Proto2->getReturnType(), Proto1->getReturnType(), 4253 Info, Deduced, TDF_None, 4254 /*PartialOrdering=*/true, RefParamComparisons)) 4255 return false; 4256 break; 4257 4258 case TPOC_Other: 4259 // - In other contexts (14.6.6.2) the function template's function type 4260 // is used. 4261 if (DeduceTemplateArgumentsByTypeMatch(S, TemplateParams, 4262 FD2->getType(), FD1->getType(), 4263 Info, Deduced, TDF_None, 4264 /*PartialOrdering=*/true, 4265 RefParamComparisons)) 4266 return false; 4267 break; 4268 } 4269 4270 // C++0x [temp.deduct.partial]p11: 4271 // In most cases, all template parameters must have values in order for 4272 // deduction to succeed, but for partial ordering purposes a template 4273 // parameter may remain without a value provided it is not used in the 4274 // types being used for partial ordering. [ Note: a template parameter used 4275 // in a non-deduced context is considered used. -end note] 4276 unsigned ArgIdx = 0, NumArgs = Deduced.size(); 4277 for (; ArgIdx != NumArgs; ++ArgIdx) 4278 if (Deduced[ArgIdx].isNull()) 4279 break; 4280 4281 if (ArgIdx == NumArgs) { 4282 // All template arguments were deduced. FT1 is at least as specialized 4283 // as FT2. 4284 return true; 4285 } 4286 4287 // Figure out which template parameters were used. 4288 llvm::SmallBitVector UsedParameters(TemplateParams->size()); 4289 switch (TPOC) { 4290 case TPOC_Call: 4291 for (unsigned I = 0, N = Args2.size(); I != N; ++I) 4292 ::MarkUsedTemplateParameters(S.Context, Args2[I], false, 4293 TemplateParams->getDepth(), 4294 UsedParameters); 4295 break; 4296 4297 case TPOC_Conversion: 4298 ::MarkUsedTemplateParameters(S.Context, Proto2->getReturnType(), false, 4299 TemplateParams->getDepth(), UsedParameters); 4300 break; 4301 4302 case TPOC_Other: 4303 ::MarkUsedTemplateParameters(S.Context, FD2->getType(), false, 4304 TemplateParams->getDepth(), 4305 UsedParameters); 4306 break; 4307 } 4308 4309 for (; ArgIdx != NumArgs; ++ArgIdx) 4310 // If this argument had no value deduced but was used in one of the types 4311 // used for partial ordering, then deduction fails. 4312 if (Deduced[ArgIdx].isNull() && UsedParameters[ArgIdx]) 4313 return false; 4314 4315 return true; 4316 } 4317 4318 /// \brief Determine whether this a function template whose parameter-type-list 4319 /// ends with a function parameter pack. 4320 static bool isVariadicFunctionTemplate(FunctionTemplateDecl *FunTmpl) { 4321 FunctionDecl *Function = FunTmpl->getTemplatedDecl(); 4322 unsigned NumParams = Function->getNumParams(); 4323 if (NumParams == 0) 4324 return false; 4325 4326 ParmVarDecl *Last = Function->getParamDecl(NumParams - 1); 4327 if (!Last->isParameterPack()) 4328 return false; 4329 4330 // Make sure that no previous parameter is a parameter pack. 4331 while (--NumParams > 0) { 4332 if (Function->getParamDecl(NumParams - 1)->isParameterPack()) 4333 return false; 4334 } 4335 4336 return true; 4337 } 4338 4339 /// \brief Returns the more specialized function template according 4340 /// to the rules of function template partial ordering (C++ [temp.func.order]). 4341 /// 4342 /// \param FT1 the first function template 4343 /// 4344 /// \param FT2 the second function template 4345 /// 4346 /// \param TPOC the context in which we are performing partial ordering of 4347 /// function templates. 4348 /// 4349 /// \param NumCallArguments1 The number of arguments in the call to FT1, used 4350 /// only when \c TPOC is \c TPOC_Call. 4351 /// 4352 /// \param NumCallArguments2 The number of arguments in the call to FT2, used 4353 /// only when \c TPOC is \c TPOC_Call. 4354 /// 4355 /// \returns the more specialized function template. If neither 4356 /// template is more specialized, returns NULL. 4357 FunctionTemplateDecl * 4358 Sema::getMoreSpecializedTemplate(FunctionTemplateDecl *FT1, 4359 FunctionTemplateDecl *FT2, 4360 SourceLocation Loc, 4361 TemplatePartialOrderingContext TPOC, 4362 unsigned NumCallArguments1, 4363 unsigned NumCallArguments2) { 4364 SmallVector<RefParamPartialOrderingComparison, 4> RefParamComparisons; 4365 bool Better1 = isAtLeastAsSpecializedAs(*this, Loc, FT1, FT2, TPOC, 4366 NumCallArguments1, 0); 4367 bool Better2 = isAtLeastAsSpecializedAs(*this, Loc, FT2, FT1, TPOC, 4368 NumCallArguments2, 4369 &RefParamComparisons); 4370 4371 if (Better1 != Better2) // We have a clear winner 4372 return Better1? FT1 : FT2; 4373 4374 if (!Better1 && !Better2) // Neither is better than the other 4375 return 0; 4376 4377 // C++0x [temp.deduct.partial]p10: 4378 // If for each type being considered a given template is at least as 4379 // specialized for all types and more specialized for some set of types and 4380 // the other template is not more specialized for any types or is not at 4381 // least as specialized for any types, then the given template is more 4382 // specialized than the other template. Otherwise, neither template is more 4383 // specialized than the other. 4384 Better1 = false; 4385 Better2 = false; 4386 for (unsigned I = 0, N = RefParamComparisons.size(); I != N; ++I) { 4387 // C++0x [temp.deduct.partial]p9: 4388 // If, for a given type, deduction succeeds in both directions (i.e., the 4389 // types are identical after the transformations above) and both P and A 4390 // were reference types (before being replaced with the type referred to 4391 // above): 4392 4393 // -- if the type from the argument template was an lvalue reference 4394 // and the type from the parameter template was not, the argument 4395 // type is considered to be more specialized than the other; 4396 // otherwise, 4397 if (!RefParamComparisons[I].ArgIsRvalueRef && 4398 RefParamComparisons[I].ParamIsRvalueRef) { 4399 Better2 = true; 4400 if (Better1) 4401 return 0; 4402 continue; 4403 } else if (!RefParamComparisons[I].ParamIsRvalueRef && 4404 RefParamComparisons[I].ArgIsRvalueRef) { 4405 Better1 = true; 4406 if (Better2) 4407 return 0; 4408 continue; 4409 } 4410 4411 // -- if the type from the argument template is more cv-qualified than 4412 // the type from the parameter template (as described above), the 4413 // argument type is considered to be more specialized than the 4414 // other; otherwise, 4415 switch (RefParamComparisons[I].Qualifiers) { 4416 case NeitherMoreQualified: 4417 break; 4418 4419 case ParamMoreQualified: 4420 Better1 = true; 4421 if (Better2) 4422 return 0; 4423 continue; 4424 4425 case ArgMoreQualified: 4426 Better2 = true; 4427 if (Better1) 4428 return 0; 4429 continue; 4430 } 4431 4432 // -- neither type is more specialized than the other. 4433 } 4434 4435 assert(!(Better1 && Better2) && "Should have broken out in the loop above"); 4436 if (Better1) 4437 return FT1; 4438 else if (Better2) 4439 return FT2; 4440 4441 // FIXME: This mimics what GCC implements, but doesn't match up with the 4442 // proposed resolution for core issue 692. This area needs to be sorted out, 4443 // but for now we attempt to maintain compatibility. 4444 bool Variadic1 = isVariadicFunctionTemplate(FT1); 4445 bool Variadic2 = isVariadicFunctionTemplate(FT2); 4446 if (Variadic1 != Variadic2) 4447 return Variadic1? FT2 : FT1; 4448 4449 return 0; 4450 } 4451 4452 /// \brief Determine if the two templates are equivalent. 4453 static bool isSameTemplate(TemplateDecl *T1, TemplateDecl *T2) { 4454 if (T1 == T2) 4455 return true; 4456 4457 if (!T1 || !T2) 4458 return false; 4459 4460 return T1->getCanonicalDecl() == T2->getCanonicalDecl(); 4461 } 4462 4463 /// \brief Retrieve the most specialized of the given function template 4464 /// specializations. 4465 /// 4466 /// \param SpecBegin the start iterator of the function template 4467 /// specializations that we will be comparing. 4468 /// 4469 /// \param SpecEnd the end iterator of the function template 4470 /// specializations, paired with \p SpecBegin. 4471 /// 4472 /// \param Loc the location where the ambiguity or no-specializations 4473 /// diagnostic should occur. 4474 /// 4475 /// \param NoneDiag partial diagnostic used to diagnose cases where there are 4476 /// no matching candidates. 4477 /// 4478 /// \param AmbigDiag partial diagnostic used to diagnose an ambiguity, if one 4479 /// occurs. 4480 /// 4481 /// \param CandidateDiag partial diagnostic used for each function template 4482 /// specialization that is a candidate in the ambiguous ordering. One parameter 4483 /// in this diagnostic should be unbound, which will correspond to the string 4484 /// describing the template arguments for the function template specialization. 4485 /// 4486 /// \returns the most specialized function template specialization, if 4487 /// found. Otherwise, returns SpecEnd. 4488 UnresolvedSetIterator Sema::getMostSpecialized( 4489 UnresolvedSetIterator SpecBegin, UnresolvedSetIterator SpecEnd, 4490 TemplateSpecCandidateSet &FailedCandidates, 4491 SourceLocation Loc, const PartialDiagnostic &NoneDiag, 4492 const PartialDiagnostic &AmbigDiag, const PartialDiagnostic &CandidateDiag, 4493 bool Complain, QualType TargetType) { 4494 if (SpecBegin == SpecEnd) { 4495 if (Complain) { 4496 Diag(Loc, NoneDiag); 4497 FailedCandidates.NoteCandidates(*this, Loc); 4498 } 4499 return SpecEnd; 4500 } 4501 4502 if (SpecBegin + 1 == SpecEnd) 4503 return SpecBegin; 4504 4505 // Find the function template that is better than all of the templates it 4506 // has been compared to. 4507 UnresolvedSetIterator Best = SpecBegin; 4508 FunctionTemplateDecl *BestTemplate 4509 = cast<FunctionDecl>(*Best)->getPrimaryTemplate(); 4510 assert(BestTemplate && "Not a function template specialization?"); 4511 for (UnresolvedSetIterator I = SpecBegin + 1; I != SpecEnd; ++I) { 4512 FunctionTemplateDecl *Challenger 4513 = cast<FunctionDecl>(*I)->getPrimaryTemplate(); 4514 assert(Challenger && "Not a function template specialization?"); 4515 if (isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger, 4516 Loc, TPOC_Other, 0, 0), 4517 Challenger)) { 4518 Best = I; 4519 BestTemplate = Challenger; 4520 } 4521 } 4522 4523 // Make sure that the "best" function template is more specialized than all 4524 // of the others. 4525 bool Ambiguous = false; 4526 for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) { 4527 FunctionTemplateDecl *Challenger 4528 = cast<FunctionDecl>(*I)->getPrimaryTemplate(); 4529 if (I != Best && 4530 !isSameTemplate(getMoreSpecializedTemplate(BestTemplate, Challenger, 4531 Loc, TPOC_Other, 0, 0), 4532 BestTemplate)) { 4533 Ambiguous = true; 4534 break; 4535 } 4536 } 4537 4538 if (!Ambiguous) { 4539 // We found an answer. Return it. 4540 return Best; 4541 } 4542 4543 // Diagnose the ambiguity. 4544 if (Complain) { 4545 Diag(Loc, AmbigDiag); 4546 4547 // FIXME: Can we order the candidates in some sane way? 4548 for (UnresolvedSetIterator I = SpecBegin; I != SpecEnd; ++I) { 4549 PartialDiagnostic PD = CandidateDiag; 4550 PD << getTemplateArgumentBindingsText( 4551 cast<FunctionDecl>(*I)->getPrimaryTemplate()->getTemplateParameters(), 4552 *cast<FunctionDecl>(*I)->getTemplateSpecializationArgs()); 4553 if (!TargetType.isNull()) 4554 HandleFunctionTypeMismatch(PD, cast<FunctionDecl>(*I)->getType(), 4555 TargetType); 4556 Diag((*I)->getLocation(), PD); 4557 } 4558 } 4559 4560 return SpecEnd; 4561 } 4562 4563 /// \brief Returns the more specialized class template partial specialization 4564 /// according to the rules of partial ordering of class template partial 4565 /// specializations (C++ [temp.class.order]). 4566 /// 4567 /// \param PS1 the first class template partial specialization 4568 /// 4569 /// \param PS2 the second class template partial specialization 4570 /// 4571 /// \returns the more specialized class template partial specialization. If 4572 /// neither partial specialization is more specialized, returns NULL. 4573 ClassTemplatePartialSpecializationDecl * 4574 Sema::getMoreSpecializedPartialSpecialization( 4575 ClassTemplatePartialSpecializationDecl *PS1, 4576 ClassTemplatePartialSpecializationDecl *PS2, 4577 SourceLocation Loc) { 4578 // C++ [temp.class.order]p1: 4579 // For two class template partial specializations, the first is at least as 4580 // specialized as the second if, given the following rewrite to two 4581 // function templates, the first function template is at least as 4582 // specialized as the second according to the ordering rules for function 4583 // templates (14.6.6.2): 4584 // - the first function template has the same template parameters as the 4585 // first partial specialization and has a single function parameter 4586 // whose type is a class template specialization with the template 4587 // arguments of the first partial specialization, and 4588 // - the second function template has the same template parameters as the 4589 // second partial specialization and has a single function parameter 4590 // whose type is a class template specialization with the template 4591 // arguments of the second partial specialization. 4592 // 4593 // Rather than synthesize function templates, we merely perform the 4594 // equivalent partial ordering by performing deduction directly on 4595 // the template arguments of the class template partial 4596 // specializations. This computation is slightly simpler than the 4597 // general problem of function template partial ordering, because 4598 // class template partial specializations are more constrained. We 4599 // know that every template parameter is deducible from the class 4600 // template partial specialization's template arguments, for 4601 // example. 4602 SmallVector<DeducedTemplateArgument, 4> Deduced; 4603 TemplateDeductionInfo Info(Loc); 4604 4605 QualType PT1 = PS1->getInjectedSpecializationType(); 4606 QualType PT2 = PS2->getInjectedSpecializationType(); 4607 4608 // Determine whether PS1 is at least as specialized as PS2 4609 Deduced.resize(PS2->getTemplateParameters()->size()); 4610 bool Better1 = !DeduceTemplateArgumentsByTypeMatch(*this, 4611 PS2->getTemplateParameters(), 4612 PT2, PT1, Info, Deduced, TDF_None, 4613 /*PartialOrdering=*/true, 4614 /*RefParamComparisons=*/0); 4615 if (Better1) { 4616 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),Deduced.end()); 4617 InstantiatingTemplate Inst(*this, Loc, PS2, DeducedArgs, Info); 4618 Better1 = !::FinishTemplateArgumentDeduction( 4619 *this, PS2, PS1->getTemplateArgs(), Deduced, Info); 4620 } 4621 4622 // Determine whether PS2 is at least as specialized as PS1 4623 Deduced.clear(); 4624 Deduced.resize(PS1->getTemplateParameters()->size()); 4625 bool Better2 = !DeduceTemplateArgumentsByTypeMatch( 4626 *this, PS1->getTemplateParameters(), PT1, PT2, Info, Deduced, TDF_None, 4627 /*PartialOrdering=*/true, 4628 /*RefParamComparisons=*/0); 4629 if (Better2) { 4630 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), 4631 Deduced.end()); 4632 InstantiatingTemplate Inst(*this, Loc, PS1, DeducedArgs, Info); 4633 Better2 = !::FinishTemplateArgumentDeduction( 4634 *this, PS1, PS2->getTemplateArgs(), Deduced, Info); 4635 } 4636 4637 if (Better1 == Better2) 4638 return 0; 4639 4640 return Better1 ? PS1 : PS2; 4641 } 4642 4643 /// TODO: Unify with ClassTemplatePartialSpecializationDecl version? 4644 /// May require unifying ClassTemplate(Partial)SpecializationDecl and 4645 /// VarTemplate(Partial)SpecializationDecl with a new data 4646 /// structure Template(Partial)SpecializationDecl, and 4647 /// using Template(Partial)SpecializationDecl as input type. 4648 VarTemplatePartialSpecializationDecl * 4649 Sema::getMoreSpecializedPartialSpecialization( 4650 VarTemplatePartialSpecializationDecl *PS1, 4651 VarTemplatePartialSpecializationDecl *PS2, SourceLocation Loc) { 4652 SmallVector<DeducedTemplateArgument, 4> Deduced; 4653 TemplateDeductionInfo Info(Loc); 4654 4655 assert(PS1->getSpecializedTemplate() == PS2->getSpecializedTemplate() && 4656 "the partial specializations being compared should specialize" 4657 " the same template."); 4658 TemplateName Name(PS1->getSpecializedTemplate()); 4659 TemplateName CanonTemplate = Context.getCanonicalTemplateName(Name); 4660 QualType PT1 = Context.getTemplateSpecializationType( 4661 CanonTemplate, PS1->getTemplateArgs().data(), 4662 PS1->getTemplateArgs().size()); 4663 QualType PT2 = Context.getTemplateSpecializationType( 4664 CanonTemplate, PS2->getTemplateArgs().data(), 4665 PS2->getTemplateArgs().size()); 4666 4667 // Determine whether PS1 is at least as specialized as PS2 4668 Deduced.resize(PS2->getTemplateParameters()->size()); 4669 bool Better1 = !DeduceTemplateArgumentsByTypeMatch( 4670 *this, PS2->getTemplateParameters(), PT2, PT1, Info, Deduced, TDF_None, 4671 /*PartialOrdering=*/true, 4672 /*RefParamComparisons=*/0); 4673 if (Better1) { 4674 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(), 4675 Deduced.end()); 4676 InstantiatingTemplate Inst(*this, Loc, PS2, DeducedArgs, Info); 4677 Better1 = !::FinishTemplateArgumentDeduction(*this, PS2, 4678 PS1->getTemplateArgs(), 4679 Deduced, Info); 4680 } 4681 4682 // Determine whether PS2 is at least as specialized as PS1 4683 Deduced.clear(); 4684 Deduced.resize(PS1->getTemplateParameters()->size()); 4685 bool Better2 = !DeduceTemplateArgumentsByTypeMatch(*this, 4686 PS1->getTemplateParameters(), 4687 PT1, PT2, Info, Deduced, TDF_None, 4688 /*PartialOrdering=*/true, 4689 /*RefParamComparisons=*/0); 4690 if (Better2) { 4691 SmallVector<TemplateArgument, 4> DeducedArgs(Deduced.begin(),Deduced.end()); 4692 InstantiatingTemplate Inst(*this, Loc, PS1, DeducedArgs, Info); 4693 Better2 = !::FinishTemplateArgumentDeduction(*this, PS1, 4694 PS2->getTemplateArgs(), 4695 Deduced, Info); 4696 } 4697 4698 if (Better1 == Better2) 4699 return 0; 4700 4701 return Better1? PS1 : PS2; 4702 } 4703 4704 static void 4705 MarkUsedTemplateParameters(ASTContext &Ctx, 4706 const TemplateArgument &TemplateArg, 4707 bool OnlyDeduced, 4708 unsigned Depth, 4709 llvm::SmallBitVector &Used); 4710 4711 /// \brief Mark the template parameters that are used by the given 4712 /// expression. 4713 static void 4714 MarkUsedTemplateParameters(ASTContext &Ctx, 4715 const Expr *E, 4716 bool OnlyDeduced, 4717 unsigned Depth, 4718 llvm::SmallBitVector &Used) { 4719 // We can deduce from a pack expansion. 4720 if (const PackExpansionExpr *Expansion = dyn_cast<PackExpansionExpr>(E)) 4721 E = Expansion->getPattern(); 4722 4723 // Skip through any implicit casts we added while type-checking, and any 4724 // substitutions performed by template alias expansion. 4725 while (1) { 4726 if (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) 4727 E = ICE->getSubExpr(); 4728 else if (const SubstNonTypeTemplateParmExpr *Subst = 4729 dyn_cast<SubstNonTypeTemplateParmExpr>(E)) 4730 E = Subst->getReplacement(); 4731 else 4732 break; 4733 } 4734 4735 // FIXME: if !OnlyDeduced, we have to walk the whole subexpression to 4736 // find other occurrences of template parameters. 4737 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E); 4738 if (!DRE) 4739 return; 4740 4741 const NonTypeTemplateParmDecl *NTTP 4742 = dyn_cast<NonTypeTemplateParmDecl>(DRE->getDecl()); 4743 if (!NTTP) 4744 return; 4745 4746 if (NTTP->getDepth() == Depth) 4747 Used[NTTP->getIndex()] = true; 4748 } 4749 4750 /// \brief Mark the template parameters that are used by the given 4751 /// nested name specifier. 4752 static void 4753 MarkUsedTemplateParameters(ASTContext &Ctx, 4754 NestedNameSpecifier *NNS, 4755 bool OnlyDeduced, 4756 unsigned Depth, 4757 llvm::SmallBitVector &Used) { 4758 if (!NNS) 4759 return; 4760 4761 MarkUsedTemplateParameters(Ctx, NNS->getPrefix(), OnlyDeduced, Depth, 4762 Used); 4763 MarkUsedTemplateParameters(Ctx, QualType(NNS->getAsType(), 0), 4764 OnlyDeduced, Depth, Used); 4765 } 4766 4767 /// \brief Mark the template parameters that are used by the given 4768 /// template name. 4769 static void 4770 MarkUsedTemplateParameters(ASTContext &Ctx, 4771 TemplateName Name, 4772 bool OnlyDeduced, 4773 unsigned Depth, 4774 llvm::SmallBitVector &Used) { 4775 if (TemplateDecl *Template = Name.getAsTemplateDecl()) { 4776 if (TemplateTemplateParmDecl *TTP 4777 = dyn_cast<TemplateTemplateParmDecl>(Template)) { 4778 if (TTP->getDepth() == Depth) 4779 Used[TTP->getIndex()] = true; 4780 } 4781 return; 4782 } 4783 4784 if (QualifiedTemplateName *QTN = Name.getAsQualifiedTemplateName()) 4785 MarkUsedTemplateParameters(Ctx, QTN->getQualifier(), OnlyDeduced, 4786 Depth, Used); 4787 if (DependentTemplateName *DTN = Name.getAsDependentTemplateName()) 4788 MarkUsedTemplateParameters(Ctx, DTN->getQualifier(), OnlyDeduced, 4789 Depth, Used); 4790 } 4791 4792 /// \brief Mark the template parameters that are used by the given 4793 /// type. 4794 static void 4795 MarkUsedTemplateParameters(ASTContext &Ctx, QualType T, 4796 bool OnlyDeduced, 4797 unsigned Depth, 4798 llvm::SmallBitVector &Used) { 4799 if (T.isNull()) 4800 return; 4801 4802 // Non-dependent types have nothing deducible 4803 if (!T->isDependentType()) 4804 return; 4805 4806 T = Ctx.getCanonicalType(T); 4807 switch (T->getTypeClass()) { 4808 case Type::Pointer: 4809 MarkUsedTemplateParameters(Ctx, 4810 cast<PointerType>(T)->getPointeeType(), 4811 OnlyDeduced, 4812 Depth, 4813 Used); 4814 break; 4815 4816 case Type::BlockPointer: 4817 MarkUsedTemplateParameters(Ctx, 4818 cast<BlockPointerType>(T)->getPointeeType(), 4819 OnlyDeduced, 4820 Depth, 4821 Used); 4822 break; 4823 4824 case Type::LValueReference: 4825 case Type::RValueReference: 4826 MarkUsedTemplateParameters(Ctx, 4827 cast<ReferenceType>(T)->getPointeeType(), 4828 OnlyDeduced, 4829 Depth, 4830 Used); 4831 break; 4832 4833 case Type::MemberPointer: { 4834 const MemberPointerType *MemPtr = cast<MemberPointerType>(T.getTypePtr()); 4835 MarkUsedTemplateParameters(Ctx, MemPtr->getPointeeType(), OnlyDeduced, 4836 Depth, Used); 4837 MarkUsedTemplateParameters(Ctx, QualType(MemPtr->getClass(), 0), 4838 OnlyDeduced, Depth, Used); 4839 break; 4840 } 4841 4842 case Type::DependentSizedArray: 4843 MarkUsedTemplateParameters(Ctx, 4844 cast<DependentSizedArrayType>(T)->getSizeExpr(), 4845 OnlyDeduced, Depth, Used); 4846 // Fall through to check the element type 4847 4848 case Type::ConstantArray: 4849 case Type::IncompleteArray: 4850 MarkUsedTemplateParameters(Ctx, 4851 cast<ArrayType>(T)->getElementType(), 4852 OnlyDeduced, Depth, Used); 4853 break; 4854 4855 case Type::Vector: 4856 case Type::ExtVector: 4857 MarkUsedTemplateParameters(Ctx, 4858 cast<VectorType>(T)->getElementType(), 4859 OnlyDeduced, Depth, Used); 4860 break; 4861 4862 case Type::DependentSizedExtVector: { 4863 const DependentSizedExtVectorType *VecType 4864 = cast<DependentSizedExtVectorType>(T); 4865 MarkUsedTemplateParameters(Ctx, VecType->getElementType(), OnlyDeduced, 4866 Depth, Used); 4867 MarkUsedTemplateParameters(Ctx, VecType->getSizeExpr(), OnlyDeduced, 4868 Depth, Used); 4869 break; 4870 } 4871 4872 case Type::FunctionProto: { 4873 const FunctionProtoType *Proto = cast<FunctionProtoType>(T); 4874 MarkUsedTemplateParameters(Ctx, Proto->getReturnType(), OnlyDeduced, Depth, 4875 Used); 4876 for (unsigned I = 0, N = Proto->getNumParams(); I != N; ++I) 4877 MarkUsedTemplateParameters(Ctx, Proto->getParamType(I), OnlyDeduced, 4878 Depth, Used); 4879 break; 4880 } 4881 4882 case Type::TemplateTypeParm: { 4883 const TemplateTypeParmType *TTP = cast<TemplateTypeParmType>(T); 4884 if (TTP->getDepth() == Depth) 4885 Used[TTP->getIndex()] = true; 4886 break; 4887 } 4888 4889 case Type::SubstTemplateTypeParmPack: { 4890 const SubstTemplateTypeParmPackType *Subst 4891 = cast<SubstTemplateTypeParmPackType>(T); 4892 MarkUsedTemplateParameters(Ctx, 4893 QualType(Subst->getReplacedParameter(), 0), 4894 OnlyDeduced, Depth, Used); 4895 MarkUsedTemplateParameters(Ctx, Subst->getArgumentPack(), 4896 OnlyDeduced, Depth, Used); 4897 break; 4898 } 4899 4900 case Type::InjectedClassName: 4901 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType(); 4902 // fall through 4903 4904 case Type::TemplateSpecialization: { 4905 const TemplateSpecializationType *Spec 4906 = cast<TemplateSpecializationType>(T); 4907 MarkUsedTemplateParameters(Ctx, Spec->getTemplateName(), OnlyDeduced, 4908 Depth, Used); 4909 4910 // C++0x [temp.deduct.type]p9: 4911 // If the template argument list of P contains a pack expansion that is not 4912 // the last template argument, the entire template argument list is a 4913 // non-deduced context. 4914 if (OnlyDeduced && 4915 hasPackExpansionBeforeEnd(Spec->getArgs(), Spec->getNumArgs())) 4916 break; 4917 4918 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I) 4919 MarkUsedTemplateParameters(Ctx, Spec->getArg(I), OnlyDeduced, Depth, 4920 Used); 4921 break; 4922 } 4923 4924 case Type::Complex: 4925 if (!OnlyDeduced) 4926 MarkUsedTemplateParameters(Ctx, 4927 cast<ComplexType>(T)->getElementType(), 4928 OnlyDeduced, Depth, Used); 4929 break; 4930 4931 case Type::Atomic: 4932 if (!OnlyDeduced) 4933 MarkUsedTemplateParameters(Ctx, 4934 cast<AtomicType>(T)->getValueType(), 4935 OnlyDeduced, Depth, Used); 4936 break; 4937 4938 case Type::DependentName: 4939 if (!OnlyDeduced) 4940 MarkUsedTemplateParameters(Ctx, 4941 cast<DependentNameType>(T)->getQualifier(), 4942 OnlyDeduced, Depth, Used); 4943 break; 4944 4945 case Type::DependentTemplateSpecialization: { 4946 const DependentTemplateSpecializationType *Spec 4947 = cast<DependentTemplateSpecializationType>(T); 4948 if (!OnlyDeduced) 4949 MarkUsedTemplateParameters(Ctx, Spec->getQualifier(), 4950 OnlyDeduced, Depth, Used); 4951 4952 // C++0x [temp.deduct.type]p9: 4953 // If the template argument list of P contains a pack expansion that is not 4954 // the last template argument, the entire template argument list is a 4955 // non-deduced context. 4956 if (OnlyDeduced && 4957 hasPackExpansionBeforeEnd(Spec->getArgs(), Spec->getNumArgs())) 4958 break; 4959 4960 for (unsigned I = 0, N = Spec->getNumArgs(); I != N; ++I) 4961 MarkUsedTemplateParameters(Ctx, Spec->getArg(I), OnlyDeduced, Depth, 4962 Used); 4963 break; 4964 } 4965 4966 case Type::TypeOf: 4967 if (!OnlyDeduced) 4968 MarkUsedTemplateParameters(Ctx, 4969 cast<TypeOfType>(T)->getUnderlyingType(), 4970 OnlyDeduced, Depth, Used); 4971 break; 4972 4973 case Type::TypeOfExpr: 4974 if (!OnlyDeduced) 4975 MarkUsedTemplateParameters(Ctx, 4976 cast<TypeOfExprType>(T)->getUnderlyingExpr(), 4977 OnlyDeduced, Depth, Used); 4978 break; 4979 4980 case Type::Decltype: 4981 if (!OnlyDeduced) 4982 MarkUsedTemplateParameters(Ctx, 4983 cast<DecltypeType>(T)->getUnderlyingExpr(), 4984 OnlyDeduced, Depth, Used); 4985 break; 4986 4987 case Type::UnaryTransform: 4988 if (!OnlyDeduced) 4989 MarkUsedTemplateParameters(Ctx, 4990 cast<UnaryTransformType>(T)->getUnderlyingType(), 4991 OnlyDeduced, Depth, Used); 4992 break; 4993 4994 case Type::PackExpansion: 4995 MarkUsedTemplateParameters(Ctx, 4996 cast<PackExpansionType>(T)->getPattern(), 4997 OnlyDeduced, Depth, Used); 4998 break; 4999 5000 case Type::Auto: 5001 MarkUsedTemplateParameters(Ctx, 5002 cast<AutoType>(T)->getDeducedType(), 5003 OnlyDeduced, Depth, Used); 5004 5005 // None of these types have any template parameters in them. 5006 case Type::Builtin: 5007 case Type::VariableArray: 5008 case Type::FunctionNoProto: 5009 case Type::Record: 5010 case Type::Enum: 5011 case Type::ObjCInterface: 5012 case Type::ObjCObject: 5013 case Type::ObjCObjectPointer: 5014 case Type::UnresolvedUsing: 5015 #define TYPE(Class, Base) 5016 #define ABSTRACT_TYPE(Class, Base) 5017 #define DEPENDENT_TYPE(Class, Base) 5018 #define NON_CANONICAL_TYPE(Class, Base) case Type::Class: 5019 #include "clang/AST/TypeNodes.def" 5020 break; 5021 } 5022 } 5023 5024 /// \brief Mark the template parameters that are used by this 5025 /// template argument. 5026 static void 5027 MarkUsedTemplateParameters(ASTContext &Ctx, 5028 const TemplateArgument &TemplateArg, 5029 bool OnlyDeduced, 5030 unsigned Depth, 5031 llvm::SmallBitVector &Used) { 5032 switch (TemplateArg.getKind()) { 5033 case TemplateArgument::Null: 5034 case TemplateArgument::Integral: 5035 case TemplateArgument::Declaration: 5036 break; 5037 5038 case TemplateArgument::NullPtr: 5039 MarkUsedTemplateParameters(Ctx, TemplateArg.getNullPtrType(), OnlyDeduced, 5040 Depth, Used); 5041 break; 5042 5043 case TemplateArgument::Type: 5044 MarkUsedTemplateParameters(Ctx, TemplateArg.getAsType(), OnlyDeduced, 5045 Depth, Used); 5046 break; 5047 5048 case TemplateArgument::Template: 5049 case TemplateArgument::TemplateExpansion: 5050 MarkUsedTemplateParameters(Ctx, 5051 TemplateArg.getAsTemplateOrTemplatePattern(), 5052 OnlyDeduced, Depth, Used); 5053 break; 5054 5055 case TemplateArgument::Expression: 5056 MarkUsedTemplateParameters(Ctx, TemplateArg.getAsExpr(), OnlyDeduced, 5057 Depth, Used); 5058 break; 5059 5060 case TemplateArgument::Pack: 5061 for (TemplateArgument::pack_iterator P = TemplateArg.pack_begin(), 5062 PEnd = TemplateArg.pack_end(); 5063 P != PEnd; ++P) 5064 MarkUsedTemplateParameters(Ctx, *P, OnlyDeduced, Depth, Used); 5065 break; 5066 } 5067 } 5068 5069 /// \brief Mark which template parameters can be deduced from a given 5070 /// template argument list. 5071 /// 5072 /// \param TemplateArgs the template argument list from which template 5073 /// parameters will be deduced. 5074 /// 5075 /// \param Used a bit vector whose elements will be set to \c true 5076 /// to indicate when the corresponding template parameter will be 5077 /// deduced. 5078 void 5079 Sema::MarkUsedTemplateParameters(const TemplateArgumentList &TemplateArgs, 5080 bool OnlyDeduced, unsigned Depth, 5081 llvm::SmallBitVector &Used) { 5082 // C++0x [temp.deduct.type]p9: 5083 // If the template argument list of P contains a pack expansion that is not 5084 // the last template argument, the entire template argument list is a 5085 // non-deduced context. 5086 if (OnlyDeduced && 5087 hasPackExpansionBeforeEnd(TemplateArgs.data(), TemplateArgs.size())) 5088 return; 5089 5090 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) 5091 ::MarkUsedTemplateParameters(Context, TemplateArgs[I], OnlyDeduced, 5092 Depth, Used); 5093 } 5094 5095 /// \brief Marks all of the template parameters that will be deduced by a 5096 /// call to the given function template. 5097 void 5098 Sema::MarkDeducedTemplateParameters(ASTContext &Ctx, 5099 const FunctionTemplateDecl *FunctionTemplate, 5100 llvm::SmallBitVector &Deduced) { 5101 TemplateParameterList *TemplateParams 5102 = FunctionTemplate->getTemplateParameters(); 5103 Deduced.clear(); 5104 Deduced.resize(TemplateParams->size()); 5105 5106 FunctionDecl *Function = FunctionTemplate->getTemplatedDecl(); 5107 for (unsigned I = 0, N = Function->getNumParams(); I != N; ++I) 5108 ::MarkUsedTemplateParameters(Ctx, Function->getParamDecl(I)->getType(), 5109 true, TemplateParams->getDepth(), Deduced); 5110 } 5111 5112 bool hasDeducibleTemplateParameters(Sema &S, 5113 FunctionTemplateDecl *FunctionTemplate, 5114 QualType T) { 5115 if (!T->isDependentType()) 5116 return false; 5117 5118 TemplateParameterList *TemplateParams 5119 = FunctionTemplate->getTemplateParameters(); 5120 llvm::SmallBitVector Deduced(TemplateParams->size()); 5121 ::MarkUsedTemplateParameters(S.Context, T, true, TemplateParams->getDepth(), 5122 Deduced); 5123 5124 return Deduced.any(); 5125 } 5126