Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 1 | //===--- SemaTemplateInstantiateDecl.cpp - C++ Template Decl Instantiation ===/ |
| 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 instantiation for declarations. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===/ |
| 12 | #include "Sema.h" |
Douglas Gregor | aba43bb | 2009-05-26 20:50:29 +0000 | [diff] [blame] | 13 | #include "clang/AST/ASTConsumer.h" |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 14 | #include "clang/AST/ASTContext.h" |
| 15 | #include "clang/AST/DeclTemplate.h" |
| 16 | #include "clang/AST/DeclVisitor.h" |
| 17 | #include "clang/AST/Expr.h" |
| 18 | #include "llvm/Support/Compiler.h" |
| 19 | |
| 20 | using namespace clang; |
| 21 | |
| 22 | namespace { |
| 23 | class VISIBILITY_HIDDEN TemplateDeclInstantiator |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 24 | : public DeclVisitor<TemplateDeclInstantiator, Decl *> { |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 25 | Sema &SemaRef; |
| 26 | DeclContext *Owner; |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 27 | const TemplateArgumentList &TemplateArgs; |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 28 | |
| 29 | public: |
| 30 | typedef Sema::OwningExprResult OwningExprResult; |
| 31 | |
| 32 | TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner, |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 33 | const TemplateArgumentList &TemplateArgs) |
| 34 | : SemaRef(SemaRef), Owner(Owner), TemplateArgs(TemplateArgs) { } |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 35 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 36 | // FIXME: Once we get closer to completion, replace these manually-written |
| 37 | // declarations with automatically-generated ones from |
| 38 | // clang/AST/DeclNodes.def. |
Douglas Gregor | 4f722be | 2009-03-25 15:45:12 +0000 | [diff] [blame] | 39 | Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D); |
| 40 | Decl *VisitNamespaceDecl(NamespaceDecl *D); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 41 | Decl *VisitTypedefDecl(TypedefDecl *D); |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 42 | Decl *VisitVarDecl(VarDecl *D); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 43 | Decl *VisitFieldDecl(FieldDecl *D); |
| 44 | Decl *VisitStaticAssertDecl(StaticAssertDecl *D); |
| 45 | Decl *VisitEnumDecl(EnumDecl *D); |
Douglas Gregor | 6477b69 | 2009-03-25 15:04:13 +0000 | [diff] [blame] | 46 | Decl *VisitEnumConstantDecl(EnumConstantDecl *D); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 47 | Decl *VisitFunctionDecl(FunctionDecl *D); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 48 | Decl *VisitCXXRecordDecl(CXXRecordDecl *D); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 49 | Decl *VisitCXXMethodDecl(CXXMethodDecl *D); |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 50 | Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D); |
Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 51 | Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D); |
Douglas Gregor | bb969ed | 2009-03-25 00:34:44 +0000 | [diff] [blame] | 52 | Decl *VisitCXXConversionDecl(CXXConversionDecl *D); |
Douglas Gregor | 6477b69 | 2009-03-25 15:04:13 +0000 | [diff] [blame] | 53 | ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 54 | Decl *VisitOriginalParmVarDecl(OriginalParmVarDecl *D); |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 55 | |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 56 | // Base case. FIXME: Remove once we can instantiate everything. |
| 57 | Decl *VisitDecl(Decl *) { |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 58 | assert(false && "Template instantiation of unknown declaration kind!"); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 59 | return 0; |
| 60 | } |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 61 | |
| 62 | // Helper functions for instantiating methods. |
| 63 | QualType InstantiateFunctionType(FunctionDecl *D, |
| 64 | llvm::SmallVectorImpl<ParmVarDecl *> &Params); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 65 | bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl); |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 66 | bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 67 | }; |
| 68 | } |
| 69 | |
Douglas Gregor | 4f722be | 2009-03-25 15:45:12 +0000 | [diff] [blame] | 70 | Decl * |
| 71 | TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) { |
| 72 | assert(false && "Translation units cannot be instantiated"); |
| 73 | return D; |
| 74 | } |
| 75 | |
| 76 | Decl * |
| 77 | TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) { |
| 78 | assert(false && "Namespaces cannot be instantiated"); |
| 79 | return D; |
| 80 | } |
| 81 | |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 82 | Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) { |
| 83 | bool Invalid = false; |
| 84 | QualType T = D->getUnderlyingType(); |
| 85 | if (T->isDependentType()) { |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 86 | T = SemaRef.InstantiateType(T, TemplateArgs, |
| 87 | D->getLocation(), D->getDeclName()); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 88 | if (T.isNull()) { |
| 89 | Invalid = true; |
| 90 | T = SemaRef.Context.IntTy; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | // Create the new typedef |
| 95 | TypedefDecl *Typedef |
| 96 | = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(), |
| 97 | D->getIdentifier(), T); |
| 98 | if (Invalid) |
| 99 | Typedef->setInvalidDecl(); |
| 100 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 101 | Owner->addDecl(Typedef); |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 102 | |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 103 | return Typedef; |
| 104 | } |
| 105 | |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 106 | Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) { |
| 107 | // Instantiate the type of the declaration |
| 108 | QualType T = SemaRef.InstantiateType(D->getType(), TemplateArgs, |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 109 | D->getTypeSpecStartLoc(), |
| 110 | D->getDeclName()); |
| 111 | if (T.isNull()) |
| 112 | return 0; |
| 113 | |
Douglas Gregor | b9f1b8d | 2009-05-15 00:01:03 +0000 | [diff] [blame] | 114 | // Build the instantiated declaration |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 115 | VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner, |
| 116 | D->getLocation(), D->getIdentifier(), |
| 117 | T, D->getStorageClass(), |
| 118 | D->getTypeSpecStartLoc()); |
| 119 | Var->setThreadSpecified(D->isThreadSpecified()); |
| 120 | Var->setCXXDirectInitializer(D->hasCXXDirectInitializer()); |
| 121 | Var->setDeclaredInCondition(D->isDeclaredInCondition()); |
| 122 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 123 | // FIXME: In theory, we could have a previous declaration for variables that |
| 124 | // are not static data members. |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 125 | bool Redeclaration = false; |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 126 | SemaRef.CheckVariableDeclaration(Var, 0, Redeclaration); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 127 | Owner->addDecl(Var); |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 128 | |
| 129 | if (D->getInit()) { |
| 130 | OwningExprResult Init |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 131 | = SemaRef.InstantiateExpr(D->getInit(), TemplateArgs); |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 132 | if (Init.isInvalid()) |
| 133 | Var->setInvalidDecl(); |
| 134 | else |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 135 | SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var), move(Init), |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 136 | D->hasCXXDirectInitializer()); |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 137 | } else { |
| 138 | // FIXME: Call ActOnUninitializedDecl? (Not always) |
Douglas Gregor | 3d7a12a | 2009-03-25 23:32:15 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | return Var; |
| 142 | } |
| 143 | |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 144 | Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) { |
| 145 | bool Invalid = false; |
| 146 | QualType T = D->getType(); |
| 147 | if (T->isDependentType()) { |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 148 | T = SemaRef.InstantiateType(T, TemplateArgs, |
| 149 | D->getLocation(), D->getDeclName()); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 150 | if (!T.isNull() && T->isFunctionType()) { |
| 151 | // C++ [temp.arg.type]p3: |
| 152 | // If a declaration acquires a function type through a type |
| 153 | // dependent on a template-parameter and this causes a |
| 154 | // declaration that does not use the syntactic form of a |
| 155 | // function declarator to have function type, the program is |
| 156 | // ill-formed. |
| 157 | SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function) |
| 158 | << T; |
| 159 | T = QualType(); |
| 160 | Invalid = true; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | Expr *BitWidth = D->getBitWidth(); |
| 165 | if (Invalid) |
| 166 | BitWidth = 0; |
| 167 | else if (BitWidth) { |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 168 | // The bit-width expression is not potentially evaluated. |
| 169 | EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated); |
| 170 | |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 171 | OwningExprResult InstantiatedBitWidth |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 172 | = SemaRef.InstantiateExpr(BitWidth, TemplateArgs); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 173 | if (InstantiatedBitWidth.isInvalid()) { |
| 174 | Invalid = true; |
| 175 | BitWidth = 0; |
| 176 | } else |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 177 | BitWidth = InstantiatedBitWidth.takeAs<Expr>(); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(), T, |
| 181 | cast<RecordDecl>(Owner), |
| 182 | D->getLocation(), |
| 183 | D->isMutable(), |
| 184 | BitWidth, |
Steve Naroff | ea218b8 | 2009-07-14 14:58:18 +0000 | [diff] [blame] | 185 | D->getTypeSpecStartLoc(), |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 186 | D->getAccess(), |
| 187 | 0); |
| 188 | if (Field) { |
| 189 | if (Invalid) |
| 190 | Field->setInvalidDecl(); |
| 191 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 192 | Owner->addDecl(Field); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | return Field; |
| 196 | } |
| 197 | |
| 198 | Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) { |
| 199 | Expr *AssertExpr = D->getAssertExpr(); |
| 200 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 201 | // The expression in a static assertion is not potentially evaluated. |
| 202 | EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated); |
| 203 | |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 204 | OwningExprResult InstantiatedAssertExpr |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 205 | = SemaRef.InstantiateExpr(AssertExpr, TemplateArgs); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 206 | if (InstantiatedAssertExpr.isInvalid()) |
| 207 | return 0; |
| 208 | |
| 209 | OwningExprResult Message = SemaRef.Clone(D->getMessage()); |
| 210 | Decl *StaticAssert |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 211 | = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(), |
| 212 | move(InstantiatedAssertExpr), |
| 213 | move(Message)).getAs<Decl>(); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 214 | return StaticAssert; |
| 215 | } |
| 216 | |
| 217 | Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) { |
| 218 | EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, |
| 219 | D->getLocation(), D->getIdentifier(), |
| 220 | /*PrevDecl=*/0); |
Douglas Gregor | 8dbc3c6 | 2009-05-27 17:20:35 +0000 | [diff] [blame] | 221 | Enum->setInstantiationOfMemberEnum(D); |
Douglas Gregor | 06c0fec | 2009-03-25 22:00:53 +0000 | [diff] [blame] | 222 | Enum->setAccess(D->getAccess()); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 223 | Owner->addDecl(Enum); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 224 | Enum->startDefinition(); |
| 225 | |
Douglas Gregor | 0ca20ac | 2009-05-29 18:27:38 +0000 | [diff] [blame] | 226 | llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators; |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 227 | |
| 228 | EnumConstantDecl *LastEnumConst = 0; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 229 | for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(), |
| 230 | ECEnd = D->enumerator_end(); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 231 | EC != ECEnd; ++EC) { |
| 232 | // The specified value for the enumerator. |
| 233 | OwningExprResult Value = SemaRef.Owned((Expr *)0); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 234 | if (Expr *UninstValue = EC->getInitExpr()) { |
| 235 | // The enumerator's value expression is not potentially evaluated. |
| 236 | EnterExpressionEvaluationContext Unevaluated(SemaRef, |
| 237 | Action::Unevaluated); |
| 238 | |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 239 | Value = SemaRef.InstantiateExpr(UninstValue, TemplateArgs); |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 240 | } |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 241 | |
| 242 | // Drop the initial value and continue. |
| 243 | bool isInvalid = false; |
| 244 | if (Value.isInvalid()) { |
| 245 | Value = SemaRef.Owned((Expr *)0); |
| 246 | isInvalid = true; |
| 247 | } |
| 248 | |
| 249 | EnumConstantDecl *EnumConst |
| 250 | = SemaRef.CheckEnumConstant(Enum, LastEnumConst, |
| 251 | EC->getLocation(), EC->getIdentifier(), |
| 252 | move(Value)); |
| 253 | |
| 254 | if (isInvalid) { |
| 255 | if (EnumConst) |
| 256 | EnumConst->setInvalidDecl(); |
| 257 | Enum->setInvalidDecl(); |
| 258 | } |
| 259 | |
| 260 | if (EnumConst) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 261 | Enum->addDecl(EnumConst); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 262 | Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst)); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 263 | LastEnumConst = EnumConst; |
| 264 | } |
| 265 | } |
| 266 | |
Mike Stump | c6e35aa | 2009-05-16 07:06:02 +0000 | [diff] [blame] | 267 | // FIXME: Fixup LBraceLoc and RBraceLoc |
| 268 | SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(), |
| 269 | Sema::DeclPtrTy::make(Enum), |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 270 | &Enumerators[0], Enumerators.size()); |
| 271 | |
| 272 | return Enum; |
| 273 | } |
| 274 | |
Douglas Gregor | 6477b69 | 2009-03-25 15:04:13 +0000 | [diff] [blame] | 275 | Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) { |
| 276 | assert(false && "EnumConstantDecls can only occur within EnumDecls."); |
| 277 | return 0; |
| 278 | } |
| 279 | |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 280 | Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) { |
| 281 | CXXRecordDecl *PrevDecl = 0; |
| 282 | if (D->isInjectedClassName()) |
| 283 | PrevDecl = cast<CXXRecordDecl>(Owner); |
| 284 | |
| 285 | CXXRecordDecl *Record |
| 286 | = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner, |
| 287 | D->getLocation(), D->getIdentifier(), PrevDecl); |
| 288 | Record->setImplicit(D->isImplicit()); |
| 289 | Record->setAccess(D->getAccess()); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 290 | if (!D->isInjectedClassName()) |
| 291 | Record->setInstantiationOfMemberClass(D); |
| 292 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 293 | Owner->addDecl(Record); |
Douglas Gregor | d475b8d | 2009-03-25 21:17:03 +0000 | [diff] [blame] | 294 | return Record; |
| 295 | } |
| 296 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 297 | Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) { |
Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 298 | // Check whether there is already a function template specialization for |
| 299 | // this declaration. |
| 300 | FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate(); |
| 301 | void *InsertPos = 0; |
| 302 | if (FunctionTemplate) { |
| 303 | llvm::FoldingSetNodeID ID; |
| 304 | FunctionTemplateSpecializationInfo::Profile(ID, |
| 305 | TemplateArgs.getFlatArgumentList(), |
| 306 | TemplateArgs.flat_size()); |
| 307 | |
| 308 | FunctionTemplateSpecializationInfo *Info |
| 309 | = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID, |
| 310 | InsertPos); |
| 311 | |
| 312 | // If we already have a function template specialization, return it. |
| 313 | if (Info) |
| 314 | return Info->Function; |
| 315 | } |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 316 | |
| 317 | Sema::LocalInstantiationScope Scope(SemaRef); |
| 318 | |
| 319 | llvm::SmallVector<ParmVarDecl *, 4> Params; |
| 320 | QualType T = InstantiateFunctionType(D, Params); |
| 321 | if (T.isNull()) |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 322 | return 0; |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 323 | |
| 324 | // Build the instantiated method declaration. |
| 325 | FunctionDecl *Function |
| 326 | = FunctionDecl::Create(SemaRef.Context, Owner, D->getLocation(), |
| 327 | D->getDeclName(), T, D->getStorageClass(), |
| 328 | D->isInline(), D->hasWrittenPrototype(), |
| 329 | D->getTypeSpecStartLoc()); |
| 330 | |
| 331 | // FIXME: friend functions |
| 332 | |
| 333 | // Attach the parameters |
| 334 | for (unsigned P = 0; P < Params.size(); ++P) |
| 335 | Params[P]->setOwningFunction(Function); |
| 336 | Function->setParams(SemaRef.Context, Params.data(), Params.size()); |
| 337 | |
| 338 | if (InitFunctionInstantiation(Function, D)) |
| 339 | Function->setInvalidDecl(); |
| 340 | |
| 341 | bool Redeclaration = false; |
| 342 | bool OverloadableAttrRequired = false; |
| 343 | NamedDecl *PrevDecl = 0; |
| 344 | SemaRef.CheckFunctionDeclaration(Function, PrevDecl, Redeclaration, |
| 345 | /*FIXME:*/OverloadableAttrRequired); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 346 | |
Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 347 | if (FunctionTemplate) { |
| 348 | // Record this function template specialization. |
| 349 | Function->setFunctionTemplateSpecialization(SemaRef.Context, |
| 350 | FunctionTemplate, |
| 351 | &TemplateArgs, |
| 352 | InsertPos); |
| 353 | } |
| 354 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 355 | return Function; |
| 356 | } |
| 357 | |
| 358 | Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) { |
| 359 | // FIXME: Look for existing, explicit specializations. |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 360 | Sema::LocalInstantiationScope Scope(SemaRef); |
| 361 | |
Douglas Gregor | 0ca20ac | 2009-05-29 18:27:38 +0000 | [diff] [blame] | 362 | llvm::SmallVector<ParmVarDecl *, 4> Params; |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 363 | QualType T = InstantiateFunctionType(D, Params); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 364 | if (T.isNull()) |
| 365 | return 0; |
| 366 | |
| 367 | // Build the instantiated method declaration. |
| 368 | CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner); |
| 369 | CXXMethodDecl *Method |
| 370 | = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(), |
| 371 | D->getDeclName(), T, D->isStatic(), |
| 372 | D->isInline()); |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 373 | Method->setInstantiationOfMemberFunction(D); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 374 | |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 375 | // Attach the parameters |
| 376 | for (unsigned P = 0; P < Params.size(); ++P) |
| 377 | Params[P]->setOwningFunction(Method); |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 378 | Method->setParams(SemaRef.Context, Params.data(), Params.size()); |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 379 | |
| 380 | if (InitMethodInstantiation(Method, D)) |
| 381 | Method->setInvalidDecl(); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 382 | |
| 383 | NamedDecl *PrevDecl |
| 384 | = SemaRef.LookupQualifiedName(Owner, Method->getDeclName(), |
| 385 | Sema::LookupOrdinaryName, true); |
| 386 | // In C++, the previous declaration we find might be a tag type |
| 387 | // (class or enum). In this case, the new declaration will hide the |
| 388 | // tag type. Note that this does does not apply if we're declaring a |
| 389 | // typedef (C++ [dcl.typedef]p4). |
| 390 | if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag) |
| 391 | PrevDecl = 0; |
| 392 | bool Redeclaration = false; |
| 393 | bool OverloadableAttrRequired = false; |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 394 | SemaRef.CheckFunctionDeclaration(Method, PrevDecl, Redeclaration, |
| 395 | /*FIXME:*/OverloadableAttrRequired); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 396 | |
| 397 | if (!Method->isInvalidDecl() || !PrevDecl) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 398 | Owner->addDecl(Method); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 399 | return Method; |
| 400 | } |
| 401 | |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 402 | Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) { |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 403 | // FIXME: Look for existing, explicit specializations. |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 404 | Sema::LocalInstantiationScope Scope(SemaRef); |
| 405 | |
Douglas Gregor | 0ca20ac | 2009-05-29 18:27:38 +0000 | [diff] [blame] | 406 | llvm::SmallVector<ParmVarDecl *, 4> Params; |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 407 | QualType T = InstantiateFunctionType(D, Params); |
| 408 | if (T.isNull()) |
| 409 | return 0; |
| 410 | |
| 411 | // Build the instantiated method declaration. |
| 412 | CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner); |
| 413 | QualType ClassTy = SemaRef.Context.getTypeDeclType(Record); |
| 414 | DeclarationName Name |
Douglas Gregor | 49f25ec | 2009-05-15 21:18:27 +0000 | [diff] [blame] | 415 | = SemaRef.Context.DeclarationNames.getCXXConstructorName( |
| 416 | SemaRef.Context.getCanonicalType(ClassTy)); |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 417 | CXXConstructorDecl *Constructor |
| 418 | = CXXConstructorDecl::Create(SemaRef.Context, Record, D->getLocation(), |
| 419 | Name, T, D->isExplicit(), D->isInline(), |
| 420 | false); |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 421 | Constructor->setInstantiationOfMemberFunction(D); |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 422 | |
| 423 | // Attach the parameters |
| 424 | for (unsigned P = 0; P < Params.size(); ++P) |
| 425 | Params[P]->setOwningFunction(Constructor); |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 426 | Constructor->setParams(SemaRef.Context, Params.data(), Params.size()); |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 427 | |
| 428 | if (InitMethodInstantiation(Constructor, D)) |
| 429 | Constructor->setInvalidDecl(); |
| 430 | |
| 431 | NamedDecl *PrevDecl |
| 432 | = SemaRef.LookupQualifiedName(Owner, Name, Sema::LookupOrdinaryName, true); |
| 433 | |
| 434 | // In C++, the previous declaration we find might be a tag type |
| 435 | // (class or enum). In this case, the new declaration will hide the |
| 436 | // tag type. Note that this does does not apply if we're declaring a |
| 437 | // typedef (C++ [dcl.typedef]p4). |
| 438 | if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag) |
| 439 | PrevDecl = 0; |
| 440 | bool Redeclaration = false; |
| 441 | bool OverloadableAttrRequired = false; |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 442 | SemaRef.CheckFunctionDeclaration(Constructor, PrevDecl, Redeclaration, |
| 443 | /*FIXME:*/OverloadableAttrRequired); |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 444 | |
Douglas Gregor | 49f25ec | 2009-05-15 21:18:27 +0000 | [diff] [blame] | 445 | Record->addedConstructor(SemaRef.Context, Constructor); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 446 | Owner->addDecl(Constructor); |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 447 | return Constructor; |
| 448 | } |
| 449 | |
Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 450 | Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) { |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 451 | // FIXME: Look for existing, explicit specializations. |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 452 | Sema::LocalInstantiationScope Scope(SemaRef); |
| 453 | |
Douglas Gregor | 0ca20ac | 2009-05-29 18:27:38 +0000 | [diff] [blame] | 454 | llvm::SmallVector<ParmVarDecl *, 4> Params; |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 455 | QualType T = InstantiateFunctionType(D, Params); |
Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 456 | if (T.isNull()) |
| 457 | return 0; |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 458 | assert(Params.size() == 0 && "Destructor with parameters?"); |
| 459 | |
Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 460 | // Build the instantiated destructor declaration. |
| 461 | CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner); |
Douglas Gregor | 49f25ec | 2009-05-15 21:18:27 +0000 | [diff] [blame] | 462 | QualType ClassTy = |
| 463 | SemaRef.Context.getCanonicalType(SemaRef.Context.getTypeDeclType(Record)); |
Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 464 | CXXDestructorDecl *Destructor |
| 465 | = CXXDestructorDecl::Create(SemaRef.Context, Record, |
| 466 | D->getLocation(), |
| 467 | SemaRef.Context.DeclarationNames.getCXXDestructorName(ClassTy), |
| 468 | T, D->isInline(), false); |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 469 | Destructor->setInstantiationOfMemberFunction(D); |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 470 | if (InitMethodInstantiation(Destructor, D)) |
| 471 | Destructor->setInvalidDecl(); |
Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 472 | |
| 473 | bool Redeclaration = false; |
| 474 | bool OverloadableAttrRequired = false; |
| 475 | NamedDecl *PrevDecl = 0; |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 476 | SemaRef.CheckFunctionDeclaration(Destructor, PrevDecl, Redeclaration, |
| 477 | /*FIXME:*/OverloadableAttrRequired); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 478 | Owner->addDecl(Destructor); |
Douglas Gregor | 03b2b07 | 2009-03-24 00:15:49 +0000 | [diff] [blame] | 479 | return Destructor; |
| 480 | } |
| 481 | |
Douglas Gregor | bb969ed | 2009-03-25 00:34:44 +0000 | [diff] [blame] | 482 | Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) { |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 483 | // FIXME: Look for existing, explicit specializations. |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 484 | Sema::LocalInstantiationScope Scope(SemaRef); |
| 485 | |
Douglas Gregor | 0ca20ac | 2009-05-29 18:27:38 +0000 | [diff] [blame] | 486 | llvm::SmallVector<ParmVarDecl *, 4> Params; |
Douglas Gregor | bb969ed | 2009-03-25 00:34:44 +0000 | [diff] [blame] | 487 | QualType T = InstantiateFunctionType(D, Params); |
| 488 | if (T.isNull()) |
| 489 | return 0; |
| 490 | assert(Params.size() == 0 && "Destructor with parameters?"); |
| 491 | |
| 492 | // Build the instantiated conversion declaration. |
| 493 | CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner); |
| 494 | QualType ClassTy = SemaRef.Context.getTypeDeclType(Record); |
| 495 | QualType ConvTy |
| 496 | = SemaRef.Context.getCanonicalType(T->getAsFunctionType()->getResultType()); |
| 497 | CXXConversionDecl *Conversion |
| 498 | = CXXConversionDecl::Create(SemaRef.Context, Record, |
| 499 | D->getLocation(), |
| 500 | SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(ConvTy), |
| 501 | T, D->isInline(), D->isExplicit()); |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 502 | Conversion->setInstantiationOfMemberFunction(D); |
Douglas Gregor | bb969ed | 2009-03-25 00:34:44 +0000 | [diff] [blame] | 503 | if (InitMethodInstantiation(Conversion, D)) |
| 504 | Conversion->setInvalidDecl(); |
| 505 | |
| 506 | bool Redeclaration = false; |
| 507 | bool OverloadableAttrRequired = false; |
| 508 | NamedDecl *PrevDecl = 0; |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 509 | SemaRef.CheckFunctionDeclaration(Conversion, PrevDecl, Redeclaration, |
| 510 | /*FIXME:*/OverloadableAttrRequired); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 511 | Owner->addDecl(Conversion); |
Douglas Gregor | bb969ed | 2009-03-25 00:34:44 +0000 | [diff] [blame] | 512 | return Conversion; |
| 513 | } |
| 514 | |
Douglas Gregor | 6477b69 | 2009-03-25 15:04:13 +0000 | [diff] [blame] | 515 | ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) { |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 516 | QualType OrigT = SemaRef.InstantiateType(D->getOriginalType(), TemplateArgs, |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 517 | D->getLocation(), D->getDeclName()); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 518 | if (OrigT.isNull()) |
| 519 | return 0; |
| 520 | |
| 521 | QualType T = SemaRef.adjustParameterType(OrigT); |
| 522 | |
| 523 | if (D->getDefaultArg()) { |
| 524 | // FIXME: Leave a marker for "uninstantiated" default |
| 525 | // arguments. They only get instantiated on demand at the call |
| 526 | // site. |
| 527 | unsigned DiagID = SemaRef.Diags.getCustomDiagID(Diagnostic::Warning, |
| 528 | "sorry, dropping default argument during template instantiation"); |
| 529 | SemaRef.Diag(D->getDefaultArg()->getSourceRange().getBegin(), DiagID) |
| 530 | << D->getDefaultArg()->getSourceRange(); |
| 531 | } |
| 532 | |
| 533 | // Allocate the parameter |
| 534 | ParmVarDecl *Param = 0; |
| 535 | if (T == OrigT) |
| 536 | Param = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(), |
| 537 | D->getIdentifier(), T, D->getStorageClass(), |
| 538 | 0); |
| 539 | else |
| 540 | Param = OriginalParmVarDecl::Create(SemaRef.Context, Owner, |
| 541 | D->getLocation(), D->getIdentifier(), |
| 542 | T, OrigT, D->getStorageClass(), 0); |
| 543 | |
| 544 | // Note: we don't try to instantiate function parameters until after |
| 545 | // we've instantiated the function's type. Therefore, we don't have |
| 546 | // to check for 'void' parameter types here. |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 547 | SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param); |
Douglas Gregor | 2dc0e64 | 2009-03-23 23:06:20 +0000 | [diff] [blame] | 548 | return Param; |
| 549 | } |
| 550 | |
| 551 | Decl * |
| 552 | TemplateDeclInstantiator::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) { |
| 553 | // Since parameter types can decay either before or after |
| 554 | // instantiation, we simply treat OriginalParmVarDecls as |
| 555 | // ParmVarDecls the same way, and create one or the other depending |
| 556 | // on what happens after template instantiation. |
| 557 | return VisitParmVarDecl(D); |
| 558 | } |
| 559 | |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 560 | Decl *Sema::InstantiateDecl(Decl *D, DeclContext *Owner, |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 561 | const TemplateArgumentList &TemplateArgs) { |
| 562 | TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs); |
Douglas Gregor | 8dbc269 | 2009-03-17 21:15:40 +0000 | [diff] [blame] | 563 | return Instantiator.Visit(D); |
| 564 | } |
| 565 | |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 566 | /// \brief Instantiates the type of the given function, including |
| 567 | /// instantiating all of the function parameters. |
| 568 | /// |
| 569 | /// \param D The function that we will be instantiated |
| 570 | /// |
| 571 | /// \param Params the instantiated parameter declarations |
| 572 | |
| 573 | /// \returns the instantiated function's type if successfull, a NULL |
| 574 | /// type if there was an error. |
| 575 | QualType |
| 576 | TemplateDeclInstantiator::InstantiateFunctionType(FunctionDecl *D, |
| 577 | llvm::SmallVectorImpl<ParmVarDecl *> &Params) { |
| 578 | bool InvalidDecl = false; |
| 579 | |
| 580 | // Instantiate the function parameters |
Douglas Gregor | 7e06390 | 2009-05-11 23:53:27 +0000 | [diff] [blame] | 581 | TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs); |
Douglas Gregor | 0ca20ac | 2009-05-29 18:27:38 +0000 | [diff] [blame] | 582 | llvm::SmallVector<QualType, 4> ParamTys; |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 583 | for (FunctionDecl::param_iterator P = D->param_begin(), |
| 584 | PEnd = D->param_end(); |
| 585 | P != PEnd; ++P) { |
Douglas Gregor | 6477b69 | 2009-03-25 15:04:13 +0000 | [diff] [blame] | 586 | if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) { |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 587 | if (PInst->getType()->isVoidType()) { |
| 588 | SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type); |
| 589 | PInst->setInvalidDecl(); |
| 590 | } |
| 591 | else if (SemaRef.RequireNonAbstractType(PInst->getLocation(), |
| 592 | PInst->getType(), |
| 593 | diag::err_abstract_type_in_decl, |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 594 | Sema::AbstractParamType)) |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 595 | PInst->setInvalidDecl(); |
| 596 | |
| 597 | Params.push_back(PInst); |
| 598 | ParamTys.push_back(PInst->getType()); |
| 599 | |
| 600 | if (PInst->isInvalidDecl()) |
| 601 | InvalidDecl = true; |
| 602 | } else |
| 603 | InvalidDecl = true; |
| 604 | } |
| 605 | |
| 606 | // FIXME: Deallocate dead declarations. |
| 607 | if (InvalidDecl) |
| 608 | return QualType(); |
| 609 | |
| 610 | const FunctionProtoType *Proto = D->getType()->getAsFunctionProtoType(); |
| 611 | assert(Proto && "Missing prototype?"); |
| 612 | QualType ResultType |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 613 | = SemaRef.InstantiateType(Proto->getResultType(), TemplateArgs, |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 614 | D->getLocation(), D->getDeclName()); |
| 615 | if (ResultType.isNull()) |
| 616 | return QualType(); |
| 617 | |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 618 | return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(), |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 619 | Proto->isVariadic(), Proto->getTypeQuals(), |
| 620 | D->getLocation(), D->getDeclName()); |
| 621 | } |
| 622 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 623 | /// \brief Initializes the common fields of an instantiation function |
| 624 | /// declaration (New) from the corresponding fields of its template (Tmpl). |
| 625 | /// |
| 626 | /// \returns true if there was an error |
| 627 | bool |
| 628 | TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New, |
| 629 | FunctionDecl *Tmpl) { |
| 630 | if (Tmpl->isDeleted()) |
| 631 | New->setDeleted(); |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 632 | |
| 633 | // If we are performing substituting explicitly-specified template arguments |
| 634 | // or deduced template arguments into a function template and we reach this |
| 635 | // point, we are now past the point where SFINAE applies and have committed |
| 636 | // to keeping the new function template specialization. We therefore |
| 637 | // convert the active template instantiation for the function template |
| 638 | // into a template instantiation for this specific function template |
| 639 | // specialization, which is not a SFINAE context, so that we diagnose any |
| 640 | // further errors in the declaration itself. |
| 641 | typedef Sema::ActiveTemplateInstantiation ActiveInstType; |
| 642 | ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back(); |
| 643 | if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution || |
| 644 | ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) { |
| 645 | if (FunctionTemplateDecl *FunTmpl |
| 646 | = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) { |
| 647 | assert(FunTmpl->getTemplatedDecl() == Tmpl && |
| 648 | "Deduction from the wrong function template?"); |
Daniel Dunbar | bcbb8bd | 2009-07-16 22:10:11 +0000 | [diff] [blame] | 649 | (void) FunTmpl; |
Douglas Gregor | cca9e96 | 2009-07-01 22:01:06 +0000 | [diff] [blame] | 650 | ActiveInst.Kind = ActiveInstType::TemplateInstantiation; |
| 651 | ActiveInst.Entity = reinterpret_cast<uintptr_t>(New); |
| 652 | } |
| 653 | } |
| 654 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 655 | return false; |
| 656 | } |
| 657 | |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 658 | /// \brief Initializes common fields of an instantiated method |
| 659 | /// declaration (New) from the corresponding fields of its template |
| 660 | /// (Tmpl). |
| 661 | /// |
| 662 | /// \returns true if there was an error |
| 663 | bool |
| 664 | TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New, |
| 665 | CXXMethodDecl *Tmpl) { |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 666 | if (InitFunctionInstantiation(New, Tmpl)) |
| 667 | return true; |
| 668 | |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 669 | CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner); |
| 670 | New->setAccess(Tmpl->getAccess()); |
Anders Carlsson | 77b7f1d | 2009-05-14 22:15:41 +0000 | [diff] [blame] | 671 | if (Tmpl->isVirtualAsWritten()) { |
| 672 | New->setVirtualAsWritten(true); |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 673 | Record->setAggregate(false); |
| 674 | Record->setPOD(false); |
| 675 | Record->setPolymorphic(true); |
| 676 | } |
Douglas Gregor | 5545e16 | 2009-03-24 00:38:23 +0000 | [diff] [blame] | 677 | if (Tmpl->isPure()) { |
| 678 | New->setPure(); |
| 679 | Record->setAbstract(true); |
| 680 | } |
| 681 | |
| 682 | // FIXME: attributes |
| 683 | // FIXME: New needs a pointer to Tmpl |
| 684 | return false; |
| 685 | } |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 686 | |
| 687 | /// \brief Instantiate the definition of the given function from its |
| 688 | /// template. |
| 689 | /// |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 690 | /// \param PointOfInstantiation the point at which the instantiation was |
| 691 | /// required. Note that this is not precisely a "point of instantiation" |
| 692 | /// for the function, but it's close. |
| 693 | /// |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 694 | /// \param Function the already-instantiated declaration of a |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 695 | /// function template specialization or member function of a class template |
| 696 | /// specialization. |
| 697 | /// |
| 698 | /// \param Recursive if true, recursively instantiates any functions that |
| 699 | /// are required by this instantiation. |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 700 | void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation, |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 701 | FunctionDecl *Function, |
| 702 | bool Recursive) { |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 703 | if (Function->isInvalidDecl()) |
| 704 | return; |
| 705 | |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 706 | assert(!Function->getBody() && "Already instantiated!"); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 707 | |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 708 | // Find the function body that we'll be substituting. |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 709 | const FunctionDecl *PatternDecl = 0; |
| 710 | if (FunctionTemplateDecl *Primary = Function->getPrimaryTemplate()) |
| 711 | PatternDecl = Primary->getTemplatedDecl(); |
| 712 | else |
| 713 | PatternDecl = Function->getInstantiatedFromMemberFunction(); |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 714 | Stmt *Pattern = 0; |
| 715 | if (PatternDecl) |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 716 | Pattern = PatternDecl->getBody(PatternDecl); |
Douglas Gregor | 1eee0e7 | 2009-05-14 21:06:31 +0000 | [diff] [blame] | 717 | |
| 718 | if (!Pattern) |
| 719 | return; |
| 720 | |
Douglas Gregor | f3e7ce4 | 2009-05-18 17:01:57 +0000 | [diff] [blame] | 721 | InstantiatingTemplate Inst(*this, PointOfInstantiation, Function); |
| 722 | if (Inst) |
| 723 | return; |
Douglas Gregor | b9f1b8d | 2009-05-15 00:01:03 +0000 | [diff] [blame] | 724 | |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 725 | // If we're performing recursive template instantiation, create our own |
| 726 | // queue of pending implicit instantiations that we will instantiate later, |
| 727 | // while we're still within our own instantiation context. |
| 728 | std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations; |
| 729 | if (Recursive) |
| 730 | PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations); |
| 731 | |
Douglas Gregor | e2c31ff | 2009-05-15 17:59:04 +0000 | [diff] [blame] | 732 | ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function)); |
| 733 | |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 734 | // Introduce a new scope where local variable instantiations will be |
| 735 | // recorded. |
| 736 | LocalInstantiationScope Scope(*this); |
| 737 | |
| 738 | // Introduce the instantiated function parameters into the local |
| 739 | // instantiation scope. |
| 740 | for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) |
| 741 | Scope.InstantiatedLocal(PatternDecl->getParamDecl(I), |
| 742 | Function->getParamDecl(I)); |
| 743 | |
Douglas Gregor | b9f1b8d | 2009-05-15 00:01:03 +0000 | [diff] [blame] | 744 | // Enter the scope of this instantiation. We don't use |
| 745 | // PushDeclContext because we don't have a scope. |
| 746 | DeclContext *PreviousContext = CurContext; |
| 747 | CurContext = Function; |
| 748 | |
Douglas Gregor | 54dabfc | 2009-05-14 23:26:13 +0000 | [diff] [blame] | 749 | // Instantiate the function body. |
| 750 | OwningStmtResult Body |
| 751 | = InstantiateStmt(Pattern, getTemplateInstantiationArgs(Function)); |
Douglas Gregor | e2c31ff | 2009-05-15 17:59:04 +0000 | [diff] [blame] | 752 | |
| 753 | ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body), |
| 754 | /*IsInstantiation=*/true); |
Douglas Gregor | b9f1b8d | 2009-05-15 00:01:03 +0000 | [diff] [blame] | 755 | |
| 756 | CurContext = PreviousContext; |
Douglas Gregor | aba43bb | 2009-05-26 20:50:29 +0000 | [diff] [blame] | 757 | |
| 758 | DeclGroupRef DG(Function); |
| 759 | Consumer.HandleTopLevelDecl(DG); |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 760 | |
| 761 | if (Recursive) { |
| 762 | // Instantiate any pending implicit instantiations found during the |
| 763 | // instantiation of this template. |
| 764 | PerformPendingImplicitInstantiations(); |
| 765 | |
| 766 | // Restore the set of pending implicit instantiations. |
| 767 | PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations); |
| 768 | } |
Douglas Gregor | a58861f | 2009-05-13 20:28:22 +0000 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | /// \brief Instantiate the definition of the given variable from its |
| 772 | /// template. |
| 773 | /// |
| 774 | /// \param Var the already-instantiated declaration of a variable. |
| 775 | void Sema::InstantiateVariableDefinition(VarDecl *Var) { |
| 776 | // FIXME: Implement this! |
| 777 | } |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 778 | |
| 779 | static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) { |
| 780 | if (D->getKind() != Other->getKind()) |
| 781 | return false; |
| 782 | |
| 783 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other)) |
| 784 | return Ctx.getCanonicalDecl(Record->getInstantiatedFromMemberClass()) |
| 785 | == Ctx.getCanonicalDecl(D); |
| 786 | |
| 787 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other)) |
| 788 | return Ctx.getCanonicalDecl(Function->getInstantiatedFromMemberFunction()) |
| 789 | == Ctx.getCanonicalDecl(D); |
| 790 | |
Douglas Gregor | 8dbc3c6 | 2009-05-27 17:20:35 +0000 | [diff] [blame] | 791 | if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other)) |
| 792 | return Ctx.getCanonicalDecl(Enum->getInstantiatedFromMemberEnum()) |
| 793 | == Ctx.getCanonicalDecl(D); |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 794 | |
| 795 | // FIXME: How can we find instantiations of anonymous unions? |
| 796 | |
| 797 | return D->getDeclName() && isa<NamedDecl>(Other) && |
| 798 | D->getDeclName() == cast<NamedDecl>(Other)->getDeclName(); |
| 799 | } |
| 800 | |
| 801 | template<typename ForwardIterator> |
| 802 | static NamedDecl *findInstantiationOf(ASTContext &Ctx, |
| 803 | NamedDecl *D, |
| 804 | ForwardIterator first, |
| 805 | ForwardIterator last) { |
| 806 | for (; first != last; ++first) |
| 807 | if (isInstantiationOf(Ctx, D, *first)) |
| 808 | return cast<NamedDecl>(*first); |
| 809 | |
| 810 | return 0; |
| 811 | } |
| 812 | |
Douglas Gregor | ed961e7 | 2009-05-27 17:54:46 +0000 | [diff] [blame] | 813 | /// \brief Find the instantiation of the given declaration within the |
| 814 | /// current instantiation. |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 815 | /// |
| 816 | /// This routine is intended to be used when \p D is a declaration |
| 817 | /// referenced from within a template, that needs to mapped into the |
| 818 | /// corresponding declaration within an instantiation. For example, |
| 819 | /// given: |
| 820 | /// |
| 821 | /// \code |
| 822 | /// template<typename T> |
| 823 | /// struct X { |
| 824 | /// enum Kind { |
| 825 | /// KnownValue = sizeof(T) |
| 826 | /// }; |
| 827 | /// |
| 828 | /// bool getKind() const { return KnownValue; } |
| 829 | /// }; |
| 830 | /// |
| 831 | /// template struct X<int>; |
| 832 | /// \endcode |
| 833 | /// |
| 834 | /// In the instantiation of X<int>::getKind(), we need to map the |
| 835 | /// EnumConstantDecl for KnownValue (which refers to |
| 836 | /// X<T>::<Kind>::KnownValue) to its instantiation |
Douglas Gregor | ed961e7 | 2009-05-27 17:54:46 +0000 | [diff] [blame] | 837 | /// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs |
| 838 | /// this mapping from within the instantiation of X<int>. |
| 839 | NamedDecl * Sema::InstantiateCurrentDeclRef(NamedDecl *D) { |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 840 | DeclContext *ParentDC = D->getDeclContext(); |
Douglas Gregor | 2bba76b | 2009-05-27 17:07:49 +0000 | [diff] [blame] | 841 | if (isa<ParmVarDecl>(D) || ParentDC->isFunctionOrMethod()) { |
| 842 | // D is a local of some kind. Look into the map of local |
| 843 | // declarations to their instantiations. |
| 844 | return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D)); |
| 845 | } |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 846 | |
Douglas Gregor | 2bba76b | 2009-05-27 17:07:49 +0000 | [diff] [blame] | 847 | if (NamedDecl *ParentDecl = dyn_cast<NamedDecl>(ParentDC)) { |
Douglas Gregor | ed961e7 | 2009-05-27 17:54:46 +0000 | [diff] [blame] | 848 | ParentDecl = InstantiateCurrentDeclRef(ParentDecl); |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 849 | if (!ParentDecl) |
| 850 | return 0; |
| 851 | |
| 852 | ParentDC = cast<DeclContext>(ParentDecl); |
| 853 | } |
| 854 | |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 855 | if (ParentDC != D->getDeclContext()) { |
| 856 | // We performed some kind of instantiation in the parent context, |
| 857 | // so now we need to look into the instantiated parent context to |
| 858 | // find the instantiation of the declaration D. |
| 859 | NamedDecl *Result = 0; |
| 860 | if (D->getDeclName()) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 861 | DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName()); |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 862 | Result = findInstantiationOf(Context, D, Found.first, Found.second); |
| 863 | } else { |
| 864 | // Since we don't have a name for the entity we're looking for, |
| 865 | // our only option is to walk through all of the declarations to |
| 866 | // find that name. This will occur in a few cases: |
| 867 | // |
| 868 | // - anonymous struct/union within a template |
| 869 | // - unnamed class/struct/union/enum within a template |
| 870 | // |
| 871 | // FIXME: Find a better way to find these instantiations! |
| 872 | Result = findInstantiationOf(Context, D, |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 873 | ParentDC->decls_begin(), |
| 874 | ParentDC->decls_end()); |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 875 | } |
| 876 | assert(Result && "Unable to find instantiation of declaration!"); |
| 877 | D = Result; |
| 878 | } |
| 879 | |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 880 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) |
Douglas Gregor | ed961e7 | 2009-05-27 17:54:46 +0000 | [diff] [blame] | 881 | if (ClassTemplateDecl *ClassTemplate |
| 882 | = Record->getDescribedClassTemplate()) { |
| 883 | // When the declaration D was parsed, it referred to the current |
| 884 | // instantiation. Therefore, look through the current context, |
| 885 | // which contains actual instantiations, to find the |
| 886 | // instantiation of the "current instantiation" that D refers |
| 887 | // to. Alternatively, we could just instantiate the |
| 888 | // injected-class-name with the current template arguments, but |
| 889 | // such an instantiation is far more expensive. |
| 890 | for (DeclContext *DC = CurContext; !DC->isFileContext(); |
| 891 | DC = DC->getParent()) { |
| 892 | if (ClassTemplateSpecializationDecl *Spec |
| 893 | = dyn_cast<ClassTemplateSpecializationDecl>(DC)) |
| 894 | if (Context.getCanonicalDecl(Spec->getSpecializedTemplate()) |
| 895 | == Context.getCanonicalDecl(ClassTemplate)) |
| 896 | return Spec; |
| 897 | } |
| 898 | |
| 899 | assert(false && |
| 900 | "Unable to find declaration for the current instantiation"); |
Douglas Gregor | 815215d | 2009-05-27 05:35:12 +0000 | [diff] [blame] | 901 | } |
| 902 | |
| 903 | return D; |
| 904 | } |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 905 | |
| 906 | /// \brief Performs template instantiation for all implicit template |
| 907 | /// instantiations we have seen until this point. |
| 908 | void Sema::PerformPendingImplicitInstantiations() { |
| 909 | while (!PendingImplicitInstantiations.empty()) { |
| 910 | PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front(); |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 911 | PendingImplicitInstantiations.pop_front(); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 912 | |
| 913 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 914 | if (!Function->getBody()) |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 915 | InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 916 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 917 | // FIXME: instantiate static member variables |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 918 | } |
| 919 | } |