Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for declarations. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
Anders Carlsson | c44eec6 | 2008-07-03 04:20:39 +0000 | [diff] [blame] | 15 | #include "clang/AST/APValue.h" |
Chris Lattner | e1e7985 | 2008-02-06 00:51:33 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTConsumer.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclTemplate.h" |
Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 20 | #include "clang/AST/ExprCXX.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 21 | #include "clang/Parse/DeclSpec.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | #include "clang/Basic/TargetInfo.h" |
Steve Naroff | 4c49a6c | 2008-01-30 23:46:05 +0000 | [diff] [blame] | 23 | #include "clang/Basic/SourceManager.h" |
| 24 | // FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's) |
Chris Lattner | e1e7985 | 2008-02-06 00:51:33 +0000 | [diff] [blame] | 25 | #include "clang/Lex/Preprocessor.h" |
Steve Naroff | 4c49a6c | 2008-01-30 23:46:05 +0000 | [diff] [blame] | 26 | #include "clang/Lex/HeaderSearch.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/SmallSet.h" |
Douglas Gregor | e267ff3 | 2008-12-11 20:41:00 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/STLExtras.h" |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 29 | #include <algorithm> |
| 30 | #include <functional> |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 31 | using namespace clang; |
| 32 | |
Douglas Gregor | d6efafa | 2009-02-04 19:16:12 +0000 | [diff] [blame] | 33 | /// \brief If the identifier refers to a type name within this scope, |
| 34 | /// return the declaration of that type. |
| 35 | /// |
| 36 | /// This routine performs ordinary name lookup of the identifier II |
| 37 | /// within the given scope, with optional C++ scope specifier SS, to |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 38 | /// determine whether the name refers to a type. If so, returns an |
| 39 | /// opaque pointer (actually a QualType) corresponding to that |
| 40 | /// type. Otherwise, returns NULL. |
Douglas Gregor | d6efafa | 2009-02-04 19:16:12 +0000 | [diff] [blame] | 41 | /// |
| 42 | /// If name lookup results in an ambiguity, this routine will complain |
| 43 | /// and then return NULL. |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 44 | Sema::TypeTy *Sema::getTypeName(IdentifierInfo &II, SourceLocation NameLoc, |
Douglas Gregor | b696ea3 | 2009-02-04 17:00:24 +0000 | [diff] [blame] | 45 | Scope *S, const CXXScopeSpec *SS) { |
Chris Lattner | 22bd905 | 2009-02-16 22:07:16 +0000 | [diff] [blame] | 46 | NamedDecl *IIDecl = 0; |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 47 | LookupResult Result = LookupParsedName(S, SS, &II, LookupOrdinaryName, |
| 48 | false, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 49 | switch (Result.getKind()) { |
Chris Lattner | 22bd905 | 2009-02-16 22:07:16 +0000 | [diff] [blame] | 50 | case LookupResult::NotFound: |
| 51 | case LookupResult::FoundOverloaded: |
| 52 | return 0; |
Douglas Gregor | b696ea3 | 2009-02-04 17:00:24 +0000 | [diff] [blame] | 53 | |
Chris Lattner | 22bd905 | 2009-02-16 22:07:16 +0000 | [diff] [blame] | 54 | case LookupResult::AmbiguousBaseSubobjectTypes: |
| 55 | case LookupResult::AmbiguousBaseSubobjects: |
| 56 | case LookupResult::AmbiguousReference: |
| 57 | DiagnoseAmbiguousLookup(Result, DeclarationName(&II), NameLoc); |
| 58 | return 0; |
Douglas Gregor | b696ea3 | 2009-02-04 17:00:24 +0000 | [diff] [blame] | 59 | |
Chris Lattner | 22bd905 | 2009-02-16 22:07:16 +0000 | [diff] [blame] | 60 | case LookupResult::Found: |
| 61 | IIDecl = Result.getAsDecl(); |
| 62 | break; |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 63 | } |
| 64 | |
Steve Naroff | a518903 | 2009-01-29 18:09:31 +0000 | [diff] [blame] | 65 | if (IIDecl) { |
Chris Lattner | 22bd905 | 2009-02-16 22:07:16 +0000 | [diff] [blame] | 66 | if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) { |
| 67 | // If this typename is deprecated, emit a warning. |
| 68 | DiagnoseUseOfDeprecatedDecl(IIDecl, NameLoc); |
| 69 | |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 70 | return Context.getTypeDeclType(TD).getAsOpaquePtr(); |
Chris Lattner | 22bd905 | 2009-02-16 22:07:16 +0000 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) { |
| 74 | // If this typename is deprecated, emit a warning. |
| 75 | DiagnoseUseOfDeprecatedDecl(IIDecl, NameLoc); |
| 76 | |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 77 | return Context.getObjCInterfaceType(IDecl).getAsOpaquePtr(); |
Chris Lattner | 22bd905 | 2009-02-16 22:07:16 +0000 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | // Otherwise, could be a variable, function etc. |
Steve Naroff | a518903 | 2009-01-29 18:09:31 +0000 | [diff] [blame] | 81 | } |
Steve Naroff | 3536b44 | 2007-09-06 21:24:23 +0000 | [diff] [blame] | 82 | return 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 83 | } |
| 84 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 85 | DeclContext *Sema::getContainingDC(DeclContext *DC) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 86 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) { |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 87 | // A C++ out-of-line method will return to the file declaration context. |
Argyrios Kyrtzidis | 5239304 | 2008-11-09 23:41:00 +0000 | [diff] [blame] | 88 | if (MD->isOutOfLineDefinition()) |
| 89 | return MD->getLexicalDeclContext(); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 90 | |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 91 | // A C++ inline method is parsed *after* the topmost class it was declared |
| 92 | // in is fully parsed (it's "complete"). |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 93 | // The parsing of a C++ inline method happens at the declaration context of |
Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 94 | // the topmost (non-nested) class it is lexically declared in. |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 95 | assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record."); |
| 96 | DC = MD->getParent(); |
Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 97 | while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent())) |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 98 | DC = RD; |
| 99 | |
| 100 | // Return the declaration context of the topmost class the inline method is |
| 101 | // declared in. |
| 102 | return DC; |
| 103 | } |
| 104 | |
Argyrios Kyrtzidis | 5239304 | 2008-11-09 23:41:00 +0000 | [diff] [blame] | 105 | if (isa<ObjCMethodDecl>(DC)) |
| 106 | return Context.getTranslationUnitDecl(); |
| 107 | |
Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 108 | return DC->getLexicalParent(); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 111 | void Sema::PushDeclContext(Scope *S, DeclContext *DC) { |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 112 | assert(getContainingDC(DC) == CurContext && |
Zhongxing Xu | e50897a | 2008-12-08 07:14:51 +0000 | [diff] [blame] | 113 | "The next DeclContext should be lexically contained in the current one."); |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 114 | CurContext = DC; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 115 | S->setEntity(DC); |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Chris Lattner | b048c98 | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 118 | void Sema::PopDeclContext() { |
| 119 | assert(CurContext && "DeclContext imbalance!"); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 120 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 121 | CurContext = getContainingDC(CurContext); |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 122 | } |
| 123 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 124 | /// \brief Determine whether we allow overloading of the function |
| 125 | /// PrevDecl with another declaration. |
| 126 | /// |
| 127 | /// This routine determines whether overloading is possible, not |
| 128 | /// whether some new function is actually an overload. It will return |
| 129 | /// true in C++ (where we can always provide overloads) or, as an |
| 130 | /// extension, in C when the previous function is already an |
| 131 | /// overloaded function declaration or has the "overloadable" |
| 132 | /// attribute. |
| 133 | static bool AllowOverloadingOfFunction(Decl *PrevDecl, ASTContext &Context) { |
| 134 | if (Context.getLangOptions().CPlusPlus) |
| 135 | return true; |
| 136 | |
| 137 | if (isa<OverloadedFunctionDecl>(PrevDecl)) |
| 138 | return true; |
| 139 | |
| 140 | return PrevDecl->getAttr<OverloadableAttr>() != 0; |
| 141 | } |
| 142 | |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 143 | /// Add this decl to the scope shadowed decl chains. |
| 144 | void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) { |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 145 | // Move up the scope chain until we find the nearest enclosing |
| 146 | // non-transparent context. The declaration will be introduced into this |
| 147 | // scope. |
| 148 | while (S->getEntity() && |
| 149 | ((DeclContext *)S->getEntity())->isTransparentContext()) |
| 150 | S = S->getParent(); |
| 151 | |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 152 | S->AddDecl(D); |
Argyrios Kyrtzidis | 00bc645 | 2008-05-09 23:39:43 +0000 | [diff] [blame] | 153 | |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 154 | // Add scoped declarations into their context, so that they can be |
| 155 | // found later. Declarations without a context won't be inserted |
| 156 | // into any context. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 157 | CurContext->addDecl(D); |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 158 | |
Argyrios Kyrtzidis | 00bc645 | 2008-05-09 23:39:43 +0000 | [diff] [blame] | 159 | // C++ [basic.scope]p4: |
| 160 | // -- exactly one declaration shall declare a class name or |
| 161 | // enumeration name that is not a typedef name and the other |
| 162 | // declarations shall all refer to the same object or |
| 163 | // enumerator, or all refer to functions and function templates; |
| 164 | // in this case the class name or enumeration name is hidden. |
| 165 | if (TagDecl *TD = dyn_cast<TagDecl>(D)) { |
| 166 | // We are pushing the name of a tag (enum or class). |
Douglas Gregor | e21b994 | 2009-01-07 16:34:42 +0000 | [diff] [blame] | 167 | if (CurContext->getLookupContext() |
| 168 | == TD->getDeclContext()->getLookupContext()) { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 169 | // We're pushing the tag into the current context, which might |
| 170 | // require some reshuffling in the identifier resolver. |
| 171 | IdentifierResolver::iterator |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 172 | I = IdResolver.begin(TD->getDeclName()), |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 173 | IEnd = IdResolver.end(); |
| 174 | if (I != IEnd && isDeclInScope(*I, CurContext, S)) { |
| 175 | NamedDecl *PrevDecl = *I; |
| 176 | for (; I != IEnd && isDeclInScope(*I, CurContext, S); |
| 177 | PrevDecl = *I, ++I) { |
| 178 | if (TD->declarationReplaces(*I)) { |
| 179 | // This is a redeclaration. Remove it from the chain and |
| 180 | // break out, so that we'll add in the shadowed |
| 181 | // declaration. |
| 182 | S->RemoveDecl(*I); |
| 183 | if (PrevDecl == *I) { |
| 184 | IdResolver.RemoveDecl(*I); |
| 185 | IdResolver.AddDecl(TD); |
| 186 | return; |
| 187 | } else { |
| 188 | IdResolver.RemoveDecl(*I); |
| 189 | break; |
| 190 | } |
| 191 | } |
| 192 | } |
Argyrios Kyrtzidis | 00bc645 | 2008-05-09 23:39:43 +0000 | [diff] [blame] | 193 | |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 194 | // There is already a declaration with the same name in the same |
| 195 | // scope, which is not a tag declaration. It must be found |
| 196 | // before we find the new declaration, so insert the new |
| 197 | // declaration at the end of the chain. |
| 198 | IdResolver.AddShadowedDecl(TD, PrevDecl); |
| 199 | |
| 200 | return; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 201 | } |
Argyrios Kyrtzidis | 00bc645 | 2008-05-09 23:39:43 +0000 | [diff] [blame] | 202 | } |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 203 | } else if (isa<FunctionDecl>(D) && |
| 204 | AllowOverloadingOfFunction(D, Context)) { |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 205 | // We are pushing the name of a function, which might be an |
| 206 | // overloaded name. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 207 | FunctionDecl *FD = cast<FunctionDecl>(D); |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 208 | IdentifierResolver::iterator Redecl |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 209 | = std::find_if(IdResolver.begin(FD->getDeclName()), |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 210 | IdResolver.end(), |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 211 | std::bind1st(std::mem_fun(&NamedDecl::declarationReplaces), |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 212 | FD)); |
| 213 | if (Redecl != IdResolver.end()) { |
| 214 | // There is already a declaration of a function on our |
| 215 | // IdResolver chain. Replace it with this declaration. |
| 216 | S->RemoveDecl(*Redecl); |
| 217 | IdResolver.RemoveDecl(*Redecl); |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 218 | } |
Argyrios Kyrtzidis | 00bc645 | 2008-05-09 23:39:43 +0000 | [diff] [blame] | 219 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 220 | |
Argyrios Kyrtzidis | 00bc645 | 2008-05-09 23:39:43 +0000 | [diff] [blame] | 221 | IdResolver.AddDecl(D); |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 224 | void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) { |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 225 | if (S->decl_empty()) return; |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 226 | assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) && |
| 227 | "Scope shouldn't contain decls!"); |
Argyrios Kyrtzidis | 00bc645 | 2008-05-09 23:39:43 +0000 | [diff] [blame] | 228 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 229 | for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end(); |
| 230 | I != E; ++I) { |
Steve Naroff | c752d04 | 2007-09-13 18:10:37 +0000 | [diff] [blame] | 231 | Decl *TmpD = static_cast<Decl*>(*I); |
| 232 | assert(TmpD && "This decl didn't get pushed??"); |
Argyrios Kyrtzidis | 7643536 | 2008-06-10 01:32:09 +0000 | [diff] [blame] | 233 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 234 | assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?"); |
| 235 | NamedDecl *D = cast<NamedDecl>(TmpD); |
Argyrios Kyrtzidis | 7643536 | 2008-06-10 01:32:09 +0000 | [diff] [blame] | 236 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 237 | if (!D->getDeclName()) continue; |
Chris Lattner | 7f925cc | 2008-04-11 07:00:53 +0000 | [diff] [blame] | 238 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 239 | // Remove this name from our lexical scope. |
| 240 | IdResolver.RemoveDecl(D); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 241 | } |
| 242 | } |
| 243 | |
Steve Naroff | e8043c3 | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 244 | /// getObjCInterfaceDecl - Look up a for a class declaration in the scope. |
| 245 | /// return 0 if one not found. |
Steve Naroff | e8043c3 | 2008-04-01 23:04:06 +0000 | [diff] [blame] | 246 | ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) { |
Steve Naroff | 3110251 | 2008-04-02 18:30:49 +0000 | [diff] [blame] | 247 | // The third "scope" argument is 0 since we aren't enabling lazy built-in |
| 248 | // creation from this context. |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 249 | NamedDecl *IDecl = LookupName(TUScope, Id, LookupOrdinaryName); |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 250 | |
Steve Naroff | b327ce0 | 2008-04-02 14:35:35 +0000 | [diff] [blame] | 251 | return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl); |
Fariborz Jahanian | 4cabdfc | 2007-10-12 19:38:20 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Douglas Gregor | 1a0d31a | 2009-01-12 18:45:55 +0000 | [diff] [blame] | 254 | /// getNonFieldDeclScope - Retrieves the innermost scope, starting |
| 255 | /// from S, where a non-field would be declared. This routine copes |
| 256 | /// with the difference between C and C++ scoping rules in structs and |
| 257 | /// unions. For example, the following code is well-formed in C but |
| 258 | /// ill-formed in C++: |
| 259 | /// @code |
| 260 | /// struct S6 { |
| 261 | /// enum { BAR } e; |
| 262 | /// }; |
| 263 | /// |
| 264 | /// void test_S6() { |
| 265 | /// struct S6 a; |
| 266 | /// a.e = BAR; |
| 267 | /// } |
| 268 | /// @endcode |
| 269 | /// For the declaration of BAR, this routine will return a different |
| 270 | /// scope. The scope S will be the scope of the unnamed enumeration |
| 271 | /// within S6. In C++, this routine will return the scope associated |
| 272 | /// with S6, because the enumeration's scope is a transparent |
| 273 | /// context but structures can contain non-field names. In C, this |
| 274 | /// routine will return the translation unit scope, since the |
| 275 | /// enumeration's scope is a transparent context and structures cannot |
| 276 | /// contain non-field names. |
| 277 | Scope *Sema::getNonFieldDeclScope(Scope *S) { |
| 278 | while (((S->getFlags() & Scope::DeclScope) == 0) || |
| 279 | (S->getEntity() && |
| 280 | ((DeclContext *)S->getEntity())->isTransparentContext()) || |
| 281 | (S->isClassScope() && !getLangOptions().CPlusPlus)) |
| 282 | S = S->getParent(); |
| 283 | return S; |
| 284 | } |
| 285 | |
Chris Lattner | 95e2c71 | 2008-05-05 22:18:14 +0000 | [diff] [blame] | 286 | void Sema::InitBuiltinVaListType() { |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 287 | if (!Context.getBuiltinVaListType().isNull()) |
| 288 | return; |
| 289 | |
| 290 | IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list"); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 291 | NamedDecl *VaDecl = LookupName(TUScope, VaIdent, LookupOrdinaryName); |
Steve Naroff | 733002f | 2007-10-18 22:17:45 +0000 | [diff] [blame] | 292 | TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 293 | Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef)); |
| 294 | } |
| 295 | |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 296 | /// LazilyCreateBuiltin - The specified Builtin-ID was first used at |
| 297 | /// file scope. lazily create a decl for it. ForRedeclaration is true |
| 298 | /// if we're creating this built-in in anticipation of redeclaring the |
| 299 | /// built-in. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 300 | NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid, |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 301 | Scope *S, bool ForRedeclaration, |
| 302 | SourceLocation Loc) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 303 | Builtin::ID BID = (Builtin::ID)bid; |
| 304 | |
Chris Lattner | bd7eb1c | 2008-09-28 05:54:29 +0000 | [diff] [blame] | 305 | if (Context.BuiltinInfo.hasVAListUse(BID)) |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 306 | InitBuiltinVaListType(); |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 307 | |
Douglas Gregor | 370ab3f | 2009-02-14 01:52:53 +0000 | [diff] [blame] | 308 | Builtin::Context::GetBuiltinTypeError Error; |
| 309 | QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context, Error); |
| 310 | switch (Error) { |
| 311 | case Builtin::Context::GE_None: |
| 312 | // Okay |
| 313 | break; |
| 314 | |
| 315 | case Builtin::Context::GE_Missing_FILE: |
| 316 | if (ForRedeclaration) |
| 317 | Diag(Loc, diag::err_implicit_decl_requires_stdio) |
| 318 | << Context.BuiltinInfo.GetName(BID); |
| 319 | return 0; |
| 320 | } |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 321 | |
| 322 | if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(BID)) { |
| 323 | Diag(Loc, diag::ext_implicit_lib_function_decl) |
| 324 | << Context.BuiltinInfo.GetName(BID) |
| 325 | << R; |
Douglas Gregor | b1152d8 | 2009-02-16 21:58:21 +0000 | [diff] [blame] | 326 | if (Context.BuiltinInfo.getHeaderName(BID) && |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 327 | Diags.getDiagnosticMapping(diag::ext_implicit_lib_function_decl) |
| 328 | != diag::MAP_IGNORE) |
| 329 | Diag(Loc, diag::note_please_include_header) |
| 330 | << Context.BuiltinInfo.getHeaderName(BID) |
| 331 | << Context.BuiltinInfo.GetName(BID); |
| 332 | } |
| 333 | |
Argyrios Kyrtzidis | ff898cd | 2008-04-17 14:47:13 +0000 | [diff] [blame] | 334 | FunctionDecl *New = FunctionDecl::Create(Context, |
| 335 | Context.getTranslationUnitDecl(), |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 336 | Loc, II, R, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 337 | FunctionDecl::Extern, false); |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 338 | New->setImplicit(); |
| 339 | |
Chris Lattner | 95e2c71 | 2008-05-05 22:18:14 +0000 | [diff] [blame] | 340 | // Create Decl objects for each parameter, adding them to the |
| 341 | // FunctionDecl. |
| 342 | if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) { |
| 343 | llvm::SmallVector<ParmVarDecl*, 16> Params; |
| 344 | for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i) |
| 345 | Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 346 | FT->getArgType(i), VarDecl::None, 0)); |
Ted Kremenek | fc76761 | 2009-01-14 00:42:25 +0000 | [diff] [blame] | 347 | New->setParams(Context, &Params[0], Params.size()); |
Chris Lattner | 95e2c71 | 2008-05-05 22:18:14 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 350 | AddKnownFunctionAttributes(New); |
Chris Lattner | 95e2c71 | 2008-05-05 22:18:14 +0000 | [diff] [blame] | 351 | |
Chris Lattner | 7f925cc | 2008-04-11 07:00:53 +0000 | [diff] [blame] | 352 | // TUScope is the translation-unit scope to insert this function into. |
Douglas Gregor | a8cc8ce | 2009-01-09 18:51:29 +0000 | [diff] [blame] | 353 | // FIXME: This is hideous. We need to teach PushOnScopeChains to |
| 354 | // relate Scopes to DeclContexts, and probably eliminate CurContext |
| 355 | // entirely, but we're not there yet. |
| 356 | DeclContext *SavedContext = CurContext; |
| 357 | CurContext = Context.getTranslationUnitDecl(); |
Argyrios Kyrtzidis | 00bc645 | 2008-05-09 23:39:43 +0000 | [diff] [blame] | 358 | PushOnScopeChains(New, TUScope); |
Douglas Gregor | a8cc8ce | 2009-01-09 18:51:29 +0000 | [diff] [blame] | 359 | CurContext = SavedContext; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 360 | return New; |
| 361 | } |
| 362 | |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 363 | /// GetStdNamespace - This method gets the C++ "std" namespace. This is where |
| 364 | /// everything from the standard library is defined. |
| 365 | NamespaceDecl *Sema::GetStdNamespace() { |
| 366 | if (!StdNamespace) { |
Chris Lattner | 8edea83 | 2008-11-20 05:45:14 +0000 | [diff] [blame] | 367 | IdentifierInfo *StdIdent = &PP.getIdentifierTable().get("std"); |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 368 | DeclContext *Global = Context.getTranslationUnitDecl(); |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 369 | Decl *Std = LookupQualifiedName(Global, StdIdent, LookupNamespaceName); |
Sebastian Redl | c42e118 | 2008-11-11 11:37:55 +0000 | [diff] [blame] | 370 | StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std); |
| 371 | } |
| 372 | return StdNamespace; |
| 373 | } |
| 374 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 375 | /// MergeTypeDefDecl - We just parsed a typedef 'New' which has the |
| 376 | /// same name and scope as a previous declaration 'Old'. Figure out |
| 377 | /// how to resolve this situation, merging decls or emitting |
| 378 | /// diagnostics as appropriate. Returns true if there was an error, |
| 379 | /// false otherwise. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 380 | /// |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 381 | bool Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) { |
Fariborz Jahanian | c55a240 | 2009-01-16 19:58:32 +0000 | [diff] [blame] | 382 | bool objc_types = false; |
Steve Naroff | 2b255c4 | 2008-09-09 14:32:20 +0000 | [diff] [blame] | 383 | // Allow multiple definitions for ObjC built-in typedefs. |
| 384 | // FIXME: Verify the underlying types are equivalent! |
| 385 | if (getLangOptions().ObjC1) { |
Chris Lattner | 2bac0f6 | 2008-11-20 05:41:43 +0000 | [diff] [blame] | 386 | const IdentifierInfo *TypeID = New->getIdentifier(); |
| 387 | switch (TypeID->getLength()) { |
| 388 | default: break; |
| 389 | case 2: |
| 390 | if (!TypeID->isStr("id")) |
| 391 | break; |
Steve Naroff | 2b255c4 | 2008-09-09 14:32:20 +0000 | [diff] [blame] | 392 | Context.setObjCIdType(New); |
Fariborz Jahanian | c55a240 | 2009-01-16 19:58:32 +0000 | [diff] [blame] | 393 | objc_types = true; |
| 394 | break; |
Chris Lattner | 2bac0f6 | 2008-11-20 05:41:43 +0000 | [diff] [blame] | 395 | case 5: |
| 396 | if (!TypeID->isStr("Class")) |
| 397 | break; |
Steve Naroff | 2b255c4 | 2008-09-09 14:32:20 +0000 | [diff] [blame] | 398 | Context.setObjCClassType(New); |
Fariborz Jahanian | c55a240 | 2009-01-16 19:58:32 +0000 | [diff] [blame] | 399 | objc_types = true; |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 400 | return false; |
Chris Lattner | 2bac0f6 | 2008-11-20 05:41:43 +0000 | [diff] [blame] | 401 | case 3: |
| 402 | if (!TypeID->isStr("SEL")) |
| 403 | break; |
Steve Naroff | 2b255c4 | 2008-09-09 14:32:20 +0000 | [diff] [blame] | 404 | Context.setObjCSelType(New); |
Fariborz Jahanian | c55a240 | 2009-01-16 19:58:32 +0000 | [diff] [blame] | 405 | objc_types = true; |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 406 | return false; |
Chris Lattner | 2bac0f6 | 2008-11-20 05:41:43 +0000 | [diff] [blame] | 407 | case 8: |
| 408 | if (!TypeID->isStr("Protocol")) |
| 409 | break; |
Steve Naroff | 2b255c4 | 2008-09-09 14:32:20 +0000 | [diff] [blame] | 410 | Context.setObjCProtoType(New->getUnderlyingType()); |
Fariborz Jahanian | c55a240 | 2009-01-16 19:58:32 +0000 | [diff] [blame] | 411 | objc_types = true; |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 412 | return false; |
Steve Naroff | 2b255c4 | 2008-09-09 14:32:20 +0000 | [diff] [blame] | 413 | } |
| 414 | // Fall through - the typedef name was not a builtin type. |
| 415 | } |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 416 | // Verify the old decl was also a type. |
| 417 | TypeDecl *Old = dyn_cast<TypeDecl>(OldD); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 418 | if (!Old) { |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 419 | Diag(New->getLocation(), diag::err_redefinition_different_kind) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 420 | << New->getDeclName(); |
Fariborz Jahanian | c55a240 | 2009-01-16 19:58:32 +0000 | [diff] [blame] | 421 | if (!objc_types) |
| 422 | Diag(OldD->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 423 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 424 | } |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 425 | |
| 426 | // Determine the "old" type we'll use for checking and diagnostics. |
| 427 | QualType OldType; |
| 428 | if (TypedefDecl *OldTypedef = dyn_cast<TypedefDecl>(Old)) |
| 429 | OldType = OldTypedef->getUnderlyingType(); |
| 430 | else |
| 431 | OldType = Context.getTypeDeclType(Old); |
| 432 | |
Chris Lattner | 99cb997 | 2008-07-25 18:44:27 +0000 | [diff] [blame] | 433 | // If the typedef types are not identical, reject them in all languages and |
| 434 | // with any extensions enabled. |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 435 | |
| 436 | if (OldType != New->getUnderlyingType() && |
| 437 | Context.getCanonicalType(OldType) != |
Chris Lattner | 99cb997 | 2008-07-25 18:44:27 +0000 | [diff] [blame] | 438 | Context.getCanonicalType(New->getUnderlyingType())) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 439 | Diag(New->getLocation(), diag::err_redefinition_different_typedef) |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 440 | << New->getUnderlyingType() << OldType; |
Fariborz Jahanian | c55a240 | 2009-01-16 19:58:32 +0000 | [diff] [blame] | 441 | if (!objc_types) |
| 442 | Diag(Old->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 443 | return true; |
Chris Lattner | 99cb997 | 2008-07-25 18:44:27 +0000 | [diff] [blame] | 444 | } |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 445 | if (objc_types) return false; |
| 446 | if (getLangOptions().Microsoft) return false; |
Eli Friedman | 54ecfce | 2008-06-11 06:20:39 +0000 | [diff] [blame] | 447 | |
Douglas Gregor | bbe2743 | 2008-11-21 16:29:06 +0000 | [diff] [blame] | 448 | // C++ [dcl.typedef]p2: |
| 449 | // In a given non-class scope, a typedef specifier can be used to |
| 450 | // redefine the name of any type declared in that scope to refer |
| 451 | // to the type to which it already refers. |
| 452 | if (getLangOptions().CPlusPlus && !isa<CXXRecordDecl>(CurContext)) |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 453 | return false; |
Douglas Gregor | bbe2743 | 2008-11-21 16:29:06 +0000 | [diff] [blame] | 454 | |
| 455 | // In C, redeclaration of a type is a constraint violation (6.7.2.3p1). |
Steve Naroff | 4c49a6c | 2008-01-30 23:46:05 +0000 | [diff] [blame] | 456 | // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if |
| 457 | // *either* declaration is in a system header. The code below implements |
| 458 | // this adhoc compatibility rule. FIXME: The following code will not |
| 459 | // work properly when compiling ".i" files (containing preprocessed output). |
Daniel Dunbar | 2fe0997 | 2008-09-12 18:10:20 +0000 | [diff] [blame] | 460 | if (PP.getDiagnostics().getSuppressSystemWarnings()) { |
| 461 | SourceManager &SrcMgr = Context.getSourceManager(); |
| 462 | if (SrcMgr.isInSystemHeader(Old->getLocation())) |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 463 | return false; |
Daniel Dunbar | 2fe0997 | 2008-09-12 18:10:20 +0000 | [diff] [blame] | 464 | if (SrcMgr.isInSystemHeader(New->getLocation())) |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 465 | return false; |
Daniel Dunbar | 2fe0997 | 2008-09-12 18:10:20 +0000 | [diff] [blame] | 466 | } |
Eli Friedman | 54ecfce | 2008-06-11 06:20:39 +0000 | [diff] [blame] | 467 | |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 468 | Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 469 | Diag(Old->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 470 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 471 | } |
| 472 | |
Chris Lattner | 6b6b537 | 2008-06-26 18:38:35 +0000 | [diff] [blame] | 473 | /// DeclhasAttr - returns true if decl Declaration already has the target |
| 474 | /// attribute. |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 475 | static bool DeclHasAttr(const Decl *decl, const Attr *target) { |
| 476 | for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext()) |
| 477 | if (attr->getKind() == target->getKind()) |
| 478 | return true; |
| 479 | |
| 480 | return false; |
| 481 | } |
| 482 | |
| 483 | /// MergeAttributes - append attributes from the Old decl to the New one. |
| 484 | static void MergeAttributes(Decl *New, Decl *Old) { |
| 485 | Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp; |
| 486 | |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 487 | while (attr) { |
Douglas Gregor | ae17094 | 2009-02-13 00:26:38 +0000 | [diff] [blame] | 488 | tmp = attr; |
| 489 | attr = attr->getNext(); |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 490 | |
Douglas Gregor | ae17094 | 2009-02-13 00:26:38 +0000 | [diff] [blame] | 491 | if (!DeclHasAttr(New, tmp) && tmp->isMerged()) { |
| 492 | tmp->setInherited(true); |
| 493 | New->addAttr(tmp); |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 494 | } else { |
Douglas Gregor | ae17094 | 2009-02-13 00:26:38 +0000 | [diff] [blame] | 495 | tmp->setNext(0); |
| 496 | delete(tmp); |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 497 | } |
| 498 | } |
Nuno Lopes | 9141bee | 2008-06-01 22:53:53 +0000 | [diff] [blame] | 499 | |
| 500 | Old->invalidateAttrs(); |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 501 | } |
| 502 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 503 | /// MergeFunctionDecl - We just parsed a function 'New' from |
| 504 | /// declarator D which has the same name and scope as a previous |
| 505 | /// declaration 'Old'. Figure out how to resolve this situation, |
| 506 | /// merging decls or emitting diagnostics as appropriate. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 507 | /// |
| 508 | /// In C++, New and Old must be declarations that are not |
| 509 | /// overloaded. Use IsOverload to determine whether New and Old are |
| 510 | /// overloaded, and to select the Old declaration that New should be |
| 511 | /// merged with. |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 512 | /// |
| 513 | /// Returns true if there was an error, false otherwise. |
| 514 | bool Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD) { |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 515 | assert(!isa<OverloadedFunctionDecl>(OldD) && |
| 516 | "Cannot merge with an overloaded function declaration"); |
| 517 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 518 | // Verify the old decl was also a function. |
| 519 | FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD); |
| 520 | if (!Old) { |
Chris Lattner | 5dc266a | 2008-11-20 06:13:02 +0000 | [diff] [blame] | 521 | Diag(New->getLocation(), diag::err_redefinition_different_kind) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 522 | << New->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 523 | Diag(OldD->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 524 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 525 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 526 | |
| 527 | // Determine whether the previous declaration was a definition, |
| 528 | // implicit declaration, or a declaration. |
| 529 | diag::kind PrevDiag; |
| 530 | if (Old->isThisDeclarationADefinition()) |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 531 | PrevDiag = diag::note_previous_definition; |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 532 | else if (Old->isImplicit()) |
| 533 | PrevDiag = diag::note_previous_implicit_declaration; |
| 534 | else |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 535 | PrevDiag = diag::note_previous_declaration; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 536 | |
Chris Lattner | 8bcfc5b | 2008-04-06 23:10:54 +0000 | [diff] [blame] | 537 | QualType OldQType = Context.getCanonicalType(Old->getType()); |
| 538 | QualType NewQType = Context.getCanonicalType(New->getType()); |
Chris Lattner | 5519644 | 2007-11-20 19:04:50 +0000 | [diff] [blame] | 539 | |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 540 | if (getLangOptions().CPlusPlus) { |
| 541 | // (C++98 13.1p2): |
| 542 | // Certain function declarations cannot be overloaded: |
| 543 | // -- Function declarations that differ only in the return type |
| 544 | // cannot be overloaded. |
| 545 | QualType OldReturnType |
| 546 | = cast<FunctionType>(OldQType.getTypePtr())->getResultType(); |
| 547 | QualType NewReturnType |
| 548 | = cast<FunctionType>(NewQType.getTypePtr())->getResultType(); |
| 549 | if (OldReturnType != NewReturnType) { |
| 550 | Diag(New->getLocation(), diag::err_ovl_diff_return_type); |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 551 | Diag(Old->getLocation(), PrevDiag) << Old << Old->getType(); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 552 | return true; |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 553 | } |
| 554 | |
| 555 | const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old); |
| 556 | const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New); |
| 557 | if (OldMethod && NewMethod) { |
| 558 | // -- Member function declarations with the same name and the |
| 559 | // same parameter types cannot be overloaded if any of them |
| 560 | // is a static member function declaration. |
| 561 | if (OldMethod->isStatic() || NewMethod->isStatic()) { |
| 562 | Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member); |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 563 | Diag(Old->getLocation(), PrevDiag) << Old << Old->getType(); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 564 | return true; |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 565 | } |
Douglas Gregor | 9e7d9de | 2008-12-15 21:24:18 +0000 | [diff] [blame] | 566 | |
| 567 | // C++ [class.mem]p1: |
| 568 | // [...] A member shall not be declared twice in the |
| 569 | // member-specification, except that a nested class or member |
| 570 | // class template can be declared and then later defined. |
| 571 | if (OldMethod->getLexicalDeclContext() == |
| 572 | NewMethod->getLexicalDeclContext()) { |
| 573 | unsigned NewDiag; |
| 574 | if (isa<CXXConstructorDecl>(OldMethod)) |
| 575 | NewDiag = diag::err_constructor_redeclared; |
| 576 | else if (isa<CXXDestructorDecl>(NewMethod)) |
| 577 | NewDiag = diag::err_destructor_redeclared; |
| 578 | else if (isa<CXXConversionDecl>(NewMethod)) |
| 579 | NewDiag = diag::err_conv_function_redeclared; |
| 580 | else |
| 581 | NewDiag = diag::err_member_redeclared; |
| 582 | |
| 583 | Diag(New->getLocation(), NewDiag); |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 584 | Diag(Old->getLocation(), PrevDiag) << Old << Old->getType(); |
Douglas Gregor | 9e7d9de | 2008-12-15 21:24:18 +0000 | [diff] [blame] | 585 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | // (C++98 8.3.5p3): |
| 589 | // All declarations for a function shall agree exactly in both the |
| 590 | // return type and the parameter-type-list. |
| 591 | if (OldQType == NewQType) { |
| 592 | // We have a redeclaration. |
| 593 | MergeAttributes(New, Old); |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 594 | return MergeCXXFunctionDecl(New, Old); |
| 595 | } |
| 596 | |
| 597 | // Fall through for conflicting redeclarations and redefinitions. |
Douglas Gregor | f009795 | 2008-04-21 02:02:58 +0000 | [diff] [blame] | 598 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 599 | |
| 600 | // C: Function types need to be compatible, not identical. This handles |
Steve Naroff | adbbd0c | 2008-01-14 20:51:29 +0000 | [diff] [blame] | 601 | // duplicate function decls like "void f(int); void f(enum X);" properly. |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 602 | if (!getLangOptions().CPlusPlus && |
Eli Friedman | 3d815e7 | 2008-08-22 00:56:42 +0000 | [diff] [blame] | 603 | Context.typesAreCompatible(OldQType, NewQType)) { |
Douglas Gregor | 6871981 | 2009-02-16 18:20:44 +0000 | [diff] [blame] | 604 | const FunctionType *NewFuncType = NewQType->getAsFunctionType(); |
| 605 | const FunctionTypeProto *OldProto = 0; |
| 606 | if (isa<FunctionTypeNoProto>(NewFuncType) && |
| 607 | (OldProto = OldQType->getAsFunctionTypeProto())) { |
| 608 | // The old declaration provided a function prototype, but the |
| 609 | // new declaration does not. Merge in the prototype. |
| 610 | llvm::SmallVector<QualType, 16> ParamTypes(OldProto->arg_type_begin(), |
| 611 | OldProto->arg_type_end()); |
| 612 | NewQType = Context.getFunctionType(NewFuncType->getResultType(), |
| 613 | &ParamTypes[0], ParamTypes.size(), |
| 614 | OldProto->isVariadic(), |
| 615 | OldProto->getTypeQuals()); |
| 616 | New->setType(NewQType); |
| 617 | New->setInheritedPrototype(); |
Douglas Gregor | 450da98 | 2009-02-16 20:58:07 +0000 | [diff] [blame] | 618 | |
| 619 | // Synthesize a parameter for each argument type. |
| 620 | llvm::SmallVector<ParmVarDecl*, 16> Params; |
| 621 | for (FunctionTypeProto::arg_type_iterator |
| 622 | ParamType = OldProto->arg_type_begin(), |
| 623 | ParamEnd = OldProto->arg_type_end(); |
| 624 | ParamType != ParamEnd; ++ParamType) { |
| 625 | ParmVarDecl *Param = ParmVarDecl::Create(Context, New, |
| 626 | SourceLocation(), 0, |
| 627 | *ParamType, VarDecl::None, |
| 628 | 0); |
| 629 | Param->setImplicit(); |
| 630 | Params.push_back(Param); |
| 631 | } |
| 632 | |
| 633 | New->setParams(Context, &Params[0], Params.size()); |
| 634 | |
Douglas Gregor | 6871981 | 2009-02-16 18:20:44 +0000 | [diff] [blame] | 635 | } |
| 636 | |
Douglas Gregor | f009795 | 2008-04-21 02:02:58 +0000 | [diff] [blame] | 637 | MergeAttributes(New, Old); |
Douglas Gregor | 6871981 | 2009-02-16 18:20:44 +0000 | [diff] [blame] | 638 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 639 | return false; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 640 | } |
Chris Lattner | e3995fe | 2007-11-06 06:07:26 +0000 | [diff] [blame] | 641 | |
Steve Naroff | 837618c | 2008-01-16 15:01:34 +0000 | [diff] [blame] | 642 | // A function that has already been declared has been redeclared or defined |
| 643 | // with a different type- show appropriate diagnostic |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 644 | if (unsigned BuiltinID = Old->getBuiltinID(Context)) { |
| 645 | // The user has declared a builtin function with an incompatible |
| 646 | // signature. |
| 647 | if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) { |
| 648 | // The function the user is redeclaring is a library-defined |
| 649 | // function like 'malloc' or 'printf'. Warn about the |
| 650 | // redeclaration, then ignore it. |
| 651 | Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New; |
| 652 | Diag(Old->getLocation(), diag::note_previous_builtin_declaration) |
| 653 | << Old << Old->getType(); |
| 654 | return false; |
| 655 | } |
Steve Naroff | 837618c | 2008-01-16 15:01:34 +0000 | [diff] [blame] | 656 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 657 | PrevDiag = diag::note_previous_builtin_declaration; |
| 658 | } |
| 659 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 660 | Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName(); |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 661 | Diag(Old->getLocation(), PrevDiag) << Old << Old->getType(); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 662 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 663 | } |
| 664 | |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 665 | /// Predicate for C "tentative" external object definitions (C99 6.9.2). |
Steve Naroff | d4d46cd | 2008-08-10 15:28:06 +0000 | [diff] [blame] | 666 | static bool isTentativeDefinition(VarDecl *VD) { |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 667 | if (VD->isFileVarDecl()) |
| 668 | return (!VD->getInit() && |
| 669 | (VD->getStorageClass() == VarDecl::None || |
| 670 | VD->getStorageClass() == VarDecl::Static)); |
| 671 | return false; |
| 672 | } |
| 673 | |
| 674 | /// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors |
| 675 | /// when dealing with C "tentative" external object definitions (C99 6.9.2). |
| 676 | void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) { |
| 677 | bool VDIsTentative = isTentativeDefinition(VD); |
Steve Naroff | f855e6f | 2008-08-10 15:20:13 +0000 | [diff] [blame] | 678 | bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType(); |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 679 | |
Douglas Gregor | e21b994 | 2009-01-07 16:34:42 +0000 | [diff] [blame] | 680 | // FIXME: I don't think this will actually see all of the |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 681 | // redefinitions. Can't we check this property on-the-fly? |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 682 | for (IdentifierResolver::iterator I = IdResolver.begin(VD->getIdentifier()), |
| 683 | E = IdResolver.end(); |
| 684 | I != E; ++I) { |
Argyrios Kyrtzidis | 15a12d0 | 2008-09-09 21:18:04 +0000 | [diff] [blame] | 685 | if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) { |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 686 | VarDecl *OldDecl = dyn_cast<VarDecl>(*I); |
| 687 | |
Steve Naroff | f855e6f | 2008-08-10 15:20:13 +0000 | [diff] [blame] | 688 | // Handle the following case: |
| 689 | // int a[10]; |
| 690 | // int a[]; - the code below makes sure we set the correct type. |
| 691 | // int a[11]; - this is an error, size isn't 10. |
| 692 | if (OldDecl && VDIsTentative && VDIsIncompleteArray && |
| 693 | OldDecl->getType()->isConstantArrayType()) |
| 694 | VD->setType(OldDecl->getType()); |
| 695 | |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 696 | // Check for "tentative" definitions. We can't accomplish this in |
| 697 | // MergeVarDecl since the initializer hasn't been attached. |
| 698 | if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative) |
| 699 | continue; |
| 700 | |
| 701 | // Handle __private_extern__ just like extern. |
| 702 | if (OldDecl->getStorageClass() != VarDecl::Extern && |
| 703 | OldDecl->getStorageClass() != VarDecl::PrivateExtern && |
| 704 | VD->getStorageClass() != VarDecl::Extern && |
| 705 | VD->getStorageClass() != VarDecl::PrivateExtern) { |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 706 | Diag(VD->getLocation(), diag::err_redefinition) << VD->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 707 | Diag(OldDecl->getLocation(), diag::note_previous_definition); |
Sebastian Redl | 89ef6e0 | 2009-02-08 10:49:44 +0000 | [diff] [blame] | 708 | // One redefinition error is enough. |
| 709 | break; |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 710 | } |
| 711 | } |
| 712 | } |
| 713 | } |
| 714 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 715 | /// MergeVarDecl - We just parsed a variable 'New' which has the same name |
| 716 | /// and scope as a previous declaration 'Old'. Figure out how to resolve this |
| 717 | /// situation, merging decls or emitting diagnostics as appropriate. |
| 718 | /// |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 719 | /// Tentative definition rules (C99 6.9.2p2) are checked by |
| 720 | /// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative |
| 721 | /// definitions here, since the initializer hasn't been attached. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 722 | /// |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 723 | bool Sema::MergeVarDecl(VarDecl *New, Decl *OldD) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 724 | // Verify the old decl was also a variable. |
| 725 | VarDecl *Old = dyn_cast<VarDecl>(OldD); |
| 726 | if (!Old) { |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 727 | Diag(New->getLocation(), diag::err_redefinition_different_kind) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 728 | << New->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 729 | Diag(OldD->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 730 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 731 | } |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 732 | |
| 733 | MergeAttributes(New, Old); |
| 734 | |
Eli Friedman | 13ca96a | 2009-01-24 23:49:55 +0000 | [diff] [blame] | 735 | // Merge the types |
| 736 | QualType MergedT = Context.mergeTypes(New->getType(), Old->getType()); |
| 737 | if (MergedT.isNull()) { |
Douglas Gregor | 6037fcb | 2009-01-09 19:42:16 +0000 | [diff] [blame] | 738 | Diag(New->getLocation(), diag::err_redefinition_different_type) |
| 739 | << New->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 740 | Diag(Old->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 741 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 742 | } |
Eli Friedman | 13ca96a | 2009-01-24 23:49:55 +0000 | [diff] [blame] | 743 | New->setType(MergedT); |
Steve Naroff | b7b032e | 2008-01-30 00:44:01 +0000 | [diff] [blame] | 744 | // C99 6.2.2p4: Check if we have a static decl followed by a non-static. |
| 745 | if (New->getStorageClass() == VarDecl::Static && |
| 746 | (Old->getStorageClass() == VarDecl::None || |
| 747 | Old->getStorageClass() == VarDecl::Extern)) { |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 748 | Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 749 | Diag(Old->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 750 | return true; |
Steve Naroff | b7b032e | 2008-01-30 00:44:01 +0000 | [diff] [blame] | 751 | } |
| 752 | // C99 6.2.2p4: Check if we have a non-static decl followed by a static. |
| 753 | if (New->getStorageClass() != VarDecl::Static && |
| 754 | Old->getStorageClass() == VarDecl::Static) { |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 755 | Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 756 | Diag(Old->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 757 | return true; |
Steve Naroff | b7b032e | 2008-01-30 00:44:01 +0000 | [diff] [blame] | 758 | } |
Steve Naroff | 094cefb | 2008-09-17 14:05:40 +0000 | [diff] [blame] | 759 | // Variables with external linkage are analyzed in FinalizeDeclaratorGroup. |
| 760 | if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) { |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 761 | Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 762 | Diag(Old->getLocation(), diag::note_previous_definition); |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 763 | return true; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 764 | } |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 765 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 766 | } |
| 767 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 768 | /// CheckParmsForFunctionDef - Check that the parameters of the given |
| 769 | /// function are appropriate for the definition of a function. This |
| 770 | /// takes care of any checks that cannot be performed on the |
| 771 | /// declaration itself, e.g., that the types of each of the function |
| 772 | /// parameters are complete. |
| 773 | bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) { |
| 774 | bool HasInvalidParm = false; |
| 775 | for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) { |
| 776 | ParmVarDecl *Param = FD->getParamDecl(p); |
| 777 | |
| 778 | // C99 6.7.5.3p4: the parameters in a parameter type list in a |
| 779 | // function declarator that is part of a function definition of |
| 780 | // that function shall not have incomplete type. |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 781 | if (!Param->isInvalidDecl() && |
| 782 | DiagnoseIncompleteType(Param->getLocation(), Param->getType(), |
| 783 | diag::err_typecheck_decl_incomplete_type)) { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 784 | Param->setInvalidDecl(); |
| 785 | HasInvalidParm = true; |
| 786 | } |
Chris Lattner | 777f07b | 2008-12-17 07:32:46 +0000 | [diff] [blame] | 787 | |
| 788 | // C99 6.9.1p5: If the declarator includes a parameter type list, the |
| 789 | // declaration of each parameter shall include an identifier. |
Douglas Gregor | 450da98 | 2009-02-16 20:58:07 +0000 | [diff] [blame] | 790 | if (Param->getIdentifier() == 0 && |
| 791 | !Param->isImplicit() && |
| 792 | !getLangOptions().CPlusPlus) |
Chris Lattner | 777f07b | 2008-12-17 07:32:46 +0000 | [diff] [blame] | 793 | Diag(Param->getLocation(), diag::err_parameter_name_omitted); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 794 | } |
| 795 | |
| 796 | return HasInvalidParm; |
| 797 | } |
| 798 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 799 | /// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with |
| 800 | /// no declarator (e.g. "struct foo;") is parsed. |
| 801 | Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) { |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 802 | TagDecl *Tag = 0; |
| 803 | if (DS.getTypeSpecType() == DeclSpec::TST_class || |
| 804 | DS.getTypeSpecType() == DeclSpec::TST_struct || |
| 805 | DS.getTypeSpecType() == DeclSpec::TST_union || |
| 806 | DS.getTypeSpecType() == DeclSpec::TST_enum) |
| 807 | Tag = dyn_cast<TagDecl>(static_cast<Decl *>(DS.getTypeRep())); |
| 808 | |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 809 | if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) { |
| 810 | if (!Record->getDeclName() && Record->isDefinition() && |
| 811 | DS.getStorageClassSpec() != DeclSpec::SCS_typedef) |
| 812 | return BuildAnonymousStructOrUnion(S, DS, Record); |
| 813 | |
| 814 | // Microsoft allows unnamed struct/union fields. Don't complain |
| 815 | // about them. |
| 816 | // FIXME: Should we support Microsoft's extensions in this area? |
| 817 | if (Record->getDeclName() && getLangOptions().Microsoft) |
| 818 | return Tag; |
| 819 | } |
| 820 | |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 821 | if (!DS.isMissingDeclaratorOk() && |
| 822 | DS.getTypeSpecType() != DeclSpec::TST_error) { |
Douglas Gregor | 21282df | 2009-01-22 16:23:54 +0000 | [diff] [blame] | 823 | // Warn about typedefs of enums without names, since this is an |
| 824 | // extension in both Microsoft an GNU. |
Douglas Gregor | 8158f69 | 2009-01-17 02:55:50 +0000 | [diff] [blame] | 825 | if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef && |
| 826 | Tag && isa<EnumDecl>(Tag)) { |
Douglas Gregor | 21282df | 2009-01-22 16:23:54 +0000 | [diff] [blame] | 827 | Diag(DS.getSourceRange().getBegin(), diag::ext_typedef_without_a_name) |
Douglas Gregor | ee159c1 | 2009-01-13 23:10:51 +0000 | [diff] [blame] | 828 | << DS.getSourceRange(); |
| 829 | return Tag; |
| 830 | } |
| 831 | |
Sebastian Redl | a4ed0d8 | 2008-12-28 15:28:59 +0000 | [diff] [blame] | 832 | Diag(DS.getSourceRange().getBegin(), diag::err_no_declarators) |
| 833 | << DS.getSourceRange(); |
| 834 | return 0; |
| 835 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 836 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 837 | return Tag; |
| 838 | } |
| 839 | |
| 840 | /// InjectAnonymousStructOrUnionMembers - Inject the members of the |
| 841 | /// anonymous struct or union AnonRecord into the owning context Owner |
| 842 | /// and scope S. This routine will be invoked just after we realize |
| 843 | /// that an unnamed union or struct is actually an anonymous union or |
| 844 | /// struct, e.g., |
| 845 | /// |
| 846 | /// @code |
| 847 | /// union { |
| 848 | /// int i; |
| 849 | /// float f; |
| 850 | /// }; // InjectAnonymousStructOrUnionMembers called here to inject i and |
| 851 | /// // f into the surrounding scope.x |
| 852 | /// @endcode |
| 853 | /// |
| 854 | /// This routine is recursive, injecting the names of nested anonymous |
| 855 | /// structs/unions into the owning context and scope as well. |
| 856 | bool Sema::InjectAnonymousStructOrUnionMembers(Scope *S, DeclContext *Owner, |
| 857 | RecordDecl *AnonRecord) { |
| 858 | bool Invalid = false; |
| 859 | for (RecordDecl::field_iterator F = AnonRecord->field_begin(), |
| 860 | FEnd = AnonRecord->field_end(); |
| 861 | F != FEnd; ++F) { |
| 862 | if ((*F)->getDeclName()) { |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 863 | NamedDecl *PrevDecl = LookupQualifiedName(Owner, (*F)->getDeclName(), |
| 864 | LookupOrdinaryName, true); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 865 | if (PrevDecl && !isa<TagDecl>(PrevDecl)) { |
| 866 | // C++ [class.union]p2: |
| 867 | // The names of the members of an anonymous union shall be |
| 868 | // distinct from the names of any other entity in the |
| 869 | // scope in which the anonymous union is declared. |
| 870 | unsigned diagKind |
| 871 | = AnonRecord->isUnion()? diag::err_anonymous_union_member_redecl |
| 872 | : diag::err_anonymous_struct_member_redecl; |
| 873 | Diag((*F)->getLocation(), diagKind) |
| 874 | << (*F)->getDeclName(); |
| 875 | Diag(PrevDecl->getLocation(), diag::note_previous_declaration); |
| 876 | Invalid = true; |
| 877 | } else { |
| 878 | // C++ [class.union]p2: |
| 879 | // For the purpose of name lookup, after the anonymous union |
| 880 | // definition, the members of the anonymous union are |
| 881 | // considered to have been defined in the scope in which the |
| 882 | // anonymous union is declared. |
Douglas Gregor | 40f4e69 | 2009-01-20 16:54:50 +0000 | [diff] [blame] | 883 | Owner->makeDeclVisibleInContext(*F); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 884 | S->AddDecl(*F); |
| 885 | IdResolver.AddDecl(*F); |
| 886 | } |
| 887 | } else if (const RecordType *InnerRecordType |
| 888 | = (*F)->getType()->getAsRecordType()) { |
| 889 | RecordDecl *InnerRecord = InnerRecordType->getDecl(); |
| 890 | if (InnerRecord->isAnonymousStructOrUnion()) |
| 891 | Invalid = Invalid || |
| 892 | InjectAnonymousStructOrUnionMembers(S, Owner, InnerRecord); |
| 893 | } |
| 894 | } |
| 895 | |
| 896 | return Invalid; |
| 897 | } |
| 898 | |
| 899 | /// ActOnAnonymousStructOrUnion - Handle the declaration of an |
| 900 | /// anonymous structure or union. Anonymous unions are a C++ feature |
| 901 | /// (C++ [class.union]) and a GNU C extension; anonymous structures |
| 902 | /// are a GNU C and GNU C++ extension. |
| 903 | Sema::DeclTy *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS, |
| 904 | RecordDecl *Record) { |
| 905 | DeclContext *Owner = Record->getDeclContext(); |
| 906 | |
| 907 | // Diagnose whether this anonymous struct/union is an extension. |
| 908 | if (Record->isUnion() && !getLangOptions().CPlusPlus) |
| 909 | Diag(Record->getLocation(), diag::ext_anonymous_union); |
| 910 | else if (!Record->isUnion()) |
| 911 | Diag(Record->getLocation(), diag::ext_anonymous_struct); |
| 912 | |
| 913 | // C and C++ require different kinds of checks for anonymous |
| 914 | // structs/unions. |
| 915 | bool Invalid = false; |
| 916 | if (getLangOptions().CPlusPlus) { |
| 917 | const char* PrevSpec = 0; |
| 918 | // C++ [class.union]p3: |
| 919 | // Anonymous unions declared in a named namespace or in the |
| 920 | // global namespace shall be declared static. |
| 921 | if (DS.getStorageClassSpec() != DeclSpec::SCS_static && |
| 922 | (isa<TranslationUnitDecl>(Owner) || |
| 923 | (isa<NamespaceDecl>(Owner) && |
| 924 | cast<NamespaceDecl>(Owner)->getDeclName()))) { |
| 925 | Diag(Record->getLocation(), diag::err_anonymous_union_not_static); |
| 926 | Invalid = true; |
| 927 | |
| 928 | // Recover by adding 'static'. |
| 929 | DS.SetStorageClassSpec(DeclSpec::SCS_static, SourceLocation(), PrevSpec); |
| 930 | } |
| 931 | // C++ [class.union]p3: |
| 932 | // A storage class is not allowed in a declaration of an |
| 933 | // anonymous union in a class scope. |
| 934 | else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified && |
| 935 | isa<RecordDecl>(Owner)) { |
| 936 | Diag(DS.getStorageClassSpecLoc(), |
| 937 | diag::err_anonymous_union_with_storage_spec); |
| 938 | Invalid = true; |
| 939 | |
| 940 | // Recover by removing the storage specifier. |
| 941 | DS.SetStorageClassSpec(DeclSpec::SCS_unspecified, SourceLocation(), |
| 942 | PrevSpec); |
| 943 | } |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 944 | |
| 945 | // C++ [class.union]p2: |
| 946 | // The member-specification of an anonymous union shall only |
| 947 | // define non-static data members. [Note: nested types and |
| 948 | // functions cannot be declared within an anonymous union. ] |
| 949 | for (DeclContext::decl_iterator Mem = Record->decls_begin(), |
| 950 | MemEnd = Record->decls_end(); |
| 951 | Mem != MemEnd; ++Mem) { |
| 952 | if (FieldDecl *FD = dyn_cast<FieldDecl>(*Mem)) { |
| 953 | // C++ [class.union]p3: |
| 954 | // An anonymous union shall not have private or protected |
| 955 | // members (clause 11). |
| 956 | if (FD->getAccess() == AS_protected || FD->getAccess() == AS_private) { |
| 957 | Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member) |
| 958 | << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected); |
| 959 | Invalid = true; |
| 960 | } |
| 961 | } else if ((*Mem)->isImplicit()) { |
| 962 | // Any implicit members are fine. |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 963 | } else if (isa<TagDecl>(*Mem) && (*Mem)->getDeclContext() != Record) { |
| 964 | // This is a type that showed up in an |
| 965 | // elaborated-type-specifier inside the anonymous struct or |
| 966 | // union, but which actually declares a type outside of the |
| 967 | // anonymous struct or union. It's okay. |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 968 | } else if (RecordDecl *MemRecord = dyn_cast<RecordDecl>(*Mem)) { |
| 969 | if (!MemRecord->isAnonymousStructOrUnion() && |
| 970 | MemRecord->getDeclName()) { |
| 971 | // This is a nested type declaration. |
| 972 | Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type) |
| 973 | << (int)Record->isUnion(); |
| 974 | Invalid = true; |
| 975 | } |
| 976 | } else { |
| 977 | // We have something that isn't a non-static data |
| 978 | // member. Complain about it. |
| 979 | unsigned DK = diag::err_anonymous_record_bad_member; |
| 980 | if (isa<TypeDecl>(*Mem)) |
| 981 | DK = diag::err_anonymous_record_with_type; |
| 982 | else if (isa<FunctionDecl>(*Mem)) |
| 983 | DK = diag::err_anonymous_record_with_function; |
| 984 | else if (isa<VarDecl>(*Mem)) |
| 985 | DK = diag::err_anonymous_record_with_static; |
| 986 | Diag((*Mem)->getLocation(), DK) |
| 987 | << (int)Record->isUnion(); |
| 988 | Invalid = true; |
| 989 | } |
| 990 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 991 | } else { |
| 992 | // FIXME: Check GNU C semantics |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 993 | if (Record->isUnion() && !Owner->isRecord()) { |
| 994 | Diag(Record->getLocation(), diag::err_anonymous_union_not_member) |
| 995 | << (int)getLangOptions().CPlusPlus; |
| 996 | Invalid = true; |
| 997 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 998 | } |
| 999 | |
| 1000 | if (!Record->isUnion() && !Owner->isRecord()) { |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 1001 | Diag(Record->getLocation(), diag::err_anonymous_struct_not_member) |
| 1002 | << (int)getLangOptions().CPlusPlus; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1003 | Invalid = true; |
| 1004 | } |
| 1005 | |
| 1006 | // Create a declaration for this anonymous struct/union. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1007 | NamedDecl *Anon = 0; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1008 | if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) { |
| 1009 | Anon = FieldDecl::Create(Context, OwningClass, Record->getLocation(), |
| 1010 | /*IdentifierInfo=*/0, |
| 1011 | Context.getTypeDeclType(Record), |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1012 | /*BitWidth=*/0, /*Mutable=*/false); |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 1013 | Anon->setAccess(AS_public); |
| 1014 | if (getLangOptions().CPlusPlus) |
| 1015 | FieldCollector->Add(cast<FieldDecl>(Anon)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1016 | } else { |
| 1017 | VarDecl::StorageClass SC; |
| 1018 | switch (DS.getStorageClassSpec()) { |
| 1019 | default: assert(0 && "Unknown storage class!"); |
| 1020 | case DeclSpec::SCS_unspecified: SC = VarDecl::None; break; |
| 1021 | case DeclSpec::SCS_extern: SC = VarDecl::Extern; break; |
| 1022 | case DeclSpec::SCS_static: SC = VarDecl::Static; break; |
| 1023 | case DeclSpec::SCS_auto: SC = VarDecl::Auto; break; |
| 1024 | case DeclSpec::SCS_register: SC = VarDecl::Register; break; |
| 1025 | case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break; |
| 1026 | case DeclSpec::SCS_mutable: |
| 1027 | // mutable can only appear on non-static class members, so it's always |
| 1028 | // an error here |
| 1029 | Diag(Record->getLocation(), diag::err_mutable_nonmember); |
| 1030 | Invalid = true; |
| 1031 | SC = VarDecl::None; |
| 1032 | break; |
| 1033 | } |
| 1034 | |
| 1035 | Anon = VarDecl::Create(Context, Owner, Record->getLocation(), |
| 1036 | /*IdentifierInfo=*/0, |
| 1037 | Context.getTypeDeclType(Record), |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1038 | SC, DS.getSourceRange().getBegin()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1039 | } |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 1040 | Anon->setImplicit(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1041 | |
| 1042 | // Add the anonymous struct/union object to the current |
| 1043 | // context. We'll be referencing this object when we refer to one of |
| 1044 | // its members. |
Douglas Gregor | 482b77d | 2009-01-12 23:27:07 +0000 | [diff] [blame] | 1045 | Owner->addDecl(Anon); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1046 | |
| 1047 | // Inject the members of the anonymous struct/union into the owning |
| 1048 | // context and into the identifier resolver chain for name lookup |
| 1049 | // purposes. |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 1050 | if (InjectAnonymousStructOrUnionMembers(S, Owner, Record)) |
| 1051 | Invalid = true; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1052 | |
| 1053 | // Mark this as an anonymous struct/union type. Note that we do not |
| 1054 | // do this until after we have already checked and injected the |
| 1055 | // members of this anonymous struct/union type, because otherwise |
| 1056 | // the members could be injected twice: once by DeclContext when it |
| 1057 | // builds its lookup table, and once by |
| 1058 | // InjectAnonymousStructOrUnionMembers. |
| 1059 | Record->setAnonymousStructOrUnion(true); |
| 1060 | |
| 1061 | if (Invalid) |
| 1062 | Anon->setInvalidDecl(); |
| 1063 | |
| 1064 | return Anon; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1065 | } |
| 1066 | |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 1067 | bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType, |
| 1068 | bool DirectInit) { |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 1069 | // Get the type before calling CheckSingleAssignmentConstraints(), since |
| 1070 | // it can promote the expression. |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 1071 | QualType InitType = Init->getType(); |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 1072 | |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 1073 | if (getLangOptions().CPlusPlus) { |
| 1074 | // FIXME: I dislike this error message. A lot. |
| 1075 | if (PerformImplicitConversion(Init, DeclType, "initializing", DirectInit)) |
| 1076 | return Diag(Init->getSourceRange().getBegin(), |
| 1077 | diag::err_typecheck_convert_incompatible) |
| 1078 | << DeclType << Init->getType() << "initializing" |
| 1079 | << Init->getSourceRange(); |
| 1080 | |
| 1081 | return false; |
| 1082 | } |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 1083 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 1084 | AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init); |
| 1085 | return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType, |
| 1086 | InitType, Init, "initializing"); |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 1087 | } |
| 1088 | |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 1089 | bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 1090 | const ArrayType *AT = Context.getAsArrayType(DeclT); |
| 1091 | |
| 1092 | if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) { |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 1093 | // C99 6.7.8p14. We have an array of character type with unknown size |
| 1094 | // being initialized to a string literal. |
| 1095 | llvm::APSInt ConstVal(32); |
| 1096 | ConstVal = strLiteral->getByteLength() + 1; |
| 1097 | // Return a new array type (C99 6.7.8p22). |
Eli Friedman | c5773c4 | 2008-02-15 18:16:39 +0000 | [diff] [blame] | 1098 | DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal, |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 1099 | ArrayType::Normal, 0); |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 1100 | } else { |
| 1101 | const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 1102 | // C99 6.7.8p14. We have an array of character type with known size. |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 1103 | // FIXME: Avoid truncation for 64-bit length strings. |
| 1104 | if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue()) |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 1105 | Diag(strLiteral->getSourceRange().getBegin(), |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1106 | diag::warn_initializer_string_for_char_array_too_long) |
| 1107 | << strLiteral->getSourceRange(); |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 1108 | } |
| 1109 | // Set type from "char *" to "constant array of char". |
| 1110 | strLiteral->setType(DeclT); |
| 1111 | // For now, we always return false (meaning success). |
| 1112 | return false; |
| 1113 | } |
| 1114 | |
| 1115 | StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 1116 | const ArrayType *AT = Context.getAsArrayType(DeclType); |
Steve Naroff | a996033 | 2008-01-25 00:51:06 +0000 | [diff] [blame] | 1117 | if (AT && AT->getElementType()->isCharType()) { |
Anders Carlsson | 91b9f20 | 2009-01-24 17:47:50 +0000 | [diff] [blame] | 1118 | return dyn_cast<StringLiteral>(Init->IgnoreParens()); |
Steve Naroff | a996033 | 2008-01-25 00:51:06 +0000 | [diff] [blame] | 1119 | } |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 1120 | return 0; |
| 1121 | } |
| 1122 | |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 1123 | bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType, |
| 1124 | SourceLocation InitLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 1125 | DeclarationName InitEntity, |
| 1126 | bool DirectInit) { |
Douglas Gregor | 264c8ed | 2008-12-18 21:49:58 +0000 | [diff] [blame] | 1127 | if (DeclType->isDependentType() || Init->isTypeDependent()) |
| 1128 | return false; |
| 1129 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 1130 | // C++ [dcl.init.ref]p1: |
Sebastian Redl | d14094d | 2008-11-24 20:06:50 +0000 | [diff] [blame] | 1131 | // A variable declared to be a T&, that is "reference to type T" |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 1132 | // (8.3.2), shall be initialized by an object, or function, of |
| 1133 | // type T or by an object that can be converted into a T. |
| 1134 | if (DeclType->isReferenceType()) |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 1135 | return CheckReferenceInit(Init, DeclType, 0, false, DirectInit); |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 1136 | |
Steve Naroff | ca10730 | 2008-01-21 23:53:58 +0000 | [diff] [blame] | 1137 | // C99 6.7.8p3: The type of the entity to be initialized shall be an array |
| 1138 | // of unknown size ("[]") or an object type that is not a variable array type. |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 1139 | if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType)) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1140 | return Diag(InitLoc, diag::err_variable_object_no_init) |
| 1141 | << VAT->getSizeExpr()->getSourceRange(); |
Steve Naroff | ca10730 | 2008-01-21 23:53:58 +0000 | [diff] [blame] | 1142 | |
Steve Naroff | 2fdc374 | 2007-12-10 22:44:33 +0000 | [diff] [blame] | 1143 | InitListExpr *InitList = dyn_cast<InitListExpr>(Init); |
| 1144 | if (!InitList) { |
Steve Naroff | a49e1fa | 2008-01-22 00:55:40 +0000 | [diff] [blame] | 1145 | // FIXME: Handle wide strings |
| 1146 | if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType)) |
| 1147 | return CheckStringLiteralInit(strLiteral, DeclType); |
Eli Friedman | a312ce2 | 2008-02-08 00:48:24 +0000 | [diff] [blame] | 1148 | |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 1149 | // C++ [dcl.init]p14: |
| 1150 | // -- If the destination type is a (possibly cv-qualified) class |
| 1151 | // type: |
| 1152 | if (getLangOptions().CPlusPlus && DeclType->isRecordType()) { |
| 1153 | QualType DeclTypeC = Context.getCanonicalType(DeclType); |
| 1154 | QualType InitTypeC = Context.getCanonicalType(Init->getType()); |
| 1155 | |
| 1156 | // -- If the initialization is direct-initialization, or if it is |
| 1157 | // copy-initialization where the cv-unqualified version of the |
| 1158 | // source type is the same class as, or a derived class of, the |
| 1159 | // class of the destination, constructors are considered. |
| 1160 | if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) || |
| 1161 | IsDerivedFrom(InitTypeC, DeclTypeC)) { |
| 1162 | CXXConstructorDecl *Constructor |
| 1163 | = PerformInitializationByConstructor(DeclType, &Init, 1, |
| 1164 | InitLoc, Init->getSourceRange(), |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 1165 | InitEntity, |
| 1166 | DirectInit? IK_Direct : IK_Copy); |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 1167 | return Constructor == 0; |
| 1168 | } |
| 1169 | |
| 1170 | // -- Otherwise (i.e., for the remaining copy-initialization |
| 1171 | // cases), user-defined conversion sequences that can |
| 1172 | // convert from the source type to the destination type or |
| 1173 | // (when a conversion function is used) to a derived class |
| 1174 | // thereof are enumerated as described in 13.3.1.4, and the |
| 1175 | // best one is chosen through overload resolution |
| 1176 | // (13.3). If the conversion cannot be done or is |
| 1177 | // ambiguous, the initialization is ill-formed. The |
| 1178 | // function selected is called with the initializer |
| 1179 | // expression as its argument; if the function is a |
| 1180 | // constructor, the call initializes a temporary of the |
| 1181 | // destination type. |
| 1182 | // FIXME: We're pretending to do copy elision here; return to |
| 1183 | // this when we have ASTs for such things. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 1184 | if (!PerformImplicitConversion(Init, DeclType, "initializing")) |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 1185 | return false; |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 1186 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 1187 | if (InitEntity) |
| 1188 | return Diag(InitLoc, diag::err_cannot_initialize_decl) |
| 1189 | << InitEntity << (int)(Init->isLvalue(Context) == Expr::LV_Valid) |
| 1190 | << Init->getType() << Init->getSourceRange(); |
| 1191 | else |
| 1192 | return Diag(InitLoc, diag::err_cannot_initialize_decl_noname) |
| 1193 | << DeclType << (int)(Init->isLvalue(Context) == Expr::LV_Valid) |
| 1194 | << Init->getType() << Init->getSourceRange(); |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 1195 | } |
| 1196 | |
Steve Naroff | 1ac6fdd | 2008-09-29 20:07:05 +0000 | [diff] [blame] | 1197 | // C99 6.7.8p16. |
Eli Friedman | a312ce2 | 2008-02-08 00:48:24 +0000 | [diff] [blame] | 1198 | if (DeclType->isArrayType()) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1199 | return Diag(Init->getLocStart(), diag::err_array_init_list_required) |
| 1200 | << Init->getSourceRange(); |
Eli Friedman | a312ce2 | 2008-02-08 00:48:24 +0000 | [diff] [blame] | 1201 | |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 1202 | return CheckSingleInitializer(Init, DeclType, DirectInit); |
Douglas Gregor | 930d8b5 | 2009-01-30 22:09:00 +0000 | [diff] [blame] | 1203 | } |
Eli Friedman | e6f058f | 2008-06-06 19:40:52 +0000 | [diff] [blame] | 1204 | |
Douglas Gregor | c34ee5e | 2009-01-29 00:45:39 +0000 | [diff] [blame] | 1205 | bool hadError = CheckInitList(InitList, DeclType); |
| 1206 | Init = InitList; |
| 1207 | return hadError; |
Steve Naroff | f009063 | 2007-09-02 02:04:30 +0000 | [diff] [blame] | 1208 | } |
| 1209 | |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 1210 | /// GetNameForDeclarator - Determine the full declaration name for the |
| 1211 | /// given Declarator. |
| 1212 | DeclarationName Sema::GetNameForDeclarator(Declarator &D) { |
| 1213 | switch (D.getKind()) { |
| 1214 | case Declarator::DK_Abstract: |
| 1215 | assert(D.getIdentifier() == 0 && "abstract declarators have no name"); |
| 1216 | return DeclarationName(); |
| 1217 | |
| 1218 | case Declarator::DK_Normal: |
| 1219 | assert (D.getIdentifier() != 0 && "normal declarators have an identifier"); |
| 1220 | return DeclarationName(D.getIdentifier()); |
| 1221 | |
| 1222 | case Declarator::DK_Constructor: { |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 1223 | QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType()); |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 1224 | Ty = Context.getCanonicalType(Ty); |
| 1225 | return Context.DeclarationNames.getCXXConstructorName(Ty); |
| 1226 | } |
| 1227 | |
| 1228 | case Declarator::DK_Destructor: { |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 1229 | QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType()); |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 1230 | Ty = Context.getCanonicalType(Ty); |
| 1231 | return Context.DeclarationNames.getCXXDestructorName(Ty); |
| 1232 | } |
| 1233 | |
| 1234 | case Declarator::DK_Conversion: { |
Douglas Gregor | 1a51b4a | 2009-02-09 15:09:02 +0000 | [diff] [blame] | 1235 | // FIXME: We'd like to keep the non-canonical type for diagnostics! |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 1236 | QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType()); |
| 1237 | Ty = Context.getCanonicalType(Ty); |
| 1238 | return Context.DeclarationNames.getCXXConversionFunctionName(Ty); |
| 1239 | } |
Douglas Gregor | e94ca9e4 | 2008-11-18 14:39:36 +0000 | [diff] [blame] | 1240 | |
| 1241 | case Declarator::DK_Operator: |
| 1242 | assert(D.getIdentifier() == 0 && "operator names have no identifier"); |
| 1243 | return Context.DeclarationNames.getCXXOperatorName( |
| 1244 | D.getOverloadedOperator()); |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 1245 | } |
| 1246 | |
| 1247 | assert(false && "Unknown name kind"); |
| 1248 | return DeclarationName(); |
| 1249 | } |
| 1250 | |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1251 | /// isNearlyMatchingFunction - Determine whether the C++ functions |
| 1252 | /// Declaration and Definition are "nearly" matching. This heuristic |
| 1253 | /// is used to improve diagnostics in the case where an out-of-line |
| 1254 | /// function definition doesn't match any declaration within |
| 1255 | /// the class or namespace. |
| 1256 | static bool isNearlyMatchingFunction(ASTContext &Context, |
| 1257 | FunctionDecl *Declaration, |
| 1258 | FunctionDecl *Definition) { |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 1259 | if (Declaration->param_size() != Definition->param_size()) |
| 1260 | return false; |
| 1261 | for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) { |
| 1262 | QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType(); |
| 1263 | QualType DefParamTy = Definition->getParamDecl(Idx)->getType(); |
| 1264 | |
| 1265 | DeclParamTy = Context.getCanonicalType(DeclParamTy.getNonReferenceType()); |
| 1266 | DefParamTy = Context.getCanonicalType(DefParamTy.getNonReferenceType()); |
| 1267 | if (DeclParamTy.getUnqualifiedType() != DefParamTy.getUnqualifiedType()) |
| 1268 | return false; |
| 1269 | } |
| 1270 | |
| 1271 | return true; |
| 1272 | } |
| 1273 | |
Fariborz Jahanian | 306d68f | 2007-11-08 23:49:49 +0000 | [diff] [blame] | 1274 | Sema::DeclTy * |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 1275 | Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl, |
| 1276 | bool IsFunctionDefinition) { |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1277 | NamedDecl *LastDeclarator = dyn_cast_or_null<NamedDecl>((Decl *)lastDecl); |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 1278 | DeclarationName Name = GetNameForDeclarator(D); |
| 1279 | |
Chris Lattner | e80a59c | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1280 | // All of these full declarators require an identifier. If it doesn't have |
| 1281 | // one, the ParsedFreeStandingDeclSpec action should be used. |
Douglas Gregor | 10bd368 | 2008-11-17 22:58:34 +0000 | [diff] [blame] | 1282 | if (!Name) { |
Chris Lattner | 1f6f54b | 2008-11-11 06:13:16 +0000 | [diff] [blame] | 1283 | if (!D.getInvalidType()) // Reject this if we think it is valid. |
| 1284 | Diag(D.getDeclSpec().getSourceRange().getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1285 | diag::err_declarator_need_ident) |
| 1286 | << D.getDeclSpec().getSourceRange() << D.getSourceRange(); |
Chris Lattner | e80a59c | 2007-07-25 00:24:17 +0000 | [diff] [blame] | 1287 | return 0; |
| 1288 | } |
| 1289 | |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 1290 | // The scope passed in may not be a decl scope. Zip up the scope tree until |
| 1291 | // we find one that is. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1292 | while ((S->getFlags() & Scope::DeclScope) == 0 || |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1293 | (S->getFlags() & Scope::TemplateParamScope) != 0) |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 1294 | S = S->getParent(); |
| 1295 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 1296 | DeclContext *DC; |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1297 | NamedDecl *PrevDecl; |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1298 | NamedDecl *New; |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 1299 | bool InvalidDecl = false; |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1300 | |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 1301 | // See if this is a redefinition of a variable in the same scope. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1302 | if (!D.getCXXScopeSpec().isSet() && !D.getCXXScopeSpec().isInvalid()) { |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 1303 | DC = CurContext; |
Douglas Gregor | 9add317 | 2009-02-17 03:23:10 +0000 | [diff] [blame] | 1304 | PrevDecl = LookupName(S, Name, LookupOrdinaryName, true, |
| 1305 | D.getDeclSpec().getStorageClassSpec() != |
| 1306 | DeclSpec::SCS_static, |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 1307 | D.getIdentifierLoc()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 1308 | } else { // Something like "int foo::x;" |
| 1309 | DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep()); |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 1310 | PrevDecl = LookupQualifiedName(DC, Name, LookupOrdinaryName, true); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 1311 | |
| 1312 | // C++ 7.3.1.2p2: |
| 1313 | // Members (including explicit specializations of templates) of a named |
| 1314 | // namespace can also be defined outside that namespace by explicit |
| 1315 | // qualification of the name being defined, provided that the entity being |
| 1316 | // defined was already declared in the namespace and the definition appears |
| 1317 | // after the point of declaration in a namespace that encloses the |
| 1318 | // declarations namespace. |
| 1319 | // |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 1320 | // Note that we only check the context at this point. We don't yet |
| 1321 | // have enough information to make sure that PrevDecl is actually |
| 1322 | // the declaration we want to match. For example, given: |
| 1323 | // |
Douglas Gregor | 9d35097 | 2008-12-12 08:25:50 +0000 | [diff] [blame] | 1324 | // class X { |
| 1325 | // void f(); |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 1326 | // void f(float); |
Douglas Gregor | 9d35097 | 2008-12-12 08:25:50 +0000 | [diff] [blame] | 1327 | // }; |
| 1328 | // |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 1329 | // void X::f(int) { } // ill-formed |
| 1330 | // |
| 1331 | // In this case, PrevDecl will point to the overload set |
| 1332 | // containing the two f's declared in X, but neither of them |
| 1333 | // matches. |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1334 | |
| 1335 | // First check whether we named the global scope. |
| 1336 | if (isa<TranslationUnitDecl>(DC)) { |
| 1337 | Diag(D.getIdentifierLoc(), diag::err_invalid_declarator_global_scope) |
| 1338 | << Name << D.getCXXScopeSpec().getRange(); |
| 1339 | } else if (!CurContext->Encloses(DC)) { |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 1340 | // The qualifying scope doesn't enclose the original declaration. |
| 1341 | // Emit diagnostic based on current scope. |
| 1342 | SourceLocation L = D.getIdentifierLoc(); |
| 1343 | SourceRange R = D.getCXXScopeSpec().getRange(); |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1344 | if (isa<FunctionDecl>(CurContext)) |
Chris Lattner | 011bb4e | 2008-11-23 20:28:15 +0000 | [diff] [blame] | 1345 | Diag(L, diag::err_invalid_declarator_in_function) << Name << R; |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1346 | else |
Chris Lattner | 011bb4e | 2008-11-23 20:28:15 +0000 | [diff] [blame] | 1347 | Diag(L, diag::err_invalid_declarator_scope) |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1348 | << Name << cast<NamedDecl>(DC) << R; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1349 | InvalidDecl = true; |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 1350 | } |
| 1351 | } |
| 1352 | |
Douglas Gregor | f57172b | 2008-12-08 18:40:42 +0000 | [diff] [blame] | 1353 | if (PrevDecl && PrevDecl->isTemplateParameter()) { |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1354 | // Maybe we will complain about the shadowed template parameter. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1355 | InvalidDecl = InvalidDecl |
| 1356 | || DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 1357 | // Just pretend that we didn't see the previous declaration. |
| 1358 | PrevDecl = 0; |
| 1359 | } |
| 1360 | |
Douglas Gregor | 2ce52f3 | 2008-04-13 21:07:44 +0000 | [diff] [blame] | 1361 | // In C++, the previous declaration we find might be a tag type |
| 1362 | // (class or enum). In this case, the new declaration will hide the |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 1363 | // tag type. Note that this does does not apply if we're declaring a |
| 1364 | // typedef (C++ [dcl.typedef]p4). |
| 1365 | if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag && |
| 1366 | D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef) |
Douglas Gregor | 2ce52f3 | 2008-04-13 21:07:44 +0000 | [diff] [blame] | 1367 | PrevDecl = 0; |
| 1368 | |
Chris Lattner | 41af093 | 2007-11-14 06:34:38 +0000 | [diff] [blame] | 1369 | QualType R = GetTypeForDeclarator(D, S); |
| 1370 | assert(!R.isNull() && "GetTypeForDeclarator() returned null type"); |
| 1371 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1372 | bool Redeclaration = false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1373 | if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) { |
Zhongxing Xu | d5ed8c3 | 2009-01-16 03:34:13 +0000 | [diff] [blame] | 1374 | New = ActOnTypedefDeclarator(S, D, DC, R, LastDeclarator, PrevDecl, |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1375 | InvalidDecl, Redeclaration); |
Chris Lattner | 41af093 | 2007-11-14 06:34:38 +0000 | [diff] [blame] | 1376 | } else if (R.getTypePtr()->isFunctionType()) { |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1377 | New = ActOnFunctionDeclarator(S, D, DC, R, LastDeclarator, PrevDecl, |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1378 | IsFunctionDefinition, InvalidDecl, |
| 1379 | Redeclaration); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1380 | } else { |
Zhongxing Xu | cb8f4f1 | 2009-01-16 02:36:34 +0000 | [diff] [blame] | 1381 | New = ActOnVariableDeclarator(S, D, DC, R, LastDeclarator, PrevDecl, |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1382 | InvalidDecl, Redeclaration); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1383 | } |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1384 | |
| 1385 | if (New == 0) |
| 1386 | return 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1387 | |
Argyrios Kyrtzidis | 5239304 | 2008-11-09 23:41:00 +0000 | [diff] [blame] | 1388 | // Set the lexical context. If the declarator has a C++ scope specifier, the |
| 1389 | // lexical context will be different from the semantic context. |
| 1390 | New->setLexicalDeclContext(CurContext); |
| 1391 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1392 | // If this has an identifier and is not an invalid redeclaration, |
| 1393 | // add it to the scope stack. |
| 1394 | if (Name && !(Redeclaration && InvalidDecl)) |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 1395 | PushOnScopeChains(New, S); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 1396 | // If any semantic error occurred, mark the decl as invalid. |
| 1397 | if (D.getInvalidType() || InvalidDecl) |
| 1398 | New->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1399 | |
| 1400 | return New; |
| 1401 | } |
| 1402 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1403 | NamedDecl* |
Zhongxing Xu | d5ed8c3 | 2009-01-16 03:34:13 +0000 | [diff] [blame] | 1404 | Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1405 | QualType R, Decl* LastDeclarator, |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1406 | Decl* PrevDecl, bool& InvalidDecl, |
| 1407 | bool &Redeclaration) { |
Zhongxing Xu | d5ed8c3 | 2009-01-16 03:34:13 +0000 | [diff] [blame] | 1408 | // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1). |
| 1409 | if (D.getCXXScopeSpec().isSet()) { |
| 1410 | Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator) |
| 1411 | << D.getCXXScopeSpec().getRange(); |
| 1412 | InvalidDecl = true; |
| 1413 | // Pretend we didn't see the scope specifier. |
| 1414 | DC = 0; |
| 1415 | } |
| 1416 | |
| 1417 | // Check that there are no default arguments (C++ only). |
| 1418 | if (getLangOptions().CPlusPlus) |
| 1419 | CheckExtraCXXDefaultArguments(D); |
| 1420 | |
| 1421 | TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator); |
| 1422 | if (!NewTD) return 0; |
| 1423 | |
| 1424 | // Handle attributes prior to checking for duplicates in MergeVarDecl |
| 1425 | ProcessDeclAttributes(NewTD, D); |
| 1426 | // Merge the decl with the existing one if appropriate. If the decl is |
| 1427 | // in an outer scope, it isn't the same thing. |
| 1428 | if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) { |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1429 | Redeclaration = true; |
| 1430 | if (MergeTypeDefDecl(NewTD, PrevDecl)) |
| 1431 | InvalidDecl = true; |
Zhongxing Xu | d5ed8c3 | 2009-01-16 03:34:13 +0000 | [diff] [blame] | 1432 | } |
| 1433 | |
| 1434 | if (S->getFnParent() == 0) { |
| 1435 | // C99 6.7.7p2: If a typedef name specifies a variably modified type |
| 1436 | // then it shall have block scope. |
| 1437 | if (NewTD->getUnderlyingType()->isVariablyModifiedType()) { |
| 1438 | if (NewTD->getUnderlyingType()->isVariableArrayType()) |
| 1439 | Diag(D.getIdentifierLoc(), diag::err_vla_decl_in_file_scope); |
| 1440 | else |
| 1441 | Diag(D.getIdentifierLoc(), diag::err_vm_decl_in_file_scope); |
| 1442 | |
| 1443 | InvalidDecl = true; |
| 1444 | } |
| 1445 | } |
| 1446 | return NewTD; |
| 1447 | } |
| 1448 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1449 | NamedDecl* |
Zhongxing Xu | cb8f4f1 | 2009-01-16 02:36:34 +0000 | [diff] [blame] | 1450 | Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1451 | QualType R, Decl* LastDeclarator, |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1452 | Decl* PrevDecl, bool& InvalidDecl, |
| 1453 | bool &Redeclaration) { |
Zhongxing Xu | cb8f4f1 | 2009-01-16 02:36:34 +0000 | [diff] [blame] | 1454 | DeclarationName Name = GetNameForDeclarator(D); |
| 1455 | |
| 1456 | // Check that there are no default arguments (C++ only). |
| 1457 | if (getLangOptions().CPlusPlus) |
| 1458 | CheckExtraCXXDefaultArguments(D); |
| 1459 | |
| 1460 | if (R.getTypePtr()->isObjCInterfaceType()) { |
| 1461 | Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object) |
| 1462 | << D.getIdentifier(); |
| 1463 | InvalidDecl = true; |
| 1464 | } |
| 1465 | |
| 1466 | VarDecl *NewVD; |
| 1467 | VarDecl::StorageClass SC; |
| 1468 | switch (D.getDeclSpec().getStorageClassSpec()) { |
| 1469 | default: assert(0 && "Unknown storage class!"); |
| 1470 | case DeclSpec::SCS_unspecified: SC = VarDecl::None; break; |
| 1471 | case DeclSpec::SCS_extern: SC = VarDecl::Extern; break; |
| 1472 | case DeclSpec::SCS_static: SC = VarDecl::Static; break; |
| 1473 | case DeclSpec::SCS_auto: SC = VarDecl::Auto; break; |
| 1474 | case DeclSpec::SCS_register: SC = VarDecl::Register; break; |
| 1475 | case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break; |
| 1476 | case DeclSpec::SCS_mutable: |
| 1477 | // mutable can only appear on non-static class members, so it's always |
| 1478 | // an error here |
| 1479 | Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember); |
| 1480 | InvalidDecl = true; |
| 1481 | SC = VarDecl::None; |
| 1482 | break; |
| 1483 | } |
| 1484 | |
| 1485 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 1486 | if (!II) { |
| 1487 | Diag(D.getIdentifierLoc(), diag::err_bad_variable_name) |
| 1488 | << Name.getAsString(); |
| 1489 | return 0; |
| 1490 | } |
| 1491 | |
| 1492 | if (DC->isRecord()) { |
| 1493 | // This is a static data member for a C++ class. |
| 1494 | NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC), |
| 1495 | D.getIdentifierLoc(), II, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1496 | R); |
Zhongxing Xu | cb8f4f1 | 2009-01-16 02:36:34 +0000 | [diff] [blame] | 1497 | } else { |
| 1498 | bool ThreadSpecified = D.getDeclSpec().isThreadSpecified(); |
| 1499 | if (S->getFnParent() == 0) { |
| 1500 | // C99 6.9p2: The storage-class specifiers auto and register shall not |
| 1501 | // appear in the declaration specifiers in an external declaration. |
| 1502 | if (SC == VarDecl::Auto || SC == VarDecl::Register) { |
| 1503 | Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope); |
| 1504 | InvalidDecl = true; |
| 1505 | } |
| 1506 | } |
| 1507 | NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(), |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1508 | II, R, SC, |
Zhongxing Xu | cb8f4f1 | 2009-01-16 02:36:34 +0000 | [diff] [blame] | 1509 | // FIXME: Move to DeclGroup... |
| 1510 | D.getDeclSpec().getSourceRange().getBegin()); |
| 1511 | NewVD->setThreadSpecified(ThreadSpecified); |
| 1512 | } |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1513 | NewVD->setNextDeclarator(LastDeclarator); |
| 1514 | |
Zhongxing Xu | cb8f4f1 | 2009-01-16 02:36:34 +0000 | [diff] [blame] | 1515 | // Handle attributes prior to checking for duplicates in MergeVarDecl |
| 1516 | ProcessDeclAttributes(NewVD, D); |
| 1517 | |
| 1518 | // Handle GNU asm-label extension (encoded as an attribute). |
| 1519 | if (Expr *E = (Expr*) D.getAsmLabel()) { |
| 1520 | // The parser guarantees this is a string. |
| 1521 | StringLiteral *SE = cast<StringLiteral>(E); |
| 1522 | NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(), |
| 1523 | SE->getByteLength()))); |
| 1524 | } |
| 1525 | |
| 1526 | // Emit an error if an address space was applied to decl with local storage. |
| 1527 | // This includes arrays of objects with address space qualifiers, but not |
| 1528 | // automatic variables that point to other address spaces. |
| 1529 | // ISO/IEC TR 18037 S5.1.2 |
| 1530 | if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) { |
| 1531 | Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl); |
| 1532 | InvalidDecl = true; |
| 1533 | } |
| 1534 | // Merge the decl with the existing one if appropriate. If the decl is |
| 1535 | // in an outer scope, it isn't the same thing. |
| 1536 | if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) { |
| 1537 | if (isa<FieldDecl>(PrevDecl) && D.getCXXScopeSpec().isSet()) { |
| 1538 | // The user tried to define a non-static data member |
| 1539 | // out-of-line (C++ [dcl.meaning]p1). |
| 1540 | Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line) |
| 1541 | << D.getCXXScopeSpec().getRange(); |
| 1542 | NewVD->Destroy(Context); |
| 1543 | return 0; |
| 1544 | } |
| 1545 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1546 | Redeclaration = true; |
| 1547 | if (MergeVarDecl(NewVD, PrevDecl)) |
| 1548 | InvalidDecl = true; |
Zhongxing Xu | cb8f4f1 | 2009-01-16 02:36:34 +0000 | [diff] [blame] | 1549 | |
| 1550 | if (D.getCXXScopeSpec().isSet()) { |
| 1551 | // No previous declaration in the qualifying scope. |
| 1552 | Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member) |
| 1553 | << Name << D.getCXXScopeSpec().getRange(); |
| 1554 | InvalidDecl = true; |
| 1555 | } |
| 1556 | } |
| 1557 | return NewVD; |
| 1558 | } |
| 1559 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1560 | NamedDecl* |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1561 | Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1562 | QualType R, Decl *LastDeclarator, |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1563 | Decl* PrevDecl, bool IsFunctionDefinition, |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1564 | bool& InvalidDecl, bool &Redeclaration) { |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1565 | assert(R.getTypePtr()->isFunctionType()); |
| 1566 | |
| 1567 | DeclarationName Name = GetNameForDeclarator(D); |
| 1568 | FunctionDecl::StorageClass SC = FunctionDecl::None; |
| 1569 | switch (D.getDeclSpec().getStorageClassSpec()) { |
| 1570 | default: assert(0 && "Unknown storage class!"); |
| 1571 | case DeclSpec::SCS_auto: |
| 1572 | case DeclSpec::SCS_register: |
| 1573 | case DeclSpec::SCS_mutable: |
| 1574 | Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func); |
| 1575 | InvalidDecl = true; |
| 1576 | break; |
| 1577 | case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break; |
| 1578 | case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break; |
| 1579 | case DeclSpec::SCS_static: SC = FunctionDecl::Static; break; |
| 1580 | case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break; |
| 1581 | } |
| 1582 | |
| 1583 | bool isInline = D.getDeclSpec().isInlineSpecified(); |
| 1584 | // bool isVirtual = D.getDeclSpec().isVirtualSpecified(); |
| 1585 | bool isExplicit = D.getDeclSpec().isExplicitSpecified(); |
| 1586 | |
| 1587 | FunctionDecl *NewFD; |
| 1588 | if (D.getKind() == Declarator::DK_Constructor) { |
| 1589 | // This is a C++ constructor declaration. |
| 1590 | assert(DC->isRecord() && |
| 1591 | "Constructors can only be declared in a member context"); |
| 1592 | |
| 1593 | InvalidDecl = InvalidDecl || CheckConstructorDeclarator(D, R, SC); |
| 1594 | |
| 1595 | // Create the new declaration |
| 1596 | NewFD = CXXConstructorDecl::Create(Context, |
| 1597 | cast<CXXRecordDecl>(DC), |
| 1598 | D.getIdentifierLoc(), Name, R, |
| 1599 | isExplicit, isInline, |
| 1600 | /*isImplicitlyDeclared=*/false); |
| 1601 | |
| 1602 | if (InvalidDecl) |
| 1603 | NewFD->setInvalidDecl(); |
| 1604 | } else if (D.getKind() == Declarator::DK_Destructor) { |
| 1605 | // This is a C++ destructor declaration. |
| 1606 | if (DC->isRecord()) { |
| 1607 | InvalidDecl = InvalidDecl || CheckDestructorDeclarator(D, R, SC); |
| 1608 | |
| 1609 | NewFD = CXXDestructorDecl::Create(Context, |
| 1610 | cast<CXXRecordDecl>(DC), |
| 1611 | D.getIdentifierLoc(), Name, R, |
| 1612 | isInline, |
| 1613 | /*isImplicitlyDeclared=*/false); |
| 1614 | |
| 1615 | if (InvalidDecl) |
| 1616 | NewFD->setInvalidDecl(); |
| 1617 | } else { |
| 1618 | Diag(D.getIdentifierLoc(), diag::err_destructor_not_member); |
| 1619 | |
| 1620 | // Create a FunctionDecl to satisfy the function definition parsing |
| 1621 | // code path. |
| 1622 | NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(), |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1623 | Name, R, SC, isInline, |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1624 | // FIXME: Move to DeclGroup... |
| 1625 | D.getDeclSpec().getSourceRange().getBegin()); |
| 1626 | InvalidDecl = true; |
| 1627 | NewFD->setInvalidDecl(); |
| 1628 | } |
| 1629 | } else if (D.getKind() == Declarator::DK_Conversion) { |
| 1630 | if (!DC->isRecord()) { |
| 1631 | Diag(D.getIdentifierLoc(), |
| 1632 | diag::err_conv_function_not_member); |
| 1633 | return 0; |
| 1634 | } else { |
| 1635 | InvalidDecl = InvalidDecl || CheckConversionDeclarator(D, R, SC); |
| 1636 | |
| 1637 | NewFD = CXXConversionDecl::Create(Context, cast<CXXRecordDecl>(DC), |
| 1638 | D.getIdentifierLoc(), Name, R, |
| 1639 | isInline, isExplicit); |
| 1640 | |
| 1641 | if (InvalidDecl) |
| 1642 | NewFD->setInvalidDecl(); |
| 1643 | } |
| 1644 | } else if (DC->isRecord()) { |
| 1645 | // This is a C++ method declaration. |
| 1646 | NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC), |
| 1647 | D.getIdentifierLoc(), Name, R, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1648 | (SC == FunctionDecl::Static), isInline); |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1649 | } else { |
| 1650 | NewFD = FunctionDecl::Create(Context, DC, |
| 1651 | D.getIdentifierLoc(), |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1652 | Name, R, SC, isInline, |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1653 | // FIXME: Move to DeclGroup... |
| 1654 | D.getDeclSpec().getSourceRange().getBegin()); |
| 1655 | } |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1656 | NewFD->setNextDeclarator(LastDeclarator); |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1657 | |
| 1658 | // Set the lexical context. If the declarator has a C++ |
| 1659 | // scope specifier, the lexical context will be different |
| 1660 | // from the semantic context. |
| 1661 | NewFD->setLexicalDeclContext(CurContext); |
| 1662 | |
| 1663 | // Handle GNU asm-label extension (encoded as an attribute). |
| 1664 | if (Expr *E = (Expr*) D.getAsmLabel()) { |
| 1665 | // The parser guarantees this is a string. |
| 1666 | StringLiteral *SE = cast<StringLiteral>(E); |
| 1667 | NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(), |
| 1668 | SE->getByteLength()))); |
| 1669 | } |
| 1670 | |
| 1671 | // Copy the parameter declarations from the declarator D to |
| 1672 | // the function declaration NewFD, if they are available. |
| 1673 | if (D.getNumTypeObjects() > 0) { |
| 1674 | DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun; |
| 1675 | |
| 1676 | // Create Decl objects for each parameter, adding them to the |
| 1677 | // FunctionDecl. |
| 1678 | llvm::SmallVector<ParmVarDecl*, 16> Params; |
| 1679 | |
| 1680 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs |
| 1681 | // function that takes no arguments, not a function that takes a |
| 1682 | // single void argument. |
| 1683 | // We let through "const void" here because Sema::GetTypeForDeclarator |
| 1684 | // already checks for that case. |
| 1685 | if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
| 1686 | FTI.ArgInfo[0].Param && |
| 1687 | ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) { |
| 1688 | // empty arg list, don't push any params. |
| 1689 | ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param; |
| 1690 | |
| 1691 | // In C++, the empty parameter-type-list must be spelled "void"; a |
| 1692 | // typedef of void is not permitted. |
| 1693 | if (getLangOptions().CPlusPlus && |
| 1694 | Param->getType().getUnqualifiedType() != Context.VoidTy) { |
| 1695 | Diag(Param->getLocation(), diag::ext_param_typedef_of_void); |
| 1696 | } |
| 1697 | } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) { |
| 1698 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
| 1699 | Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param); |
| 1700 | } |
| 1701 | |
| 1702 | NewFD->setParams(Context, &Params[0], Params.size()); |
| 1703 | } else if (R->getAsTypedefType()) { |
| 1704 | // When we're declaring a function with a typedef, as in the |
| 1705 | // following example, we'll need to synthesize (unnamed) |
| 1706 | // parameters for use in the declaration. |
| 1707 | // |
| 1708 | // @code |
| 1709 | // typedef void fn(int); |
| 1710 | // fn f; |
| 1711 | // @endcode |
| 1712 | const FunctionTypeProto *FT = R->getAsFunctionTypeProto(); |
| 1713 | if (!FT) { |
| 1714 | // This is a typedef of a function with no prototype, so we |
| 1715 | // don't need to do anything. |
| 1716 | } else if ((FT->getNumArgs() == 0) || |
| 1717 | (FT->getNumArgs() == 1 && !FT->isVariadic() && |
| 1718 | FT->getArgType(0)->isVoidType())) { |
| 1719 | // This is a zero-argument function. We don't need to do anything. |
| 1720 | } else { |
| 1721 | // Synthesize a parameter for each argument type. |
| 1722 | llvm::SmallVector<ParmVarDecl*, 16> Params; |
| 1723 | for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin(); |
| 1724 | ArgType != FT->arg_type_end(); ++ArgType) { |
Douglas Gregor | 450da98 | 2009-02-16 20:58:07 +0000 | [diff] [blame] | 1725 | ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, |
| 1726 | SourceLocation(), 0, |
| 1727 | *ArgType, VarDecl::None, |
| 1728 | 0); |
| 1729 | Param->setImplicit(); |
| 1730 | Params.push_back(Param); |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1731 | } |
| 1732 | |
| 1733 | NewFD->setParams(Context, &Params[0], Params.size()); |
| 1734 | } |
| 1735 | } |
| 1736 | |
| 1737 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) |
| 1738 | InvalidDecl = InvalidDecl || CheckConstructor(Constructor); |
| 1739 | else if (isa<CXXDestructorDecl>(NewFD)) { |
| 1740 | CXXRecordDecl *Record = cast<CXXRecordDecl>(NewFD->getParent()); |
| 1741 | Record->setUserDeclaredDestructor(true); |
| 1742 | // C++ [class]p4: A POD-struct is an aggregate class that has [...] no |
| 1743 | // user-defined destructor. |
| 1744 | Record->setPOD(false); |
| 1745 | } else if (CXXConversionDecl *Conversion = |
| 1746 | dyn_cast<CXXConversionDecl>(NewFD)) |
| 1747 | ActOnConversionDeclarator(Conversion); |
| 1748 | |
| 1749 | // Extra checking for C++ overloaded operators (C++ [over.oper]). |
| 1750 | if (NewFD->isOverloadedOperator() && |
| 1751 | CheckOverloadedOperatorDeclaration(NewFD)) |
| 1752 | NewFD->setInvalidDecl(); |
| 1753 | |
| 1754 | // Merge the decl with the existing one if appropriate. Since C functions |
| 1755 | // are in a flat namespace, make sure we consider decls in outer scopes. |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1756 | bool OverloadableAttrRequired = false; |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1757 | if (PrevDecl && |
| 1758 | (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) { |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1759 | // Determine whether NewFD is an overload of PrevDecl or |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1760 | // a declaration that requires merging. If it's an overload, |
| 1761 | // there's no more work to do here; we'll just add the new |
| 1762 | // function to the scope. |
| 1763 | OverloadedFunctionDecl::function_iterator MatchedDecl; |
Douglas Gregor | ae17094 | 2009-02-13 00:26:38 +0000 | [diff] [blame] | 1764 | |
| 1765 | if (!getLangOptions().CPlusPlus && |
Douglas Gregor | c6666f8 | 2009-02-18 06:34:51 +0000 | [diff] [blame] | 1766 | AllowOverloadingOfFunction(PrevDecl, Context)) { |
Douglas Gregor | ae17094 | 2009-02-13 00:26:38 +0000 | [diff] [blame] | 1767 | OverloadableAttrRequired = true; |
| 1768 | |
Douglas Gregor | c6666f8 | 2009-02-18 06:34:51 +0000 | [diff] [blame] | 1769 | // Functions marked "overloadable" must have a prototype (that |
| 1770 | // we can't get through declaration merging). |
| 1771 | if (!R->getAsFunctionTypeProto()) { |
| 1772 | Diag(NewFD->getLocation(), diag::err_attribute_overloadable_no_prototype) |
| 1773 | << NewFD; |
| 1774 | InvalidDecl = true; |
| 1775 | Redeclaration = true; |
| 1776 | |
| 1777 | // Turn this into a variadic function with no parameters. |
| 1778 | R = Context.getFunctionType(R->getAsFunctionType()->getResultType(), |
| 1779 | 0, 0, true, 0); |
| 1780 | NewFD->setType(R); |
| 1781 | } |
| 1782 | } |
| 1783 | |
| 1784 | if (PrevDecl && |
| 1785 | (!AllowOverloadingOfFunction(PrevDecl, Context) || |
| 1786 | !IsOverload(NewFD, PrevDecl, MatchedDecl))) { |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1787 | Redeclaration = true; |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1788 | Decl *OldDecl = PrevDecl; |
| 1789 | |
| 1790 | // If PrevDecl was an overloaded function, extract the |
| 1791 | // FunctionDecl that matched. |
| 1792 | if (isa<OverloadedFunctionDecl>(PrevDecl)) |
| 1793 | OldDecl = *MatchedDecl; |
| 1794 | |
| 1795 | // NewFD and PrevDecl represent declarations that need to be |
| 1796 | // merged. |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1797 | if (MergeFunctionDecl(NewFD, OldDecl)) |
| 1798 | InvalidDecl = true; |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1799 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 1800 | if (!InvalidDecl) { |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1801 | NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl)); |
| 1802 | |
| 1803 | // An out-of-line member function declaration must also be a |
| 1804 | // definition (C++ [dcl.meaning]p1). |
| 1805 | if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && |
| 1806 | !InvalidDecl) { |
| 1807 | Diag(NewFD->getLocation(), diag::err_out_of_line_declaration) |
| 1808 | << D.getCXXScopeSpec().getRange(); |
| 1809 | NewFD->setInvalidDecl(); |
| 1810 | } |
| 1811 | } |
| 1812 | } |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1813 | } |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1814 | |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1815 | if (D.getCXXScopeSpec().isSet() && |
| 1816 | (!PrevDecl || !Redeclaration)) { |
| 1817 | // The user tried to provide an out-of-line definition for a |
| 1818 | // function that is a member of a class or namespace, but there |
| 1819 | // was no such member function declared (C++ [class.mfct]p2, |
| 1820 | // C++ [namespace.memdef]p2). For example: |
| 1821 | // |
| 1822 | // class X { |
| 1823 | // void f() const; |
| 1824 | // }; |
| 1825 | // |
| 1826 | // void X::f() { } // ill-formed |
| 1827 | // |
| 1828 | // Complain about this problem, and attempt to suggest close |
| 1829 | // matches (e.g., those that differ only in cv-qualifiers and |
| 1830 | // whether the parameter types are references). |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1831 | Diag(D.getIdentifierLoc(), diag::err_member_def_does_not_match) |
Douglas Gregor | 4b99bae | 2009-02-06 22:58:38 +0000 | [diff] [blame] | 1832 | << cast<NamedDecl>(DC) << D.getCXXScopeSpec().getRange(); |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1833 | InvalidDecl = true; |
| 1834 | |
| 1835 | LookupResult Prev = LookupQualifiedName(DC, Name, LookupOrdinaryName, |
| 1836 | true); |
| 1837 | assert(!Prev.isAmbiguous() && |
| 1838 | "Cannot have an ambiguity in previous-declaration lookup"); |
| 1839 | for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end(); |
| 1840 | Func != FuncEnd; ++Func) { |
| 1841 | if (isa<FunctionDecl>(*Func) && |
| 1842 | isNearlyMatchingFunction(Context, cast<FunctionDecl>(*Func), NewFD)) |
| 1843 | Diag((*Func)->getLocation(), diag::note_member_def_close_match); |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1844 | } |
Douglas Gregor | 4ce205f | 2009-02-06 17:46:57 +0000 | [diff] [blame] | 1845 | |
| 1846 | PrevDecl = 0; |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1847 | } |
Douglas Gregor | d863517 | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 1848 | |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1849 | // Handle attributes. We need to have merged decls when handling attributes |
| 1850 | // (for example to check for conflicts, etc). |
| 1851 | ProcessDeclAttributes(NewFD, D); |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 1852 | AddKnownFunctionAttributes(NewFD); |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1853 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1854 | if (OverloadableAttrRequired && !NewFD->getAttr<OverloadableAttr>()) { |
| 1855 | // If a function name is overloadable in C, then every function |
| 1856 | // with that name must be marked "overloadable". |
| 1857 | Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing) |
Douglas Gregor | ae17094 | 2009-02-13 00:26:38 +0000 | [diff] [blame] | 1858 | << Redeclaration << NewFD; |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1859 | if (PrevDecl) |
| 1860 | Diag(PrevDecl->getLocation(), |
| 1861 | diag::note_attribute_overloadable_prev_overload); |
| 1862 | NewFD->addAttr(new OverloadableAttr); |
| 1863 | } |
| 1864 | |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1865 | if (getLangOptions().CPlusPlus) { |
Sebastian Redl | 00d5074 | 2009-02-08 14:56:26 +0000 | [diff] [blame] | 1866 | // In C++, check default arguments now that we have merged decls. Unless |
| 1867 | // the lexical context is the class, because in this case this is done |
| 1868 | // during delayed parsing anyway. |
| 1869 | if (!CurContext->isRecord()) |
| 1870 | CheckCXXDefaultArguments(NewFD); |
Zhongxing Xu | 416fcaf | 2009-01-16 01:13:29 +0000 | [diff] [blame] | 1871 | |
| 1872 | // An out-of-line member function declaration must also be a |
| 1873 | // definition (C++ [dcl.meaning]p1). |
| 1874 | if (!IsFunctionDefinition && D.getCXXScopeSpec().isSet() && !InvalidDecl) { |
| 1875 | Diag(NewFD->getLocation(), diag::err_out_of_line_declaration) |
| 1876 | << D.getCXXScopeSpec().getRange(); |
| 1877 | InvalidDecl = true; |
| 1878 | } |
| 1879 | } |
| 1880 | return NewFD; |
| 1881 | } |
| 1882 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1883 | void Sema::InitializerElementNotConstant(const Expr *Init) { |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 1884 | Diag(Init->getExprLoc(), diag::err_init_element_not_constant) |
| 1885 | << Init->getSourceRange(); |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1886 | } |
| 1887 | |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1888 | bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) { |
| 1889 | switch (Init->getStmtClass()) { |
| 1890 | default: |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1891 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1892 | return true; |
| 1893 | case Expr::ParenExprClass: { |
| 1894 | const ParenExpr* PE = cast<ParenExpr>(Init); |
| 1895 | return CheckAddressConstantExpressionLValue(PE->getSubExpr()); |
| 1896 | } |
| 1897 | case Expr::CompoundLiteralExprClass: |
| 1898 | return cast<CompoundLiteralExpr>(Init)->isFileScope(); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 1899 | case Expr::DeclRefExprClass: |
| 1900 | case Expr::QualifiedDeclRefExprClass: { |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1901 | const Decl *D = cast<DeclRefExpr>(Init)->getDecl(); |
Eli Friedman | 97c0a39 | 2008-05-21 03:39:11 +0000 | [diff] [blame] | 1902 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 1903 | if (VD->hasGlobalStorage()) |
| 1904 | return false; |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1905 | InitializerElementNotConstant(Init); |
Eli Friedman | 97c0a39 | 2008-05-21 03:39:11 +0000 | [diff] [blame] | 1906 | return true; |
| 1907 | } |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1908 | if (isa<FunctionDecl>(D)) |
| 1909 | return false; |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1910 | InitializerElementNotConstant(Init); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 1911 | return true; |
| 1912 | } |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1913 | case Expr::MemberExprClass: { |
| 1914 | const MemberExpr *M = cast<MemberExpr>(Init); |
| 1915 | if (M->isArrow()) |
| 1916 | return CheckAddressConstantExpression(M->getBase()); |
| 1917 | return CheckAddressConstantExpressionLValue(M->getBase()); |
| 1918 | } |
| 1919 | case Expr::ArraySubscriptExprClass: { |
| 1920 | // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)? |
| 1921 | const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init); |
| 1922 | return CheckAddressConstantExpression(ASE->getBase()) || |
| 1923 | CheckArithmeticConstantExpression(ASE->getIdx()); |
| 1924 | } |
| 1925 | case Expr::StringLiteralClass: |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1926 | case Expr::PredefinedExprClass: |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1927 | return false; |
| 1928 | case Expr::UnaryOperatorClass: { |
| 1929 | const UnaryOperator *Exp = cast<UnaryOperator>(Init); |
| 1930 | |
| 1931 | // C99 6.6p9 |
| 1932 | if (Exp->getOpcode() == UnaryOperator::Deref) |
Eli Friedman | 97c0a39 | 2008-05-21 03:39:11 +0000 | [diff] [blame] | 1933 | return CheckAddressConstantExpression(Exp->getSubExpr()); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1934 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1935 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1936 | return true; |
| 1937 | } |
| 1938 | } |
| 1939 | } |
| 1940 | |
| 1941 | bool Sema::CheckAddressConstantExpression(const Expr* Init) { |
| 1942 | switch (Init->getStmtClass()) { |
| 1943 | default: |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1944 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1945 | return true; |
Chris Lattner | 506ff88 | 2008-10-06 07:26:43 +0000 | [diff] [blame] | 1946 | case Expr::ParenExprClass: |
| 1947 | return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr()); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1948 | case Expr::StringLiteralClass: |
| 1949 | case Expr::ObjCStringLiteralClass: |
| 1950 | return false; |
Chris Lattner | 506ff88 | 2008-10-06 07:26:43 +0000 | [diff] [blame] | 1951 | case Expr::CallExprClass: |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 1952 | case Expr::CXXOperatorCallExprClass: |
Chris Lattner | 506ff88 | 2008-10-06 07:26:43 +0000 | [diff] [blame] | 1953 | // __builtin___CFStringMakeConstantString is a valid constant l-value. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 1954 | if (cast<CallExpr>(Init)->isBuiltinCall(Context) == |
Chris Lattner | 506ff88 | 2008-10-06 07:26:43 +0000 | [diff] [blame] | 1955 | Builtin::BI__builtin___CFStringMakeConstantString) |
| 1956 | return false; |
| 1957 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1958 | InitializerElementNotConstant(Init); |
Chris Lattner | 506ff88 | 2008-10-06 07:26:43 +0000 | [diff] [blame] | 1959 | return true; |
| 1960 | |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1961 | case Expr::UnaryOperatorClass: { |
| 1962 | const UnaryOperator *Exp = cast<UnaryOperator>(Init); |
| 1963 | |
| 1964 | // C99 6.6p9 |
| 1965 | if (Exp->getOpcode() == UnaryOperator::AddrOf) |
| 1966 | return CheckAddressConstantExpressionLValue(Exp->getSubExpr()); |
| 1967 | |
| 1968 | if (Exp->getOpcode() == UnaryOperator::Extension) |
| 1969 | return CheckAddressConstantExpression(Exp->getSubExpr()); |
| 1970 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 1971 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1972 | return true; |
| 1973 | } |
| 1974 | case Expr::BinaryOperatorClass: { |
| 1975 | // FIXME: Should we pedwarn for expressions like "a + 1 + 2"? |
| 1976 | const BinaryOperator *Exp = cast<BinaryOperator>(Init); |
| 1977 | |
| 1978 | Expr *PExp = Exp->getLHS(); |
| 1979 | Expr *IExp = Exp->getRHS(); |
| 1980 | if (IExp->getType()->isPointerType()) |
| 1981 | std::swap(PExp, IExp); |
| 1982 | |
| 1983 | // FIXME: Should we pedwarn if IExp isn't an integer constant expression? |
| 1984 | return CheckAddressConstantExpression(PExp) || |
| 1985 | CheckArithmeticConstantExpression(IExp); |
| 1986 | } |
Eli Friedman | c3f0764 | 2008-08-25 20:46:57 +0000 | [diff] [blame] | 1987 | case Expr::ImplicitCastExprClass: |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 1988 | case Expr::CStyleCastExprClass: { |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1989 | const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr(); |
Eli Friedman | c3f0764 | 2008-08-25 20:46:57 +0000 | [diff] [blame] | 1990 | if (Init->getStmtClass() == Expr::ImplicitCastExprClass) { |
| 1991 | // Check for implicit promotion |
| 1992 | if (SubExpr->getType()->isFunctionType() || |
| 1993 | SubExpr->getType()->isArrayType()) |
| 1994 | return CheckAddressConstantExpressionLValue(SubExpr); |
| 1995 | } |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 1996 | |
| 1997 | // Check for pointer->pointer cast |
| 1998 | if (SubExpr->getType()->isPointerType()) |
| 1999 | return CheckAddressConstantExpression(SubExpr); |
| 2000 | |
Eli Friedman | c3f0764 | 2008-08-25 20:46:57 +0000 | [diff] [blame] | 2001 | if (SubExpr->getType()->isIntegralType()) { |
| 2002 | // Check for the special-case of a pointer->int->pointer cast; |
| 2003 | // this isn't standard, but some code requires it. See |
| 2004 | // PR2720 for an example. |
| 2005 | if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) { |
| 2006 | if (SubCast->getSubExpr()->getType()->isPointerType()) { |
| 2007 | unsigned IntWidth = Context.getIntWidth(SubCast->getType()); |
| 2008 | unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy); |
| 2009 | if (IntWidth >= PointerWidth) { |
| 2010 | return CheckAddressConstantExpression(SubCast->getSubExpr()); |
| 2011 | } |
| 2012 | } |
| 2013 | } |
| 2014 | } |
| 2015 | if (SubExpr->getType()->isArithmeticType()) { |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2016 | return CheckArithmeticConstantExpression(SubExpr); |
Eli Friedman | c3f0764 | 2008-08-25 20:46:57 +0000 | [diff] [blame] | 2017 | } |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2018 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2019 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2020 | return true; |
| 2021 | } |
| 2022 | case Expr::ConditionalOperatorClass: { |
| 2023 | // FIXME: Should we pedwarn here? |
| 2024 | const ConditionalOperator *Exp = cast<ConditionalOperator>(Init); |
| 2025 | if (!Exp->getCond()->getType()->isArithmeticType()) { |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2026 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2027 | return true; |
| 2028 | } |
| 2029 | if (CheckArithmeticConstantExpression(Exp->getCond())) |
| 2030 | return true; |
| 2031 | if (Exp->getLHS() && |
| 2032 | CheckAddressConstantExpression(Exp->getLHS())) |
| 2033 | return true; |
| 2034 | return CheckAddressConstantExpression(Exp->getRHS()); |
| 2035 | } |
| 2036 | case Expr::AddrLabelExprClass: |
| 2037 | return false; |
| 2038 | } |
| 2039 | } |
| 2040 | |
Eli Friedman | 4caf055 | 2008-06-09 05:05:07 +0000 | [diff] [blame] | 2041 | static const Expr* FindExpressionBaseAddress(const Expr* E); |
| 2042 | |
| 2043 | static const Expr* FindExpressionBaseAddressLValue(const Expr* E) { |
| 2044 | switch (E->getStmtClass()) { |
| 2045 | default: |
| 2046 | return E; |
| 2047 | case Expr::ParenExprClass: { |
| 2048 | const ParenExpr* PE = cast<ParenExpr>(E); |
| 2049 | return FindExpressionBaseAddressLValue(PE->getSubExpr()); |
| 2050 | } |
| 2051 | case Expr::MemberExprClass: { |
| 2052 | const MemberExpr *M = cast<MemberExpr>(E); |
| 2053 | if (M->isArrow()) |
| 2054 | return FindExpressionBaseAddress(M->getBase()); |
| 2055 | return FindExpressionBaseAddressLValue(M->getBase()); |
| 2056 | } |
| 2057 | case Expr::ArraySubscriptExprClass: { |
| 2058 | const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E); |
| 2059 | return FindExpressionBaseAddress(ASE->getBase()); |
| 2060 | } |
| 2061 | case Expr::UnaryOperatorClass: { |
| 2062 | const UnaryOperator *Exp = cast<UnaryOperator>(E); |
| 2063 | |
| 2064 | if (Exp->getOpcode() == UnaryOperator::Deref) |
| 2065 | return FindExpressionBaseAddress(Exp->getSubExpr()); |
| 2066 | |
| 2067 | return E; |
| 2068 | } |
| 2069 | } |
| 2070 | } |
| 2071 | |
| 2072 | static const Expr* FindExpressionBaseAddress(const Expr* E) { |
| 2073 | switch (E->getStmtClass()) { |
| 2074 | default: |
| 2075 | return E; |
| 2076 | case Expr::ParenExprClass: { |
| 2077 | const ParenExpr* PE = cast<ParenExpr>(E); |
| 2078 | return FindExpressionBaseAddress(PE->getSubExpr()); |
| 2079 | } |
| 2080 | case Expr::UnaryOperatorClass: { |
| 2081 | const UnaryOperator *Exp = cast<UnaryOperator>(E); |
| 2082 | |
| 2083 | // C99 6.6p9 |
| 2084 | if (Exp->getOpcode() == UnaryOperator::AddrOf) |
| 2085 | return FindExpressionBaseAddressLValue(Exp->getSubExpr()); |
| 2086 | |
| 2087 | if (Exp->getOpcode() == UnaryOperator::Extension) |
| 2088 | return FindExpressionBaseAddress(Exp->getSubExpr()); |
| 2089 | |
| 2090 | return E; |
| 2091 | } |
| 2092 | case Expr::BinaryOperatorClass: { |
| 2093 | const BinaryOperator *Exp = cast<BinaryOperator>(E); |
| 2094 | |
| 2095 | Expr *PExp = Exp->getLHS(); |
| 2096 | Expr *IExp = Exp->getRHS(); |
| 2097 | if (IExp->getType()->isPointerType()) |
| 2098 | std::swap(PExp, IExp); |
| 2099 | |
| 2100 | return FindExpressionBaseAddress(PExp); |
| 2101 | } |
| 2102 | case Expr::ImplicitCastExprClass: { |
| 2103 | const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr(); |
| 2104 | |
| 2105 | // Check for implicit promotion |
| 2106 | if (SubExpr->getType()->isFunctionType() || |
| 2107 | SubExpr->getType()->isArrayType()) |
| 2108 | return FindExpressionBaseAddressLValue(SubExpr); |
| 2109 | |
| 2110 | // Check for pointer->pointer cast |
| 2111 | if (SubExpr->getType()->isPointerType()) |
| 2112 | return FindExpressionBaseAddress(SubExpr); |
| 2113 | |
| 2114 | // We assume that we have an arithmetic expression here; |
| 2115 | // if we don't, we'll figure it out later |
| 2116 | return 0; |
| 2117 | } |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 2118 | case Expr::CStyleCastExprClass: { |
Eli Friedman | 4caf055 | 2008-06-09 05:05:07 +0000 | [diff] [blame] | 2119 | const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr(); |
| 2120 | |
| 2121 | // Check for pointer->pointer cast |
| 2122 | if (SubExpr->getType()->isPointerType()) |
| 2123 | return FindExpressionBaseAddress(SubExpr); |
| 2124 | |
| 2125 | // We assume that we have an arithmetic expression here; |
| 2126 | // if we don't, we'll figure it out later |
| 2127 | return 0; |
| 2128 | } |
| 2129 | } |
| 2130 | } |
| 2131 | |
Anders Carlsson | 51fe996 | 2008-11-22 21:04:56 +0000 | [diff] [blame] | 2132 | bool Sema::CheckArithmeticConstantExpression(const Expr* Init) { |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2133 | switch (Init->getStmtClass()) { |
| 2134 | default: |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2135 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2136 | return true; |
| 2137 | case Expr::ParenExprClass: { |
| 2138 | const ParenExpr* PE = cast<ParenExpr>(Init); |
| 2139 | return CheckArithmeticConstantExpression(PE->getSubExpr()); |
| 2140 | } |
| 2141 | case Expr::FloatingLiteralClass: |
| 2142 | case Expr::IntegerLiteralClass: |
| 2143 | case Expr::CharacterLiteralClass: |
| 2144 | case Expr::ImaginaryLiteralClass: |
| 2145 | case Expr::TypesCompatibleExprClass: |
| 2146 | case Expr::CXXBoolLiteralExprClass: |
| 2147 | return false; |
Douglas Gregor | b460980 | 2008-11-14 16:09:21 +0000 | [diff] [blame] | 2148 | case Expr::CallExprClass: |
| 2149 | case Expr::CXXOperatorCallExprClass: { |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2150 | const CallExpr *CE = cast<CallExpr>(Init); |
Chris Lattner | 45b6b9d | 2008-10-06 06:49:02 +0000 | [diff] [blame] | 2151 | |
| 2152 | // Allow any constant foldable calls to builtins. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2153 | if (CE->isBuiltinCall(Context) && CE->isEvaluatable(Context)) |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2154 | return false; |
Chris Lattner | 45b6b9d | 2008-10-06 06:49:02 +0000 | [diff] [blame] | 2155 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2156 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2157 | return true; |
| 2158 | } |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 2159 | case Expr::DeclRefExprClass: |
| 2160 | case Expr::QualifiedDeclRefExprClass: { |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2161 | const Decl *D = cast<DeclRefExpr>(Init)->getDecl(); |
| 2162 | if (isa<EnumConstantDecl>(D)) |
| 2163 | return false; |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2164 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2165 | return true; |
| 2166 | } |
| 2167 | case Expr::CompoundLiteralExprClass: |
| 2168 | // Allow "(vector type){2,4}"; normal C constraints don't allow this, |
| 2169 | // but vectors are allowed to be magic. |
| 2170 | if (Init->getType()->isVectorType()) |
| 2171 | return false; |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2172 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2173 | return true; |
| 2174 | case Expr::UnaryOperatorClass: { |
| 2175 | const UnaryOperator *Exp = cast<UnaryOperator>(Init); |
| 2176 | |
| 2177 | switch (Exp->getOpcode()) { |
| 2178 | // Address, indirect, pre/post inc/dec, etc are not valid constant exprs. |
| 2179 | // See C99 6.6p3. |
| 2180 | default: |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2181 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2182 | return true; |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2183 | case UnaryOperator::OffsetOf: |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2184 | if (Exp->getSubExpr()->getType()->isConstantSizeType()) |
| 2185 | return false; |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2186 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2187 | return true; |
| 2188 | case UnaryOperator::Extension: |
| 2189 | case UnaryOperator::LNot: |
| 2190 | case UnaryOperator::Plus: |
| 2191 | case UnaryOperator::Minus: |
| 2192 | case UnaryOperator::Not: |
| 2193 | return CheckArithmeticConstantExpression(Exp->getSubExpr()); |
| 2194 | } |
| 2195 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 2196 | case Expr::SizeOfAlignOfExprClass: { |
| 2197 | const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2198 | // Special check for void types, which are allowed as an extension |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 2199 | if (Exp->getTypeOfArgument()->isVoidType()) |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2200 | return false; |
| 2201 | // alignof always evaluates to a constant. |
| 2202 | // FIXME: is sizeof(int[3.0]) a constant expression? |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 2203 | if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) { |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2204 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2205 | return true; |
| 2206 | } |
| 2207 | return false; |
| 2208 | } |
| 2209 | case Expr::BinaryOperatorClass: { |
| 2210 | const BinaryOperator *Exp = cast<BinaryOperator>(Init); |
| 2211 | |
| 2212 | if (Exp->getLHS()->getType()->isArithmeticType() && |
| 2213 | Exp->getRHS()->getType()->isArithmeticType()) { |
| 2214 | return CheckArithmeticConstantExpression(Exp->getLHS()) || |
| 2215 | CheckArithmeticConstantExpression(Exp->getRHS()); |
| 2216 | } |
| 2217 | |
Eli Friedman | 4caf055 | 2008-06-09 05:05:07 +0000 | [diff] [blame] | 2218 | if (Exp->getLHS()->getType()->isPointerType() && |
| 2219 | Exp->getRHS()->getType()->isPointerType()) { |
| 2220 | const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS()); |
| 2221 | const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS()); |
| 2222 | |
| 2223 | // Only allow a null (constant integer) base; we could |
| 2224 | // allow some additional cases if necessary, but this |
| 2225 | // is sufficient to cover offsetof-like constructs. |
| 2226 | if (!LHSBase && !RHSBase) { |
| 2227 | return CheckAddressConstantExpression(Exp->getLHS()) || |
| 2228 | CheckAddressConstantExpression(Exp->getRHS()); |
| 2229 | } |
| 2230 | } |
| 2231 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2232 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2233 | return true; |
| 2234 | } |
| 2235 | case Expr::ImplicitCastExprClass: |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 2236 | case Expr::CStyleCastExprClass: { |
Nuno Lopes | ff77645 | 2009-02-02 22:57:15 +0000 | [diff] [blame] | 2237 | const CastExpr *CE = cast<CastExpr>(Init); |
| 2238 | const Expr *SubExpr = CE->getSubExpr(); |
| 2239 | |
Eli Friedman | 6d4abe1 | 2008-09-01 22:08:17 +0000 | [diff] [blame] | 2240 | if (SubExpr->getType()->isArithmeticType()) |
| 2241 | return CheckArithmeticConstantExpression(SubExpr); |
| 2242 | |
Eli Friedman | b529d83 | 2008-09-02 09:37:00 +0000 | [diff] [blame] | 2243 | if (SubExpr->getType()->isPointerType()) { |
| 2244 | const Expr* Base = FindExpressionBaseAddress(SubExpr); |
Nuno Lopes | ff77645 | 2009-02-02 22:57:15 +0000 | [diff] [blame] | 2245 | if (Base) { |
| 2246 | // the cast is only valid if done to a wide enough type |
| 2247 | if (Context.getTypeSize(CE->getType()) >= |
| 2248 | Context.getTypeSize(SubExpr->getType())) |
| 2249 | return false; |
| 2250 | } else { |
| 2251 | // If the pointer has a null base, this is an offsetof-like construct |
| 2252 | return CheckAddressConstantExpression(SubExpr); |
| 2253 | } |
Eli Friedman | b529d83 | 2008-09-02 09:37:00 +0000 | [diff] [blame] | 2254 | } |
| 2255 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2256 | InitializerElementNotConstant(Init); |
Eli Friedman | 6d4abe1 | 2008-09-01 22:08:17 +0000 | [diff] [blame] | 2257 | return true; |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2258 | } |
| 2259 | case Expr::ConditionalOperatorClass: { |
| 2260 | const ConditionalOperator *Exp = cast<ConditionalOperator>(Init); |
Chris Lattner | 46cfefa | 2008-10-06 05:42:39 +0000 | [diff] [blame] | 2261 | |
| 2262 | // If GNU extensions are disabled, we require all operands to be arithmetic |
| 2263 | // constant expressions. |
| 2264 | if (getLangOptions().NoExtensions) { |
| 2265 | return CheckArithmeticConstantExpression(Exp->getCond()) || |
| 2266 | (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) || |
| 2267 | CheckArithmeticConstantExpression(Exp->getRHS()); |
| 2268 | } |
| 2269 | |
| 2270 | // Otherwise, we have to emulate some of the behavior of fold here. |
| 2271 | // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant |
| 2272 | // because it can constant fold things away. To retain compatibility with |
| 2273 | // GCC code, we see if we can fold the condition to a constant (which we |
| 2274 | // should always be able to do in theory). If so, we only require the |
| 2275 | // specified arm of the conditional to be a constant. This is a horrible |
| 2276 | // hack, but is require by real world code that uses __builtin_constant_p. |
Anders Carlsson | 1c0cfd4 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 2277 | Expr::EvalResult EvalResult; |
| 2278 | if (!Exp->getCond()->Evaluate(EvalResult, Context) || |
| 2279 | EvalResult.HasSideEffects) { |
Chris Lattner | 6ee7aa1 | 2008-11-16 21:24:15 +0000 | [diff] [blame] | 2280 | // If Evaluate couldn't fold it, CheckArithmeticConstantExpression |
Chris Lattner | 46cfefa | 2008-10-06 05:42:39 +0000 | [diff] [blame] | 2281 | // won't be able to either. Use it to emit the diagnostic though. |
| 2282 | bool Res = CheckArithmeticConstantExpression(Exp->getCond()); |
Chris Lattner | 6ee7aa1 | 2008-11-16 21:24:15 +0000 | [diff] [blame] | 2283 | assert(Res && "Evaluate couldn't evaluate this constant?"); |
Chris Lattner | 46cfefa | 2008-10-06 05:42:39 +0000 | [diff] [blame] | 2284 | return Res; |
| 2285 | } |
| 2286 | |
| 2287 | // Verify that the side following the condition is also a constant. |
| 2288 | const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS(); |
Anders Carlsson | 1c0cfd4 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 2289 | if (EvalResult.Val.getInt() == 0) |
Chris Lattner | 46cfefa | 2008-10-06 05:42:39 +0000 | [diff] [blame] | 2290 | std::swap(TrueSide, FalseSide); |
| 2291 | |
| 2292 | if (TrueSide && CheckArithmeticConstantExpression(TrueSide)) |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2293 | return true; |
Chris Lattner | 46cfefa | 2008-10-06 05:42:39 +0000 | [diff] [blame] | 2294 | |
| 2295 | // Okay, the evaluated side evaluates to a constant, so we accept this. |
| 2296 | // Check to see if the other side is obviously not a constant. If so, |
| 2297 | // emit a warning that this is a GNU extension. |
Chris Lattner | 45b6b9d | 2008-10-06 06:49:02 +0000 | [diff] [blame] | 2298 | if (FalseSide && !FalseSide->isEvaluatable(Context)) |
Chris Lattner | 46cfefa | 2008-10-06 05:42:39 +0000 | [diff] [blame] | 2299 | Diag(Init->getExprLoc(), |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 2300 | diag::ext_typecheck_expression_not_constant_but_accepted) |
| 2301 | << FalseSide->getSourceRange(); |
Chris Lattner | 46cfefa | 2008-10-06 05:42:39 +0000 | [diff] [blame] | 2302 | return false; |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2303 | } |
| 2304 | } |
| 2305 | } |
| 2306 | |
| 2307 | bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 2308 | if (DesignatedInitExpr *DIE = dyn_cast<DesignatedInitExpr>(Init)) |
| 2309 | Init = DIE->getInit(); |
| 2310 | |
Nuno Lopes | 9a979c3 | 2008-07-07 16:46:50 +0000 | [diff] [blame] | 2311 | Init = Init->IgnoreParens(); |
| 2312 | |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 2313 | if (Init->isEvaluatable(Context)) |
Anders Carlsson | 9e09f5d | 2008-12-05 05:09:56 +0000 | [diff] [blame] | 2314 | return false; |
| 2315 | |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2316 | // Look through CXXDefaultArgExprs; they have no meaning in this context. |
| 2317 | if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init)) |
| 2318 | return CheckForConstantInitializer(DAE->getExpr(), DclT); |
| 2319 | |
Nuno Lopes | 9a979c3 | 2008-07-07 16:46:50 +0000 | [diff] [blame] | 2320 | if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init)) |
| 2321 | return CheckForConstantInitializer(e->getInitializer(), DclT); |
| 2322 | |
Douglas Gregor | 3498bdb | 2009-01-29 17:44:32 +0000 | [diff] [blame] | 2323 | if (isa<ImplicitValueInitExpr>(Init)) { |
| 2324 | // FIXME: In C++, check for non-POD types. |
| 2325 | return false; |
| 2326 | } |
| 2327 | |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2328 | if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) { |
| 2329 | unsigned numInits = Exp->getNumInits(); |
| 2330 | for (unsigned i = 0; i < numInits; i++) { |
| 2331 | // FIXME: Need to get the type of the declaration for C++, |
| 2332 | // because it could be a reference? |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2333 | |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2334 | if (CheckForConstantInitializer(Exp->getInit(i), |
| 2335 | Exp->getInit(i)->getType())) |
| 2336 | return true; |
| 2337 | } |
| 2338 | return false; |
| 2339 | } |
| 2340 | |
Anders Carlsson | 9e09f5d | 2008-12-05 05:09:56 +0000 | [diff] [blame] | 2341 | // FIXME: We can probably remove some of this code below, now that |
| 2342 | // Expr::Evaluate is doing the heavy lifting for scalars. |
| 2343 | |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2344 | if (Init->isNullPointerConstant(Context)) |
| 2345 | return false; |
| 2346 | if (Init->getType()->isArithmeticType()) { |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 2347 | QualType InitTy = Context.getCanonicalType(Init->getType()) |
| 2348 | .getUnqualifiedType(); |
Eli Friedman | c1cc6dc | 2008-05-30 18:14:48 +0000 | [diff] [blame] | 2349 | if (InitTy == Context.BoolTy) { |
| 2350 | // Special handling for pointers implicitly cast to bool; |
| 2351 | // (e.g. "_Bool rr = &rr;"). This is only legal at the top level. |
| 2352 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) { |
| 2353 | Expr* SubE = ICE->getSubExpr(); |
| 2354 | if (SubE->getType()->isPointerType() || |
| 2355 | SubE->getType()->isArrayType() || |
| 2356 | SubE->getType()->isFunctionType()) { |
| 2357 | return CheckAddressConstantExpression(Init); |
| 2358 | } |
| 2359 | } |
| 2360 | } else if (InitTy->isIntegralType()) { |
| 2361 | Expr* SubE = 0; |
Argyrios Kyrtzidis | 0835a3c | 2008-08-18 23:01:59 +0000 | [diff] [blame] | 2362 | if (CastExpr* CE = dyn_cast<CastExpr>(Init)) |
Eli Friedman | c1cc6dc | 2008-05-30 18:14:48 +0000 | [diff] [blame] | 2363 | SubE = CE->getSubExpr(); |
| 2364 | // Special check for pointer cast to int; we allow as an extension |
| 2365 | // an address constant cast to an integer if the integer |
| 2366 | // is of an appropriate width (this sort of code is apparently used |
| 2367 | // in some places). |
| 2368 | // FIXME: Add pedwarn? |
| 2369 | // FIXME: Don't allow bitfields here! Need the FieldDecl for that. |
| 2370 | if (SubE && (SubE->getType()->isPointerType() || |
| 2371 | SubE->getType()->isArrayType() || |
| 2372 | SubE->getType()->isFunctionType())) { |
| 2373 | unsigned IntWidth = Context.getTypeSize(Init->getType()); |
| 2374 | unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy); |
| 2375 | if (IntWidth >= PointerWidth) |
| 2376 | return CheckAddressConstantExpression(Init); |
| 2377 | } |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2378 | } |
| 2379 | |
| 2380 | return CheckArithmeticConstantExpression(Init); |
| 2381 | } |
| 2382 | |
| 2383 | if (Init->getType()->isPointerType()) |
| 2384 | return CheckAddressConstantExpression(Init); |
| 2385 | |
Eli Friedman | c1cc6dc | 2008-05-30 18:14:48 +0000 | [diff] [blame] | 2386 | // An array type at the top level that isn't an init-list must |
| 2387 | // be a string literal |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2388 | if (Init->getType()->isArrayType()) |
| 2389 | return false; |
| 2390 | |
Nuno Lopes | 73419bf | 2008-09-01 18:42:41 +0000 | [diff] [blame] | 2391 | if (Init->getType()->isFunctionType()) |
| 2392 | return false; |
| 2393 | |
Steve Naroff | 8af6a45 | 2008-10-02 17:12:56 +0000 | [diff] [blame] | 2394 | // Allow block exprs at top level. |
| 2395 | if (Init->getType()->isBlockPointerType()) |
| 2396 | return false; |
Nuno Lopes | 6ed2ef8 | 2009-01-15 16:44:45 +0000 | [diff] [blame] | 2397 | |
| 2398 | // GCC cast to union extension |
| 2399 | // note: the validity of the cast expr is checked by CheckCastTypes() |
| 2400 | if (CastExpr *C = dyn_cast<CastExpr>(Init)) { |
| 2401 | QualType T = C->getType(); |
| 2402 | return T->isUnionType() && CheckForConstantInitializer(C->getSubExpr(), T); |
| 2403 | } |
| 2404 | |
Steve Naroff | 6594a70 | 2008-10-27 11:34:16 +0000 | [diff] [blame] | 2405 | InitializerElementNotConstant(Init); |
Eli Friedman | c594b32 | 2008-05-20 13:48:25 +0000 | [diff] [blame] | 2406 | return true; |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2407 | } |
| 2408 | |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 2409 | void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init) { |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2410 | AddInitializerToDecl(dcl, move(init), /*DirectInit=*/false); |
| 2411 | } |
| 2412 | |
| 2413 | /// AddInitializerToDecl - Adds the initializer Init to the |
| 2414 | /// declaration dcl. If DirectInit is true, this is C++ direct |
| 2415 | /// initialization rather than copy initialization. |
| 2416 | void Sema::AddInitializerToDecl(DeclTy *dcl, ExprArg init, bool DirectInit) { |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 2417 | Decl *RealDecl = static_cast<Decl *>(dcl); |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 2418 | Expr *Init = static_cast<Expr *>(init.release()); |
Chris Lattner | 9a11b9a | 2007-10-19 20:10:30 +0000 | [diff] [blame] | 2419 | assert(Init && "missing initializer"); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2420 | |
Chris Lattner | 9a11b9a | 2007-10-19 20:10:30 +0000 | [diff] [blame] | 2421 | // If there is no declaration, there was an error parsing it. Just ignore |
| 2422 | // the initializer. |
| 2423 | if (RealDecl == 0) { |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2424 | Init->Destroy(Context); |
Chris Lattner | 9a11b9a | 2007-10-19 20:10:30 +0000 | [diff] [blame] | 2425 | return; |
| 2426 | } |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2427 | |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 2428 | VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl); |
| 2429 | if (!VDecl) { |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 2430 | Diag(RealDecl->getLocation(), diag::err_illegal_initializer); |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 2431 | RealDecl->setInvalidDecl(); |
| 2432 | return; |
| 2433 | } |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2434 | // Get the decls type and save a reference for later, since |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2435 | // CheckInitializerTypes may change it. |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 2436 | QualType DclT = VDecl->getType(), SavT = DclT; |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 2437 | if (VDecl->isBlockVarDecl()) { |
| 2438 | VarDecl::StorageClass SC = VDecl->getStorageClass(); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2439 | if (SC == VarDecl::Extern) { // C99 6.7.8p5 |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 2440 | Diag(VDecl->getLocation(), diag::err_block_extern_cant_init); |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 2441 | VDecl->setInvalidDecl(); |
| 2442 | } else if (!VDecl->isInvalidDecl()) { |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 2443 | if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(), |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2444 | VDecl->getDeclName(), DirectInit)) |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 2445 | VDecl->setInvalidDecl(); |
Anders Carlsson | c5eb731 | 2008-08-22 05:00:02 +0000 | [diff] [blame] | 2446 | |
| 2447 | // C++ 3.6.2p2, allow dynamic initialization of static initializers. |
| 2448 | if (!getLangOptions().CPlusPlus) { |
| 2449 | if (SC == VarDecl::Static) // C99 6.7.8p4. |
| 2450 | CheckForConstantInitializer(Init, DclT); |
| 2451 | } |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2452 | } |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 2453 | } else if (VDecl->isFileVarDecl()) { |
| 2454 | if (VDecl->getStorageClass() == VarDecl::Extern) |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 2455 | Diag(VDecl->getLocation(), diag::warn_extern_init); |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 2456 | if (!VDecl->isInvalidDecl()) |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 2457 | if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(), |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2458 | VDecl->getDeclName(), DirectInit)) |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 2459 | VDecl->setInvalidDecl(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2460 | |
Anders Carlsson | c5eb731 | 2008-08-22 05:00:02 +0000 | [diff] [blame] | 2461 | // C++ 3.6.2p2, allow dynamic initialization of static initializers. |
| 2462 | if (!getLangOptions().CPlusPlus) { |
| 2463 | // C99 6.7.8p4. All file scoped initializers need to be constant. |
| 2464 | CheckForConstantInitializer(Init, DclT); |
| 2465 | } |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2466 | } |
| 2467 | // If the type changed, it means we had an incomplete type that was |
| 2468 | // completed by the initializer. For example: |
| 2469 | // int ary[] = { 1, 3, 5 }; |
| 2470 | // "ary" transitions from a VariableArrayType to a ConstantArrayType. |
Christopher Lamb | 48b1239 | 2007-11-29 19:09:19 +0000 | [diff] [blame] | 2471 | if (!VDecl->isInvalidDecl() && (DclT != SavT)) { |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 2472 | VDecl->setType(DclT); |
Christopher Lamb | 48b1239 | 2007-11-29 19:09:19 +0000 | [diff] [blame] | 2473 | Init->setType(DclT); |
| 2474 | } |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2475 | |
| 2476 | // Attach the initializer to the decl. |
Steve Naroff | 410e3e2 | 2007-09-12 20:13:48 +0000 | [diff] [blame] | 2477 | VDecl->setInit(Init); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2478 | return; |
| 2479 | } |
| 2480 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 2481 | void Sema::ActOnUninitializedDecl(DeclTy *dcl) { |
| 2482 | Decl *RealDecl = static_cast<Decl *>(dcl); |
| 2483 | |
Argyrios Kyrtzidis | 48c2e90 | 2008-11-07 13:01:22 +0000 | [diff] [blame] | 2484 | // If there is no declaration, there was an error parsing it. Just ignore it. |
| 2485 | if (RealDecl == 0) |
| 2486 | return; |
| 2487 | |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 2488 | if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) { |
| 2489 | QualType Type = Var->getType(); |
| 2490 | // C++ [dcl.init.ref]p3: |
| 2491 | // The initializer can be omitted for a reference only in a |
| 2492 | // parameter declaration (8.3.5), in the declaration of a |
| 2493 | // function return type, in the declaration of a class member |
| 2494 | // within its class declaration (9.2), and where the extern |
| 2495 | // specifier is explicitly used. |
Douglas Gregor | 9e7d9de | 2008-12-15 21:24:18 +0000 | [diff] [blame] | 2496 | if (Type->isReferenceType() && |
| 2497 | Var->getStorageClass() != VarDecl::Extern && |
| 2498 | Var->getStorageClass() != VarDecl::PrivateExtern) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 2499 | Diag(Var->getLocation(), diag::err_reference_var_requires_init) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 2500 | << Var->getDeclName() |
| 2501 | << SourceRange(Var->getLocation(), Var->getLocation()); |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 2502 | Var->setInvalidDecl(); |
| 2503 | return; |
| 2504 | } |
| 2505 | |
| 2506 | // C++ [dcl.init]p9: |
| 2507 | // |
| 2508 | // If no initializer is specified for an object, and the object |
| 2509 | // is of (possibly cv-qualified) non-POD class type (or array |
| 2510 | // thereof), the object shall be default-initialized; if the |
| 2511 | // object is of const-qualified type, the underlying class type |
| 2512 | // shall have a user-declared default constructor. |
| 2513 | if (getLangOptions().CPlusPlus) { |
| 2514 | QualType InitType = Type; |
| 2515 | if (const ArrayType *Array = Context.getAsArrayType(Type)) |
| 2516 | InitType = Array->getElementType(); |
Douglas Gregor | 9e7d9de | 2008-12-15 21:24:18 +0000 | [diff] [blame] | 2517 | if (Var->getStorageClass() != VarDecl::Extern && |
| 2518 | Var->getStorageClass() != VarDecl::PrivateExtern && |
| 2519 | InitType->isRecordType()) { |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 2520 | const CXXConstructorDecl *Constructor |
| 2521 | = PerformInitializationByConstructor(InitType, 0, 0, |
| 2522 | Var->getLocation(), |
| 2523 | SourceRange(Var->getLocation(), |
| 2524 | Var->getLocation()), |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 2525 | Var->getDeclName(), |
Douglas Gregor | f03d7c7 | 2008-11-05 15:29:30 +0000 | [diff] [blame] | 2526 | IK_Default); |
Douglas Gregor | 18fe568 | 2008-11-03 20:45:27 +0000 | [diff] [blame] | 2527 | if (!Constructor) |
| 2528 | Var->setInvalidDecl(); |
| 2529 | } |
| 2530 | } |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 2531 | |
Douglas Gregor | 818ce48 | 2008-10-29 13:50:18 +0000 | [diff] [blame] | 2532 | #if 0 |
| 2533 | // FIXME: Temporarily disabled because we are not properly parsing |
| 2534 | // linkage specifications on declarations, e.g., |
| 2535 | // |
| 2536 | // extern "C" const CGPoint CGPointerZero; |
| 2537 | // |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 2538 | // C++ [dcl.init]p9: |
| 2539 | // |
| 2540 | // If no initializer is specified for an object, and the |
| 2541 | // object is of (possibly cv-qualified) non-POD class type (or |
| 2542 | // array thereof), the object shall be default-initialized; if |
| 2543 | // the object is of const-qualified type, the underlying class |
| 2544 | // type shall have a user-declared default |
| 2545 | // constructor. Otherwise, if no initializer is specified for |
| 2546 | // an object, the object and its subobjects, if any, have an |
| 2547 | // indeterminate initial value; if the object or any of its |
| 2548 | // subobjects are of const-qualified type, the program is |
| 2549 | // ill-formed. |
| 2550 | // |
| 2551 | // This isn't technically an error in C, so we don't diagnose it. |
| 2552 | // |
| 2553 | // FIXME: Actually perform the POD/user-defined default |
| 2554 | // constructor check. |
| 2555 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 818ce48 | 2008-10-29 13:50:18 +0000 | [diff] [blame] | 2556 | Context.getCanonicalType(Type).isConstQualified() && |
| 2557 | Var->getStorageClass() != VarDecl::Extern) |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 2558 | Diag(Var->getLocation(), diag::err_const_var_requires_init) |
| 2559 | << Var->getName() |
| 2560 | << SourceRange(Var->getLocation(), Var->getLocation()); |
Douglas Gregor | 818ce48 | 2008-10-29 13:50:18 +0000 | [diff] [blame] | 2561 | #endif |
Douglas Gregor | 27c8dc0 | 2008-10-29 00:13:59 +0000 | [diff] [blame] | 2562 | } |
| 2563 | } |
| 2564 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2565 | /// The declarators are chained together backwards, reverse the list. |
| 2566 | Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) { |
| 2567 | // Often we have single declarators, handle them quickly. |
Argyrios Kyrtzidis | d311f37 | 2009-02-17 20:23:54 +0000 | [diff] [blame] | 2568 | Decl *Group = static_cast<Decl*>(group); |
| 2569 | if (Group == 0) |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2570 | return 0; |
Steve Naroff | 9474504 | 2007-09-13 23:52:58 +0000 | [diff] [blame] | 2571 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 2572 | Decl *NewGroup = 0; |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2573 | if (Group->getNextDeclarator() == 0) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2574 | NewGroup = Group; |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2575 | else { // reverse the list. |
| 2576 | while (Group) { |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 2577 | Decl *Next = Group->getNextDeclarator(); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2578 | Group->setNextDeclarator(NewGroup); |
| 2579 | NewGroup = Group; |
| 2580 | Group = Next; |
| 2581 | } |
| 2582 | } |
| 2583 | // Perform semantic analysis that depends on having fully processed both |
| 2584 | // the declarator and initializer. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 2585 | for (Decl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) { |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2586 | VarDecl *IDecl = dyn_cast<VarDecl>(ID); |
| 2587 | if (!IDecl) |
| 2588 | continue; |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2589 | QualType T = IDecl->getType(); |
| 2590 | |
Anders Carlsson | 96e05bc | 2008-12-07 00:20:55 +0000 | [diff] [blame] | 2591 | if (T->isVariableArrayType()) { |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 2592 | const VariableArrayType *VAT = Context.getAsVariableArrayType(T); |
Anders Carlsson | 7fd1df2 | 2008-12-07 00:49:48 +0000 | [diff] [blame] | 2593 | |
| 2594 | // FIXME: This won't give the correct result for |
| 2595 | // int a[10][n]; |
| 2596 | SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange(); |
Anders Carlsson | 96e05bc | 2008-12-07 00:20:55 +0000 | [diff] [blame] | 2597 | if (IDecl->isFileVarDecl()) { |
Anders Carlsson | 7fd1df2 | 2008-12-07 00:49:48 +0000 | [diff] [blame] | 2598 | Diag(IDecl->getLocation(), diag::err_vla_decl_in_file_scope) << |
| 2599 | SizeRange; |
| 2600 | |
Eli Friedman | c5773c4 | 2008-02-15 18:16:39 +0000 | [diff] [blame] | 2601 | IDecl->setInvalidDecl(); |
Anders Carlsson | 96e05bc | 2008-12-07 00:20:55 +0000 | [diff] [blame] | 2602 | } else { |
| 2603 | // C99 6.7.5.2p2: If an identifier is declared to be an object with |
| 2604 | // static storage duration, it shall not have a variable length array. |
| 2605 | if (IDecl->getStorageClass() == VarDecl::Static) { |
Anders Carlsson | 7fd1df2 | 2008-12-07 00:49:48 +0000 | [diff] [blame] | 2606 | Diag(IDecl->getLocation(), diag::err_vla_decl_has_static_storage) |
| 2607 | << SizeRange; |
Anders Carlsson | 96e05bc | 2008-12-07 00:20:55 +0000 | [diff] [blame] | 2608 | IDecl->setInvalidDecl(); |
| 2609 | } else if (IDecl->getStorageClass() == VarDecl::Extern) { |
Anders Carlsson | 7fd1df2 | 2008-12-07 00:49:48 +0000 | [diff] [blame] | 2610 | Diag(IDecl->getLocation(), diag::err_vla_decl_has_extern_linkage) |
| 2611 | << SizeRange; |
Anders Carlsson | 96e05bc | 2008-12-07 00:20:55 +0000 | [diff] [blame] | 2612 | IDecl->setInvalidDecl(); |
| 2613 | } |
| 2614 | } |
| 2615 | } else if (T->isVariablyModifiedType()) { |
| 2616 | if (IDecl->isFileVarDecl()) { |
| 2617 | Diag(IDecl->getLocation(), diag::err_vm_decl_in_file_scope); |
| 2618 | IDecl->setInvalidDecl(); |
| 2619 | } else { |
| 2620 | if (IDecl->getStorageClass() == VarDecl::Extern) { |
| 2621 | Diag(IDecl->getLocation(), diag::err_vm_decl_has_extern_linkage); |
| 2622 | IDecl->setInvalidDecl(); |
| 2623 | } |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2624 | } |
| 2625 | } |
Anders Carlsson | 96e05bc | 2008-12-07 00:20:55 +0000 | [diff] [blame] | 2626 | |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2627 | // Block scope. C99 6.7p7: If an identifier for an object is declared with |
| 2628 | // no linkage (C99 6.2.2p6), the type for the object shall be complete... |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 2629 | if (IDecl->isBlockVarDecl() && |
| 2630 | IDecl->getStorageClass() != VarDecl::Extern) { |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2631 | if (!IDecl->isInvalidDecl() && |
| 2632 | DiagnoseIncompleteType(IDecl->getLocation(), T, |
| 2633 | diag::err_typecheck_decl_incomplete_type)) |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2634 | IDecl->setInvalidDecl(); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2635 | } |
| 2636 | // File scope. C99 6.9.2p2: A declaration of an identifier for and |
| 2637 | // object that has file scope without an initializer, and without a |
| 2638 | // storage-class specifier or with the storage-class specifier "static", |
| 2639 | // constitutes a tentative definition. Note: A tentative definition with |
| 2640 | // external linkage is valid (C99 6.2.2p5). |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 2641 | if (isTentativeDefinition(IDecl)) { |
Eli Friedman | 9db1397 | 2008-02-15 12:53:51 +0000 | [diff] [blame] | 2642 | if (T->isIncompleteArrayType()) { |
Steve Naroff | 9a75f8a | 2008-01-18 20:40:52 +0000 | [diff] [blame] | 2643 | // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete |
| 2644 | // array to be completed. Don't issue a diagnostic. |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2645 | } else if (!IDecl->isInvalidDecl() && |
| 2646 | DiagnoseIncompleteType(IDecl->getLocation(), T, |
| 2647 | diag::err_typecheck_decl_incomplete_type)) |
Steve Naroff | 9a75f8a | 2008-01-18 20:40:52 +0000 | [diff] [blame] | 2648 | // C99 6.9.2p3: If the declaration of an identifier for an object is |
| 2649 | // a tentative definition and has internal linkage (C99 6.2.2p3), the |
| 2650 | // declared type shall not be an incomplete type. |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2651 | IDecl->setInvalidDecl(); |
Steve Naroff | bb20469 | 2007-09-12 14:07:44 +0000 | [diff] [blame] | 2652 | } |
Steve Naroff | ff9eb1f | 2008-08-08 17:50:35 +0000 | [diff] [blame] | 2653 | if (IDecl->isFileVarDecl()) |
| 2654 | CheckForFileScopedRedefinitions(S, IDecl); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2655 | } |
| 2656 | return NewGroup; |
| 2657 | } |
Steve Naroff | e1223f7 | 2007-08-28 03:03:08 +0000 | [diff] [blame] | 2658 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2659 | /// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator() |
| 2660 | /// to introduce parameters into function prototype scope. |
| 2661 | Sema::DeclTy * |
| 2662 | Sema::ActOnParamDeclarator(Scope *S, Declarator &D) { |
Chris Lattner | 985abd9 | 2008-06-26 06:49:43 +0000 | [diff] [blame] | 2663 | const DeclSpec &DS = D.getDeclSpec(); |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 2664 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2665 | // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'. |
Daniel Dunbar | 33ad012 | 2008-09-03 21:54:21 +0000 | [diff] [blame] | 2666 | VarDecl::StorageClass StorageClass = VarDecl::None; |
| 2667 | if (DS.getStorageClassSpec() == DeclSpec::SCS_register) { |
| 2668 | StorageClass = VarDecl::Register; |
| 2669 | } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2670 | Diag(DS.getStorageClassSpecLoc(), |
| 2671 | diag::err_invalid_storage_class_in_func_decl); |
Chris Lattner | 985abd9 | 2008-06-26 06:49:43 +0000 | [diff] [blame] | 2672 | D.getMutableDeclSpec().ClearStorageClassSpecs(); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2673 | } |
| 2674 | if (DS.isThreadSpecified()) { |
| 2675 | Diag(DS.getThreadSpecLoc(), |
| 2676 | diag::err_invalid_storage_class_in_func_decl); |
Chris Lattner | 985abd9 | 2008-06-26 06:49:43 +0000 | [diff] [blame] | 2677 | D.getMutableDeclSpec().ClearStorageClassSpecs(); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2678 | } |
| 2679 | |
Douglas Gregor | 6d6eb57 | 2008-05-07 04:49:29 +0000 | [diff] [blame] | 2680 | // Check that there are no default arguments inside the type of this |
| 2681 | // parameter (C++ only). |
| 2682 | if (getLangOptions().CPlusPlus) |
| 2683 | CheckExtraCXXDefaultArguments(D); |
| 2684 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2685 | // In this context, we *do not* check D.getInvalidType(). If the declarator |
| 2686 | // type was invalid, GetTypeForDeclarator() still returns a "valid" type, |
| 2687 | // though it will not reflect the user specified type. |
| 2688 | QualType parmDeclType = GetTypeForDeclarator(D, S); |
| 2689 | |
| 2690 | assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type"); |
| 2691 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2692 | // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope. |
| 2693 | // Can this happen for params? We already checked that they don't conflict |
| 2694 | // among each other. Here they can only shadow globals, which is ok. |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2695 | IdentifierInfo *II = D.getIdentifier(); |
Chris Lattner | cf79b01 | 2009-01-21 02:38:50 +0000 | [diff] [blame] | 2696 | if (II) { |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 2697 | if (NamedDecl *PrevDecl = LookupName(S, II, LookupOrdinaryName)) { |
Chris Lattner | cf79b01 | 2009-01-21 02:38:50 +0000 | [diff] [blame] | 2698 | if (PrevDecl->isTemplateParameter()) { |
| 2699 | // Maybe we will complain about the shadowed template parameter. |
| 2700 | DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl); |
| 2701 | // Just pretend that we didn't see the previous declaration. |
| 2702 | PrevDecl = 0; |
| 2703 | } else if (S->isDeclScope(PrevDecl)) { |
| 2704 | Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2705 | |
Chris Lattner | cf79b01 | 2009-01-21 02:38:50 +0000 | [diff] [blame] | 2706 | // Recover by removing the name |
| 2707 | II = 0; |
| 2708 | D.SetIdentifier(0, D.getIdentifierLoc()); |
| 2709 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2710 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2711 | } |
Steve Naroff | 6a9f3e3 | 2007-08-07 22:44:21 +0000 | [diff] [blame] | 2712 | |
| 2713 | // Perform the default function/array conversion (C99 6.7.5.3p[7,8]). |
| 2714 | // Doing the promotion here has a win and a loss. The win is the type for |
| 2715 | // both Decl's and DeclRefExpr's will match (a convenient invariant for the |
| 2716 | // code generator). The loss is the orginal type isn't preserved. For example: |
| 2717 | // |
| 2718 | // void func(int parmvardecl[5]) { // convert "int [5]" to "int *" |
| 2719 | // int blockvardecl[5]; |
| 2720 | // sizeof(parmvardecl); // size == 4 |
| 2721 | // sizeof(blockvardecl); // size == 20 |
| 2722 | // } |
| 2723 | // |
| 2724 | // For expressions, all implicit conversions are captured using the |
| 2725 | // ImplicitCastExpr AST node (we have no such mechanism for Decl's). |
| 2726 | // |
| 2727 | // FIXME: If a source translation tool needs to see the original type, then |
| 2728 | // we need to consider storing both types (in ParmVarDecl)... |
| 2729 | // |
Chris Lattner | e632774 | 2008-04-02 05:18:44 +0000 | [diff] [blame] | 2730 | if (parmDeclType->isArrayType()) { |
Chris Lattner | 529bd02 | 2008-01-02 22:50:48 +0000 | [diff] [blame] | 2731 | // int x[restrict 4] -> int *restrict |
Chris Lattner | e632774 | 2008-04-02 05:18:44 +0000 | [diff] [blame] | 2732 | parmDeclType = Context.getArrayDecayedType(parmDeclType); |
Chris Lattner | 529bd02 | 2008-01-02 22:50:48 +0000 | [diff] [blame] | 2733 | } else if (parmDeclType->isFunctionType()) |
Steve Naroff | 6a9f3e3 | 2007-08-07 22:44:21 +0000 | [diff] [blame] | 2734 | parmDeclType = Context.getPointerType(parmDeclType); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2735 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2736 | ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext, |
| 2737 | D.getIdentifierLoc(), II, |
Daniel Dunbar | 33ad012 | 2008-09-03 21:54:21 +0000 | [diff] [blame] | 2738 | parmDeclType, StorageClass, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 2739 | 0); |
Anders Carlsson | f78915f | 2008-02-15 07:04:12 +0000 | [diff] [blame] | 2740 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2741 | if (D.getInvalidType()) |
Steve Naroff | 53a3234 | 2007-08-28 18:45:29 +0000 | [diff] [blame] | 2742 | New->setInvalidDecl(); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2743 | |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 2744 | // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1). |
| 2745 | if (D.getCXXScopeSpec().isSet()) { |
| 2746 | Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator) |
| 2747 | << D.getCXXScopeSpec().getRange(); |
| 2748 | New->setInvalidDecl(); |
| 2749 | } |
| 2750 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2751 | // Add the parameter declaration into this scope. |
| 2752 | S->AddDecl(New); |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 2753 | if (II) |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2754 | IdResolver.AddDecl(New); |
Nate Begeman | b7894b5 | 2008-02-17 21:20:31 +0000 | [diff] [blame] | 2755 | |
Chris Lattner | 3ff30c8 | 2008-06-29 00:02:00 +0000 | [diff] [blame] | 2756 | ProcessDeclAttributes(New, D); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2757 | return New; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2758 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2759 | } |
Fariborz Jahanian | 306d68f | 2007-11-08 23:49:49 +0000 | [diff] [blame] | 2760 | |
Douglas Gregor | be109b3 | 2009-01-23 16:23:13 +0000 | [diff] [blame] | 2761 | void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2762 | assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 2763 | "Not a function declarator!"); |
| 2764 | DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun; |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2765 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2766 | // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared' |
| 2767 | // for a K&R function. |
| 2768 | if (!FTI.hasPrototype) { |
| 2769 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2770 | if (FTI.ArgInfo[i].Param == 0) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2771 | Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared) |
| 2772 | << FTI.ArgInfo[i].Ident; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2773 | // Implicitly declare the argument as type 'int' for lack of a better |
| 2774 | // type. |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2775 | DeclSpec DS; |
| 2776 | const char* PrevSpec; // unused |
| 2777 | DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc, |
| 2778 | PrevSpec); |
| 2779 | Declarator ParamD(DS, Declarator::KNRTypeListContext); |
| 2780 | ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc); |
Douglas Gregor | be109b3 | 2009-01-23 16:23:13 +0000 | [diff] [blame] | 2781 | FTI.ArgInfo[i].Param = ActOnParamDeclarator(S, ParamD); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2782 | } |
| 2783 | } |
Douglas Gregor | be109b3 | 2009-01-23 16:23:13 +0000 | [diff] [blame] | 2784 | } |
| 2785 | } |
| 2786 | |
| 2787 | Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) { |
| 2788 | assert(getCurFunctionDecl() == 0 && "Function parsing confused"); |
| 2789 | assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 2790 | "Not a function declarator!"); |
| 2791 | DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun; |
| 2792 | |
| 2793 | if (FTI.hasPrototype) { |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2794 | // FIXME: Diagnose arguments without names in C. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2795 | } |
| 2796 | |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 2797 | Scope *ParentScope = FnBodyScope->getParent(); |
Steve Naroff | adbbd0c | 2008-01-14 20:51:29 +0000 | [diff] [blame] | 2798 | |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2799 | return ActOnStartOfFunctionDef(FnBodyScope, |
Douglas Gregor | 584049d | 2008-12-15 23:53:10 +0000 | [diff] [blame] | 2800 | ActOnDeclarator(ParentScope, D, 0, |
| 2801 | /*IsFunctionDefinition=*/true)); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 2802 | } |
| 2803 | |
| 2804 | Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) { |
| 2805 | Decl *decl = static_cast<Decl*>(D); |
Chris Lattner | e9ba323 | 2008-02-16 01:20:36 +0000 | [diff] [blame] | 2806 | FunctionDecl *FD = cast<FunctionDecl>(decl); |
Douglas Gregor | 6fc17ff | 2008-10-29 15:10:40 +0000 | [diff] [blame] | 2807 | |
| 2808 | // See if this is a redefinition. |
| 2809 | const FunctionDecl *Definition; |
| 2810 | if (FD->getBody(Definition)) { |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 2811 | Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName(); |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 2812 | Diag(Definition->getLocation(), diag::note_previous_definition); |
Douglas Gregor | 6fc17ff | 2008-10-29 15:10:40 +0000 | [diff] [blame] | 2813 | } |
| 2814 | |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 2815 | // Builtin functions cannot be defined. |
| 2816 | if (unsigned BuiltinID = FD->getBuiltinID(Context)) { |
Douglas Gregor | 655753a | 2009-02-17 16:03:01 +0000 | [diff] [blame] | 2817 | if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) { |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 2818 | Diag(FD->getLocation(), diag::err_builtin_definition) << FD; |
Douglas Gregor | 655753a | 2009-02-17 16:03:01 +0000 | [diff] [blame] | 2819 | FD->setInvalidDecl(); |
| 2820 | } |
Douglas Gregor | cda9c67 | 2009-02-16 17:45:42 +0000 | [diff] [blame] | 2821 | } |
| 2822 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2823 | PushDeclContext(FnBodyScope, FD); |
Anton Korobeynikov | 2f40270 | 2008-12-26 00:52:02 +0000 | [diff] [blame] | 2824 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2825 | // Check the validity of our function parameters |
| 2826 | CheckParmsForFunctionDef(FD); |
| 2827 | |
| 2828 | // Introduce our parameters into the function scope |
| 2829 | for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) { |
| 2830 | ParmVarDecl *Param = FD->getParamDecl(p); |
Douglas Gregor | a8cc8ce | 2009-01-09 18:51:29 +0000 | [diff] [blame] | 2831 | Param->setOwningFunction(FD); |
| 2832 | |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2833 | // If this has an identifier, add it to the scope stack. |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 2834 | if (Param->getIdentifier()) |
| 2835 | PushOnScopeChains(Param, FnBodyScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2836 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2837 | |
Anton Korobeynikov | 2f40270 | 2008-12-26 00:52:02 +0000 | [diff] [blame] | 2838 | // Checking attributes of current function definition |
| 2839 | // dllimport attribute. |
| 2840 | if (FD->getAttr<DLLImportAttr>() && (!FD->getAttr<DLLExportAttr>())) { |
| 2841 | // dllimport attribute cannot be applied to definition. |
| 2842 | if (!(FD->getAttr<DLLImportAttr>())->isInherited()) { |
| 2843 | Diag(FD->getLocation(), |
| 2844 | diag::err_attribute_can_be_applied_only_to_symbol_declaration) |
| 2845 | << "dllimport"; |
| 2846 | FD->setInvalidDecl(); |
| 2847 | return FD; |
| 2848 | } else { |
| 2849 | // If a symbol previously declared dllimport is later defined, the |
| 2850 | // attribute is ignored in subsequent references, and a warning is |
| 2851 | // emitted. |
| 2852 | Diag(FD->getLocation(), |
| 2853 | diag::warn_redeclaration_without_attribute_prev_attribute_ignored) |
| 2854 | << FD->getNameAsCString() << "dllimport"; |
| 2855 | } |
| 2856 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2857 | return FD; |
| 2858 | } |
| 2859 | |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 2860 | Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtArg BodyArg) { |
Steve Naroff | d6d054d | 2007-11-11 23:20:51 +0000 | [diff] [blame] | 2861 | Decl *dcl = static_cast<Decl *>(D); |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 2862 | Stmt *Body = static_cast<Stmt*>(BodyArg.release()); |
Steve Naroff | 394f3f4 | 2008-07-25 17:57:26 +0000 | [diff] [blame] | 2863 | if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) { |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 2864 | FD->setBody(Body); |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 2865 | assert(FD == getCurFunctionDecl() && "Function parsing confused"); |
Steve Naroff | 394f3f4 | 2008-07-25 17:57:26 +0000 | [diff] [blame] | 2866 | } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) { |
Chris Lattner | ffed163 | 2009-02-16 19:27:54 +0000 | [diff] [blame] | 2867 | assert(MD == getCurMethodDecl() && "Method parsing confused"); |
Steve Naroff | d6d054d | 2007-11-11 23:20:51 +0000 | [diff] [blame] | 2868 | MD->setBody((Stmt*)Body); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2869 | } else { |
| 2870 | Body->Destroy(Context); |
Steve Naroff | 394f3f4 | 2008-07-25 17:57:26 +0000 | [diff] [blame] | 2871 | return 0; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2872 | } |
Chris Lattner | b048c98 | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 2873 | PopDeclContext(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2874 | // Verify and clean out per-function state. |
| 2875 | |
| 2876 | // Check goto/label use. |
| 2877 | for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator |
| 2878 | I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) { |
| 2879 | // Verify that we have no forward references left. If so, there was a goto |
| 2880 | // or address of a label taken, but no definition of it. Label fwd |
| 2881 | // definitions are indicated with a null substmt. |
| 2882 | if (I->second->getSubStmt() == 0) { |
| 2883 | LabelStmt *L = I->second; |
| 2884 | // Emit error. |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 2885 | Diag(L->getIdentLoc(), diag::err_undeclared_label_use) << L->getName(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2886 | |
| 2887 | // At this point, we have gotos that use the bogus label. Stitch it into |
| 2888 | // the function body so that they aren't leaked and that the AST is well |
| 2889 | // formed. |
Chris Lattner | 0cbc215 | 2008-01-25 00:01:10 +0000 | [diff] [blame] | 2890 | if (Body) { |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2891 | #if 0 |
| 2892 | // FIXME: Why do this? Having a 'push_back' in CompoundStmt is ugly, |
| 2893 | // and the AST is malformed anyway. We should just blow away 'L'. |
| 2894 | L->setSubStmt(new (Context) NullStmt(L->getIdentLoc())); |
| 2895 | cast<CompoundStmt>(Body)->push_back(L); |
| 2896 | #else |
| 2897 | L->Destroy(Context); |
| 2898 | #endif |
Chris Lattner | 0cbc215 | 2008-01-25 00:01:10 +0000 | [diff] [blame] | 2899 | } else { |
| 2900 | // The whole function wasn't parsed correctly, just delete this. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2901 | L->Destroy(Context); |
Chris Lattner | 0cbc215 | 2008-01-25 00:01:10 +0000 | [diff] [blame] | 2902 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2903 | } |
| 2904 | } |
| 2905 | LabelMap.clear(); |
| 2906 | |
Steve Naroff | d6d054d | 2007-11-11 23:20:51 +0000 | [diff] [blame] | 2907 | return D; |
Fariborz Jahanian | 60fbca0 | 2007-11-10 16:31:34 +0000 | [diff] [blame] | 2908 | } |
| 2909 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2910 | /// ImplicitlyDefineFunction - An undeclared identifier was used in a function |
| 2911 | /// call, forming a call to an implicitly defined function (per C99 6.5.1p2). |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 2912 | NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc, |
| 2913 | IdentifierInfo &II, Scope *S) { |
Chris Lattner | 37d1084 | 2008-05-05 21:18:06 +0000 | [diff] [blame] | 2914 | // Extension in C99. Legal in C90, but warn about it. |
| 2915 | if (getLangOptions().C99) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2916 | Diag(Loc, diag::ext_implicit_function_decl) << &II; |
Chris Lattner | 37d1084 | 2008-05-05 21:18:06 +0000 | [diff] [blame] | 2917 | else |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 2918 | Diag(Loc, diag::warn_implicit_function_decl) << &II; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2919 | |
| 2920 | // FIXME: handle stuff like: |
| 2921 | // void foo() { extern float X(); } |
| 2922 | // void bar() { X(); } <-- implicit decl for X in another scope. |
| 2923 | |
| 2924 | // Set a Declarator for the implicit definition: int foo(); |
| 2925 | const char *Dummy; |
| 2926 | DeclSpec DS; |
| 2927 | bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy); |
| 2928 | Error = Error; // Silence warning. |
| 2929 | assert(!Error && "Error setting up implicit decl!"); |
| 2930 | Declarator D(DS, Declarator::BlockContext); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 2931 | D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc, D), |
| 2932 | SourceLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2933 | D.SetIdentifier(&II, Loc); |
Sebastian Redl | ab197ba | 2009-02-09 18:23:29 +0000 | [diff] [blame] | 2934 | |
Argyrios Kyrtzidis | 93213bb | 2008-05-01 21:04:16 +0000 | [diff] [blame] | 2935 | // Insert this function into translation-unit scope. |
| 2936 | |
| 2937 | DeclContext *PrevDC = CurContext; |
| 2938 | CurContext = Context.getTranslationUnitDecl(); |
| 2939 | |
Steve Naroff | e2ef815 | 2008-04-04 14:32:09 +0000 | [diff] [blame] | 2940 | FunctionDecl *FD = |
Daniel Dunbar | 914701e | 2008-08-05 16:28:08 +0000 | [diff] [blame] | 2941 | dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0))); |
Steve Naroff | e2ef815 | 2008-04-04 14:32:09 +0000 | [diff] [blame] | 2942 | FD->setImplicit(); |
Argyrios Kyrtzidis | 93213bb | 2008-05-01 21:04:16 +0000 | [diff] [blame] | 2943 | |
| 2944 | CurContext = PrevDC; |
| 2945 | |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2946 | AddKnownFunctionAttributes(FD); |
| 2947 | |
Steve Naroff | e2ef815 | 2008-04-04 14:32:09 +0000 | [diff] [blame] | 2948 | return FD; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2949 | } |
| 2950 | |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2951 | /// \brief Adds any function attributes that we know a priori based on |
| 2952 | /// the declaration of this function. |
| 2953 | /// |
| 2954 | /// These attributes can apply both to implicitly-declared builtins |
| 2955 | /// (like __builtin___printf_chk) or to library-declared functions |
| 2956 | /// like NSLog or printf. |
| 2957 | void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) { |
| 2958 | if (FD->isInvalidDecl()) |
| 2959 | return; |
| 2960 | |
| 2961 | // If this is a built-in function, map its builtin attributes to |
| 2962 | // actual attributes. |
| 2963 | if (unsigned BuiltinID = FD->getBuiltinID(Context)) { |
| 2964 | // Handle printf-formatting attributes. |
| 2965 | unsigned FormatIdx; |
| 2966 | bool HasVAListArg; |
| 2967 | if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) { |
| 2968 | if (!FD->getAttr<FormatAttr>()) |
| 2969 | FD->addAttr(new FormatAttr("printf", FormatIdx + 1, FormatIdx + 2)); |
| 2970 | } |
Daniel Dunbar | ef2abfe | 2009-02-16 22:43:43 +0000 | [diff] [blame] | 2971 | |
| 2972 | // Mark const if we don't care about errno and that is the only |
| 2973 | // thing preventing the function from being const. This allows |
| 2974 | // IRgen to use LLVM intrinsics for such functions. |
| 2975 | if (!getLangOptions().MathErrno && |
| 2976 | Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) { |
| 2977 | if (!FD->getAttr<ConstAttr>()) |
| 2978 | FD->addAttr(new ConstAttr()); |
| 2979 | } |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2980 | } |
| 2981 | |
| 2982 | IdentifierInfo *Name = FD->getIdentifier(); |
| 2983 | if (!Name) |
| 2984 | return; |
| 2985 | if ((!getLangOptions().CPlusPlus && |
| 2986 | FD->getDeclContext()->isTranslationUnit()) || |
| 2987 | (isa<LinkageSpecDecl>(FD->getDeclContext()) && |
| 2988 | cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() == |
| 2989 | LinkageSpecDecl::lang_c)) { |
| 2990 | // Okay: this could be a libc/libm/Objective-C function we know |
| 2991 | // about. |
| 2992 | } else |
| 2993 | return; |
| 2994 | |
| 2995 | unsigned KnownID; |
| 2996 | for (KnownID = 0; KnownID != id_num_known_functions; ++KnownID) |
| 2997 | if (KnownFunctionIDs[KnownID] == Name) |
| 2998 | break; |
| 2999 | |
| 3000 | switch (KnownID) { |
| 3001 | case id_NSLog: |
| 3002 | case id_NSLogv: |
| 3003 | if (const FormatAttr *Format = FD->getAttr<FormatAttr>()) { |
| 3004 | // FIXME: We known better than our headers. |
| 3005 | const_cast<FormatAttr *>(Format)->setType("printf"); |
| 3006 | } else |
| 3007 | FD->addAttr(new FormatAttr("printf", 1, 2)); |
| 3008 | break; |
| 3009 | |
| 3010 | case id_asprintf: |
| 3011 | case id_vasprintf: |
| 3012 | if (!FD->getAttr<FormatAttr>()) |
| 3013 | FD->addAttr(new FormatAttr("printf", 2, 3)); |
| 3014 | break; |
| 3015 | |
| 3016 | default: |
| 3017 | // Unknown function or known function without any attributes to |
| 3018 | // add. Do nothing. |
| 3019 | break; |
| 3020 | } |
| 3021 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3022 | |
Chris Lattner | 41af093 | 2007-11-14 06:34:38 +0000 | [diff] [blame] | 3023 | TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 3024 | Decl *LastDeclarator) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3025 | assert(D.getIdentifier() && "Wrong callback for declspec without declarator"); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 3026 | assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3027 | |
| 3028 | // Scope manipulation handled by caller. |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 3029 | TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext, |
| 3030 | D.getIdentifierLoc(), |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 3031 | D.getIdentifier(), |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 3032 | T); |
| 3033 | NewTD->setNextDeclarator(LastDeclarator); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 3034 | if (D.getInvalidType()) |
| 3035 | NewTD->setInvalidDecl(); |
| 3036 | return NewTD; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3037 | } |
| 3038 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3039 | /// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3040 | /// former case, Name will be non-null. In the later case, Name will be null. |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3041 | /// TagSpec indicates what kind of tag this is. TK indicates whether this is a |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3042 | /// reference/declaration/definition of a tag. |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3043 | Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagKind TK, |
Argyrios Kyrtzidis | eb83ecd | 2008-11-08 16:45:02 +0000 | [diff] [blame] | 3044 | SourceLocation KWLoc, const CXXScopeSpec &SS, |
| 3045 | IdentifierInfo *Name, SourceLocation NameLoc, |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 3046 | AttributeList *Attr) { |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3047 | // If this is not a definition, it must have a name. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3048 | assert((Name != 0 || TK == TK_Definition) && |
| 3049 | "Nameless record must be a definition!"); |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 3050 | |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 3051 | TagDecl::TagKind Kind; |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3052 | switch (TagSpec) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3053 | default: assert(0 && "Unknown tag type!"); |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 3054 | case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break; |
| 3055 | case DeclSpec::TST_union: Kind = TagDecl::TK_union; break; |
| 3056 | case DeclSpec::TST_class: Kind = TagDecl::TK_class; break; |
| 3057 | case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3058 | } |
| 3059 | |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 3060 | DeclContext *SearchDC = CurContext; |
Argyrios Kyrtzidis | 0f84a23 | 2008-11-09 22:53:32 +0000 | [diff] [blame] | 3061 | DeclContext *DC = CurContext; |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 3062 | NamedDecl *PrevDecl = 0; |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 3063 | |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3064 | bool Invalid = false; |
| 3065 | |
Argyrios Kyrtzidis | 630c81b | 2008-11-09 22:09:58 +0000 | [diff] [blame] | 3066 | if (Name && SS.isNotEmpty()) { |
| 3067 | // We have a nested-name tag ('struct foo::bar'). |
| 3068 | |
| 3069 | // Check for invalid 'foo::'. |
Argyrios Kyrtzidis | 0f84a23 | 2008-11-09 22:53:32 +0000 | [diff] [blame] | 3070 | if (SS.isInvalid()) { |
Argyrios Kyrtzidis | 630c81b | 2008-11-09 22:09:58 +0000 | [diff] [blame] | 3071 | Name = 0; |
| 3072 | goto CreateNewDecl; |
| 3073 | } |
| 3074 | |
Argyrios Kyrtzidis | 0f84a23 | 2008-11-09 22:53:32 +0000 | [diff] [blame] | 3075 | DC = static_cast<DeclContext*>(SS.getScopeRep()); |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 3076 | SearchDC = DC; |
Argyrios Kyrtzidis | 0f84a23 | 2008-11-09 22:53:32 +0000 | [diff] [blame] | 3077 | // Look-up name inside 'foo::'. |
Steve Naroff | 3e8ffd2 | 2009-01-29 00:07:50 +0000 | [diff] [blame] | 3078 | PrevDecl = dyn_cast_or_null<TagDecl>( |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 3079 | LookupQualifiedName(DC, Name, LookupTagName, true).getAsDecl()); |
Argyrios Kyrtzidis | 630c81b | 2008-11-09 22:09:58 +0000 | [diff] [blame] | 3080 | |
| 3081 | // A tag 'foo::bar' must already exist. |
| 3082 | if (PrevDecl == 0) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3083 | Diag(NameLoc, diag::err_not_tag_in_scope) << Name << SS.getRange(); |
Argyrios Kyrtzidis | 630c81b | 2008-11-09 22:09:58 +0000 | [diff] [blame] | 3084 | Name = 0; |
| 3085 | goto CreateNewDecl; |
| 3086 | } |
Chris Lattner | cf79b01 | 2009-01-21 02:38:50 +0000 | [diff] [blame] | 3087 | } else if (Name) { |
Argyrios Kyrtzidis | 630c81b | 2008-11-09 22:09:58 +0000 | [diff] [blame] | 3088 | // If this is a named struct, check to see if there was a previous forward |
| 3089 | // declaration or definition. |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 3090 | // FIXME: We're looking into outer scopes here, even when we |
| 3091 | // shouldn't be. Doing so can result in ambiguities that we |
| 3092 | // shouldn't be diagnosing. |
Douglas Gregor | e2c565d | 2009-02-03 19:26:08 +0000 | [diff] [blame] | 3093 | LookupResult R = LookupName(S, Name, LookupTagName, |
| 3094 | /*RedeclarationOnly=*/(TK != TK_Reference)); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 3095 | if (R.isAmbiguous()) { |
| 3096 | DiagnoseAmbiguousLookup(R, Name, NameLoc); |
| 3097 | // FIXME: This is not best way to recover from case like: |
| 3098 | // |
| 3099 | // struct S s; |
| 3100 | // |
| 3101 | // causes needless err_ovl_no_viable_function_in_init latter. |
| 3102 | Name = 0; |
| 3103 | PrevDecl = 0; |
| 3104 | Invalid = true; |
| 3105 | } |
| 3106 | else |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 3107 | PrevDecl = R; |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3108 | |
| 3109 | if (!getLangOptions().CPlusPlus && TK != TK_Reference) { |
| 3110 | // FIXME: This makes sure that we ignore the contexts associated |
| 3111 | // with C structs, unions, and enums when looking for a matching |
| 3112 | // tag declaration or definition. See the similar lookup tweak |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 3113 | // in Sema::LookupName; is there a better way to deal with this? |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 3114 | while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC)) |
| 3115 | SearchDC = SearchDC->getParent(); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3116 | } |
Argyrios Kyrtzidis | 630c81b | 2008-11-09 22:09:58 +0000 | [diff] [blame] | 3117 | } |
| 3118 | |
Douglas Gregor | f57172b | 2008-12-08 18:40:42 +0000 | [diff] [blame] | 3119 | if (PrevDecl && PrevDecl->isTemplateParameter()) { |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 3120 | // Maybe we will complain about the shadowed template parameter. |
| 3121 | DiagnoseTemplateParameterShadow(NameLoc, PrevDecl); |
| 3122 | // Just pretend that we didn't see the previous declaration. |
| 3123 | PrevDecl = 0; |
| 3124 | } |
| 3125 | |
Chris Lattner | 22bd905 | 2009-02-16 22:07:16 +0000 | [diff] [blame] | 3126 | if (PrevDecl) { |
| 3127 | // If the previous declaration was deprecated, emit a warning. |
| 3128 | DiagnoseUseOfDeprecatedDecl(PrevDecl, NameLoc); |
| 3129 | |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 3130 | if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) { |
Chris Lattner | 14943b9 | 2008-07-03 03:30:58 +0000 | [diff] [blame] | 3131 | // If this is a use of a previous tag, or if the tag is already declared |
| 3132 | // in the same scope (so that the definition/declaration completes or |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 3133 | // rementions the tag), reuse the decl. |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 3134 | if (TK == TK_Reference || isDeclInScope(PrevDecl, SearchDC, S)) { |
Chris Lattner | 14943b9 | 2008-07-03 03:30:58 +0000 | [diff] [blame] | 3135 | // Make sure that this wasn't declared as an enum and now used as a |
| 3136 | // struct or something similar. |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 3137 | if (PrevTagDecl->getTagKind() != Kind) { |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3138 | Diag(KWLoc, diag::err_use_with_wrong_tag) << Name; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 3139 | Diag(PrevDecl->getLocation(), diag::note_previous_use); |
Chris Lattner | 14943b9 | 2008-07-03 03:30:58 +0000 | [diff] [blame] | 3140 | // Recover by making this an anonymous redefinition. |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 3141 | Name = 0; |
Chris Lattner | 14943b9 | 2008-07-03 03:30:58 +0000 | [diff] [blame] | 3142 | PrevDecl = 0; |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3143 | Invalid = true; |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 3144 | } else { |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3145 | // If this is a use, just return the declaration we found. |
Chris Lattner | 14943b9 | 2008-07-03 03:30:58 +0000 | [diff] [blame] | 3146 | |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3147 | // FIXME: In the future, return a variant or some other clue |
| 3148 | // for the consumer of this Decl to know it doesn't own it. |
| 3149 | // For our current ASTs this shouldn't be a problem, but will |
| 3150 | // need to be changed with DeclGroups. |
| 3151 | if (TK == TK_Reference) |
Chris Lattner | 14943b9 | 2008-07-03 03:30:58 +0000 | [diff] [blame] | 3152 | return PrevDecl; |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 3153 | |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3154 | // Diagnose attempts to redefine a tag. |
| 3155 | if (TK == TK_Definition) { |
| 3156 | if (TagDecl *Def = PrevTagDecl->getDefinition(Context)) { |
| 3157 | Diag(NameLoc, diag::err_redefinition) << Name; |
| 3158 | Diag(Def->getLocation(), diag::note_previous_definition); |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3159 | // If this is a redefinition, recover by making this |
| 3160 | // struct be anonymous, which will make any later |
| 3161 | // references get the previous definition. |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3162 | Name = 0; |
| 3163 | PrevDecl = 0; |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3164 | Invalid = true; |
| 3165 | } else { |
| 3166 | // If the type is currently being defined, complain |
| 3167 | // about a nested redefinition. |
| 3168 | TagType *Tag = cast<TagType>(Context.getTagDeclType(PrevTagDecl)); |
| 3169 | if (Tag->isBeingDefined()) { |
| 3170 | Diag(NameLoc, diag::err_nested_redefinition) << Name; |
| 3171 | Diag(PrevTagDecl->getLocation(), |
| 3172 | diag::note_previous_definition); |
| 3173 | Name = 0; |
| 3174 | PrevDecl = 0; |
| 3175 | Invalid = true; |
| 3176 | } |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3177 | } |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3178 | |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3179 | // Okay, this is definition of a previously declared or referenced |
| 3180 | // tag PrevDecl. We're going to create a new Decl for it. |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3181 | } |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 3182 | } |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3183 | // If we get here we have (another) forward declaration or we |
| 3184 | // have a definition. Just create a new decl. |
| 3185 | } else { |
| 3186 | // If we get here, this is a definition of a new tag type in a nested |
| 3187 | // scope, e.g. "struct foo; void bar() { struct foo; }", just create a |
| 3188 | // new decl/type. We set PrevDecl to NULL so that the entities |
| 3189 | // have distinct types. |
| 3190 | PrevDecl = 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3191 | } |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3192 | // If we get here, we're going to create a new Decl. If PrevDecl |
| 3193 | // is non-NULL, it's a definition of the tag declared by |
| 3194 | // PrevDecl. If it's NULL, we have a new definition. |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 3195 | } else { |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 3196 | // PrevDecl is a namespace, template, or anything else |
| 3197 | // that lives in the IDNS_Tag identifier namespace. |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 3198 | if (isDeclInScope(PrevDecl, SearchDC, S)) { |
Ted Kremenek | a89d197 | 2008-09-03 18:03:35 +0000 | [diff] [blame] | 3199 | // The tag name clashes with a namespace name, issue an error and |
| 3200 | // recover by making this tag be anonymous. |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3201 | Diag(NameLoc, diag::err_redefinition_different_kind) << Name; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 3202 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Argyrios Kyrtzidis | b02ef24 | 2008-07-16 07:45:46 +0000 | [diff] [blame] | 3203 | Name = 0; |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3204 | PrevDecl = 0; |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3205 | Invalid = true; |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3206 | } else { |
| 3207 | // The existing declaration isn't relevant to us; we're in a |
| 3208 | // new scope, so clear out the previous declaration. |
| 3209 | PrevDecl = 0; |
Argyrios Kyrtzidis | b02ef24 | 2008-07-16 07:45:46 +0000 | [diff] [blame] | 3210 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3211 | } |
Douglas Gregor | 3218c4b | 2009-01-09 22:42:13 +0000 | [diff] [blame] | 3212 | } else if (TK == TK_Reference && SS.isEmpty() && Name && |
| 3213 | (Kind != TagDecl::TK_enum)) { |
| 3214 | // C++ [basic.scope.pdecl]p5: |
| 3215 | // -- for an elaborated-type-specifier of the form |
| 3216 | // |
| 3217 | // class-key identifier |
| 3218 | // |
| 3219 | // if the elaborated-type-specifier is used in the |
| 3220 | // decl-specifier-seq or parameter-declaration-clause of a |
| 3221 | // function defined in namespace scope, the identifier is |
| 3222 | // declared as a class-name in the namespace that contains |
| 3223 | // the declaration; otherwise, except as a friend |
| 3224 | // declaration, the identifier is declared in the smallest |
| 3225 | // non-class, non-function-prototype scope that contains the |
| 3226 | // declaration. |
| 3227 | // |
| 3228 | // C99 6.7.2.3p8 has a similar (but not identical!) provision for |
| 3229 | // C structs and unions. |
| 3230 | |
| 3231 | // Find the context where we'll be declaring the tag. |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 3232 | // FIXME: We would like to maintain the current DeclContext as the |
| 3233 | // lexical context, |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 3234 | while (SearchDC->isRecord()) |
| 3235 | SearchDC = SearchDC->getParent(); |
Douglas Gregor | 3218c4b | 2009-01-09 22:42:13 +0000 | [diff] [blame] | 3236 | |
| 3237 | // Find the scope where we'll be declaring the tag. |
| 3238 | while (S->isClassScope() || |
| 3239 | (getLangOptions().CPlusPlus && S->isFunctionPrototypeScope()) || |
Douglas Gregor | 1a0d31a | 2009-01-12 18:45:55 +0000 | [diff] [blame] | 3240 | ((S->getFlags() & Scope::DeclScope) == 0) || |
| 3241 | (S->getEntity() && |
| 3242 | ((DeclContext *)S->getEntity())->isTransparentContext())) |
Douglas Gregor | 3218c4b | 2009-01-09 22:42:13 +0000 | [diff] [blame] | 3243 | S = S->getParent(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3244 | } |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 3245 | |
Chris Lattner | cc98eac | 2008-12-17 07:13:27 +0000 | [diff] [blame] | 3246 | CreateNewDecl: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3247 | |
| 3248 | // If there is an identifier, use the location of the identifier as the |
| 3249 | // location of the decl, otherwise use the location of the struct/union |
| 3250 | // keyword. |
| 3251 | SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc; |
| 3252 | |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3253 | // Otherwise, create a new declaration. If there is a previous |
| 3254 | // declaration of the same entity, the two will be linked via |
| 3255 | // PrevDecl. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3256 | TagDecl *New; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 3257 | |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 3258 | if (Kind == TagDecl::TK_enum) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3259 | // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: |
| 3260 | // enum X { A, B, C } D; D should chain to X. |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 3261 | New = EnumDecl::Create(Context, SearchDC, Loc, Name, |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3262 | cast_or_null<EnumDecl>(PrevDecl)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3263 | // If this is an undefined enum, warn. |
| 3264 | if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum); |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 3265 | } else { |
| 3266 | // struct/union/class |
| 3267 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3268 | // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.: |
| 3269 | // struct X { int A; } D; D should chain to X. |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 3270 | if (getLangOptions().CPlusPlus) |
Ted Kremenek | 2b345eb | 2008-09-05 17:39:33 +0000 | [diff] [blame] | 3271 | // FIXME: Look for a way to use RecordDecl for simple structs. |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 3272 | New = CXXRecordDecl::Create(Context, Kind, SearchDC, Loc, Name, |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3273 | cast_or_null<CXXRecordDecl>(PrevDecl)); |
Douglas Gregor | ddc29e1 | 2009-02-06 22:42:48 +0000 | [diff] [blame] | 3274 | else |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 3275 | New = RecordDecl::Create(Context, Kind, SearchDC, Loc, Name, |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3276 | cast_or_null<RecordDecl>(PrevDecl)); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 3277 | } |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3278 | |
| 3279 | if (Kind != TagDecl::TK_enum) { |
| 3280 | // Handle #pragma pack: if the #pragma pack stack has non-default |
| 3281 | // alignment, make up a packed attribute for this decl. These |
| 3282 | // attributes are checked when the ASTContext lays out the |
| 3283 | // structure. |
| 3284 | // |
| 3285 | // It is important for implementing the correct semantics that this |
| 3286 | // happen here (in act on tag decl). The #pragma pack stack is |
| 3287 | // maintained as a result of parser callbacks which can occur at |
| 3288 | // many points during the parsing of a struct declaration (because |
| 3289 | // the #pragma tokens are effectively skipped over during the |
| 3290 | // parsing of the struct). |
Chris Lattner | 574aa40 | 2009-02-17 01:09:29 +0000 | [diff] [blame] | 3291 | if (unsigned Alignment = getPragmaPackAlignment()) |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3292 | New->addAttr(new PackedAttr(Alignment * 8)); |
| 3293 | } |
| 3294 | |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 3295 | if (getLangOptions().CPlusPlus && SS.isEmpty() && Name && !Invalid) { |
| 3296 | // C++ [dcl.typedef]p3: |
| 3297 | // [...] Similarly, in a given scope, a class or enumeration |
| 3298 | // shall not be declared with the same name as a typedef-name |
| 3299 | // that is declared in that scope and refers to a type other |
| 3300 | // than the class or enumeration itself. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 3301 | LookupResult Lookup = LookupName(S, Name, LookupOrdinaryName, true); |
Douglas Gregor | 6697312 | 2009-01-28 17:15:10 +0000 | [diff] [blame] | 3302 | TypedefDecl *PrevTypedef = 0; |
| 3303 | if (Lookup.getKind() == LookupResult::Found) |
| 3304 | PrevTypedef = dyn_cast<TypedefDecl>(Lookup.getAsDecl()); |
| 3305 | |
| 3306 | if (PrevTypedef && isDeclInScope(PrevTypedef, SearchDC, S) && |
| 3307 | Context.getCanonicalType(Context.getTypeDeclType(PrevTypedef)) != |
| 3308 | Context.getCanonicalType(Context.getTypeDeclType(New))) { |
| 3309 | Diag(Loc, diag::err_tag_definition_of_typedef) |
| 3310 | << Context.getTypeDeclType(New) |
| 3311 | << PrevTypedef->getUnderlyingType(); |
| 3312 | Diag(PrevTypedef->getLocation(), diag::note_previous_definition); |
| 3313 | Invalid = true; |
| 3314 | } |
| 3315 | } |
| 3316 | |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3317 | if (Invalid) |
| 3318 | New->setInvalidDecl(); |
| 3319 | |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3320 | if (Attr) |
| 3321 | ProcessDeclAttributeList(New, Attr); |
| 3322 | |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3323 | // If we're declaring or defining a tag in function prototype scope |
| 3324 | // in C, note that this type can only be used within the function. |
Douglas Gregor | 3218c4b | 2009-01-09 22:42:13 +0000 | [diff] [blame] | 3325 | if (Name && S->isFunctionPrototypeScope() && !getLangOptions().CPlusPlus) |
| 3326 | Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New); |
| 3327 | |
Douglas Gregor | 7df7b6b | 2008-12-15 16:32:14 +0000 | [diff] [blame] | 3328 | // Set the lexical context. If the tag has a C++ scope specifier, the |
| 3329 | // lexical context will be different from the semantic context. |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 3330 | New->setLexicalDeclContext(CurContext); |
Douglas Gregor | 0b7a158 | 2009-01-17 00:42:38 +0000 | [diff] [blame] | 3331 | |
| 3332 | if (TK == TK_Definition) |
| 3333 | New->startDefinition(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3334 | |
| 3335 | // If this has an identifier, add it to the scope stack. |
| 3336 | if (Name) { |
Douglas Gregor | 1a0d31a | 2009-01-12 18:45:55 +0000 | [diff] [blame] | 3337 | S = getNonFieldDeclScope(S); |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 3338 | PushOnScopeChains(New, S); |
Douglas Gregor | 4920f1f | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 3339 | } else { |
Douglas Gregor | 1931b44 | 2009-02-03 00:34:39 +0000 | [diff] [blame] | 3340 | CurContext->addDecl(New); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3341 | } |
Argyrios Kyrtzidis | 5239304 | 2008-11-09 23:41:00 +0000 | [diff] [blame] | 3342 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3343 | return New; |
| 3344 | } |
| 3345 | |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3346 | void Sema::ActOnTagStartDefinition(Scope *S, DeclTy *TagD) { |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 3347 | AdjustDeclIfTemplate(TagD); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3348 | TagDecl *Tag = cast<TagDecl>((Decl *)TagD); |
| 3349 | |
| 3350 | // Enter the tag context. |
| 3351 | PushDeclContext(S, Tag); |
| 3352 | |
| 3353 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Tag)) { |
| 3354 | FieldCollector->StartClass(); |
| 3355 | |
| 3356 | if (Record->getIdentifier()) { |
| 3357 | // C++ [class]p2: |
| 3358 | // [...] The class-name is also inserted into the scope of the |
| 3359 | // class itself; this is known as the injected-class-name. For |
| 3360 | // purposes of access checking, the injected-class-name is treated |
| 3361 | // as if it were a public member name. |
| 3362 | RecordDecl *InjectedClassName |
| 3363 | = CXXRecordDecl::Create(Context, Record->getTagKind(), |
| 3364 | CurContext, Record->getLocation(), |
| 3365 | Record->getIdentifier(), Record); |
| 3366 | InjectedClassName->setImplicit(); |
| 3367 | PushOnScopeChains(InjectedClassName, S); |
| 3368 | } |
| 3369 | } |
| 3370 | } |
| 3371 | |
| 3372 | void Sema::ActOnTagFinishDefinition(Scope *S, DeclTy *TagD) { |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 3373 | AdjustDeclIfTemplate(TagD); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3374 | TagDecl *Tag = cast<TagDecl>((Decl *)TagD); |
| 3375 | |
| 3376 | if (isa<CXXRecordDecl>(Tag)) |
| 3377 | FieldCollector->FinishClass(); |
| 3378 | |
| 3379 | // Exit this scope of this tag's definition. |
| 3380 | PopDeclContext(); |
| 3381 | |
| 3382 | // Notify the consumer that we've defined a tag. |
| 3383 | Consumer.HandleTagDeclDefinition(Tag); |
| 3384 | } |
Chris Lattner | 5a6ddbf | 2008-06-21 19:39:06 +0000 | [diff] [blame] | 3385 | |
Chris Lattner | 1d353ba | 2008-11-12 21:17:48 +0000 | [diff] [blame] | 3386 | /// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array |
| 3387 | /// types into constant array types in certain situations which would otherwise |
| 3388 | /// be errors (for GCC compatibility). |
| 3389 | static QualType TryToFixInvalidVariablyModifiedType(QualType T, |
| 3390 | ASTContext &Context) { |
Eli Friedman | 1b76ada | 2008-06-03 21:01:11 +0000 | [diff] [blame] | 3391 | // This method tries to turn a variable array into a constant |
| 3392 | // array even when the size isn't an ICE. This is necessary |
| 3393 | // for compatibility with code that depends on gcc's buggy |
| 3394 | // constant expression folding, like struct {char x[(int)(char*)2];} |
Chris Lattner | 57d5788 | 2008-11-12 19:48:13 +0000 | [diff] [blame] | 3395 | const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T); |
| 3396 | if (!VLATy) return QualType(); |
| 3397 | |
Anders Carlsson | 1c0cfd4 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 3398 | Expr::EvalResult EvalResult; |
Chris Lattner | 57d5788 | 2008-11-12 19:48:13 +0000 | [diff] [blame] | 3399 | if (!VLATy->getSizeExpr() || |
Anders Carlsson | 1c0cfd4 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 3400 | !VLATy->getSizeExpr()->Evaluate(EvalResult, Context)) |
Chris Lattner | 57d5788 | 2008-11-12 19:48:13 +0000 | [diff] [blame] | 3401 | return QualType(); |
| 3402 | |
Anders Carlsson | 1c0cfd4 | 2008-12-19 20:58:05 +0000 | [diff] [blame] | 3403 | assert(EvalResult.Val.isInt() && "Size expressions must be integers!"); |
| 3404 | llvm::APSInt &Res = EvalResult.Val.getInt(); |
Nuno Lopes | 1dfa6e1 | 2009-02-02 22:32:08 +0000 | [diff] [blame] | 3405 | if (Res >= llvm::APSInt(Res.getBitWidth(), Res.isUnsigned())) |
| 3406 | return Context.getConstantArrayType(VLATy->getElementType(), |
| 3407 | Res, ArrayType::Normal, 0); |
| 3408 | return QualType(); |
Eli Friedman | 1b76ada | 2008-06-03 21:01:11 +0000 | [diff] [blame] | 3409 | } |
| 3410 | |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3411 | bool Sema::VerifyBitField(SourceLocation FieldLoc, IdentifierInfo *FieldName, |
Chris Lattner | cd08707 | 2008-12-12 04:56:04 +0000 | [diff] [blame] | 3412 | QualType FieldTy, const Expr *BitWidth) { |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3413 | // FIXME: 6.7.2.1p4 - verify the field type. |
| 3414 | |
| 3415 | llvm::APSInt Value; |
| 3416 | if (VerifyIntegerConstantExpression(BitWidth, &Value)) |
| 3417 | return true; |
| 3418 | |
Chris Lattner | cd08707 | 2008-12-12 04:56:04 +0000 | [diff] [blame] | 3419 | // Zero-width bitfield is ok for anonymous field. |
| 3420 | if (Value == 0 && FieldName) |
| 3421 | return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName; |
| 3422 | |
| 3423 | if (Value.isNegative()) |
| 3424 | return Diag(FieldLoc, diag::err_bitfield_has_negative_width) << FieldName; |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3425 | |
| 3426 | uint64_t TypeSize = Context.getTypeSize(FieldTy); |
| 3427 | // FIXME: We won't need the 0 size once we check that the field type is valid. |
Chris Lattner | cd08707 | 2008-12-12 04:56:04 +0000 | [diff] [blame] | 3428 | if (TypeSize && Value.getZExtValue() > TypeSize) |
| 3429 | return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size) |
| 3430 | << FieldName << (unsigned)TypeSize; |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3431 | |
| 3432 | return false; |
| 3433 | } |
| 3434 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3435 | /// ActOnField - Each field of a struct/union/class is passed into this in order |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3436 | /// to create a FieldDecl object for it. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3437 | Sema::DeclTy *Sema::ActOnField(Scope *S, DeclTy *TagD, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3438 | SourceLocation DeclStart, |
| 3439 | Declarator &D, ExprTy *BitfieldWidth) { |
| 3440 | IdentifierInfo *II = D.getIdentifier(); |
| 3441 | Expr *BitWidth = (Expr*)BitfieldWidth; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3442 | SourceLocation Loc = DeclStart; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3443 | RecordDecl *Record = (RecordDecl *)TagD; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3444 | if (II) Loc = D.getIdentifierLoc(); |
| 3445 | |
| 3446 | // FIXME: Unnamed fields can be handled in various different ways, for |
| 3447 | // example, unnamed unions inject all members into the struct namespace! |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3448 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3449 | QualType T = GetTypeForDeclarator(D, S); |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 3450 | assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); |
| 3451 | bool InvalidDecl = false; |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 3452 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3453 | // C99 6.7.2.1p8: A member of a structure or union may have any type other |
| 3454 | // than a variably modified type. |
Eli Friedman | 9db1397 | 2008-02-15 12:53:51 +0000 | [diff] [blame] | 3455 | if (T->isVariablyModifiedType()) { |
Chris Lattner | 1d353ba | 2008-11-12 21:17:48 +0000 | [diff] [blame] | 3456 | QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context); |
Eli Friedman | 1b76ada | 2008-06-03 21:01:11 +0000 | [diff] [blame] | 3457 | if (!FixedTy.isNull()) { |
Chris Lattner | 23cd0d9 | 2008-11-13 18:49:38 +0000 | [diff] [blame] | 3458 | Diag(Loc, diag::warn_illegal_constant_array_size); |
Eli Friedman | 1b76ada | 2008-06-03 21:01:11 +0000 | [diff] [blame] | 3459 | T = FixedTy; |
| 3460 | } else { |
Chris Lattner | 23cd0d9 | 2008-11-13 18:49:38 +0000 | [diff] [blame] | 3461 | Diag(Loc, diag::err_typecheck_field_variable_size); |
Chris Lattner | 3ab5543 | 2008-11-12 19:45:49 +0000 | [diff] [blame] | 3462 | T = Context.IntTy; |
Eli Friedman | 1b76ada | 2008-06-03 21:01:11 +0000 | [diff] [blame] | 3463 | InvalidDecl = true; |
| 3464 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3465 | } |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3466 | |
| 3467 | if (BitWidth) { |
| 3468 | if (VerifyBitField(Loc, II, T, BitWidth)) |
| 3469 | InvalidDecl = true; |
| 3470 | } else { |
| 3471 | // Not a bitfield. |
| 3472 | |
| 3473 | // validate II. |
| 3474 | |
| 3475 | } |
| 3476 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3477 | // FIXME: Chain fielddecls together. |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 3478 | FieldDecl *NewFD; |
| 3479 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3480 | NewFD = FieldDecl::Create(Context, Record, |
| 3481 | Loc, II, T, BitWidth, |
| 3482 | D.getDeclSpec().getStorageClassSpec() == |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 3483 | DeclSpec::SCS_mutable); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3484 | |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3485 | if (II) { |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 3486 | NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3487 | if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S) |
| 3488 | && !isa<TagDecl>(PrevDecl)) { |
| 3489 | Diag(Loc, diag::err_duplicate_member) << II; |
| 3490 | Diag(PrevDecl->getLocation(), diag::note_previous_declaration); |
| 3491 | NewFD->setInvalidDecl(); |
| 3492 | Record->setInvalidDecl(); |
| 3493 | } |
| 3494 | } |
| 3495 | |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 3496 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 3497 | CheckExtraCXXDefaultArguments(D); |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 3498 | if (!T->isPODType()) |
| 3499 | cast<CXXRecordDecl>(Record)->setPOD(false); |
| 3500 | } |
Douglas Gregor | 72b505b | 2008-12-16 21:30:33 +0000 | [diff] [blame] | 3501 | |
Chris Lattner | 3ff30c8 | 2008-06-29 00:02:00 +0000 | [diff] [blame] | 3502 | ProcessDeclAttributes(NewFD, D); |
Anders Carlsson | ad14806 | 2008-02-16 00:29:18 +0000 | [diff] [blame] | 3503 | |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 3504 | if (D.getInvalidType() || InvalidDecl) |
| 3505 | NewFD->setInvalidDecl(); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3506 | |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3507 | if (II) { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3508 | PushOnScopeChains(NewFD, S); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3509 | } else |
Douglas Gregor | 482b77d | 2009-01-12 23:27:07 +0000 | [diff] [blame] | 3510 | Record->addDecl(NewFD); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3511 | |
Steve Naroff | 5912a35 | 2007-08-28 20:14:24 +0000 | [diff] [blame] | 3512 | return NewFD; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3513 | } |
| 3514 | |
Fariborz Jahanian | 89204a1 | 2007-10-01 16:53:59 +0000 | [diff] [blame] | 3515 | /// TranslateIvarVisibility - Translate visibility from a token ID to an |
| 3516 | /// AST enum value. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3517 | static ObjCIvarDecl::AccessControl |
Fariborz Jahanian | 89204a1 | 2007-10-01 16:53:59 +0000 | [diff] [blame] | 3518 | TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) { |
Steve Naroff | f13271f | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 3519 | switch (ivarVisibility) { |
Chris Lattner | 33d34a6 | 2008-10-12 00:28:42 +0000 | [diff] [blame] | 3520 | default: assert(0 && "Unknown visitibility kind"); |
| 3521 | case tok::objc_private: return ObjCIvarDecl::Private; |
| 3522 | case tok::objc_public: return ObjCIvarDecl::Public; |
| 3523 | case tok::objc_protected: return ObjCIvarDecl::Protected; |
| 3524 | case tok::objc_package: return ObjCIvarDecl::Package; |
Steve Naroff | f13271f | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 3525 | } |
| 3526 | } |
| 3527 | |
Fariborz Jahanian | 45bc03f | 2008-04-11 16:55:42 +0000 | [diff] [blame] | 3528 | /// ActOnIvar - Each ivar field of an objective-c class is passed into this |
| 3529 | /// in order to create an IvarDecl object for it. |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 3530 | Sema::DeclTy *Sema::ActOnIvar(Scope *S, |
Fariborz Jahanian | 45bc03f | 2008-04-11 16:55:42 +0000 | [diff] [blame] | 3531 | SourceLocation DeclStart, |
| 3532 | Declarator &D, ExprTy *BitfieldWidth, |
| 3533 | tok::ObjCKeywordKind Visibility) { |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3534 | |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 3535 | IdentifierInfo *II = D.getIdentifier(); |
| 3536 | Expr *BitWidth = (Expr*)BitfieldWidth; |
| 3537 | SourceLocation Loc = DeclStart; |
| 3538 | if (II) Loc = D.getIdentifierLoc(); |
| 3539 | |
| 3540 | // FIXME: Unnamed fields can be handled in various different ways, for |
| 3541 | // example, unnamed unions inject all members into the struct namespace! |
| 3542 | |
Anders Carlsson | 9f1e572 | 2008-12-06 20:33:04 +0000 | [diff] [blame] | 3543 | QualType T = GetTypeForDeclarator(D, S); |
| 3544 | assert(!T.isNull() && "GetTypeForDeclarator() returned null type"); |
| 3545 | bool InvalidDecl = false; |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 3546 | |
| 3547 | if (BitWidth) { |
| 3548 | // TODO: Validate. |
| 3549 | //printf("WARNING: BITFIELDS IGNORED!\n"); |
| 3550 | |
| 3551 | // 6.7.2.1p3 |
| 3552 | // 6.7.2.1p4 |
| 3553 | |
| 3554 | } else { |
| 3555 | // Not a bitfield. |
| 3556 | |
| 3557 | // validate II. |
| 3558 | |
| 3559 | } |
| 3560 | |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 3561 | // C99 6.7.2.1p8: A member of a structure or union may have any type other |
| 3562 | // than a variably modified type. |
| 3563 | if (T->isVariablyModifiedType()) { |
Anders Carlsson | 96e05bc | 2008-12-07 00:20:55 +0000 | [diff] [blame] | 3564 | Diag(Loc, diag::err_typecheck_ivar_variable_size); |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 3565 | InvalidDecl = true; |
| 3566 | } |
| 3567 | |
Ted Kremenek | b8db21d | 2008-07-23 18:04:17 +0000 | [diff] [blame] | 3568 | // Get the visibility (access control) for this ivar. |
| 3569 | ObjCIvarDecl::AccessControl ac = |
| 3570 | Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility) |
| 3571 | : ObjCIvarDecl::None; |
| 3572 | |
| 3573 | // Construct the decl. |
Argyrios Kyrtzidis | 0c00aac | 2009-02-17 20:20:37 +0000 | [diff] [blame] | 3574 | ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, CurContext, Loc, II, T,ac, |
Steve Naroff | 8f3b265 | 2008-07-16 18:22:22 +0000 | [diff] [blame] | 3575 | (Expr *)BitfieldWidth); |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 3576 | |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3577 | if (II) { |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 3578 | NamedDecl *PrevDecl = LookupName(S, II, LookupMemberName, true); |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3579 | if (PrevDecl && isDeclInScope(PrevDecl, CurContext, S) |
| 3580 | && !isa<TagDecl>(PrevDecl)) { |
| 3581 | Diag(Loc, diag::err_duplicate_member) << II; |
| 3582 | Diag(PrevDecl->getLocation(), diag::note_previous_declaration); |
| 3583 | NewID->setInvalidDecl(); |
| 3584 | } |
| 3585 | } |
| 3586 | |
Ted Kremenek | b8db21d | 2008-07-23 18:04:17 +0000 | [diff] [blame] | 3587 | // Process attributes attached to the ivar. |
Chris Lattner | 3ff30c8 | 2008-06-29 00:02:00 +0000 | [diff] [blame] | 3588 | ProcessDeclAttributes(NewID, D); |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 3589 | |
| 3590 | if (D.getInvalidType() || InvalidDecl) |
| 3591 | NewID->setInvalidDecl(); |
Ted Kremenek | b8db21d | 2008-07-23 18:04:17 +0000 | [diff] [blame] | 3592 | |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3593 | if (II) { |
| 3594 | // FIXME: When interfaces are DeclContexts, we'll need to add |
| 3595 | // these to the interface. |
| 3596 | S->AddDecl(NewID); |
| 3597 | IdResolver.AddDecl(NewID); |
| 3598 | } |
| 3599 | |
Fariborz Jahanian | 1d78cc4 | 2008-04-10 23:32:45 +0000 | [diff] [blame] | 3600 | return NewID; |
| 3601 | } |
| 3602 | |
Fariborz Jahanian | 9d048ff | 2007-09-29 00:54:24 +0000 | [diff] [blame] | 3603 | void Sema::ActOnFields(Scope* S, |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 3604 | SourceLocation RecLoc, DeclTy *RecDecl, |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3605 | DeclTy **Fields, unsigned NumFields, |
Daniel Dunbar | 1bfe1c2 | 2008-10-03 02:03:53 +0000 | [diff] [blame] | 3606 | SourceLocation LBrac, SourceLocation RBrac, |
Daniel Dunbar | 7d07664 | 2008-10-03 17:33:35 +0000 | [diff] [blame] | 3607 | AttributeList *Attr) { |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 3608 | Decl *EnclosingDecl = static_cast<Decl*>(RecDecl); |
| 3609 | assert(EnclosingDecl && "missing record or interface decl"); |
| 3610 | RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl); |
| 3611 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3612 | // Verify that all the fields are okay. |
| 3613 | unsigned NumNamedMembers = 0; |
| 3614 | llvm::SmallVector<FieldDecl*, 32> RecFields; |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 3615 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3616 | for (unsigned i = 0; i != NumFields; ++i) { |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 3617 | FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i])); |
| 3618 | assert(FD && "missing field decl"); |
| 3619 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3620 | // Get the type for the field. |
Chris Lattner | 02c642e | 2007-07-31 21:33:24 +0000 | [diff] [blame] | 3621 | Type *FDTy = FD->getType().getTypePtr(); |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 3622 | |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3623 | if (!FD->isAnonymousStructOrUnion()) { |
Douglas Gregor | 6b3945f | 2009-01-07 19:46:03 +0000 | [diff] [blame] | 3624 | // Remember all fields written by the user. |
| 3625 | RecFields.push_back(FD); |
| 3626 | } |
Steve Naroff | f13271f | 2007-09-14 23:09:53 +0000 | [diff] [blame] | 3627 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3628 | // C99 6.7.2.1p2 - A field may not be a function type. |
Chris Lattner | 02c642e | 2007-07-31 21:33:24 +0000 | [diff] [blame] | 3629 | if (FDTy->isFunctionType()) { |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 3630 | Diag(FD->getLocation(), diag::err_field_declared_as_function) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3631 | << FD->getDeclName(); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 3632 | FD->setInvalidDecl(); |
| 3633 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3634 | continue; |
| 3635 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3636 | // C99 6.7.2.1p2 - A field may not be an incomplete type except... |
| 3637 | if (FDTy->isIncompleteType()) { |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 3638 | if (!Record) { // Incomplete ivar type is always an error. |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3639 | DiagnoseIncompleteType(FD->getLocation(), FD->getType(), |
| 3640 | diag::err_field_incomplete); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 3641 | FD->setInvalidDecl(); |
| 3642 | EnclosingDecl->setInvalidDecl(); |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 3643 | continue; |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 3644 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3645 | if (i != NumFields-1 || // ... that the last member ... |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 3646 | !Record->isStruct() || // ... of a structure ... |
Chris Lattner | 02c642e | 2007-07-31 21:33:24 +0000 | [diff] [blame] | 3647 | !FDTy->isArrayType()) { //... may have incomplete array type. |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3648 | DiagnoseIncompleteType(FD->getLocation(), FD->getType(), |
| 3649 | diag::err_field_incomplete); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 3650 | FD->setInvalidDecl(); |
| 3651 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3652 | continue; |
| 3653 | } |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 3654 | if (NumNamedMembers < 1) { //... must have more than named member ... |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 3655 | Diag(FD->getLocation(), diag::err_flexible_array_empty_struct) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3656 | << FD->getDeclName(); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 3657 | FD->setInvalidDecl(); |
| 3658 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3659 | continue; |
| 3660 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3661 | // Okay, we have a legal flexible array member at the end of the struct. |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 3662 | if (Record) |
| 3663 | Record->setHasFlexibleArrayMember(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3664 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3665 | /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the |
| 3666 | /// field of another structure or the element of an array. |
Chris Lattner | 02c642e | 2007-07-31 21:33:24 +0000 | [diff] [blame] | 3667 | if (const RecordType *FDTTy = FDTy->getAsRecordType()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3668 | if (FDTTy->getDecl()->hasFlexibleArrayMember()) { |
| 3669 | // If this is a member of a union, then entire union becomes "flexible". |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 3670 | if (Record && Record->isUnion()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3671 | Record->setHasFlexibleArrayMember(true); |
| 3672 | } else { |
| 3673 | // If this is a struct/class and this is not the last element, reject |
| 3674 | // it. Note that GCC supports variable sized arrays in the middle of |
| 3675 | // structures. |
| 3676 | if (i != NumFields-1) { |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 3677 | Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3678 | << FD->getDeclName(); |
Steve Naroff | 7421664 | 2007-09-14 22:20:54 +0000 | [diff] [blame] | 3679 | FD->setInvalidDecl(); |
| 3680 | EnclosingDecl->setInvalidDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3681 | continue; |
| 3682 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3683 | // We support flexible arrays at the end of structs in other structs |
| 3684 | // as an extension. |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 3685 | Diag(FD->getLocation(), diag::ext_flexible_array_in_struct) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3686 | << FD->getDeclName(); |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 3687 | if (Record) |
Fariborz Jahanian | e267ab6 | 2007-09-14 16:27:55 +0000 | [diff] [blame] | 3688 | Record->setHasFlexibleArrayMember(true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3689 | } |
| 3690 | } |
| 3691 | } |
Fariborz Jahanian | e7f64cc | 2007-10-12 22:10:42 +0000 | [diff] [blame] | 3692 | /// A field cannot be an Objective-c object |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3693 | if (FDTy->isObjCInterfaceType()) { |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 3694 | Diag(FD->getLocation(), diag::err_statically_allocated_object) |
Chris Lattner | 08631c5 | 2008-11-23 21:45:46 +0000 | [diff] [blame] | 3695 | << FD->getDeclName(); |
Fariborz Jahanian | e7f64cc | 2007-10-12 22:10:42 +0000 | [diff] [blame] | 3696 | FD->setInvalidDecl(); |
| 3697 | EnclosingDecl->setInvalidDecl(); |
| 3698 | continue; |
| 3699 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3700 | // Keep track of the number of named members. |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3701 | if (FD->getIdentifier()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3702 | ++NumNamedMembers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3703 | } |
Sebastian Redl | 64b45f7 | 2009-01-05 20:52:13 +0000 | [diff] [blame] | 3704 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3705 | // Okay, we successfully defined 'Record'. |
Chris Lattner | e1e7985 | 2008-02-06 00:51:33 +0000 | [diff] [blame] | 3706 | if (Record) { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3707 | Record->completeDefinition(Context); |
Chris Lattner | e1e7985 | 2008-02-06 00:51:33 +0000 | [diff] [blame] | 3708 | } else { |
Chris Lattner | a91d381 | 2008-02-05 22:40:55 +0000 | [diff] [blame] | 3709 | ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]); |
Fariborz Jahanian | 60f8c86 | 2008-12-13 20:28:25 +0000 | [diff] [blame] | 3710 | if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) { |
Chris Lattner | a91d381 | 2008-02-05 22:40:55 +0000 | [diff] [blame] | 3711 | ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac); |
Fariborz Jahanian | 3281eff | 2008-12-16 01:08:35 +0000 | [diff] [blame] | 3712 | // Must enforce the rule that ivars in the base classes may not be |
| 3713 | // duplicates. |
Fariborz Jahanian | 375d37c | 2008-12-17 22:21:44 +0000 | [diff] [blame] | 3714 | if (ID->getSuperClass()) { |
| 3715 | for (ObjCInterfaceDecl::ivar_iterator IVI = ID->ivar_begin(), |
| 3716 | IVE = ID->ivar_end(); IVI != IVE; ++IVI) { |
| 3717 | ObjCIvarDecl* Ivar = (*IVI); |
| 3718 | IdentifierInfo *II = Ivar->getIdentifier(); |
Fariborz Jahanian | a5afdd0 | 2009-02-16 19:35:27 +0000 | [diff] [blame] | 3719 | ObjCIvarDecl* prevIvar = ID->getSuperClass()->lookupInstanceVariable(II); |
Fariborz Jahanian | 375d37c | 2008-12-17 22:21:44 +0000 | [diff] [blame] | 3720 | if (prevIvar) { |
| 3721 | Diag(Ivar->getLocation(), diag::err_duplicate_member) << II; |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 3722 | Diag(prevIvar->getLocation(), diag::note_previous_declaration); |
Fariborz Jahanian | 3281eff | 2008-12-16 01:08:35 +0000 | [diff] [blame] | 3723 | } |
Fariborz Jahanian | 375d37c | 2008-12-17 22:21:44 +0000 | [diff] [blame] | 3724 | } |
Fariborz Jahanian | 3281eff | 2008-12-16 01:08:35 +0000 | [diff] [blame] | 3725 | } |
Fariborz Jahanian | 60f8c86 | 2008-12-13 20:28:25 +0000 | [diff] [blame] | 3726 | } |
Chris Lattner | a91d381 | 2008-02-05 22:40:55 +0000 | [diff] [blame] | 3727 | else if (ObjCImplementationDecl *IMPDecl = |
| 3728 | dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3729 | assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl"); |
| 3730 | IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size()); |
Fariborz Jahanian | 3a3ca1b | 2007-10-31 18:48:14 +0000 | [diff] [blame] | 3731 | CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac); |
Fariborz Jahanian | d0b90bf | 2007-09-26 18:27:25 +0000 | [diff] [blame] | 3732 | } |
Fariborz Jahanian | b04a021 | 2007-09-14 21:08:27 +0000 | [diff] [blame] | 3733 | } |
Daniel Dunbar | 7d07664 | 2008-10-03 17:33:35 +0000 | [diff] [blame] | 3734 | |
| 3735 | if (Attr) |
| 3736 | ProcessDeclAttributeList(Record, Attr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3737 | } |
| 3738 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3739 | Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3740 | DeclTy *lastEnumConst, |
| 3741 | SourceLocation IdLoc, IdentifierInfo *Id, |
| 3742 | SourceLocation EqualLoc, ExprTy *val) { |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 3743 | EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3744 | EnumConstantDecl *LastEnumConst = |
| 3745 | cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst)); |
| 3746 | Expr *Val = static_cast<Expr*>(val); |
| 3747 | |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 3748 | // The scope passed in may not be a decl scope. Zip up the scope tree until |
| 3749 | // we find one that is. |
Douglas Gregor | 1a0d31a | 2009-01-12 18:45:55 +0000 | [diff] [blame] | 3750 | S = getNonFieldDeclScope(S); |
Chris Lattner | 31e0572 | 2007-08-26 06:24:45 +0000 | [diff] [blame] | 3751 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3752 | // Verify that there isn't already something declared with this name in this |
| 3753 | // scope. |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 3754 | NamedDecl *PrevDecl = LookupName(S, Id, LookupOrdinaryName); |
Douglas Gregor | f57172b | 2008-12-08 18:40:42 +0000 | [diff] [blame] | 3755 | if (PrevDecl && PrevDecl->isTemplateParameter()) { |
Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 3756 | // Maybe we will complain about the shadowed template parameter. |
| 3757 | DiagnoseTemplateParameterShadow(IdLoc, PrevDecl); |
| 3758 | // Just pretend that we didn't see the previous declaration. |
| 3759 | PrevDecl = 0; |
| 3760 | } |
| 3761 | |
| 3762 | if (PrevDecl) { |
Argyrios Kyrtzidis | 0ff12f0 | 2008-07-16 21:01:53 +0000 | [diff] [blame] | 3763 | // When in C++, we may get a TagDecl with the same name; in this case the |
| 3764 | // enum constant will 'hide' the tag. |
| 3765 | assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) && |
| 3766 | "Received TagDecl when not in C++!"); |
Argyrios Kyrtzidis | 15a12d0 | 2008-09-09 21:18:04 +0000 | [diff] [blame] | 3767 | if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3768 | if (isa<EnumConstantDecl>(PrevDecl)) |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3769 | Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3770 | else |
Chris Lattner | 3c73c41 | 2008-11-19 08:23:25 +0000 | [diff] [blame] | 3771 | Diag(IdLoc, diag::err_redefinition) << Id; |
Chris Lattner | 5f4a682 | 2008-11-23 23:12:31 +0000 | [diff] [blame] | 3772 | Diag(PrevDecl->getLocation(), diag::note_previous_definition); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3773 | Val->Destroy(Context); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3774 | return 0; |
| 3775 | } |
| 3776 | } |
| 3777 | |
| 3778 | llvm::APSInt EnumVal(32); |
| 3779 | QualType EltTy; |
| 3780 | if (Val) { |
Chris Lattner | 421a23d | 2007-08-27 21:16:18 +0000 | [diff] [blame] | 3781 | // Make sure to promote the operand type to int. |
| 3782 | UsualUnaryConversions(Val); |
| 3783 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3784 | // C99 6.7.2.2p2: Make sure we have an integer constant expression. |
| 3785 | SourceLocation ExpLoc; |
Anders Carlsson | 49184b2 | 2008-12-05 16:33:57 +0000 | [diff] [blame] | 3786 | if (VerifyIntegerConstantExpression(Val, &EnumVal)) { |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3787 | Val->Destroy(Context); |
Chris Lattner | b7416f9 | 2007-08-27 17:37:24 +0000 | [diff] [blame] | 3788 | Val = 0; // Just forget about it. |
Chris Lattner | e9ca851 | 2007-08-29 16:03:41 +0000 | [diff] [blame] | 3789 | } else { |
| 3790 | EltTy = Val->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3791 | } |
Chris Lattner | b7416f9 | 2007-08-27 17:37:24 +0000 | [diff] [blame] | 3792 | } |
| 3793 | |
| 3794 | if (!Val) { |
| 3795 | if (LastEnumConst) { |
| 3796 | // Assign the last value + 1. |
| 3797 | EnumVal = LastEnumConst->getInitVal(); |
| 3798 | ++EnumVal; |
Chris Lattner | 421a23d | 2007-08-27 21:16:18 +0000 | [diff] [blame] | 3799 | |
| 3800 | // Check for overflow on increment. |
| 3801 | if (EnumVal < LastEnumConst->getInitVal()) |
| 3802 | Diag(IdLoc, diag::warn_enum_value_overflow); |
| 3803 | |
Chris Lattner | b7416f9 | 2007-08-27 17:37:24 +0000 | [diff] [blame] | 3804 | EltTy = LastEnumConst->getType(); |
| 3805 | } else { |
| 3806 | // First value, set to zero. |
| 3807 | EltTy = Context.IntTy; |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3808 | EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy))); |
Chris Lattner | b7416f9 | 2007-08-27 17:37:24 +0000 | [diff] [blame] | 3809 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3810 | } |
| 3811 | |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 3812 | EnumConstantDecl *New = |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 3813 | EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy, |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 3814 | Val, EnumVal); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3815 | |
| 3816 | // Register this decl in the current scope stack. |
Argyrios Kyrtzidis | 87f3ff0 | 2008-04-12 00:47:19 +0000 | [diff] [blame] | 3817 | PushOnScopeChains(New, S); |
Douglas Gregor | 45579f5 | 2008-12-17 02:04:30 +0000 | [diff] [blame] | 3818 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3819 | return New; |
| 3820 | } |
| 3821 | |
Steve Naroff | 02408c6 | 2008-08-07 14:08:16 +0000 | [diff] [blame] | 3822 | // FIXME: For consistency with ActOnFields(), we should have the parser |
| 3823 | // pass in the source location for the left/right braces. |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3824 | void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3825 | DeclTy **Elements, unsigned NumElements) { |
| 3826 | EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX)); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 3827 | QualType EnumType = Context.getTypeDeclType(Enum); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3828 | |
Chris Lattner | e37f0be | 2007-08-28 05:10:31 +0000 | [diff] [blame] | 3829 | // TODO: If the result value doesn't fit in an int, it must be a long or long |
| 3830 | // long value. ISO C does not support this, but GCC does as an extension, |
| 3831 | // emit a warning. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3832 | unsigned IntWidth = Context.Target.getIntWidth(); |
Chris Lattner | e37f0be | 2007-08-28 05:10:31 +0000 | [diff] [blame] | 3833 | |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3834 | // Verify that all the values are okay, compute the size of the values, and |
| 3835 | // reverse the list. |
| 3836 | unsigned NumNegativeBits = 0; |
| 3837 | unsigned NumPositiveBits = 0; |
| 3838 | |
| 3839 | // Keep track of whether all elements have type int. |
| 3840 | bool AllElementsInt = true; |
| 3841 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3842 | for (unsigned i = 0; i != NumElements; ++i) { |
| 3843 | EnumConstantDecl *ECD = |
| 3844 | cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i])); |
| 3845 | if (!ECD) continue; // Already issued a diagnostic. |
Chris Lattner | 211a30e | 2007-08-28 05:27:00 +0000 | [diff] [blame] | 3846 | |
| 3847 | // If the enum value doesn't fit in an int, emit an extension warning. |
Chris Lattner | 211a30e | 2007-08-28 05:27:00 +0000 | [diff] [blame] | 3848 | const llvm::APSInt &InitVal = ECD->getInitVal(); |
Chris Lattner | a73349d | 2008-02-26 00:33:57 +0000 | [diff] [blame] | 3849 | assert(InitVal.getBitWidth() >= IntWidth && |
| 3850 | "Should have promoted value to int"); |
Chris Lattner | 211a30e | 2007-08-28 05:27:00 +0000 | [diff] [blame] | 3851 | if (InitVal.getBitWidth() > IntWidth) { |
| 3852 | llvm::APSInt V(InitVal); |
| 3853 | V.trunc(IntWidth); |
| 3854 | V.extend(InitVal.getBitWidth()); |
| 3855 | if (V != InitVal) |
Chris Lattner | f3a41af | 2008-11-20 06:38:18 +0000 | [diff] [blame] | 3856 | Diag(ECD->getLocation(), diag::ext_enum_value_not_int) |
| 3857 | << InitVal.toString(10); |
Chris Lattner | 211a30e | 2007-08-28 05:27:00 +0000 | [diff] [blame] | 3858 | } |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3859 | |
| 3860 | // Keep track of the size of positive and negative values. |
Chris Lattner | a73349d | 2008-02-26 00:33:57 +0000 | [diff] [blame] | 3861 | if (InitVal.isUnsigned() || InitVal.isNonNegative()) |
Chris Lattner | 21dd821 | 2008-01-14 21:47:29 +0000 | [diff] [blame] | 3862 | NumPositiveBits = std::max(NumPositiveBits, |
| 3863 | (unsigned)InitVal.getActiveBits()); |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3864 | else |
Chris Lattner | 21dd821 | 2008-01-14 21:47:29 +0000 | [diff] [blame] | 3865 | NumNegativeBits = std::max(NumNegativeBits, |
| 3866 | (unsigned)InitVal.getMinSignedBits()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3867 | |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3868 | // Keep track of whether every enum element has type int (very commmon). |
| 3869 | if (AllElementsInt) |
| 3870 | AllElementsInt = ECD->getType() == Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3871 | } |
| 3872 | |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3873 | // Figure out the type that should be used for this enum. |
| 3874 | // FIXME: Support attribute(packed) on enums and -fshort-enums. |
| 3875 | QualType BestType; |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3876 | unsigned BestWidth; |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3877 | |
| 3878 | if (NumNegativeBits) { |
| 3879 | // If there is a negative value, figure out the smallest integer type (of |
| 3880 | // int/long/longlong) that fits. |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3881 | if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) { |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3882 | BestType = Context.IntTy; |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3883 | BestWidth = IntWidth; |
| 3884 | } else { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3885 | BestWidth = Context.Target.getLongWidth(); |
Ted Kremenek | 9c728dc | 2007-12-12 22:39:36 +0000 | [diff] [blame] | 3886 | |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3887 | if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3888 | BestType = Context.LongTy; |
| 3889 | else { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3890 | BestWidth = Context.Target.getLongLongWidth(); |
Ted Kremenek | 9c728dc | 2007-12-12 22:39:36 +0000 | [diff] [blame] | 3891 | |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3892 | if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3893 | Diag(Enum->getLocation(), diag::warn_enum_too_large); |
| 3894 | BestType = Context.LongLongTy; |
| 3895 | } |
| 3896 | } |
| 3897 | } else { |
| 3898 | // If there is no negative value, figure out which of uint, ulong, ulonglong |
| 3899 | // fits. |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3900 | if (NumPositiveBits <= IntWidth) { |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3901 | BestType = Context.UnsignedIntTy; |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3902 | BestWidth = IntWidth; |
| 3903 | } else if (NumPositiveBits <= |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3904 | (BestWidth = Context.Target.getLongWidth())) { |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3905 | BestType = Context.UnsignedLongTy; |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3906 | } else { |
| 3907 | BestWidth = Context.Target.getLongLongWidth(); |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3908 | assert(NumPositiveBits <= BestWidth && |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3909 | "How could an initializer get larger than ULL?"); |
| 3910 | BestType = Context.UnsignedLongLongTy; |
| 3911 | } |
| 3912 | } |
| 3913 | |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3914 | // Loop over all of the enumerator constants, changing their types to match |
| 3915 | // the type of the enum if needed. |
| 3916 | for (unsigned i = 0; i != NumElements; ++i) { |
| 3917 | EnumConstantDecl *ECD = |
| 3918 | cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i])); |
| 3919 | if (!ECD) continue; // Already issued a diagnostic. |
| 3920 | |
| 3921 | // Standard C says the enumerators have int type, but we allow, as an |
| 3922 | // extension, the enumerators to be larger than int size. If each |
| 3923 | // enumerator value fits in an int, type it as an int, otherwise type it the |
| 3924 | // same as the enumerator decl itself. This means that in "enum { X = 1U }" |
| 3925 | // that X has type 'int', not 'unsigned'. |
Chris Lattner | a73349d | 2008-02-26 00:33:57 +0000 | [diff] [blame] | 3926 | if (ECD->getType() == Context.IntTy) { |
| 3927 | // Make sure the init value is signed. |
| 3928 | llvm::APSInt IV = ECD->getInitVal(); |
| 3929 | IV.setIsSigned(true); |
| 3930 | ECD->setInitVal(IV); |
Douglas Gregor | c9467cf | 2008-12-12 02:00:36 +0000 | [diff] [blame] | 3931 | |
| 3932 | if (getLangOptions().CPlusPlus) |
| 3933 | // C++ [dcl.enum]p4: Following the closing brace of an |
| 3934 | // enum-specifier, each enumerator has the type of its |
| 3935 | // enumeration. |
| 3936 | ECD->setType(EnumType); |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3937 | continue; // Already int type. |
Chris Lattner | a73349d | 2008-02-26 00:33:57 +0000 | [diff] [blame] | 3938 | } |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3939 | |
| 3940 | // Determine whether the value fits into an int. |
| 3941 | llvm::APSInt InitVal = ECD->getInitVal(); |
| 3942 | bool FitsInInt; |
| 3943 | if (InitVal.isUnsigned() || !InitVal.isNegative()) |
| 3944 | FitsInInt = InitVal.getActiveBits() < IntWidth; |
| 3945 | else |
| 3946 | FitsInInt = InitVal.getMinSignedBits() <= IntWidth; |
| 3947 | |
| 3948 | // If it fits into an integer type, force it. Otherwise force it to match |
| 3949 | // the enum decl type. |
| 3950 | QualType NewTy; |
| 3951 | unsigned NewWidth; |
| 3952 | bool NewSign; |
| 3953 | if (FitsInInt) { |
| 3954 | NewTy = Context.IntTy; |
| 3955 | NewWidth = IntWidth; |
| 3956 | NewSign = true; |
| 3957 | } else if (ECD->getType() == BestType) { |
| 3958 | // Already the right type! |
Douglas Gregor | c9467cf | 2008-12-12 02:00:36 +0000 | [diff] [blame] | 3959 | if (getLangOptions().CPlusPlus) |
| 3960 | // C++ [dcl.enum]p4: Following the closing brace of an |
| 3961 | // enum-specifier, each enumerator has the type of its |
| 3962 | // enumeration. |
| 3963 | ECD->setType(EnumType); |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3964 | continue; |
| 3965 | } else { |
| 3966 | NewTy = BestType; |
| 3967 | NewWidth = BestWidth; |
| 3968 | NewSign = BestType->isSignedIntegerType(); |
| 3969 | } |
| 3970 | |
| 3971 | // Adjust the APSInt value. |
| 3972 | InitVal.extOrTrunc(NewWidth); |
| 3973 | InitVal.setIsSigned(NewSign); |
| 3974 | ECD->setInitVal(InitVal); |
| 3975 | |
| 3976 | // Adjust the Expr initializer and type. |
Chris Lattner | 13fd416 | 2009-01-15 19:19:42 +0000 | [diff] [blame] | 3977 | if (ECD->getInitExpr()) |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3978 | ECD->setInitExpr(new (Context) ImplicitCastExpr(NewTy, ECD->getInitExpr(), |
| 3979 | /*isLvalue=*/false)); |
Douglas Gregor | c9467cf | 2008-12-12 02:00:36 +0000 | [diff] [blame] | 3980 | if (getLangOptions().CPlusPlus) |
| 3981 | // C++ [dcl.enum]p4: Following the closing brace of an |
| 3982 | // enum-specifier, each enumerator has the type of its |
| 3983 | // enumeration. |
| 3984 | ECD->setType(EnumType); |
| 3985 | else |
| 3986 | ECD->setType(NewTy); |
Chris Lattner | b7f6e08 | 2007-08-29 17:31:48 +0000 | [diff] [blame] | 3987 | } |
Chris Lattner | ac60968 | 2007-08-28 06:15:15 +0000 | [diff] [blame] | 3988 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3989 | Enum->completeDefinition(Context, BestType); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3990 | } |
| 3991 | |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 3992 | Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc, |
Sebastian Redl | 798d119 | 2008-12-13 16:23:55 +0000 | [diff] [blame] | 3993 | ExprArg expr) { |
| 3994 | StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr.release()); |
| 3995 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 3996 | return FileScopeAsmDecl::Create(Context, CurContext, Loc, AsmString); |
Anders Carlsson | dfab6cb | 2008-02-08 00:33:21 +0000 | [diff] [blame] | 3997 | } |
| 3998 | |