Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 1 | //===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for C++ declarations. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 15 | #include "SemaInit.h" |
John McCall | 7d384dd | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 16 | #include "Lookup.h" |
Argyrios Kyrtzidis | a4755c6 | 2008-08-09 00:58:37 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTConsumer.h" |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTContext.h" |
Anders Carlsson | 5ec02ae | 2009-12-02 17:15:43 +0000 | [diff] [blame] | 19 | #include "clang/AST/RecordLayout.h" |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 20 | #include "clang/AST/CXXInheritance.h" |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclVisitor.h" |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 22 | #include "clang/AST/TypeLoc.h" |
Douglas Gregor | 0218936 | 2008-10-22 21:13:31 +0000 | [diff] [blame] | 23 | #include "clang/AST/TypeOrdering.h" |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 24 | #include "clang/AST/StmtVisitor.h" |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 25 | #include "clang/Parse/DeclSpec.h" |
| 26 | #include "clang/Parse/Template.h" |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 27 | #include "clang/Basic/PartialDiagnostic.h" |
Argyrios Kyrtzidis | 06ad1f5 | 2008-10-06 18:37:09 +0000 | [diff] [blame] | 28 | #include "clang/Lex/Preprocessor.h" |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/STLExtras.h" |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 30 | #include <map> |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 31 | #include <set> |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 32 | |
| 33 | using namespace clang; |
| 34 | |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 35 | //===----------------------------------------------------------------------===// |
| 36 | // CheckDefaultArgumentVisitor |
| 37 | //===----------------------------------------------------------------------===// |
| 38 | |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 39 | namespace { |
| 40 | /// CheckDefaultArgumentVisitor - C++ [dcl.fct.default] Traverses |
| 41 | /// the default argument of a parameter to determine whether it |
| 42 | /// contains any ill-formed subexpressions. For example, this will |
| 43 | /// diagnose the use of local variables or parameters within the |
| 44 | /// default argument expression. |
Benjamin Kramer | 85b4521 | 2009-11-28 19:45:26 +0000 | [diff] [blame] | 45 | class CheckDefaultArgumentVisitor |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 46 | : public StmtVisitor<CheckDefaultArgumentVisitor, bool> { |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 47 | Expr *DefaultArg; |
| 48 | Sema *S; |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 49 | |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 50 | public: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 51 | CheckDefaultArgumentVisitor(Expr *defarg, Sema *s) |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 52 | : DefaultArg(defarg), S(s) {} |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 53 | |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 54 | bool VisitExpr(Expr *Node); |
| 55 | bool VisitDeclRefExpr(DeclRefExpr *DRE); |
Douglas Gregor | 796da18 | 2008-11-04 14:32:21 +0000 | [diff] [blame] | 56 | bool VisitCXXThisExpr(CXXThisExpr *ThisE); |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 57 | }; |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 59 | /// VisitExpr - Visit all of the children of this expression. |
| 60 | bool CheckDefaultArgumentVisitor::VisitExpr(Expr *Node) { |
| 61 | bool IsInvalid = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 62 | for (Stmt::child_iterator I = Node->child_begin(), |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 63 | E = Node->child_end(); I != E; ++I) |
| 64 | IsInvalid |= Visit(*I); |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 65 | return IsInvalid; |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 68 | /// VisitDeclRefExpr - Visit a reference to a declaration, to |
| 69 | /// determine whether this declaration can be used in the default |
| 70 | /// argument expression. |
| 71 | bool CheckDefaultArgumentVisitor::VisitDeclRefExpr(DeclRefExpr *DRE) { |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 72 | NamedDecl *Decl = DRE->getDecl(); |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 73 | if (ParmVarDecl *Param = dyn_cast<ParmVarDecl>(Decl)) { |
| 74 | // C++ [dcl.fct.default]p9 |
| 75 | // Default arguments are evaluated each time the function is |
| 76 | // called. The order of evaluation of function arguments is |
| 77 | // unspecified. Consequently, parameters of a function shall not |
| 78 | // be used in default argument expressions, even if they are not |
| 79 | // evaluated. Parameters of a function declared before a default |
| 80 | // argument expression are in scope and can hide namespace and |
| 81 | // class member names. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 82 | return S->Diag(DRE->getSourceRange().getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 83 | diag::err_param_default_argument_references_param) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 84 | << Param->getDeclName() << DefaultArg->getSourceRange(); |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 85 | } else if (VarDecl *VDecl = dyn_cast<VarDecl>(Decl)) { |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 86 | // C++ [dcl.fct.default]p7 |
| 87 | // Local variables shall not be used in default argument |
| 88 | // expressions. |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 89 | if (VDecl->isBlockVarDecl()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 90 | return S->Diag(DRE->getSourceRange().getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 91 | diag::err_param_default_argument_references_local) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 92 | << VDecl->getDeclName() << DefaultArg->getSourceRange(); |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 93 | } |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 94 | |
Douglas Gregor | 3996f23 | 2008-11-04 13:41:56 +0000 | [diff] [blame] | 95 | return false; |
| 96 | } |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 97 | |
Douglas Gregor | 796da18 | 2008-11-04 14:32:21 +0000 | [diff] [blame] | 98 | /// VisitCXXThisExpr - Visit a C++ "this" expression. |
| 99 | bool CheckDefaultArgumentVisitor::VisitCXXThisExpr(CXXThisExpr *ThisE) { |
| 100 | // C++ [dcl.fct.default]p8: |
| 101 | // The keyword this shall not be used in a default argument of a |
| 102 | // member function. |
| 103 | return S->Diag(ThisE->getSourceRange().getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 104 | diag::err_param_default_argument_references_this) |
| 105 | << ThisE->getSourceRange(); |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 106 | } |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 109 | bool |
| 110 | Sema::SetParamDefaultArgument(ParmVarDecl *Param, ExprArg DefaultArg, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 111 | SourceLocation EqualLoc) { |
Anders Carlsson | 5653ca5 | 2009-08-25 13:46:13 +0000 | [diff] [blame] | 112 | if (RequireCompleteType(Param->getLocation(), Param->getType(), |
| 113 | diag::err_typecheck_decl_incomplete_type)) { |
| 114 | Param->setInvalidDecl(); |
| 115 | return true; |
| 116 | } |
| 117 | |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 118 | Expr *Arg = (Expr *)DefaultArg.get(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 119 | |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 120 | // C++ [dcl.fct.default]p5 |
| 121 | // A default argument expression is implicitly converted (clause |
| 122 | // 4) to the parameter type. The default argument expression has |
| 123 | // the same semantic constraints as the initializer expression in |
| 124 | // a declaration of a variable of the parameter type, using the |
| 125 | // copy-initialization semantics (8.5). |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 126 | InitializedEntity Entity = InitializedEntity::InitializeParameter(Param); |
| 127 | InitializationKind Kind = InitializationKind::CreateCopy(Param->getLocation(), |
| 128 | EqualLoc); |
Eli Friedman | 4a2c19b | 2009-12-22 02:46:13 +0000 | [diff] [blame] | 129 | InitializationSequence InitSeq(*this, Entity, Kind, &Arg, 1); |
| 130 | OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, |
| 131 | MultiExprArg(*this, (void**)&Arg, 1)); |
| 132 | if (Result.isInvalid()) |
Anders Carlsson | 9351c17 | 2009-08-25 03:18:48 +0000 | [diff] [blame] | 133 | return true; |
Eli Friedman | 4a2c19b | 2009-12-22 02:46:13 +0000 | [diff] [blame] | 134 | Arg = Result.takeAs<Expr>(); |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 135 | |
Anders Carlsson | 0ece491 | 2009-12-15 20:51:39 +0000 | [diff] [blame] | 136 | Arg = MaybeCreateCXXExprWithTemporaries(Arg); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 137 | |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 138 | // Okay: add the default argument to the parameter |
| 139 | Param->setDefaultArg(Arg); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 140 | |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 141 | DefaultArg.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 142 | |
Anders Carlsson | 9351c17 | 2009-08-25 03:18:48 +0000 | [diff] [blame] | 143 | return false; |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 146 | /// ActOnParamDefaultArgument - Check whether the default argument |
| 147 | /// provided for a function parameter is well-formed. If so, attach it |
| 148 | /// to the parameter declaration. |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 149 | void |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 150 | Sema::ActOnParamDefaultArgument(DeclPtrTy param, SourceLocation EqualLoc, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 151 | ExprArg defarg) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 152 | if (!param || !defarg.get()) |
| 153 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 154 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 155 | ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>()); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 156 | UnparsedDefaultArgLocs.erase(Param); |
| 157 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 158 | ExprOwningPtr<Expr> DefaultArg(this, defarg.takeAs<Expr>()); |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 159 | |
| 160 | // Default arguments are only permitted in C++ |
| 161 | if (!getLangOptions().CPlusPlus) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 162 | Diag(EqualLoc, diag::err_param_default_argument) |
| 163 | << DefaultArg->getSourceRange(); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 164 | Param->setInvalidDecl(); |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 165 | return; |
| 166 | } |
| 167 | |
Anders Carlsson | 66e3067 | 2009-08-25 01:02:06 +0000 | [diff] [blame] | 168 | // Check that the default argument is well-formed |
| 169 | CheckDefaultArgumentVisitor DefaultArgChecker(DefaultArg.get(), this); |
| 170 | if (DefaultArgChecker.Visit(DefaultArg.get())) { |
| 171 | Param->setInvalidDecl(); |
| 172 | return; |
| 173 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 174 | |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 175 | SetParamDefaultArgument(Param, move(DefaultArg), EqualLoc); |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 176 | } |
| 177 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 178 | /// ActOnParamUnparsedDefaultArgument - We've seen a default |
| 179 | /// argument for a function parameter, but we can't parse it yet |
| 180 | /// because we're inside a class definition. Note that this default |
| 181 | /// argument will be parsed later. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 182 | void Sema::ActOnParamUnparsedDefaultArgument(DeclPtrTy param, |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 183 | SourceLocation EqualLoc, |
| 184 | SourceLocation ArgLoc) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 185 | if (!param) |
| 186 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 187 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 188 | ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>()); |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 189 | if (Param) |
| 190 | Param->setUnparsedDefaultArg(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 191 | |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 192 | UnparsedDefaultArgLocs[Param] = ArgLoc; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 195 | /// ActOnParamDefaultArgumentError - Parsing or semantic analysis of |
| 196 | /// the default argument for the parameter param failed. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 197 | void Sema::ActOnParamDefaultArgumentError(DeclPtrTy param) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 198 | if (!param) |
| 199 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 200 | |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 201 | ParmVarDecl *Param = cast<ParmVarDecl>(param.getAs<Decl>()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 202 | |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 203 | Param->setInvalidDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 204 | |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 205 | UnparsedDefaultArgLocs.erase(Param); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Douglas Gregor | 6d6eb57 | 2008-05-07 04:49:29 +0000 | [diff] [blame] | 208 | /// CheckExtraCXXDefaultArguments - Check for any extra default |
| 209 | /// arguments in the declarator, which is not a function declaration |
| 210 | /// or definition and therefore is not permitted to have default |
| 211 | /// arguments. This routine should be invoked for every declarator |
| 212 | /// that is not a function declaration or definition. |
| 213 | void Sema::CheckExtraCXXDefaultArguments(Declarator &D) { |
| 214 | // C++ [dcl.fct.default]p3 |
| 215 | // A default argument expression shall be specified only in the |
| 216 | // parameter-declaration-clause of a function declaration or in a |
| 217 | // template-parameter (14.1). It shall not be specified for a |
| 218 | // parameter pack. If it is specified in a |
| 219 | // parameter-declaration-clause, it shall not occur within a |
| 220 | // declarator or abstract-declarator of a parameter-declaration. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 221 | for (unsigned i = 0, e = D.getNumTypeObjects(); i != e; ++i) { |
Douglas Gregor | 6d6eb57 | 2008-05-07 04:49:29 +0000 | [diff] [blame] | 222 | DeclaratorChunk &chunk = D.getTypeObject(i); |
| 223 | if (chunk.Kind == DeclaratorChunk::Function) { |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 224 | for (unsigned argIdx = 0, e = chunk.Fun.NumArgs; argIdx != e; ++argIdx) { |
| 225 | ParmVarDecl *Param = |
| 226 | cast<ParmVarDecl>(chunk.Fun.ArgInfo[argIdx].Param.getAs<Decl>()); |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 227 | if (Param->hasUnparsedDefaultArg()) { |
| 228 | CachedTokens *Toks = chunk.Fun.ArgInfo[argIdx].DefaultArgTokens; |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 229 | Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc) |
| 230 | << SourceRange((*Toks)[1].getLocation(), Toks->back().getLocation()); |
| 231 | delete Toks; |
| 232 | chunk.Fun.ArgInfo[argIdx].DefaultArgTokens = 0; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 233 | } else if (Param->getDefaultArg()) { |
| 234 | Diag(Param->getLocation(), diag::err_param_default_argument_nonfunc) |
| 235 | << Param->getDefaultArg()->getSourceRange(); |
| 236 | Param->setDefaultArg(0); |
Douglas Gregor | 6d6eb57 | 2008-05-07 04:49:29 +0000 | [diff] [blame] | 237 | } |
| 238 | } |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 243 | // MergeCXXFunctionDecl - Merge two declarations of the same C++ |
| 244 | // function, once we already know that they have the same |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 245 | // type. Subroutine of MergeFunctionDecl. Returns true if there was an |
| 246 | // error, false otherwise. |
| 247 | bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old) { |
| 248 | bool Invalid = false; |
| 249 | |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 250 | // C++ [dcl.fct.default]p4: |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 251 | // For non-template functions, default arguments can be added in |
| 252 | // later declarations of a function in the same |
| 253 | // scope. Declarations in different scopes have completely |
| 254 | // distinct sets of default arguments. That is, declarations in |
| 255 | // inner scopes do not acquire default arguments from |
| 256 | // declarations in outer scopes, and vice versa. In a given |
| 257 | // function declaration, all parameters subsequent to a |
| 258 | // parameter with a default argument shall have default |
| 259 | // arguments supplied in this or previous declarations. A |
| 260 | // default argument shall not be redefined by a later |
| 261 | // declaration (not even to the same value). |
Douglas Gregor | 6cc1518 | 2009-09-11 18:44:32 +0000 | [diff] [blame] | 262 | // |
| 263 | // C++ [dcl.fct.default]p6: |
| 264 | // Except for member functions of class templates, the default arguments |
| 265 | // in a member function definition that appears outside of the class |
| 266 | // definition are added to the set of default arguments provided by the |
| 267 | // member function declaration in the class definition. |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 268 | for (unsigned p = 0, NumParams = Old->getNumParams(); p < NumParams; ++p) { |
| 269 | ParmVarDecl *OldParam = Old->getParamDecl(p); |
| 270 | ParmVarDecl *NewParam = New->getParamDecl(p); |
| 271 | |
Douglas Gregor | 6cc1518 | 2009-09-11 18:44:32 +0000 | [diff] [blame] | 272 | if (OldParam->hasDefaultArg() && NewParam->hasDefaultArg()) { |
Douglas Gregor | 4f123ff | 2010-01-13 00:12:48 +0000 | [diff] [blame] | 273 | // FIXME: If we knew where the '=' was, we could easily provide a fix-it |
| 274 | // hint here. Alternatively, we could walk the type-source information |
| 275 | // for NewParam to find the last source location in the type... but it |
| 276 | // isn't worth the effort right now. This is the kind of test case that |
| 277 | // is hard to get right: |
| 278 | |
| 279 | // int f(int); |
| 280 | // void g(int (*fp)(int) = f); |
| 281 | // void g(int (*fp)(int) = &f); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 282 | Diag(NewParam->getLocation(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 283 | diag::err_param_default_argument_redefinition) |
Douglas Gregor | 4f123ff | 2010-01-13 00:12:48 +0000 | [diff] [blame] | 284 | << NewParam->getDefaultArgRange(); |
Douglas Gregor | 6cc1518 | 2009-09-11 18:44:32 +0000 | [diff] [blame] | 285 | |
| 286 | // Look for the function declaration where the default argument was |
| 287 | // actually written, which may be a declaration prior to Old. |
| 288 | for (FunctionDecl *Older = Old->getPreviousDeclaration(); |
| 289 | Older; Older = Older->getPreviousDeclaration()) { |
| 290 | if (!Older->getParamDecl(p)->hasDefaultArg()) |
| 291 | break; |
| 292 | |
| 293 | OldParam = Older->getParamDecl(p); |
| 294 | } |
| 295 | |
| 296 | Diag(OldParam->getLocation(), diag::note_previous_definition) |
| 297 | << OldParam->getDefaultArgRange(); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 298 | Invalid = true; |
Douglas Gregor | d85cef5 | 2009-09-17 19:51:30 +0000 | [diff] [blame] | 299 | } else if (OldParam->hasDefaultArg()) { |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 300 | // Merge the old default argument into the new parameter |
Douglas Gregor | d85cef5 | 2009-09-17 19:51:30 +0000 | [diff] [blame] | 301 | if (OldParam->hasUninstantiatedDefaultArg()) |
| 302 | NewParam->setUninstantiatedDefaultArg( |
| 303 | OldParam->getUninstantiatedDefaultArg()); |
| 304 | else |
| 305 | NewParam->setDefaultArg(OldParam->getDefaultArg()); |
Douglas Gregor | 6cc1518 | 2009-09-11 18:44:32 +0000 | [diff] [blame] | 306 | } else if (NewParam->hasDefaultArg()) { |
| 307 | if (New->getDescribedFunctionTemplate()) { |
| 308 | // Paragraph 4, quoted above, only applies to non-template functions. |
| 309 | Diag(NewParam->getLocation(), |
| 310 | diag::err_param_default_argument_template_redecl) |
| 311 | << NewParam->getDefaultArgRange(); |
| 312 | Diag(Old->getLocation(), diag::note_template_prev_declaration) |
| 313 | << false; |
Douglas Gregor | 096ebfd | 2009-10-13 17:02:54 +0000 | [diff] [blame] | 314 | } else if (New->getTemplateSpecializationKind() |
| 315 | != TSK_ImplicitInstantiation && |
| 316 | New->getTemplateSpecializationKind() != TSK_Undeclared) { |
| 317 | // C++ [temp.expr.spec]p21: |
| 318 | // Default function arguments shall not be specified in a declaration |
| 319 | // or a definition for one of the following explicit specializations: |
| 320 | // - the explicit specialization of a function template; |
Douglas Gregor | 8c638ab | 2009-10-13 23:52:38 +0000 | [diff] [blame] | 321 | // - the explicit specialization of a member function template; |
| 322 | // - the explicit specialization of a member function of a class |
Douglas Gregor | 096ebfd | 2009-10-13 17:02:54 +0000 | [diff] [blame] | 323 | // template where the class template specialization to which the |
| 324 | // member function specialization belongs is implicitly |
| 325 | // instantiated. |
| 326 | Diag(NewParam->getLocation(), diag::err_template_spec_default_arg) |
| 327 | << (New->getTemplateSpecializationKind() ==TSK_ExplicitSpecialization) |
| 328 | << New->getDeclName() |
| 329 | << NewParam->getDefaultArgRange(); |
Douglas Gregor | 6cc1518 | 2009-09-11 18:44:32 +0000 | [diff] [blame] | 330 | } else if (New->getDeclContext()->isDependentContext()) { |
| 331 | // C++ [dcl.fct.default]p6 (DR217): |
| 332 | // Default arguments for a member function of a class template shall |
| 333 | // be specified on the initial declaration of the member function |
| 334 | // within the class template. |
| 335 | // |
| 336 | // Reading the tea leaves a bit in DR217 and its reference to DR205 |
| 337 | // leads me to the conclusion that one cannot add default function |
| 338 | // arguments for an out-of-line definition of a member function of a |
| 339 | // dependent type. |
| 340 | int WhichKind = 2; |
| 341 | if (CXXRecordDecl *Record |
| 342 | = dyn_cast<CXXRecordDecl>(New->getDeclContext())) { |
| 343 | if (Record->getDescribedClassTemplate()) |
| 344 | WhichKind = 0; |
| 345 | else if (isa<ClassTemplatePartialSpecializationDecl>(Record)) |
| 346 | WhichKind = 1; |
| 347 | else |
| 348 | WhichKind = 2; |
| 349 | } |
| 350 | |
| 351 | Diag(NewParam->getLocation(), |
| 352 | diag::err_param_default_argument_member_template_redecl) |
| 353 | << WhichKind |
| 354 | << NewParam->getDefaultArgRange(); |
| 355 | } |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 356 | } |
| 357 | } |
| 358 | |
Sebastian Redl | 4994d2d | 2009-07-04 11:39:00 +0000 | [diff] [blame] | 359 | if (CheckEquivalentExceptionSpec( |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 360 | Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(), |
Douglas Gregor | 5b6d70e | 2009-11-25 17:50:39 +0000 | [diff] [blame] | 361 | New->getType()->getAs<FunctionProtoType>(), New->getLocation())) |
Sebastian Redl | 4994d2d | 2009-07-04 11:39:00 +0000 | [diff] [blame] | 362 | Invalid = true; |
Sebastian Redl | 4994d2d | 2009-07-04 11:39:00 +0000 | [diff] [blame] | 363 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 364 | return Invalid; |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /// CheckCXXDefaultArguments - Verify that the default arguments for a |
| 368 | /// function declaration are well-formed according to C++ |
| 369 | /// [dcl.fct.default]. |
| 370 | void Sema::CheckCXXDefaultArguments(FunctionDecl *FD) { |
| 371 | unsigned NumParams = FD->getNumParams(); |
| 372 | unsigned p; |
| 373 | |
| 374 | // Find first parameter with a default argument |
| 375 | for (p = 0; p < NumParams; ++p) { |
| 376 | ParmVarDecl *Param = FD->getParamDecl(p); |
Anders Carlsson | 5f49a0c | 2009-08-25 01:23:32 +0000 | [diff] [blame] | 377 | if (Param->hasDefaultArg()) |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 378 | break; |
| 379 | } |
| 380 | |
| 381 | // C++ [dcl.fct.default]p4: |
| 382 | // In a given function declaration, all parameters |
| 383 | // subsequent to a parameter with a default argument shall |
| 384 | // have default arguments supplied in this or previous |
| 385 | // declarations. A default argument shall not be redefined |
| 386 | // by a later declaration (not even to the same value). |
| 387 | unsigned LastMissingDefaultArg = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 388 | for (; p < NumParams; ++p) { |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 389 | ParmVarDecl *Param = FD->getParamDecl(p); |
Anders Carlsson | 5f49a0c | 2009-08-25 01:23:32 +0000 | [diff] [blame] | 390 | if (!Param->hasDefaultArg()) { |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 391 | if (Param->isInvalidDecl()) |
| 392 | /* We already complained about this parameter. */; |
| 393 | else if (Param->getIdentifier()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 394 | Diag(Param->getLocation(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 395 | diag::err_param_default_argument_missing_name) |
Chris Lattner | 43b628c | 2008-11-19 07:32:16 +0000 | [diff] [blame] | 396 | << Param->getIdentifier(); |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 397 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 398 | Diag(Param->getLocation(), |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 399 | diag::err_param_default_argument_missing); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 400 | |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 401 | LastMissingDefaultArg = p; |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | if (LastMissingDefaultArg > 0) { |
| 406 | // Some default arguments were missing. Clear out all of the |
| 407 | // default arguments up to (and including) the last missing |
| 408 | // default argument, so that we leave the function parameters |
| 409 | // in a semantically valid state. |
| 410 | for (p = 0; p <= LastMissingDefaultArg; ++p) { |
| 411 | ParmVarDecl *Param = FD->getParamDecl(p); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 412 | if (Param->hasDefaultArg()) { |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 413 | if (!Param->hasUnparsedDefaultArg()) |
| 414 | Param->getDefaultArg()->Destroy(Context); |
Chris Lattner | 3d1cee3 | 2008-04-08 05:04:30 +0000 | [diff] [blame] | 415 | Param->setDefaultArg(0); |
| 416 | } |
| 417 | } |
| 418 | } |
| 419 | } |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 420 | |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 421 | /// isCurrentClassName - Determine whether the identifier II is the |
| 422 | /// name of the class type currently being defined. In the case of |
| 423 | /// nested classes, this will only return true if II is the name of |
| 424 | /// the innermost class. |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 425 | bool Sema::isCurrentClassName(const IdentifierInfo &II, Scope *, |
| 426 | const CXXScopeSpec *SS) { |
Douglas Gregor | b862b8f | 2010-01-11 23:29:10 +0000 | [diff] [blame] | 427 | assert(getLangOptions().CPlusPlus && "No class names in C!"); |
| 428 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 429 | CXXRecordDecl *CurDecl; |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 430 | if (SS && SS->isSet() && !SS->isInvalid()) { |
Douglas Gregor | ac373c4 | 2009-08-21 22:16:40 +0000 | [diff] [blame] | 431 | DeclContext *DC = computeDeclContext(*SS, true); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 432 | CurDecl = dyn_cast_or_null<CXXRecordDecl>(DC); |
| 433 | } else |
| 434 | CurDecl = dyn_cast_or_null<CXXRecordDecl>(CurContext); |
| 435 | |
| 436 | if (CurDecl) |
Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 437 | return &II == CurDecl->getIdentifier(); |
| 438 | else |
| 439 | return false; |
| 440 | } |
| 441 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 442 | /// \brief Check the validity of a C++ base class specifier. |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 443 | /// |
| 444 | /// \returns a new CXXBaseSpecifier if well-formed, emits diagnostics |
| 445 | /// and returns NULL otherwise. |
| 446 | CXXBaseSpecifier * |
| 447 | Sema::CheckBaseSpecifier(CXXRecordDecl *Class, |
| 448 | SourceRange SpecifierRange, |
| 449 | bool Virtual, AccessSpecifier Access, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 450 | QualType BaseType, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 451 | SourceLocation BaseLoc) { |
| 452 | // C++ [class.union]p1: |
| 453 | // A union shall not have base classes. |
| 454 | if (Class->isUnion()) { |
| 455 | Diag(Class->getLocation(), diag::err_base_clause_on_union) |
| 456 | << SpecifierRange; |
| 457 | return 0; |
| 458 | } |
| 459 | |
| 460 | if (BaseType->isDependentType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 461 | return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 462 | Class->getTagKind() == RecordDecl::TK_class, |
| 463 | Access, BaseType); |
| 464 | |
| 465 | // Base specifiers must be record types. |
| 466 | if (!BaseType->isRecordType()) { |
| 467 | Diag(BaseLoc, diag::err_base_must_be_class) << SpecifierRange; |
| 468 | return 0; |
| 469 | } |
| 470 | |
| 471 | // C++ [class.union]p1: |
| 472 | // A union shall not be used as a base class. |
| 473 | if (BaseType->isUnionType()) { |
| 474 | Diag(BaseLoc, diag::err_union_as_base_class) << SpecifierRange; |
| 475 | return 0; |
| 476 | } |
| 477 | |
| 478 | // C++ [class.derived]p2: |
| 479 | // The class-name in a base-specifier shall not be an incompletely |
| 480 | // defined class. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 481 | if (RequireCompleteType(BaseLoc, BaseType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 482 | PDiag(diag::err_incomplete_base_class) |
| 483 | << SpecifierRange)) |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 484 | return 0; |
| 485 | |
Eli Friedman | 1d954f6 | 2009-08-15 21:55:26 +0000 | [diff] [blame] | 486 | // If the base class is polymorphic or isn't empty, the new one is/isn't, too. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 487 | RecordDecl *BaseDecl = BaseType->getAs<RecordType>()->getDecl(); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 488 | assert(BaseDecl && "Record type has no declaration"); |
| 489 | BaseDecl = BaseDecl->getDefinition(Context); |
| 490 | assert(BaseDecl && "Base type is not incomplete, but has no definition"); |
Eli Friedman | 1d954f6 | 2009-08-15 21:55:26 +0000 | [diff] [blame] | 491 | CXXRecordDecl * CXXBaseDecl = cast<CXXRecordDecl>(BaseDecl); |
| 492 | assert(CXXBaseDecl && "Base type is not a C++ type"); |
Eli Friedman | d013733 | 2009-12-05 23:03:49 +0000 | [diff] [blame] | 493 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 494 | // C++0x CWG Issue #817 indicates that [[final]] classes shouldn't be bases. |
| 495 | if (CXXBaseDecl->hasAttr<FinalAttr>()) { |
| 496 | Diag(BaseLoc, diag::err_final_base) << BaseType.getAsString(); |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 497 | Diag(CXXBaseDecl->getLocation(), diag::note_previous_decl) |
| 498 | << BaseType; |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 499 | return 0; |
| 500 | } |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 501 | |
Eli Friedman | d013733 | 2009-12-05 23:03:49 +0000 | [diff] [blame] | 502 | SetClassDeclAttributesFromBase(Class, CXXBaseDecl, Virtual); |
Anders Carlsson | 51f9404 | 2009-12-03 17:49:57 +0000 | [diff] [blame] | 503 | |
| 504 | // Create the base specifier. |
| 505 | // FIXME: Allocate via ASTContext? |
| 506 | return new (Context) CXXBaseSpecifier(SpecifierRange, Virtual, |
| 507 | Class->getTagKind() == RecordDecl::TK_class, |
| 508 | Access, BaseType); |
| 509 | } |
| 510 | |
| 511 | void Sema::SetClassDeclAttributesFromBase(CXXRecordDecl *Class, |
| 512 | const CXXRecordDecl *BaseClass, |
| 513 | bool BaseIsVirtual) { |
Eli Friedman | d013733 | 2009-12-05 23:03:49 +0000 | [diff] [blame] | 514 | // A class with a non-empty base class is not empty. |
| 515 | // FIXME: Standard ref? |
| 516 | if (!BaseClass->isEmpty()) |
| 517 | Class->setEmpty(false); |
| 518 | |
| 519 | // C++ [class.virtual]p1: |
| 520 | // A class that [...] inherits a virtual function is called a polymorphic |
| 521 | // class. |
| 522 | if (BaseClass->isPolymorphic()) |
| 523 | Class->setPolymorphic(true); |
Anders Carlsson | 51f9404 | 2009-12-03 17:49:57 +0000 | [diff] [blame] | 524 | |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 525 | // C++ [dcl.init.aggr]p1: |
| 526 | // An aggregate is [...] a class with [...] no base classes [...]. |
| 527 | Class->setAggregate(false); |
Eli Friedman | d013733 | 2009-12-05 23:03:49 +0000 | [diff] [blame] | 528 | |
| 529 | // C++ [class]p4: |
| 530 | // A POD-struct is an aggregate class... |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 531 | Class->setPOD(false); |
| 532 | |
Anders Carlsson | 51f9404 | 2009-12-03 17:49:57 +0000 | [diff] [blame] | 533 | if (BaseIsVirtual) { |
Anders Carlsson | 347ba89 | 2009-04-16 00:08:20 +0000 | [diff] [blame] | 534 | // C++ [class.ctor]p5: |
| 535 | // A constructor is trivial if its class has no virtual base classes. |
| 536 | Class->setHasTrivialConstructor(false); |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 537 | |
| 538 | // C++ [class.copy]p6: |
| 539 | // A copy constructor is trivial if its class has no virtual base classes. |
| 540 | Class->setHasTrivialCopyConstructor(false); |
| 541 | |
| 542 | // C++ [class.copy]p11: |
| 543 | // A copy assignment operator is trivial if its class has no virtual |
| 544 | // base classes. |
| 545 | Class->setHasTrivialCopyAssignment(false); |
Eli Friedman | 1d954f6 | 2009-08-15 21:55:26 +0000 | [diff] [blame] | 546 | |
| 547 | // C++0x [meta.unary.prop] is_empty: |
| 548 | // T is a class type, but not a union type, with ... no virtual base |
| 549 | // classes |
| 550 | Class->setEmpty(false); |
Anders Carlsson | 347ba89 | 2009-04-16 00:08:20 +0000 | [diff] [blame] | 551 | } else { |
| 552 | // C++ [class.ctor]p5: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 553 | // A constructor is trivial if all the direct base classes of its |
Anders Carlsson | 347ba89 | 2009-04-16 00:08:20 +0000 | [diff] [blame] | 554 | // class have trivial constructors. |
Anders Carlsson | 51f9404 | 2009-12-03 17:49:57 +0000 | [diff] [blame] | 555 | if (!BaseClass->hasTrivialConstructor()) |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 556 | Class->setHasTrivialConstructor(false); |
| 557 | |
| 558 | // C++ [class.copy]p6: |
| 559 | // A copy constructor is trivial if all the direct base classes of its |
| 560 | // class have trivial copy constructors. |
Anders Carlsson | 51f9404 | 2009-12-03 17:49:57 +0000 | [diff] [blame] | 561 | if (!BaseClass->hasTrivialCopyConstructor()) |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 562 | Class->setHasTrivialCopyConstructor(false); |
| 563 | |
| 564 | // C++ [class.copy]p11: |
| 565 | // A copy assignment operator is trivial if all the direct base classes |
| 566 | // of its class have trivial copy assignment operators. |
Anders Carlsson | 51f9404 | 2009-12-03 17:49:57 +0000 | [diff] [blame] | 567 | if (!BaseClass->hasTrivialCopyAssignment()) |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 568 | Class->setHasTrivialCopyAssignment(false); |
Anders Carlsson | 347ba89 | 2009-04-16 00:08:20 +0000 | [diff] [blame] | 569 | } |
Anders Carlsson | 072abef | 2009-04-17 02:34:54 +0000 | [diff] [blame] | 570 | |
| 571 | // C++ [class.ctor]p3: |
| 572 | // A destructor is trivial if all the direct base classes of its class |
| 573 | // have trivial destructors. |
Anders Carlsson | 51f9404 | 2009-12-03 17:49:57 +0000 | [diff] [blame] | 574 | if (!BaseClass->hasTrivialDestructor()) |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 575 | Class->setHasTrivialDestructor(false); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 576 | } |
| 577 | |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 578 | /// ActOnBaseSpecifier - Parsed a base specifier. A base specifier is |
| 579 | /// one entry in the base class list of a class specifier, for |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 580 | /// example: |
| 581 | /// class foo : public bar, virtual private baz { |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 582 | /// 'public bar' and 'virtual private baz' are each base-specifiers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 583 | Sema::BaseResult |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 584 | Sema::ActOnBaseSpecifier(DeclPtrTy classdecl, SourceRange SpecifierRange, |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 585 | bool Virtual, AccessSpecifier Access, |
| 586 | TypeTy *basetype, SourceLocation BaseLoc) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 587 | if (!classdecl) |
| 588 | return true; |
| 589 | |
Douglas Gregor | 40808ce | 2009-03-09 23:48:35 +0000 | [diff] [blame] | 590 | AdjustDeclIfTemplate(classdecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 591 | CXXRecordDecl *Class = cast<CXXRecordDecl>(classdecl.getAs<Decl>()); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 592 | QualType BaseType = GetTypeFromParser(basetype); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 593 | if (CXXBaseSpecifier *BaseSpec = CheckBaseSpecifier(Class, SpecifierRange, |
| 594 | Virtual, Access, |
| 595 | BaseType, BaseLoc)) |
| 596 | return BaseSpec; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 597 | |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 598 | return true; |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 599 | } |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 600 | |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 601 | /// \brief Performs the actual work of attaching the given base class |
| 602 | /// specifiers to a C++ class. |
| 603 | bool Sema::AttachBaseSpecifiers(CXXRecordDecl *Class, CXXBaseSpecifier **Bases, |
| 604 | unsigned NumBases) { |
| 605 | if (NumBases == 0) |
| 606 | return false; |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 607 | |
| 608 | // Used to keep track of which base types we have already seen, so |
| 609 | // that we can properly diagnose redundant direct base types. Note |
Douglas Gregor | 57c856b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 610 | // that the key is always the unqualified canonical type of the base |
| 611 | // class. |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 612 | std::map<QualType, CXXBaseSpecifier*, QualTypeOrdering> KnownBaseTypes; |
| 613 | |
| 614 | // Copy non-redundant base specifiers into permanent storage. |
Douglas Gregor | 57c856b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 615 | unsigned NumGoodBases = 0; |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 616 | bool Invalid = false; |
Douglas Gregor | 57c856b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 617 | for (unsigned idx = 0; idx < NumBases; ++idx) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 618 | QualType NewBaseType |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 619 | = Context.getCanonicalType(Bases[idx]->getType()); |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 620 | NewBaseType = NewBaseType.getLocalUnqualifiedType(); |
Douglas Gregor | 57c856b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 621 | |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 622 | if (KnownBaseTypes[NewBaseType]) { |
| 623 | // C++ [class.mi]p3: |
| 624 | // A class shall not be specified as a direct base class of a |
| 625 | // derived class more than once. |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 626 | Diag(Bases[idx]->getSourceRange().getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 627 | diag::err_duplicate_base_class) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 628 | << KnownBaseTypes[NewBaseType]->getType() |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 629 | << Bases[idx]->getSourceRange(); |
Douglas Gregor | 57c856b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 630 | |
| 631 | // Delete the duplicate base class specifier; we're going to |
| 632 | // overwrite its pointer later. |
Douglas Gregor | 2aef06d | 2009-07-22 20:55:49 +0000 | [diff] [blame] | 633 | Context.Deallocate(Bases[idx]); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 634 | |
| 635 | Invalid = true; |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 636 | } else { |
| 637 | // Okay, add this new base class. |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 638 | KnownBaseTypes[NewBaseType] = Bases[idx]; |
| 639 | Bases[NumGoodBases++] = Bases[idx]; |
Douglas Gregor | f8268ae | 2008-10-22 17:49:05 +0000 | [diff] [blame] | 640 | } |
| 641 | } |
| 642 | |
| 643 | // Attach the remaining base class specifiers to the derived class. |
Fariborz Jahanian | 5ffcd7b | 2009-07-02 18:26:15 +0000 | [diff] [blame] | 644 | Class->setBases(Context, Bases, NumGoodBases); |
Douglas Gregor | 57c856b | 2008-10-23 18:13:27 +0000 | [diff] [blame] | 645 | |
| 646 | // Delete the remaining (good) base class specifiers, since their |
| 647 | // data has been copied into the CXXRecordDecl. |
| 648 | for (unsigned idx = 0; idx < NumGoodBases; ++idx) |
Douglas Gregor | 2aef06d | 2009-07-22 20:55:49 +0000 | [diff] [blame] | 649 | Context.Deallocate(Bases[idx]); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 650 | |
| 651 | return Invalid; |
| 652 | } |
| 653 | |
| 654 | /// ActOnBaseSpecifiers - Attach the given base specifiers to the |
| 655 | /// class, after checking whether there are any duplicate base |
| 656 | /// classes. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 657 | void Sema::ActOnBaseSpecifiers(DeclPtrTy ClassDecl, BaseTy **Bases, |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 658 | unsigned NumBases) { |
| 659 | if (!ClassDecl || !Bases || !NumBases) |
| 660 | return; |
| 661 | |
| 662 | AdjustDeclIfTemplate(ClassDecl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 663 | AttachBaseSpecifiers(cast<CXXRecordDecl>(ClassDecl.getAs<Decl>()), |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 664 | (CXXBaseSpecifier**)(Bases), NumBases); |
Douglas Gregor | e37ac4f | 2008-04-13 21:30:24 +0000 | [diff] [blame] | 665 | } |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 666 | |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 667 | /// \brief Determine whether the type \p Derived is a C++ class that is |
| 668 | /// derived from the type \p Base. |
| 669 | bool Sema::IsDerivedFrom(QualType Derived, QualType Base) { |
| 670 | if (!getLangOptions().CPlusPlus) |
| 671 | return false; |
| 672 | |
| 673 | const RecordType *DerivedRT = Derived->getAs<RecordType>(); |
| 674 | if (!DerivedRT) |
| 675 | return false; |
| 676 | |
| 677 | const RecordType *BaseRT = Base->getAs<RecordType>(); |
| 678 | if (!BaseRT) |
| 679 | return false; |
| 680 | |
| 681 | CXXRecordDecl *DerivedRD = cast<CXXRecordDecl>(DerivedRT->getDecl()); |
| 682 | CXXRecordDecl *BaseRD = cast<CXXRecordDecl>(BaseRT->getDecl()); |
| 683 | return DerivedRD->isDerivedFrom(BaseRD); |
| 684 | } |
| 685 | |
| 686 | /// \brief Determine whether the type \p Derived is a C++ class that is |
| 687 | /// derived from the type \p Base. |
| 688 | bool Sema::IsDerivedFrom(QualType Derived, QualType Base, CXXBasePaths &Paths) { |
| 689 | if (!getLangOptions().CPlusPlus) |
| 690 | return false; |
| 691 | |
| 692 | const RecordType *DerivedRT = Derived->getAs<RecordType>(); |
| 693 | if (!DerivedRT) |
| 694 | return false; |
| 695 | |
| 696 | const RecordType *BaseRT = Base->getAs<RecordType>(); |
| 697 | if (!BaseRT) |
| 698 | return false; |
| 699 | |
| 700 | CXXRecordDecl *DerivedRD = cast<CXXRecordDecl>(DerivedRT->getDecl()); |
| 701 | CXXRecordDecl *BaseRD = cast<CXXRecordDecl>(BaseRT->getDecl()); |
| 702 | return DerivedRD->isDerivedFrom(BaseRD, Paths); |
| 703 | } |
| 704 | |
| 705 | /// CheckDerivedToBaseConversion - Check whether the Derived-to-Base |
| 706 | /// conversion (where Derived and Base are class types) is |
| 707 | /// well-formed, meaning that the conversion is unambiguous (and |
| 708 | /// that all of the base classes are accessible). Returns true |
| 709 | /// and emits a diagnostic if the code is ill-formed, returns false |
| 710 | /// otherwise. Loc is the location where this routine should point to |
| 711 | /// if there is an error, and Range is the source range to highlight |
| 712 | /// if there is an error. |
| 713 | bool |
| 714 | Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, |
| 715 | unsigned InaccessibleBaseID, |
| 716 | unsigned AmbigiousBaseConvID, |
| 717 | SourceLocation Loc, SourceRange Range, |
| 718 | DeclarationName Name) { |
| 719 | // First, determine whether the path from Derived to Base is |
| 720 | // ambiguous. This is slightly more expensive than checking whether |
| 721 | // the Derived to Base conversion exists, because here we need to |
| 722 | // explore multiple paths to determine if there is an ambiguity. |
| 723 | CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, |
| 724 | /*DetectVirtual=*/false); |
| 725 | bool DerivationOkay = IsDerivedFrom(Derived, Base, Paths); |
| 726 | assert(DerivationOkay && |
| 727 | "Can only be used with a derived-to-base conversion"); |
| 728 | (void)DerivationOkay; |
| 729 | |
| 730 | if (!Paths.isAmbiguous(Context.getCanonicalType(Base).getUnqualifiedType())) { |
Sebastian Redl | a82e4ae | 2009-11-14 21:15:49 +0000 | [diff] [blame] | 731 | if (InaccessibleBaseID == 0) |
| 732 | return false; |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 733 | // Check that the base class can be accessed. |
| 734 | return CheckBaseClassAccess(Derived, Base, InaccessibleBaseID, Paths, Loc, |
| 735 | Name); |
| 736 | } |
| 737 | |
| 738 | // We know that the derived-to-base conversion is ambiguous, and |
| 739 | // we're going to produce a diagnostic. Perform the derived-to-base |
| 740 | // search just one more time to compute all of the possible paths so |
| 741 | // that we can print them out. This is more expensive than any of |
| 742 | // the previous derived-to-base checks we've done, but at this point |
| 743 | // performance isn't as much of an issue. |
| 744 | Paths.clear(); |
| 745 | Paths.setRecordingPaths(true); |
| 746 | bool StillOkay = IsDerivedFrom(Derived, Base, Paths); |
| 747 | assert(StillOkay && "Can only be used with a derived-to-base conversion"); |
| 748 | (void)StillOkay; |
| 749 | |
| 750 | // Build up a textual representation of the ambiguous paths, e.g., |
| 751 | // D -> B -> A, that will be used to illustrate the ambiguous |
| 752 | // conversions in the diagnostic. We only print one of the paths |
| 753 | // to each base class subobject. |
| 754 | std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths); |
| 755 | |
| 756 | Diag(Loc, AmbigiousBaseConvID) |
| 757 | << Derived << Base << PathDisplayStr << Range << Name; |
| 758 | return true; |
| 759 | } |
| 760 | |
| 761 | bool |
| 762 | Sema::CheckDerivedToBaseConversion(QualType Derived, QualType Base, |
Sebastian Redl | a82e4ae | 2009-11-14 21:15:49 +0000 | [diff] [blame] | 763 | SourceLocation Loc, SourceRange Range, |
| 764 | bool IgnoreAccess) { |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 765 | return CheckDerivedToBaseConversion(Derived, Base, |
Sebastian Redl | a82e4ae | 2009-11-14 21:15:49 +0000 | [diff] [blame] | 766 | IgnoreAccess ? 0 : |
| 767 | diag::err_conv_to_inaccessible_base, |
Douglas Gregor | a8f32e0 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 768 | diag::err_ambiguous_derived_to_base_conv, |
| 769 | Loc, Range, DeclarationName()); |
| 770 | } |
| 771 | |
| 772 | |
| 773 | /// @brief Builds a string representing ambiguous paths from a |
| 774 | /// specific derived class to different subobjects of the same base |
| 775 | /// class. |
| 776 | /// |
| 777 | /// This function builds a string that can be used in error messages |
| 778 | /// to show the different paths that one can take through the |
| 779 | /// inheritance hierarchy to go from the derived class to different |
| 780 | /// subobjects of a base class. The result looks something like this: |
| 781 | /// @code |
| 782 | /// struct D -> struct B -> struct A |
| 783 | /// struct D -> struct C -> struct A |
| 784 | /// @endcode |
| 785 | std::string Sema::getAmbiguousPathsDisplayString(CXXBasePaths &Paths) { |
| 786 | std::string PathDisplayStr; |
| 787 | std::set<unsigned> DisplayedPaths; |
| 788 | for (CXXBasePaths::paths_iterator Path = Paths.begin(); |
| 789 | Path != Paths.end(); ++Path) { |
| 790 | if (DisplayedPaths.insert(Path->back().SubobjectNumber).second) { |
| 791 | // We haven't displayed a path to this particular base |
| 792 | // class subobject yet. |
| 793 | PathDisplayStr += "\n "; |
| 794 | PathDisplayStr += Context.getTypeDeclType(Paths.getOrigin()).getAsString(); |
| 795 | for (CXXBasePath::const_iterator Element = Path->begin(); |
| 796 | Element != Path->end(); ++Element) |
| 797 | PathDisplayStr += " -> " + Element->Base->getType().getAsString(); |
| 798 | } |
| 799 | } |
| 800 | |
| 801 | return PathDisplayStr; |
| 802 | } |
| 803 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 804 | //===----------------------------------------------------------------------===// |
| 805 | // C++ class member Handling |
| 806 | //===----------------------------------------------------------------------===// |
| 807 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 808 | /// ActOnCXXMemberDeclarator - This is invoked when a C++ class member |
| 809 | /// declarator is parsed. 'AS' is the access specifier, 'BW' specifies the |
| 810 | /// bitfield width if there is one and 'InitExpr' specifies the initializer if |
Chris Lattner | b6688e0 | 2009-04-12 22:37:57 +0000 | [diff] [blame] | 811 | /// any. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 812 | Sema::DeclPtrTy |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 813 | Sema::ActOnCXXMemberDeclarator(Scope *S, AccessSpecifier AS, Declarator &D, |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 814 | MultiTemplateParamsArg TemplateParameterLists, |
Sebastian Redl | d1a7846 | 2009-11-24 23:38:44 +0000 | [diff] [blame] | 815 | ExprTy *BW, ExprTy *InitExpr, bool IsDefinition, |
| 816 | bool Deleted) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 817 | const DeclSpec &DS = D.getDeclSpec(); |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 818 | DeclarationName Name = GetNameForDeclarator(D); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 819 | Expr *BitWidth = static_cast<Expr*>(BW); |
| 820 | Expr *Init = static_cast<Expr*>(InitExpr); |
| 821 | SourceLocation Loc = D.getIdentifierLoc(); |
| 822 | |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 823 | bool isFunc = D.isFunctionDeclarator(); |
| 824 | |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 825 | assert(!DS.isFriendSpecified()); |
| 826 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 827 | // C++ 9.2p6: A member shall not be declared to have automatic storage |
| 828 | // duration (auto, register) or with the extern storage-class-specifier. |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 829 | // C++ 7.1.1p8: The mutable specifier can be applied only to names of class |
| 830 | // data members and cannot be applied to names declared const or static, |
| 831 | // and cannot be applied to reference members. |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 832 | switch (DS.getStorageClassSpec()) { |
| 833 | case DeclSpec::SCS_unspecified: |
| 834 | case DeclSpec::SCS_typedef: |
| 835 | case DeclSpec::SCS_static: |
| 836 | // FALL THROUGH. |
| 837 | break; |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 838 | case DeclSpec::SCS_mutable: |
| 839 | if (isFunc) { |
| 840 | if (DS.getStorageClassSpecLoc().isValid()) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 841 | Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_function); |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 842 | else |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 843 | Diag(DS.getThreadSpecLoc(), diag::err_mutable_function); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 844 | |
Sebastian Redl | a11f42f | 2008-11-17 23:24:37 +0000 | [diff] [blame] | 845 | // FIXME: It would be nicer if the keyword was ignored only for this |
| 846 | // declarator. Otherwise we could get follow-up errors. |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 847 | D.getMutableDeclSpec().ClearStorageClassSpecs(); |
| 848 | } else { |
| 849 | QualType T = GetTypeForDeclarator(D, S); |
| 850 | diag::kind err = static_cast<diag::kind>(0); |
| 851 | if (T->isReferenceType()) |
| 852 | err = diag::err_mutable_reference; |
| 853 | else if (T.isConstQualified()) |
| 854 | err = diag::err_mutable_const; |
| 855 | if (err != 0) { |
| 856 | if (DS.getStorageClassSpecLoc().isValid()) |
| 857 | Diag(DS.getStorageClassSpecLoc(), err); |
| 858 | else |
| 859 | Diag(DS.getThreadSpecLoc(), err); |
Sebastian Redl | a11f42f | 2008-11-17 23:24:37 +0000 | [diff] [blame] | 860 | // FIXME: It would be nicer if the keyword was ignored only for this |
| 861 | // declarator. Otherwise we could get follow-up errors. |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 862 | D.getMutableDeclSpec().ClearStorageClassSpecs(); |
| 863 | } |
| 864 | } |
| 865 | break; |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 866 | default: |
| 867 | if (DS.getStorageClassSpecLoc().isValid()) |
| 868 | Diag(DS.getStorageClassSpecLoc(), |
| 869 | diag::err_storageclass_invalid_for_member); |
| 870 | else |
| 871 | Diag(DS.getThreadSpecLoc(), diag::err_storageclass_invalid_for_member); |
| 872 | D.getMutableDeclSpec().ClearStorageClassSpecs(); |
| 873 | } |
| 874 | |
Argyrios Kyrtzidis | d6caa9e | 2008-10-15 20:23:22 +0000 | [diff] [blame] | 875 | if (!isFunc && |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 876 | D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_typename && |
Argyrios Kyrtzidis | d6caa9e | 2008-10-15 20:23:22 +0000 | [diff] [blame] | 877 | D.getNumTypeObjects() == 0) { |
Argyrios Kyrtzidis | de933f0 | 2008-10-08 22:20:31 +0000 | [diff] [blame] | 878 | // Check also for this case: |
| 879 | // |
| 880 | // typedef int f(); |
| 881 | // f a; |
| 882 | // |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 883 | QualType TDType = GetTypeFromParser(DS.getTypeRep()); |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 884 | isFunc = TDType->isFunctionType(); |
Argyrios Kyrtzidis | de933f0 | 2008-10-08 22:20:31 +0000 | [diff] [blame] | 885 | } |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 886 | |
Sebastian Redl | 669d5d7 | 2008-11-14 23:42:31 +0000 | [diff] [blame] | 887 | bool isInstField = ((DS.getStorageClassSpec() == DeclSpec::SCS_unspecified || |
| 888 | DS.getStorageClassSpec() == DeclSpec::SCS_mutable) && |
Argyrios Kyrtzidis | de933f0 | 2008-10-08 22:20:31 +0000 | [diff] [blame] | 889 | !isFunc); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 890 | |
| 891 | Decl *Member; |
Chris Lattner | 2479366 | 2009-03-05 22:45:59 +0000 | [diff] [blame] | 892 | if (isInstField) { |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 893 | // FIXME: Check for template parameters! |
Douglas Gregor | 4dd55f5 | 2009-03-11 20:50:30 +0000 | [diff] [blame] | 894 | Member = HandleField(S, cast<CXXRecordDecl>(CurContext), Loc, D, BitWidth, |
| 895 | AS); |
Chris Lattner | 6f8ce14 | 2009-03-05 23:03:49 +0000 | [diff] [blame] | 896 | assert(Member && "HandleField never returns null"); |
Chris Lattner | 2479366 | 2009-03-05 22:45:59 +0000 | [diff] [blame] | 897 | } else { |
Sebastian Redl | d1a7846 | 2009-11-24 23:38:44 +0000 | [diff] [blame] | 898 | Member = HandleDeclarator(S, D, move(TemplateParameterLists), IsDefinition) |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 899 | .getAs<Decl>(); |
Chris Lattner | 6f8ce14 | 2009-03-05 23:03:49 +0000 | [diff] [blame] | 900 | if (!Member) { |
| 901 | if (BitWidth) DeleteExpr(BitWidth); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 902 | return DeclPtrTy(); |
Chris Lattner | 6f8ce14 | 2009-03-05 23:03:49 +0000 | [diff] [blame] | 903 | } |
Chris Lattner | 8b963ef | 2009-03-05 23:01:03 +0000 | [diff] [blame] | 904 | |
| 905 | // Non-instance-fields can't have a bitfield. |
| 906 | if (BitWidth) { |
| 907 | if (Member->isInvalidDecl()) { |
| 908 | // don't emit another diagnostic. |
Douglas Gregor | 2d2e9cf | 2009-03-11 20:22:50 +0000 | [diff] [blame] | 909 | } else if (isa<VarDecl>(Member)) { |
Chris Lattner | 8b963ef | 2009-03-05 23:01:03 +0000 | [diff] [blame] | 910 | // C++ 9.6p3: A bit-field shall not be a static member. |
| 911 | // "static member 'A' cannot be a bit-field" |
| 912 | Diag(Loc, diag::err_static_not_bitfield) |
| 913 | << Name << BitWidth->getSourceRange(); |
| 914 | } else if (isa<TypedefDecl>(Member)) { |
| 915 | // "typedef member 'x' cannot be a bit-field" |
| 916 | Diag(Loc, diag::err_typedef_not_bitfield) |
| 917 | << Name << BitWidth->getSourceRange(); |
| 918 | } else { |
| 919 | // A function typedef ("typedef int f(); f a;"). |
| 920 | // C++ 9.6p3: A bit-field shall have integral or enumeration type. |
| 921 | Diag(Loc, diag::err_not_integral_type_bitfield) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 922 | << Name << cast<ValueDecl>(Member)->getType() |
Douglas Gregor | 3cf538d | 2009-03-11 18:59:21 +0000 | [diff] [blame] | 923 | << BitWidth->getSourceRange(); |
Chris Lattner | 8b963ef | 2009-03-05 23:01:03 +0000 | [diff] [blame] | 924 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 925 | |
Chris Lattner | 8b963ef | 2009-03-05 23:01:03 +0000 | [diff] [blame] | 926 | DeleteExpr(BitWidth); |
| 927 | BitWidth = 0; |
| 928 | Member->setInvalidDecl(); |
| 929 | } |
Douglas Gregor | 4dd55f5 | 2009-03-11 20:50:30 +0000 | [diff] [blame] | 930 | |
| 931 | Member->setAccess(AS); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 932 | |
Douglas Gregor | 37b372b | 2009-08-20 22:52:58 +0000 | [diff] [blame] | 933 | // If we have declared a member function template, set the access of the |
| 934 | // templated declaration as well. |
| 935 | if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(Member)) |
| 936 | FunTmpl->getTemplatedDecl()->setAccess(AS); |
Chris Lattner | 2479366 | 2009-03-05 22:45:59 +0000 | [diff] [blame] | 937 | } |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 938 | |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 939 | assert((Name || isInstField) && "No identifier for non-field ?"); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 940 | |
Douglas Gregor | 021c3b3 | 2009-03-11 23:00:04 +0000 | [diff] [blame] | 941 | if (Init) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 942 | AddInitializerToDecl(DeclPtrTy::make(Member), ExprArg(*this, Init), false); |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 943 | if (Deleted) // FIXME: Source location is not very good. |
| 944 | SetDeclDeleted(DeclPtrTy::make(Member), D.getSourceRange().getBegin()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 945 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 946 | if (isInstField) { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 947 | FieldCollector->Add(cast<FieldDecl>(Member)); |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 948 | return DeclPtrTy(); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 949 | } |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 950 | return DeclPtrTy::make(Member); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 951 | } |
| 952 | |
Douglas Gregor | fe0241e | 2009-12-31 09:10:24 +0000 | [diff] [blame] | 953 | /// \brief Find the direct and/or virtual base specifiers that |
| 954 | /// correspond to the given base type, for use in base initialization |
| 955 | /// within a constructor. |
| 956 | static bool FindBaseInitializer(Sema &SemaRef, |
| 957 | CXXRecordDecl *ClassDecl, |
| 958 | QualType BaseType, |
| 959 | const CXXBaseSpecifier *&DirectBaseSpec, |
| 960 | const CXXBaseSpecifier *&VirtualBaseSpec) { |
| 961 | // First, check for a direct base class. |
| 962 | DirectBaseSpec = 0; |
| 963 | for (CXXRecordDecl::base_class_const_iterator Base |
| 964 | = ClassDecl->bases_begin(); |
| 965 | Base != ClassDecl->bases_end(); ++Base) { |
| 966 | if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base->getType())) { |
| 967 | // We found a direct base of this type. That's what we're |
| 968 | // initializing. |
| 969 | DirectBaseSpec = &*Base; |
| 970 | break; |
| 971 | } |
| 972 | } |
| 973 | |
| 974 | // Check for a virtual base class. |
| 975 | // FIXME: We might be able to short-circuit this if we know in advance that |
| 976 | // there are no virtual bases. |
| 977 | VirtualBaseSpec = 0; |
| 978 | if (!DirectBaseSpec || !DirectBaseSpec->isVirtual()) { |
| 979 | // We haven't found a base yet; search the class hierarchy for a |
| 980 | // virtual base class. |
| 981 | CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true, |
| 982 | /*DetectVirtual=*/false); |
| 983 | if (SemaRef.IsDerivedFrom(SemaRef.Context.getTypeDeclType(ClassDecl), |
| 984 | BaseType, Paths)) { |
| 985 | for (CXXBasePaths::paths_iterator Path = Paths.begin(); |
| 986 | Path != Paths.end(); ++Path) { |
| 987 | if (Path->back().Base->isVirtual()) { |
| 988 | VirtualBaseSpec = Path->back().Base; |
| 989 | break; |
| 990 | } |
| 991 | } |
| 992 | } |
| 993 | } |
| 994 | |
| 995 | return DirectBaseSpec || VirtualBaseSpec; |
| 996 | } |
| 997 | |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 998 | /// ActOnMemInitializer - Handle a C++ member initializer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 999 | Sema::MemInitResult |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1000 | Sema::ActOnMemInitializer(DeclPtrTy ConstructorD, |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1001 | Scope *S, |
Fariborz Jahanian | bcfad54 | 2009-06-30 23:26:25 +0000 | [diff] [blame] | 1002 | const CXXScopeSpec &SS, |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1003 | IdentifierInfo *MemberOrBase, |
Fariborz Jahanian | 9617433 | 2009-07-01 19:21:19 +0000 | [diff] [blame] | 1004 | TypeTy *TemplateTypeTy, |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1005 | SourceLocation IdLoc, |
| 1006 | SourceLocation LParenLoc, |
| 1007 | ExprTy **Args, unsigned NumArgs, |
| 1008 | SourceLocation *CommaLocs, |
| 1009 | SourceLocation RParenLoc) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 1010 | if (!ConstructorD) |
| 1011 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1012 | |
Douglas Gregor | efd5bda | 2009-08-24 11:57:43 +0000 | [diff] [blame] | 1013 | AdjustDeclIfTemplate(ConstructorD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1014 | |
| 1015 | CXXConstructorDecl *Constructor |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 1016 | = dyn_cast<CXXConstructorDecl>(ConstructorD.getAs<Decl>()); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1017 | if (!Constructor) { |
| 1018 | // The user wrote a constructor initializer on a function that is |
| 1019 | // not a C++ constructor. Ignore the error for now, because we may |
| 1020 | // have more member initializers coming; we'll diagnose it just |
| 1021 | // once in ActOnMemInitializers. |
| 1022 | return true; |
| 1023 | } |
| 1024 | |
| 1025 | CXXRecordDecl *ClassDecl = Constructor->getParent(); |
| 1026 | |
| 1027 | // C++ [class.base.init]p2: |
| 1028 | // Names in a mem-initializer-id are looked up in the scope of the |
| 1029 | // constructor’s class and, if not found in that scope, are looked |
| 1030 | // up in the scope containing the constructor’s |
| 1031 | // definition. [Note: if the constructor’s class contains a member |
| 1032 | // with the same name as a direct or virtual base class of the |
| 1033 | // class, a mem-initializer-id naming the member or base class and |
| 1034 | // composed of a single identifier refers to the class member. A |
| 1035 | // mem-initializer-id for the hidden base class may be specified |
| 1036 | // using a qualified name. ] |
Fariborz Jahanian | 9617433 | 2009-07-01 19:21:19 +0000 | [diff] [blame] | 1037 | if (!SS.getScopeRep() && !TemplateTypeTy) { |
Fariborz Jahanian | bcfad54 | 2009-06-30 23:26:25 +0000 | [diff] [blame] | 1038 | // Look for a member, first. |
| 1039 | FieldDecl *Member = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1040 | DeclContext::lookup_result Result |
Fariborz Jahanian | bcfad54 | 2009-06-30 23:26:25 +0000 | [diff] [blame] | 1041 | = ClassDecl->lookup(MemberOrBase); |
| 1042 | if (Result.first != Result.second) |
| 1043 | Member = dyn_cast<FieldDecl>(*Result.first); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1044 | |
Fariborz Jahanian | bcfad54 | 2009-06-30 23:26:25 +0000 | [diff] [blame] | 1045 | // FIXME: Handle members of an anonymous union. |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1046 | |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1047 | if (Member) |
| 1048 | return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc, |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1049 | LParenLoc, RParenLoc); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1050 | } |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1051 | // It didn't name a member, so see if it names a class. |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1052 | QualType BaseType; |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1053 | TypeSourceInfo *TInfo = 0; |
John McCall | 2b19441 | 2009-12-21 10:41:20 +0000 | [diff] [blame] | 1054 | |
| 1055 | if (TemplateTypeTy) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1056 | BaseType = GetTypeFromParser(TemplateTypeTy, &TInfo); |
John McCall | 2b19441 | 2009-12-21 10:41:20 +0000 | [diff] [blame] | 1057 | } else { |
| 1058 | LookupResult R(*this, MemberOrBase, IdLoc, LookupOrdinaryName); |
| 1059 | LookupParsedName(R, S, &SS); |
| 1060 | |
| 1061 | TypeDecl *TyD = R.getAsSingle<TypeDecl>(); |
| 1062 | if (!TyD) { |
| 1063 | if (R.isAmbiguous()) return true; |
| 1064 | |
Douglas Gregor | 7a886e1 | 2010-01-19 06:46:48 +0000 | [diff] [blame] | 1065 | if (SS.isSet() && isDependentScopeSpecifier(SS)) { |
| 1066 | bool NotUnknownSpecialization = false; |
| 1067 | DeclContext *DC = computeDeclContext(SS, false); |
| 1068 | if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(DC)) |
| 1069 | NotUnknownSpecialization = !Record->hasAnyDependentBases(); |
| 1070 | |
| 1071 | if (!NotUnknownSpecialization) { |
| 1072 | // When the scope specifier can refer to a member of an unknown |
| 1073 | // specialization, we take it as a type name. |
| 1074 | BaseType = CheckTypenameType((NestedNameSpecifier *)SS.getScopeRep(), |
| 1075 | *MemberOrBase, SS.getRange()); |
| 1076 | R.clear(); |
| 1077 | } |
| 1078 | } |
| 1079 | |
Douglas Gregor | fe0241e | 2009-12-31 09:10:24 +0000 | [diff] [blame] | 1080 | // If no results were found, try to correct typos. |
Douglas Gregor | 7a886e1 | 2010-01-19 06:46:48 +0000 | [diff] [blame] | 1081 | if (R.empty() && BaseType.isNull() && |
Douglas Gregor | fe0241e | 2009-12-31 09:10:24 +0000 | [diff] [blame] | 1082 | CorrectTypo(R, S, &SS, ClassDecl) && R.isSingleResult()) { |
| 1083 | if (FieldDecl *Member = R.getAsSingle<FieldDecl>()) { |
| 1084 | if (Member->getDeclContext()->getLookupContext()->Equals(ClassDecl)) { |
| 1085 | // We have found a non-static data member with a similar |
| 1086 | // name to what was typed; complain and initialize that |
| 1087 | // member. |
| 1088 | Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest) |
| 1089 | << MemberOrBase << true << R.getLookupName() |
| 1090 | << CodeModificationHint::CreateReplacement(R.getNameLoc(), |
| 1091 | R.getLookupName().getAsString()); |
Douglas Gregor | 67dd1d4 | 2010-01-07 00:17:44 +0000 | [diff] [blame] | 1092 | Diag(Member->getLocation(), diag::note_previous_decl) |
| 1093 | << Member->getDeclName(); |
Douglas Gregor | fe0241e | 2009-12-31 09:10:24 +0000 | [diff] [blame] | 1094 | |
| 1095 | return BuildMemberInitializer(Member, (Expr**)Args, NumArgs, IdLoc, |
| 1096 | LParenLoc, RParenLoc); |
| 1097 | } |
| 1098 | } else if (TypeDecl *Type = R.getAsSingle<TypeDecl>()) { |
| 1099 | const CXXBaseSpecifier *DirectBaseSpec; |
| 1100 | const CXXBaseSpecifier *VirtualBaseSpec; |
| 1101 | if (FindBaseInitializer(*this, ClassDecl, |
| 1102 | Context.getTypeDeclType(Type), |
| 1103 | DirectBaseSpec, VirtualBaseSpec)) { |
| 1104 | // We have found a direct or virtual base class with a |
| 1105 | // similar name to what was typed; complain and initialize |
| 1106 | // that base class. |
| 1107 | Diag(R.getNameLoc(), diag::err_mem_init_not_member_or_class_suggest) |
| 1108 | << MemberOrBase << false << R.getLookupName() |
| 1109 | << CodeModificationHint::CreateReplacement(R.getNameLoc(), |
| 1110 | R.getLookupName().getAsString()); |
Douglas Gregor | 0d535c8 | 2010-01-07 00:26:25 +0000 | [diff] [blame] | 1111 | |
| 1112 | const CXXBaseSpecifier *BaseSpec = DirectBaseSpec? DirectBaseSpec |
| 1113 | : VirtualBaseSpec; |
| 1114 | Diag(BaseSpec->getSourceRange().getBegin(), |
| 1115 | diag::note_base_class_specified_here) |
| 1116 | << BaseSpec->getType() |
| 1117 | << BaseSpec->getSourceRange(); |
| 1118 | |
Douglas Gregor | fe0241e | 2009-12-31 09:10:24 +0000 | [diff] [blame] | 1119 | TyD = Type; |
| 1120 | } |
| 1121 | } |
| 1122 | } |
| 1123 | |
Douglas Gregor | 7a886e1 | 2010-01-19 06:46:48 +0000 | [diff] [blame] | 1124 | if (!TyD && BaseType.isNull()) { |
Douglas Gregor | fe0241e | 2009-12-31 09:10:24 +0000 | [diff] [blame] | 1125 | Diag(IdLoc, diag::err_mem_init_not_member_or_class) |
| 1126 | << MemberOrBase << SourceRange(IdLoc, RParenLoc); |
| 1127 | return true; |
| 1128 | } |
John McCall | 2b19441 | 2009-12-21 10:41:20 +0000 | [diff] [blame] | 1129 | } |
| 1130 | |
Douglas Gregor | 7a886e1 | 2010-01-19 06:46:48 +0000 | [diff] [blame] | 1131 | if (BaseType.isNull()) { |
| 1132 | BaseType = Context.getTypeDeclType(TyD); |
| 1133 | if (SS.isSet()) { |
| 1134 | NestedNameSpecifier *Qualifier = |
| 1135 | static_cast<NestedNameSpecifier*>(SS.getScopeRep()); |
John McCall | 2b19441 | 2009-12-21 10:41:20 +0000 | [diff] [blame] | 1136 | |
Douglas Gregor | 7a886e1 | 2010-01-19 06:46:48 +0000 | [diff] [blame] | 1137 | // FIXME: preserve source range information |
| 1138 | BaseType = Context.getQualifiedNameType(Qualifier, BaseType); |
| 1139 | } |
John McCall | 2b19441 | 2009-12-21 10:41:20 +0000 | [diff] [blame] | 1140 | } |
| 1141 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1142 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1143 | if (!TInfo) |
| 1144 | TInfo = Context.getTrivialTypeSourceInfo(BaseType, IdLoc); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1145 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1146 | return BuildBaseInitializer(BaseType, TInfo, (Expr **)Args, NumArgs, |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1147 | LParenLoc, RParenLoc, ClassDecl); |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1148 | } |
| 1149 | |
John McCall | b419004 | 2009-11-04 23:02:40 +0000 | [diff] [blame] | 1150 | /// Checks an initializer expression for use of uninitialized fields, such as |
| 1151 | /// containing the field that is being initialized. Returns true if there is an |
| 1152 | /// uninitialized field was used an updates the SourceLocation parameter; false |
| 1153 | /// otherwise. |
| 1154 | static bool InitExprContainsUninitializedFields(const Stmt* S, |
| 1155 | const FieldDecl* LhsField, |
| 1156 | SourceLocation* L) { |
| 1157 | const MemberExpr* ME = dyn_cast<MemberExpr>(S); |
| 1158 | if (ME) { |
| 1159 | const NamedDecl* RhsField = ME->getMemberDecl(); |
| 1160 | if (RhsField == LhsField) { |
| 1161 | // Initializing a field with itself. Throw a warning. |
| 1162 | // But wait; there are exceptions! |
| 1163 | // Exception #1: The field may not belong to this record. |
| 1164 | // e.g. Foo(const Foo& rhs) : A(rhs.A) {} |
| 1165 | const Expr* base = ME->getBase(); |
| 1166 | if (base != NULL && !isa<CXXThisExpr>(base->IgnoreParenCasts())) { |
| 1167 | // Even though the field matches, it does not belong to this record. |
| 1168 | return false; |
| 1169 | } |
| 1170 | // None of the exceptions triggered; return true to indicate an |
| 1171 | // uninitialized field was used. |
| 1172 | *L = ME->getMemberLoc(); |
| 1173 | return true; |
| 1174 | } |
| 1175 | } |
| 1176 | bool found = false; |
| 1177 | for (Stmt::const_child_iterator it = S->child_begin(); |
| 1178 | it != S->child_end() && found == false; |
| 1179 | ++it) { |
| 1180 | if (isa<CallExpr>(S)) { |
| 1181 | // Do not descend into function calls or constructors, as the use |
| 1182 | // of an uninitialized field may be valid. One would have to inspect |
| 1183 | // the contents of the function/ctor to determine if it is safe or not. |
| 1184 | // i.e. Pass-by-value is never safe, but pass-by-reference and pointers |
| 1185 | // may be safe, depending on what the function/ctor does. |
| 1186 | continue; |
| 1187 | } |
| 1188 | found = InitExprContainsUninitializedFields(*it, LhsField, L); |
| 1189 | } |
| 1190 | return found; |
| 1191 | } |
| 1192 | |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1193 | Sema::MemInitResult |
| 1194 | Sema::BuildMemberInitializer(FieldDecl *Member, Expr **Args, |
| 1195 | unsigned NumArgs, SourceLocation IdLoc, |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1196 | SourceLocation LParenLoc, |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1197 | SourceLocation RParenLoc) { |
Anders Carlsson | f8a9a79 | 2009-11-13 19:21:49 +0000 | [diff] [blame] | 1198 | // FIXME: CXXBaseOrMemberInitializer should only contain a single |
| 1199 | // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary. |
| 1200 | ExprTemporaries.clear(); |
| 1201 | |
John McCall | b419004 | 2009-11-04 23:02:40 +0000 | [diff] [blame] | 1202 | // Diagnose value-uses of fields to initialize themselves, e.g. |
| 1203 | // foo(foo) |
| 1204 | // where foo is not also a parameter to the constructor. |
John McCall | 6aee621 | 2009-11-04 23:13:52 +0000 | [diff] [blame] | 1205 | // TODO: implement -Wuninitialized and fold this into that framework. |
John McCall | b419004 | 2009-11-04 23:02:40 +0000 | [diff] [blame] | 1206 | for (unsigned i = 0; i < NumArgs; ++i) { |
| 1207 | SourceLocation L; |
| 1208 | if (InitExprContainsUninitializedFields(Args[i], Member, &L)) { |
| 1209 | // FIXME: Return true in the case when other fields are used before being |
| 1210 | // uninitialized. For example, let this field be the i'th field. When |
| 1211 | // initializing the i'th field, throw a warning if any of the >= i'th |
| 1212 | // fields are used, as they are not yet initialized. |
| 1213 | // Right now we are only handling the case where the i'th field uses |
| 1214 | // itself in its initializer. |
| 1215 | Diag(L, diag::warn_field_is_uninit); |
| 1216 | } |
| 1217 | } |
| 1218 | |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1219 | bool HasDependentArg = false; |
| 1220 | for (unsigned i = 0; i < NumArgs; i++) |
| 1221 | HasDependentArg |= Args[i]->isTypeDependent(); |
| 1222 | |
| 1223 | CXXConstructorDecl *C = 0; |
| 1224 | QualType FieldType = Member->getType(); |
| 1225 | if (const ArrayType *Array = Context.getAsArrayType(FieldType)) |
| 1226 | FieldType = Array->getElementType(); |
Eli Friedman | e6d11b7 | 2009-12-25 23:59:21 +0000 | [diff] [blame] | 1227 | ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this); |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1228 | if (FieldType->isDependentType()) { |
| 1229 | // Can't check init for dependent type. |
John McCall | 6aee621 | 2009-11-04 23:13:52 +0000 | [diff] [blame] | 1230 | } else if (FieldType->isRecordType()) { |
| 1231 | // Member is a record (struct/union/class), so pass the initializer |
| 1232 | // arguments down to the record's constructor. |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 1233 | if (!HasDependentArg) { |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 1234 | C = PerformInitializationByConstructor(FieldType, |
| 1235 | MultiExprArg(*this, |
| 1236 | (void**)Args, |
| 1237 | NumArgs), |
| 1238 | IdLoc, |
| 1239 | SourceRange(IdLoc, RParenLoc), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 1240 | Member->getDeclName(), |
| 1241 | InitializationKind::CreateDirect(IdLoc, LParenLoc, RParenLoc), |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 1242 | ConstructorArgs); |
| 1243 | |
| 1244 | if (C) { |
| 1245 | // Take over the constructor arguments as our own. |
| 1246 | NumArgs = ConstructorArgs.size(); |
| 1247 | Args = (Expr **)ConstructorArgs.take(); |
| 1248 | } |
| 1249 | } |
Fariborz Jahanian | 636a0ff | 2009-09-02 17:10:17 +0000 | [diff] [blame] | 1250 | } else if (NumArgs != 1 && NumArgs != 0) { |
John McCall | 6aee621 | 2009-11-04 23:13:52 +0000 | [diff] [blame] | 1251 | // The member type is not a record type (or an array of record |
| 1252 | // types), so it can be only be default- or copy-initialized. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1253 | return Diag(IdLoc, diag::err_mem_initializer_mismatch) |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1254 | << Member->getDeclName() << SourceRange(IdLoc, RParenLoc); |
| 1255 | } else if (!HasDependentArg) { |
Fariborz Jahanian | 636a0ff | 2009-09-02 17:10:17 +0000 | [diff] [blame] | 1256 | Expr *NewExp; |
| 1257 | if (NumArgs == 0) { |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1258 | if (FieldType->isReferenceType()) { |
| 1259 | Diag(IdLoc, diag::err_null_intialized_reference_member) |
| 1260 | << Member->getDeclName(); |
| 1261 | return Diag(Member->getLocation(), diag::note_declared_at); |
| 1262 | } |
Fariborz Jahanian | 636a0ff | 2009-09-02 17:10:17 +0000 | [diff] [blame] | 1263 | NewExp = new (Context) CXXZeroInitValueExpr(FieldType, IdLoc, RParenLoc); |
| 1264 | NumArgs = 1; |
| 1265 | } |
| 1266 | else |
| 1267 | NewExp = (Expr*)Args[0]; |
Chris Lattner | 8c3f890 | 2009-12-31 03:10:55 +0000 | [diff] [blame] | 1268 | if (!Member->isInvalidDecl() && |
| 1269 | PerformCopyInitialization(NewExp, FieldType, AA_Passing)) |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1270 | return true; |
| 1271 | Args[0] = NewExp; |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1272 | } |
Anders Carlsson | f8a9a79 | 2009-11-13 19:21:49 +0000 | [diff] [blame] | 1273 | |
| 1274 | // FIXME: CXXBaseOrMemberInitializer should only contain a single |
| 1275 | // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary. |
| 1276 | ExprTemporaries.clear(); |
| 1277 | |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1278 | // FIXME: Perform direct initialization of the member. |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1279 | return new (Context) CXXBaseOrMemberInitializer(Context, Member, IdLoc, |
| 1280 | C, LParenLoc, (Expr **)Args, |
| 1281 | NumArgs, RParenLoc); |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1282 | } |
| 1283 | |
| 1284 | Sema::MemInitResult |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1285 | Sema::BuildBaseInitializer(QualType BaseType, TypeSourceInfo *BaseTInfo, |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1286 | Expr **Args, unsigned NumArgs, |
| 1287 | SourceLocation LParenLoc, SourceLocation RParenLoc, |
| 1288 | CXXRecordDecl *ClassDecl) { |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1289 | bool HasDependentArg = false; |
| 1290 | for (unsigned i = 0; i < NumArgs; i++) |
| 1291 | HasDependentArg |= Args[i]->isTypeDependent(); |
| 1292 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1293 | SourceLocation BaseLoc = BaseTInfo->getTypeLoc().getSourceRange().getBegin(); |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1294 | if (!BaseType->isDependentType()) { |
| 1295 | if (!BaseType->isRecordType()) |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1296 | return Diag(BaseLoc, diag::err_base_init_does_not_name_class) |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1297 | << BaseType << BaseTInfo->getTypeLoc().getSourceRange(); |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1298 | |
| 1299 | // C++ [class.base.init]p2: |
| 1300 | // [...] Unless the mem-initializer-id names a nonstatic data |
| 1301 | // member of the constructor’s class or a direct or virtual base |
| 1302 | // of that class, the mem-initializer is ill-formed. A |
| 1303 | // mem-initializer-list can initialize a base class using any |
| 1304 | // name that denotes that base class type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1305 | |
Douglas Gregor | fe0241e | 2009-12-31 09:10:24 +0000 | [diff] [blame] | 1306 | // Check for direct and virtual base classes. |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1307 | const CXXBaseSpecifier *DirectBaseSpec = 0; |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1308 | const CXXBaseSpecifier *VirtualBaseSpec = 0; |
Douglas Gregor | fe0241e | 2009-12-31 09:10:24 +0000 | [diff] [blame] | 1309 | FindBaseInitializer(*this, ClassDecl, BaseType, DirectBaseSpec, |
| 1310 | VirtualBaseSpec); |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1311 | |
| 1312 | // C++ [base.class.init]p2: |
| 1313 | // If a mem-initializer-id is ambiguous because it designates both |
| 1314 | // a direct non-virtual base class and an inherited virtual base |
| 1315 | // class, the mem-initializer is ill-formed. |
| 1316 | if (DirectBaseSpec && VirtualBaseSpec) |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1317 | return Diag(BaseLoc, diag::err_base_init_direct_and_virtual) |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1318 | << BaseType << BaseTInfo->getTypeLoc().getSourceRange(); |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1319 | // C++ [base.class.init]p2: |
| 1320 | // Unless the mem-initializer-id names a nonstatic data membeer of the |
| 1321 | // constructor's class ot a direst or virtual base of that class, the |
| 1322 | // mem-initializer is ill-formed. |
| 1323 | if (!DirectBaseSpec && !VirtualBaseSpec) |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1324 | return Diag(BaseLoc, diag::err_not_direct_base_or_virtual) |
| 1325 | << BaseType << ClassDecl->getNameAsCString() |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1326 | << BaseTInfo->getTypeLoc().getSourceRange(); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1327 | } |
| 1328 | |
Fariborz Jahanian | d7b27e1 | 2009-07-23 00:42:24 +0000 | [diff] [blame] | 1329 | CXXConstructorDecl *C = 0; |
Eli Friedman | e6d11b7 | 2009-12-25 23:59:21 +0000 | [diff] [blame] | 1330 | ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this); |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1331 | if (!BaseType->isDependentType() && !HasDependentArg) { |
| 1332 | DeclarationName Name = Context.DeclarationNames.getCXXConstructorName( |
Douglas Gregor | 3eaa9ff | 2009-11-08 07:12:55 +0000 | [diff] [blame] | 1333 | Context.getCanonicalType(BaseType).getUnqualifiedType()); |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 1334 | |
| 1335 | C = PerformInitializationByConstructor(BaseType, |
| 1336 | MultiExprArg(*this, |
| 1337 | (void**)Args, NumArgs), |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1338 | BaseLoc, |
| 1339 | SourceRange(BaseLoc, RParenLoc), |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 1340 | Name, |
| 1341 | InitializationKind::CreateDirect(BaseLoc, LParenLoc, RParenLoc), |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 1342 | ConstructorArgs); |
| 1343 | if (C) { |
| 1344 | // Take over the constructor arguments as our own. |
| 1345 | NumArgs = ConstructorArgs.size(); |
| 1346 | Args = (Expr **)ConstructorArgs.take(); |
| 1347 | } |
Eli Friedman | 59c0437 | 2009-07-29 19:44:27 +0000 | [diff] [blame] | 1348 | } |
| 1349 | |
Anders Carlsson | f8a9a79 | 2009-11-13 19:21:49 +0000 | [diff] [blame] | 1350 | // FIXME: CXXBaseOrMemberInitializer should only contain a single |
| 1351 | // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary. |
| 1352 | ExprTemporaries.clear(); |
| 1353 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1354 | return new (Context) CXXBaseOrMemberInitializer(Context, BaseTInfo, C, |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1355 | LParenLoc, (Expr **)Args, |
| 1356 | NumArgs, RParenLoc); |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1357 | } |
| 1358 | |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 1359 | bool |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1360 | Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor, |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1361 | CXXBaseOrMemberInitializer **Initializers, |
| 1362 | unsigned NumInitializers, |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1363 | bool IsImplicitConstructor) { |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1364 | // We need to build the initializer AST according to order of construction |
| 1365 | // and not what user specified in the Initializers list. |
| 1366 | CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Constructor->getDeclContext()); |
| 1367 | llvm::SmallVector<CXXBaseOrMemberInitializer*, 32> AllToInit; |
| 1368 | llvm::DenseMap<const void *, CXXBaseOrMemberInitializer*> AllBaseFields; |
| 1369 | bool HasDependentBaseInit = false; |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 1370 | bool HadError = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1371 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1372 | for (unsigned i = 0; i < NumInitializers; i++) { |
| 1373 | CXXBaseOrMemberInitializer *Member = Initializers[i]; |
| 1374 | if (Member->isBaseInitializer()) { |
| 1375 | if (Member->getBaseClass()->isDependentType()) |
| 1376 | HasDependentBaseInit = true; |
| 1377 | AllBaseFields[Member->getBaseClass()->getAs<RecordType>()] = Member; |
| 1378 | } else { |
| 1379 | AllBaseFields[Member->getMember()] = Member; |
| 1380 | } |
| 1381 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1382 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1383 | if (HasDependentBaseInit) { |
| 1384 | // FIXME. This does not preserve the ordering of the initializers. |
| 1385 | // Try (with -Wreorder) |
| 1386 | // template<class X> struct A {}; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1387 | // template<class X> struct B : A<X> { |
| 1388 | // B() : x1(10), A<X>() {} |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1389 | // int x1; |
| 1390 | // }; |
| 1391 | // B<int> x; |
| 1392 | // On seeing one dependent type, we should essentially exit this routine |
| 1393 | // while preserving user-declared initializer list. When this routine is |
| 1394 | // called during instantiatiation process, this routine will rebuild the |
John McCall | 6aee621 | 2009-11-04 23:13:52 +0000 | [diff] [blame] | 1395 | // ordered initializer list correctly. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1396 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1397 | // If we have a dependent base initialization, we can't determine the |
| 1398 | // association between initializers and bases; just dump the known |
| 1399 | // initializers into the list, and don't try to deal with other bases. |
| 1400 | for (unsigned i = 0; i < NumInitializers; i++) { |
| 1401 | CXXBaseOrMemberInitializer *Member = Initializers[i]; |
| 1402 | if (Member->isBaseInitializer()) |
| 1403 | AllToInit.push_back(Member); |
| 1404 | } |
| 1405 | } else { |
| 1406 | // Push virtual bases before others. |
| 1407 | for (CXXRecordDecl::base_class_iterator VBase = |
| 1408 | ClassDecl->vbases_begin(), |
| 1409 | E = ClassDecl->vbases_end(); VBase != E; ++VBase) { |
| 1410 | if (VBase->getType()->isDependentType()) |
| 1411 | continue; |
Douglas Gregor | c07a494 | 2009-11-15 08:51:10 +0000 | [diff] [blame] | 1412 | if (CXXBaseOrMemberInitializer *Value |
| 1413 | = AllBaseFields.lookup(VBase->getType()->getAs<RecordType>())) { |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1414 | AllToInit.push_back(Value); |
Fariborz Jahanian | 9d43620 | 2009-09-03 21:32:41 +0000 | [diff] [blame] | 1415 | } |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1416 | else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1417 | CXXRecordDecl *VBaseDecl = |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1418 | cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl()); |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1419 | assert(VBaseDecl && "SetBaseOrMemberInitializers - VBaseDecl null"); |
Fariborz Jahanian | 9d43620 | 2009-09-03 21:32:41 +0000 | [diff] [blame] | 1420 | CXXConstructorDecl *Ctor = VBaseDecl->getDefaultConstructor(Context); |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1421 | if (!Ctor) { |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1422 | Diag(Constructor->getLocation(), diag::err_missing_default_ctor) |
| 1423 | << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl) |
| 1424 | << 0 << VBase->getType(); |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 1425 | Diag(VBaseDecl->getLocation(), diag::note_previous_decl) |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1426 | << Context.getTagDeclType(VBaseDecl); |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 1427 | HadError = true; |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1428 | continue; |
| 1429 | } |
Fariborz Jahanian | 9d43620 | 2009-09-03 21:32:41 +0000 | [diff] [blame] | 1430 | |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1431 | ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this); |
| 1432 | if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0), |
| 1433 | Constructor->getLocation(), CtorArgs)) |
| 1434 | continue; |
| 1435 | |
| 1436 | MarkDeclarationReferenced(Constructor->getLocation(), Ctor); |
| 1437 | |
Anders Carlsson | 8db68da | 2009-11-13 20:11:49 +0000 | [diff] [blame] | 1438 | // FIXME: CXXBaseOrMemberInitializer should only contain a single |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1439 | // subexpression so we can wrap it in a CXXExprWithTemporaries if |
| 1440 | // necessary. |
| 1441 | // FIXME: Is there any better source-location information we can give? |
Anders Carlsson | 8db68da | 2009-11-13 20:11:49 +0000 | [diff] [blame] | 1442 | ExprTemporaries.clear(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1443 | CXXBaseOrMemberInitializer *Member = |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1444 | new (Context) CXXBaseOrMemberInitializer(Context, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1445 | Context.getTrivialTypeSourceInfo(VBase->getType(), |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1446 | SourceLocation()), |
| 1447 | Ctor, |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1448 | SourceLocation(), |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1449 | CtorArgs.takeAs<Expr>(), |
| 1450 | CtorArgs.size(), |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1451 | SourceLocation()); |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1452 | AllToInit.push_back(Member); |
| 1453 | } |
| 1454 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1455 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1456 | for (CXXRecordDecl::base_class_iterator Base = |
| 1457 | ClassDecl->bases_begin(), |
| 1458 | E = ClassDecl->bases_end(); Base != E; ++Base) { |
| 1459 | // Virtuals are in the virtual base list and already constructed. |
| 1460 | if (Base->isVirtual()) |
| 1461 | continue; |
| 1462 | // Skip dependent types. |
| 1463 | if (Base->getType()->isDependentType()) |
| 1464 | continue; |
Douglas Gregor | c07a494 | 2009-11-15 08:51:10 +0000 | [diff] [blame] | 1465 | if (CXXBaseOrMemberInitializer *Value |
| 1466 | = AllBaseFields.lookup(Base->getType()->getAs<RecordType>())) { |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1467 | AllToInit.push_back(Value); |
Fariborz Jahanian | 9d43620 | 2009-09-03 21:32:41 +0000 | [diff] [blame] | 1468 | } |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1469 | else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1470 | CXXRecordDecl *BaseDecl = |
Fariborz Jahanian | 9d43620 | 2009-09-03 21:32:41 +0000 | [diff] [blame] | 1471 | cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1472 | assert(BaseDecl && "SetBaseOrMemberInitializers - BaseDecl null"); |
Fariborz Jahanian | 9d43620 | 2009-09-03 21:32:41 +0000 | [diff] [blame] | 1473 | CXXConstructorDecl *Ctor = BaseDecl->getDefaultConstructor(Context); |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1474 | if (!Ctor) { |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1475 | Diag(Constructor->getLocation(), diag::err_missing_default_ctor) |
| 1476 | << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl) |
| 1477 | << 0 << Base->getType(); |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 1478 | Diag(BaseDecl->getLocation(), diag::note_previous_decl) |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1479 | << Context.getTagDeclType(BaseDecl); |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 1480 | HadError = true; |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1481 | continue; |
| 1482 | } |
| 1483 | |
| 1484 | ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this); |
| 1485 | if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0), |
| 1486 | Constructor->getLocation(), CtorArgs)) |
| 1487 | continue; |
| 1488 | |
| 1489 | MarkDeclarationReferenced(Constructor->getLocation(), Ctor); |
Fariborz Jahanian | 9d43620 | 2009-09-03 21:32:41 +0000 | [diff] [blame] | 1490 | |
Anders Carlsson | 8db68da | 2009-11-13 20:11:49 +0000 | [diff] [blame] | 1491 | // FIXME: CXXBaseOrMemberInitializer should only contain a single |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1492 | // subexpression so we can wrap it in a CXXExprWithTemporaries if |
| 1493 | // necessary. |
| 1494 | // FIXME: Is there any better source-location information we can give? |
Anders Carlsson | 8db68da | 2009-11-13 20:11:49 +0000 | [diff] [blame] | 1495 | ExprTemporaries.clear(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1496 | CXXBaseOrMemberInitializer *Member = |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1497 | new (Context) CXXBaseOrMemberInitializer(Context, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 1498 | Context.getTrivialTypeSourceInfo(Base->getType(), |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1499 | SourceLocation()), |
| 1500 | Ctor, |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1501 | SourceLocation(), |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1502 | CtorArgs.takeAs<Expr>(), |
| 1503 | CtorArgs.size(), |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1504 | SourceLocation()); |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1505 | AllToInit.push_back(Member); |
| 1506 | } |
| 1507 | } |
| 1508 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1509 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1510 | // non-static data members. |
| 1511 | for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(), |
| 1512 | E = ClassDecl->field_end(); Field != E; ++Field) { |
| 1513 | if ((*Field)->isAnonymousStructOrUnion()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1514 | if (const RecordType *FieldClassType = |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1515 | Field->getType()->getAs<RecordType>()) { |
| 1516 | CXXRecordDecl *FieldClassDecl |
Douglas Gregor | afe7ec2 | 2009-11-13 18:34:26 +0000 | [diff] [blame] | 1517 | = cast<CXXRecordDecl>(FieldClassType->getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1518 | for (RecordDecl::field_iterator FA = FieldClassDecl->field_begin(), |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1519 | EA = FieldClassDecl->field_end(); FA != EA; FA++) { |
| 1520 | if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*FA)) { |
| 1521 | // 'Member' is the anonymous union field and 'AnonUnionMember' is |
| 1522 | // set to the anonymous union data member used in the initializer |
| 1523 | // list. |
| 1524 | Value->setMember(*Field); |
| 1525 | Value->setAnonUnionMember(*FA); |
| 1526 | AllToInit.push_back(Value); |
| 1527 | break; |
| 1528 | } |
| 1529 | } |
| 1530 | } |
| 1531 | continue; |
| 1532 | } |
| 1533 | if (CXXBaseOrMemberInitializer *Value = AllBaseFields.lookup(*Field)) { |
| 1534 | AllToInit.push_back(Value); |
| 1535 | continue; |
| 1536 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1537 | |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1538 | if ((*Field)->getType()->isDependentType()) |
Douglas Gregor | 1fe6b91 | 2009-11-04 17:16:11 +0000 | [diff] [blame] | 1539 | continue; |
Douglas Gregor | 1fe6b91 | 2009-11-04 17:16:11 +0000 | [diff] [blame] | 1540 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1541 | QualType FT = Context.getBaseElementType((*Field)->getType()); |
| 1542 | if (const RecordType* RT = FT->getAs<RecordType>()) { |
| 1543 | CXXConstructorDecl *Ctor = |
| 1544 | cast<CXXRecordDecl>(RT->getDecl())->getDefaultConstructor(Context); |
Douglas Gregor | 1fe6b91 | 2009-11-04 17:16:11 +0000 | [diff] [blame] | 1545 | if (!Ctor) { |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1546 | Diag(Constructor->getLocation(), diag::err_missing_default_ctor) |
| 1547 | << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl) |
| 1548 | << 1 << (*Field)->getDeclName(); |
| 1549 | Diag(Field->getLocation(), diag::note_field_decl); |
Douglas Gregor | 9af2f52 | 2009-12-01 16:58:18 +0000 | [diff] [blame] | 1550 | Diag(RT->getDecl()->getLocation(), diag::note_previous_decl) |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1551 | << Context.getTagDeclType(RT->getDecl()); |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 1552 | HadError = true; |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1553 | continue; |
| 1554 | } |
Eli Friedman | e73d3bc | 2009-11-16 23:07:59 +0000 | [diff] [blame] | 1555 | |
| 1556 | if (FT.isConstQualified() && Ctor->isTrivial()) { |
| 1557 | Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor) |
| 1558 | << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl) |
| 1559 | << 1 << (*Field)->getDeclName(); |
| 1560 | Diag((*Field)->getLocation(), diag::note_declared_at); |
| 1561 | HadError = true; |
| 1562 | } |
| 1563 | |
| 1564 | // Don't create initializers for trivial constructors, since they don't |
| 1565 | // actually need to be run. |
| 1566 | if (Ctor->isTrivial()) |
| 1567 | continue; |
| 1568 | |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1569 | ASTOwningVector<&ActionBase::DeleteExpr> CtorArgs(*this); |
| 1570 | if (CompleteConstructorCall(Ctor, MultiExprArg(*this, 0, 0), |
| 1571 | Constructor->getLocation(), CtorArgs)) |
| 1572 | continue; |
| 1573 | |
Anders Carlsson | 8db68da | 2009-11-13 20:11:49 +0000 | [diff] [blame] | 1574 | // FIXME: CXXBaseOrMemberInitializer should only contain a single |
| 1575 | // subexpression so we can wrap it in a CXXExprWithTemporaries if necessary. |
| 1576 | ExprTemporaries.clear(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1577 | CXXBaseOrMemberInitializer *Member = |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1578 | new (Context) CXXBaseOrMemberInitializer(Context, |
| 1579 | *Field, SourceLocation(), |
| 1580 | Ctor, |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1581 | SourceLocation(), |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1582 | CtorArgs.takeAs<Expr>(), |
| 1583 | CtorArgs.size(), |
Anders Carlsson | 0ebb6d3 | 2009-10-29 15:46:07 +0000 | [diff] [blame] | 1584 | SourceLocation()); |
| 1585 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1586 | AllToInit.push_back(Member); |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1587 | MarkDeclarationReferenced(Constructor->getLocation(), Ctor); |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1588 | } |
| 1589 | else if (FT->isReferenceType()) { |
| 1590 | Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor) |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1591 | << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl) |
| 1592 | << 0 << (*Field)->getDeclName(); |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1593 | Diag((*Field)->getLocation(), diag::note_declared_at); |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 1594 | HadError = true; |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1595 | } |
| 1596 | else if (FT.isConstQualified()) { |
| 1597 | Diag(Constructor->getLocation(), diag::err_unintialized_member_in_ctor) |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1598 | << (int)IsImplicitConstructor << Context.getTagDeclType(ClassDecl) |
| 1599 | << 1 << (*Field)->getDeclName(); |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1600 | Diag((*Field)->getLocation(), diag::note_declared_at); |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 1601 | HadError = true; |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1602 | } |
| 1603 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1604 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1605 | NumInitializers = AllToInit.size(); |
| 1606 | if (NumInitializers > 0) { |
| 1607 | Constructor->setNumBaseOrMemberInitializers(NumInitializers); |
| 1608 | CXXBaseOrMemberInitializer **baseOrMemberInitializers = |
| 1609 | new (Context) CXXBaseOrMemberInitializer*[NumInitializers]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1610 | |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1611 | Constructor->setBaseOrMemberInitializers(baseOrMemberInitializers); |
| 1612 | for (unsigned Idx = 0; Idx < NumInitializers; ++Idx) |
| 1613 | baseOrMemberInitializers[Idx] = AllToInit[Idx]; |
| 1614 | } |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 1615 | |
| 1616 | return HadError; |
Fariborz Jahanian | 80545ad | 2009-09-03 19:36:46 +0000 | [diff] [blame] | 1617 | } |
| 1618 | |
Eli Friedman | 6347f42 | 2009-07-21 19:28:10 +0000 | [diff] [blame] | 1619 | static void *GetKeyForTopLevelField(FieldDecl *Field) { |
| 1620 | // For anonymous unions, use the class declaration as the key. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1621 | if (const RecordType *RT = Field->getType()->getAs<RecordType>()) { |
Eli Friedman | 6347f42 | 2009-07-21 19:28:10 +0000 | [diff] [blame] | 1622 | if (RT->getDecl()->isAnonymousStructOrUnion()) |
| 1623 | return static_cast<void *>(RT->getDecl()); |
| 1624 | } |
| 1625 | return static_cast<void *>(Field); |
| 1626 | } |
| 1627 | |
Anders Carlsson | cdc83c7 | 2009-09-01 06:22:14 +0000 | [diff] [blame] | 1628 | static void *GetKeyForBase(QualType BaseType) { |
| 1629 | if (const RecordType *RT = BaseType->getAs<RecordType>()) |
| 1630 | return (void *)RT; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1631 | |
Anders Carlsson | cdc83c7 | 2009-09-01 06:22:14 +0000 | [diff] [blame] | 1632 | assert(0 && "Unexpected base type!"); |
| 1633 | return 0; |
| 1634 | } |
| 1635 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1636 | static void *GetKeyForMember(CXXBaseOrMemberInitializer *Member, |
Anders Carlsson | cdc83c7 | 2009-09-01 06:22:14 +0000 | [diff] [blame] | 1637 | bool MemberMaybeAnon = false) { |
Eli Friedman | 6347f42 | 2009-07-21 19:28:10 +0000 | [diff] [blame] | 1638 | // For fields injected into the class via declaration of an anonymous union, |
| 1639 | // use its anonymous union class declaration as the unique key. |
Anders Carlsson | cdc83c7 | 2009-09-01 06:22:14 +0000 | [diff] [blame] | 1640 | if (Member->isMemberInitializer()) { |
| 1641 | FieldDecl *Field = Member->getMember(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1642 | |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1643 | // After SetBaseOrMemberInitializers call, Field is the anonymous union |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1644 | // data member of the class. Data member used in the initializer list is |
Fariborz Jahanian | e649412 | 2009-08-11 18:49:54 +0000 | [diff] [blame] | 1645 | // in AnonUnionMember field. |
| 1646 | if (MemberMaybeAnon && Field->isAnonymousStructOrUnion()) |
| 1647 | Field = Member->getAnonUnionMember(); |
Eli Friedman | 6347f42 | 2009-07-21 19:28:10 +0000 | [diff] [blame] | 1648 | if (Field->getDeclContext()->isRecord()) { |
| 1649 | RecordDecl *RD = cast<RecordDecl>(Field->getDeclContext()); |
| 1650 | if (RD->isAnonymousStructOrUnion()) |
| 1651 | return static_cast<void *>(RD); |
| 1652 | } |
| 1653 | return static_cast<void *>(Field); |
| 1654 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1655 | |
Anders Carlsson | cdc83c7 | 2009-09-01 06:22:14 +0000 | [diff] [blame] | 1656 | return GetKeyForBase(QualType(Member->getBaseClass(), 0)); |
Eli Friedman | 6347f42 | 2009-07-21 19:28:10 +0000 | [diff] [blame] | 1657 | } |
| 1658 | |
John McCall | 6aee621 | 2009-11-04 23:13:52 +0000 | [diff] [blame] | 1659 | /// ActOnMemInitializers - Handle the member initializers for a constructor. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1660 | void Sema::ActOnMemInitializers(DeclPtrTy ConstructorDecl, |
Anders Carlsson | a7b3521 | 2009-03-25 02:58:17 +0000 | [diff] [blame] | 1661 | SourceLocation ColonLoc, |
| 1662 | MemInitTy **MemInits, unsigned NumMemInits) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 1663 | if (!ConstructorDecl) |
| 1664 | return; |
Douglas Gregor | efd5bda | 2009-08-24 11:57:43 +0000 | [diff] [blame] | 1665 | |
| 1666 | AdjustDeclIfTemplate(ConstructorDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1667 | |
| 1668 | CXXConstructorDecl *Constructor |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 1669 | = dyn_cast<CXXConstructorDecl>(ConstructorDecl.getAs<Decl>()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1670 | |
Anders Carlsson | a7b3521 | 2009-03-25 02:58:17 +0000 | [diff] [blame] | 1671 | if (!Constructor) { |
| 1672 | Diag(ColonLoc, diag::err_only_constructors_take_base_inits); |
| 1673 | return; |
| 1674 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1675 | |
Anders Carlsson | 8d4c5ea | 2009-08-27 05:57:30 +0000 | [diff] [blame] | 1676 | if (!Constructor->isDependentContext()) { |
| 1677 | llvm::DenseMap<void*, CXXBaseOrMemberInitializer *>Members; |
| 1678 | bool err = false; |
| 1679 | for (unsigned i = 0; i < NumMemInits; i++) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1680 | CXXBaseOrMemberInitializer *Member = |
Anders Carlsson | 8d4c5ea | 2009-08-27 05:57:30 +0000 | [diff] [blame] | 1681 | static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]); |
| 1682 | void *KeyToMember = GetKeyForMember(Member); |
| 1683 | CXXBaseOrMemberInitializer *&PrevMember = Members[KeyToMember]; |
| 1684 | if (!PrevMember) { |
| 1685 | PrevMember = Member; |
| 1686 | continue; |
| 1687 | } |
| 1688 | if (FieldDecl *Field = Member->getMember()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1689 | Diag(Member->getSourceLocation(), |
Anders Carlsson | 8d4c5ea | 2009-08-27 05:57:30 +0000 | [diff] [blame] | 1690 | diag::error_multiple_mem_initialization) |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1691 | << Field->getNameAsString() |
| 1692 | << Member->getSourceRange(); |
Anders Carlsson | 8d4c5ea | 2009-08-27 05:57:30 +0000 | [diff] [blame] | 1693 | else { |
| 1694 | Type *BaseClass = Member->getBaseClass(); |
| 1695 | assert(BaseClass && "ActOnMemInitializers - neither field or base"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1696 | Diag(Member->getSourceLocation(), |
Anders Carlsson | 8d4c5ea | 2009-08-27 05:57:30 +0000 | [diff] [blame] | 1697 | diag::error_multiple_base_initialization) |
Douglas Gregor | 802ab45 | 2009-12-02 22:36:29 +0000 | [diff] [blame] | 1698 | << QualType(BaseClass, 0) |
| 1699 | << Member->getSourceRange(); |
Anders Carlsson | 8d4c5ea | 2009-08-27 05:57:30 +0000 | [diff] [blame] | 1700 | } |
| 1701 | Diag(PrevMember->getSourceLocation(), diag::note_previous_initializer) |
| 1702 | << 0; |
| 1703 | err = true; |
| 1704 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1705 | |
Anders Carlsson | 8d4c5ea | 2009-08-27 05:57:30 +0000 | [diff] [blame] | 1706 | if (err) |
| 1707 | return; |
| 1708 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1709 | |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1710 | SetBaseOrMemberInitializers(Constructor, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1711 | reinterpret_cast<CXXBaseOrMemberInitializer **>(MemInits), |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1712 | NumMemInits, false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1713 | |
Anders Carlsson | 8d4c5ea | 2009-08-27 05:57:30 +0000 | [diff] [blame] | 1714 | if (Constructor->isDependentContext()) |
| 1715 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1716 | |
| 1717 | if (Diags.getDiagnosticLevel(diag::warn_base_initialized) == |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1718 | Diagnostic::Ignored && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1719 | Diags.getDiagnosticLevel(diag::warn_field_initialized) == |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1720 | Diagnostic::Ignored) |
| 1721 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1722 | |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1723 | // Also issue warning if order of ctor-initializer list does not match order |
| 1724 | // of 1) base class declarations and 2) order of non-static data members. |
| 1725 | llvm::SmallVector<const void*, 32> AllBaseOrMembers; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1726 | |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1727 | CXXRecordDecl *ClassDecl |
| 1728 | = cast<CXXRecordDecl>(Constructor->getDeclContext()); |
| 1729 | // Push virtual bases before others. |
| 1730 | for (CXXRecordDecl::base_class_iterator VBase = |
| 1731 | ClassDecl->vbases_begin(), |
| 1732 | E = ClassDecl->vbases_end(); VBase != E; ++VBase) |
Anders Carlsson | cdc83c7 | 2009-09-01 06:22:14 +0000 | [diff] [blame] | 1733 | AllBaseOrMembers.push_back(GetKeyForBase(VBase->getType())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1734 | |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1735 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(), |
| 1736 | E = ClassDecl->bases_end(); Base != E; ++Base) { |
| 1737 | // Virtuals are alread in the virtual base list and are constructed |
| 1738 | // first. |
| 1739 | if (Base->isVirtual()) |
| 1740 | continue; |
Anders Carlsson | cdc83c7 | 2009-09-01 06:22:14 +0000 | [diff] [blame] | 1741 | AllBaseOrMembers.push_back(GetKeyForBase(Base->getType())); |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1742 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1743 | |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1744 | for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(), |
| 1745 | E = ClassDecl->field_end(); Field != E; ++Field) |
| 1746 | AllBaseOrMembers.push_back(GetKeyForTopLevelField(*Field)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1747 | |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1748 | int Last = AllBaseOrMembers.size(); |
| 1749 | int curIndex = 0; |
| 1750 | CXXBaseOrMemberInitializer *PrevMember = 0; |
| 1751 | for (unsigned i = 0; i < NumMemInits; i++) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1752 | CXXBaseOrMemberInitializer *Member = |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1753 | static_cast<CXXBaseOrMemberInitializer*>(MemInits[i]); |
| 1754 | void *MemberInCtorList = GetKeyForMember(Member, true); |
Eli Friedman | 6347f42 | 2009-07-21 19:28:10 +0000 | [diff] [blame] | 1755 | |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1756 | for (; curIndex < Last; curIndex++) |
| 1757 | if (MemberInCtorList == AllBaseOrMembers[curIndex]) |
| 1758 | break; |
| 1759 | if (curIndex == Last) { |
| 1760 | assert(PrevMember && "Member not in member list?!"); |
| 1761 | // Initializer as specified in ctor-initializer list is out of order. |
| 1762 | // Issue a warning diagnostic. |
| 1763 | if (PrevMember->isBaseInitializer()) { |
| 1764 | // Diagnostics is for an initialized base class. |
| 1765 | Type *BaseClass = PrevMember->getBaseClass(); |
| 1766 | Diag(PrevMember->getSourceLocation(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1767 | diag::warn_base_initialized) |
John McCall | bf1cc05 | 2009-09-29 23:03:30 +0000 | [diff] [blame] | 1768 | << QualType(BaseClass, 0); |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1769 | } else { |
| 1770 | FieldDecl *Field = PrevMember->getMember(); |
| 1771 | Diag(PrevMember->getSourceLocation(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1772 | diag::warn_field_initialized) |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1773 | << Field->getNameAsString(); |
Fariborz Jahanian | eb96e12 | 2009-07-09 19:59:47 +0000 | [diff] [blame] | 1774 | } |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1775 | // Also the note! |
| 1776 | if (FieldDecl *Field = Member->getMember()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1777 | Diag(Member->getSourceLocation(), |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1778 | diag::note_fieldorbase_initialized_here) << 0 |
| 1779 | << Field->getNameAsString(); |
| 1780 | else { |
| 1781 | Type *BaseClass = Member->getBaseClass(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1782 | Diag(Member->getSourceLocation(), |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1783 | diag::note_fieldorbase_initialized_here) << 1 |
John McCall | bf1cc05 | 2009-09-29 23:03:30 +0000 | [diff] [blame] | 1784 | << QualType(BaseClass, 0); |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1785 | } |
| 1786 | for (curIndex = 0; curIndex < Last; curIndex++) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1787 | if (MemberInCtorList == AllBaseOrMembers[curIndex]) |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1788 | break; |
Fariborz Jahanian | eb96e12 | 2009-07-09 19:59:47 +0000 | [diff] [blame] | 1789 | } |
Anders Carlsson | 5c36fb2 | 2009-08-27 05:45:01 +0000 | [diff] [blame] | 1790 | PrevMember = Member; |
Fariborz Jahanian | eb96e12 | 2009-07-09 19:59:47 +0000 | [diff] [blame] | 1791 | } |
Anders Carlsson | a7b3521 | 2009-03-25 02:58:17 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
Fariborz Jahanian | 34374e6 | 2009-09-03 23:18:17 +0000 | [diff] [blame] | 1794 | void |
Anders Carlsson | 9f853df | 2009-11-17 04:44:12 +0000 | [diff] [blame] | 1795 | Sema::MarkBaseAndMemberDestructorsReferenced(CXXDestructorDecl *Destructor) { |
| 1796 | // Ignore dependent destructors. |
| 1797 | if (Destructor->isDependentContext()) |
| 1798 | return; |
| 1799 | |
| 1800 | CXXRecordDecl *ClassDecl = Destructor->getParent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1801 | |
Anders Carlsson | 9f853df | 2009-11-17 04:44:12 +0000 | [diff] [blame] | 1802 | // Non-static data members. |
| 1803 | for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(), |
| 1804 | E = ClassDecl->field_end(); I != E; ++I) { |
| 1805 | FieldDecl *Field = *I; |
| 1806 | |
| 1807 | QualType FieldType = Context.getBaseElementType(Field->getType()); |
| 1808 | |
| 1809 | const RecordType* RT = FieldType->getAs<RecordType>(); |
| 1810 | if (!RT) |
| 1811 | continue; |
| 1812 | |
| 1813 | CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl()); |
| 1814 | if (FieldClassDecl->hasTrivialDestructor()) |
| 1815 | continue; |
| 1816 | |
| 1817 | const CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor(Context); |
| 1818 | MarkDeclarationReferenced(Destructor->getLocation(), |
| 1819 | const_cast<CXXDestructorDecl*>(Dtor)); |
| 1820 | } |
| 1821 | |
| 1822 | // Bases. |
| 1823 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(), |
| 1824 | E = ClassDecl->bases_end(); Base != E; ++Base) { |
| 1825 | // Ignore virtual bases. |
| 1826 | if (Base->isVirtual()) |
| 1827 | continue; |
| 1828 | |
| 1829 | // Ignore trivial destructors. |
| 1830 | CXXRecordDecl *BaseClassDecl |
| 1831 | = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
| 1832 | if (BaseClassDecl->hasTrivialDestructor()) |
| 1833 | continue; |
| 1834 | |
| 1835 | const CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context); |
| 1836 | MarkDeclarationReferenced(Destructor->getLocation(), |
| 1837 | const_cast<CXXDestructorDecl*>(Dtor)); |
| 1838 | } |
| 1839 | |
| 1840 | // Virtual bases. |
Fariborz Jahanian | 34374e6 | 2009-09-03 23:18:17 +0000 | [diff] [blame] | 1841 | for (CXXRecordDecl::base_class_iterator VBase = ClassDecl->vbases_begin(), |
| 1842 | E = ClassDecl->vbases_end(); VBase != E; ++VBase) { |
Anders Carlsson | 9f853df | 2009-11-17 04:44:12 +0000 | [diff] [blame] | 1843 | // Ignore trivial destructors. |
Fariborz Jahanian | 34374e6 | 2009-09-03 23:18:17 +0000 | [diff] [blame] | 1844 | CXXRecordDecl *BaseClassDecl |
| 1845 | = cast<CXXRecordDecl>(VBase->getType()->getAs<RecordType>()->getDecl()); |
| 1846 | if (BaseClassDecl->hasTrivialDestructor()) |
| 1847 | continue; |
Anders Carlsson | 9f853df | 2009-11-17 04:44:12 +0000 | [diff] [blame] | 1848 | |
| 1849 | const CXXDestructorDecl *Dtor = BaseClassDecl->getDestructor(Context); |
| 1850 | MarkDeclarationReferenced(Destructor->getLocation(), |
| 1851 | const_cast<CXXDestructorDecl*>(Dtor)); |
Fariborz Jahanian | 34374e6 | 2009-09-03 23:18:17 +0000 | [diff] [blame] | 1852 | } |
| 1853 | } |
| 1854 | |
Fariborz Jahanian | 393612e | 2009-07-21 22:36:06 +0000 | [diff] [blame] | 1855 | void Sema::ActOnDefaultCtorInitializers(DeclPtrTy CDtorDecl) { |
Fariborz Jahanian | 560de45 | 2009-07-15 22:34:08 +0000 | [diff] [blame] | 1856 | if (!CDtorDecl) |
Fariborz Jahanian | d01c915 | 2009-07-14 18:24:21 +0000 | [diff] [blame] | 1857 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1858 | |
Douglas Gregor | efd5bda | 2009-08-24 11:57:43 +0000 | [diff] [blame] | 1859 | AdjustDeclIfTemplate(CDtorDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1860 | |
| 1861 | if (CXXConstructorDecl *Constructor |
Fariborz Jahanian | 560de45 | 2009-07-15 22:34:08 +0000 | [diff] [blame] | 1862 | = dyn_cast<CXXConstructorDecl>(CDtorDecl.getAs<Decl>())) |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 1863 | SetBaseOrMemberInitializers(Constructor, 0, 0, false); |
Fariborz Jahanian | d01c915 | 2009-07-14 18:24:21 +0000 | [diff] [blame] | 1864 | } |
| 1865 | |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1866 | namespace { |
| 1867 | /// PureVirtualMethodCollector - traverses a class and its superclasses |
| 1868 | /// and determines if it has any pure virtual methods. |
Benjamin Kramer | 85b4521 | 2009-11-28 19:45:26 +0000 | [diff] [blame] | 1869 | class PureVirtualMethodCollector { |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1870 | ASTContext &Context; |
| 1871 | |
Sebastian Redl | dfe292d | 2009-03-22 21:28:55 +0000 | [diff] [blame] | 1872 | public: |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1873 | typedef llvm::SmallVector<const CXXMethodDecl*, 8> MethodList; |
Sebastian Redl | dfe292d | 2009-03-22 21:28:55 +0000 | [diff] [blame] | 1874 | |
| 1875 | private: |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1876 | MethodList Methods; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1877 | |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1878 | void Collect(const CXXRecordDecl* RD, MethodList& Methods); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1879 | |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1880 | public: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1881 | PureVirtualMethodCollector(ASTContext &Ctx, const CXXRecordDecl* RD) |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1882 | : Context(Ctx) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1883 | |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1884 | MethodList List; |
| 1885 | Collect(RD, List); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1886 | |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1887 | // Copy the temporary list to methods, and make sure to ignore any |
| 1888 | // null entries. |
| 1889 | for (size_t i = 0, e = List.size(); i != e; ++i) { |
| 1890 | if (List[i]) |
| 1891 | Methods.push_back(List[i]); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1892 | } |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1893 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1894 | |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 1895 | bool empty() const { return Methods.empty(); } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1896 | |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 1897 | MethodList::const_iterator methods_begin() { return Methods.begin(); } |
| 1898 | MethodList::const_iterator methods_end() { return Methods.end(); } |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1899 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1900 | |
| 1901 | void PureVirtualMethodCollector::Collect(const CXXRecordDecl* RD, |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1902 | MethodList& Methods) { |
| 1903 | // First, collect the pure virtual methods for the base classes. |
| 1904 | for (CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(), |
| 1905 | BaseEnd = RD->bases_end(); Base != BaseEnd; ++Base) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1906 | if (const RecordType *RT = Base->getType()->getAs<RecordType>()) { |
Chris Lattner | 64540d7 | 2009-03-29 05:01:10 +0000 | [diff] [blame] | 1907 | const CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(RT->getDecl()); |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1908 | if (BaseDecl && BaseDecl->isAbstract()) |
| 1909 | Collect(BaseDecl, Methods); |
| 1910 | } |
| 1911 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1912 | |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1913 | // Next, zero out any pure virtual methods that this class overrides. |
Anders Carlsson | 8ff8c22 | 2009-05-17 00:00:05 +0000 | [diff] [blame] | 1914 | typedef llvm::SmallPtrSet<const CXXMethodDecl*, 4> MethodSetTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1915 | |
Anders Carlsson | 8ff8c22 | 2009-05-17 00:00:05 +0000 | [diff] [blame] | 1916 | MethodSetTy OverriddenMethods; |
| 1917 | size_t MethodsSize = Methods.size(); |
| 1918 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1919 | for (RecordDecl::decl_iterator i = RD->decls_begin(), e = RD->decls_end(); |
Anders Carlsson | 8ff8c22 | 2009-05-17 00:00:05 +0000 | [diff] [blame] | 1920 | i != e; ++i) { |
| 1921 | // Traverse the record, looking for methods. |
| 1922 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(*i)) { |
Sebastian Redl | 23c7d06 | 2009-07-07 20:29:57 +0000 | [diff] [blame] | 1923 | // If the method is pure virtual, add it to the methods vector. |
Anders Carlsson | 2782302 | 2009-10-18 19:34:08 +0000 | [diff] [blame] | 1924 | if (MD->isPure()) |
Anders Carlsson | 8ff8c22 | 2009-05-17 00:00:05 +0000 | [diff] [blame] | 1925 | Methods.push_back(MD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1926 | |
Anders Carlsson | 2782302 | 2009-10-18 19:34:08 +0000 | [diff] [blame] | 1927 | // Record all the overridden methods in our set. |
Anders Carlsson | 8ff8c22 | 2009-05-17 00:00:05 +0000 | [diff] [blame] | 1928 | for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(), |
| 1929 | E = MD->end_overridden_methods(); I != E; ++I) { |
| 1930 | // Keep track of the overridden methods. |
| 1931 | OverriddenMethods.insert(*I); |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1932 | } |
| 1933 | } |
| 1934 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1935 | |
| 1936 | // Now go through the methods and zero out all the ones we know are |
Anders Carlsson | 8ff8c22 | 2009-05-17 00:00:05 +0000 | [diff] [blame] | 1937 | // overridden. |
| 1938 | for (size_t i = 0, e = MethodsSize; i != e; ++i) { |
| 1939 | if (OverriddenMethods.count(Methods[i])) |
| 1940 | Methods[i] = 0; |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1941 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1942 | |
Anders Carlsson | 67e4dd2 | 2009-03-22 01:52:17 +0000 | [diff] [blame] | 1943 | } |
| 1944 | } |
Douglas Gregor | 7ad8390 | 2008-11-05 04:29:56 +0000 | [diff] [blame] | 1945 | |
Anders Carlsson | a6ec7ad | 2009-08-27 00:13:57 +0000 | [diff] [blame] | 1946 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1947 | bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 1948 | unsigned DiagID, AbstractDiagSelID SelID, |
| 1949 | const CXXRecordDecl *CurrentRD) { |
Anders Carlsson | a6ec7ad | 2009-08-27 00:13:57 +0000 | [diff] [blame] | 1950 | if (SelID == -1) |
| 1951 | return RequireNonAbstractType(Loc, T, |
| 1952 | PDiag(DiagID), CurrentRD); |
| 1953 | else |
| 1954 | return RequireNonAbstractType(Loc, T, |
| 1955 | PDiag(DiagID) << SelID, CurrentRD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1956 | } |
| 1957 | |
Anders Carlsson | a6ec7ad | 2009-08-27 00:13:57 +0000 | [diff] [blame] | 1958 | bool Sema::RequireNonAbstractType(SourceLocation Loc, QualType T, |
| 1959 | const PartialDiagnostic &PD, |
| 1960 | const CXXRecordDecl *CurrentRD) { |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 1961 | if (!getLangOptions().CPlusPlus) |
| 1962 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1963 | |
Anders Carlsson | 11f21a0 | 2009-03-23 19:10:31 +0000 | [diff] [blame] | 1964 | if (const ArrayType *AT = Context.getAsArrayType(T)) |
Anders Carlsson | a6ec7ad | 2009-08-27 00:13:57 +0000 | [diff] [blame] | 1965 | return RequireNonAbstractType(Loc, AT->getElementType(), PD, |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 1966 | CurrentRD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1967 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1968 | if (const PointerType *PT = T->getAs<PointerType>()) { |
Anders Carlsson | 5eff73c | 2009-03-24 01:46:45 +0000 | [diff] [blame] | 1969 | // Find the innermost pointer type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1970 | while (const PointerType *T = PT->getPointeeType()->getAs<PointerType>()) |
Anders Carlsson | 5eff73c | 2009-03-24 01:46:45 +0000 | [diff] [blame] | 1971 | PT = T; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1972 | |
Anders Carlsson | 5eff73c | 2009-03-24 01:46:45 +0000 | [diff] [blame] | 1973 | if (const ArrayType *AT = Context.getAsArrayType(PT->getPointeeType())) |
Anders Carlsson | a6ec7ad | 2009-08-27 00:13:57 +0000 | [diff] [blame] | 1974 | return RequireNonAbstractType(Loc, AT->getElementType(), PD, CurrentRD); |
Anders Carlsson | 5eff73c | 2009-03-24 01:46:45 +0000 | [diff] [blame] | 1975 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1976 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1977 | const RecordType *RT = T->getAs<RecordType>(); |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 1978 | if (!RT) |
| 1979 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1980 | |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 1981 | const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()); |
| 1982 | if (!RD) |
| 1983 | return false; |
| 1984 | |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 1985 | if (CurrentRD && CurrentRD != RD) |
| 1986 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1987 | |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 1988 | if (!RD->isAbstract()) |
| 1989 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1990 | |
Anders Carlsson | a6ec7ad | 2009-08-27 00:13:57 +0000 | [diff] [blame] | 1991 | Diag(Loc, PD) << RD->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1992 | |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 1993 | // Check if we've already emitted the list of pure virtual functions for this |
| 1994 | // class. |
| 1995 | if (PureVirtualClassDiagSet && PureVirtualClassDiagSet->count(RD)) |
| 1996 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1997 | |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 1998 | PureVirtualMethodCollector Collector(Context, RD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1999 | |
| 2000 | for (PureVirtualMethodCollector::MethodList::const_iterator I = |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 2001 | Collector.methods_begin(), E = Collector.methods_end(); I != E; ++I) { |
| 2002 | const CXXMethodDecl *MD = *I; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2003 | |
| 2004 | Diag(MD->getLocation(), diag::note_pure_virtual_function) << |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 2005 | MD->getDeclName(); |
| 2006 | } |
| 2007 | |
| 2008 | if (!PureVirtualClassDiagSet) |
| 2009 | PureVirtualClassDiagSet.reset(new RecordDeclSetTy); |
| 2010 | PureVirtualClassDiagSet->insert(RD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2011 | |
Anders Carlsson | 4681ebd | 2009-03-22 20:18:17 +0000 | [diff] [blame] | 2012 | return true; |
| 2013 | } |
| 2014 | |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2015 | namespace { |
Benjamin Kramer | 85b4521 | 2009-11-28 19:45:26 +0000 | [diff] [blame] | 2016 | class AbstractClassUsageDiagnoser |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2017 | : public DeclVisitor<AbstractClassUsageDiagnoser, bool> { |
| 2018 | Sema &SemaRef; |
| 2019 | CXXRecordDecl *AbstractClass; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2020 | |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2021 | bool VisitDeclContext(const DeclContext *DC) { |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2022 | bool Invalid = false; |
| 2023 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2024 | for (CXXRecordDecl::decl_iterator I = DC->decls_begin(), |
| 2025 | E = DC->decls_end(); I != E; ++I) |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2026 | Invalid |= Visit(*I); |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2027 | |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2028 | return Invalid; |
| 2029 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2030 | |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2031 | public: |
| 2032 | AbstractClassUsageDiagnoser(Sema& SemaRef, CXXRecordDecl *ac) |
| 2033 | : SemaRef(SemaRef), AbstractClass(ac) { |
| 2034 | Visit(SemaRef.Context.getTranslationUnitDecl()); |
| 2035 | } |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2036 | |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2037 | bool VisitFunctionDecl(const FunctionDecl *FD) { |
| 2038 | if (FD->isThisDeclarationADefinition()) { |
| 2039 | // No need to do the check if we're in a definition, because it requires |
| 2040 | // that the return/param types are complete. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2041 | // because that requires |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2042 | return VisitDeclContext(FD); |
| 2043 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2044 | |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2045 | // Check the return type. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2046 | QualType RTy = FD->getType()->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2047 | bool Invalid = |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2048 | SemaRef.RequireNonAbstractType(FD->getLocation(), RTy, |
| 2049 | diag::err_abstract_type_in_decl, |
| 2050 | Sema::AbstractReturnType, |
| 2051 | AbstractClass); |
| 2052 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2053 | for (FunctionDecl::param_const_iterator I = FD->param_begin(), |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2054 | E = FD->param_end(); I != E; ++I) { |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2055 | const ParmVarDecl *VD = *I; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2056 | Invalid |= |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2057 | SemaRef.RequireNonAbstractType(VD->getLocation(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2058 | VD->getOriginalType(), |
| 2059 | diag::err_abstract_type_in_decl, |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2060 | Sema::AbstractParamType, |
| 2061 | AbstractClass); |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2062 | } |
| 2063 | |
| 2064 | return Invalid; |
| 2065 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2066 | |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2067 | bool VisitDecl(const Decl* D) { |
| 2068 | if (const DeclContext *DC = dyn_cast<DeclContext>(D)) |
| 2069 | return VisitDeclContext(DC); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2070 | |
Anders Carlsson | e65a3c8 | 2009-03-24 17:23:42 +0000 | [diff] [blame] | 2071 | return false; |
| 2072 | } |
Anders Carlsson | 8211eff | 2009-03-24 01:19:16 +0000 | [diff] [blame] | 2073 | }; |
| 2074 | } |
| 2075 | |
Douglas Gregor | 1ab537b | 2009-12-03 18:33:45 +0000 | [diff] [blame] | 2076 | /// \brief Perform semantic checks on a class definition that has been |
| 2077 | /// completing, introducing implicitly-declared members, checking for |
| 2078 | /// abstract types, etc. |
| 2079 | void Sema::CheckCompletedCXXClass(CXXRecordDecl *Record) { |
| 2080 | if (!Record || Record->isInvalidDecl()) |
| 2081 | return; |
| 2082 | |
Eli Friedman | ff2d878 | 2009-12-16 20:00:27 +0000 | [diff] [blame] | 2083 | if (!Record->isDependentType()) |
| 2084 | AddImplicitlyDeclaredMembersToClass(Record); |
Douglas Gregor | 159ef1e | 2010-01-06 04:44:19 +0000 | [diff] [blame] | 2085 | |
Eli Friedman | ff2d878 | 2009-12-16 20:00:27 +0000 | [diff] [blame] | 2086 | if (Record->isInvalidDecl()) |
| 2087 | return; |
| 2088 | |
Douglas Gregor | 1ab537b | 2009-12-03 18:33:45 +0000 | [diff] [blame] | 2089 | if (!Record->isAbstract()) { |
| 2090 | // Collect all the pure virtual methods and see if this is an abstract |
| 2091 | // class after all. |
| 2092 | PureVirtualMethodCollector Collector(Context, Record); |
| 2093 | if (!Collector.empty()) |
| 2094 | Record->setAbstract(true); |
| 2095 | } |
| 2096 | |
| 2097 | if (Record->isAbstract()) |
| 2098 | (void)AbstractClassUsageDiagnoser(*this, Record); |
Douglas Gregor | 1ab537b | 2009-12-03 18:33:45 +0000 | [diff] [blame] | 2099 | } |
| 2100 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2101 | void Sema::ActOnFinishCXXMemberSpecification(Scope* S, SourceLocation RLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2102 | DeclPtrTy TagDecl, |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2103 | SourceLocation LBrac, |
| 2104 | SourceLocation RBrac) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 2105 | if (!TagDecl) |
| 2106 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2107 | |
Douglas Gregor | 42af25f | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 2108 | AdjustDeclIfTemplate(TagDecl); |
Douglas Gregor | 1ab537b | 2009-12-03 18:33:45 +0000 | [diff] [blame] | 2109 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2110 | ActOnFields(S, RLoc, TagDecl, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2111 | (DeclPtrTy*)FieldCollector->getCurFields(), |
Daniel Dunbar | 1bfe1c2 | 2008-10-03 02:03:53 +0000 | [diff] [blame] | 2112 | FieldCollector->getCurNumFields(), LBrac, RBrac, 0); |
Douglas Gregor | 2943aed | 2009-03-03 04:44:36 +0000 | [diff] [blame] | 2113 | |
Douglas Gregor | 1ab537b | 2009-12-03 18:33:45 +0000 | [diff] [blame] | 2114 | CheckCompletedCXXClass( |
| 2115 | dyn_cast_or_null<CXXRecordDecl>(TagDecl.getAs<Decl>())); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2116 | } |
| 2117 | |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2118 | /// AddImplicitlyDeclaredMembersToClass - Adds any implicitly-declared |
| 2119 | /// special functions, such as the default constructor, copy |
| 2120 | /// constructor, or destructor, to the given C++ class (C++ |
| 2121 | /// [special]p1). This routine can only be executed just before the |
| 2122 | /// definition of the class is complete. |
| 2123 | void Sema::AddImplicitlyDeclaredMembersToClass(CXXRecordDecl *ClassDecl) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2124 | CanQualType ClassType |
Douglas Gregor | 50d62d1 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 2125 | = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2126 | |
Sebastian Redl | 465226e | 2009-05-27 22:11:52 +0000 | [diff] [blame] | 2127 | // FIXME: Implicit declarations have exception specifications, which are |
| 2128 | // the union of the specifications of the implicitly called functions. |
| 2129 | |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2130 | if (!ClassDecl->hasUserDeclaredConstructor()) { |
| 2131 | // C++ [class.ctor]p5: |
| 2132 | // A default constructor for a class X is a constructor of class X |
| 2133 | // that can be called without an argument. If there is no |
| 2134 | // user-declared constructor for class X, a default constructor is |
| 2135 | // implicitly declared. An implicitly-declared default constructor |
| 2136 | // is an inline public member of its class. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2137 | DeclarationName Name |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2138 | = Context.DeclarationNames.getCXXConstructorName(ClassType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2139 | CXXConstructorDecl *DefaultCon = |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2140 | CXXConstructorDecl::Create(Context, ClassDecl, |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2141 | ClassDecl->getLocation(), Name, |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2142 | Context.getFunctionType(Context.VoidTy, |
| 2143 | 0, 0, false, 0), |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2144 | /*TInfo=*/0, |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2145 | /*isExplicit=*/false, |
| 2146 | /*isInline=*/true, |
| 2147 | /*isImplicitlyDeclared=*/true); |
| 2148 | DefaultCon->setAccess(AS_public); |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 2149 | DefaultCon->setImplicit(); |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 2150 | DefaultCon->setTrivial(ClassDecl->hasTrivialConstructor()); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2151 | ClassDecl->addDecl(DefaultCon); |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2152 | } |
| 2153 | |
| 2154 | if (!ClassDecl->hasUserDeclaredCopyConstructor()) { |
| 2155 | // C++ [class.copy]p4: |
| 2156 | // If the class definition does not explicitly declare a copy |
| 2157 | // constructor, one is declared implicitly. |
| 2158 | |
| 2159 | // C++ [class.copy]p5: |
| 2160 | // The implicitly-declared copy constructor for a class X will |
| 2161 | // have the form |
| 2162 | // |
| 2163 | // X::X(const X&) |
| 2164 | // |
| 2165 | // if |
| 2166 | bool HasConstCopyConstructor = true; |
| 2167 | |
| 2168 | // -- each direct or virtual base class B of X has a copy |
| 2169 | // constructor whose first parameter is of type const B& or |
| 2170 | // const volatile B&, and |
| 2171 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(); |
| 2172 | HasConstCopyConstructor && Base != ClassDecl->bases_end(); ++Base) { |
| 2173 | const CXXRecordDecl *BaseClassDecl |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2174 | = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2175 | HasConstCopyConstructor |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2176 | = BaseClassDecl->hasConstCopyConstructor(Context); |
| 2177 | } |
| 2178 | |
| 2179 | // -- for all the nonstatic data members of X that are of a |
| 2180 | // class type M (or array thereof), each such class type |
| 2181 | // has a copy constructor whose first parameter is of type |
| 2182 | // const M& or const volatile M&. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2183 | for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(); |
| 2184 | HasConstCopyConstructor && Field != ClassDecl->field_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2185 | ++Field) { |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2186 | QualType FieldType = (*Field)->getType(); |
| 2187 | if (const ArrayType *Array = Context.getAsArrayType(FieldType)) |
| 2188 | FieldType = Array->getElementType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2189 | if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2190 | const CXXRecordDecl *FieldClassDecl |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2191 | = cast<CXXRecordDecl>(FieldClassType->getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2192 | HasConstCopyConstructor |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2193 | = FieldClassDecl->hasConstCopyConstructor(Context); |
| 2194 | } |
| 2195 | } |
| 2196 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2197 | // Otherwise, the implicitly declared copy constructor will have |
| 2198 | // the form |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2199 | // |
| 2200 | // X::X(X&) |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2201 | QualType ArgType = ClassType; |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2202 | if (HasConstCopyConstructor) |
| 2203 | ArgType = ArgType.withConst(); |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 2204 | ArgType = Context.getLValueReferenceType(ArgType); |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2205 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2206 | // An implicitly-declared copy constructor is an inline public |
| 2207 | // member of its class. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2208 | DeclarationName Name |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2209 | = Context.DeclarationNames.getCXXConstructorName(ClassType); |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2210 | CXXConstructorDecl *CopyConstructor |
| 2211 | = CXXConstructorDecl::Create(Context, ClassDecl, |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2212 | ClassDecl->getLocation(), Name, |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2213 | Context.getFunctionType(Context.VoidTy, |
| 2214 | &ArgType, 1, |
| 2215 | false, 0), |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2216 | /*TInfo=*/0, |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2217 | /*isExplicit=*/false, |
| 2218 | /*isInline=*/true, |
| 2219 | /*isImplicitlyDeclared=*/true); |
| 2220 | CopyConstructor->setAccess(AS_public); |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 2221 | CopyConstructor->setImplicit(); |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 2222 | CopyConstructor->setTrivial(ClassDecl->hasTrivialCopyConstructor()); |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2223 | |
| 2224 | // Add the parameter to the constructor. |
| 2225 | ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyConstructor, |
| 2226 | ClassDecl->getLocation(), |
| 2227 | /*IdentifierInfo=*/0, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2228 | ArgType, /*TInfo=*/0, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2229 | VarDecl::None, 0); |
Ted Kremenek | fc76761 | 2009-01-14 00:42:25 +0000 | [diff] [blame] | 2230 | CopyConstructor->setParams(Context, &FromParam, 1); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2231 | ClassDecl->addDecl(CopyConstructor); |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2232 | } |
| 2233 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2234 | if (!ClassDecl->hasUserDeclaredCopyAssignment()) { |
| 2235 | // Note: The following rules are largely analoguous to the copy |
| 2236 | // constructor rules. Note that virtual bases are not taken into account |
| 2237 | // for determining the argument type of the operator. Note also that |
| 2238 | // operators taking an object instead of a reference are allowed. |
| 2239 | // |
| 2240 | // C++ [class.copy]p10: |
| 2241 | // If the class definition does not explicitly declare a copy |
| 2242 | // assignment operator, one is declared implicitly. |
| 2243 | // The implicitly-defined copy assignment operator for a class X |
| 2244 | // will have the form |
| 2245 | // |
| 2246 | // X& X::operator=(const X&) |
| 2247 | // |
| 2248 | // if |
| 2249 | bool HasConstCopyAssignment = true; |
| 2250 | |
| 2251 | // -- each direct base class B of X has a copy assignment operator |
| 2252 | // whose parameter is of type const B&, const volatile B& or B, |
| 2253 | // and |
| 2254 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(); |
| 2255 | HasConstCopyAssignment && Base != ClassDecl->bases_end(); ++Base) { |
Sebastian Redl | 9994a34 | 2009-10-25 17:03:50 +0000 | [diff] [blame] | 2256 | assert(!Base->getType()->isDependentType() && |
| 2257 | "Cannot generate implicit members for class with dependent bases."); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2258 | const CXXRecordDecl *BaseClassDecl |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2259 | = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
Fariborz Jahanian | 0270b8a | 2009-08-12 23:34:46 +0000 | [diff] [blame] | 2260 | const CXXMethodDecl *MD = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2261 | HasConstCopyAssignment = BaseClassDecl->hasConstCopyAssignment(Context, |
Fariborz Jahanian | 0270b8a | 2009-08-12 23:34:46 +0000 | [diff] [blame] | 2262 | MD); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2263 | } |
| 2264 | |
| 2265 | // -- for all the nonstatic data members of X that are of a class |
| 2266 | // type M (or array thereof), each such class type has a copy |
| 2267 | // assignment operator whose parameter is of type const M&, |
| 2268 | // const volatile M& or M. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2269 | for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(); |
| 2270 | HasConstCopyAssignment && Field != ClassDecl->field_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2271 | ++Field) { |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2272 | QualType FieldType = (*Field)->getType(); |
| 2273 | if (const ArrayType *Array = Context.getAsArrayType(FieldType)) |
| 2274 | FieldType = Array->getElementType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2275 | if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) { |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2276 | const CXXRecordDecl *FieldClassDecl |
| 2277 | = cast<CXXRecordDecl>(FieldClassType->getDecl()); |
Fariborz Jahanian | 0270b8a | 2009-08-12 23:34:46 +0000 | [diff] [blame] | 2278 | const CXXMethodDecl *MD = 0; |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2279 | HasConstCopyAssignment |
Fariborz Jahanian | 0270b8a | 2009-08-12 23:34:46 +0000 | [diff] [blame] | 2280 | = FieldClassDecl->hasConstCopyAssignment(Context, MD); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2281 | } |
| 2282 | } |
| 2283 | |
| 2284 | // Otherwise, the implicitly declared copy assignment operator will |
| 2285 | // have the form |
| 2286 | // |
| 2287 | // X& X::operator=(X&) |
| 2288 | QualType ArgType = ClassType; |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 2289 | QualType RetType = Context.getLValueReferenceType(ArgType); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2290 | if (HasConstCopyAssignment) |
| 2291 | ArgType = ArgType.withConst(); |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 2292 | ArgType = Context.getLValueReferenceType(ArgType); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2293 | |
| 2294 | // An implicitly-declared copy assignment operator is an inline public |
| 2295 | // member of its class. |
| 2296 | DeclarationName Name = |
| 2297 | Context.DeclarationNames.getCXXOperatorName(OO_Equal); |
| 2298 | CXXMethodDecl *CopyAssignment = |
| 2299 | CXXMethodDecl::Create(Context, ClassDecl, ClassDecl->getLocation(), Name, |
| 2300 | Context.getFunctionType(RetType, &ArgType, 1, |
| 2301 | false, 0), |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2302 | /*TInfo=*/0, /*isStatic=*/false, /*isInline=*/true); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2303 | CopyAssignment->setAccess(AS_public); |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 2304 | CopyAssignment->setImplicit(); |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 2305 | CopyAssignment->setTrivial(ClassDecl->hasTrivialCopyAssignment()); |
Fariborz Jahanian | 2198ba1 | 2009-08-12 21:14:35 +0000 | [diff] [blame] | 2306 | CopyAssignment->setCopyAssignment(true); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2307 | |
| 2308 | // Add the parameter to the operator. |
| 2309 | ParmVarDecl *FromParam = ParmVarDecl::Create(Context, CopyAssignment, |
| 2310 | ClassDecl->getLocation(), |
| 2311 | /*IdentifierInfo=*/0, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2312 | ArgType, /*TInfo=*/0, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2313 | VarDecl::None, 0); |
Ted Kremenek | fc76761 | 2009-01-14 00:42:25 +0000 | [diff] [blame] | 2314 | CopyAssignment->setParams(Context, &FromParam, 1); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2315 | |
| 2316 | // Don't call addedAssignmentOperator. There is no way to distinguish an |
| 2317 | // implicit from an explicit assignment operator. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2318 | ClassDecl->addDecl(CopyAssignment); |
Eli Friedman | ca6affd | 2009-12-02 06:59:20 +0000 | [diff] [blame] | 2319 | AddOverriddenMethods(ClassDecl, CopyAssignment); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 2320 | } |
| 2321 | |
Douglas Gregor | 9e7d9de | 2008-12-15 21:24:18 +0000 | [diff] [blame] | 2322 | if (!ClassDecl->hasUserDeclaredDestructor()) { |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2323 | // C++ [class.dtor]p2: |
| 2324 | // If a class has no user-declared destructor, a destructor is |
| 2325 | // declared implicitly. An implicitly-declared destructor is an |
| 2326 | // inline public member of its class. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2327 | DeclarationName Name |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2328 | = Context.DeclarationNames.getCXXDestructorName(ClassType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2329 | CXXDestructorDecl *Destructor |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2330 | = CXXDestructorDecl::Create(Context, ClassDecl, |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 2331 | ClassDecl->getLocation(), Name, |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2332 | Context.getFunctionType(Context.VoidTy, |
| 2333 | 0, 0, false, 0), |
| 2334 | /*isInline=*/true, |
| 2335 | /*isImplicitlyDeclared=*/true); |
| 2336 | Destructor->setAccess(AS_public); |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 2337 | Destructor->setImplicit(); |
Douglas Gregor | 1f2023a | 2009-07-22 18:25:24 +0000 | [diff] [blame] | 2338 | Destructor->setTrivial(ClassDecl->hasTrivialDestructor()); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2339 | ClassDecl->addDecl(Destructor); |
Anders Carlsson | d5a942b | 2009-11-26 21:25:09 +0000 | [diff] [blame] | 2340 | |
| 2341 | AddOverriddenMethods(ClassDecl, Destructor); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2342 | } |
Douglas Gregor | 396b7cd | 2008-11-03 17:51:48 +0000 | [diff] [blame] | 2343 | } |
| 2344 | |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2345 | void Sema::ActOnReenterTemplateScope(Scope *S, DeclPtrTy TemplateD) { |
Douglas Gregor | 1cdcc57 | 2009-09-10 00:12:48 +0000 | [diff] [blame] | 2346 | Decl *D = TemplateD.getAs<Decl>(); |
| 2347 | if (!D) |
| 2348 | return; |
| 2349 | |
| 2350 | TemplateParameterList *Params = 0; |
| 2351 | if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
| 2352 | Params = Template->getTemplateParameters(); |
| 2353 | else if (ClassTemplatePartialSpecializationDecl *PartialSpec |
| 2354 | = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) |
| 2355 | Params = PartialSpec->getTemplateParameters(); |
| 2356 | else |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2357 | return; |
| 2358 | |
Douglas Gregor | 6569d68 | 2009-05-27 23:11:45 +0000 | [diff] [blame] | 2359 | for (TemplateParameterList::iterator Param = Params->begin(), |
| 2360 | ParamEnd = Params->end(); |
| 2361 | Param != ParamEnd; ++Param) { |
| 2362 | NamedDecl *Named = cast<NamedDecl>(*Param); |
| 2363 | if (Named->getDeclName()) { |
| 2364 | S->AddDecl(DeclPtrTy::make(Named)); |
| 2365 | IdResolver.AddDecl(Named); |
| 2366 | } |
| 2367 | } |
| 2368 | } |
| 2369 | |
John McCall | 7a1dc56 | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 2370 | void Sema::ActOnStartDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) { |
| 2371 | if (!RecordD) return; |
| 2372 | AdjustDeclIfTemplate(RecordD); |
| 2373 | CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordD.getAs<Decl>()); |
| 2374 | PushDeclContext(S, Record); |
| 2375 | } |
| 2376 | |
| 2377 | void Sema::ActOnFinishDelayedMemberDeclarations(Scope *S, DeclPtrTy RecordD) { |
| 2378 | if (!RecordD) return; |
| 2379 | PopDeclContext(); |
| 2380 | } |
| 2381 | |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2382 | /// ActOnStartDelayedCXXMethodDeclaration - We have completed |
| 2383 | /// parsing a top-level (non-nested) C++ class, and we are now |
| 2384 | /// parsing those parts of the given Method declaration that could |
| 2385 | /// not be parsed earlier (C++ [class.mem]p2), such as default |
| 2386 | /// arguments. This action should enter the scope of the given |
| 2387 | /// Method declaration as if we had just parsed the qualified method |
| 2388 | /// name. However, it should not bring the parameters into scope; |
| 2389 | /// that will be performed by ActOnDelayedCXXMethodParameter. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2390 | void Sema::ActOnStartDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) { |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2391 | } |
| 2392 | |
| 2393 | /// ActOnDelayedCXXMethodParameter - We've already started a delayed |
| 2394 | /// C++ method declaration. We're (re-)introducing the given |
| 2395 | /// function parameter into scope for use in parsing later parts of |
| 2396 | /// the method declaration. For example, we could see an |
| 2397 | /// ActOnParamDefaultArgument event for this parameter. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2398 | void Sema::ActOnDelayedCXXMethodParameter(Scope *S, DeclPtrTy ParamD) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 2399 | if (!ParamD) |
| 2400 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2401 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2402 | ParmVarDecl *Param = cast<ParmVarDecl>(ParamD.getAs<Decl>()); |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2403 | |
| 2404 | // If this parameter has an unparsed default argument, clear it out |
| 2405 | // to make way for the parsed default argument. |
| 2406 | if (Param->hasUnparsedDefaultArg()) |
| 2407 | Param->setDefaultArg(0); |
| 2408 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2409 | S->AddDecl(DeclPtrTy::make(Param)); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2410 | if (Param->getDeclName()) |
| 2411 | IdResolver.AddDecl(Param); |
| 2412 | } |
| 2413 | |
| 2414 | /// ActOnFinishDelayedCXXMethodDeclaration - We have finished |
| 2415 | /// processing the delayed method declaration for Method. The method |
| 2416 | /// declaration is now considered finished. There may be a separate |
| 2417 | /// ActOnStartOfFunctionDef action later (not necessarily |
| 2418 | /// immediately!) for this method, if it was also defined inside the |
| 2419 | /// class body. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2420 | void Sema::ActOnFinishDelayedCXXMethodDeclaration(Scope *S, DeclPtrTy MethodD) { |
Douglas Gregor | 4c4f7cb | 2009-06-22 23:20:33 +0000 | [diff] [blame] | 2421 | if (!MethodD) |
| 2422 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2423 | |
Douglas Gregor | efd5bda | 2009-08-24 11:57:43 +0000 | [diff] [blame] | 2424 | AdjustDeclIfTemplate(MethodD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2425 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2426 | FunctionDecl *Method = cast<FunctionDecl>(MethodD.getAs<Decl>()); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2427 | |
| 2428 | // Now that we have our default arguments, check the constructor |
| 2429 | // again. It could produce additional diagnostics or affect whether |
| 2430 | // the class has implicitly-declared destructors, among other |
| 2431 | // things. |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2432 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Method)) |
| 2433 | CheckConstructor(Constructor); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2434 | |
| 2435 | // Check the default arguments, which we may have added. |
| 2436 | if (!Method->isInvalidDecl()) |
| 2437 | CheckCXXDefaultArguments(Method); |
| 2438 | } |
| 2439 | |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2440 | /// CheckConstructorDeclarator - Called by ActOnDeclarator to check |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2441 | /// the well-formedness of the constructor declarator @p D with type @p |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2442 | /// R. If there are any errors in the declarator, this routine will |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2443 | /// emit diagnostics and set the invalid bit to true. In any case, the type |
| 2444 | /// will be updated to reflect a well-formed type for the constructor and |
| 2445 | /// returned. |
| 2446 | QualType Sema::CheckConstructorDeclarator(Declarator &D, QualType R, |
| 2447 | FunctionDecl::StorageClass &SC) { |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2448 | bool isVirtual = D.getDeclSpec().isVirtualSpecified(); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2449 | |
| 2450 | // C++ [class.ctor]p3: |
| 2451 | // A constructor shall not be virtual (10.3) or static (9.4). A |
| 2452 | // constructor can be invoked for a const, volatile or const |
| 2453 | // volatile object. A constructor shall not be declared const, |
| 2454 | // volatile, or const volatile (9.3.2). |
| 2455 | if (isVirtual) { |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2456 | if (!D.isInvalidType()) |
| 2457 | Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) |
| 2458 | << "virtual" << SourceRange(D.getDeclSpec().getVirtualSpecLoc()) |
| 2459 | << SourceRange(D.getIdentifierLoc()); |
| 2460 | D.setInvalidType(); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2461 | } |
| 2462 | if (SC == FunctionDecl::Static) { |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2463 | if (!D.isInvalidType()) |
| 2464 | Diag(D.getIdentifierLoc(), diag::err_constructor_cannot_be) |
| 2465 | << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) |
| 2466 | << SourceRange(D.getIdentifierLoc()); |
| 2467 | D.setInvalidType(); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2468 | SC = FunctionDecl::None; |
| 2469 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2470 | |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2471 | DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun; |
| 2472 | if (FTI.TypeQuals != 0) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2473 | if (FTI.TypeQuals & Qualifiers::Const) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2474 | Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) |
| 2475 | << "const" << SourceRange(D.getIdentifierLoc()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2476 | if (FTI.TypeQuals & Qualifiers::Volatile) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2477 | Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) |
| 2478 | << "volatile" << SourceRange(D.getIdentifierLoc()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2479 | if (FTI.TypeQuals & Qualifiers::Restrict) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2480 | Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_constructor) |
| 2481 | << "restrict" << SourceRange(D.getIdentifierLoc()); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2482 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2483 | |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2484 | // Rebuild the function type "R" without any type qualifiers (in |
| 2485 | // case any of the errors above fired) and with "void" as the |
| 2486 | // return type, since constructors don't have return types. We |
| 2487 | // *always* have to do this, because GetTypeForDeclarator will |
| 2488 | // put in a result type of "int" when none was specified. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2489 | const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2490 | return Context.getFunctionType(Context.VoidTy, Proto->arg_type_begin(), |
| 2491 | Proto->getNumArgs(), |
| 2492 | Proto->isVariadic(), 0); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2493 | } |
| 2494 | |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2495 | /// CheckConstructor - Checks a fully-formed constructor for |
| 2496 | /// well-formedness, issuing any diagnostics required. Returns true if |
| 2497 | /// the constructor declarator is invalid. |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2498 | void Sema::CheckConstructor(CXXConstructorDecl *Constructor) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2499 | CXXRecordDecl *ClassDecl |
Douglas Gregor | 3329756 | 2009-03-27 04:38:56 +0000 | [diff] [blame] | 2500 | = dyn_cast<CXXRecordDecl>(Constructor->getDeclContext()); |
| 2501 | if (!ClassDecl) |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2502 | return Constructor->setInvalidDecl(); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2503 | |
| 2504 | // C++ [class.copy]p3: |
| 2505 | // A declaration of a constructor for a class X is ill-formed if |
| 2506 | // its first parameter is of type (optionally cv-qualified) X and |
| 2507 | // either there are no other parameters or else all other |
| 2508 | // parameters have default arguments. |
Douglas Gregor | 3329756 | 2009-03-27 04:38:56 +0000 | [diff] [blame] | 2509 | if (!Constructor->isInvalidDecl() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2510 | ((Constructor->getNumParams() == 1) || |
| 2511 | (Constructor->getNumParams() > 1 && |
Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 2512 | Constructor->getParamDecl(1)->hasDefaultArg())) && |
| 2513 | Constructor->getTemplateSpecializationKind() |
| 2514 | != TSK_ImplicitInstantiation) { |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2515 | QualType ParamType = Constructor->getParamDecl(0)->getType(); |
| 2516 | QualType ClassTy = Context.getTagDeclType(ClassDecl); |
| 2517 | if (Context.getCanonicalType(ParamType).getUnqualifiedType() == ClassTy) { |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 2518 | SourceLocation ParamLoc = Constructor->getParamDecl(0)->getLocation(); |
| 2519 | Diag(ParamLoc, diag::err_constructor_byvalue_arg) |
Douglas Gregor | 558cb56 | 2009-04-02 01:08:08 +0000 | [diff] [blame] | 2520 | << CodeModificationHint::CreateInsertion(ParamLoc, " const &"); |
Douglas Gregor | 66724ea | 2009-11-14 01:20:54 +0000 | [diff] [blame] | 2521 | |
| 2522 | // FIXME: Rather that making the constructor invalid, we should endeavor |
| 2523 | // to fix the type. |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2524 | Constructor->setInvalidDecl(); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2525 | } |
| 2526 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2527 | |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2528 | // Notify the class that we've added a constructor. |
| 2529 | ClassDecl->addedConstructor(Context, Constructor); |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 2530 | } |
| 2531 | |
Anders Carlsson | 3790980 | 2009-11-30 21:24:50 +0000 | [diff] [blame] | 2532 | /// CheckDestructor - Checks a fully-formed destructor for well-formedness, |
| 2533 | /// issuing any diagnostics required. Returns true on error. |
Anders Carlsson | 5ec02ae | 2009-12-02 17:15:43 +0000 | [diff] [blame] | 2534 | bool Sema::CheckDestructor(CXXDestructorDecl *Destructor) { |
Anders Carlsson | 6d70139 | 2009-11-15 22:49:34 +0000 | [diff] [blame] | 2535 | CXXRecordDecl *RD = Destructor->getParent(); |
| 2536 | |
| 2537 | if (Destructor->isVirtual()) { |
| 2538 | SourceLocation Loc; |
| 2539 | |
| 2540 | if (!Destructor->isImplicit()) |
| 2541 | Loc = Destructor->getLocation(); |
| 2542 | else |
| 2543 | Loc = RD->getLocation(); |
| 2544 | |
| 2545 | // If we have a virtual destructor, look up the deallocation function |
| 2546 | FunctionDecl *OperatorDelete = 0; |
| 2547 | DeclarationName Name = |
| 2548 | Context.DeclarationNames.getCXXOperatorName(OO_Delete); |
Anders Carlsson | 5ec02ae | 2009-12-02 17:15:43 +0000 | [diff] [blame] | 2549 | if (FindDeallocationFunction(Loc, RD, Name, OperatorDelete)) |
Anders Carlsson | 3790980 | 2009-11-30 21:24:50 +0000 | [diff] [blame] | 2550 | return true; |
| 2551 | |
| 2552 | Destructor->setOperatorDelete(OperatorDelete); |
Anders Carlsson | 6d70139 | 2009-11-15 22:49:34 +0000 | [diff] [blame] | 2553 | } |
Anders Carlsson | 3790980 | 2009-11-30 21:24:50 +0000 | [diff] [blame] | 2554 | |
| 2555 | return false; |
Anders Carlsson | 6d70139 | 2009-11-15 22:49:34 +0000 | [diff] [blame] | 2556 | } |
| 2557 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2558 | static inline bool |
Anders Carlsson | 7786d1c | 2009-04-30 23:18:11 +0000 | [diff] [blame] | 2559 | FTIHasSingleVoidArgument(DeclaratorChunk::FunctionTypeInfo &FTI) { |
| 2560 | return (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
| 2561 | FTI.ArgInfo[0].Param && |
| 2562 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType()); |
| 2563 | } |
| 2564 | |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2565 | /// CheckDestructorDeclarator - Called by ActOnDeclarator to check |
| 2566 | /// the well-formednes of the destructor declarator @p D with type @p |
| 2567 | /// R. If there are any errors in the declarator, this routine will |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2568 | /// emit diagnostics and set the declarator to invalid. Even if this happens, |
| 2569 | /// will be updated to reflect a well-formed type for the destructor and |
| 2570 | /// returned. |
| 2571 | QualType Sema::CheckDestructorDeclarator(Declarator &D, |
| 2572 | FunctionDecl::StorageClass& SC) { |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2573 | // C++ [class.dtor]p1: |
| 2574 | // [...] A typedef-name that names a class is a class-name |
| 2575 | // (7.1.3); however, a typedef-name that names a class shall not |
| 2576 | // be used as the identifier in the declarator for a destructor |
| 2577 | // declaration. |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 2578 | QualType DeclaratorType = GetTypeFromParser(D.getName().DestructorName); |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2579 | if (isa<TypedefType>(DeclaratorType)) { |
| 2580 | Diag(D.getIdentifierLoc(), diag::err_destructor_typedef_name) |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 2581 | << DeclaratorType; |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2582 | D.setInvalidType(); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2583 | } |
| 2584 | |
| 2585 | // C++ [class.dtor]p2: |
| 2586 | // A destructor is used to destroy objects of its class type. A |
| 2587 | // destructor takes no parameters, and no return type can be |
| 2588 | // specified for it (not even void). The address of a destructor |
| 2589 | // shall not be taken. A destructor shall not be static. A |
| 2590 | // destructor can be invoked for a const, volatile or const |
| 2591 | // volatile object. A destructor shall not be declared const, |
| 2592 | // volatile or const volatile (9.3.2). |
| 2593 | if (SC == FunctionDecl::Static) { |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2594 | if (!D.isInvalidType()) |
| 2595 | Diag(D.getIdentifierLoc(), diag::err_destructor_cannot_be) |
| 2596 | << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) |
| 2597 | << SourceRange(D.getIdentifierLoc()); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2598 | SC = FunctionDecl::None; |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2599 | D.setInvalidType(); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2600 | } |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2601 | if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) { |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2602 | // Destructors don't have return types, but the parser will |
| 2603 | // happily parse something like: |
| 2604 | // |
| 2605 | // class X { |
| 2606 | // float ~X(); |
| 2607 | // }; |
| 2608 | // |
| 2609 | // The return type will be eliminated later. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2610 | Diag(D.getIdentifierLoc(), diag::err_destructor_return_type) |
| 2611 | << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) |
| 2612 | << SourceRange(D.getIdentifierLoc()); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2613 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2614 | |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2615 | DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun; |
| 2616 | if (FTI.TypeQuals != 0 && !D.isInvalidType()) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2617 | if (FTI.TypeQuals & Qualifiers::Const) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2618 | Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) |
| 2619 | << "const" << SourceRange(D.getIdentifierLoc()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2620 | if (FTI.TypeQuals & Qualifiers::Volatile) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2621 | Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) |
| 2622 | << "volatile" << SourceRange(D.getIdentifierLoc()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2623 | if (FTI.TypeQuals & Qualifiers::Restrict) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2624 | Diag(D.getIdentifierLoc(), diag::err_invalid_qualified_destructor) |
| 2625 | << "restrict" << SourceRange(D.getIdentifierLoc()); |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2626 | D.setInvalidType(); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2627 | } |
| 2628 | |
| 2629 | // Make sure we don't have any parameters. |
Anders Carlsson | 7786d1c | 2009-04-30 23:18:11 +0000 | [diff] [blame] | 2630 | if (FTI.NumArgs > 0 && !FTIHasSingleVoidArgument(FTI)) { |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2631 | Diag(D.getIdentifierLoc(), diag::err_destructor_with_params); |
| 2632 | |
| 2633 | // Delete the parameters. |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2634 | FTI.freeArgs(); |
| 2635 | D.setInvalidType(); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2636 | } |
| 2637 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2638 | // Make sure the destructor isn't variadic. |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2639 | if (FTI.isVariadic) { |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2640 | Diag(D.getIdentifierLoc(), diag::err_destructor_variadic); |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2641 | D.setInvalidType(); |
| 2642 | } |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2643 | |
| 2644 | // Rebuild the function type "R" without any type qualifiers or |
| 2645 | // parameters (in case any of the errors above fired) and with |
| 2646 | // "void" as the return type, since destructors don't have return |
| 2647 | // types. We *always* have to do this, because GetTypeForDeclarator |
| 2648 | // will put in a result type of "int" when none was specified. |
Chris Lattner | 6540180 | 2009-04-25 08:28:21 +0000 | [diff] [blame] | 2649 | return Context.getFunctionType(Context.VoidTy, 0, 0, false, 0); |
Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 2650 | } |
| 2651 | |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2652 | /// CheckConversionDeclarator - Called by ActOnDeclarator to check the |
| 2653 | /// well-formednes of the conversion function declarator @p D with |
| 2654 | /// type @p R. If there are any errors in the declarator, this routine |
| 2655 | /// will emit diagnostics and return true. Otherwise, it will return |
| 2656 | /// false. Either way, the type @p R will be updated to reflect a |
| 2657 | /// well-formed type for the conversion operator. |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2658 | void Sema::CheckConversionDeclarator(Declarator &D, QualType &R, |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2659 | FunctionDecl::StorageClass& SC) { |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2660 | // C++ [class.conv.fct]p1: |
| 2661 | // Neither parameter types nor return type can be specified. The |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 2662 | // type of a conversion function (8.3.5) is "function taking no |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2663 | // parameter returning conversion-type-id." |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2664 | if (SC == FunctionDecl::Static) { |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2665 | if (!D.isInvalidType()) |
| 2666 | Diag(D.getIdentifierLoc(), diag::err_conv_function_not_member) |
| 2667 | << "static" << SourceRange(D.getDeclSpec().getStorageClassSpecLoc()) |
| 2668 | << SourceRange(D.getIdentifierLoc()); |
| 2669 | D.setInvalidType(); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2670 | SC = FunctionDecl::None; |
| 2671 | } |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2672 | if (D.getDeclSpec().hasTypeSpecifier() && !D.isInvalidType()) { |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2673 | // Conversion functions don't have return types, but the parser will |
| 2674 | // happily parse something like: |
| 2675 | // |
| 2676 | // class X { |
| 2677 | // float operator bool(); |
| 2678 | // }; |
| 2679 | // |
| 2680 | // The return type will be changed later anyway. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2681 | Diag(D.getIdentifierLoc(), diag::err_conv_function_return_type) |
| 2682 | << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc()) |
| 2683 | << SourceRange(D.getIdentifierLoc()); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2684 | } |
| 2685 | |
| 2686 | // Make sure we don't have any parameters. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2687 | if (R->getAs<FunctionProtoType>()->getNumArgs() > 0) { |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2688 | Diag(D.getIdentifierLoc(), diag::err_conv_function_with_params); |
| 2689 | |
| 2690 | // Delete the parameters. |
Chris Lattner | 1833a83 | 2009-01-20 21:06:38 +0000 | [diff] [blame] | 2691 | D.getTypeObject(0).Fun.freeArgs(); |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2692 | D.setInvalidType(); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2693 | } |
| 2694 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2695 | // Make sure the conversion function isn't variadic. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2696 | if (R->getAs<FunctionProtoType>()->isVariadic() && !D.isInvalidType()) { |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2697 | Diag(D.getIdentifierLoc(), diag::err_conv_function_variadic); |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2698 | D.setInvalidType(); |
| 2699 | } |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2700 | |
| 2701 | // C++ [class.conv.fct]p4: |
| 2702 | // The conversion-type-id shall not represent a function type nor |
| 2703 | // an array type. |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 2704 | QualType ConvType = GetTypeFromParser(D.getName().ConversionFunctionId); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2705 | if (ConvType->isArrayType()) { |
| 2706 | Diag(D.getIdentifierLoc(), diag::err_conv_function_to_array); |
| 2707 | ConvType = Context.getPointerType(ConvType); |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2708 | D.setInvalidType(); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2709 | } else if (ConvType->isFunctionType()) { |
| 2710 | Diag(D.getIdentifierLoc(), diag::err_conv_function_to_function); |
| 2711 | ConvType = Context.getPointerType(ConvType); |
Chris Lattner | 6e47501 | 2009-04-25 08:35:12 +0000 | [diff] [blame] | 2712 | D.setInvalidType(); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2713 | } |
| 2714 | |
| 2715 | // Rebuild the function type "R" without any parameters (in case any |
| 2716 | // of the errors above fired) and with the conversion type as the |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2717 | // return type. |
| 2718 | R = Context.getFunctionType(ConvType, 0, 0, false, |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2719 | R->getAs<FunctionProtoType>()->getTypeQuals()); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2720 | |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2721 | // C++0x explicit conversion operators. |
| 2722 | if (D.getDeclSpec().isExplicitSpecified() && !getLangOptions().CPlusPlus0x) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2723 | Diag(D.getDeclSpec().getExplicitSpecLoc(), |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2724 | diag::warn_explicit_conversion_functions) |
| 2725 | << SourceRange(D.getDeclSpec().getExplicitSpecLoc()); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2726 | } |
| 2727 | |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2728 | /// ActOnConversionDeclarator - Called by ActOnDeclarator to complete |
| 2729 | /// the declaration of the given C++ conversion function. This routine |
| 2730 | /// is responsible for recording the conversion function in the C++ |
| 2731 | /// class, if possible. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2732 | Sema::DeclPtrTy Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) { |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2733 | assert(Conversion && "Expected to receive a conversion function declaration"); |
| 2734 | |
Douglas Gregor | 9d35097 | 2008-12-12 08:25:50 +0000 | [diff] [blame] | 2735 | CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(Conversion->getDeclContext()); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2736 | |
| 2737 | // Make sure we aren't redeclaring the conversion function. |
| 2738 | QualType ConvType = Context.getCanonicalType(Conversion->getConversionType()); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2739 | |
| 2740 | // C++ [class.conv.fct]p1: |
| 2741 | // [...] A conversion function is never used to convert a |
| 2742 | // (possibly cv-qualified) object to the (possibly cv-qualified) |
| 2743 | // same object type (or a reference to it), to a (possibly |
| 2744 | // cv-qualified) base class of that type (or a reference to it), |
| 2745 | // or to (possibly cv-qualified) void. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2746 | // FIXME: Suppress this warning if the conversion function ends up being a |
| 2747 | // virtual function that overrides a virtual function in a base class. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2748 | QualType ClassType |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2749 | = Context.getCanonicalType(Context.getTypeDeclType(ClassDecl)); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2750 | if (const ReferenceType *ConvTypeRef = ConvType->getAs<ReferenceType>()) |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2751 | ConvType = ConvTypeRef->getPointeeType(); |
| 2752 | if (ConvType->isRecordType()) { |
| 2753 | ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType(); |
| 2754 | if (ConvType == ClassType) |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 2755 | Diag(Conversion->getLocation(), diag::warn_conv_to_self_not_used) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2756 | << ClassType; |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2757 | else if (IsDerivedFrom(ClassType, ConvType)) |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 2758 | Diag(Conversion->getLocation(), diag::warn_conv_to_base_not_used) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2759 | << ClassType << ConvType; |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2760 | } else if (ConvType->isVoidType()) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 2761 | Diag(Conversion->getLocation(), diag::warn_conv_to_void_not_used) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2762 | << ClassType << ConvType; |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2763 | } |
| 2764 | |
Douglas Gregor | 48026d2 | 2010-01-11 18:40:55 +0000 | [diff] [blame] | 2765 | if (Conversion->getPrimaryTemplate()) { |
| 2766 | // ignore specializations |
| 2767 | } else if (Conversion->getPreviousDeclaration()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2768 | if (FunctionTemplateDecl *ConversionTemplate |
Douglas Gregor | 0c55106 | 2010-01-11 18:53:25 +0000 | [diff] [blame] | 2769 | = Conversion->getDescribedFunctionTemplate()) { |
| 2770 | if (ClassDecl->replaceConversion( |
| 2771 | ConversionTemplate->getPreviousDeclaration(), |
| 2772 | ConversionTemplate)) |
| 2773 | return DeclPtrTy::make(ConversionTemplate); |
| 2774 | } else if (ClassDecl->replaceConversion(Conversion->getPreviousDeclaration(), |
| 2775 | Conversion)) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2776 | return DeclPtrTy::make(Conversion); |
Douglas Gregor | 70316a0 | 2008-12-26 15:00:45 +0000 | [diff] [blame] | 2777 | assert(Conversion->isInvalidDecl() && "Conversion should not get here."); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2778 | } else if (FunctionTemplateDecl *ConversionTemplate |
Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 2779 | = Conversion->getDescribedFunctionTemplate()) |
Fariborz Jahanian | debc629 | 2009-09-12 19:02:34 +0000 | [diff] [blame] | 2780 | ClassDecl->addConversionFunction(ConversionTemplate); |
Douglas Gregor | 48026d2 | 2010-01-11 18:40:55 +0000 | [diff] [blame] | 2781 | else |
Fariborz Jahanian | debc629 | 2009-09-12 19:02:34 +0000 | [diff] [blame] | 2782 | ClassDecl->addConversionFunction(Conversion); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2783 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2784 | return DeclPtrTy::make(Conversion); |
Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 2785 | } |
| 2786 | |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 2787 | //===----------------------------------------------------------------------===// |
| 2788 | // Namespace Handling |
| 2789 | //===----------------------------------------------------------------------===// |
| 2790 | |
| 2791 | /// ActOnStartNamespaceDef - This is called at the start of a namespace |
| 2792 | /// definition. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2793 | Sema::DeclPtrTy Sema::ActOnStartNamespaceDef(Scope *NamespcScope, |
| 2794 | SourceLocation IdentLoc, |
| 2795 | IdentifierInfo *II, |
| 2796 | SourceLocation LBrace) { |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 2797 | NamespaceDecl *Namespc = |
| 2798 | NamespaceDecl::Create(Context, CurContext, IdentLoc, II); |
| 2799 | Namespc->setLBracLoc(LBrace); |
| 2800 | |
| 2801 | Scope *DeclRegionScope = NamespcScope->getParent(); |
| 2802 | |
| 2803 | if (II) { |
| 2804 | // C++ [namespace.def]p2: |
| 2805 | // The identifier in an original-namespace-definition shall not have been |
| 2806 | // previously defined in the declarative region in which the |
| 2807 | // original-namespace-definition appears. The identifier in an |
| 2808 | // original-namespace-definition is the name of the namespace. Subsequently |
| 2809 | // in that declarative region, it is treated as an original-namespace-name. |
| 2810 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2811 | NamedDecl *PrevDecl |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2812 | = LookupSingleName(DeclRegionScope, II, LookupOrdinaryName, |
John McCall | 7d384dd | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2813 | ForRedeclaration); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2814 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2815 | if (NamespaceDecl *OrigNS = dyn_cast_or_null<NamespaceDecl>(PrevDecl)) { |
| 2816 | // This is an extended namespace definition. |
| 2817 | // Attach this namespace decl to the chain of extended namespace |
| 2818 | // definitions. |
| 2819 | OrigNS->setNextNamespace(Namespc); |
| 2820 | Namespc->setOriginalNamespace(OrigNS->getOriginalNamespace()); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 2821 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2822 | // Remove the previous declaration from the scope. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2823 | if (DeclRegionScope->isDeclScope(DeclPtrTy::make(OrigNS))) { |
Douglas Gregor | e267ff3 | 2008-12-11 20:41:00 +0000 | [diff] [blame] | 2824 | IdResolver.RemoveDecl(OrigNS); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2825 | DeclRegionScope->RemoveDecl(DeclPtrTy::make(OrigNS)); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 2826 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2827 | } else if (PrevDecl) { |
| 2828 | // This is an invalid name redefinition. |
| 2829 | Diag(Namespc->getLocation(), diag::err_redefinition_different_kind) |
| 2830 | << Namespc->getDeclName(); |
| 2831 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
| 2832 | Namespc->setInvalidDecl(); |
| 2833 | // Continue on to push Namespc as current DeclContext and return it. |
Douglas Gregor | 7adb10f | 2009-09-15 22:30:29 +0000 | [diff] [blame] | 2834 | } else if (II->isStr("std") && |
| 2835 | CurContext->getLookupContext()->isTranslationUnit()) { |
| 2836 | // This is the first "real" definition of the namespace "std", so update |
| 2837 | // our cache of the "std" namespace to point at this definition. |
| 2838 | if (StdNamespace) { |
| 2839 | // We had already defined a dummy namespace "std". Link this new |
| 2840 | // namespace definition to the dummy namespace "std". |
| 2841 | StdNamespace->setNextNamespace(Namespc); |
| 2842 | StdNamespace->setLocation(IdentLoc); |
| 2843 | Namespc->setOriginalNamespace(StdNamespace->getOriginalNamespace()); |
| 2844 | } |
| 2845 | |
| 2846 | // Make our StdNamespace cache point at the first real definition of the |
| 2847 | // "std" namespace. |
| 2848 | StdNamespace = Namespc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2849 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2850 | |
| 2851 | PushOnScopeChains(Namespc, DeclRegionScope); |
| 2852 | } else { |
John McCall | 9aeed32 | 2009-10-01 00:25:31 +0000 | [diff] [blame] | 2853 | // Anonymous namespaces. |
John McCall | 5fdd764 | 2009-12-16 02:06:49 +0000 | [diff] [blame] | 2854 | assert(Namespc->isAnonymousNamespace()); |
| 2855 | CurContext->addDecl(Namespc); |
| 2856 | |
| 2857 | // Link the anonymous namespace into its parent. |
| 2858 | NamespaceDecl *PrevDecl; |
| 2859 | DeclContext *Parent = CurContext->getLookupContext(); |
| 2860 | if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(Parent)) { |
| 2861 | PrevDecl = TU->getAnonymousNamespace(); |
| 2862 | TU->setAnonymousNamespace(Namespc); |
| 2863 | } else { |
| 2864 | NamespaceDecl *ND = cast<NamespaceDecl>(Parent); |
| 2865 | PrevDecl = ND->getAnonymousNamespace(); |
| 2866 | ND->setAnonymousNamespace(Namespc); |
| 2867 | } |
| 2868 | |
| 2869 | // Link the anonymous namespace with its previous declaration. |
| 2870 | if (PrevDecl) { |
| 2871 | assert(PrevDecl->isAnonymousNamespace()); |
| 2872 | assert(!PrevDecl->getNextNamespace()); |
| 2873 | Namespc->setOriginalNamespace(PrevDecl->getOriginalNamespace()); |
| 2874 | PrevDecl->setNextNamespace(Namespc); |
| 2875 | } |
John McCall | 9aeed32 | 2009-10-01 00:25:31 +0000 | [diff] [blame] | 2876 | |
| 2877 | // C++ [namespace.unnamed]p1. An unnamed-namespace-definition |
| 2878 | // behaves as if it were replaced by |
| 2879 | // namespace unique { /* empty body */ } |
| 2880 | // using namespace unique; |
| 2881 | // namespace unique { namespace-body } |
| 2882 | // where all occurrences of 'unique' in a translation unit are |
| 2883 | // replaced by the same identifier and this identifier differs |
| 2884 | // from all other identifiers in the entire program. |
| 2885 | |
| 2886 | // We just create the namespace with an empty name and then add an |
| 2887 | // implicit using declaration, just like the standard suggests. |
| 2888 | // |
| 2889 | // CodeGen enforces the "universally unique" aspect by giving all |
| 2890 | // declarations semantically contained within an anonymous |
| 2891 | // namespace internal linkage. |
| 2892 | |
John McCall | 5fdd764 | 2009-12-16 02:06:49 +0000 | [diff] [blame] | 2893 | if (!PrevDecl) { |
| 2894 | UsingDirectiveDecl* UD |
| 2895 | = UsingDirectiveDecl::Create(Context, CurContext, |
| 2896 | /* 'using' */ LBrace, |
| 2897 | /* 'namespace' */ SourceLocation(), |
| 2898 | /* qualifier */ SourceRange(), |
| 2899 | /* NNS */ NULL, |
| 2900 | /* identifier */ SourceLocation(), |
| 2901 | Namespc, |
| 2902 | /* Ancestor */ CurContext); |
| 2903 | UD->setImplicit(); |
| 2904 | CurContext->addDecl(UD); |
| 2905 | } |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 2906 | } |
| 2907 | |
| 2908 | // Although we could have an invalid decl (i.e. the namespace name is a |
| 2909 | // redefinition), push it as current DeclContext and try to continue parsing. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2910 | // FIXME: We should be able to push Namespc here, so that the each DeclContext |
| 2911 | // for the namespace has the declarations that showed up in that particular |
| 2912 | // namespace definition. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2913 | PushDeclContext(NamespcScope, Namespc); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2914 | return DeclPtrTy::make(Namespc); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 2915 | } |
| 2916 | |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2917 | /// getNamespaceDecl - Returns the namespace a decl represents. If the decl |
| 2918 | /// is a namespace alias, returns the namespace it points to. |
| 2919 | static inline NamespaceDecl *getNamespaceDecl(NamedDecl *D) { |
| 2920 | if (NamespaceAliasDecl *AD = dyn_cast_or_null<NamespaceAliasDecl>(D)) |
| 2921 | return AD->getNamespace(); |
| 2922 | return dyn_cast_or_null<NamespaceDecl>(D); |
| 2923 | } |
| 2924 | |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 2925 | /// ActOnFinishNamespaceDef - This callback is called after a namespace is |
| 2926 | /// exited. Decl is the DeclTy returned by ActOnStartNamespaceDef. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2927 | void Sema::ActOnFinishNamespaceDef(DeclPtrTy D, SourceLocation RBrace) { |
| 2928 | Decl *Dcl = D.getAs<Decl>(); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 2929 | NamespaceDecl *Namespc = dyn_cast_or_null<NamespaceDecl>(Dcl); |
| 2930 | assert(Namespc && "Invalid parameter, expected NamespaceDecl"); |
| 2931 | Namespc->setRBracLoc(RBrace); |
| 2932 | PopDeclContext(); |
| 2933 | } |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 2934 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2935 | Sema::DeclPtrTy Sema::ActOnUsingDirective(Scope *S, |
| 2936 | SourceLocation UsingLoc, |
| 2937 | SourceLocation NamespcLoc, |
| 2938 | const CXXScopeSpec &SS, |
| 2939 | SourceLocation IdentLoc, |
| 2940 | IdentifierInfo *NamespcName, |
| 2941 | AttributeList *AttrList) { |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 2942 | assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); |
| 2943 | assert(NamespcName && "Invalid NamespcName."); |
| 2944 | assert(IdentLoc.isValid() && "Invalid NamespceName location."); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2945 | assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 2946 | |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2947 | UsingDirectiveDecl *UDir = 0; |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 2948 | |
Douglas Gregor | eb11cd0 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2949 | // Lookup namespace name. |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2950 | LookupResult R(*this, NamespcName, IdentLoc, LookupNamespaceName); |
| 2951 | LookupParsedName(R, S, &SS); |
| 2952 | if (R.isAmbiguous()) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2953 | return DeclPtrTy(); |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2954 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2955 | if (!R.empty()) { |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2956 | NamedDecl *Named = R.getFoundDecl(); |
| 2957 | assert((isa<NamespaceDecl>(Named) || isa<NamespaceAliasDecl>(Named)) |
| 2958 | && "expected namespace decl"); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2959 | // C++ [namespace.udir]p1: |
| 2960 | // A using-directive specifies that the names in the nominated |
| 2961 | // namespace can be used in the scope in which the |
| 2962 | // using-directive appears after the using-directive. During |
| 2963 | // unqualified name lookup (3.4.1), the names appear as if they |
| 2964 | // were declared in the nearest enclosing namespace which |
| 2965 | // contains both the using-directive and the nominated |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 2966 | // namespace. [Note: in this context, "contains" means "contains |
| 2967 | // directly or indirectly". ] |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2968 | |
| 2969 | // Find enclosing context containing both using-directive and |
| 2970 | // nominated namespace. |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2971 | NamespaceDecl *NS = getNamespaceDecl(Named); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2972 | DeclContext *CommonAncestor = cast<DeclContext>(NS); |
| 2973 | while (CommonAncestor && !CommonAncestor->Encloses(CurContext)) |
| 2974 | CommonAncestor = CommonAncestor->getParent(); |
| 2975 | |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2976 | UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, |
Douglas Gregor | 8419fa3 | 2009-05-30 06:31:56 +0000 | [diff] [blame] | 2977 | SS.getRange(), |
| 2978 | (NestedNameSpecifier *)SS.getScopeRep(), |
Sebastian Redl | eb0d8c9 | 2009-11-23 15:34:23 +0000 | [diff] [blame] | 2979 | IdentLoc, Named, CommonAncestor); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2980 | PushUsingDirective(S, UDir); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 2981 | } else { |
Chris Lattner | ead013e | 2009-01-06 07:24:29 +0000 | [diff] [blame] | 2982 | Diag(IdentLoc, diag::err_expected_namespace_name) << SS.getRange(); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 2983 | } |
| 2984 | |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2985 | // FIXME: We ignore attributes for now. |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 2986 | delete AttrList; |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2987 | return DeclPtrTy::make(UDir); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2988 | } |
| 2989 | |
| 2990 | void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { |
| 2991 | // If scope has associated entity, then using directive is at namespace |
| 2992 | // or translation unit scope. We add UsingDirectiveDecls, into |
| 2993 | // it's lookup structure. |
| 2994 | if (DeclContext *Ctx = static_cast<DeclContext*>(S->getEntity())) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2995 | Ctx->addDecl(UDir); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2996 | else |
| 2997 | // Otherwise it is block-sope. using-directives will affect lookup |
| 2998 | // only to the end of scope. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2999 | S->PushUsingDirective(DeclPtrTy::make(UDir)); |
Douglas Gregor | f780abc | 2008-12-30 03:27:21 +0000 | [diff] [blame] | 3000 | } |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 3001 | |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 3002 | |
| 3003 | Sema::DeclPtrTy Sema::ActOnUsingDeclaration(Scope *S, |
Anders Carlsson | 595adc1 | 2009-08-29 19:54:19 +0000 | [diff] [blame] | 3004 | AccessSpecifier AS, |
John McCall | 60fa3cf | 2009-12-11 02:10:03 +0000 | [diff] [blame] | 3005 | bool HasUsingKeyword, |
Anders Carlsson | cf9f921 | 2009-08-28 03:16:11 +0000 | [diff] [blame] | 3006 | SourceLocation UsingLoc, |
| 3007 | const CXXScopeSpec &SS, |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 3008 | UnqualifiedId &Name, |
Anders Carlsson | cf9f921 | 2009-08-28 03:16:11 +0000 | [diff] [blame] | 3009 | AttributeList *AttrList, |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3010 | bool IsTypeName, |
| 3011 | SourceLocation TypenameLoc) { |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 3012 | assert(S->getFlags() & Scope::DeclScope && "Invalid Scope."); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3013 | |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 3014 | switch (Name.getKind()) { |
| 3015 | case UnqualifiedId::IK_Identifier: |
| 3016 | case UnqualifiedId::IK_OperatorFunctionId: |
Sean Hunt | 0486d74 | 2009-11-28 04:44:28 +0000 | [diff] [blame] | 3017 | case UnqualifiedId::IK_LiteralOperatorId: |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 3018 | case UnqualifiedId::IK_ConversionFunctionId: |
| 3019 | break; |
| 3020 | |
| 3021 | case UnqualifiedId::IK_ConstructorName: |
Douglas Gregor | 0efc2c1 | 2010-01-13 17:31:36 +0000 | [diff] [blame] | 3022 | case UnqualifiedId::IK_ConstructorTemplateId: |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3023 | // C++0x inherited constructors. |
| 3024 | if (getLangOptions().CPlusPlus0x) break; |
| 3025 | |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 3026 | Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_constructor) |
| 3027 | << SS.getRange(); |
| 3028 | return DeclPtrTy(); |
| 3029 | |
| 3030 | case UnqualifiedId::IK_DestructorName: |
| 3031 | Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_destructor) |
| 3032 | << SS.getRange(); |
| 3033 | return DeclPtrTy(); |
| 3034 | |
| 3035 | case UnqualifiedId::IK_TemplateId: |
| 3036 | Diag(Name.getSourceRange().getBegin(), diag::err_using_decl_template_id) |
| 3037 | << SourceRange(Name.TemplateId->LAngleLoc, Name.TemplateId->RAngleLoc); |
| 3038 | return DeclPtrTy(); |
| 3039 | } |
| 3040 | |
| 3041 | DeclarationName TargetName = GetNameFromUnqualifiedId(Name); |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3042 | if (!TargetName) |
| 3043 | return DeclPtrTy(); |
| 3044 | |
John McCall | 60fa3cf | 2009-12-11 02:10:03 +0000 | [diff] [blame] | 3045 | // Warn about using declarations. |
| 3046 | // TODO: store that the declaration was written without 'using' and |
| 3047 | // talk about access decls instead of using decls in the |
| 3048 | // diagnostics. |
| 3049 | if (!HasUsingKeyword) { |
| 3050 | UsingLoc = Name.getSourceRange().getBegin(); |
| 3051 | |
| 3052 | Diag(UsingLoc, diag::warn_access_decl_deprecated) |
| 3053 | << CodeModificationHint::CreateInsertion(SS.getRange().getBegin(), |
| 3054 | "using "); |
| 3055 | } |
| 3056 | |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3057 | NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, |
Douglas Gregor | 12c118a | 2009-11-04 16:30:06 +0000 | [diff] [blame] | 3058 | Name.getSourceRange().getBegin(), |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3059 | TargetName, AttrList, |
| 3060 | /* IsInstantiation */ false, |
| 3061 | IsTypeName, TypenameLoc); |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3062 | if (UD) |
| 3063 | PushOnScopeChains(UD, S, /*AddToContext*/ false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3064 | |
Anders Carlsson | c72160b | 2009-08-28 05:40:36 +0000 | [diff] [blame] | 3065 | return DeclPtrTy::make(UD); |
| 3066 | } |
| 3067 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3068 | /// Determines whether to create a using shadow decl for a particular |
| 3069 | /// decl, given the set of decls existing prior to this using lookup. |
| 3070 | bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, |
| 3071 | const LookupResult &Previous) { |
| 3072 | // Diagnose finding a decl which is not from a base class of the |
| 3073 | // current class. We do this now because there are cases where this |
| 3074 | // function will silently decide not to build a shadow decl, which |
| 3075 | // will pre-empt further diagnostics. |
| 3076 | // |
| 3077 | // We don't need to do this in C++0x because we do the check once on |
| 3078 | // the qualifier. |
| 3079 | // |
| 3080 | // FIXME: diagnose the following if we care enough: |
| 3081 | // struct A { int foo; }; |
| 3082 | // struct B : A { using A::foo; }; |
| 3083 | // template <class T> struct C : A {}; |
| 3084 | // template <class T> struct D : C<T> { using B::foo; } // <--- |
| 3085 | // This is invalid (during instantiation) in C++03 because B::foo |
| 3086 | // resolves to the using decl in B, which is not a base class of D<T>. |
| 3087 | // We can't diagnose it immediately because C<T> is an unknown |
| 3088 | // specialization. The UsingShadowDecl in D<T> then points directly |
| 3089 | // to A::foo, which will look well-formed when we instantiate. |
| 3090 | // The right solution is to not collapse the shadow-decl chain. |
| 3091 | if (!getLangOptions().CPlusPlus0x && CurContext->isRecord()) { |
| 3092 | DeclContext *OrigDC = Orig->getDeclContext(); |
| 3093 | |
| 3094 | // Handle enums and anonymous structs. |
| 3095 | if (isa<EnumDecl>(OrigDC)) OrigDC = OrigDC->getParent(); |
| 3096 | CXXRecordDecl *OrigRec = cast<CXXRecordDecl>(OrigDC); |
| 3097 | while (OrigRec->isAnonymousStructOrUnion()) |
| 3098 | OrigRec = cast<CXXRecordDecl>(OrigRec->getDeclContext()); |
| 3099 | |
| 3100 | if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom(OrigRec)) { |
| 3101 | if (OrigDC == CurContext) { |
| 3102 | Diag(Using->getLocation(), |
| 3103 | diag::err_using_decl_nested_name_specifier_is_current_class) |
| 3104 | << Using->getNestedNameRange(); |
| 3105 | Diag(Orig->getLocation(), diag::note_using_decl_target); |
| 3106 | return true; |
| 3107 | } |
| 3108 | |
| 3109 | Diag(Using->getNestedNameRange().getBegin(), |
| 3110 | diag::err_using_decl_nested_name_specifier_is_not_base_class) |
| 3111 | << Using->getTargetNestedNameDecl() |
| 3112 | << cast<CXXRecordDecl>(CurContext) |
| 3113 | << Using->getNestedNameRange(); |
| 3114 | Diag(Orig->getLocation(), diag::note_using_decl_target); |
| 3115 | return true; |
| 3116 | } |
| 3117 | } |
| 3118 | |
| 3119 | if (Previous.empty()) return false; |
| 3120 | |
| 3121 | NamedDecl *Target = Orig; |
| 3122 | if (isa<UsingShadowDecl>(Target)) |
| 3123 | Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); |
| 3124 | |
John McCall | d7533ec | 2009-12-11 02:33:26 +0000 | [diff] [blame] | 3125 | // If the target happens to be one of the previous declarations, we |
| 3126 | // don't have a conflict. |
| 3127 | // |
| 3128 | // FIXME: but we might be increasing its access, in which case we |
| 3129 | // should redeclare it. |
| 3130 | NamedDecl *NonTag = 0, *Tag = 0; |
| 3131 | for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); |
| 3132 | I != E; ++I) { |
| 3133 | NamedDecl *D = (*I)->getUnderlyingDecl(); |
| 3134 | if (D->getCanonicalDecl() == Target->getCanonicalDecl()) |
| 3135 | return false; |
| 3136 | |
| 3137 | (isa<TagDecl>(D) ? Tag : NonTag) = D; |
| 3138 | } |
| 3139 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3140 | if (Target->isFunctionOrFunctionTemplate()) { |
| 3141 | FunctionDecl *FD; |
| 3142 | if (isa<FunctionTemplateDecl>(Target)) |
| 3143 | FD = cast<FunctionTemplateDecl>(Target)->getTemplatedDecl(); |
| 3144 | else |
| 3145 | FD = cast<FunctionDecl>(Target); |
| 3146 | |
| 3147 | NamedDecl *OldDecl = 0; |
| 3148 | switch (CheckOverload(FD, Previous, OldDecl)) { |
| 3149 | case Ovl_Overload: |
| 3150 | return false; |
| 3151 | |
| 3152 | case Ovl_NonFunction: |
John McCall | 41ce66f | 2009-12-10 19:51:03 +0000 | [diff] [blame] | 3153 | Diag(Using->getLocation(), diag::err_using_decl_conflict); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3154 | break; |
| 3155 | |
| 3156 | // We found a decl with the exact signature. |
| 3157 | case Ovl_Match: |
| 3158 | if (isa<UsingShadowDecl>(OldDecl)) { |
| 3159 | // Silently ignore the possible conflict. |
| 3160 | return false; |
| 3161 | } |
| 3162 | |
| 3163 | // If we're in a record, we want to hide the target, so we |
| 3164 | // return true (without a diagnostic) to tell the caller not to |
| 3165 | // build a shadow decl. |
| 3166 | if (CurContext->isRecord()) |
| 3167 | return true; |
| 3168 | |
| 3169 | // If we're not in a record, this is an error. |
John McCall | 41ce66f | 2009-12-10 19:51:03 +0000 | [diff] [blame] | 3170 | Diag(Using->getLocation(), diag::err_using_decl_conflict); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3171 | break; |
| 3172 | } |
| 3173 | |
| 3174 | Diag(Target->getLocation(), diag::note_using_decl_target); |
| 3175 | Diag(OldDecl->getLocation(), diag::note_using_decl_conflict); |
| 3176 | return true; |
| 3177 | } |
| 3178 | |
| 3179 | // Target is not a function. |
| 3180 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3181 | if (isa<TagDecl>(Target)) { |
| 3182 | // No conflict between a tag and a non-tag. |
| 3183 | if (!Tag) return false; |
| 3184 | |
John McCall | 41ce66f | 2009-12-10 19:51:03 +0000 | [diff] [blame] | 3185 | Diag(Using->getLocation(), diag::err_using_decl_conflict); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3186 | Diag(Target->getLocation(), diag::note_using_decl_target); |
| 3187 | Diag(Tag->getLocation(), diag::note_using_decl_conflict); |
| 3188 | return true; |
| 3189 | } |
| 3190 | |
| 3191 | // No conflict between a tag and a non-tag. |
| 3192 | if (!NonTag) return false; |
| 3193 | |
John McCall | 41ce66f | 2009-12-10 19:51:03 +0000 | [diff] [blame] | 3194 | Diag(Using->getLocation(), diag::err_using_decl_conflict); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3195 | Diag(Target->getLocation(), diag::note_using_decl_target); |
| 3196 | Diag(NonTag->getLocation(), diag::note_using_decl_conflict); |
| 3197 | return true; |
| 3198 | } |
| 3199 | |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3200 | /// Builds a shadow declaration corresponding to a 'using' declaration. |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3201 | UsingShadowDecl *Sema::BuildUsingShadowDecl(Scope *S, |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3202 | UsingDecl *UD, |
| 3203 | NamedDecl *Orig) { |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3204 | |
| 3205 | // If we resolved to another shadow declaration, just coalesce them. |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3206 | NamedDecl *Target = Orig; |
| 3207 | if (isa<UsingShadowDecl>(Target)) { |
| 3208 | Target = cast<UsingShadowDecl>(Target)->getTargetDecl(); |
| 3209 | assert(!isa<UsingShadowDecl>(Target) && "nested shadow declaration"); |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3210 | } |
| 3211 | |
| 3212 | UsingShadowDecl *Shadow |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3213 | = UsingShadowDecl::Create(Context, CurContext, |
| 3214 | UD->getLocation(), UD, Target); |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3215 | UD->addShadowDecl(Shadow); |
| 3216 | |
| 3217 | if (S) |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3218 | PushOnScopeChains(Shadow, S); |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3219 | else |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3220 | CurContext->addDecl(Shadow); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3221 | Shadow->setAccess(UD->getAccess()); |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3222 | |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3223 | if (Orig->isInvalidDecl() || UD->isInvalidDecl()) |
| 3224 | Shadow->setInvalidDecl(); |
| 3225 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3226 | return Shadow; |
| 3227 | } |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3228 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3229 | /// Hides a using shadow declaration. This is required by the current |
| 3230 | /// using-decl implementation when a resolvable using declaration in a |
| 3231 | /// class is followed by a declaration which would hide or override |
| 3232 | /// one or more of the using decl's targets; for example: |
| 3233 | /// |
| 3234 | /// struct Base { void foo(int); }; |
| 3235 | /// struct Derived : Base { |
| 3236 | /// using Base::foo; |
| 3237 | /// void foo(int); |
| 3238 | /// }; |
| 3239 | /// |
| 3240 | /// The governing language is C++03 [namespace.udecl]p12: |
| 3241 | /// |
| 3242 | /// When a using-declaration brings names from a base class into a |
| 3243 | /// derived class scope, member functions in the derived class |
| 3244 | /// override and/or hide member functions with the same name and |
| 3245 | /// parameter types in a base class (rather than conflicting). |
| 3246 | /// |
| 3247 | /// There are two ways to implement this: |
| 3248 | /// (1) optimistically create shadow decls when they're not hidden |
| 3249 | /// by existing declarations, or |
| 3250 | /// (2) don't create any shadow decls (or at least don't make them |
| 3251 | /// visible) until we've fully parsed/instantiated the class. |
| 3252 | /// The problem with (1) is that we might have to retroactively remove |
| 3253 | /// a shadow decl, which requires several O(n) operations because the |
| 3254 | /// decl structures are (very reasonably) not designed for removal. |
| 3255 | /// (2) avoids this but is very fiddly and phase-dependent. |
| 3256 | void Sema::HideUsingShadowDecl(Scope *S, UsingShadowDecl *Shadow) { |
| 3257 | // Remove it from the DeclContext... |
| 3258 | Shadow->getDeclContext()->removeDecl(Shadow); |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3259 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3260 | // ...and the scope, if applicable... |
| 3261 | if (S) { |
| 3262 | S->RemoveDecl(DeclPtrTy::make(static_cast<Decl*>(Shadow))); |
| 3263 | IdResolver.RemoveDecl(Shadow); |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3264 | } |
| 3265 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3266 | // ...and the using decl. |
| 3267 | Shadow->getUsingDecl()->removeShadowDecl(Shadow); |
| 3268 | |
| 3269 | // TODO: complain somehow if Shadow was used. It shouldn't |
| 3270 | // be possible for this to happen, because |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3271 | } |
| 3272 | |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3273 | /// Builds a using declaration. |
| 3274 | /// |
| 3275 | /// \param IsInstantiation - Whether this call arises from an |
| 3276 | /// instantiation of an unresolved using declaration. We treat |
| 3277 | /// the lookup differently for these declarations. |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3278 | NamedDecl *Sema::BuildUsingDeclaration(Scope *S, AccessSpecifier AS, |
| 3279 | SourceLocation UsingLoc, |
Anders Carlsson | c72160b | 2009-08-28 05:40:36 +0000 | [diff] [blame] | 3280 | const CXXScopeSpec &SS, |
| 3281 | SourceLocation IdentLoc, |
| 3282 | DeclarationName Name, |
| 3283 | AttributeList *AttrList, |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3284 | bool IsInstantiation, |
| 3285 | bool IsTypeName, |
| 3286 | SourceLocation TypenameLoc) { |
Anders Carlsson | c72160b | 2009-08-28 05:40:36 +0000 | [diff] [blame] | 3287 | assert(!SS.isInvalid() && "Invalid CXXScopeSpec."); |
| 3288 | assert(IdentLoc.isValid() && "Invalid TargetName location."); |
Eli Friedman | 2a16a13 | 2009-08-27 05:09:36 +0000 | [diff] [blame] | 3289 | |
Anders Carlsson | 550b14b | 2009-08-28 05:49:21 +0000 | [diff] [blame] | 3290 | // FIXME: We ignore attributes for now. |
| 3291 | delete AttrList; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3292 | |
Anders Carlsson | cf9f921 | 2009-08-28 03:16:11 +0000 | [diff] [blame] | 3293 | if (SS.isEmpty()) { |
| 3294 | Diag(IdentLoc, diag::err_using_requires_qualname); |
Anders Carlsson | c72160b | 2009-08-28 05:40:36 +0000 | [diff] [blame] | 3295 | return 0; |
Anders Carlsson | cf9f921 | 2009-08-28 03:16:11 +0000 | [diff] [blame] | 3296 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3297 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3298 | // Do the redeclaration lookup in the current scope. |
| 3299 | LookupResult Previous(*this, Name, IdentLoc, LookupUsingDeclName, |
| 3300 | ForRedeclaration); |
| 3301 | Previous.setHideTags(false); |
| 3302 | if (S) { |
| 3303 | LookupName(Previous, S); |
| 3304 | |
| 3305 | // It is really dumb that we have to do this. |
| 3306 | LookupResult::Filter F = Previous.makeFilter(); |
| 3307 | while (F.hasNext()) { |
| 3308 | NamedDecl *D = F.next(); |
| 3309 | if (!isDeclInScope(D, CurContext, S)) |
| 3310 | F.erase(); |
| 3311 | } |
| 3312 | F.done(); |
| 3313 | } else { |
| 3314 | assert(IsInstantiation && "no scope in non-instantiation"); |
| 3315 | assert(CurContext->isRecord() && "scope not record in instantiation"); |
| 3316 | LookupQualifiedName(Previous, CurContext); |
| 3317 | } |
| 3318 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3319 | NestedNameSpecifier *NNS = |
Anders Carlsson | cf9f921 | 2009-08-28 03:16:11 +0000 | [diff] [blame] | 3320 | static_cast<NestedNameSpecifier *>(SS.getScopeRep()); |
| 3321 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3322 | // Check for invalid redeclarations. |
| 3323 | if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous)) |
| 3324 | return 0; |
| 3325 | |
| 3326 | // Check for bad qualifiers. |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3327 | if (CheckUsingDeclQualifier(UsingLoc, SS, IdentLoc)) |
| 3328 | return 0; |
| 3329 | |
John McCall | af8e6ed | 2009-11-12 03:15:40 +0000 | [diff] [blame] | 3330 | DeclContext *LookupContext = computeDeclContext(SS); |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3331 | NamedDecl *D; |
John McCall | af8e6ed | 2009-11-12 03:15:40 +0000 | [diff] [blame] | 3332 | if (!LookupContext) { |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3333 | if (IsTypeName) { |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3334 | // FIXME: not all declaration name kinds are legal here |
| 3335 | D = UnresolvedUsingTypenameDecl::Create(Context, CurContext, |
| 3336 | UsingLoc, TypenameLoc, |
| 3337 | SS.getRange(), NNS, |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3338 | IdentLoc, Name); |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3339 | } else { |
| 3340 | D = UnresolvedUsingValueDecl::Create(Context, CurContext, |
| 3341 | UsingLoc, SS.getRange(), NNS, |
| 3342 | IdentLoc, Name); |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3343 | } |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3344 | } else { |
| 3345 | D = UsingDecl::Create(Context, CurContext, IdentLoc, |
| 3346 | SS.getRange(), UsingLoc, NNS, Name, |
| 3347 | IsTypeName); |
Anders Carlsson | 550b14b | 2009-08-28 05:49:21 +0000 | [diff] [blame] | 3348 | } |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3349 | D->setAccess(AS); |
| 3350 | CurContext->addDecl(D); |
| 3351 | |
| 3352 | if (!LookupContext) return D; |
| 3353 | UsingDecl *UD = cast<UsingDecl>(D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3354 | |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3355 | if (RequireCompleteDeclContext(SS)) { |
| 3356 | UD->setInvalidDecl(); |
| 3357 | return UD; |
Anders Carlsson | cf9f921 | 2009-08-28 03:16:11 +0000 | [diff] [blame] | 3358 | } |
| 3359 | |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3360 | // Look up the target name. |
| 3361 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 3362 | LookupResult R(*this, Name, IdentLoc, LookupOrdinaryName); |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3363 | |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3364 | // Unlike most lookups, we don't always want to hide tag |
| 3365 | // declarations: tag names are visible through the using declaration |
| 3366 | // even if hidden by ordinary names, *except* in a dependent context |
| 3367 | // where it's important for the sanity of two-phase lookup. |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3368 | if (!IsInstantiation) |
| 3369 | R.setHideTags(false); |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3370 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 3371 | LookupQualifiedName(R, LookupContext); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3372 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 3373 | if (R.empty()) { |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 3374 | Diag(IdentLoc, diag::err_no_member) |
| 3375 | << Name << LookupContext << SS.getRange(); |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3376 | UD->setInvalidDecl(); |
| 3377 | return UD; |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 3378 | } |
| 3379 | |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3380 | if (R.isAmbiguous()) { |
| 3381 | UD->setInvalidDecl(); |
| 3382 | return UD; |
| 3383 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3384 | |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3385 | if (IsTypeName) { |
| 3386 | // If we asked for a typename and got a non-type decl, error out. |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3387 | if (!R.getAsSingle<TypeDecl>()) { |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3388 | Diag(IdentLoc, diag::err_using_typename_non_type); |
| 3389 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
| 3390 | Diag((*I)->getUnderlyingDecl()->getLocation(), |
| 3391 | diag::note_using_decl_target); |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3392 | UD->setInvalidDecl(); |
| 3393 | return UD; |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3394 | } |
| 3395 | } else { |
| 3396 | // If we asked for a non-typename and we got a type, error out, |
| 3397 | // but only if this is an instantiation of an unresolved using |
| 3398 | // decl. Otherwise just silently find the type name. |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3399 | if (IsInstantiation && R.getAsSingle<TypeDecl>()) { |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3400 | Diag(IdentLoc, diag::err_using_dependent_value_is_type); |
| 3401 | Diag(R.getFoundDecl()->getLocation(), diag::note_using_decl_target); |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3402 | UD->setInvalidDecl(); |
| 3403 | return UD; |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 3404 | } |
Anders Carlsson | cf9f921 | 2009-08-28 03:16:11 +0000 | [diff] [blame] | 3405 | } |
| 3406 | |
Anders Carlsson | 73b39cf | 2009-08-28 03:35:18 +0000 | [diff] [blame] | 3407 | // C++0x N2914 [namespace.udecl]p6: |
| 3408 | // A using-declaration shall not name a namespace. |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3409 | if (R.getAsSingle<NamespaceDecl>()) { |
Anders Carlsson | 73b39cf | 2009-08-28 03:35:18 +0000 | [diff] [blame] | 3410 | Diag(IdentLoc, diag::err_using_decl_can_not_refer_to_namespace) |
| 3411 | << SS.getRange(); |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3412 | UD->setInvalidDecl(); |
| 3413 | return UD; |
Anders Carlsson | 73b39cf | 2009-08-28 03:35:18 +0000 | [diff] [blame] | 3414 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3415 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3416 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { |
| 3417 | if (!CheckUsingShadowDecl(UD, *I, Previous)) |
| 3418 | BuildUsingShadowDecl(S, UD, *I); |
| 3419 | } |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 3420 | |
| 3421 | return UD; |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 3422 | } |
| 3423 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3424 | /// Checks that the given using declaration is not an invalid |
| 3425 | /// redeclaration. Note that this is checking only for the using decl |
| 3426 | /// itself, not for any ill-formedness among the UsingShadowDecls. |
| 3427 | bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc, |
| 3428 | bool isTypeName, |
| 3429 | const CXXScopeSpec &SS, |
| 3430 | SourceLocation NameLoc, |
| 3431 | const LookupResult &Prev) { |
| 3432 | // C++03 [namespace.udecl]p8: |
| 3433 | // C++0x [namespace.udecl]p10: |
| 3434 | // A using-declaration is a declaration and can therefore be used |
| 3435 | // repeatedly where (and only where) multiple declarations are |
| 3436 | // allowed. |
| 3437 | // That's only in file contexts. |
| 3438 | if (CurContext->getLookupContext()->isFileContext()) |
| 3439 | return false; |
| 3440 | |
| 3441 | NestedNameSpecifier *Qual |
| 3442 | = static_cast<NestedNameSpecifier*>(SS.getScopeRep()); |
| 3443 | |
| 3444 | for (LookupResult::iterator I = Prev.begin(), E = Prev.end(); I != E; ++I) { |
| 3445 | NamedDecl *D = *I; |
| 3446 | |
| 3447 | bool DTypename; |
| 3448 | NestedNameSpecifier *DQual; |
| 3449 | if (UsingDecl *UD = dyn_cast<UsingDecl>(D)) { |
| 3450 | DTypename = UD->isTypeName(); |
| 3451 | DQual = UD->getTargetNestedNameDecl(); |
| 3452 | } else if (UnresolvedUsingValueDecl *UD |
| 3453 | = dyn_cast<UnresolvedUsingValueDecl>(D)) { |
| 3454 | DTypename = false; |
| 3455 | DQual = UD->getTargetNestedNameSpecifier(); |
| 3456 | } else if (UnresolvedUsingTypenameDecl *UD |
| 3457 | = dyn_cast<UnresolvedUsingTypenameDecl>(D)) { |
| 3458 | DTypename = true; |
| 3459 | DQual = UD->getTargetNestedNameSpecifier(); |
| 3460 | } else continue; |
| 3461 | |
| 3462 | // using decls differ if one says 'typename' and the other doesn't. |
| 3463 | // FIXME: non-dependent using decls? |
| 3464 | if (isTypeName != DTypename) continue; |
| 3465 | |
| 3466 | // using decls differ if they name different scopes (but note that |
| 3467 | // template instantiation can cause this check to trigger when it |
| 3468 | // didn't before instantiation). |
| 3469 | if (Context.getCanonicalNestedNameSpecifier(Qual) != |
| 3470 | Context.getCanonicalNestedNameSpecifier(DQual)) |
| 3471 | continue; |
| 3472 | |
| 3473 | Diag(NameLoc, diag::err_using_decl_redeclaration) << SS.getRange(); |
John McCall | 41ce66f | 2009-12-10 19:51:03 +0000 | [diff] [blame] | 3474 | Diag(D->getLocation(), diag::note_using_decl) << 1; |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 3475 | return true; |
| 3476 | } |
| 3477 | |
| 3478 | return false; |
| 3479 | } |
| 3480 | |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3481 | |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3482 | /// Checks that the given nested-name qualifier used in a using decl |
| 3483 | /// in the current context is appropriately related to the current |
| 3484 | /// scope. If an error is found, diagnoses it and returns true. |
| 3485 | bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc, |
| 3486 | const CXXScopeSpec &SS, |
| 3487 | SourceLocation NameLoc) { |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3488 | DeclContext *NamedContext = computeDeclContext(SS); |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3489 | |
John McCall | 604e7f1 | 2009-12-08 07:46:18 +0000 | [diff] [blame] | 3490 | if (!CurContext->isRecord()) { |
| 3491 | // C++03 [namespace.udecl]p3: |
| 3492 | // C++0x [namespace.udecl]p8: |
| 3493 | // A using-declaration for a class member shall be a member-declaration. |
| 3494 | |
| 3495 | // If we weren't able to compute a valid scope, it must be a |
| 3496 | // dependent class scope. |
| 3497 | if (!NamedContext || NamedContext->isRecord()) { |
| 3498 | Diag(NameLoc, diag::err_using_decl_can_not_refer_to_class_member) |
| 3499 | << SS.getRange(); |
| 3500 | return true; |
| 3501 | } |
| 3502 | |
| 3503 | // Otherwise, everything is known to be fine. |
| 3504 | return false; |
| 3505 | } |
| 3506 | |
| 3507 | // The current scope is a record. |
| 3508 | |
| 3509 | // If the named context is dependent, we can't decide much. |
| 3510 | if (!NamedContext) { |
| 3511 | // FIXME: in C++0x, we can diagnose if we can prove that the |
| 3512 | // nested-name-specifier does not refer to a base class, which is |
| 3513 | // still possible in some cases. |
| 3514 | |
| 3515 | // Otherwise we have to conservatively report that things might be |
| 3516 | // okay. |
| 3517 | return false; |
| 3518 | } |
| 3519 | |
| 3520 | if (!NamedContext->isRecord()) { |
| 3521 | // Ideally this would point at the last name in the specifier, |
| 3522 | // but we don't have that level of source info. |
| 3523 | Diag(SS.getRange().getBegin(), |
| 3524 | diag::err_using_decl_nested_name_specifier_is_not_class) |
| 3525 | << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange(); |
| 3526 | return true; |
| 3527 | } |
| 3528 | |
| 3529 | if (getLangOptions().CPlusPlus0x) { |
| 3530 | // C++0x [namespace.udecl]p3: |
| 3531 | // In a using-declaration used as a member-declaration, the |
| 3532 | // nested-name-specifier shall name a base class of the class |
| 3533 | // being defined. |
| 3534 | |
| 3535 | if (cast<CXXRecordDecl>(CurContext)->isProvablyNotDerivedFrom( |
| 3536 | cast<CXXRecordDecl>(NamedContext))) { |
| 3537 | if (CurContext == NamedContext) { |
| 3538 | Diag(NameLoc, |
| 3539 | diag::err_using_decl_nested_name_specifier_is_current_class) |
| 3540 | << SS.getRange(); |
| 3541 | return true; |
| 3542 | } |
| 3543 | |
| 3544 | Diag(SS.getRange().getBegin(), |
| 3545 | diag::err_using_decl_nested_name_specifier_is_not_base_class) |
| 3546 | << (NestedNameSpecifier*) SS.getScopeRep() |
| 3547 | << cast<CXXRecordDecl>(CurContext) |
| 3548 | << SS.getRange(); |
| 3549 | return true; |
| 3550 | } |
| 3551 | |
| 3552 | return false; |
| 3553 | } |
| 3554 | |
| 3555 | // C++03 [namespace.udecl]p4: |
| 3556 | // A using-declaration used as a member-declaration shall refer |
| 3557 | // to a member of a base class of the class being defined [etc.]. |
| 3558 | |
| 3559 | // Salient point: SS doesn't have to name a base class as long as |
| 3560 | // lookup only finds members from base classes. Therefore we can |
| 3561 | // diagnose here only if we can prove that that can't happen, |
| 3562 | // i.e. if the class hierarchies provably don't intersect. |
| 3563 | |
| 3564 | // TODO: it would be nice if "definitely valid" results were cached |
| 3565 | // in the UsingDecl and UsingShadowDecl so that these checks didn't |
| 3566 | // need to be repeated. |
| 3567 | |
| 3568 | struct UserData { |
| 3569 | llvm::DenseSet<const CXXRecordDecl*> Bases; |
| 3570 | |
| 3571 | static bool collect(const CXXRecordDecl *Base, void *OpaqueData) { |
| 3572 | UserData *Data = reinterpret_cast<UserData*>(OpaqueData); |
| 3573 | Data->Bases.insert(Base); |
| 3574 | return true; |
| 3575 | } |
| 3576 | |
| 3577 | bool hasDependentBases(const CXXRecordDecl *Class) { |
| 3578 | return !Class->forallBases(collect, this); |
| 3579 | } |
| 3580 | |
| 3581 | /// Returns true if the base is dependent or is one of the |
| 3582 | /// accumulated base classes. |
| 3583 | static bool doesNotContain(const CXXRecordDecl *Base, void *OpaqueData) { |
| 3584 | UserData *Data = reinterpret_cast<UserData*>(OpaqueData); |
| 3585 | return !Data->Bases.count(Base); |
| 3586 | } |
| 3587 | |
| 3588 | bool mightShareBases(const CXXRecordDecl *Class) { |
| 3589 | return Bases.count(Class) || !Class->forallBases(doesNotContain, this); |
| 3590 | } |
| 3591 | }; |
| 3592 | |
| 3593 | UserData Data; |
| 3594 | |
| 3595 | // Returns false if we find a dependent base. |
| 3596 | if (Data.hasDependentBases(cast<CXXRecordDecl>(CurContext))) |
| 3597 | return false; |
| 3598 | |
| 3599 | // Returns false if the class has a dependent base or if it or one |
| 3600 | // of its bases is present in the base set of the current context. |
| 3601 | if (Data.mightShareBases(cast<CXXRecordDecl>(NamedContext))) |
| 3602 | return false; |
| 3603 | |
| 3604 | Diag(SS.getRange().getBegin(), |
| 3605 | diag::err_using_decl_nested_name_specifier_is_not_base_class) |
| 3606 | << (NestedNameSpecifier*) SS.getScopeRep() |
| 3607 | << cast<CXXRecordDecl>(CurContext) |
| 3608 | << SS.getRange(); |
| 3609 | |
| 3610 | return true; |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 3611 | } |
| 3612 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3613 | Sema::DeclPtrTy Sema::ActOnNamespaceAliasDef(Scope *S, |
Anders Carlsson | 03bd5a1 | 2009-03-28 22:53:22 +0000 | [diff] [blame] | 3614 | SourceLocation NamespaceLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3615 | SourceLocation AliasLoc, |
| 3616 | IdentifierInfo *Alias, |
| 3617 | const CXXScopeSpec &SS, |
Anders Carlsson | 03bd5a1 | 2009-03-28 22:53:22 +0000 | [diff] [blame] | 3618 | SourceLocation IdentLoc, |
| 3619 | IdentifierInfo *Ident) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3620 | |
Anders Carlsson | 81c85c4 | 2009-03-28 23:53:49 +0000 | [diff] [blame] | 3621 | // Lookup the namespace name. |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 3622 | LookupResult R(*this, Ident, IdentLoc, LookupNamespaceName); |
| 3623 | LookupParsedName(R, S, &SS); |
Anders Carlsson | 81c85c4 | 2009-03-28 23:53:49 +0000 | [diff] [blame] | 3624 | |
Anders Carlsson | 8d7ba40 | 2009-03-28 06:23:46 +0000 | [diff] [blame] | 3625 | // Check if we have a previous declaration with the same name. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 3626 | if (NamedDecl *PrevDecl |
John McCall | 7d384dd | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 3627 | = LookupSingleName(S, Alias, LookupOrdinaryName, ForRedeclaration)) { |
Anders Carlsson | 81c85c4 | 2009-03-28 23:53:49 +0000 | [diff] [blame] | 3628 | if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(PrevDecl)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3629 | // We already have an alias with the same name that points to the same |
Anders Carlsson | 81c85c4 | 2009-03-28 23:53:49 +0000 | [diff] [blame] | 3630 | // namespace, so don't create a new one. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 3631 | if (!R.isAmbiguous() && !R.empty() && |
| 3632 | AD->getNamespace() == getNamespaceDecl(R.getFoundDecl())) |
Anders Carlsson | 81c85c4 | 2009-03-28 23:53:49 +0000 | [diff] [blame] | 3633 | return DeclPtrTy(); |
| 3634 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3635 | |
Anders Carlsson | 8d7ba40 | 2009-03-28 06:23:46 +0000 | [diff] [blame] | 3636 | unsigned DiagID = isa<NamespaceDecl>(PrevDecl) ? diag::err_redefinition : |
| 3637 | diag::err_redefinition_different_kind; |
| 3638 | Diag(AliasLoc, DiagID) << Alias; |
| 3639 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3640 | return DeclPtrTy(); |
Anders Carlsson | 8d7ba40 | 2009-03-28 06:23:46 +0000 | [diff] [blame] | 3641 | } |
| 3642 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 3643 | if (R.isAmbiguous()) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3644 | return DeclPtrTy(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3645 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 3646 | if (R.empty()) { |
Anders Carlsson | 5721c68 | 2009-03-28 06:42:02 +0000 | [diff] [blame] | 3647 | Diag(NamespaceLoc, diag::err_expected_namespace_name) << SS.getRange(); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3648 | return DeclPtrTy(); |
Anders Carlsson | 5721c68 | 2009-03-28 06:42:02 +0000 | [diff] [blame] | 3649 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3650 | |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 3651 | NamespaceAliasDecl *AliasDecl = |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3652 | NamespaceAliasDecl::Create(Context, CurContext, NamespaceLoc, AliasLoc, |
| 3653 | Alias, SS.getRange(), |
Douglas Gregor | 6c9c940 | 2009-05-30 06:48:27 +0000 | [diff] [blame] | 3654 | (NestedNameSpecifier *)SS.getScopeRep(), |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 3655 | IdentLoc, R.getFoundDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3656 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3657 | CurContext->addDecl(AliasDecl); |
Anders Carlsson | 68771c7 | 2009-03-28 22:58:02 +0000 | [diff] [blame] | 3658 | return DeclPtrTy::make(AliasDecl); |
Anders Carlsson | dbb0094 | 2009-03-28 05:27:17 +0000 | [diff] [blame] | 3659 | } |
| 3660 | |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 3661 | void Sema::DefineImplicitDefaultConstructor(SourceLocation CurrentLocation, |
| 3662 | CXXConstructorDecl *Constructor) { |
Fariborz Jahanian | 05a5c45 | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 3663 | assert((Constructor->isImplicit() && Constructor->isDefaultConstructor() && |
| 3664 | !Constructor->isUsed()) && |
| 3665 | "DefineImplicitDefaultConstructor - call it for implicit default ctor"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3666 | |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 3667 | CXXRecordDecl *ClassDecl |
| 3668 | = cast<CXXRecordDecl>(Constructor->getDeclContext()); |
| 3669 | assert(ClassDecl && "DefineImplicitDefaultConstructor - invalid constructor"); |
Eli Friedman | 49c16da | 2009-11-09 01:05:47 +0000 | [diff] [blame] | 3670 | |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 3671 | if (SetBaseOrMemberInitializers(Constructor, 0, 0, true)) { |
Anders Carlsson | 3790980 | 2009-11-30 21:24:50 +0000 | [diff] [blame] | 3672 | Diag(CurrentLocation, diag::note_member_synthesized_at) |
| 3673 | << CXXDefaultConstructor << Context.getTagDeclType(ClassDecl); |
Eli Friedman | 80c30da | 2009-11-09 19:20:36 +0000 | [diff] [blame] | 3674 | Constructor->setInvalidDecl(); |
| 3675 | } else { |
| 3676 | Constructor->setUsed(); |
| 3677 | } |
Fariborz Jahanian | f8dcb86 | 2009-06-19 19:55:27 +0000 | [diff] [blame] | 3678 | } |
| 3679 | |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3680 | void Sema::DefineImplicitDestructor(SourceLocation CurrentLocation, |
Douglas Gregor | 4fe95f9 | 2009-09-04 19:04:08 +0000 | [diff] [blame] | 3681 | CXXDestructorDecl *Destructor) { |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3682 | assert((Destructor->isImplicit() && !Destructor->isUsed()) && |
| 3683 | "DefineImplicitDestructor - call it for implicit default dtor"); |
Anders Carlsson | 6d70139 | 2009-11-15 22:49:34 +0000 | [diff] [blame] | 3684 | CXXRecordDecl *ClassDecl = Destructor->getParent(); |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3685 | assert(ClassDecl && "DefineImplicitDestructor - invalid destructor"); |
| 3686 | // C++ [class.dtor] p5 |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3687 | // Before the implicitly-declared default destructor for a class is |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3688 | // implicitly defined, all the implicitly-declared default destructors |
| 3689 | // for its base class and its non-static data members shall have been |
| 3690 | // implicitly defined. |
Fariborz Jahanian | 514b7b1 | 2009-06-30 16:36:53 +0000 | [diff] [blame] | 3691 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(), |
| 3692 | E = ClassDecl->bases_end(); Base != E; ++Base) { |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3693 | CXXRecordDecl *BaseClassDecl |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3694 | = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3695 | if (!BaseClassDecl->hasTrivialDestructor()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3696 | if (CXXDestructorDecl *BaseDtor = |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3697 | const_cast<CXXDestructorDecl*>(BaseClassDecl->getDestructor(Context))) |
| 3698 | MarkDeclarationReferenced(CurrentLocation, BaseDtor); |
| 3699 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3700 | assert(false && |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3701 | "DefineImplicitDestructor - missing dtor in a base class"); |
| 3702 | } |
| 3703 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3704 | |
Fariborz Jahanian | 514b7b1 | 2009-06-30 16:36:53 +0000 | [diff] [blame] | 3705 | for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(), |
| 3706 | E = ClassDecl->field_end(); Field != E; ++Field) { |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3707 | QualType FieldType = Context.getCanonicalType((*Field)->getType()); |
| 3708 | if (const ArrayType *Array = Context.getAsArrayType(FieldType)) |
| 3709 | FieldType = Array->getElementType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3710 | if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) { |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3711 | CXXRecordDecl *FieldClassDecl |
| 3712 | = cast<CXXRecordDecl>(FieldClassType->getDecl()); |
| 3713 | if (!FieldClassDecl->hasTrivialDestructor()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3714 | if (CXXDestructorDecl *FieldDtor = |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3715 | const_cast<CXXDestructorDecl*>( |
| 3716 | FieldClassDecl->getDestructor(Context))) |
| 3717 | MarkDeclarationReferenced(CurrentLocation, FieldDtor); |
| 3718 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3719 | assert(false && |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3720 | "DefineImplicitDestructor - missing dtor in class of a data member"); |
| 3721 | } |
| 3722 | } |
| 3723 | } |
Anders Carlsson | 3790980 | 2009-11-30 21:24:50 +0000 | [diff] [blame] | 3724 | |
| 3725 | // FIXME: If CheckDestructor fails, we should emit a note about where the |
| 3726 | // implicit destructor was needed. |
| 3727 | if (CheckDestructor(Destructor)) { |
| 3728 | Diag(CurrentLocation, diag::note_member_synthesized_at) |
| 3729 | << CXXDestructor << Context.getTagDeclType(ClassDecl); |
| 3730 | |
| 3731 | Destructor->setInvalidDecl(); |
| 3732 | return; |
| 3733 | } |
| 3734 | |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3735 | Destructor->setUsed(); |
| 3736 | } |
| 3737 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3738 | void Sema::DefineImplicitOverloadedAssign(SourceLocation CurrentLocation, |
| 3739 | CXXMethodDecl *MethodDecl) { |
| 3740 | assert((MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 3741 | MethodDecl->getOverloadedOperator() == OO_Equal && |
| 3742 | !MethodDecl->isUsed()) && |
| 3743 | "DefineImplicitOverloadedAssign - call it for implicit assignment op"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3744 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3745 | CXXRecordDecl *ClassDecl |
| 3746 | = cast<CXXRecordDecl>(MethodDecl->getDeclContext()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3747 | |
Fariborz Jahanian | c6249b9 | 2009-06-26 16:08:57 +0000 | [diff] [blame] | 3748 | // C++[class.copy] p12 |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3749 | // Before the implicitly-declared copy assignment operator for a class is |
| 3750 | // implicitly defined, all implicitly-declared copy assignment operators |
| 3751 | // for its direct base classes and its nonstatic data members shall have |
| 3752 | // been implicitly defined. |
| 3753 | bool err = false; |
Fariborz Jahanian | 514b7b1 | 2009-06-30 16:36:53 +0000 | [diff] [blame] | 3754 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(), |
| 3755 | E = ClassDecl->bases_end(); Base != E; ++Base) { |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3756 | CXXRecordDecl *BaseClassDecl |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3757 | = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3758 | if (CXXMethodDecl *BaseAssignOpMethod = |
Anders Carlsson | b6cc91b | 2009-12-09 03:01:51 +0000 | [diff] [blame] | 3759 | getAssignOperatorMethod(CurrentLocation, MethodDecl->getParamDecl(0), |
| 3760 | BaseClassDecl)) |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3761 | MarkDeclarationReferenced(CurrentLocation, BaseAssignOpMethod); |
| 3762 | } |
Fariborz Jahanian | 514b7b1 | 2009-06-30 16:36:53 +0000 | [diff] [blame] | 3763 | for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(), |
| 3764 | E = ClassDecl->field_end(); Field != E; ++Field) { |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3765 | QualType FieldType = Context.getCanonicalType((*Field)->getType()); |
| 3766 | if (const ArrayType *Array = Context.getAsArrayType(FieldType)) |
| 3767 | FieldType = Array->getElementType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3768 | if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) { |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3769 | CXXRecordDecl *FieldClassDecl |
| 3770 | = cast<CXXRecordDecl>(FieldClassType->getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3771 | if (CXXMethodDecl *FieldAssignOpMethod = |
Anders Carlsson | b6cc91b | 2009-12-09 03:01:51 +0000 | [diff] [blame] | 3772 | getAssignOperatorMethod(CurrentLocation, MethodDecl->getParamDecl(0), |
| 3773 | FieldClassDecl)) |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3774 | MarkDeclarationReferenced(CurrentLocation, FieldAssignOpMethod); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 3775 | } else if (FieldType->isReferenceType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3776 | Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) |
Anders Carlsson | 5e09d4c | 2009-07-09 17:47:25 +0000 | [diff] [blame] | 3777 | << Context.getTagDeclType(ClassDecl) << 0 << Field->getDeclName(); |
| 3778 | Diag(Field->getLocation(), diag::note_declared_at); |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3779 | Diag(CurrentLocation, diag::note_first_required_here); |
| 3780 | err = true; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 3781 | } else if (FieldType.isConstQualified()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3782 | Diag(ClassDecl->getLocation(), diag::err_uninitialized_member_for_assign) |
Anders Carlsson | 5e09d4c | 2009-07-09 17:47:25 +0000 | [diff] [blame] | 3783 | << Context.getTagDeclType(ClassDecl) << 1 << Field->getDeclName(); |
| 3784 | Diag(Field->getLocation(), diag::note_declared_at); |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3785 | Diag(CurrentLocation, diag::note_first_required_here); |
| 3786 | err = true; |
| 3787 | } |
| 3788 | } |
| 3789 | if (!err) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3790 | MethodDecl->setUsed(); |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3791 | } |
| 3792 | |
| 3793 | CXXMethodDecl * |
Anders Carlsson | b6cc91b | 2009-12-09 03:01:51 +0000 | [diff] [blame] | 3794 | Sema::getAssignOperatorMethod(SourceLocation CurrentLocation, |
| 3795 | ParmVarDecl *ParmDecl, |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3796 | CXXRecordDecl *ClassDecl) { |
| 3797 | QualType LHSType = Context.getTypeDeclType(ClassDecl); |
| 3798 | QualType RHSType(LHSType); |
| 3799 | // If class's assignment operator argument is const/volatile qualified, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3800 | // look for operator = (const/volatile B&). Otherwise, look for |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3801 | // operator = (B&). |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3802 | RHSType = Context.getCVRQualifiedType(RHSType, |
| 3803 | ParmDecl->getType().getCVRQualifiers()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3804 | ExprOwningPtr<Expr> LHS(this, new (Context) DeclRefExpr(ParmDecl, |
Anders Carlsson | b6cc91b | 2009-12-09 03:01:51 +0000 | [diff] [blame] | 3805 | LHSType, |
| 3806 | SourceLocation())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3807 | ExprOwningPtr<Expr> RHS(this, new (Context) DeclRefExpr(ParmDecl, |
Anders Carlsson | b6cc91b | 2009-12-09 03:01:51 +0000 | [diff] [blame] | 3808 | RHSType, |
| 3809 | CurrentLocation)); |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3810 | Expr *Args[2] = { &*LHS, &*RHS }; |
| 3811 | OverloadCandidateSet CandidateSet; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3812 | AddMemberOperatorCandidates(clang::OO_Equal, SourceLocation(), Args, 2, |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3813 | CandidateSet); |
| 3814 | OverloadCandidateSet::iterator Best; |
Anders Carlsson | b6cc91b | 2009-12-09 03:01:51 +0000 | [diff] [blame] | 3815 | if (BestViableFunction(CandidateSet, CurrentLocation, Best) == OR_Success) |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 3816 | return cast<CXXMethodDecl>(Best->Function); |
| 3817 | assert(false && |
| 3818 | "getAssignOperatorMethod - copy assignment operator method not found"); |
| 3819 | return 0; |
| 3820 | } |
| 3821 | |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3822 | void Sema::DefineImplicitCopyConstructor(SourceLocation CurrentLocation, |
| 3823 | CXXConstructorDecl *CopyConstructor, |
| 3824 | unsigned TypeQuals) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3825 | assert((CopyConstructor->isImplicit() && |
Douglas Gregor | 9e9199d | 2009-12-22 00:34:07 +0000 | [diff] [blame] | 3826 | CopyConstructor->isCopyConstructor(TypeQuals) && |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3827 | !CopyConstructor->isUsed()) && |
| 3828 | "DefineImplicitCopyConstructor - call it for implicit copy ctor"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3829 | |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3830 | CXXRecordDecl *ClassDecl |
| 3831 | = cast<CXXRecordDecl>(CopyConstructor->getDeclContext()); |
| 3832 | assert(ClassDecl && "DefineImplicitCopyConstructor - invalid constructor"); |
Fariborz Jahanian | 220a0f3 | 2009-06-23 23:42:10 +0000 | [diff] [blame] | 3833 | // C++ [class.copy] p209 |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3834 | // Before the implicitly-declared copy constructor for a class is |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3835 | // implicitly defined, all the implicitly-declared copy constructors |
| 3836 | // for its base class and its non-static data members shall have been |
| 3837 | // implicitly defined. |
| 3838 | for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(); |
| 3839 | Base != ClassDecl->bases_end(); ++Base) { |
| 3840 | CXXRecordDecl *BaseClassDecl |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3841 | = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3842 | if (CXXConstructorDecl *BaseCopyCtor = |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3843 | BaseClassDecl->getCopyConstructor(Context, TypeQuals)) |
Fariborz Jahanian | 220a0f3 | 2009-06-23 23:42:10 +0000 | [diff] [blame] | 3844 | MarkDeclarationReferenced(CurrentLocation, BaseCopyCtor); |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3845 | } |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3846 | for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(), |
| 3847 | FieldEnd = ClassDecl->field_end(); |
| 3848 | Field != FieldEnd; ++Field) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3849 | QualType FieldType = Context.getCanonicalType((*Field)->getType()); |
| 3850 | if (const ArrayType *Array = Context.getAsArrayType(FieldType)) |
| 3851 | FieldType = Array->getElementType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3852 | if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3853 | CXXRecordDecl *FieldClassDecl |
| 3854 | = cast<CXXRecordDecl>(FieldClassType->getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3855 | if (CXXConstructorDecl *FieldCopyCtor = |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3856 | FieldClassDecl->getCopyConstructor(Context, TypeQuals)) |
Fariborz Jahanian | 220a0f3 | 2009-06-23 23:42:10 +0000 | [diff] [blame] | 3857 | MarkDeclarationReferenced(CurrentLocation, FieldCopyCtor); |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 3858 | } |
| 3859 | } |
| 3860 | CopyConstructor->setUsed(); |
| 3861 | } |
| 3862 | |
Anders Carlsson | da3f4e2 | 2009-08-25 05:12:04 +0000 | [diff] [blame] | 3863 | Sema::OwningExprResult |
Anders Carlsson | ec8e5ea | 2009-09-05 07:40:38 +0000 | [diff] [blame] | 3864 | Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3865 | CXXConstructorDecl *Constructor, |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 3866 | MultiExprArg ExprArgs, |
| 3867 | bool RequiresZeroInit) { |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 3868 | bool Elidable = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3869 | |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 3870 | // C++ [class.copy]p15: |
| 3871 | // Whenever a temporary class object is copied using a copy constructor, and |
| 3872 | // this object and the copy have the same cv-unqualified type, an |
| 3873 | // implementation is permitted to treat the original and the copy as two |
| 3874 | // different ways of referring to the same object and not perform a copy at |
| 3875 | // all, even if the class copy constructor or destructor have side effects. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3876 | |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 3877 | // FIXME: Is this enough? |
Douglas Gregor | 9e9199d | 2009-12-22 00:34:07 +0000 | [diff] [blame] | 3878 | if (Constructor->isCopyConstructor()) { |
Anders Carlsson | f47511a | 2009-09-07 22:23:31 +0000 | [diff] [blame] | 3879 | Expr *E = ((Expr **)ExprArgs.get())[0]; |
Douglas Gregor | 18ef5e2 | 2009-12-18 05:02:21 +0000 | [diff] [blame] | 3880 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) |
| 3881 | if (ICE->getCastKind() == CastExpr::CK_NoOp) |
| 3882 | E = ICE->getSubExpr(); |
Eli Friedman | cb48f8a | 2009-12-24 23:33:34 +0000 | [diff] [blame] | 3883 | if (CXXFunctionalCastExpr *FCE = dyn_cast<CXXFunctionalCastExpr>(E)) |
| 3884 | E = FCE->getSubExpr(); |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 3885 | while (CXXBindTemporaryExpr *BE = dyn_cast<CXXBindTemporaryExpr>(E)) |
| 3886 | E = BE->getSubExpr(); |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 3887 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) |
| 3888 | if (ICE->getCastKind() == CastExpr::CK_NoOp) |
| 3889 | E = ICE->getSubExpr(); |
Eli Friedman | 0336843 | 2009-12-06 09:26:33 +0000 | [diff] [blame] | 3890 | |
| 3891 | if (CallExpr *CE = dyn_cast<CallExpr>(E)) |
| 3892 | Elidable = !CE->getCallReturnType()->isReferenceType(); |
| 3893 | else if (isa<CXXTemporaryObjectExpr>(E)) |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 3894 | Elidable = true; |
Eli Friedman | cb48f8a | 2009-12-24 23:33:34 +0000 | [diff] [blame] | 3895 | else if (isa<CXXConstructExpr>(E)) |
| 3896 | Elidable = true; |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 3897 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3898 | |
| 3899 | return BuildCXXConstructExpr(ConstructLoc, DeclInitType, Constructor, |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 3900 | Elidable, move(ExprArgs), RequiresZeroInit); |
Anders Carlsson | 9abf2ae | 2009-08-16 05:13:48 +0000 | [diff] [blame] | 3901 | } |
| 3902 | |
Fariborz Jahanian | b2c352e | 2009-08-05 17:03:54 +0000 | [diff] [blame] | 3903 | /// BuildCXXConstructExpr - Creates a complete call to a constructor, |
| 3904 | /// including handling of its default argument expressions. |
Anders Carlsson | da3f4e2 | 2009-08-25 05:12:04 +0000 | [diff] [blame] | 3905 | Sema::OwningExprResult |
Anders Carlsson | ec8e5ea | 2009-09-05 07:40:38 +0000 | [diff] [blame] | 3906 | Sema::BuildCXXConstructExpr(SourceLocation ConstructLoc, QualType DeclInitType, |
| 3907 | CXXConstructorDecl *Constructor, bool Elidable, |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 3908 | MultiExprArg ExprArgs, |
| 3909 | bool RequiresZeroInit) { |
Anders Carlsson | f47511a | 2009-09-07 22:23:31 +0000 | [diff] [blame] | 3910 | unsigned NumExprs = ExprArgs.size(); |
| 3911 | Expr **Exprs = (Expr **)ExprArgs.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3912 | |
Douglas Gregor | 7edfb69 | 2009-11-23 12:27:39 +0000 | [diff] [blame] | 3913 | MarkDeclarationReferenced(ConstructLoc, Constructor); |
Douglas Gregor | 99a2e60 | 2009-12-16 01:38:02 +0000 | [diff] [blame] | 3914 | return Owned(CXXConstructExpr::Create(Context, DeclInitType, ConstructLoc, |
Douglas Gregor | 16006c9 | 2009-12-16 18:50:27 +0000 | [diff] [blame] | 3915 | Constructor, Elidable, Exprs, NumExprs, |
| 3916 | RequiresZeroInit)); |
Fariborz Jahanian | b2c352e | 2009-08-05 17:03:54 +0000 | [diff] [blame] | 3917 | } |
| 3918 | |
Anders Carlsson | e7624a7 | 2009-08-27 05:08:22 +0000 | [diff] [blame] | 3919 | Sema::OwningExprResult |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3920 | Sema::BuildCXXTemporaryObjectExpr(CXXConstructorDecl *Constructor, |
| 3921 | QualType Ty, |
| 3922 | SourceLocation TyBeginLoc, |
Anders Carlsson | e7624a7 | 2009-08-27 05:08:22 +0000 | [diff] [blame] | 3923 | MultiExprArg Args, |
| 3924 | SourceLocation RParenLoc) { |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 3925 | unsigned NumExprs = Args.size(); |
| 3926 | Expr **Exprs = (Expr **)Args.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3927 | |
Douglas Gregor | 7edfb69 | 2009-11-23 12:27:39 +0000 | [diff] [blame] | 3928 | MarkDeclarationReferenced(TyBeginLoc, Constructor); |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 3929 | return Owned(new (Context) CXXTemporaryObjectExpr(Context, Constructor, Ty, |
| 3930 | TyBeginLoc, Exprs, |
| 3931 | NumExprs, RParenLoc)); |
Anders Carlsson | e7624a7 | 2009-08-27 05:08:22 +0000 | [diff] [blame] | 3932 | } |
| 3933 | |
| 3934 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3935 | bool Sema::InitializeVarWithConstructor(VarDecl *VD, |
Fariborz Jahanian | b2c352e | 2009-08-05 17:03:54 +0000 | [diff] [blame] | 3936 | CXXConstructorDecl *Constructor, |
Anders Carlsson | f47511a | 2009-09-07 22:23:31 +0000 | [diff] [blame] | 3937 | MultiExprArg Exprs) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3938 | OwningExprResult TempResult = |
Fariborz Jahanian | c0fcce4 | 2009-10-28 18:41:06 +0000 | [diff] [blame] | 3939 | BuildCXXConstructExpr(VD->getLocation(), VD->getType(), Constructor, |
Anders Carlsson | f47511a | 2009-09-07 22:23:31 +0000 | [diff] [blame] | 3940 | move(Exprs)); |
Anders Carlsson | fe2de49 | 2009-08-25 05:18:00 +0000 | [diff] [blame] | 3941 | if (TempResult.isInvalid()) |
| 3942 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3943 | |
Anders Carlsson | da3f4e2 | 2009-08-25 05:12:04 +0000 | [diff] [blame] | 3944 | Expr *Temp = TempResult.takeAs<Expr>(); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 3945 | MarkDeclarationReferenced(VD->getLocation(), Constructor); |
Anders Carlsson | 0ece491 | 2009-12-15 20:51:39 +0000 | [diff] [blame] | 3946 | Temp = MaybeCreateCXXExprWithTemporaries(Temp); |
Douglas Gregor | 78d1583 | 2009-05-26 18:54:04 +0000 | [diff] [blame] | 3947 | VD->setInit(Context, Temp); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3948 | |
Anders Carlsson | fe2de49 | 2009-08-25 05:18:00 +0000 | [diff] [blame] | 3949 | return false; |
Anders Carlsson | 930e8d0 | 2009-04-16 23:50:50 +0000 | [diff] [blame] | 3950 | } |
| 3951 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3952 | void Sema::FinalizeVarWithDestructor(VarDecl *VD, QualType DeclInitType) { |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3953 | CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>( |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3954 | DeclInitType->getAs<RecordType>()->getDecl()); |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3955 | if (!ClassDecl->hasTrivialDestructor()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3956 | if (CXXDestructorDecl *Destructor = |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3957 | const_cast<CXXDestructorDecl*>(ClassDecl->getDestructor(Context))) |
Fariborz Jahanian | a83f7ed | 2009-08-03 19:13:25 +0000 | [diff] [blame] | 3958 | MarkDeclarationReferenced(VD->getLocation(), Destructor); |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 3959 | } |
| 3960 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3961 | /// AddCXXDirectInitializerToDecl - This action is called immediately after |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 3962 | /// ActOnDeclarator, when a C++ direct initializer is present. |
| 3963 | /// e.g: "int x(1);" |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3964 | void Sema::AddCXXDirectInitializerToDecl(DeclPtrTy Dcl, |
| 3965 | SourceLocation LParenLoc, |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 3966 | MultiExprArg Exprs, |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 3967 | SourceLocation *CommaLocs, |
| 3968 | SourceLocation RParenLoc) { |
Daniel Dunbar | 5184626 | 2009-12-24 19:19:26 +0000 | [diff] [blame] | 3969 | assert(Exprs.size() != 0 && Exprs.get() && "missing expressions"); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3970 | Decl *RealDecl = Dcl.getAs<Decl>(); |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 3971 | |
| 3972 | // If there is no declaration, there was an error parsing it. Just ignore |
| 3973 | // the initializer. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 3974 | if (RealDecl == 0) |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 3975 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3976 | |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 3977 | VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); |
| 3978 | if (!VDecl) { |
| 3979 | Diag(RealDecl->getLocation(), diag::err_illegal_initializer); |
| 3980 | RealDecl->setInvalidDecl(); |
| 3981 | return; |
| 3982 | } |
| 3983 | |
Douglas Gregor | 83ddad3 | 2009-08-26 21:14:46 +0000 | [diff] [blame] | 3984 | // We will represent direct-initialization similarly to copy-initialization: |
Argyrios Kyrtzidis | ce8e292 | 2008-10-06 23:08:37 +0000 | [diff] [blame] | 3985 | // int x(1); -as-> int x = 1; |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 3986 | // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c); |
| 3987 | // |
| 3988 | // Clients that want to distinguish between the two forms, can check for |
| 3989 | // direct initializer using VarDecl::hasCXXDirectInitializer(). |
| 3990 | // A major benefit is that clients that don't particularly care about which |
| 3991 | // exactly form was it (like the CodeGen) can handle both cases without |
| 3992 | // special case code. |
Argyrios Kyrtzidis | 06ad1f5 | 2008-10-06 18:37:09 +0000 | [diff] [blame] | 3993 | |
Douglas Gregor | 83ddad3 | 2009-08-26 21:14:46 +0000 | [diff] [blame] | 3994 | // If either the declaration has a dependent type or if any of the expressions |
| 3995 | // is type-dependent, we represent the initialization via a ParenListExpr for |
| 3996 | // later use during template instantiation. |
| 3997 | if (VDecl->getType()->isDependentType() || |
| 3998 | Expr::hasAnyTypeDependentArguments((Expr **)Exprs.get(), Exprs.size())) { |
| 3999 | // Let clients know that initialization was done with a direct initializer. |
| 4000 | VDecl->setCXXDirectInitializer(true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4001 | |
Douglas Gregor | 83ddad3 | 2009-08-26 21:14:46 +0000 | [diff] [blame] | 4002 | // Store the initialization expressions as a ParenListExpr. |
| 4003 | unsigned NumExprs = Exprs.size(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4004 | VDecl->setInit(Context, |
Douglas Gregor | 83ddad3 | 2009-08-26 21:14:46 +0000 | [diff] [blame] | 4005 | new (Context) ParenListExpr(Context, LParenLoc, |
| 4006 | (Expr **)Exprs.release(), |
| 4007 | NumExprs, RParenLoc)); |
| 4008 | return; |
| 4009 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4010 | |
Douglas Gregor | 83ddad3 | 2009-08-26 21:14:46 +0000 | [diff] [blame] | 4011 | |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 4012 | // C++ 8.5p11: |
| 4013 | // The form of initialization (using parentheses or '=') is generally |
| 4014 | // insignificant, but does matter when the entity being initialized has a |
Argyrios Kyrtzidis | 06ad1f5 | 2008-10-06 18:37:09 +0000 | [diff] [blame] | 4015 | // class type. |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4016 | QualType DeclInitType = VDecl->getType(); |
| 4017 | if (const ArrayType *Array = Context.getAsArrayType(DeclInitType)) |
Fariborz Jahanian | 680a3f3 | 2009-10-28 19:04:36 +0000 | [diff] [blame] | 4018 | DeclInitType = Context.getBaseElementType(Array); |
Argyrios Kyrtzidis | 06ad1f5 | 2008-10-06 18:37:09 +0000 | [diff] [blame] | 4019 | |
Douglas Gregor | 615c5d4 | 2009-03-24 16:43:20 +0000 | [diff] [blame] | 4020 | if (RequireCompleteType(VDecl->getLocation(), VDecl->getType(), |
| 4021 | diag::err_typecheck_decl_incomplete_type)) { |
| 4022 | VDecl->setInvalidDecl(); |
| 4023 | return; |
| 4024 | } |
| 4025 | |
Douglas Gregor | 90f9382 | 2009-12-22 22:17:25 +0000 | [diff] [blame] | 4026 | // The variable can not have an abstract class type. |
| 4027 | if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(), |
| 4028 | diag::err_abstract_type_in_decl, |
| 4029 | AbstractVariableType)) |
| 4030 | VDecl->setInvalidDecl(); |
| 4031 | |
| 4032 | const VarDecl *Def = 0; |
| 4033 | if (VDecl->getDefinition(Def)) { |
| 4034 | Diag(VDecl->getLocation(), diag::err_redefinition) |
| 4035 | << VDecl->getDeclName(); |
| 4036 | Diag(Def->getLocation(), diag::note_previous_definition); |
| 4037 | VDecl->setInvalidDecl(); |
Argyrios Kyrtzidis | 06ad1f5 | 2008-10-06 18:37:09 +0000 | [diff] [blame] | 4038 | return; |
| 4039 | } |
Douglas Gregor | 90f9382 | 2009-12-22 22:17:25 +0000 | [diff] [blame] | 4040 | |
| 4041 | // Capture the variable that is being initialized and the style of |
| 4042 | // initialization. |
| 4043 | InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl); |
| 4044 | |
| 4045 | // FIXME: Poor source location information. |
| 4046 | InitializationKind Kind |
| 4047 | = InitializationKind::CreateDirect(VDecl->getLocation(), |
| 4048 | LParenLoc, RParenLoc); |
| 4049 | |
| 4050 | InitializationSequence InitSeq(*this, Entity, Kind, |
| 4051 | (Expr**)Exprs.get(), Exprs.size()); |
| 4052 | OwningExprResult Result = InitSeq.Perform(*this, Entity, Kind, move(Exprs)); |
| 4053 | if (Result.isInvalid()) { |
| 4054 | VDecl->setInvalidDecl(); |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 4055 | return; |
| 4056 | } |
Douglas Gregor | 90f9382 | 2009-12-22 22:17:25 +0000 | [diff] [blame] | 4057 | |
| 4058 | Result = MaybeCreateCXXExprWithTemporaries(move(Result)); |
| 4059 | VDecl->setInit(Context, Result.takeAs<Expr>()); |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 4060 | VDecl->setCXXDirectInitializer(true); |
Argyrios Kyrtzidis | ce8e292 | 2008-10-06 23:08:37 +0000 | [diff] [blame] | 4061 | |
Douglas Gregor | 90f9382 | 2009-12-22 22:17:25 +0000 | [diff] [blame] | 4062 | if (VDecl->getType()->getAs<RecordType>()) |
| 4063 | FinalizeVarWithDestructor(VDecl, DeclInitType); |
Argyrios Kyrtzidis | 73a0d88 | 2008-10-06 17:10:33 +0000 | [diff] [blame] | 4064 | } |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4065 | |
Douglas Gregor | 19aeac6 | 2009-11-14 03:27:21 +0000 | [diff] [blame] | 4066 | /// \brief Add the applicable constructor candidates for an initialization |
| 4067 | /// by constructor. |
| 4068 | static void AddConstructorInitializationCandidates(Sema &SemaRef, |
| 4069 | QualType ClassType, |
| 4070 | Expr **Args, |
| 4071 | unsigned NumArgs, |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4072 | InitializationKind Kind, |
Douglas Gregor | 19aeac6 | 2009-11-14 03:27:21 +0000 | [diff] [blame] | 4073 | OverloadCandidateSet &CandidateSet) { |
| 4074 | // C++ [dcl.init]p14: |
| 4075 | // If the initialization is direct-initialization, or if it is |
| 4076 | // copy-initialization where the cv-unqualified version of the |
| 4077 | // source type is the same class as, or a derived class of, the |
| 4078 | // class of the destination, constructors are considered. The |
| 4079 | // applicable constructors are enumerated (13.3.1.3), and the |
| 4080 | // best one is chosen through overload resolution (13.3). The |
| 4081 | // constructor so selected is called to initialize the object, |
| 4082 | // with the initializer expression(s) as its argument(s). If no |
| 4083 | // constructor applies, or the overload resolution is ambiguous, |
| 4084 | // the initialization is ill-formed. |
| 4085 | const RecordType *ClassRec = ClassType->getAs<RecordType>(); |
| 4086 | assert(ClassRec && "Can only initialize a class type here"); |
| 4087 | |
| 4088 | // FIXME: When we decide not to synthesize the implicitly-declared |
| 4089 | // constructors, we'll need to make them appear here. |
| 4090 | |
| 4091 | const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl()); |
| 4092 | DeclarationName ConstructorName |
| 4093 | = SemaRef.Context.DeclarationNames.getCXXConstructorName( |
| 4094 | SemaRef.Context.getCanonicalType(ClassType).getUnqualifiedType()); |
| 4095 | DeclContext::lookup_const_iterator Con, ConEnd; |
| 4096 | for (llvm::tie(Con, ConEnd) = ClassDecl->lookup(ConstructorName); |
| 4097 | Con != ConEnd; ++Con) { |
| 4098 | // Find the constructor (which may be a template). |
| 4099 | CXXConstructorDecl *Constructor = 0; |
| 4100 | FunctionTemplateDecl *ConstructorTmpl= dyn_cast<FunctionTemplateDecl>(*Con); |
| 4101 | if (ConstructorTmpl) |
| 4102 | Constructor |
| 4103 | = cast<CXXConstructorDecl>(ConstructorTmpl->getTemplatedDecl()); |
| 4104 | else |
| 4105 | Constructor = cast<CXXConstructorDecl>(*Con); |
| 4106 | |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4107 | if ((Kind.getKind() == InitializationKind::IK_Direct) || |
| 4108 | (Kind.getKind() == InitializationKind::IK_Value) || |
| 4109 | (Kind.getKind() == InitializationKind::IK_Copy && |
Douglas Gregor | 19aeac6 | 2009-11-14 03:27:21 +0000 | [diff] [blame] | 4110 | Constructor->isConvertingConstructor(/*AllowExplicit=*/false)) || |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4111 | ((Kind.getKind() == InitializationKind::IK_Default) && |
| 4112 | Constructor->isDefaultConstructor())) { |
Douglas Gregor | 19aeac6 | 2009-11-14 03:27:21 +0000 | [diff] [blame] | 4113 | if (ConstructorTmpl) |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 4114 | SemaRef.AddTemplateOverloadCandidate(ConstructorTmpl, |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 4115 | ConstructorTmpl->getAccess(), |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 4116 | /*ExplicitArgs*/ 0, |
Douglas Gregor | 19aeac6 | 2009-11-14 03:27:21 +0000 | [diff] [blame] | 4117 | Args, NumArgs, CandidateSet); |
| 4118 | else |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 4119 | SemaRef.AddOverloadCandidate(Constructor, Constructor->getAccess(), |
| 4120 | Args, NumArgs, CandidateSet); |
Douglas Gregor | 19aeac6 | 2009-11-14 03:27:21 +0000 | [diff] [blame] | 4121 | } |
| 4122 | } |
| 4123 | } |
| 4124 | |
| 4125 | /// \brief Attempt to perform initialization by constructor |
| 4126 | /// (C++ [dcl.init]p14), which may occur as part of direct-initialization or |
| 4127 | /// copy-initialization. |
| 4128 | /// |
| 4129 | /// This routine determines whether initialization by constructor is possible, |
| 4130 | /// but it does not emit any diagnostics in the case where the initialization |
| 4131 | /// is ill-formed. |
| 4132 | /// |
| 4133 | /// \param ClassType the type of the object being initialized, which must have |
| 4134 | /// class type. |
| 4135 | /// |
| 4136 | /// \param Args the arguments provided to initialize the object |
| 4137 | /// |
| 4138 | /// \param NumArgs the number of arguments provided to initialize the object |
| 4139 | /// |
| 4140 | /// \param Kind the type of initialization being performed |
| 4141 | /// |
| 4142 | /// \returns the constructor used to initialize the object, if successful. |
| 4143 | /// Otherwise, emits a diagnostic and returns NULL. |
| 4144 | CXXConstructorDecl * |
| 4145 | Sema::TryInitializationByConstructor(QualType ClassType, |
| 4146 | Expr **Args, unsigned NumArgs, |
| 4147 | SourceLocation Loc, |
| 4148 | InitializationKind Kind) { |
| 4149 | // Build the overload candidate set |
| 4150 | OverloadCandidateSet CandidateSet; |
| 4151 | AddConstructorInitializationCandidates(*this, ClassType, Args, NumArgs, Kind, |
| 4152 | CandidateSet); |
| 4153 | |
| 4154 | // Determine whether we found a constructor we can use. |
| 4155 | OverloadCandidateSet::iterator Best; |
| 4156 | switch (BestViableFunction(CandidateSet, Loc, Best)) { |
| 4157 | case OR_Success: |
| 4158 | case OR_Deleted: |
| 4159 | // We found a constructor. Return it. |
| 4160 | return cast<CXXConstructorDecl>(Best->Function); |
| 4161 | |
| 4162 | case OR_No_Viable_Function: |
| 4163 | case OR_Ambiguous: |
| 4164 | // Overload resolution failed. Return nothing. |
| 4165 | return 0; |
| 4166 | } |
| 4167 | |
| 4168 | // Silence GCC warning |
| 4169 | return 0; |
| 4170 | } |
| 4171 | |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4172 | /// \brief Perform initialization by constructor (C++ [dcl.init]p14), which |
| 4173 | /// may occur as part of direct-initialization or copy-initialization. |
| 4174 | /// |
| 4175 | /// \param ClassType the type of the object being initialized, which must have |
| 4176 | /// class type. |
| 4177 | /// |
| 4178 | /// \param ArgsPtr the arguments provided to initialize the object |
| 4179 | /// |
| 4180 | /// \param Loc the source location where the initialization occurs |
| 4181 | /// |
| 4182 | /// \param Range the source range that covers the entire initialization |
| 4183 | /// |
| 4184 | /// \param InitEntity the name of the entity being initialized, if known |
| 4185 | /// |
| 4186 | /// \param Kind the type of initialization being performed |
| 4187 | /// |
| 4188 | /// \param ConvertedArgs a vector that will be filled in with the |
| 4189 | /// appropriately-converted arguments to the constructor (if initialization |
| 4190 | /// succeeded). |
| 4191 | /// |
| 4192 | /// \returns the constructor used to initialize the object, if successful. |
| 4193 | /// Otherwise, emits a diagnostic and returns NULL. |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4194 | CXXConstructorDecl * |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 4195 | Sema::PerformInitializationByConstructor(QualType ClassType, |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4196 | MultiExprArg ArgsPtr, |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 4197 | SourceLocation Loc, SourceRange Range, |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4198 | DeclarationName InitEntity, |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4199 | InitializationKind Kind, |
| 4200 | ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) { |
Douglas Gregor | 19aeac6 | 2009-11-14 03:27:21 +0000 | [diff] [blame] | 4201 | |
| 4202 | // Build the overload candidate set |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4203 | Expr **Args = (Expr **)ArgsPtr.get(); |
| 4204 | unsigned NumArgs = ArgsPtr.size(); |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4205 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 19aeac6 | 2009-11-14 03:27:21 +0000 | [diff] [blame] | 4206 | AddConstructorInitializationCandidates(*this, ClassType, Args, NumArgs, Kind, |
| 4207 | CandidateSet); |
Douglas Gregor | 9e7d9de | 2008-12-15 21:24:18 +0000 | [diff] [blame] | 4208 | |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4209 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 4210 | switch (BestViableFunction(CandidateSet, Loc, Best)) { |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4211 | case OR_Success: |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4212 | // We found a constructor. Break out so that we can convert the arguments |
| 4213 | // appropriately. |
| 4214 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4215 | |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4216 | case OR_No_Viable_Function: |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 4217 | if (InitEntity) |
| 4218 | Diag(Loc, diag::err_ovl_no_viable_function_in_init) |
Chris Lattner | 4330d65 | 2009-02-17 07:29:20 +0000 | [diff] [blame] | 4219 | << InitEntity << Range; |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 4220 | else |
| 4221 | Diag(Loc, diag::err_ovl_no_viable_function_in_init) |
Chris Lattner | 4330d65 | 2009-02-17 07:29:20 +0000 | [diff] [blame] | 4222 | << ClassType << Range; |
John McCall | cbce606 | 2010-01-12 07:18:19 +0000 | [diff] [blame] | 4223 | PrintOverloadCandidates(CandidateSet, OCD_AllCandidates, Args, NumArgs); |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4224 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4225 | |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4226 | case OR_Ambiguous: |
Douglas Gregor | 87fd703 | 2009-02-02 17:43:21 +0000 | [diff] [blame] | 4227 | if (InitEntity) |
| 4228 | Diag(Loc, diag::err_ovl_ambiguous_init) << InitEntity << Range; |
| 4229 | else |
| 4230 | Diag(Loc, diag::err_ovl_ambiguous_init) << ClassType << Range; |
John McCall | cbce606 | 2010-01-12 07:18:19 +0000 | [diff] [blame] | 4231 | PrintOverloadCandidates(CandidateSet, OCD_ViableCandidates, Args, NumArgs); |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4232 | return 0; |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 4233 | |
| 4234 | case OR_Deleted: |
| 4235 | if (InitEntity) |
| 4236 | Diag(Loc, diag::err_ovl_deleted_init) |
| 4237 | << Best->Function->isDeleted() |
| 4238 | << InitEntity << Range; |
Fariborz Jahanian | 6a587cb | 2009-11-25 21:53:11 +0000 | [diff] [blame] | 4239 | else { |
| 4240 | const CXXRecordDecl *RD = |
| 4241 | cast<CXXRecordDecl>(ClassType->getAs<RecordType>()->getDecl()); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 4242 | Diag(Loc, diag::err_ovl_deleted_init) |
| 4243 | << Best->Function->isDeleted() |
Fariborz Jahanian | 6a587cb | 2009-11-25 21:53:11 +0000 | [diff] [blame] | 4244 | << RD->getDeclName() << Range; |
| 4245 | } |
John McCall | cbce606 | 2010-01-12 07:18:19 +0000 | [diff] [blame] | 4246 | PrintOverloadCandidates(CandidateSet, OCD_AllCandidates, Args, NumArgs); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 4247 | return 0; |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4248 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4249 | |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4250 | // Convert the arguments, fill in default arguments, etc. |
| 4251 | CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function); |
| 4252 | if (CompleteConstructorCall(Constructor, move(ArgsPtr), Loc, ConvertedArgs)) |
| 4253 | return 0; |
| 4254 | |
| 4255 | return Constructor; |
| 4256 | } |
| 4257 | |
| 4258 | /// \brief Given a constructor and the set of arguments provided for the |
| 4259 | /// constructor, convert the arguments and add any required default arguments |
| 4260 | /// to form a proper call to this constructor. |
| 4261 | /// |
| 4262 | /// \returns true if an error occurred, false otherwise. |
| 4263 | bool |
| 4264 | Sema::CompleteConstructorCall(CXXConstructorDecl *Constructor, |
| 4265 | MultiExprArg ArgsPtr, |
| 4266 | SourceLocation Loc, |
| 4267 | ASTOwningVector<&ActionBase::DeleteExpr> &ConvertedArgs) { |
| 4268 | // FIXME: This duplicates a lot of code from Sema::ConvertArgumentsForCall. |
| 4269 | unsigned NumArgs = ArgsPtr.size(); |
| 4270 | Expr **Args = (Expr **)ArgsPtr.get(); |
| 4271 | |
| 4272 | const FunctionProtoType *Proto |
| 4273 | = Constructor->getType()->getAs<FunctionProtoType>(); |
| 4274 | assert(Proto && "Constructor without a prototype?"); |
| 4275 | unsigned NumArgsInProto = Proto->getNumArgs(); |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4276 | |
| 4277 | // If too few arguments are available, we'll fill in the rest with defaults. |
Fariborz Jahanian | 2fe168f | 2009-11-24 21:37:28 +0000 | [diff] [blame] | 4278 | if (NumArgs < NumArgsInProto) |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4279 | ConvertedArgs.reserve(NumArgsInProto); |
Fariborz Jahanian | 2fe168f | 2009-11-24 21:37:28 +0000 | [diff] [blame] | 4280 | else |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4281 | ConvertedArgs.reserve(NumArgs); |
Fariborz Jahanian | 2fe168f | 2009-11-24 21:37:28 +0000 | [diff] [blame] | 4282 | |
| 4283 | VariadicCallType CallType = |
| 4284 | Proto->isVariadic() ? VariadicConstructor : VariadicDoesNotApply; |
| 4285 | llvm::SmallVector<Expr *, 8> AllArgs; |
| 4286 | bool Invalid = GatherArgumentsForCall(Loc, Constructor, |
| 4287 | Proto, 0, Args, NumArgs, AllArgs, |
| 4288 | CallType); |
| 4289 | for (unsigned i =0, size = AllArgs.size(); i < size; i++) |
| 4290 | ConvertedArgs.push_back(AllArgs[i]); |
| 4291 | return Invalid; |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 4292 | } |
| 4293 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4294 | /// CompareReferenceRelationship - Compare the two types T1 and T2 to |
| 4295 | /// determine whether they are reference-related, |
| 4296 | /// reference-compatible, reference-compatible with added |
| 4297 | /// qualification, or incompatible, for use in C++ initialization by |
| 4298 | /// reference (C++ [dcl.ref.init]p4). Neither type can be a reference |
| 4299 | /// type, and the first type (T1) is the pointee type of the reference |
| 4300 | /// type being initialized. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4301 | Sema::ReferenceCompareResult |
Chandler Carruth | 28e318c | 2009-12-29 07:16:59 +0000 | [diff] [blame] | 4302 | Sema::CompareReferenceRelationship(SourceLocation Loc, |
Douglas Gregor | 393896f | 2009-11-05 13:06:35 +0000 | [diff] [blame] | 4303 | QualType OrigT1, QualType OrigT2, |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4304 | bool& DerivedToBase) { |
Douglas Gregor | 393896f | 2009-11-05 13:06:35 +0000 | [diff] [blame] | 4305 | assert(!OrigT1->isReferenceType() && |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 4306 | "T1 must be the pointee type of the reference type"); |
Douglas Gregor | 393896f | 2009-11-05 13:06:35 +0000 | [diff] [blame] | 4307 | assert(!OrigT2->isReferenceType() && "T2 cannot be a reference type"); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4308 | |
Douglas Gregor | 393896f | 2009-11-05 13:06:35 +0000 | [diff] [blame] | 4309 | QualType T1 = Context.getCanonicalType(OrigT1); |
| 4310 | QualType T2 = Context.getCanonicalType(OrigT2); |
Chandler Carruth | 28e318c | 2009-12-29 07:16:59 +0000 | [diff] [blame] | 4311 | Qualifiers T1Quals, T2Quals; |
| 4312 | QualType UnqualT1 = Context.getUnqualifiedArrayType(T1, T1Quals); |
| 4313 | QualType UnqualT2 = Context.getUnqualifiedArrayType(T2, T2Quals); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4314 | |
| 4315 | // C++ [dcl.init.ref]p4: |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 4316 | // Given types "cv1 T1" and "cv2 T2," "cv1 T1" is |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4317 | // reference-related to "cv2 T2" if T1 is the same type as T2, or |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4318 | // T1 is a base class of T2. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4319 | if (UnqualT1 == UnqualT2) |
| 4320 | DerivedToBase = false; |
Douglas Gregor | 393896f | 2009-11-05 13:06:35 +0000 | [diff] [blame] | 4321 | else if (!RequireCompleteType(Loc, OrigT1, PDiag()) && |
| 4322 | !RequireCompleteType(Loc, OrigT2, PDiag()) && |
| 4323 | IsDerivedFrom(UnqualT2, UnqualT1)) |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4324 | DerivedToBase = true; |
| 4325 | else |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4326 | return Ref_Incompatible; |
| 4327 | |
| 4328 | // At this point, we know that T1 and T2 are reference-related (at |
| 4329 | // least). |
| 4330 | |
Chandler Carruth | 28e318c | 2009-12-29 07:16:59 +0000 | [diff] [blame] | 4331 | // If the type is an array type, promote the element qualifiers to the type |
| 4332 | // for comparison. |
| 4333 | if (isa<ArrayType>(T1) && T1Quals) |
| 4334 | T1 = Context.getQualifiedType(UnqualT1, T1Quals); |
| 4335 | if (isa<ArrayType>(T2) && T2Quals) |
| 4336 | T2 = Context.getQualifiedType(UnqualT2, T2Quals); |
| 4337 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4338 | // C++ [dcl.init.ref]p4: |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 4339 | // "cv1 T1" is reference-compatible with "cv2 T2" if T1 is |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4340 | // reference-related to T2 and cv1 is the same cv-qualification |
| 4341 | // as, or greater cv-qualification than, cv2. For purposes of |
| 4342 | // overload resolution, cases for which cv1 is greater |
| 4343 | // cv-qualification than cv2 are identified as |
| 4344 | // reference-compatible with added qualification (see 13.3.3.2). |
Chandler Carruth | 28e318c | 2009-12-29 07:16:59 +0000 | [diff] [blame] | 4345 | if (T1Quals.getCVRQualifiers() == T2Quals.getCVRQualifiers()) |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4346 | return Ref_Compatible; |
| 4347 | else if (T1.isMoreQualifiedThan(T2)) |
| 4348 | return Ref_Compatible_With_Added_Qualification; |
| 4349 | else |
| 4350 | return Ref_Related; |
| 4351 | } |
| 4352 | |
| 4353 | /// CheckReferenceInit - Check the initialization of a reference |
| 4354 | /// variable with the given initializer (C++ [dcl.init.ref]). Init is |
| 4355 | /// the initializer (either a simple initializer or an initializer |
Douglas Gregor | 3205a78 | 2008-10-29 23:31:03 +0000 | [diff] [blame] | 4356 | /// list), and DeclType is the type of the declaration. When ICS is |
| 4357 | /// non-null, this routine will compute the implicit conversion |
| 4358 | /// sequence according to C++ [over.ics.ref] and will not produce any |
| 4359 | /// diagnostics; when ICS is null, it will emit diagnostics when any |
| 4360 | /// errors are found. Either way, a return value of true indicates |
| 4361 | /// that there was a failure, a return value of false indicates that |
| 4362 | /// the reference initialization succeeded. |
Douglas Gregor | 225c41e | 2008-11-03 19:09:14 +0000 | [diff] [blame] | 4363 | /// |
| 4364 | /// When @p SuppressUserConversions, user-defined conversions are |
| 4365 | /// suppressed. |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 4366 | /// When @p AllowExplicit, we also permit explicit user-defined |
| 4367 | /// conversion functions. |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 4368 | /// When @p ForceRValue, we unconditionally treat the initializer as an rvalue. |
Sebastian Redl | a82e4ae | 2009-11-14 21:15:49 +0000 | [diff] [blame] | 4369 | /// When @p IgnoreBaseAccess, we don't do access control on to-base conversion. |
| 4370 | /// This is used when this is called from a C-style cast. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4371 | bool |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 4372 | Sema::CheckReferenceInit(Expr *&Init, QualType DeclType, |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4373 | SourceLocation DeclLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 4374 | bool SuppressUserConversions, |
Anders Carlsson | 2de3ace | 2009-08-27 17:30:43 +0000 | [diff] [blame] | 4375 | bool AllowExplicit, bool ForceRValue, |
Sebastian Redl | a82e4ae | 2009-11-14 21:15:49 +0000 | [diff] [blame] | 4376 | ImplicitConversionSequence *ICS, |
| 4377 | bool IgnoreBaseAccess) { |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4378 | assert(DeclType->isReferenceType() && "Reference init needs a reference"); |
| 4379 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4380 | QualType T1 = DeclType->getAs<ReferenceType>()->getPointeeType(); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4381 | QualType T2 = Init->getType(); |
| 4382 | |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4383 | // If the initializer is the address of an overloaded function, try |
| 4384 | // to resolve the overloaded function. If all goes well, T2 is the |
| 4385 | // type of the resulting function. |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 4386 | if (Context.getCanonicalType(T2) == Context.OverloadTy) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4387 | FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(Init, DeclType, |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4388 | ICS != 0); |
| 4389 | if (Fn) { |
| 4390 | // Since we're performing this reference-initialization for |
| 4391 | // real, update the initializer with the resulting function. |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 4392 | if (!ICS) { |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4393 | if (DiagnoseUseOfDecl(Fn, DeclLoc)) |
Douglas Gregor | 20093b4 | 2009-12-09 23:02:17 +0000 | [diff] [blame] | 4394 | return true; |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 4395 | |
Anders Carlsson | 96ad533 | 2009-10-21 17:16:23 +0000 | [diff] [blame] | 4396 | Init = FixOverloadedFunctionReference(Init, Fn); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 4397 | } |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4398 | |
| 4399 | T2 = Fn->getType(); |
| 4400 | } |
| 4401 | } |
| 4402 | |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4403 | // Compute some basic properties of the types and the initializer. |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 4404 | bool isRValRef = DeclType->isRValueReferenceType(); |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4405 | bool DerivedToBase = false; |
Sebastian Redl | e2b6833 | 2009-04-12 17:16:29 +0000 | [diff] [blame] | 4406 | Expr::isLvalueResult InitLvalue = ForceRValue ? Expr::LV_InvalidExpression : |
| 4407 | Init->isLvalue(Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4408 | ReferenceCompareResult RefRelationship |
Douglas Gregor | 393896f | 2009-11-05 13:06:35 +0000 | [diff] [blame] | 4409 | = CompareReferenceRelationship(DeclLoc, T1, T2, DerivedToBase); |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4410 | |
| 4411 | // Most paths end in a failed conversion. |
John McCall | adbb8f8 | 2010-01-13 09:16:55 +0000 | [diff] [blame] | 4412 | if (ICS) { |
| 4413 | ICS->setBad(); |
| 4414 | ICS->Bad.init(BadConversionSequence::no_conversion, Init, DeclType); |
| 4415 | } |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4416 | |
| 4417 | // C++ [dcl.init.ref]p5: |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 4418 | // A reference to type "cv1 T1" is initialized by an expression |
| 4419 | // of type "cv2 T2" as follows: |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4420 | |
| 4421 | // -- If the initializer expression |
| 4422 | |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4423 | // Rvalue references cannot bind to lvalues (N2812). |
| 4424 | // There is absolutely no situation where they can. In particular, note that |
| 4425 | // this is ill-formed, even if B has a user-defined conversion to A&&: |
| 4426 | // B b; |
| 4427 | // A&& r = b; |
| 4428 | if (isRValRef && InitLvalue == Expr::LV_Valid) { |
| 4429 | if (!ICS) |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4430 | Diag(DeclLoc, diag::err_lvalue_to_rvalue_ref) |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4431 | << Init->getSourceRange(); |
| 4432 | return true; |
| 4433 | } |
| 4434 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4435 | bool BindsDirectly = false; |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 4436 | // -- is an lvalue (but is not a bit-field), and "cv1 T1" is |
| 4437 | // reference-compatible with "cv2 T2," or |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4438 | // |
| 4439 | // Note that the bit-field check is skipped if we are just computing |
| 4440 | // the implicit conversion sequence (C++ [over.best.ics]p2). |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 4441 | if (InitLvalue == Expr::LV_Valid && (ICS || !Init->getBitField()) && |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4442 | RefRelationship >= Ref_Compatible_With_Added_Qualification) { |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4443 | BindsDirectly = true; |
| 4444 | |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4445 | if (ICS) { |
| 4446 | // C++ [over.ics.ref]p1: |
| 4447 | // When a parameter of reference type binds directly (8.5.3) |
| 4448 | // to an argument expression, the implicit conversion sequence |
| 4449 | // is the identity conversion, unless the argument expression |
| 4450 | // has a type that is a derived class of the parameter type, |
| 4451 | // in which case the implicit conversion sequence is a |
| 4452 | // derived-to-base Conversion (13.3.3.1). |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4453 | ICS->setStandard(); |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4454 | ICS->Standard.First = ICK_Identity; |
| 4455 | ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity; |
| 4456 | ICS->Standard.Third = ICK_Identity; |
| 4457 | ICS->Standard.FromTypePtr = T2.getAsOpaquePtr(); |
Douglas Gregor | ad323a8 | 2010-01-27 03:51:04 +0000 | [diff] [blame^] | 4458 | ICS->Standard.setToType(0, T2); |
| 4459 | ICS->Standard.setToType(1, T1); |
| 4460 | ICS->Standard.setToType(2, T1); |
Douglas Gregor | f70bdb9 | 2008-10-29 14:50:44 +0000 | [diff] [blame] | 4461 | ICS->Standard.ReferenceBinding = true; |
| 4462 | ICS->Standard.DirectBinding = true; |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4463 | ICS->Standard.RRefBinding = false; |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 4464 | ICS->Standard.CopyConstructor = 0; |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4465 | |
| 4466 | // Nothing more to do: the inaccessibility/ambiguity check for |
| 4467 | // derived-to-base conversions is suppressed when we're |
| 4468 | // computing the implicit conversion sequence (C++ |
| 4469 | // [over.best.ics]p2). |
| 4470 | return false; |
| 4471 | } else { |
| 4472 | // Perform the conversion. |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4473 | CastExpr::CastKind CK = CastExpr::CK_NoOp; |
| 4474 | if (DerivedToBase) |
| 4475 | CK = CastExpr::CK_DerivedToBase; |
Sebastian Redl | 2c7588f | 2009-10-10 12:04:10 +0000 | [diff] [blame] | 4476 | else if(CheckExceptionSpecCompatibility(Init, T1)) |
| 4477 | return true; |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4478 | ImpCastExprToType(Init, T1, CK, /*isLvalue=*/true); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4479 | } |
| 4480 | } |
| 4481 | |
| 4482 | // -- has a class type (i.e., T2 is a class type) and can be |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 4483 | // implicitly converted to an lvalue of type "cv3 T3," |
| 4484 | // where "cv1 T1" is reference-compatible with "cv3 T3" |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4485 | // 92) (this conversion is selected by enumerating the |
| 4486 | // applicable conversion functions (13.3.1.6) and choosing |
| 4487 | // the best one through overload resolution (13.3)), |
Douglas Gregor | 5842ba9 | 2009-08-24 15:23:48 +0000 | [diff] [blame] | 4488 | if (!isRValRef && !SuppressUserConversions && T2->isRecordType() && |
Douglas Gregor | 573d9c3 | 2009-10-21 23:19:44 +0000 | [diff] [blame] | 4489 | !RequireCompleteType(DeclLoc, T2, 0)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4490 | CXXRecordDecl *T2RecordDecl |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4491 | = dyn_cast<CXXRecordDecl>(T2->getAs<RecordType>()->getDecl()); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4492 | |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4493 | OverloadCandidateSet CandidateSet; |
John McCall | eec51cf | 2010-01-20 00:46:10 +0000 | [diff] [blame] | 4494 | const UnresolvedSetImpl *Conversions |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 4495 | = T2RecordDecl->getVisibleConversionFunctions(); |
John McCall | eec51cf | 2010-01-20 00:46:10 +0000 | [diff] [blame] | 4496 | for (UnresolvedSetImpl::iterator I = Conversions->begin(), |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 4497 | E = Conversions->end(); I != E; ++I) { |
John McCall | 701c89e | 2009-12-03 04:06:58 +0000 | [diff] [blame] | 4498 | NamedDecl *D = *I; |
| 4499 | CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext()); |
| 4500 | if (isa<UsingShadowDecl>(D)) |
| 4501 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
| 4502 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4503 | FunctionTemplateDecl *ConvTemplate |
John McCall | 701c89e | 2009-12-03 04:06:58 +0000 | [diff] [blame] | 4504 | = dyn_cast<FunctionTemplateDecl>(D); |
Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 4505 | CXXConversionDecl *Conv; |
| 4506 | if (ConvTemplate) |
| 4507 | Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl()); |
| 4508 | else |
John McCall | 701c89e | 2009-12-03 04:06:58 +0000 | [diff] [blame] | 4509 | Conv = cast<CXXConversionDecl>(D); |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 4510 | |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4511 | // If the conversion function doesn't return a reference type, |
| 4512 | // it can't be considered for this conversion. |
Sebastian Redl | 7c80bd6 | 2009-03-16 23:22:08 +0000 | [diff] [blame] | 4513 | if (Conv->getConversionType()->isLValueReferenceType() && |
Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 4514 | (AllowExplicit || !Conv->isExplicit())) { |
| 4515 | if (ConvTemplate) |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 4516 | AddTemplateConversionCandidate(ConvTemplate, I.getAccess(), ActingDC, |
John McCall | 701c89e | 2009-12-03 04:06:58 +0000 | [diff] [blame] | 4517 | Init, DeclType, CandidateSet); |
Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 4518 | else |
John McCall | 86820f5 | 2010-01-26 01:37:31 +0000 | [diff] [blame] | 4519 | AddConversionCandidate(Conv, I.getAccess(), ActingDC, Init, |
| 4520 | DeclType, CandidateSet); |
Douglas Gregor | 65ec1fd | 2009-08-21 23:19:43 +0000 | [diff] [blame] | 4521 | } |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4522 | } |
| 4523 | |
| 4524 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4525 | switch (BestViableFunction(CandidateSet, DeclLoc, Best)) { |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4526 | case OR_Success: |
| 4527 | // This is a direct binding. |
| 4528 | BindsDirectly = true; |
| 4529 | |
| 4530 | if (ICS) { |
| 4531 | // C++ [over.ics.ref]p1: |
| 4532 | // |
| 4533 | // [...] If the parameter binds directly to the result of |
| 4534 | // applying a conversion function to the argument |
| 4535 | // expression, the implicit conversion sequence is a |
| 4536 | // user-defined conversion sequence (13.3.3.1.2), with the |
| 4537 | // second standard conversion sequence either an identity |
| 4538 | // conversion or, if the conversion function returns an |
| 4539 | // entity of a type that is a derived class of the parameter |
| 4540 | // type, a derived-to-base Conversion. |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4541 | ICS->setUserDefined(); |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4542 | ICS->UserDefined.Before = Best->Conversions[0].Standard; |
| 4543 | ICS->UserDefined.After = Best->FinalConversion; |
| 4544 | ICS->UserDefined.ConversionFunction = Best->Function; |
Fariborz Jahanian | 966256a | 2009-11-06 00:23:08 +0000 | [diff] [blame] | 4545 | ICS->UserDefined.EllipsisConversion = false; |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4546 | assert(ICS->UserDefined.After.ReferenceBinding && |
| 4547 | ICS->UserDefined.After.DirectBinding && |
| 4548 | "Expected a direct reference binding!"); |
| 4549 | return false; |
| 4550 | } else { |
Fariborz Jahanian | 8f489d6 | 2009-09-23 22:34:00 +0000 | [diff] [blame] | 4551 | OwningExprResult InitConversion = |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4552 | BuildCXXCastArgument(DeclLoc, QualType(), |
Fariborz Jahanian | 8f489d6 | 2009-09-23 22:34:00 +0000 | [diff] [blame] | 4553 | CastExpr::CK_UserDefinedConversion, |
| 4554 | cast<CXXMethodDecl>(Best->Function), |
| 4555 | Owned(Init)); |
| 4556 | Init = InitConversion.takeAs<Expr>(); |
Sebastian Redl | 2c7588f | 2009-10-10 12:04:10 +0000 | [diff] [blame] | 4557 | |
| 4558 | if (CheckExceptionSpecCompatibility(Init, T1)) |
| 4559 | return true; |
Fariborz Jahanian | 8f489d6 | 2009-09-23 22:34:00 +0000 | [diff] [blame] | 4560 | ImpCastExprToType(Init, T1, CastExpr::CK_UserDefinedConversion, |
| 4561 | /*isLvalue=*/true); |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4562 | } |
| 4563 | break; |
| 4564 | |
| 4565 | case OR_Ambiguous: |
Fariborz Jahanian | d9290cb | 2009-10-14 00:52:43 +0000 | [diff] [blame] | 4566 | if (ICS) { |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4567 | ICS->setAmbiguous(); |
Fariborz Jahanian | d9290cb | 2009-10-14 00:52:43 +0000 | [diff] [blame] | 4568 | for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(); |
| 4569 | Cand != CandidateSet.end(); ++Cand) |
| 4570 | if (Cand->Viable) |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4571 | ICS->Ambiguous.addConversion(Cand->Function); |
Fariborz Jahanian | d9290cb | 2009-10-14 00:52:43 +0000 | [diff] [blame] | 4572 | break; |
| 4573 | } |
| 4574 | Diag(DeclLoc, diag::err_ref_init_ambiguous) << DeclType << Init->getType() |
| 4575 | << Init->getSourceRange(); |
John McCall | cbce606 | 2010-01-12 07:18:19 +0000 | [diff] [blame] | 4576 | PrintOverloadCandidates(CandidateSet, OCD_ViableCandidates, &Init, 1); |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4577 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4578 | |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4579 | case OR_No_Viable_Function: |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 4580 | case OR_Deleted: |
| 4581 | // There was no suitable conversion, or we found a deleted |
| 4582 | // conversion; continue with other checks. |
Douglas Gregor | cb9b977 | 2008-11-10 16:14:15 +0000 | [diff] [blame] | 4583 | break; |
| 4584 | } |
| 4585 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4586 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4587 | if (BindsDirectly) { |
| 4588 | // C++ [dcl.init.ref]p4: |
| 4589 | // [...] In all cases where the reference-related or |
| 4590 | // reference-compatible relationship of two types is used to |
| 4591 | // establish the validity of a reference binding, and T1 is a |
| 4592 | // base class of T2, a program that necessitates such a binding |
| 4593 | // is ill-formed if T1 is an inaccessible (clause 11) or |
| 4594 | // ambiguous (10.2) base class of T2. |
| 4595 | // |
| 4596 | // Note that we only check this condition when we're allowed to |
| 4597 | // complain about errors, because we should not be checking for |
| 4598 | // ambiguity (or inaccessibility) unless the reference binding |
| 4599 | // actually happens. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4600 | if (DerivedToBase) |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4601 | return CheckDerivedToBaseConversion(T2, T1, DeclLoc, |
Sebastian Redl | a82e4ae | 2009-11-14 21:15:49 +0000 | [diff] [blame] | 4602 | Init->getSourceRange(), |
| 4603 | IgnoreBaseAccess); |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4604 | else |
| 4605 | return false; |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4606 | } |
| 4607 | |
| 4608 | // -- Otherwise, the reference shall be to a non-volatile const |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4609 | // type (i.e., cv1 shall be const), or the reference shall be an |
| 4610 | // rvalue reference and the initializer expression shall be an rvalue. |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 4611 | if (!isRValRef && T1.getCVRQualifiers() != Qualifiers::Const) { |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4612 | if (!ICS) |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4613 | Diag(DeclLoc, diag::err_not_reference_to_const_init) |
Douglas Gregor | 5cc07df | 2009-12-15 16:44:32 +0000 | [diff] [blame] | 4614 | << T1 << int(InitLvalue != Expr::LV_Valid) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4615 | << T2 << Init->getSourceRange(); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4616 | return true; |
| 4617 | } |
| 4618 | |
| 4619 | // -- If the initializer expression is an rvalue, with T2 a |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 4620 | // class type, and "cv1 T1" is reference-compatible with |
| 4621 | // "cv2 T2," the reference is bound in one of the |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4622 | // following ways (the choice is implementation-defined): |
| 4623 | // |
| 4624 | // -- The reference is bound to the object represented by |
| 4625 | // the rvalue (see 3.10) or to a sub-object within that |
| 4626 | // object. |
| 4627 | // |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 4628 | // -- A temporary of type "cv1 T2" [sic] is created, and |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4629 | // a constructor is called to copy the entire rvalue |
| 4630 | // object into the temporary. The reference is bound to |
| 4631 | // the temporary or to a sub-object within the |
| 4632 | // temporary. |
| 4633 | // |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4634 | // The constructor that would be used to make the copy |
| 4635 | // shall be callable whether or not the copy is actually |
| 4636 | // done. |
| 4637 | // |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4638 | // Note that C++0x [dcl.init.ref]p5 takes away this implementation |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4639 | // freedom, so we will always take the first option and never build |
| 4640 | // a temporary in this case. FIXME: We will, however, have to check |
| 4641 | // for the presence of a copy constructor in C++98/03 mode. |
| 4642 | if (InitLvalue != Expr::LV_Valid && T2->isRecordType() && |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4643 | RefRelationship >= Ref_Compatible_With_Added_Qualification) { |
| 4644 | if (ICS) { |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4645 | ICS->setStandard(); |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4646 | ICS->Standard.First = ICK_Identity; |
| 4647 | ICS->Standard.Second = DerivedToBase? ICK_Derived_To_Base : ICK_Identity; |
| 4648 | ICS->Standard.Third = ICK_Identity; |
| 4649 | ICS->Standard.FromTypePtr = T2.getAsOpaquePtr(); |
Douglas Gregor | ad323a8 | 2010-01-27 03:51:04 +0000 | [diff] [blame^] | 4650 | ICS->Standard.setToType(0, T2); |
| 4651 | ICS->Standard.setToType(1, T1); |
| 4652 | ICS->Standard.setToType(2, T1); |
Douglas Gregor | f70bdb9 | 2008-10-29 14:50:44 +0000 | [diff] [blame] | 4653 | ICS->Standard.ReferenceBinding = true; |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4654 | ICS->Standard.DirectBinding = false; |
| 4655 | ICS->Standard.RRefBinding = isRValRef; |
Sebastian Redl | 7645850 | 2009-04-17 16:30:52 +0000 | [diff] [blame] | 4656 | ICS->Standard.CopyConstructor = 0; |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4657 | } else { |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4658 | CastExpr::CastKind CK = CastExpr::CK_NoOp; |
| 4659 | if (DerivedToBase) |
| 4660 | CK = CastExpr::CK_DerivedToBase; |
Sebastian Redl | 2c7588f | 2009-10-10 12:04:10 +0000 | [diff] [blame] | 4661 | else if(CheckExceptionSpecCompatibility(Init, T1)) |
| 4662 | return true; |
Douglas Gregor | 39da0b8 | 2009-09-09 23:08:42 +0000 | [diff] [blame] | 4663 | ImpCastExprToType(Init, T1, CK, /*isLvalue=*/false); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4664 | } |
| 4665 | return false; |
| 4666 | } |
| 4667 | |
Eli Friedman | 33a3138 | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 4668 | // -- Otherwise, a temporary of type "cv1 T1" is created and |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4669 | // initialized from the initializer expression using the |
| 4670 | // rules for a non-reference copy initialization (8.5). The |
| 4671 | // reference is then bound to the temporary. If T1 is |
| 4672 | // reference-related to T2, cv1 must be the same |
| 4673 | // cv-qualification as, or greater cv-qualification than, |
| 4674 | // cv2; otherwise, the program is ill-formed. |
| 4675 | if (RefRelationship == Ref_Related) { |
| 4676 | // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then |
| 4677 | // we would be reference-compatible or reference-compatible with |
| 4678 | // added qualification. But that wasn't the case, so the reference |
| 4679 | // initialization fails. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4680 | if (!ICS) |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4681 | Diag(DeclLoc, diag::err_reference_init_drops_quals) |
Douglas Gregor | 5cc07df | 2009-12-15 16:44:32 +0000 | [diff] [blame] | 4682 | << T1 << int(InitLvalue != Expr::LV_Valid) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4683 | << T2 << Init->getSourceRange(); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4684 | return true; |
| 4685 | } |
| 4686 | |
Douglas Gregor | 734d986 | 2009-01-30 23:27:23 +0000 | [diff] [blame] | 4687 | // If at least one of the types is a class type, the types are not |
| 4688 | // related, and we aren't allowed any user conversions, the |
| 4689 | // reference binding fails. This case is important for breaking |
| 4690 | // recursion, since TryImplicitConversion below will attempt to |
| 4691 | // create a temporary through the use of a copy constructor. |
| 4692 | if (SuppressUserConversions && RefRelationship == Ref_Incompatible && |
| 4693 | (T1->isRecordType() || T2->isRecordType())) { |
| 4694 | if (!ICS) |
Douglas Gregor | 739d828 | 2009-09-23 23:04:10 +0000 | [diff] [blame] | 4695 | Diag(DeclLoc, diag::err_typecheck_convert_incompatible) |
Douglas Gregor | 6864748 | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 4696 | << DeclType << Init->getType() << AA_Initializing << Init->getSourceRange(); |
Douglas Gregor | 734d986 | 2009-01-30 23:27:23 +0000 | [diff] [blame] | 4697 | return true; |
| 4698 | } |
| 4699 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4700 | // Actually try to convert the initializer to T1. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4701 | if (ICS) { |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4702 | // C++ [over.ics.ref]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4703 | // |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4704 | // When a parameter of reference type is not bound directly to |
| 4705 | // an argument expression, the conversion sequence is the one |
| 4706 | // required to convert the argument expression to the |
| 4707 | // underlying type of the reference according to |
| 4708 | // 13.3.3.1. Conceptually, this conversion sequence corresponds |
| 4709 | // to copy-initializing a temporary of the underlying type with |
| 4710 | // the argument expression. Any difference in top-level |
| 4711 | // cv-qualification is subsumed by the initialization itself |
| 4712 | // and does not constitute a conversion. |
Anders Carlsson | da7a18b | 2009-08-27 17:24:15 +0000 | [diff] [blame] | 4713 | *ICS = TryImplicitConversion(Init, T1, SuppressUserConversions, |
| 4714 | /*AllowExplicit=*/false, |
Anders Carlsson | 0897292 | 2009-08-28 15:33:32 +0000 | [diff] [blame] | 4715 | /*ForceRValue=*/false, |
| 4716 | /*InOverloadResolution=*/false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4717 | |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4718 | // Of course, that's still a reference binding. |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4719 | if (ICS->isStandard()) { |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4720 | ICS->Standard.ReferenceBinding = true; |
| 4721 | ICS->Standard.RRefBinding = isRValRef; |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4722 | } else if (ICS->isUserDefined()) { |
Sebastian Redl | a984580 | 2009-03-29 15:27:50 +0000 | [diff] [blame] | 4723 | ICS->UserDefined.After.ReferenceBinding = true; |
| 4724 | ICS->UserDefined.After.RRefBinding = isRValRef; |
| 4725 | } |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4726 | return ICS->isBad(); |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4727 | } else { |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 4728 | ImplicitConversionSequence Conversions; |
Douglas Gregor | 6864748 | 2009-12-16 03:45:30 +0000 | [diff] [blame] | 4729 | bool badConversion = PerformImplicitConversion(Init, T1, AA_Initializing, |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 4730 | false, false, |
| 4731 | Conversions); |
| 4732 | if (badConversion) { |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4733 | if (Conversions.isAmbiguous()) { |
Fariborz Jahanian | 7ad2d56 | 2009-09-24 00:42:43 +0000 | [diff] [blame] | 4734 | Diag(DeclLoc, |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 4735 | diag::err_lvalue_to_rvalue_ambig_ref) << Init->getSourceRange(); |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4736 | for (int j = Conversions.Ambiguous.conversions().size()-1; |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 4737 | j >= 0; j--) { |
John McCall | 1d31833 | 2010-01-12 00:44:57 +0000 | [diff] [blame] | 4738 | FunctionDecl *Func = Conversions.Ambiguous.conversions()[j]; |
John McCall | b1622a1 | 2010-01-06 09:43:14 +0000 | [diff] [blame] | 4739 | NoteOverloadCandidate(Func); |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 4740 | } |
| 4741 | } |
Fariborz Jahanian | 893f955 | 2009-09-30 21:23:30 +0000 | [diff] [blame] | 4742 | else { |
| 4743 | if (isRValRef) |
| 4744 | Diag(DeclLoc, diag::err_lvalue_to_rvalue_ref) |
| 4745 | << Init->getSourceRange(); |
| 4746 | else |
| 4747 | Diag(DeclLoc, diag::err_invalid_initialization) |
| 4748 | << DeclType << Init->getType() << Init->getSourceRange(); |
| 4749 | } |
Fariborz Jahanian | 51bebc8 | 2009-09-23 20:55:32 +0000 | [diff] [blame] | 4750 | } |
| 4751 | return badConversion; |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 4752 | } |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 4753 | } |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4754 | |
Anders Carlsson | 20d45d2 | 2009-12-12 00:32:00 +0000 | [diff] [blame] | 4755 | static inline bool |
| 4756 | CheckOperatorNewDeleteDeclarationScope(Sema &SemaRef, |
| 4757 | const FunctionDecl *FnDecl) { |
| 4758 | const DeclContext *DC = FnDecl->getDeclContext()->getLookupContext(); |
| 4759 | if (isa<NamespaceDecl>(DC)) { |
| 4760 | return SemaRef.Diag(FnDecl->getLocation(), |
| 4761 | diag::err_operator_new_delete_declared_in_namespace) |
| 4762 | << FnDecl->getDeclName(); |
| 4763 | } |
| 4764 | |
| 4765 | if (isa<TranslationUnitDecl>(DC) && |
| 4766 | FnDecl->getStorageClass() == FunctionDecl::Static) { |
| 4767 | return SemaRef.Diag(FnDecl->getLocation(), |
| 4768 | diag::err_operator_new_delete_declared_static) |
| 4769 | << FnDecl->getDeclName(); |
| 4770 | } |
| 4771 | |
Anders Carlsson | fcfdb2b | 2009-12-12 02:43:16 +0000 | [diff] [blame] | 4772 | return false; |
Anders Carlsson | 20d45d2 | 2009-12-12 00:32:00 +0000 | [diff] [blame] | 4773 | } |
| 4774 | |
Anders Carlsson | 156c78e | 2009-12-13 17:53:43 +0000 | [diff] [blame] | 4775 | static inline bool |
| 4776 | CheckOperatorNewDeleteTypes(Sema &SemaRef, const FunctionDecl *FnDecl, |
| 4777 | CanQualType ExpectedResultType, |
| 4778 | CanQualType ExpectedFirstParamType, |
| 4779 | unsigned DependentParamTypeDiag, |
| 4780 | unsigned InvalidParamTypeDiag) { |
| 4781 | QualType ResultType = |
| 4782 | FnDecl->getType()->getAs<FunctionType>()->getResultType(); |
| 4783 | |
| 4784 | // Check that the result type is not dependent. |
| 4785 | if (ResultType->isDependentType()) |
| 4786 | return SemaRef.Diag(FnDecl->getLocation(), |
| 4787 | diag::err_operator_new_delete_dependent_result_type) |
| 4788 | << FnDecl->getDeclName() << ExpectedResultType; |
| 4789 | |
| 4790 | // Check that the result type is what we expect. |
| 4791 | if (SemaRef.Context.getCanonicalType(ResultType) != ExpectedResultType) |
| 4792 | return SemaRef.Diag(FnDecl->getLocation(), |
| 4793 | diag::err_operator_new_delete_invalid_result_type) |
| 4794 | << FnDecl->getDeclName() << ExpectedResultType; |
| 4795 | |
| 4796 | // A function template must have at least 2 parameters. |
| 4797 | if (FnDecl->getDescribedFunctionTemplate() && FnDecl->getNumParams() < 2) |
| 4798 | return SemaRef.Diag(FnDecl->getLocation(), |
| 4799 | diag::err_operator_new_delete_template_too_few_parameters) |
| 4800 | << FnDecl->getDeclName(); |
| 4801 | |
| 4802 | // The function decl must have at least 1 parameter. |
| 4803 | if (FnDecl->getNumParams() == 0) |
| 4804 | return SemaRef.Diag(FnDecl->getLocation(), |
| 4805 | diag::err_operator_new_delete_too_few_parameters) |
| 4806 | << FnDecl->getDeclName(); |
| 4807 | |
| 4808 | // Check the the first parameter type is not dependent. |
| 4809 | QualType FirstParamType = FnDecl->getParamDecl(0)->getType(); |
| 4810 | if (FirstParamType->isDependentType()) |
| 4811 | return SemaRef.Diag(FnDecl->getLocation(), DependentParamTypeDiag) |
| 4812 | << FnDecl->getDeclName() << ExpectedFirstParamType; |
| 4813 | |
| 4814 | // Check that the first parameter type is what we expect. |
Douglas Gregor | 6e790ab | 2009-12-22 23:42:49 +0000 | [diff] [blame] | 4815 | if (SemaRef.Context.getCanonicalType(FirstParamType).getUnqualifiedType() != |
Anders Carlsson | 156c78e | 2009-12-13 17:53:43 +0000 | [diff] [blame] | 4816 | ExpectedFirstParamType) |
| 4817 | return SemaRef.Diag(FnDecl->getLocation(), InvalidParamTypeDiag) |
| 4818 | << FnDecl->getDeclName() << ExpectedFirstParamType; |
| 4819 | |
| 4820 | return false; |
| 4821 | } |
| 4822 | |
Anders Carlsson | 9d59ecb | 2009-12-11 23:23:22 +0000 | [diff] [blame] | 4823 | static bool |
Anders Carlsson | 156c78e | 2009-12-13 17:53:43 +0000 | [diff] [blame] | 4824 | CheckOperatorNewDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) { |
Anders Carlsson | 20d45d2 | 2009-12-12 00:32:00 +0000 | [diff] [blame] | 4825 | // C++ [basic.stc.dynamic.allocation]p1: |
| 4826 | // A program is ill-formed if an allocation function is declared in a |
| 4827 | // namespace scope other than global scope or declared static in global |
| 4828 | // scope. |
| 4829 | if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) |
| 4830 | return true; |
Anders Carlsson | 156c78e | 2009-12-13 17:53:43 +0000 | [diff] [blame] | 4831 | |
| 4832 | CanQualType SizeTy = |
| 4833 | SemaRef.Context.getCanonicalType(SemaRef.Context.getSizeType()); |
| 4834 | |
| 4835 | // C++ [basic.stc.dynamic.allocation]p1: |
| 4836 | // The return type shall be void*. The first parameter shall have type |
| 4837 | // std::size_t. |
| 4838 | if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidPtrTy, |
| 4839 | SizeTy, |
| 4840 | diag::err_operator_new_dependent_param_type, |
| 4841 | diag::err_operator_new_param_type)) |
| 4842 | return true; |
| 4843 | |
| 4844 | // C++ [basic.stc.dynamic.allocation]p1: |
| 4845 | // The first parameter shall not have an associated default argument. |
| 4846 | if (FnDecl->getParamDecl(0)->hasDefaultArg()) |
Anders Carlsson | a3ccda5 | 2009-12-12 00:26:23 +0000 | [diff] [blame] | 4847 | return SemaRef.Diag(FnDecl->getLocation(), |
Anders Carlsson | 156c78e | 2009-12-13 17:53:43 +0000 | [diff] [blame] | 4848 | diag::err_operator_new_default_arg) |
| 4849 | << FnDecl->getDeclName() << FnDecl->getParamDecl(0)->getDefaultArgRange(); |
| 4850 | |
| 4851 | return false; |
Anders Carlsson | a3ccda5 | 2009-12-12 00:26:23 +0000 | [diff] [blame] | 4852 | } |
| 4853 | |
| 4854 | static bool |
Anders Carlsson | 9d59ecb | 2009-12-11 23:23:22 +0000 | [diff] [blame] | 4855 | CheckOperatorDeleteDeclaration(Sema &SemaRef, const FunctionDecl *FnDecl) { |
| 4856 | // C++ [basic.stc.dynamic.deallocation]p1: |
| 4857 | // A program is ill-formed if deallocation functions are declared in a |
| 4858 | // namespace scope other than global scope or declared static in global |
| 4859 | // scope. |
Anders Carlsson | 20d45d2 | 2009-12-12 00:32:00 +0000 | [diff] [blame] | 4860 | if (CheckOperatorNewDeleteDeclarationScope(SemaRef, FnDecl)) |
| 4861 | return true; |
Anders Carlsson | 9d59ecb | 2009-12-11 23:23:22 +0000 | [diff] [blame] | 4862 | |
| 4863 | // C++ [basic.stc.dynamic.deallocation]p2: |
| 4864 | // Each deallocation function shall return void and its first parameter |
| 4865 | // shall be void*. |
Anders Carlsson | 156c78e | 2009-12-13 17:53:43 +0000 | [diff] [blame] | 4866 | if (CheckOperatorNewDeleteTypes(SemaRef, FnDecl, SemaRef.Context.VoidTy, |
| 4867 | SemaRef.Context.VoidPtrTy, |
| 4868 | diag::err_operator_delete_dependent_param_type, |
| 4869 | diag::err_operator_delete_param_type)) |
| 4870 | return true; |
Anders Carlsson | 9d59ecb | 2009-12-11 23:23:22 +0000 | [diff] [blame] | 4871 | |
Anders Carlsson | 46991d6 | 2009-12-12 00:16:02 +0000 | [diff] [blame] | 4872 | QualType FirstParamType = FnDecl->getParamDecl(0)->getType(); |
| 4873 | if (FirstParamType->isDependentType()) |
| 4874 | return SemaRef.Diag(FnDecl->getLocation(), |
| 4875 | diag::err_operator_delete_dependent_param_type) |
| 4876 | << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy; |
| 4877 | |
| 4878 | if (SemaRef.Context.getCanonicalType(FirstParamType) != |
| 4879 | SemaRef.Context.VoidPtrTy) |
Anders Carlsson | 9d59ecb | 2009-12-11 23:23:22 +0000 | [diff] [blame] | 4880 | return SemaRef.Diag(FnDecl->getLocation(), |
| 4881 | diag::err_operator_delete_param_type) |
| 4882 | << FnDecl->getDeclName() << SemaRef.Context.VoidPtrTy; |
Anders Carlsson | 9d59ecb | 2009-12-11 23:23:22 +0000 | [diff] [blame] | 4883 | |
| 4884 | return false; |
| 4885 | } |
| 4886 | |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4887 | /// CheckOverloadedOperatorDeclaration - Check whether the declaration |
| 4888 | /// of this overloaded operator is well-formed. If so, returns false; |
| 4889 | /// otherwise, emits appropriate diagnostics and returns true. |
| 4890 | bool Sema::CheckOverloadedOperatorDeclaration(FunctionDecl *FnDecl) { |
Douglas Gregor | 43c7bad | 2008-11-17 16:14:12 +0000 | [diff] [blame] | 4891 | assert(FnDecl && FnDecl->isOverloadedOperator() && |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4892 | "Expected an overloaded operator declaration"); |
| 4893 | |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4894 | OverloadedOperatorKind Op = FnDecl->getOverloadedOperator(); |
| 4895 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4896 | // C++ [over.oper]p5: |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4897 | // The allocation and deallocation functions, operator new, |
| 4898 | // operator new[], operator delete and operator delete[], are |
| 4899 | // described completely in 3.7.3. The attributes and restrictions |
| 4900 | // found in the rest of this subclause do not apply to them unless |
| 4901 | // explicitly stated in 3.7.3. |
Anders Carlsson | 1152c39 | 2009-12-11 23:31:21 +0000 | [diff] [blame] | 4902 | if (Op == OO_Delete || Op == OO_Array_Delete) |
Anders Carlsson | 9d59ecb | 2009-12-11 23:23:22 +0000 | [diff] [blame] | 4903 | return CheckOperatorDeleteDeclaration(*this, FnDecl); |
Fariborz Jahanian | b03bfa5 | 2009-11-10 23:47:18 +0000 | [diff] [blame] | 4904 | |
Anders Carlsson | a3ccda5 | 2009-12-12 00:26:23 +0000 | [diff] [blame] | 4905 | if (Op == OO_New || Op == OO_Array_New) |
| 4906 | return CheckOperatorNewDeclaration(*this, FnDecl); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4907 | |
| 4908 | // C++ [over.oper]p6: |
| 4909 | // An operator function shall either be a non-static member |
| 4910 | // function or be a non-member function and have at least one |
| 4911 | // parameter whose type is a class, a reference to a class, an |
| 4912 | // enumeration, or a reference to an enumeration. |
Douglas Gregor | 43c7bad | 2008-11-17 16:14:12 +0000 | [diff] [blame] | 4913 | if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 4914 | if (MethodDecl->isStatic()) |
| 4915 | return Diag(FnDecl->getLocation(), |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4916 | diag::err_operator_overload_static) << FnDecl->getDeclName(); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4917 | } else { |
| 4918 | bool ClassOrEnumParam = false; |
Douglas Gregor | 43c7bad | 2008-11-17 16:14:12 +0000 | [diff] [blame] | 4919 | for (FunctionDecl::param_iterator Param = FnDecl->param_begin(), |
| 4920 | ParamEnd = FnDecl->param_end(); |
| 4921 | Param != ParamEnd; ++Param) { |
| 4922 | QualType ParamType = (*Param)->getType().getNonReferenceType(); |
Eli Friedman | 5d39dee | 2009-06-27 05:59:59 +0000 | [diff] [blame] | 4923 | if (ParamType->isDependentType() || ParamType->isRecordType() || |
| 4924 | ParamType->isEnumeralType()) { |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4925 | ClassOrEnumParam = true; |
| 4926 | break; |
| 4927 | } |
| 4928 | } |
| 4929 | |
Douglas Gregor | 43c7bad | 2008-11-17 16:14:12 +0000 | [diff] [blame] | 4930 | if (!ClassOrEnumParam) |
| 4931 | return Diag(FnDecl->getLocation(), |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 4932 | diag::err_operator_overload_needs_class_or_enum) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4933 | << FnDecl->getDeclName(); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4934 | } |
| 4935 | |
| 4936 | // C++ [over.oper]p8: |
| 4937 | // An operator function cannot have default arguments (8.3.6), |
| 4938 | // except where explicitly stated below. |
| 4939 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4940 | // Only the function-call operator allows default arguments |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4941 | // (C++ [over.call]p1). |
| 4942 | if (Op != OO_Call) { |
| 4943 | for (FunctionDecl::param_iterator Param = FnDecl->param_begin(); |
| 4944 | Param != FnDecl->param_end(); ++Param) { |
Anders Carlsson | 156c78e | 2009-12-13 17:53:43 +0000 | [diff] [blame] | 4945 | if ((*Param)->hasDefaultArg()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4946 | return Diag((*Param)->getLocation(), |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 4947 | diag::err_operator_overload_default_arg) |
Anders Carlsson | 156c78e | 2009-12-13 17:53:43 +0000 | [diff] [blame] | 4948 | << FnDecl->getDeclName() << (*Param)->getDefaultArgRange(); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4949 | } |
| 4950 | } |
| 4951 | |
Douglas Gregor | 02bcd4c | 2008-11-10 13:38:07 +0000 | [diff] [blame] | 4952 | static const bool OperatorUses[NUM_OVERLOADED_OPERATORS][3] = { |
| 4953 | { false, false, false } |
| 4954 | #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ |
| 4955 | , { Unary, Binary, MemberOnly } |
| 4956 | #include "clang/Basic/OperatorKinds.def" |
| 4957 | }; |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4958 | |
Douglas Gregor | 02bcd4c | 2008-11-10 13:38:07 +0000 | [diff] [blame] | 4959 | bool CanBeUnaryOperator = OperatorUses[Op][0]; |
| 4960 | bool CanBeBinaryOperator = OperatorUses[Op][1]; |
| 4961 | bool MustBeMemberOperator = OperatorUses[Op][2]; |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4962 | |
| 4963 | // C++ [over.oper]p8: |
| 4964 | // [...] Operator functions cannot have more or fewer parameters |
| 4965 | // than the number required for the corresponding operator, as |
| 4966 | // described in the rest of this subclause. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4967 | unsigned NumParams = FnDecl->getNumParams() |
Douglas Gregor | 43c7bad | 2008-11-17 16:14:12 +0000 | [diff] [blame] | 4968 | + (isa<CXXMethodDecl>(FnDecl)? 1 : 0); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4969 | if (Op != OO_Call && |
| 4970 | ((NumParams == 1 && !CanBeUnaryOperator) || |
| 4971 | (NumParams == 2 && !CanBeBinaryOperator) || |
| 4972 | (NumParams < 1) || (NumParams > 2))) { |
| 4973 | // We have the wrong number of parameters. |
Chris Lattner | 416e46f | 2008-11-21 07:57:12 +0000 | [diff] [blame] | 4974 | unsigned ErrorKind; |
Douglas Gregor | 02bcd4c | 2008-11-10 13:38:07 +0000 | [diff] [blame] | 4975 | if (CanBeUnaryOperator && CanBeBinaryOperator) { |
Chris Lattner | 416e46f | 2008-11-21 07:57:12 +0000 | [diff] [blame] | 4976 | ErrorKind = 2; // 2 -> unary or binary. |
Douglas Gregor | 02bcd4c | 2008-11-10 13:38:07 +0000 | [diff] [blame] | 4977 | } else if (CanBeUnaryOperator) { |
Chris Lattner | 416e46f | 2008-11-21 07:57:12 +0000 | [diff] [blame] | 4978 | ErrorKind = 0; // 0 -> unary |
Douglas Gregor | 02bcd4c | 2008-11-10 13:38:07 +0000 | [diff] [blame] | 4979 | } else { |
Chris Lattner | af7ae4e | 2008-11-21 07:50:02 +0000 | [diff] [blame] | 4980 | assert(CanBeBinaryOperator && |
| 4981 | "All non-call overloaded operators are unary or binary!"); |
Chris Lattner | 416e46f | 2008-11-21 07:57:12 +0000 | [diff] [blame] | 4982 | ErrorKind = 1; // 1 -> binary |
Douglas Gregor | 02bcd4c | 2008-11-10 13:38:07 +0000 | [diff] [blame] | 4983 | } |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4984 | |
Chris Lattner | 416e46f | 2008-11-21 07:57:12 +0000 | [diff] [blame] | 4985 | return Diag(FnDecl->getLocation(), diag::err_operator_overload_must_be) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4986 | << FnDecl->getDeclName() << NumParams << ErrorKind; |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4987 | } |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 4988 | |
Douglas Gregor | 43c7bad | 2008-11-17 16:14:12 +0000 | [diff] [blame] | 4989 | // Overloaded operators other than operator() cannot be variadic. |
| 4990 | if (Op != OO_Call && |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4991 | FnDecl->getType()->getAs<FunctionProtoType>()->isVariadic()) { |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 4992 | return Diag(FnDecl->getLocation(), diag::err_operator_overload_variadic) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4993 | << FnDecl->getDeclName(); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 4994 | } |
| 4995 | |
| 4996 | // Some operators must be non-static member functions. |
Douglas Gregor | 43c7bad | 2008-11-17 16:14:12 +0000 | [diff] [blame] | 4997 | if (MustBeMemberOperator && !isa<CXXMethodDecl>(FnDecl)) { |
| 4998 | return Diag(FnDecl->getLocation(), |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 4999 | diag::err_operator_overload_must_be_member) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 5000 | << FnDecl->getDeclName(); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 5001 | } |
| 5002 | |
| 5003 | // C++ [over.inc]p1: |
| 5004 | // The user-defined function called operator++ implements the |
| 5005 | // prefix and postfix ++ operator. If this function is a member |
| 5006 | // function with no parameters, or a non-member function with one |
| 5007 | // parameter of class or enumeration type, it defines the prefix |
| 5008 | // increment operator ++ for objects of that type. If the function |
| 5009 | // is a member function with one parameter (which shall be of type |
| 5010 | // int) or a non-member function with two parameters (the second |
| 5011 | // of which shall be of type int), it defines the postfix |
| 5012 | // increment operator ++ for objects of that type. |
| 5013 | if ((Op == OO_PlusPlus || Op == OO_MinusMinus) && NumParams == 2) { |
| 5014 | ParmVarDecl *LastParam = FnDecl->getParamDecl(FnDecl->getNumParams() - 1); |
| 5015 | bool ParamIsInt = false; |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5016 | if (const BuiltinType *BT = LastParam->getType()->getAs<BuiltinType>()) |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 5017 | ParamIsInt = BT->getKind() == BuiltinType::Int; |
| 5018 | |
Chris Lattner | af7ae4e | 2008-11-21 07:50:02 +0000 | [diff] [blame] | 5019 | if (!ParamIsInt) |
| 5020 | return Diag(LastParam->getLocation(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5021 | diag::err_operator_overload_post_incdec_must_be_int) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5022 | << LastParam->getType() << (Op == OO_MinusMinus); |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 5023 | } |
| 5024 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 5025 | // Notify the class if it got an assignment operator. |
| 5026 | if (Op == OO_Equal) { |
| 5027 | // Would have returned earlier otherwise. |
| 5028 | assert(isa<CXXMethodDecl>(FnDecl) && |
| 5029 | "Overloaded = not member, but not filtered."); |
| 5030 | CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl); |
| 5031 | Method->getParent()->addedAssignmentOperator(Context, Method); |
| 5032 | } |
| 5033 | |
Douglas Gregor | 43c7bad | 2008-11-17 16:14:12 +0000 | [diff] [blame] | 5034 | return false; |
Douglas Gregor | 1cd1b1e | 2008-11-06 22:13:31 +0000 | [diff] [blame] | 5035 | } |
Chris Lattner | 5a003a4 | 2008-12-17 07:09:26 +0000 | [diff] [blame] | 5036 | |
Sean Hunt | a6c058d | 2010-01-13 09:01:02 +0000 | [diff] [blame] | 5037 | /// CheckLiteralOperatorDeclaration - Check whether the declaration |
| 5038 | /// of this literal operator function is well-formed. If so, returns |
| 5039 | /// false; otherwise, emits appropriate diagnostics and returns true. |
| 5040 | bool Sema::CheckLiteralOperatorDeclaration(FunctionDecl *FnDecl) { |
| 5041 | DeclContext *DC = FnDecl->getDeclContext(); |
| 5042 | Decl::Kind Kind = DC->getDeclKind(); |
| 5043 | if (Kind != Decl::TranslationUnit && Kind != Decl::Namespace && |
| 5044 | Kind != Decl::LinkageSpec) { |
| 5045 | Diag(FnDecl->getLocation(), diag::err_literal_operator_outside_namespace) |
| 5046 | << FnDecl->getDeclName(); |
| 5047 | return true; |
| 5048 | } |
| 5049 | |
| 5050 | bool Valid = false; |
| 5051 | |
| 5052 | // FIXME: Check for the one valid template signature |
| 5053 | // template <char...> type operator "" name(); |
| 5054 | |
| 5055 | if (FunctionDecl::param_iterator Param = FnDecl->param_begin()) { |
| 5056 | // Check the first parameter |
| 5057 | QualType T = (*Param)->getType(); |
| 5058 | |
| 5059 | // unsigned long long int and long double are allowed, but only |
| 5060 | // alone. |
| 5061 | // We also allow any character type; their omission seems to be a bug |
| 5062 | // in n3000 |
| 5063 | if (Context.hasSameType(T, Context.UnsignedLongLongTy) || |
| 5064 | Context.hasSameType(T, Context.LongDoubleTy) || |
| 5065 | Context.hasSameType(T, Context.CharTy) || |
| 5066 | Context.hasSameType(T, Context.WCharTy) || |
| 5067 | Context.hasSameType(T, Context.Char16Ty) || |
| 5068 | Context.hasSameType(T, Context.Char32Ty)) { |
| 5069 | if (++Param == FnDecl->param_end()) |
| 5070 | Valid = true; |
| 5071 | goto FinishedParams; |
| 5072 | } |
| 5073 | |
| 5074 | // Otherwise it must be a pointer to const; let's strip those. |
| 5075 | const PointerType *PT = T->getAs<PointerType>(); |
| 5076 | if (!PT) |
| 5077 | goto FinishedParams; |
| 5078 | T = PT->getPointeeType(); |
| 5079 | if (!T.isConstQualified()) |
| 5080 | goto FinishedParams; |
| 5081 | T = T.getUnqualifiedType(); |
| 5082 | |
| 5083 | // Move on to the second parameter; |
| 5084 | ++Param; |
| 5085 | |
| 5086 | // If there is no second parameter, the first must be a const char * |
| 5087 | if (Param == FnDecl->param_end()) { |
| 5088 | if (Context.hasSameType(T, Context.CharTy)) |
| 5089 | Valid = true; |
| 5090 | goto FinishedParams; |
| 5091 | } |
| 5092 | |
| 5093 | // const char *, const wchar_t*, const char16_t*, and const char32_t* |
| 5094 | // are allowed as the first parameter to a two-parameter function |
| 5095 | if (!(Context.hasSameType(T, Context.CharTy) || |
| 5096 | Context.hasSameType(T, Context.WCharTy) || |
| 5097 | Context.hasSameType(T, Context.Char16Ty) || |
| 5098 | Context.hasSameType(T, Context.Char32Ty))) |
| 5099 | goto FinishedParams; |
| 5100 | |
| 5101 | // The second and final parameter must be an std::size_t |
| 5102 | T = (*Param)->getType().getUnqualifiedType(); |
| 5103 | if (Context.hasSameType(T, Context.getSizeType()) && |
| 5104 | ++Param == FnDecl->param_end()) |
| 5105 | Valid = true; |
| 5106 | } |
| 5107 | |
| 5108 | // FIXME: This diagnostic is absolutely terrible. |
| 5109 | FinishedParams: |
| 5110 | if (!Valid) { |
| 5111 | Diag(FnDecl->getLocation(), diag::err_literal_operator_params) |
| 5112 | << FnDecl->getDeclName(); |
| 5113 | return true; |
| 5114 | } |
| 5115 | |
| 5116 | return false; |
| 5117 | } |
| 5118 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 5119 | /// ActOnStartLinkageSpecification - Parsed the beginning of a C++ |
| 5120 | /// linkage specification, including the language and (if present) |
| 5121 | /// the '{'. ExternLoc is the location of the 'extern', LangLoc is |
| 5122 | /// the location of the language string literal, which is provided |
| 5123 | /// by Lang/StrSize. LBraceLoc, if valid, provides the location of |
| 5124 | /// the '{' brace. Otherwise, this linkage specification does not |
| 5125 | /// have any braces. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5126 | Sema::DeclPtrTy Sema::ActOnStartLinkageSpecification(Scope *S, |
| 5127 | SourceLocation ExternLoc, |
| 5128 | SourceLocation LangLoc, |
| 5129 | const char *Lang, |
| 5130 | unsigned StrSize, |
| 5131 | SourceLocation LBraceLoc) { |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 5132 | LinkageSpecDecl::LanguageIDs Language; |
| 5133 | if (strncmp(Lang, "\"C\"", StrSize) == 0) |
| 5134 | Language = LinkageSpecDecl::lang_c; |
| 5135 | else if (strncmp(Lang, "\"C++\"", StrSize) == 0) |
| 5136 | Language = LinkageSpecDecl::lang_cxx; |
| 5137 | else { |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 5138 | Diag(LangLoc, diag::err_bad_language); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5139 | return DeclPtrTy(); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 5140 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5141 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 5142 | // FIXME: Add all the various semantics of linkage specifications |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5143 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 5144 | LinkageSpecDecl *D = LinkageSpecDecl::Create(Context, CurContext, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5145 | LangLoc, Language, |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 5146 | LBraceLoc.isValid()); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 5147 | CurContext->addDecl(D); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 5148 | PushDeclContext(S, D); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5149 | return DeclPtrTy::make(D); |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 5150 | } |
| 5151 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 5152 | /// ActOnFinishLinkageSpecification - Completely the definition of |
| 5153 | /// the C++ linkage specification LinkageSpec. If RBraceLoc is |
| 5154 | /// valid, it's the position of the closing '}' brace in a linkage |
| 5155 | /// specification that uses braces. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5156 | Sema::DeclPtrTy Sema::ActOnFinishLinkageSpecification(Scope *S, |
| 5157 | DeclPtrTy LinkageSpec, |
| 5158 | SourceLocation RBraceLoc) { |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 5159 | if (LinkageSpec) |
| 5160 | PopDeclContext(); |
| 5161 | return LinkageSpec; |
Chris Lattner | 5a003a4 | 2008-12-17 07:09:26 +0000 | [diff] [blame] | 5162 | } |
| 5163 | |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5164 | /// \brief Perform semantic analysis for the variable declaration that |
| 5165 | /// occurs within a C++ catch clause, returning the newly-created |
| 5166 | /// variable. |
| 5167 | VarDecl *Sema::BuildExceptionDeclaration(Scope *S, QualType ExDeclType, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5168 | TypeSourceInfo *TInfo, |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5169 | IdentifierInfo *Name, |
| 5170 | SourceLocation Loc, |
| 5171 | SourceRange Range) { |
| 5172 | bool Invalid = false; |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5173 | |
| 5174 | // Arrays and functions decay. |
| 5175 | if (ExDeclType->isArrayType()) |
| 5176 | ExDeclType = Context.getArrayDecayedType(ExDeclType); |
| 5177 | else if (ExDeclType->isFunctionType()) |
| 5178 | ExDeclType = Context.getPointerType(ExDeclType); |
| 5179 | |
| 5180 | // C++ 15.3p1: The exception-declaration shall not denote an incomplete type. |
| 5181 | // The exception-declaration shall not denote a pointer or reference to an |
| 5182 | // incomplete type, other than [cv] void*. |
Sebastian Redl | f2e21e5 | 2009-03-22 23:49:27 +0000 | [diff] [blame] | 5183 | // N2844 forbids rvalue references. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5184 | if (!ExDeclType->isDependentType() && ExDeclType->isRValueReferenceType()) { |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5185 | Diag(Loc, diag::err_catch_rvalue_ref) << Range; |
Sebastian Redl | f2e21e5 | 2009-03-22 23:49:27 +0000 | [diff] [blame] | 5186 | Invalid = true; |
| 5187 | } |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5188 | |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5189 | QualType BaseType = ExDeclType; |
| 5190 | int Mode = 0; // 0 for direct type, 1 for pointer, 2 for reference |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 5191 | unsigned DK = diag::err_catch_incomplete; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5192 | if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5193 | BaseType = Ptr->getPointeeType(); |
| 5194 | Mode = 1; |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 5195 | DK = diag::err_catch_incomplete_ptr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5196 | } else if (const ReferenceType *Ref = BaseType->getAs<ReferenceType>()) { |
Sebastian Redl | f2e21e5 | 2009-03-22 23:49:27 +0000 | [diff] [blame] | 5197 | // For the purpose of error recovery, we treat rvalue refs like lvalue refs. |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5198 | BaseType = Ref->getPointeeType(); |
| 5199 | Mode = 2; |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 5200 | DK = diag::err_catch_incomplete_ref; |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5201 | } |
Sebastian Redl | f2e21e5 | 2009-03-22 23:49:27 +0000 | [diff] [blame] | 5202 | if (!Invalid && (Mode == 0 || !BaseType->isVoidType()) && |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5203 | !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK)) |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5204 | Invalid = true; |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5205 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5206 | if (!Invalid && !ExDeclType->isDependentType() && |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5207 | RequireNonAbstractType(Loc, ExDeclType, |
| 5208 | diag::err_abstract_type_in_decl, |
| 5209 | AbstractVariableType)) |
Sebastian Redl | fef9f59 | 2009-04-27 21:03:30 +0000 | [diff] [blame] | 5210 | Invalid = true; |
| 5211 | |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5212 | // FIXME: Need to test for ability to copy-construct and destroy the |
| 5213 | // exception variable. |
| 5214 | |
Sebastian Redl | 8351da0 | 2008-12-22 21:35:02 +0000 | [diff] [blame] | 5215 | // FIXME: Need to check for abstract classes. |
| 5216 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5217 | VarDecl *ExDecl = VarDecl::Create(Context, CurContext, Loc, |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5218 | Name, ExDeclType, TInfo, VarDecl::None); |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5219 | |
| 5220 | if (Invalid) |
| 5221 | ExDecl->setInvalidDecl(); |
| 5222 | |
| 5223 | return ExDecl; |
| 5224 | } |
| 5225 | |
| 5226 | /// ActOnExceptionDeclarator - Parsed the exception-declarator in a C++ catch |
| 5227 | /// handler. |
| 5228 | Sema::DeclPtrTy Sema::ActOnExceptionDeclarator(Scope *S, Declarator &D) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5229 | TypeSourceInfo *TInfo = 0; |
| 5230 | QualType ExDeclType = GetTypeForDeclarator(D, S, &TInfo); |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5231 | |
| 5232 | bool Invalid = D.isInvalidType(); |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5233 | IdentifierInfo *II = D.getIdentifier(); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5234 | if (NamedDecl *PrevDecl = LookupSingleName(S, II, LookupOrdinaryName)) { |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5235 | // The scope should be freshly made just for us. There is just no way |
| 5236 | // it contains any previous declaration. |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5237 | assert(!S->isDeclScope(DeclPtrTy::make(PrevDecl))); |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5238 | if (PrevDecl->isTemplateParameter()) { |
| 5239 | // Maybe we will complain about the shadowed template parameter. |
| 5240 | DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5241 | } |
| 5242 | } |
| 5243 | |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 5244 | if (D.getCXXScopeSpec().isSet() && !Invalid) { |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5245 | Diag(D.getIdentifierLoc(), diag::err_qualified_catch_declarator) |
| 5246 | << D.getCXXScopeSpec().getRange(); |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 5247 | Invalid = true; |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5248 | } |
| 5249 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5250 | VarDecl *ExDecl = BuildExceptionDeclaration(S, ExDeclType, TInfo, |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5251 | D.getIdentifier(), |
| 5252 | D.getIdentifierLoc(), |
| 5253 | D.getDeclSpec().getSourceRange()); |
| 5254 | |
Chris Lattner | eaaebc7 | 2009-04-25 08:06:05 +0000 | [diff] [blame] | 5255 | if (Invalid) |
| 5256 | ExDecl->setInvalidDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5257 | |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5258 | // Add the exception declaration into this scope. |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5259 | if (II) |
Douglas Gregor | d308e62 | 2009-05-18 20:51:54 +0000 | [diff] [blame] | 5260 | PushOnScopeChains(ExDecl, S); |
| 5261 | else |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 5262 | CurContext->addDecl(ExDecl); |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5263 | |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5264 | ProcessDeclAttributes(S, ExDecl, D); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5265 | return DeclPtrTy::make(ExDecl); |
Sebastian Redl | 4b07b29 | 2008-12-22 19:15:10 +0000 | [diff] [blame] | 5266 | } |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 5267 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5268 | Sema::DeclPtrTy Sema::ActOnStaticAssertDeclaration(SourceLocation AssertLoc, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5269 | ExprArg assertexpr, |
| 5270 | ExprArg assertmessageexpr) { |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 5271 | Expr *AssertExpr = (Expr *)assertexpr.get(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5272 | StringLiteral *AssertMessage = |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 5273 | cast<StringLiteral>((Expr *)assertmessageexpr.get()); |
| 5274 | |
Anders Carlsson | c308241 | 2009-03-14 00:33:21 +0000 | [diff] [blame] | 5275 | if (!AssertExpr->isTypeDependent() && !AssertExpr->isValueDependent()) { |
| 5276 | llvm::APSInt Value(32); |
| 5277 | if (!AssertExpr->isIntegerConstantExpr(Value, Context)) { |
| 5278 | Diag(AssertLoc, diag::err_static_assert_expression_is_not_constant) << |
| 5279 | AssertExpr->getSourceRange(); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5280 | return DeclPtrTy(); |
Anders Carlsson | c308241 | 2009-03-14 00:33:21 +0000 | [diff] [blame] | 5281 | } |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 5282 | |
Anders Carlsson | c308241 | 2009-03-14 00:33:21 +0000 | [diff] [blame] | 5283 | if (Value == 0) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5284 | Diag(AssertLoc, diag::err_static_assert_failed) |
Benjamin Kramer | 8d04258 | 2009-12-11 13:33:18 +0000 | [diff] [blame] | 5285 | << AssertMessage->getString() << AssertExpr->getSourceRange(); |
Anders Carlsson | c308241 | 2009-03-14 00:33:21 +0000 | [diff] [blame] | 5286 | } |
| 5287 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5288 | |
Anders Carlsson | 77d8142 | 2009-03-15 17:35:16 +0000 | [diff] [blame] | 5289 | assertexpr.release(); |
| 5290 | assertmessageexpr.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5291 | Decl *Decl = StaticAssertDecl::Create(Context, CurContext, AssertLoc, |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 5292 | AssertExpr, AssertMessage); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5293 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 5294 | CurContext->addDecl(Decl); |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5295 | return DeclPtrTy::make(Decl); |
Anders Carlsson | fb31176 | 2009-03-14 00:25:26 +0000 | [diff] [blame] | 5296 | } |
Sebastian Redl | 50de12f | 2009-03-24 22:27:57 +0000 | [diff] [blame] | 5297 | |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 5298 | /// Handle a friend type declaration. This works in tandem with |
| 5299 | /// ActOnTag. |
| 5300 | /// |
| 5301 | /// Notes on friend class templates: |
| 5302 | /// |
| 5303 | /// We generally treat friend class declarations as if they were |
| 5304 | /// declaring a class. So, for example, the elaborated type specifier |
| 5305 | /// in a friend declaration is required to obey the restrictions of a |
| 5306 | /// class-head (i.e. no typedefs in the scope chain), template |
| 5307 | /// parameters are required to match up with simple template-ids, &c. |
| 5308 | /// However, unlike when declaring a template specialization, it's |
| 5309 | /// okay to refer to a template specialization without an empty |
| 5310 | /// template parameter declaration, e.g. |
| 5311 | /// friend class A<T>::B<unsigned>; |
| 5312 | /// We permit this as a special case; if there are any template |
| 5313 | /// parameters present at all, require proper matching, i.e. |
| 5314 | /// template <> template <class T> friend class A<int>::B; |
Chris Lattner | c7f1904 | 2009-10-25 17:47:27 +0000 | [diff] [blame] | 5315 | Sema::DeclPtrTy Sema::ActOnFriendTypeDecl(Scope *S, const DeclSpec &DS, |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 5316 | MultiTemplateParamsArg TempParams) { |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5317 | SourceLocation Loc = DS.getSourceRange().getBegin(); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5318 | |
| 5319 | assert(DS.isFriendSpecified()); |
| 5320 | assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); |
| 5321 | |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 5322 | // Try to convert the decl specifier to a type. This works for |
| 5323 | // friend templates because ActOnTag never produces a ClassTemplateDecl |
| 5324 | // for a TUK_Friend. |
Chris Lattner | c7f1904 | 2009-10-25 17:47:27 +0000 | [diff] [blame] | 5325 | Declarator TheDeclarator(DS, Declarator::MemberContext); |
Chris Lattner | c7f1904 | 2009-10-25 17:47:27 +0000 | [diff] [blame] | 5326 | QualType T = GetTypeForDeclarator(TheDeclarator, S); |
| 5327 | if (TheDeclarator.isInvalidType()) |
| 5328 | return DeclPtrTy(); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5329 | |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 5330 | // This is definitely an error in C++98. It's probably meant to |
| 5331 | // be forbidden in C++0x, too, but the specification is just |
| 5332 | // poorly written. |
| 5333 | // |
| 5334 | // The problem is with declarations like the following: |
| 5335 | // template <T> friend A<T>::foo; |
| 5336 | // where deciding whether a class C is a friend or not now hinges |
| 5337 | // on whether there exists an instantiation of A that causes |
| 5338 | // 'foo' to equal C. There are restrictions on class-heads |
| 5339 | // (which we declare (by fiat) elaborated friend declarations to |
| 5340 | // be) that makes this tractable. |
| 5341 | // |
| 5342 | // FIXME: handle "template <> friend class A<T>;", which |
| 5343 | // is possibly well-formed? Who even knows? |
| 5344 | if (TempParams.size() && !isa<ElaboratedType>(T)) { |
| 5345 | Diag(Loc, diag::err_tagless_friend_type_template) |
| 5346 | << DS.getSourceRange(); |
| 5347 | return DeclPtrTy(); |
| 5348 | } |
| 5349 | |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5350 | // C++ [class.friend]p2: |
| 5351 | // An elaborated-type-specifier shall be used in a friend declaration |
| 5352 | // for a class.* |
| 5353 | // * The class-key of the elaborated-type-specifier is required. |
John McCall | 6b2becf | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 5354 | // This is one of the rare places in Clang where it's legitimate to |
| 5355 | // ask about the "spelling" of the type. |
| 5356 | if (!getLangOptions().CPlusPlus0x && !isa<ElaboratedType>(T)) { |
| 5357 | // If we evaluated the type to a record type, suggest putting |
| 5358 | // a tag in front. |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5359 | if (const RecordType *RT = T->getAs<RecordType>()) { |
John McCall | 6b2becf | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 5360 | RecordDecl *RD = RT->getDecl(); |
| 5361 | |
| 5362 | std::string InsertionText = std::string(" ") + RD->getKindName(); |
| 5363 | |
John McCall | e3af023 | 2009-10-07 23:34:25 +0000 | [diff] [blame] | 5364 | Diag(DS.getTypeSpecTypeLoc(), diag::err_unelaborated_friend_type) |
| 5365 | << (unsigned) RD->getTagKind() |
| 5366 | << T |
| 5367 | << SourceRange(DS.getFriendSpecLoc()) |
John McCall | 6b2becf | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 5368 | << CodeModificationHint::CreateInsertion(DS.getTypeSpecTypeLoc(), |
| 5369 | InsertionText); |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5370 | return DeclPtrTy(); |
| 5371 | }else { |
John McCall | 6b2becf | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 5372 | Diag(DS.getFriendSpecLoc(), diag::err_unexpected_friend) |
| 5373 | << DS.getSourceRange(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5374 | return DeclPtrTy(); |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5375 | } |
| 5376 | } |
| 5377 | |
John McCall | e3af023 | 2009-10-07 23:34:25 +0000 | [diff] [blame] | 5378 | // Enum types cannot be friends. |
| 5379 | if (T->getAs<EnumType>()) { |
| 5380 | Diag(DS.getTypeSpecTypeLoc(), diag::err_enum_friend) |
| 5381 | << SourceRange(DS.getFriendSpecLoc()); |
| 5382 | return DeclPtrTy(); |
John McCall | 6b2becf | 2009-09-08 17:47:29 +0000 | [diff] [blame] | 5383 | } |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5384 | |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5385 | // C++98 [class.friend]p1: A friend of a class is a function |
| 5386 | // or class that is not a member of the class . . . |
John McCall | a236a55 | 2009-12-22 00:59:39 +0000 | [diff] [blame] | 5387 | // This is fixed in DR77, which just barely didn't make the C++03 |
| 5388 | // deadline. It's also a very silly restriction that seriously |
| 5389 | // affects inner classes and which nobody else seems to implement; |
| 5390 | // thus we never diagnose it, not even in -pedantic. |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5391 | |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 5392 | Decl *D; |
| 5393 | if (TempParams.size()) |
| 5394 | D = FriendTemplateDecl::Create(Context, CurContext, Loc, |
| 5395 | TempParams.size(), |
| 5396 | (TemplateParameterList**) TempParams.release(), |
| 5397 | T.getTypePtr(), |
| 5398 | DS.getFriendSpecLoc()); |
| 5399 | else |
| 5400 | D = FriendDecl::Create(Context, CurContext, Loc, T.getTypePtr(), |
| 5401 | DS.getFriendSpecLoc()); |
| 5402 | D->setAccess(AS_public); |
| 5403 | CurContext->addDecl(D); |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5404 | |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 5405 | return DeclPtrTy::make(D); |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5406 | } |
| 5407 | |
John McCall | bbbcdd9 | 2009-09-11 21:02:39 +0000 | [diff] [blame] | 5408 | Sema::DeclPtrTy |
| 5409 | Sema::ActOnFriendFunctionDecl(Scope *S, |
| 5410 | Declarator &D, |
| 5411 | bool IsDefinition, |
| 5412 | MultiTemplateParamsArg TemplateParams) { |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5413 | const DeclSpec &DS = D.getDeclSpec(); |
| 5414 | |
| 5415 | assert(DS.isFriendSpecified()); |
| 5416 | assert(DS.getStorageClassSpec() == DeclSpec::SCS_unspecified); |
| 5417 | |
| 5418 | SourceLocation Loc = D.getIdentifierLoc(); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5419 | TypeSourceInfo *TInfo = 0; |
| 5420 | QualType T = GetTypeForDeclarator(D, S, &TInfo); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5421 | |
| 5422 | // C++ [class.friend]p1 |
| 5423 | // A friend of a class is a function or class.... |
| 5424 | // Note that this sees through typedefs, which is intended. |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5425 | // It *doesn't* see through dependent types, which is correct |
| 5426 | // according to [temp.arg.type]p3: |
| 5427 | // If a declaration acquires a function type through a |
| 5428 | // type dependent on a template-parameter and this causes |
| 5429 | // a declaration that does not use the syntactic form of a |
| 5430 | // function declarator to have a function type, the program |
| 5431 | // is ill-formed. |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5432 | if (!T->isFunctionType()) { |
| 5433 | Diag(Loc, diag::err_unexpected_friend); |
| 5434 | |
| 5435 | // It might be worthwhile to try to recover by creating an |
| 5436 | // appropriate declaration. |
| 5437 | return DeclPtrTy(); |
| 5438 | } |
| 5439 | |
| 5440 | // C++ [namespace.memdef]p3 |
| 5441 | // - If a friend declaration in a non-local class first declares a |
| 5442 | // class or function, the friend class or function is a member |
| 5443 | // of the innermost enclosing namespace. |
| 5444 | // - The name of the friend is not found by simple name lookup |
| 5445 | // until a matching declaration is provided in that namespace |
| 5446 | // scope (either before or after the class declaration granting |
| 5447 | // friendship). |
| 5448 | // - If a friend function is called, its name may be found by the |
| 5449 | // name lookup that considers functions from namespaces and |
| 5450 | // classes associated with the types of the function arguments. |
| 5451 | // - When looking for a prior declaration of a class or a function |
| 5452 | // declared as a friend, scopes outside the innermost enclosing |
| 5453 | // namespace scope are not considered. |
| 5454 | |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5455 | CXXScopeSpec &ScopeQual = D.getCXXScopeSpec(); |
| 5456 | DeclarationName Name = GetNameForDeclarator(D); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5457 | assert(Name); |
| 5458 | |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5459 | // The context we found the declaration in, or in which we should |
| 5460 | // create the declaration. |
| 5461 | DeclContext *DC; |
| 5462 | |
| 5463 | // FIXME: handle local classes |
| 5464 | |
| 5465 | // Recover from invalid scope qualifiers as if they just weren't there. |
John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 5466 | LookupResult Previous(*this, Name, D.getIdentifierLoc(), LookupOrdinaryName, |
| 5467 | ForRedeclaration); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5468 | if (!ScopeQual.isInvalid() && ScopeQual.isSet()) { |
Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 5469 | // FIXME: RequireCompleteDeclContext |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5470 | DC = computeDeclContext(ScopeQual); |
| 5471 | |
| 5472 | // FIXME: handle dependent contexts |
| 5473 | if (!DC) return DeclPtrTy(); |
| 5474 | |
John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 5475 | LookupQualifiedName(Previous, DC); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5476 | |
| 5477 | // If searching in that context implicitly found a declaration in |
| 5478 | // a different context, treat it like it wasn't found at all. |
| 5479 | // TODO: better diagnostics for this case. Suggesting the right |
| 5480 | // qualified scope would be nice... |
John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 5481 | // FIXME: getRepresentativeDecl() is not right here at all |
| 5482 | if (Previous.empty() || |
| 5483 | !Previous.getRepresentativeDecl()->getDeclContext()->Equals(DC)) { |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5484 | D.setInvalidType(); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5485 | Diag(Loc, diag::err_qualified_friend_not_found) << Name << T; |
| 5486 | return DeclPtrTy(); |
| 5487 | } |
| 5488 | |
| 5489 | // C++ [class.friend]p1: A friend of a class is a function or |
| 5490 | // class that is not a member of the class . . . |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5491 | if (DC->Equals(CurContext)) |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5492 | Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member); |
| 5493 | |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5494 | // Otherwise walk out to the nearest namespace scope looking for matches. |
| 5495 | } else { |
| 5496 | // TODO: handle local class contexts. |
| 5497 | |
| 5498 | DC = CurContext; |
| 5499 | while (true) { |
| 5500 | // Skip class contexts. If someone can cite chapter and verse |
| 5501 | // for this behavior, that would be nice --- it's what GCC and |
| 5502 | // EDG do, and it seems like a reasonable intent, but the spec |
| 5503 | // really only says that checks for unqualified existing |
| 5504 | // declarations should stop at the nearest enclosing namespace, |
| 5505 | // not that they should only consider the nearest enclosing |
| 5506 | // namespace. |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5507 | while (DC->isRecord()) |
| 5508 | DC = DC->getParent(); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5509 | |
John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 5510 | LookupQualifiedName(Previous, DC); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5511 | |
| 5512 | // TODO: decide what we think about using declarations. |
John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 5513 | if (!Previous.empty()) |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5514 | break; |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5515 | |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5516 | if (DC->isFileContext()) break; |
| 5517 | DC = DC->getParent(); |
| 5518 | } |
| 5519 | |
| 5520 | // C++ [class.friend]p1: A friend of a class is a function or |
| 5521 | // class that is not a member of the class . . . |
John McCall | 7f27d92 | 2009-08-06 20:49:32 +0000 | [diff] [blame] | 5522 | // C++0x changes this for both friend types and functions. |
| 5523 | // Most C++ 98 compilers do seem to give an error here, so |
| 5524 | // we do, too. |
John McCall | 6826314 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 5525 | if (!Previous.empty() && DC->Equals(CurContext) |
| 5526 | && !getLangOptions().CPlusPlus0x) |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5527 | Diag(DS.getFriendSpecLoc(), diag::err_friend_is_member); |
| 5528 | } |
| 5529 | |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5530 | if (DC->isFileContext()) { |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5531 | // This implies that it has to be an operator or function. |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 5532 | if (D.getName().getKind() == UnqualifiedId::IK_ConstructorName || |
| 5533 | D.getName().getKind() == UnqualifiedId::IK_DestructorName || |
| 5534 | D.getName().getKind() == UnqualifiedId::IK_ConversionFunctionId) { |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5535 | Diag(Loc, diag::err_introducing_special_friend) << |
Douglas Gregor | 3f9a056 | 2009-11-03 01:35:08 +0000 | [diff] [blame] | 5536 | (D.getName().getKind() == UnqualifiedId::IK_ConstructorName ? 0 : |
| 5537 | D.getName().getKind() == UnqualifiedId::IK_DestructorName ? 1 : 2); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5538 | return DeclPtrTy(); |
| 5539 | } |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5540 | } |
| 5541 | |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5542 | bool Redeclaration = false; |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5543 | NamedDecl *ND = ActOnFunctionDeclarator(S, D, DC, T, TInfo, Previous, |
Douglas Gregor | a735b20 | 2009-10-13 14:39:41 +0000 | [diff] [blame] | 5544 | move(TemplateParams), |
John McCall | 3f9a8a6 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 5545 | IsDefinition, |
| 5546 | Redeclaration); |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5547 | if (!ND) return DeclPtrTy(); |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 5548 | |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5549 | assert(ND->getDeclContext() == DC); |
| 5550 | assert(ND->getLexicalDeclContext() == CurContext); |
John McCall | 88232aa | 2009-08-18 00:00:49 +0000 | [diff] [blame] | 5551 | |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 5552 | // Add the function declaration to the appropriate lookup tables, |
| 5553 | // adjusting the redeclarations list as necessary. We don't |
| 5554 | // want to do this yet if the friending class is dependent. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5555 | // |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 5556 | // Also update the scope-based lookup if the target context's |
| 5557 | // lookup context is in lexical scope. |
| 5558 | if (!CurContext->isDependentContext()) { |
| 5559 | DC = DC->getLookupContext(); |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5560 | DC->makeDeclVisibleInContext(ND, /* Recoverable=*/ false); |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 5561 | if (Scope *EnclosingScope = getScopeForDeclContext(S, DC)) |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5562 | PushOnScopeChains(ND, EnclosingScope, /*AddToContext=*/ false); |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 5563 | } |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5564 | |
| 5565 | FriendDecl *FrD = FriendDecl::Create(Context, CurContext, |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5566 | D.getIdentifierLoc(), ND, |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5567 | DS.getFriendSpecLoc()); |
John McCall | 5fee110 | 2009-08-29 03:50:18 +0000 | [diff] [blame] | 5568 | FrD->setAccess(AS_public); |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 5569 | CurContext->addDecl(FrD); |
John McCall | 67d1a67 | 2009-08-06 02:15:43 +0000 | [diff] [blame] | 5570 | |
Douglas Gregor | 7557a13 | 2009-12-24 20:56:24 +0000 | [diff] [blame] | 5571 | if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) |
| 5572 | FrD->setSpecialization(true); |
| 5573 | |
Douglas Gregor | 182ddf0 | 2009-09-28 00:08:27 +0000 | [diff] [blame] | 5574 | return DeclPtrTy::make(ND); |
Anders Carlsson | 0033836 | 2009-05-11 22:55:49 +0000 | [diff] [blame] | 5575 | } |
| 5576 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5577 | void Sema::SetDeclDeleted(DeclPtrTy dcl, SourceLocation DelLoc) { |
Douglas Gregor | efd5bda | 2009-08-24 11:57:43 +0000 | [diff] [blame] | 5578 | AdjustDeclIfTemplate(dcl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5579 | |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5580 | Decl *Dcl = dcl.getAs<Decl>(); |
Sebastian Redl | 50de12f | 2009-03-24 22:27:57 +0000 | [diff] [blame] | 5581 | FunctionDecl *Fn = dyn_cast<FunctionDecl>(Dcl); |
| 5582 | if (!Fn) { |
| 5583 | Diag(DelLoc, diag::err_deleted_non_function); |
| 5584 | return; |
| 5585 | } |
| 5586 | if (const FunctionDecl *Prev = Fn->getPreviousDeclaration()) { |
| 5587 | Diag(DelLoc, diag::err_deleted_decl_not_first); |
| 5588 | Diag(Prev->getLocation(), diag::note_previous_declaration); |
| 5589 | // If the declaration wasn't the first, we delete the function anyway for |
| 5590 | // recovery. |
| 5591 | } |
| 5592 | Fn->setDeleted(); |
| 5593 | } |
Sebastian Redl | 13e8854 | 2009-04-27 21:33:24 +0000 | [diff] [blame] | 5594 | |
| 5595 | static void SearchForReturnInStmt(Sema &Self, Stmt *S) { |
| 5596 | for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end(); CI != E; |
| 5597 | ++CI) { |
| 5598 | Stmt *SubStmt = *CI; |
| 5599 | if (!SubStmt) |
| 5600 | continue; |
| 5601 | if (isa<ReturnStmt>(SubStmt)) |
| 5602 | Self.Diag(SubStmt->getSourceRange().getBegin(), |
| 5603 | diag::err_return_in_constructor_handler); |
| 5604 | if (!isa<Expr>(SubStmt)) |
| 5605 | SearchForReturnInStmt(Self, SubStmt); |
| 5606 | } |
| 5607 | } |
| 5608 | |
| 5609 | void Sema::DiagnoseReturnInConstructorExceptionHandler(CXXTryStmt *TryBlock) { |
| 5610 | for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) { |
| 5611 | CXXCatchStmt *Handler = TryBlock->getHandler(I); |
| 5612 | SearchForReturnInStmt(*this, Handler); |
| 5613 | } |
| 5614 | } |
Anders Carlsson | d7ba27d | 2009-05-14 01:09:04 +0000 | [diff] [blame] | 5615 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5616 | bool Sema::CheckOverridingFunctionReturnType(const CXXMethodDecl *New, |
Anders Carlsson | d7ba27d | 2009-05-14 01:09:04 +0000 | [diff] [blame] | 5617 | const CXXMethodDecl *Old) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5618 | QualType NewTy = New->getType()->getAs<FunctionType>()->getResultType(); |
| 5619 | QualType OldTy = Old->getType()->getAs<FunctionType>()->getResultType(); |
Anders Carlsson | d7ba27d | 2009-05-14 01:09:04 +0000 | [diff] [blame] | 5620 | |
Anders Carlsson | f2a04bf | 2010-01-22 17:37:20 +0000 | [diff] [blame] | 5621 | if (Context.hasSameType(NewTy, OldTy)) |
Anders Carlsson | d7ba27d | 2009-05-14 01:09:04 +0000 | [diff] [blame] | 5622 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5623 | |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5624 | // Check if the return types are covariant |
| 5625 | QualType NewClassTy, OldClassTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5626 | |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5627 | /// Both types must be pointers or references to classes. |
Anders Carlsson | f2a04bf | 2010-01-22 17:37:20 +0000 | [diff] [blame] | 5628 | if (const PointerType *NewPT = NewTy->getAs<PointerType>()) { |
| 5629 | if (const PointerType *OldPT = OldTy->getAs<PointerType>()) { |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5630 | NewClassTy = NewPT->getPointeeType(); |
| 5631 | OldClassTy = OldPT->getPointeeType(); |
| 5632 | } |
Anders Carlsson | f2a04bf | 2010-01-22 17:37:20 +0000 | [diff] [blame] | 5633 | } else if (const ReferenceType *NewRT = NewTy->getAs<ReferenceType>()) { |
| 5634 | if (const ReferenceType *OldRT = OldTy->getAs<ReferenceType>()) { |
| 5635 | if (NewRT->getTypeClass() == OldRT->getTypeClass()) { |
| 5636 | NewClassTy = NewRT->getPointeeType(); |
| 5637 | OldClassTy = OldRT->getPointeeType(); |
| 5638 | } |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5639 | } |
| 5640 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5641 | |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5642 | // The return types aren't either both pointers or references to a class type. |
| 5643 | if (NewClassTy.isNull()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5644 | Diag(New->getLocation(), |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5645 | diag::err_different_return_type_for_overriding_virtual_function) |
| 5646 | << New->getDeclName() << NewTy << OldTy; |
| 5647 | Diag(Old->getLocation(), diag::note_overridden_virtual_function); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5648 | |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5649 | return true; |
| 5650 | } |
Anders Carlsson | d7ba27d | 2009-05-14 01:09:04 +0000 | [diff] [blame] | 5651 | |
Anders Carlsson | be2e205 | 2009-12-31 18:34:24 +0000 | [diff] [blame] | 5652 | // C++ [class.virtual]p6: |
| 5653 | // If the return type of D::f differs from the return type of B::f, the |
| 5654 | // class type in the return type of D::f shall be complete at the point of |
| 5655 | // declaration of D::f or shall be the class type D. |
Anders Carlsson | ac4c939 | 2009-12-31 18:54:35 +0000 | [diff] [blame] | 5656 | if (const RecordType *RT = NewClassTy->getAs<RecordType>()) { |
| 5657 | if (!RT->isBeingDefined() && |
| 5658 | RequireCompleteType(New->getLocation(), NewClassTy, |
| 5659 | PDiag(diag::err_covariant_return_incomplete) |
| 5660 | << New->getDeclName())) |
Anders Carlsson | be2e205 | 2009-12-31 18:34:24 +0000 | [diff] [blame] | 5661 | return true; |
Anders Carlsson | ac4c939 | 2009-12-31 18:54:35 +0000 | [diff] [blame] | 5662 | } |
Anders Carlsson | be2e205 | 2009-12-31 18:34:24 +0000 | [diff] [blame] | 5663 | |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 5664 | if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) { |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5665 | // Check if the new class derives from the old class. |
| 5666 | if (!IsDerivedFrom(NewClassTy, OldClassTy)) { |
| 5667 | Diag(New->getLocation(), |
| 5668 | diag::err_covariant_return_not_derived) |
| 5669 | << New->getDeclName() << NewTy << OldTy; |
| 5670 | Diag(Old->getLocation(), diag::note_overridden_virtual_function); |
| 5671 | return true; |
| 5672 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5673 | |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5674 | // Check if we the conversion from derived to base is valid. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5675 | if (CheckDerivedToBaseConversion(NewClassTy, OldClassTy, |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5676 | diag::err_covariant_return_inaccessible_base, |
| 5677 | diag::err_covariant_return_ambiguous_derived_to_base_conv, |
| 5678 | // FIXME: Should this point to the return type? |
| 5679 | New->getLocation(), SourceRange(), New->getDeclName())) { |
| 5680 | Diag(Old->getLocation(), diag::note_overridden_virtual_function); |
| 5681 | return true; |
| 5682 | } |
| 5683 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5684 | |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5685 | // The qualifiers of the return types must be the same. |
Anders Carlsson | f2a04bf | 2010-01-22 17:37:20 +0000 | [diff] [blame] | 5686 | if (NewTy.getLocalCVRQualifiers() != OldTy.getLocalCVRQualifiers()) { |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5687 | Diag(New->getLocation(), |
| 5688 | diag::err_covariant_return_type_different_qualifications) |
Anders Carlsson | d7ba27d | 2009-05-14 01:09:04 +0000 | [diff] [blame] | 5689 | << New->getDeclName() << NewTy << OldTy; |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5690 | Diag(Old->getLocation(), diag::note_overridden_virtual_function); |
| 5691 | return true; |
| 5692 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5693 | |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5694 | |
| 5695 | // The new class type must have the same or less qualifiers as the old type. |
| 5696 | if (NewClassTy.isMoreQualifiedThan(OldClassTy)) { |
| 5697 | Diag(New->getLocation(), |
| 5698 | diag::err_covariant_return_type_class_type_more_qualified) |
| 5699 | << New->getDeclName() << NewTy << OldTy; |
| 5700 | Diag(Old->getLocation(), diag::note_overridden_virtual_function); |
| 5701 | return true; |
| 5702 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5703 | |
Anders Carlsson | c3a68b2 | 2009-05-14 19:52:19 +0000 | [diff] [blame] | 5704 | return false; |
Anders Carlsson | d7ba27d | 2009-05-14 01:09:04 +0000 | [diff] [blame] | 5705 | } |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5706 | |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 5707 | bool Sema::CheckOverridingFunctionAttributes(const CXXMethodDecl *New, |
| 5708 | const CXXMethodDecl *Old) |
| 5709 | { |
| 5710 | if (Old->hasAttr<FinalAttr>()) { |
| 5711 | Diag(New->getLocation(), diag::err_final_function_overridden) |
| 5712 | << New->getDeclName(); |
| 5713 | Diag(Old->getLocation(), diag::note_overridden_virtual_function); |
| 5714 | return true; |
| 5715 | } |
| 5716 | |
| 5717 | return false; |
| 5718 | } |
| 5719 | |
Douglas Gregor | 4ba3136 | 2009-12-01 17:24:26 +0000 | [diff] [blame] | 5720 | /// \brief Mark the given method pure. |
| 5721 | /// |
| 5722 | /// \param Method the method to be marked pure. |
| 5723 | /// |
| 5724 | /// \param InitRange the source range that covers the "0" initializer. |
| 5725 | bool Sema::CheckPureMethod(CXXMethodDecl *Method, SourceRange InitRange) { |
| 5726 | if (Method->isVirtual() || Method->getParent()->isDependentContext()) { |
| 5727 | Method->setPure(); |
| 5728 | |
| 5729 | // A class is abstract if at least one function is pure virtual. |
| 5730 | Method->getParent()->setAbstract(true); |
| 5731 | return false; |
| 5732 | } |
| 5733 | |
| 5734 | if (!Method->isInvalidDecl()) |
| 5735 | Diag(Method->getLocation(), diag::err_non_virtual_pure) |
| 5736 | << Method->getDeclName() << InitRange; |
| 5737 | return true; |
| 5738 | } |
| 5739 | |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 5740 | /// ActOnCXXEnterDeclInitializer - Invoked when we are about to parse |
| 5741 | /// an initializer for the out-of-line declaration 'Dcl'. The scope |
| 5742 | /// is a fresh scope pushed for just this purpose. |
| 5743 | /// |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5744 | /// After this method is called, according to [C++ 3.4.1p13], if 'Dcl' is a |
| 5745 | /// static data member of class X, names should be looked up in the scope of |
| 5746 | /// class X. |
| 5747 | void Sema::ActOnCXXEnterDeclInitializer(Scope *S, DeclPtrTy Dcl) { |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5748 | // If there is no declaration, there was an error parsing it. |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 5749 | Decl *D = Dcl.getAs<Decl>(); |
| 5750 | if (D == 0) return; |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5751 | |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 5752 | // We should only get called for declarations with scope specifiers, like: |
| 5753 | // int foo::bar; |
| 5754 | assert(D->isOutOfLine()); |
John McCall | 7a1dc56 | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 5755 | EnterDeclaratorContext(S, D->getDeclContext()); |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5756 | } |
| 5757 | |
| 5758 | /// ActOnCXXExitDeclInitializer - Invoked after we are finished parsing an |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 5759 | /// initializer for the out-of-line declaration 'Dcl'. |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5760 | void Sema::ActOnCXXExitDeclInitializer(Scope *S, DeclPtrTy Dcl) { |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5761 | // If there is no declaration, there was an error parsing it. |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 5762 | Decl *D = Dcl.getAs<Decl>(); |
| 5763 | if (D == 0) return; |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5764 | |
John McCall | 731ad84 | 2009-12-19 09:28:58 +0000 | [diff] [blame] | 5765 | assert(D->isOutOfLine()); |
John McCall | 7a1dc56 | 2009-12-19 10:49:29 +0000 | [diff] [blame] | 5766 | ExitDeclaratorContext(S); |
Argyrios Kyrtzidis | 0ffd9ff | 2009-06-17 22:50:06 +0000 | [diff] [blame] | 5767 | } |
Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 5768 | |
| 5769 | /// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a |
| 5770 | /// C++ if/switch/while/for statement. |
| 5771 | /// e.g: "if (int x = f()) {...}" |
| 5772 | Action::DeclResult |
| 5773 | Sema::ActOnCXXConditionDeclaration(Scope *S, Declarator &D) { |
| 5774 | // C++ 6.4p2: |
| 5775 | // The declarator shall not specify a function or an array. |
| 5776 | // The type-specifier-seq shall not contain typedef and shall not declare a |
| 5777 | // new class or enumeration. |
| 5778 | assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef && |
| 5779 | "Parser allowed 'typedef' as storage class of condition decl."); |
| 5780 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5781 | TypeSourceInfo *TInfo = 0; |
Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 5782 | TagDecl *OwnedTag = 0; |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 5783 | QualType Ty = GetTypeForDeclarator(D, S, &TInfo, &OwnedTag); |
Douglas Gregor | 99e9b4d | 2009-11-25 00:27:52 +0000 | [diff] [blame] | 5784 | |
| 5785 | if (Ty->isFunctionType()) { // The declarator shall not specify a function... |
| 5786 | // We exit without creating a CXXConditionDeclExpr because a FunctionDecl |
| 5787 | // would be created and CXXConditionDeclExpr wants a VarDecl. |
| 5788 | Diag(D.getIdentifierLoc(), diag::err_invalid_use_of_function_type) |
| 5789 | << D.getSourceRange(); |
| 5790 | return DeclResult(); |
| 5791 | } else if (OwnedTag && OwnedTag->isDefinition()) { |
| 5792 | // The type-specifier-seq shall not declare a new class or enumeration. |
| 5793 | Diag(OwnedTag->getLocation(), diag::err_type_defined_in_condition); |
| 5794 | } |
| 5795 | |
| 5796 | DeclPtrTy Dcl = ActOnDeclarator(S, D); |
| 5797 | if (!Dcl) |
| 5798 | return DeclResult(); |
| 5799 | |
| 5800 | VarDecl *VD = cast<VarDecl>(Dcl.getAs<Decl>()); |
| 5801 | VD->setDeclaredInCondition(true); |
| 5802 | return Dcl; |
| 5803 | } |
Anders Carlsson | 5ec02ae | 2009-12-02 17:15:43 +0000 | [diff] [blame] | 5804 | |
Anders Carlsson | d6a637f | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 5805 | void Sema::MaybeMarkVirtualMembersReferenced(SourceLocation Loc, |
| 5806 | CXXMethodDecl *MD) { |
Anders Carlsson | 5ec02ae | 2009-12-02 17:15:43 +0000 | [diff] [blame] | 5807 | // Ignore dependent types. |
| 5808 | if (MD->isDependentContext()) |
| 5809 | return; |
| 5810 | |
| 5811 | CXXRecordDecl *RD = MD->getParent(); |
Anders Carlsson | f53df23 | 2009-12-07 04:35:11 +0000 | [diff] [blame] | 5812 | |
| 5813 | // Ignore classes without a vtable. |
| 5814 | if (!RD->isDynamicClass()) |
| 5815 | return; |
| 5816 | |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 5817 | // Ignore declarations that are not definitions. |
| 5818 | if (!MD->isThisDeclarationADefinition()) |
Anders Carlsson | d6a637f | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 5819 | return; |
Douglas Gregor | 159ef1e | 2010-01-06 04:44:19 +0000 | [diff] [blame] | 5820 | |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 5821 | if (isa<CXXConstructorDecl>(MD)) { |
| 5822 | switch (MD->getParent()->getTemplateSpecializationKind()) { |
| 5823 | case TSK_Undeclared: |
| 5824 | case TSK_ExplicitSpecialization: |
| 5825 | // Classes that aren't instantiations of templates don't need their |
| 5826 | // virtual methods marked until we see the definition of the key |
| 5827 | // function. |
| 5828 | return; |
| 5829 | |
| 5830 | case TSK_ImplicitInstantiation: |
| 5831 | case TSK_ExplicitInstantiationDeclaration: |
| 5832 | case TSK_ExplicitInstantiationDefinition: |
| 5833 | // This is a constructor of a class template; mark all of the virtual |
| 5834 | // members as referenced to ensure that they get instantiatied. |
| 5835 | break; |
| 5836 | } |
| 5837 | } else if (!MD->isOutOfLine()) { |
| 5838 | // Consider only out-of-line definitions of member functions. When we see |
| 5839 | // an inline definition, it's too early to compute the key function. |
Douglas Gregor | 159ef1e | 2010-01-06 04:44:19 +0000 | [diff] [blame] | 5840 | return; |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 5841 | } else if (const CXXMethodDecl *KeyFunction = Context.getKeyFunction(RD)) { |
| 5842 | // If this is not the key function, we don't need to mark virtual members. |
| 5843 | if (KeyFunction->getCanonicalDecl() != MD->getCanonicalDecl()) |
| 5844 | return; |
| 5845 | } else { |
| 5846 | // The class has no key function, so we've already noted that we need to |
| 5847 | // mark the virtual members of this class. |
| 5848 | return; |
| 5849 | } |
| 5850 | |
Douglas Gregor | 159ef1e | 2010-01-06 04:44:19 +0000 | [diff] [blame] | 5851 | // We will need to mark all of the virtual members as referenced to build the |
| 5852 | // vtable. |
| 5853 | ClassesWithUnmarkedVirtualMembers.push_back(std::make_pair(RD, Loc)); |
Anders Carlsson | d6a637f | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 5854 | } |
| 5855 | |
| 5856 | bool Sema::ProcessPendingClassesWithUnmarkedVirtualMembers() { |
| 5857 | if (ClassesWithUnmarkedVirtualMembers.empty()) |
| 5858 | return false; |
| 5859 | |
Douglas Gregor | 159ef1e | 2010-01-06 04:44:19 +0000 | [diff] [blame] | 5860 | while (!ClassesWithUnmarkedVirtualMembers.empty()) { |
| 5861 | CXXRecordDecl *RD = ClassesWithUnmarkedVirtualMembers.back().first; |
| 5862 | SourceLocation Loc = ClassesWithUnmarkedVirtualMembers.back().second; |
| 5863 | ClassesWithUnmarkedVirtualMembers.pop_back(); |
Anders Carlsson | d6a637f | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 5864 | MarkVirtualMembersReferenced(Loc, RD); |
Anders Carlsson | 5ec02ae | 2009-12-02 17:15:43 +0000 | [diff] [blame] | 5865 | } |
| 5866 | |
Anders Carlsson | d6a637f | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 5867 | return true; |
Anders Carlsson | 5ec02ae | 2009-12-02 17:15:43 +0000 | [diff] [blame] | 5868 | } |
Anders Carlsson | d6a637f | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 5869 | |
| 5870 | void Sema::MarkVirtualMembersReferenced(SourceLocation Loc, CXXRecordDecl *RD) { |
| 5871 | for (CXXRecordDecl::method_iterator i = RD->method_begin(), |
| 5872 | e = RD->method_end(); i != e; ++i) { |
| 5873 | CXXMethodDecl *MD = *i; |
| 5874 | |
| 5875 | // C++ [basic.def.odr]p2: |
| 5876 | // [...] A virtual member function is used if it is not pure. [...] |
| 5877 | if (MD->isVirtual() && !MD->isPure()) |
| 5878 | MarkDeclarationReferenced(Loc, MD); |
| 5879 | } |
| 5880 | } |
| 5881 | |