blob: 9c0a40e74abe89d341bc83c779e0e4bfd2e50b9a [file] [log] [blame]
Chris Lattner697e5d62006-11-09 06:32:27 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner697e5d62006-11-09 06:32:27 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattnere168f762006-11-10 05:29:30 +000014#include "Sema.h"
Anders Carlsson7a241ba2008-07-03 04:20:39 +000015#include "clang/AST/APValue.h"
Chris Lattner622c1932008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Chris Lattner5c5fbcc2006-12-03 08:41:30 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Chris Lattner2c6fcf52008-06-26 18:38:35 +000019#include "clang/AST/ExprCXX.h"
Chris Lattner591a6752006-11-19 23:16:18 +000020#include "clang/Parse/DeclSpec.h"
Daniel Dunbarc74b5cc2008-08-11 03:45:03 +000021#include "clang/Basic/Diagnostic.h"
Chris Lattner9561a0b2007-01-28 08:20:04 +000022#include "clang/Basic/TargetInfo.h"
Steve Naroffe101f952008-01-30 23:46:05 +000023#include "clang/Basic/SourceManager.h"
24// FIXME: layering (ideally, Sema shouldn't be dependent on Lex API's)
Chris Lattner622c1932008-02-06 00:51:33 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroffe101f952008-01-30 23:46:05 +000026#include "clang/Lex/HeaderSearch.h"
Chris Lattner38047f92007-01-27 06:24:01 +000027#include "llvm/ADT/SmallSet.h"
Daniel Dunbar54603742008-10-14 05:35:18 +000028#include "llvm/ADT/StringExtras.h"
Chris Lattner697e5d62006-11-09 06:32:27 +000029using namespace clang;
30
Douglas Gregorae2fbad2008-11-17 20:34:05 +000031Sema::TypeTy *Sema::isTypeName(IdentifierInfo &II, Scope *S,
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +000032 const CXXScopeSpec *SS) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000033 DeclContext *DC = 0;
34 if (SS) {
35 if (SS->isInvalid())
36 return 0;
37 DC = static_cast<DeclContext*>(SS->getScopeRep());
38 }
39 Decl *IIDecl = LookupDecl(&II, Decl::IDNS_Ordinary, S, DC, false);
Steve Naroff2fc93f52008-04-02 14:35:35 +000040
Douglas Gregor83a586e2008-04-13 21:07:44 +000041 if (IIDecl && (isa<TypedefDecl>(IIDecl) ||
42 isa<ObjCInterfaceDecl>(IIDecl) ||
43 isa<TagDecl>(IIDecl)))
Fariborz Jahaniand52cd412007-10-12 16:34:10 +000044 return IIDecl;
Steve Naroff09bf8152007-09-06 21:24:23 +000045 return 0;
Chris Lattnere168f762006-11-10 05:29:30 +000046}
47
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000048DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +000049 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000050 // A C++ out-of-line method will return to the file declaration context.
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +000051 if (MD->isOutOfLineDefinition())
52 return MD->getLexicalDeclContext();
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000053
54 // A C++ inline method is parsed *after* the topmost class it was declared in
55 // is fully parsed (it's "complete").
56 // The parsing of a C++ inline method happens at the declaration context of
57 // the topmost (non-nested) class it is declared in.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +000058 assert(isa<CXXRecordDecl>(MD->getParent()) && "C++ method not in Record.");
59 DC = MD->getParent();
60 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getParent()))
61 DC = RD;
62
63 // Return the declaration context of the topmost class the inline method is
64 // declared in.
65 return DC;
66 }
67
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +000068 if (isa<ObjCMethodDecl>(DC))
69 return Context.getTranslationUnitDecl();
70
71 if (ScopedDecl *SD = dyn_cast<ScopedDecl>(DC))
72 return SD->getLexicalDeclContext();
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000073
Argyrios Kyrtzidised983422008-07-01 10:37:29 +000074 return DC->getParent();
75}
76
Chris Lattnerbec41342008-04-22 18:39:57 +000077void Sema::PushDeclContext(DeclContext *DC) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000078 assert(getContainingDC(DC) == CurContext &&
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +000079 "The next DeclContext should be lexically contained in the current one.");
Chris Lattnerbec41342008-04-22 18:39:57 +000080 CurContext = DC;
Chris Lattnerc5ffed42008-04-04 06:12:32 +000081}
82
Chris Lattner0a5ff0d2008-04-06 04:47:34 +000083void Sema::PopDeclContext() {
84 assert(CurContext && "DeclContext imbalance!");
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +000085 CurContext = getContainingDC(CurContext);
Chris Lattnerc5ffed42008-04-04 06:12:32 +000086}
87
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +000088/// Add this decl to the scope shadowed decl chains.
89void Sema::PushOnScopeChains(NamedDecl *D, Scope *S) {
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +000090 S->AddDecl(D);
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +000091
92 // C++ [basic.scope]p4:
93 // -- exactly one declaration shall declare a class name or
94 // enumeration name that is not a typedef name and the other
95 // declarations shall all refer to the same object or
96 // enumerator, or all refer to functions and function templates;
97 // in this case the class name or enumeration name is hidden.
98 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
99 // We are pushing the name of a tag (enum or class).
Argyrios Kyrtzidisef34aed2008-07-17 17:49:50 +0000100 IdentifierResolver::iterator
101 I = IdResolver.begin(TD->getIdentifier(),
102 TD->getDeclContext(), false/*LookInParentCtx*/);
Argyrios Kyrtzidis5b144d52008-09-09 21:18:04 +0000103 if (I != IdResolver.end() && isDeclInScope(*I, TD->getDeclContext(), S)) {
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000104 // There is already a declaration with the same name in the same
105 // scope. It must be found before we find the new declaration,
106 // so swap the order on the shadowed declaration chain.
107
Argyrios Kyrtzidisef34aed2008-07-17 17:49:50 +0000108 IdResolver.AddShadowedDecl(TD, *I);
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000109 return;
110 }
Argyrios Kyrtzidis1a527ea2008-10-22 23:08:24 +0000111 } else if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) {
112 FunctionDecl *FD = cast<FunctionDecl>(D);
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000113 // We are pushing the name of a function, which might be an
114 // overloaded name.
115 IdentifierResolver::iterator
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000116 I = IdResolver.begin(FD->getDeclName(),
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000117 FD->getDeclContext(), false/*LookInParentCtx*/);
118 if (I != IdResolver.end() &&
119 IdResolver.isDeclInScope(*I, FD->getDeclContext(), S) &&
120 (isa<OverloadedFunctionDecl>(*I) || isa<FunctionDecl>(*I))) {
121 // There is already a declaration with the same name in the same
122 // scope. It must be a function or an overloaded function.
123 OverloadedFunctionDecl* Ovl = dyn_cast<OverloadedFunctionDecl>(*I);
124 if (!Ovl) {
125 // We haven't yet overloaded this function. Take the existing
126 // FunctionDecl and put it into an OverloadedFunctionDecl.
127 Ovl = OverloadedFunctionDecl::Create(Context,
128 FD->getDeclContext(),
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000129 FD->getDeclName());
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000130 Ovl->addOverload(dyn_cast<FunctionDecl>(*I));
131
132 // Remove the name binding to the existing FunctionDecl...
133 IdResolver.RemoveDecl(*I);
134
135 // ... and put the OverloadedFunctionDecl in its place.
136 IdResolver.AddDecl(Ovl);
137 }
138
139 // We have an OverloadedFunctionDecl. Add the new FunctionDecl
140 // to its list of overloads.
141 Ovl->addOverload(FD);
142
143 return;
144 }
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000145 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000146
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000147 IdResolver.AddDecl(D);
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +0000148}
149
Steve Naroffc62adb62007-10-09 22:01:59 +0000150void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000151 if (S->decl_empty()) return;
152 assert((S->getFlags() & Scope::DeclScope) &&"Scope shouldn't contain decls!");
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000153
Chris Lattner302b4be2006-11-19 02:31:38 +0000154 for (Scope::decl_iterator I = S->decl_begin(), E = S->decl_end();
155 I != E; ++I) {
Steve Naroff9324db12007-09-13 18:10:37 +0000156 Decl *TmpD = static_cast<Decl*>(*I);
157 assert(TmpD && "This decl didn't get pushed??");
Argyrios Kyrtzidis406fb232008-06-10 01:32:09 +0000158
159 if (isa<CXXFieldDecl>(TmpD)) continue;
160
161 assert(isa<ScopedDecl>(TmpD) && "Decl isn't ScopedDecl?");
162 ScopedDecl *D = cast<ScopedDecl>(TmpD);
Steve Naroff9324db12007-09-13 18:10:37 +0000163
Chris Lattnerff65b6b2007-01-23 01:33:16 +0000164 IdentifierInfo *II = D->getIdentifier();
165 if (!II) continue;
Chris Lattner302b4be2006-11-19 02:31:38 +0000166
Ted Kremenek3060d982008-09-03 18:03:35 +0000167 // We only want to remove the decls from the identifier decl chains for
168 // local scopes, when inside a function/method.
Argyrios Kyrtzidis406fb232008-06-10 01:32:09 +0000169 if (S->getFnParent() != 0)
170 IdResolver.RemoveDecl(D);
Chris Lattnerc5c95b52008-04-11 07:00:53 +0000171
Argyrios Kyrtzidis406fb232008-06-10 01:32:09 +0000172 // Chain this decl to the containing DeclContext.
173 D->setNext(CurContext->getDeclChain());
174 CurContext->setDeclChain(D);
Chris Lattner302b4be2006-11-19 02:31:38 +0000175 }
176}
177
Steve Naroff257520b2008-04-01 23:04:06 +0000178/// getObjCInterfaceDecl - Look up a for a class declaration in the scope.
179/// return 0 if one not found.
Steve Naroff257520b2008-04-01 23:04:06 +0000180ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *Id) {
Steve Naroff77892752008-04-02 18:30:49 +0000181 // The third "scope" argument is 0 since we aren't enabling lazy built-in
182 // creation from this context.
183 Decl *IDecl = LookupDecl(Id, Decl::IDNS_Ordinary, 0, false);
Fariborz Jahanianc7afeeb2007-10-12 19:38:20 +0000184
Steve Naroff2fc93f52008-04-02 14:35:35 +0000185 return dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
Fariborz Jahanianc7afeeb2007-10-12 19:38:20 +0000186}
187
Steve Naroff257520b2008-04-01 23:04:06 +0000188/// LookupDecl - Look up the inner-most declaration in the specified
Chris Lattner18b19622007-01-22 07:39:13 +0000189/// namespace.
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000190Decl *Sema::LookupDecl(DeclarationName Name, unsigned NSI, Scope *S,
Sebastian Redlc4704762008-11-11 11:37:55 +0000191 const DeclContext *LookupCtx,
192 bool enableLazyBuiltinCreation) {
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000193 if (!Name) return 0;
Douglas Gregor83a586e2008-04-13 21:07:44 +0000194 unsigned NS = NSI;
195 if (getLangOptions().CPlusPlus && (NS & Decl::IDNS_Ordinary))
196 NS |= Decl::IDNS_Tag;
Chris Lattnerc5c95b52008-04-11 07:00:53 +0000197
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000198 IdentifierResolver::iterator
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000199 I = LookupCtx ? IdResolver.begin(Name, LookupCtx, false/*LookInParentCtx*/)
200 : IdResolver.begin(Name, CurContext, true/*LookInParentCtx*/);
Chris Lattner18b19622007-01-22 07:39:13 +0000201 // Scan up the scope chain looking for a decl that matches this identifier
202 // that is in the appropriate namespace. This search should not take long, as
203 // shadowing of names is uncommon, and deep shadowing is extremely uncommon.
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000204 for (; I != IdResolver.end(); ++I)
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000205 if ((*I)->getIdentifierNamespace() & NS)
206 return *I;
Chris Lattnerc5c95b52008-04-11 07:00:53 +0000207
Chris Lattner9561a0b2007-01-28 08:20:04 +0000208 // If we didn't find a use of this identifier, and if the identifier
209 // corresponds to a compiler builtin, create the decl object for the builtin
210 // now, injecting it into translation unit scope, and return it.
Douglas Gregor83a586e2008-04-13 21:07:44 +0000211 if (NS & Decl::IDNS_Ordinary) {
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000212 IdentifierInfo *II = Name.getAsIdentifierInfo();
213 if (enableLazyBuiltinCreation && II &&
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000214 (LookupCtx == 0 || isa<TranslationUnitDecl>(LookupCtx))) {
Steve Naroff2fc93f52008-04-02 14:35:35 +0000215 // If this is a builtin on this (or all) targets, create the decl.
216 if (unsigned BuiltinID = II->getBuiltinID())
217 return LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID, S);
218 }
Douglas Gregorae2fbad2008-11-17 20:34:05 +0000219 if (getLangOptions().ObjC1 && II) {
Steve Naroff257520b2008-04-01 23:04:06 +0000220 // @interface and @compatibility_alias introduce typedef-like names.
221 // Unlike typedef's, they can only be introduced at file-scope (and are
Steve Naroff9b94b172008-04-02 00:39:51 +0000222 // therefore not scoped decls). They can, however, be shadowed by
Steve Naroff257520b2008-04-01 23:04:06 +0000223 // other names in IDNS_Ordinary.
Steve Naroff77892752008-04-02 18:30:49 +0000224 ObjCInterfaceDeclsTy::iterator IDI = ObjCInterfaceDecls.find(II);
225 if (IDI != ObjCInterfaceDecls.end())
226 return IDI->second;
Steve Naroff257520b2008-04-01 23:04:06 +0000227 ObjCAliasTy::iterator I = ObjCAliasDecls.find(II);
228 if (I != ObjCAliasDecls.end())
229 return I->second->getClassInterface();
230 }
Chris Lattner9561a0b2007-01-28 08:20:04 +0000231 }
Chris Lattner18b19622007-01-22 07:39:13 +0000232 return 0;
233}
234
Chris Lattner4dd27102008-05-05 22:18:14 +0000235void Sema::InitBuiltinVaListType() {
Anders Carlsson7e13ab82007-10-15 20:28:48 +0000236 if (!Context.getBuiltinVaListType().isNull())
237 return;
238
239 IdentifierInfo *VaIdent = &Context.Idents.get("__builtin_va_list");
Steve Naroff2fc93f52008-04-02 14:35:35 +0000240 Decl *VaDecl = LookupDecl(VaIdent, Decl::IDNS_Ordinary, TUScope);
Steve Naroffeee59eb2007-10-18 22:17:45 +0000241 TypedefDecl *VaTypedef = cast<TypedefDecl>(VaDecl);
Anders Carlsson7e13ab82007-10-15 20:28:48 +0000242 Context.setBuiltinVaListType(Context.getTypedefType(VaTypedef));
243}
244
Chris Lattner9561a0b2007-01-28 08:20:04 +0000245/// LazilyCreateBuiltin - The specified Builtin-ID was first used at file scope.
246/// lazily create a decl for it.
Chris Lattner9c7a0362007-10-10 23:42:28 +0000247ScopedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
248 Scope *S) {
Chris Lattner9561a0b2007-01-28 08:20:04 +0000249 Builtin::ID BID = (Builtin::ID)bid;
250
Chris Lattnerff2c1872008-09-28 05:54:29 +0000251 if (Context.BuiltinInfo.hasVAListUse(BID))
Anders Carlsson7e13ab82007-10-15 20:28:48 +0000252 InitBuiltinVaListType();
253
Anders Carlsson87c149b2007-10-11 01:00:40 +0000254 QualType R = Context.BuiltinInfo.GetBuiltinType(BID, Context);
Argyrios Kyrtzidis6d053032008-04-17 14:47:13 +0000255 FunctionDecl *New = FunctionDecl::Create(Context,
256 Context.getTranslationUnitDecl(),
Chris Lattnerc5ffed42008-04-04 06:12:32 +0000257 SourceLocation(), II, R,
Chris Lattner5072bae2008-03-15 21:24:04 +0000258 FunctionDecl::Extern, false, 0);
Chris Lattner9561a0b2007-01-28 08:20:04 +0000259
Chris Lattner4dd27102008-05-05 22:18:14 +0000260 // Create Decl objects for each parameter, adding them to the
261 // FunctionDecl.
262 if (FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(R)) {
263 llvm::SmallVector<ParmVarDecl*, 16> Params;
264 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i)
265 Params.push_back(ParmVarDecl::Create(Context, New, SourceLocation(), 0,
266 FT->getArgType(i), VarDecl::None, 0,
267 0));
268 New->setParams(&Params[0], Params.size());
269 }
270
271
272
Chris Lattnerc5c95b52008-04-11 07:00:53 +0000273 // TUScope is the translation-unit scope to insert this function into.
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000274 PushOnScopeChains(New, TUScope);
Chris Lattner9561a0b2007-01-28 08:20:04 +0000275 return New;
276}
277
Sebastian Redlc4704762008-11-11 11:37:55 +0000278/// GetStdNamespace - This method gets the C++ "std" namespace. This is where
279/// everything from the standard library is defined.
280NamespaceDecl *Sema::GetStdNamespace() {
281 if (!StdNamespace) {
282 DeclContext *Global = Context.getTranslationUnitDecl();
283 Decl *Std = LookupDecl(Ident_StdNs, Decl::IDNS_Tag | Decl::IDNS_Ordinary,
284 0, Global, /*enableLazyBuiltinCreation=*/false);
285 StdNamespace = dyn_cast_or_null<NamespaceDecl>(Std);
286 }
287 return StdNamespace;
288}
289
Chris Lattner01564d92007-01-27 19:27:06 +0000290/// MergeTypeDefDecl - We just parsed a typedef 'New' which has the same name
291/// and scope as a previous declaration 'Old'. Figure out how to resolve this
292/// situation, merging decls or emitting diagnostics as appropriate.
293///
Steve Naroff257520b2008-04-01 23:04:06 +0000294TypedefDecl *Sema::MergeTypeDefDecl(TypedefDecl *New, Decl *OldD) {
Steve Naroff44cfcb62008-09-09 14:32:20 +0000295 // Allow multiple definitions for ObjC built-in typedefs.
296 // FIXME: Verify the underlying types are equivalent!
297 if (getLangOptions().ObjC1) {
298 const IdentifierInfo *typeIdent = New->getIdentifier();
299 if (typeIdent == Ident_id) {
300 Context.setObjCIdType(New);
301 return New;
302 } else if (typeIdent == Ident_Class) {
303 Context.setObjCClassType(New);
304 return New;
305 } else if (typeIdent == Ident_SEL) {
306 Context.setObjCSelType(New);
307 return New;
308 } else if (typeIdent == Ident_Protocol) {
309 Context.setObjCProtoType(New->getUnderlyingType());
310 return New;
311 }
312 // Fall through - the typedef name was not a builtin type.
313 }
Chris Lattnerc511efb2007-01-27 19:32:14 +0000314 // Verify the old decl was also a typedef.
315 TypedefDecl *Old = dyn_cast<TypedefDecl>(OldD);
316 if (!Old) {
317 Diag(New->getLocation(), diag::err_redefinition_different_kind,
318 New->getName());
319 Diag(OldD->getLocation(), diag::err_previous_definition);
320 return New;
321 }
322
Chris Lattnerf9c49e52008-07-25 18:44:27 +0000323 // If the typedef types are not identical, reject them in all languages and
324 // with any extensions enabled.
325 if (Old->getUnderlyingType() != New->getUnderlyingType() &&
326 Context.getCanonicalType(Old->getUnderlyingType()) !=
327 Context.getCanonicalType(New->getUnderlyingType())) {
328 Diag(New->getLocation(), diag::err_redefinition_different_typedef,
329 New->getUnderlyingType().getAsString(),
330 Old->getUnderlyingType().getAsString());
331 Diag(Old->getLocation(), diag::err_previous_definition);
332 return Old;
333 }
334
Eli Friedman61b529f2008-06-11 06:20:39 +0000335 if (getLangOptions().Microsoft) return New;
336
Steve Naroffe101f952008-01-30 23:46:05 +0000337 // Redeclaration of a type is a constraint violation (6.7.2.3p1).
338 // Apparently GCC, Intel, and Sun all silently ignore the redeclaration if
339 // *either* declaration is in a system header. The code below implements
340 // this adhoc compatibility rule. FIXME: The following code will not
341 // work properly when compiling ".i" files (containing preprocessed output).
Daniel Dunbar84b70f72008-09-12 18:10:20 +0000342 if (PP.getDiagnostics().getSuppressSystemWarnings()) {
343 SourceManager &SrcMgr = Context.getSourceManager();
344 if (SrcMgr.isInSystemHeader(Old->getLocation()))
345 return New;
346 if (SrcMgr.isInSystemHeader(New->getLocation()))
347 return New;
348 }
Eli Friedman61b529f2008-06-11 06:20:39 +0000349
Ted Kremenek20ccc4c2008-05-23 21:28:18 +0000350 Diag(New->getLocation(), diag::err_redefinition, New->getName());
351 Diag(Old->getLocation(), diag::err_previous_definition);
Chris Lattner01564d92007-01-27 19:27:06 +0000352 return New;
353}
354
Chris Lattner2c6fcf52008-06-26 18:38:35 +0000355/// DeclhasAttr - returns true if decl Declaration already has the target
356/// attribute.
Chris Lattner84966392008-03-03 03:28:21 +0000357static bool DeclHasAttr(const Decl *decl, const Attr *target) {
358 for (const Attr *attr = decl->getAttrs(); attr; attr = attr->getNext())
359 if (attr->getKind() == target->getKind())
360 return true;
361
362 return false;
363}
364
365/// MergeAttributes - append attributes from the Old decl to the New one.
366static void MergeAttributes(Decl *New, Decl *Old) {
367 Attr *attr = const_cast<Attr*>(Old->getAttrs()), *tmp;
368
Chris Lattner84966392008-03-03 03:28:21 +0000369 while (attr) {
370 tmp = attr;
371 attr = attr->getNext();
372
373 if (!DeclHasAttr(New, tmp)) {
374 New->addAttr(tmp);
375 } else {
376 tmp->setNext(0);
377 delete(tmp);
378 }
379 }
Nuno Lopes3fe46512008-06-01 22:53:53 +0000380
381 Old->invalidateAttrs();
Chris Lattner84966392008-03-03 03:28:21 +0000382}
383
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000384/// MergeFunctionDecl - We just parsed a function 'New' from
385/// declarator D which has the same name and scope as a previous
386/// declaration 'Old'. Figure out how to resolve this situation,
387/// merging decls or emitting diagnostics as appropriate.
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000388/// Redeclaration will be set true if this New is a redeclaration OldD.
389///
390/// In C++, New and Old must be declarations that are not
391/// overloaded. Use IsOverload to determine whether New and Old are
392/// overloaded, and to select the Old declaration that New should be
393/// merged with.
Douglas Gregor89f238c2008-04-21 02:02:58 +0000394FunctionDecl *
395Sema::MergeFunctionDecl(FunctionDecl *New, Decl *OldD, bool &Redeclaration) {
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000396 assert(!isa<OverloadedFunctionDecl>(OldD) &&
397 "Cannot merge with an overloaded function declaration");
398
Douglas Gregor89f238c2008-04-21 02:02:58 +0000399 Redeclaration = false;
Chris Lattnerc511efb2007-01-27 19:32:14 +0000400 // Verify the old decl was also a function.
401 FunctionDecl *Old = dyn_cast<FunctionDecl>(OldD);
402 if (!Old) {
403 Diag(New->getLocation(), diag::err_redefinition_different_kind,
404 New->getName());
405 Diag(OldD->getLocation(), diag::err_previous_definition);
406 return New;
407 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000408
409 // Determine whether the previous declaration was a definition,
410 // implicit declaration, or a declaration.
411 diag::kind PrevDiag;
412 if (Old->isThisDeclarationADefinition())
413 PrevDiag = diag::err_previous_definition;
414 else if (Old->isImplicit())
415 PrevDiag = diag::err_previous_implicit_declaration;
416 else
417 PrevDiag = diag::err_previous_declaration;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000418
Chris Lattnerfc4379f2008-04-06 23:10:54 +0000419 QualType OldQType = Context.getCanonicalType(Old->getType());
420 QualType NewQType = Context.getCanonicalType(New->getType());
Chris Lattner5c3f1542007-11-20 19:04:50 +0000421
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000422 if (getLangOptions().CPlusPlus) {
423 // (C++98 13.1p2):
424 // Certain function declarations cannot be overloaded:
425 // -- Function declarations that differ only in the return type
426 // cannot be overloaded.
427 QualType OldReturnType
428 = cast<FunctionType>(OldQType.getTypePtr())->getResultType();
429 QualType NewReturnType
430 = cast<FunctionType>(NewQType.getTypePtr())->getResultType();
431 if (OldReturnType != NewReturnType) {
432 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
433 Diag(Old->getLocation(), PrevDiag);
434 return New;
435 }
436
437 const CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
438 const CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
439 if (OldMethod && NewMethod) {
440 // -- Member function declarations with the same name and the
441 // same parameter types cannot be overloaded if any of them
442 // is a static member function declaration.
443 if (OldMethod->isStatic() || NewMethod->isStatic()) {
444 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
445 Diag(Old->getLocation(), PrevDiag);
446 return New;
447 }
448 }
449
450 // (C++98 8.3.5p3):
451 // All declarations for a function shall agree exactly in both the
452 // return type and the parameter-type-list.
453 if (OldQType == NewQType) {
454 // We have a redeclaration.
455 MergeAttributes(New, Old);
456 Redeclaration = true;
457 return MergeCXXFunctionDecl(New, Old);
458 }
459
460 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregor89f238c2008-04-21 02:02:58 +0000461 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000462
463 // C: Function types need to be compatible, not identical. This handles
Steve Naroff012484d2008-01-14 20:51:29 +0000464 // duplicate function decls like "void f(int); void f(enum X);" properly.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000465 if (!getLangOptions().CPlusPlus &&
Eli Friedman47f77112008-08-22 00:56:42 +0000466 Context.typesAreCompatible(OldQType, NewQType)) {
Douglas Gregor89f238c2008-04-21 02:02:58 +0000467 MergeAttributes(New, Old);
468 Redeclaration = true;
Steve Naroff012484d2008-01-14 20:51:29 +0000469 return New;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000470 }
Chris Lattner45d561a2007-11-06 06:07:26 +0000471
Steve Naroff17832a42008-01-16 15:01:34 +0000472 // A function that has already been declared has been redeclared or defined
473 // with a different type- show appropriate diagnostic
Steve Naroff17832a42008-01-16 15:01:34 +0000474
Chris Lattner01564d92007-01-27 19:27:06 +0000475 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
476 // TODO: This is totally simplistic. It should handle merging functions
477 // together etc, merging extern int X; int X; ...
Steve Naroff17832a42008-01-16 15:01:34 +0000478 Diag(New->getLocation(), diag::err_conflicting_types, New->getName());
479 Diag(Old->getLocation(), PrevDiag);
Chris Lattner01564d92007-01-27 19:27:06 +0000480 return New;
481}
482
Steve Naroff5bb8f222008-08-08 17:50:35 +0000483/// Predicate for C "tentative" external object definitions (C99 6.9.2).
Steve Naroff63ebb3c2008-08-10 15:28:06 +0000484static bool isTentativeDefinition(VarDecl *VD) {
Steve Naroff5bb8f222008-08-08 17:50:35 +0000485 if (VD->isFileVarDecl())
486 return (!VD->getInit() &&
487 (VD->getStorageClass() == VarDecl::None ||
488 VD->getStorageClass() == VarDecl::Static));
489 return false;
490}
491
492/// CheckForFileScopedRedefinitions - Make sure we forgo redefinition errors
493/// when dealing with C "tentative" external object definitions (C99 6.9.2).
494void Sema::CheckForFileScopedRedefinitions(Scope *S, VarDecl *VD) {
495 bool VDIsTentative = isTentativeDefinition(VD);
Steve Naroff84e37352008-08-10 15:20:13 +0000496 bool VDIsIncompleteArray = VD->getType()->isIncompleteArrayType();
Steve Naroff5bb8f222008-08-08 17:50:35 +0000497
498 for (IdentifierResolver::iterator
499 I = IdResolver.begin(VD->getIdentifier(),
500 VD->getDeclContext(), false/*LookInParentCtx*/),
501 E = IdResolver.end(); I != E; ++I) {
Argyrios Kyrtzidis5b144d52008-09-09 21:18:04 +0000502 if (*I != VD && isDeclInScope(*I, VD->getDeclContext(), S)) {
Steve Naroff5bb8f222008-08-08 17:50:35 +0000503 VarDecl *OldDecl = dyn_cast<VarDecl>(*I);
504
Steve Naroff84e37352008-08-10 15:20:13 +0000505 // Handle the following case:
506 // int a[10];
507 // int a[]; - the code below makes sure we set the correct type.
508 // int a[11]; - this is an error, size isn't 10.
509 if (OldDecl && VDIsTentative && VDIsIncompleteArray &&
510 OldDecl->getType()->isConstantArrayType())
511 VD->setType(OldDecl->getType());
512
Steve Naroff5bb8f222008-08-08 17:50:35 +0000513 // Check for "tentative" definitions. We can't accomplish this in
514 // MergeVarDecl since the initializer hasn't been attached.
515 if (!OldDecl || isTentativeDefinition(OldDecl) || VDIsTentative)
516 continue;
517
518 // Handle __private_extern__ just like extern.
519 if (OldDecl->getStorageClass() != VarDecl::Extern &&
520 OldDecl->getStorageClass() != VarDecl::PrivateExtern &&
521 VD->getStorageClass() != VarDecl::Extern &&
522 VD->getStorageClass() != VarDecl::PrivateExtern) {
523 Diag(VD->getLocation(), diag::err_redefinition, VD->getName());
524 Diag(OldDecl->getLocation(), diag::err_previous_definition);
525 }
526 }
527 }
528}
529
Chris Lattner01564d92007-01-27 19:27:06 +0000530/// MergeVarDecl - We just parsed a variable 'New' which has the same name
531/// and scope as a previous declaration 'Old'. Figure out how to resolve this
532/// situation, merging decls or emitting diagnostics as appropriate.
533///
Steve Naroff5bb8f222008-08-08 17:50:35 +0000534/// Tentative definition rules (C99 6.9.2p2) are checked by
535/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
536/// definitions here, since the initializer hasn't been attached.
Steve Narofffc49d672007-04-01 21:27:45 +0000537///
Steve Naroff257520b2008-04-01 23:04:06 +0000538VarDecl *Sema::MergeVarDecl(VarDecl *New, Decl *OldD) {
Chris Lattnerc511efb2007-01-27 19:32:14 +0000539 // Verify the old decl was also a variable.
540 VarDecl *Old = dyn_cast<VarDecl>(OldD);
541 if (!Old) {
542 Diag(New->getLocation(), diag::err_redefinition_different_kind,
543 New->getName());
544 Diag(OldD->getLocation(), diag::err_previous_definition);
545 return New;
546 }
Chris Lattner84966392008-03-03 03:28:21 +0000547
548 MergeAttributes(New, Old);
549
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000550 // Verify the types match.
Chris Lattnerfc4379f2008-04-06 23:10:54 +0000551 QualType OldCType = Context.getCanonicalType(Old->getType());
552 QualType NewCType = Context.getCanonicalType(New->getType());
Steve Naroff239255d2008-08-09 16:04:40 +0000553 if (OldCType != NewCType && !Context.typesAreCompatible(OldCType, NewCType)) {
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000554 Diag(New->getLocation(), diag::err_redefinition, New->getName());
555 Diag(Old->getLocation(), diag::err_previous_definition);
556 return New;
557 }
Steve Naroff1e787362008-01-30 00:44:01 +0000558 // C99 6.2.2p4: Check if we have a static decl followed by a non-static.
559 if (New->getStorageClass() == VarDecl::Static &&
560 (Old->getStorageClass() == VarDecl::None ||
561 Old->getStorageClass() == VarDecl::Extern)) {
562 Diag(New->getLocation(), diag::err_static_non_static, New->getName());
563 Diag(Old->getLocation(), diag::err_previous_definition);
564 return New;
565 }
566 // C99 6.2.2p4: Check if we have a non-static decl followed by a static.
567 if (New->getStorageClass() != VarDecl::Static &&
568 Old->getStorageClass() == VarDecl::Static) {
569 Diag(New->getLocation(), diag::err_non_static_static, New->getName());
570 Diag(Old->getLocation(), diag::err_previous_definition);
571 return New;
572 }
Steve Naroffa5629372008-09-17 14:05:40 +0000573 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
574 if (New->getStorageClass() != VarDecl::Extern && !New->isFileVarDecl()) {
Steve Naroff6fbf0dc2007-03-16 00:33:25 +0000575 Diag(New->getLocation(), diag::err_redefinition, New->getName());
576 Diag(Old->getLocation(), diag::err_previous_definition);
577 }
Chris Lattner01564d92007-01-27 19:27:06 +0000578 return New;
579}
580
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000581/// CheckParmsForFunctionDef - Check that the parameters of the given
582/// function are appropriate for the definition of a function. This
583/// takes care of any checks that cannot be performed on the
584/// declaration itself, e.g., that the types of each of the function
585/// parameters are complete.
586bool Sema::CheckParmsForFunctionDef(FunctionDecl *FD) {
587 bool HasInvalidParm = false;
588 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
589 ParmVarDecl *Param = FD->getParamDecl(p);
590
591 // C99 6.7.5.3p4: the parameters in a parameter type list in a
592 // function declarator that is part of a function definition of
593 // that function shall not have incomplete type.
594 if (Param->getType()->isIncompleteType() &&
595 !Param->isInvalidDecl()) {
596 Diag(Param->getLocation(), diag::err_typecheck_decl_incomplete_type,
597 Param->getType().getAsString());
598 Param->setInvalidDecl();
599 HasInvalidParm = true;
600 }
601 }
602
603 return HasInvalidParm;
604}
605
Chris Lattnerb6738ec2007-01-28 00:38:24 +0000606/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
607/// no declarator (e.g. "struct foo;") is parsed.
608Sema::DeclTy *Sema::ParsedFreeStandingDeclSpec(Scope *S, DeclSpec &DS) {
609 // TODO: emit error on 'int;' or 'const enum foo;'.
610 // TODO: emit error on 'typedef int;'
611 // if (!DS.isMissingDeclaratorOk()) Diag(...);
612
Steve Naroff14f5f792007-11-17 21:37:36 +0000613 return dyn_cast_or_null<TagDecl>(static_cast<Decl *>(DS.getTypeRep()));
Chris Lattnerb6738ec2007-01-28 00:38:24 +0000614}
615
Steve Naroff98f72032008-01-10 22:15:12 +0000616bool Sema::CheckSingleInitializer(Expr *&Init, QualType DeclType) {
Steve Naroff2fea1392007-09-02 02:04:30 +0000617 // Get the type before calling CheckSingleAssignmentConstraints(), since
618 // it can promote the expression.
Chris Lattner9bad62c2008-01-04 18:04:52 +0000619 QualType InitType = Init->getType();
Steve Naroff2fea1392007-09-02 02:04:30 +0000620
Chris Lattner9bad62c2008-01-04 18:04:52 +0000621 AssignConvertType ConvTy = CheckSingleAssignmentConstraints(DeclType, Init);
622 return DiagnoseAssignmentResult(ConvTy, Init->getLocStart(), DeclType,
623 InitType, Init, "initializing");
Steve Naroff2fea1392007-09-02 02:04:30 +0000624}
625
Steve Naroffaf2a0222008-01-22 00:55:40 +0000626bool Sema::CheckStringLiteralInit(StringLiteral *strLiteral, QualType &DeclT) {
Chris Lattner7adf0762008-08-04 07:31:14 +0000627 const ArrayType *AT = Context.getAsArrayType(DeclT);
628
629 if (const IncompleteArrayType *IAT = dyn_cast<IncompleteArrayType>(AT)) {
Steve Naroffaf2a0222008-01-22 00:55:40 +0000630 // C99 6.7.8p14. We have an array of character type with unknown size
631 // being initialized to a string literal.
632 llvm::APSInt ConstVal(32);
633 ConstVal = strLiteral->getByteLength() + 1;
634 // Return a new array type (C99 6.7.8p22).
Eli Friedmanbd258282008-02-15 18:16:39 +0000635 DeclT = Context.getConstantArrayType(IAT->getElementType(), ConstVal,
Steve Naroffaf2a0222008-01-22 00:55:40 +0000636 ArrayType::Normal, 0);
Chris Lattner7adf0762008-08-04 07:31:14 +0000637 } else {
638 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
Steve Naroffaf2a0222008-01-22 00:55:40 +0000639 // C99 6.7.8p14. We have an array of character type with known size.
Chris Lattner7adf0762008-08-04 07:31:14 +0000640 // FIXME: Avoid truncation for 64-bit length strings.
641 if (strLiteral->getByteLength() > (unsigned)CAT->getSize().getZExtValue())
Steve Naroffaf2a0222008-01-22 00:55:40 +0000642 Diag(strLiteral->getSourceRange().getBegin(),
643 diag::warn_initializer_string_for_char_array_too_long,
644 strLiteral->getSourceRange());
Steve Naroffaf2a0222008-01-22 00:55:40 +0000645 }
646 // Set type from "char *" to "constant array of char".
647 strLiteral->setType(DeclT);
648 // For now, we always return false (meaning success).
649 return false;
650}
651
652StringLiteral *Sema::IsStringLiteralInit(Expr *Init, QualType DeclType) {
Chris Lattner7adf0762008-08-04 07:31:14 +0000653 const ArrayType *AT = Context.getAsArrayType(DeclType);
Steve Naroff78c6cdf2008-01-25 00:51:06 +0000654 if (AT && AT->getElementType()->isCharType()) {
655 return dyn_cast<StringLiteral>(Init);
656 }
Steve Naroffaf2a0222008-01-22 00:55:40 +0000657 return 0;
658}
659
Douglas Gregor6f543152008-11-05 15:29:30 +0000660bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType,
661 SourceLocation InitLoc,
662 std::string InitEntity) {
Douglas Gregor8e1cf602008-10-29 00:13:59 +0000663 // C++ [dcl.init.ref]p1:
664 // A variable declared to be a T&, that is “reference to type T”
665 // (8.3.2), shall be initialized by an object, or function, of
666 // type T or by an object that can be converted into a T.
667 if (DeclType->isReferenceType())
668 return CheckReferenceInit(Init, DeclType);
669
Steve Narofff9eb5982008-01-21 23:53:58 +0000670 // C99 6.7.8p3: The type of the entity to be initialized shall be an array
671 // of unknown size ("[]") or an object type that is not a variable array type.
Chris Lattner7adf0762008-08-04 07:31:14 +0000672 if (const VariableArrayType *VAT = Context.getAsVariableArrayType(DeclType))
Douglas Gregor6f543152008-11-05 15:29:30 +0000673 return Diag(InitLoc,
Steve Narofff9eb5982008-01-21 23:53:58 +0000674 diag::err_variable_object_no_init,
675 VAT->getSizeExpr()->getSourceRange());
676
Steve Naroff91f78082007-12-10 22:44:33 +0000677 InitListExpr *InitList = dyn_cast<InitListExpr>(Init);
678 if (!InitList) {
Steve Naroffaf2a0222008-01-22 00:55:40 +0000679 // FIXME: Handle wide strings
680 if (StringLiteral *strLiteral = IsStringLiteralInit(Init, DeclType))
681 return CheckStringLiteralInit(strLiteral, DeclType);
Eli Friedman42978262008-02-08 00:48:24 +0000682
Douglas Gregor6f543152008-11-05 15:29:30 +0000683 // C++ [dcl.init]p14:
684 // -- If the destination type is a (possibly cv-qualified) class
685 // type:
686 if (getLangOptions().CPlusPlus && DeclType->isRecordType()) {
687 QualType DeclTypeC = Context.getCanonicalType(DeclType);
688 QualType InitTypeC = Context.getCanonicalType(Init->getType());
689
690 // -- If the initialization is direct-initialization, or if it is
691 // copy-initialization where the cv-unqualified version of the
692 // source type is the same class as, or a derived class of, the
693 // class of the destination, constructors are considered.
694 if ((DeclTypeC.getUnqualifiedType() == InitTypeC.getUnqualifiedType()) ||
695 IsDerivedFrom(InitTypeC, DeclTypeC)) {
696 CXXConstructorDecl *Constructor
697 = PerformInitializationByConstructor(DeclType, &Init, 1,
698 InitLoc, Init->getSourceRange(),
699 InitEntity, IK_Copy);
700 return Constructor == 0;
701 }
702
703 // -- Otherwise (i.e., for the remaining copy-initialization
704 // cases), user-defined conversion sequences that can
705 // convert from the source type to the destination type or
706 // (when a conversion function is used) to a derived class
707 // thereof are enumerated as described in 13.3.1.4, and the
708 // best one is chosen through overload resolution
709 // (13.3). If the conversion cannot be done or is
710 // ambiguous, the initialization is ill-formed. The
711 // function selected is called with the initializer
712 // expression as its argument; if the function is a
713 // constructor, the call initializes a temporary of the
714 // destination type.
715 // FIXME: We're pretending to do copy elision here; return to
716 // this when we have ASTs for such things.
717 if (PerformImplicitConversion(Init, DeclType))
718 return Diag(InitLoc,
719 diag::err_typecheck_convert_incompatible,
720 DeclType.getAsString(), InitEntity,
721 "initializing",
722 Init->getSourceRange());
723 else
724 return false;
725 }
726
Steve Naroff38093af2008-09-29 20:07:05 +0000727 // C99 6.7.8p16.
Eli Friedman42978262008-02-08 00:48:24 +0000728 if (DeclType->isArrayType())
729 return Diag(Init->getLocStart(),
730 diag::err_array_init_list_required,
731 Init->getSourceRange());
732
Steve Naroff98f72032008-01-10 22:15:12 +0000733 return CheckSingleInitializer(Init, DeclType);
Douglas Gregorcfd8ddc2008-11-05 16:20:31 +0000734 } else if (getLangOptions().CPlusPlus) {
735 // C++ [dcl.init]p14:
736 // [...] If the class is an aggregate (8.5.1), and the initializer
737 // is a brace-enclosed list, see 8.5.1.
738 //
739 // Note: 8.5.1 is handled below; here, we diagnose the case where
740 // we have an initializer list and a destination type that is not
741 // an aggregate.
742 // FIXME: In C++0x, this is yet another form of initialization.
743 if (const RecordType *ClassRec = DeclType->getAsRecordType()) {
744 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(ClassRec->getDecl());
745 if (!ClassDecl->isAggregate())
746 return Diag(InitLoc,
747 diag::err_init_non_aggr_init_list,
748 DeclType.getAsString(),
749 Init->getSourceRange());
750 }
Steve Naroff91f78082007-12-10 22:44:33 +0000751 }
Eli Friedman01321c32008-06-06 19:40:52 +0000752
Steve Narofff8ecff22008-05-01 22:18:59 +0000753 InitListChecker CheckInitList(this, InitList, DeclType);
754 return CheckInitList.HadError();
Steve Naroff2fea1392007-09-02 02:04:30 +0000755}
756
Douglas Gregor92751d42008-11-17 22:58:34 +0000757/// GetNameForDeclarator - Determine the full declaration name for the
758/// given Declarator.
759DeclarationName Sema::GetNameForDeclarator(Declarator &D) {
760 switch (D.getKind()) {
761 case Declarator::DK_Abstract:
762 assert(D.getIdentifier() == 0 && "abstract declarators have no name");
763 return DeclarationName();
764
765 case Declarator::DK_Normal:
766 assert (D.getIdentifier() != 0 && "normal declarators have an identifier");
767 return DeclarationName(D.getIdentifier());
768
769 case Declarator::DK_Constructor: {
770 QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
771 Ty = Context.getCanonicalType(Ty);
772 return Context.DeclarationNames.getCXXConstructorName(Ty);
773 }
774
775 case Declarator::DK_Destructor: {
776 QualType Ty = Context.getTypeDeclType((TypeDecl *)D.getDeclaratorIdType());
777 Ty = Context.getCanonicalType(Ty);
778 return Context.DeclarationNames.getCXXDestructorName(Ty);
779 }
780
781 case Declarator::DK_Conversion: {
782 QualType Ty = QualType::getFromOpaquePtr(D.getDeclaratorIdType());
783 Ty = Context.getCanonicalType(Ty);
784 return Context.DeclarationNames.getCXXConversionFunctionName(Ty);
785 }
786 }
787
788 assert(false && "Unknown name kind");
789 return DeclarationName();
790}
791
Fariborz Jahanian56ff1462007-11-08 23:49:49 +0000792Sema::DeclTy *
Daniel Dunbar1ff1d1f2008-08-05 16:28:08 +0000793Sema::ActOnDeclarator(Scope *S, Declarator &D, DeclTy *lastDecl) {
Steve Naroffa23cc792007-09-13 23:52:58 +0000794 ScopedDecl *LastDeclarator = dyn_cast_or_null<ScopedDecl>((Decl *)lastDecl);
Douglas Gregor92751d42008-11-17 22:58:34 +0000795 DeclarationName Name = GetNameForDeclarator(D);
796
Chris Lattner02c04392007-07-25 00:24:17 +0000797 // All of these full declarators require an identifier. If it doesn't have
798 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor92751d42008-11-17 22:58:34 +0000799 if (!Name) {
Chris Lattner8c5dd732008-11-11 06:13:16 +0000800 if (!D.getInvalidType()) // Reject this if we think it is valid.
801 Diag(D.getDeclSpec().getSourceRange().getBegin(),
802 diag::err_declarator_need_ident,
803 D.getDeclSpec().getSourceRange(), D.getSourceRange());
Chris Lattner02c04392007-07-25 00:24:17 +0000804 return 0;
805 }
806
Chris Lattner1a76a3c2007-08-26 06:24:45 +0000807 // The scope passed in may not be a decl scope. Zip up the scope tree until
808 // we find one that is.
809 while ((S->getFlags() & Scope::DeclScope) == 0)
810 S = S->getParent();
811
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000812 DeclContext *DC;
813 Decl *PrevDecl;
Steve Naroff9324db12007-09-13 18:10:37 +0000814 ScopedDecl *New;
Steve Narofff93b6722007-08-28 20:14:24 +0000815 bool InvalidDecl = false;
Douglas Gregor83a586e2008-04-13 21:07:44 +0000816
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000817 // See if this is a redefinition of a variable in the same scope.
818 if (!D.getCXXScopeSpec().isSet()) {
819 DC = CurContext;
Douglas Gregor92751d42008-11-17 22:58:34 +0000820 PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000821 } else { // Something like "int foo::x;"
822 DC = static_cast<DeclContext*>(D.getCXXScopeSpec().getScopeRep());
Douglas Gregor92751d42008-11-17 22:58:34 +0000823 PrevDecl = LookupDecl(Name, Decl::IDNS_Ordinary, S, DC);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000824
825 // C++ 7.3.1.2p2:
826 // Members (including explicit specializations of templates) of a named
827 // namespace can also be defined outside that namespace by explicit
828 // qualification of the name being defined, provided that the entity being
829 // defined was already declared in the namespace and the definition appears
830 // after the point of declaration in a namespace that encloses the
831 // declarations namespace.
832 //
833 if (PrevDecl == 0) {
834 // No previous declaration in the qualifying scope.
835 Diag(D.getIdentifierLoc(), diag::err_typecheck_no_member,
Douglas Gregor92751d42008-11-17 22:58:34 +0000836 Name.getAsString(), D.getCXXScopeSpec().getRange());
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000837 } else if (!CurContext->Encloses(DC)) {
838 // The qualifying scope doesn't enclose the original declaration.
839 // Emit diagnostic based on current scope.
840 SourceLocation L = D.getIdentifierLoc();
841 SourceRange R = D.getCXXScopeSpec().getRange();
842 if (isa<FunctionDecl>(CurContext)) {
Douglas Gregor92751d42008-11-17 22:58:34 +0000843 Diag(L, diag::err_invalid_declarator_in_function, Name.getAsString(),
844 R);
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000845 } else {
Douglas Gregor92751d42008-11-17 22:58:34 +0000846 Diag(L, diag::err_invalid_declarator_scope, Name.getAsString(),
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000847 cast<NamedDecl>(DC)->getName(), R);
848 }
849 }
850 }
851
Douglas Gregor83a586e2008-04-13 21:07:44 +0000852 // In C++, the previous declaration we find might be a tag type
853 // (class or enum). In this case, the new declaration will hide the
854 // tag type.
855 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
856 PrevDecl = 0;
857
Chris Lattner07b201d2007-11-14 06:34:38 +0000858 QualType R = GetTypeForDeclarator(D, S);
859 assert(!R.isNull() && "GetTypeForDeclarator() returned null type");
860
Chris Lattner01a7c532007-01-25 23:09:03 +0000861 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +0000862 // Check that there are no default arguments (C++ only).
863 if (getLangOptions().CPlusPlus)
864 CheckExtraCXXDefaultArguments(D);
865
Chris Lattner07b201d2007-11-14 06:34:38 +0000866 TypedefDecl *NewTD = ParseTypedefDecl(S, D, R, LastDeclarator);
Chris Lattner01564d92007-01-27 19:27:06 +0000867 if (!NewTD) return 0;
Steve Naroffa8fd9732007-06-11 00:35:03 +0000868
869 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner2727d1b2008-06-29 00:02:00 +0000870 ProcessDeclAttributes(NewTD, D);
Steve Naroffe6b0ec82008-01-09 23:34:55 +0000871 // Merge the decl with the existing one if appropriate. If the decl is
872 // in an outer scope, it isn't the same thing.
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000873 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Chris Lattner01564d92007-01-27 19:27:06 +0000874 NewTD = MergeTypeDefDecl(NewTD, PrevDecl);
875 if (NewTD == 0) return 0;
876 }
877 New = NewTD;
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +0000878 if (S->getFnParent() == 0) {
Steve Naroff8eeeb132007-05-08 21:09:37 +0000879 // C99 6.7.7p2: If a typedef name specifies a variably modified type
880 // then it shall have block scope.
Eli Friedman9e805b22008-02-15 12:53:51 +0000881 if (NewTD->getUnderlyingType()->isVariablyModifiedType()) {
882 // FIXME: Diagnostic needs to be fixed.
883 Diag(D.getIdentifierLoc(), diag::err_typecheck_illegal_vla);
Steve Naroff096dd942007-08-31 17:20:07 +0000884 InvalidDecl = true;
Steve Naroff8eeeb132007-05-08 21:09:37 +0000885 }
886 }
Chris Lattner07b201d2007-11-14 06:34:38 +0000887 } else if (R.getTypePtr()->isFunctionType()) {
Chris Lattnercc61bf52007-09-27 15:15:46 +0000888 FunctionDecl::StorageClass SC = FunctionDecl::None;
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000889 switch (D.getDeclSpec().getStorageClassSpec()) {
890 default: assert(0 && "Unknown storage class!");
891 case DeclSpec::SCS_auto:
892 case DeclSpec::SCS_register:
Sebastian Redlccdfaba2008-11-14 23:42:31 +0000893 case DeclSpec::SCS_mutable:
Chris Lattnerc04bd6a2007-05-16 18:09:54 +0000894 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_func,
895 R.getAsString());
Steve Narofff93b6722007-08-28 20:14:24 +0000896 InvalidDecl = true;
897 break;
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000898 case DeclSpec::SCS_unspecified: SC = FunctionDecl::None; break;
899 case DeclSpec::SCS_extern: SC = FunctionDecl::Extern; break;
900 case DeclSpec::SCS_static: SC = FunctionDecl::Static; break;
Steve Naroff1f7f6922008-01-28 21:57:15 +0000901 case DeclSpec::SCS_private_extern: SC = FunctionDecl::PrivateExtern;break;
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000902 }
903
Chris Lattner5072bae2008-03-15 21:24:04 +0000904 bool isInline = D.getDeclSpec().isInlineSpecified();
Douglas Gregor831c93f2008-11-05 20:51:48 +0000905 // bool isVirtual = D.getDeclSpec().isVirtualSpecified();
Douglas Gregor61956c42008-10-31 09:07:45 +0000906 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
907
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000908 FunctionDecl *NewFD;
Douglas Gregor831c93f2008-11-05 20:51:48 +0000909 if (D.getKind() == Declarator::DK_Constructor) {
Douglas Gregor61956c42008-10-31 09:07:45 +0000910 // This is a C++ constructor declaration.
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000911 assert(DC->isCXXRecord() &&
Douglas Gregor61956c42008-10-31 09:07:45 +0000912 "Constructors can only be declared in a member context");
913
Douglas Gregor831c93f2008-11-05 20:51:48 +0000914 bool isInvalidDecl = CheckConstructorDeclarator(D, R, SC);
Douglas Gregor61956c42008-10-31 09:07:45 +0000915
916 // Create the new declaration
917 NewFD = CXXConstructorDecl::Create(Context,
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000918 cast<CXXRecordDecl>(DC),
Douglas Gregor92751d42008-11-17 22:58:34 +0000919 D.getIdentifierLoc(), Name, R,
Douglas Gregor61956c42008-10-31 09:07:45 +0000920 isExplicit, isInline,
921 /*isImplicitlyDeclared=*/false);
922
Douglas Gregor831c93f2008-11-05 20:51:48 +0000923 if (isInvalidDecl)
924 NewFD->setInvalidDecl();
925 } else if (D.getKind() == Declarator::DK_Destructor) {
926 // This is a C++ destructor declaration.
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000927 if (DC->isCXXRecord()) {
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +0000928 bool isInvalidDecl = CheckDestructorDeclarator(D, R, SC);
Douglas Gregor831c93f2008-11-05 20:51:48 +0000929
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +0000930 NewFD = CXXDestructorDecl::Create(Context,
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000931 cast<CXXRecordDecl>(DC),
Douglas Gregor92751d42008-11-17 22:58:34 +0000932 D.getIdentifierLoc(), Name, R,
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +0000933 isInline,
934 /*isImplicitlyDeclared=*/false);
Douglas Gregor831c93f2008-11-05 20:51:48 +0000935
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +0000936 if (isInvalidDecl)
937 NewFD->setInvalidDecl();
938 } else {
939 Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
940 // Create a FunctionDecl to satisfy the function definition parsing
941 // code path.
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000942 NewFD = FunctionDecl::Create(Context, DC, D.getIdentifierLoc(),
Douglas Gregor92751d42008-11-17 22:58:34 +0000943 Name, R, SC, isInline, LastDeclarator,
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +0000944 // FIXME: Move to DeclGroup...
945 D.getDeclSpec().getSourceRange().getBegin());
Douglas Gregor831c93f2008-11-05 20:51:48 +0000946 NewFD->setInvalidDecl();
Argyrios Kyrtzidise4426352008-11-07 22:02:30 +0000947 }
Douglas Gregordbc5daf2008-11-07 20:08:42 +0000948 } else if (D.getKind() == Declarator::DK_Conversion) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000949 if (!DC->isCXXRecord()) {
Douglas Gregordbc5daf2008-11-07 20:08:42 +0000950 Diag(D.getIdentifierLoc(),
951 diag::err_conv_function_not_member);
952 return 0;
953 } else {
954 bool isInvalidDecl = CheckConversionDeclarator(D, R, SC);
955
956 NewFD = CXXConversionDecl::Create(Context,
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000957 cast<CXXRecordDecl>(DC),
Douglas Gregor92751d42008-11-17 22:58:34 +0000958 D.getIdentifierLoc(), Name, R,
Douglas Gregordbc5daf2008-11-07 20:08:42 +0000959 isInline, isExplicit);
960
961 if (isInvalidDecl)
962 NewFD->setInvalidDecl();
963 }
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000964 } else if (DC->isCXXRecord()) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000965 // This is a C++ method declaration.
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000966 NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
Douglas Gregor92751d42008-11-17 22:58:34 +0000967 D.getIdentifierLoc(), Name, R,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000968 (SC == FunctionDecl::Static), isInline,
969 LastDeclarator);
970 } else {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000971 NewFD = FunctionDecl::Create(Context, DC,
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000972 D.getIdentifierLoc(),
Douglas Gregor92751d42008-11-17 22:58:34 +0000973 Name, R, SC, isInline, LastDeclarator,
Steve Naroff22315692008-10-03 00:02:03 +0000974 // FIXME: Move to DeclGroup...
975 D.getDeclSpec().getSourceRange().getBegin());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000976 }
Ted Kremenek49b61ab2008-02-27 22:18:07 +0000977 // Handle attributes.
Chris Lattner2727d1b2008-06-29 00:02:00 +0000978 ProcessDeclAttributes(NewFD, D);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000979
Daniel Dunbar4983df32008-08-05 01:35:17 +0000980 // Handle GNU asm-label extension (encoded as an attribute).
Daniel Dunbar1ff1d1f2008-08-05 16:28:08 +0000981 if (Expr *E = (Expr*) D.getAsmLabel()) {
Daniel Dunbar4983df32008-08-05 01:35:17 +0000982 // The parser guarantees this is a string.
983 StringLiteral *SE = cast<StringLiteral>(E);
984 NewFD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
985 SE->getByteLength())));
986 }
987
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000988 // Copy the parameter declarations from the declarator D to
989 // the function declaration NewFD, if they are available.
Eli Friedman3d421e12008-08-25 21:31:01 +0000990 if (D.getNumTypeObjects() > 0) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000991 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
992
993 // Create Decl objects for each parameter, adding them to the
994 // FunctionDecl.
995 llvm::SmallVector<ParmVarDecl*, 16> Params;
996
997 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
998 // function that takes no arguments, not a function that takes a
Chris Lattner58258242008-04-10 02:22:51 +0000999 // single void argument.
Eli Friedmanbb5de962008-05-22 08:54:03 +00001000 // We let through "const void" here because Sema::GetTypeForDeclarator
1001 // already checks for that case.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001002 if (FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
1003 FTI.ArgInfo[0].Param &&
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001004 ((ParmVarDecl*)FTI.ArgInfo[0].Param)->getType()->isVoidType()) {
1005 // empty arg list, don't push any params.
Chris Lattner58258242008-04-10 02:22:51 +00001006 ParmVarDecl *Param = (ParmVarDecl*)FTI.ArgInfo[0].Param;
1007
Chris Lattner0e91b412008-04-10 02:26:16 +00001008 // In C++, the empty parameter-type-list must be spelled "void"; a
1009 // typedef of void is not permitted.
1010 if (getLangOptions().CPlusPlus &&
Eli Friedmanbb5de962008-05-22 08:54:03 +00001011 Param->getType().getUnqualifiedType() != Context.VoidTy) {
Chris Lattner58258242008-04-10 02:22:51 +00001012 Diag(Param->getLocation(), diag::ext_param_typedef_of_void);
1013 }
Eli Friedman3d421e12008-08-25 21:31:01 +00001014 } else if (FTI.NumArgs > 0 && FTI.ArgInfo[0].Param != 0) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001015 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
1016 Params.push_back((ParmVarDecl *)FTI.ArgInfo[i].Param);
1017 }
1018
1019 NewFD->setParams(&Params[0], Params.size());
Douglas Gregora8aa7a02008-10-24 18:09:54 +00001020 } else if (R->getAsTypedefType()) {
1021 // When we're declaring a function with a typedef, as in the
1022 // following example, we'll need to synthesize (unnamed)
1023 // parameters for use in the declaration.
1024 //
1025 // @code
1026 // typedef void fn(int);
1027 // fn f;
1028 // @endcode
1029 const FunctionTypeProto *FT = R->getAsFunctionTypeProto();
1030 if (!FT) {
1031 // This is a typedef of a function with no prototype, so we
1032 // don't need to do anything.
1033 } else if ((FT->getNumArgs() == 0) ||
1034 (FT->getNumArgs() == 1 && !FT->isVariadic() &&
1035 FT->getArgType(0)->isVoidType())) {
1036 // This is a zero-argument function. We don't need to do anything.
1037 } else {
1038 // Synthesize a parameter for each argument type.
1039 llvm::SmallVector<ParmVarDecl*, 16> Params;
1040 for (FunctionTypeProto::arg_type_iterator ArgType = FT->arg_type_begin();
1041 ArgType != FT->arg_type_end(); ++ArgType) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001042 Params.push_back(ParmVarDecl::Create(Context, DC,
Douglas Gregora8aa7a02008-10-24 18:09:54 +00001043 SourceLocation(), 0,
1044 *ArgType, VarDecl::None,
1045 0, 0));
1046 }
1047
1048 NewFD->setParams(&Params[0], Params.size());
1049 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001050 }
1051
Douglas Gregor831c93f2008-11-05 20:51:48 +00001052 // C++ constructors and destructors are handled by separate
1053 // routines, since they don't require any declaration merging (C++
1054 // [class.mfct]p2) and they aren't ever pushed into scope, because
1055 // they can't be found by name lookup anyway (C++ [class.ctor]p2).
1056 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD))
1057 return ActOnConstructorDeclarator(Constructor);
1058 else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(NewFD))
1059 return ActOnDestructorDeclarator(Destructor);
Douglas Gregorae2fbad2008-11-17 20:34:05 +00001060
1061 // Extra checking for conversion functions, including recording
1062 // the conversion function in its class.
1063 if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(NewFD))
1064 ActOnConversionDeclarator(Conversion);
Douglas Gregor61956c42008-10-31 09:07:45 +00001065
Douglas Gregor11d0c4c2008-11-06 22:13:31 +00001066 // Extra checking for C++ overloaded operators (C++ [over.oper]).
1067 if (NewFD->isOverloadedOperator() &&
1068 CheckOverloadedOperatorDeclaration(NewFD))
1069 NewFD->setInvalidDecl();
1070
Steve Naroffe6b0ec82008-01-09 23:34:55 +00001071 // Merge the decl with the existing one if appropriate. Since C functions
1072 // are in a flat namespace, make sure we consider decls in outer scopes.
Argyrios Kyrtzidisfa8e15b2008-05-09 23:39:43 +00001073 if (PrevDecl &&
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001074 (!getLangOptions().CPlusPlus||isDeclInScope(PrevDecl, DC, S))) {
Douglas Gregor89f238c2008-04-21 02:02:58 +00001075 bool Redeclaration = false;
Douglas Gregor5251f1b2008-10-21 16:13:35 +00001076
1077 // If C++, determine whether NewFD is an overload of PrevDecl or
1078 // a declaration that requires merging. If it's an overload,
1079 // there's no more work to do here; we'll just add the new
1080 // function to the scope.
1081 OverloadedFunctionDecl::function_iterator MatchedDecl;
1082 if (!getLangOptions().CPlusPlus ||
1083 !IsOverload(NewFD, PrevDecl, MatchedDecl)) {
1084 Decl *OldDecl = PrevDecl;
1085
1086 // If PrevDecl was an overloaded function, extract the
1087 // FunctionDecl that matched.
1088 if (isa<OverloadedFunctionDecl>(PrevDecl))
1089 OldDecl = *MatchedDecl;
1090
1091 // NewFD and PrevDecl represent declarations that need to be
1092 // merged.
1093 NewFD = MergeFunctionDecl(NewFD, OldDecl, Redeclaration);
1094
1095 if (NewFD == 0) return 0;
1096 if (Redeclaration) {
1097 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
1098
1099 if (OldDecl == PrevDecl) {
1100 // Remove the name binding for the previous
1101 // declaration. We'll add the binding back later, but then
1102 // it will refer to the new declaration (which will
1103 // contain more information).
1104 IdResolver.RemoveDecl(cast<NamedDecl>(PrevDecl));
1105 } else {
1106 // We need to update the OverloadedFunctionDecl with the
1107 // latest declaration of this function, so that name
1108 // lookup will always refer to the latest declaration of
1109 // this function.
1110 *MatchedDecl = NewFD;
1111
1112 // Add the redeclaration to the current scope, since we'll
1113 // be skipping PushOnScopeChains.
1114 S->AddDecl(NewFD);
1115
1116 return NewFD;
1117 }
1118 }
Douglas Gregor89f238c2008-04-21 02:02:58 +00001119 }
Chris Lattner01564d92007-01-27 19:27:06 +00001120 }
1121 New = NewFD;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001122
1123 // In C++, check default arguments now that we have merged decls.
1124 if (getLangOptions().CPlusPlus)
1125 CheckCXXDefaultArguments(NewFD);
Chris Lattner01a7c532007-01-25 23:09:03 +00001126 } else {
Douglas Gregorcaa8ace2008-05-07 04:49:29 +00001127 // Check that there are no default arguments (C++ only).
1128 if (getLangOptions().CPlusPlus)
1129 CheckExtraCXXDefaultArguments(D);
1130
Ted Kremenek1b0ea822008-01-07 19:49:32 +00001131 if (R.getTypePtr()->isObjCInterfaceType()) {
Fariborz Jahanianecfe4f12007-10-12 22:10:42 +00001132 Diag(D.getIdentifierLoc(), diag::err_statically_allocated_object,
1133 D.getIdentifier()->getName());
1134 InvalidDecl = true;
1135 }
Chris Lattner01564d92007-01-27 19:27:06 +00001136
Steve Naroff46ba1eb2007-04-03 23:13:13 +00001137 VarDecl *NewVD;
1138 VarDecl::StorageClass SC;
Steve Naroff6fbf0dc2007-03-16 00:33:25 +00001139 switch (D.getDeclSpec().getStorageClassSpec()) {
Chris Lattner4b08ca82008-03-15 21:10:16 +00001140 default: assert(0 && "Unknown storage class!");
1141 case DeclSpec::SCS_unspecified: SC = VarDecl::None; break;
1142 case DeclSpec::SCS_extern: SC = VarDecl::Extern; break;
1143 case DeclSpec::SCS_static: SC = VarDecl::Static; break;
1144 case DeclSpec::SCS_auto: SC = VarDecl::Auto; break;
1145 case DeclSpec::SCS_register: SC = VarDecl::Register; break;
1146 case DeclSpec::SCS_private_extern: SC = VarDecl::PrivateExtern; break;
Sebastian Redlccdfaba2008-11-14 23:42:31 +00001147 case DeclSpec::SCS_mutable:
1148 // mutable can only appear on non-static class members, so it's always
1149 // an error here
1150 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
1151 InvalidDecl = true;
1152 }
Douglas Gregor92751d42008-11-17 22:58:34 +00001153
1154 IdentifierInfo *II = Name.getAsIdentifierInfo();
1155 if (!II) {
1156 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name,
1157 Name.getAsString());
1158 return 0;
1159 }
1160
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001161 if (DC->isCXXRecord()) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001162 assert(SC == VarDecl::Static && "Invalid storage class for member!");
1163 // This is a static data member for a C++ class.
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001164 NewVD = CXXClassVarDecl::Create(Context, cast<CXXRecordDecl>(DC),
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001165 D.getIdentifierLoc(), II,
1166 R, LastDeclarator);
Steve Naroff2fea1392007-09-02 02:04:30 +00001167 } else {
Daniel Dunbar1e6ff5f2008-09-08 20:05:47 +00001168 bool ThreadSpecified = D.getDeclSpec().isThreadSpecified();
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001169 if (S->getFnParent() == 0) {
1170 // C99 6.9p2: The storage-class specifiers auto and register shall not
1171 // appear in the declaration specifiers in an external declaration.
1172 if (SC == VarDecl::Auto || SC == VarDecl::Register) {
1173 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope,
1174 R.getAsString());
1175 InvalidDecl = true;
1176 }
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00001177 }
Sebastian Redlccdfaba2008-11-14 23:42:31 +00001178 NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),
1179 II, R, SC, LastDeclarator,
1180 // FIXME: Move to DeclGroup...
1181 D.getDeclSpec().getSourceRange().getBegin());
1182 NewVD->setThreadSpecified(ThreadSpecified);
Steve Naroffcf871f52007-08-28 18:45:29 +00001183 }
Steve Naroffa8fd9732007-06-11 00:35:03 +00001184 // Handle attributes prior to checking for duplicates in MergeVarDecl
Chris Lattner2727d1b2008-06-29 00:02:00 +00001185 ProcessDeclAttributes(NewVD, D);
Nate Begemanb561de72008-03-14 18:07:10 +00001186
Daniel Dunbarffc29be2008-08-06 00:03:29 +00001187 // Handle GNU asm-label extension (encoded as an attribute).
1188 if (Expr *E = (Expr*) D.getAsmLabel()) {
1189 // The parser guarantees this is a string.
1190 StringLiteral *SE = cast<StringLiteral>(E);
1191 NewVD->addAttr(new AsmLabelAttr(std::string(SE->getStrData(),
1192 SE->getByteLength())));
1193 }
1194
Nate Begemanb561de72008-03-14 18:07:10 +00001195 // Emit an error if an address space was applied to decl with local storage.
1196 // This includes arrays of objects with address space qualifiers, but not
1197 // automatic variables that point to other address spaces.
1198 // ISO/IEC TR 18037 S5.1.2
Nate Begemanc506c782008-03-25 18:36:32 +00001199 if (NewVD->hasLocalStorage() && (NewVD->getType().getAddressSpace() != 0)) {
1200 Diag(D.getIdentifierLoc(), diag::err_as_qualified_auto_decl);
1201 InvalidDecl = true;
Nate Begeman144625e2008-03-14 00:22:18 +00001202 }
Steve Naroffe6b0ec82008-01-09 23:34:55 +00001203 // Merge the decl with the existing one if appropriate. If the decl is
1204 // in an outer scope, it isn't the same thing.
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001205 if (PrevDecl && isDeclInScope(PrevDecl, DC, S)) {
Chris Lattner01564d92007-01-27 19:27:06 +00001206 NewVD = MergeVarDecl(NewVD, PrevDecl);
1207 if (NewVD == 0) return 0;
1208 }
1209 New = NewVD;
Chris Lattner01a7c532007-01-25 23:09:03 +00001210 }
Chris Lattner302b4be2006-11-19 02:31:38 +00001211
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +00001212 // Set the lexical context. If the declarator has a C++ scope specifier, the
1213 // lexical context will be different from the semantic context.
1214 New->setLexicalDeclContext(CurContext);
1215
Chris Lattnere168f762006-11-10 05:29:30 +00001216 // If this has an identifier, add it to the scope stack.
Douglas Gregor92751d42008-11-17 22:58:34 +00001217 if (Name)
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00001218 PushOnScopeChains(New, S);
Steve Narofff93b6722007-08-28 20:14:24 +00001219 // If any semantic error occurred, mark the decl as invalid.
1220 if (D.getInvalidType() || InvalidDecl)
1221 New->setInvalidDecl();
Chris Lattnere168f762006-11-10 05:29:30 +00001222
1223 return New;
1224}
1225
Steve Naroffc6db58a2008-10-27 11:34:16 +00001226void Sema::InitializerElementNotConstant(const Expr *Init) {
1227 Diag(Init->getExprLoc(),
1228 diag::err_init_element_not_constant, Init->getSourceRange());
1229}
1230
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001231bool Sema::CheckAddressConstantExpressionLValue(const Expr* Init) {
1232 switch (Init->getStmtClass()) {
1233 default:
Steve Naroffc6db58a2008-10-27 11:34:16 +00001234 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001235 return true;
1236 case Expr::ParenExprClass: {
1237 const ParenExpr* PE = cast<ParenExpr>(Init);
1238 return CheckAddressConstantExpressionLValue(PE->getSubExpr());
1239 }
1240 case Expr::CompoundLiteralExprClass:
1241 return cast<CompoundLiteralExpr>(Init)->isFileScope();
1242 case Expr::DeclRefExprClass: {
1243 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
Eli Friedman86346ed2008-05-21 03:39:11 +00001244 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1245 if (VD->hasGlobalStorage())
1246 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00001247 InitializerElementNotConstant(Init);
Eli Friedman86346ed2008-05-21 03:39:11 +00001248 return true;
1249 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001250 if (isa<FunctionDecl>(D))
1251 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00001252 InitializerElementNotConstant(Init);
Steve Naroff98f72032008-01-10 22:15:12 +00001253 return true;
1254 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001255 case Expr::MemberExprClass: {
1256 const MemberExpr *M = cast<MemberExpr>(Init);
1257 if (M->isArrow())
1258 return CheckAddressConstantExpression(M->getBase());
1259 return CheckAddressConstantExpressionLValue(M->getBase());
1260 }
1261 case Expr::ArraySubscriptExprClass: {
1262 // FIXME: Should we pedwarn for "x[0+0]" (where x is a pointer)?
1263 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(Init);
1264 return CheckAddressConstantExpression(ASE->getBase()) ||
1265 CheckArithmeticConstantExpression(ASE->getIdx());
1266 }
1267 case Expr::StringLiteralClass:
Chris Lattner6307f192008-08-10 01:53:14 +00001268 case Expr::PredefinedExprClass:
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001269 return false;
1270 case Expr::UnaryOperatorClass: {
1271 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1272
1273 // C99 6.6p9
1274 if (Exp->getOpcode() == UnaryOperator::Deref)
Eli Friedman86346ed2008-05-21 03:39:11 +00001275 return CheckAddressConstantExpression(Exp->getSubExpr());
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001276
Steve Naroffc6db58a2008-10-27 11:34:16 +00001277 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001278 return true;
1279 }
1280 }
1281}
1282
1283bool Sema::CheckAddressConstantExpression(const Expr* Init) {
1284 switch (Init->getStmtClass()) {
1285 default:
Steve Naroffc6db58a2008-10-27 11:34:16 +00001286 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001287 return true;
Chris Lattnera97132a2008-10-06 07:26:43 +00001288 case Expr::ParenExprClass:
1289 return CheckAddressConstantExpression(cast<ParenExpr>(Init)->getSubExpr());
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001290 case Expr::StringLiteralClass:
1291 case Expr::ObjCStringLiteralClass:
1292 return false;
Chris Lattnera97132a2008-10-06 07:26:43 +00001293 case Expr::CallExprClass:
Douglas Gregor993603d2008-11-14 16:09:21 +00001294 case Expr::CXXOperatorCallExprClass:
Chris Lattnera97132a2008-10-06 07:26:43 +00001295 // __builtin___CFStringMakeConstantString is a valid constant l-value.
1296 if (cast<CallExpr>(Init)->isBuiltinCall() ==
1297 Builtin::BI__builtin___CFStringMakeConstantString)
1298 return false;
1299
Steve Naroffc6db58a2008-10-27 11:34:16 +00001300 InitializerElementNotConstant(Init);
Chris Lattnera97132a2008-10-06 07:26:43 +00001301 return true;
1302
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001303 case Expr::UnaryOperatorClass: {
1304 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1305
1306 // C99 6.6p9
1307 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1308 return CheckAddressConstantExpressionLValue(Exp->getSubExpr());
1309
1310 if (Exp->getOpcode() == UnaryOperator::Extension)
1311 return CheckAddressConstantExpression(Exp->getSubExpr());
1312
Steve Naroffc6db58a2008-10-27 11:34:16 +00001313 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001314 return true;
1315 }
1316 case Expr::BinaryOperatorClass: {
1317 // FIXME: Should we pedwarn for expressions like "a + 1 + 2"?
1318 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1319
1320 Expr *PExp = Exp->getLHS();
1321 Expr *IExp = Exp->getRHS();
1322 if (IExp->getType()->isPointerType())
1323 std::swap(PExp, IExp);
1324
1325 // FIXME: Should we pedwarn if IExp isn't an integer constant expression?
1326 return CheckAddressConstantExpression(PExp) ||
1327 CheckArithmeticConstantExpression(IExp);
1328 }
Eli Friedman0a2ba3f2008-08-25 20:46:57 +00001329 case Expr::ImplicitCastExprClass:
Douglas Gregorf19b2312008-10-28 15:36:24 +00001330 case Expr::CStyleCastExprClass: {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001331 const Expr* SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman0a2ba3f2008-08-25 20:46:57 +00001332 if (Init->getStmtClass() == Expr::ImplicitCastExprClass) {
1333 // Check for implicit promotion
1334 if (SubExpr->getType()->isFunctionType() ||
1335 SubExpr->getType()->isArrayType())
1336 return CheckAddressConstantExpressionLValue(SubExpr);
1337 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001338
1339 // Check for pointer->pointer cast
1340 if (SubExpr->getType()->isPointerType())
1341 return CheckAddressConstantExpression(SubExpr);
1342
Eli Friedman0a2ba3f2008-08-25 20:46:57 +00001343 if (SubExpr->getType()->isIntegralType()) {
1344 // Check for the special-case of a pointer->int->pointer cast;
1345 // this isn't standard, but some code requires it. See
1346 // PR2720 for an example.
1347 if (const CastExpr* SubCast = dyn_cast<CastExpr>(SubExpr)) {
1348 if (SubCast->getSubExpr()->getType()->isPointerType()) {
1349 unsigned IntWidth = Context.getIntWidth(SubCast->getType());
1350 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1351 if (IntWidth >= PointerWidth) {
1352 return CheckAddressConstantExpression(SubCast->getSubExpr());
1353 }
1354 }
1355 }
1356 }
1357 if (SubExpr->getType()->isArithmeticType()) {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001358 return CheckArithmeticConstantExpression(SubExpr);
Eli Friedman0a2ba3f2008-08-25 20:46:57 +00001359 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001360
Steve Naroffc6db58a2008-10-27 11:34:16 +00001361 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001362 return true;
1363 }
1364 case Expr::ConditionalOperatorClass: {
1365 // FIXME: Should we pedwarn here?
1366 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
1367 if (!Exp->getCond()->getType()->isArithmeticType()) {
Steve Naroffc6db58a2008-10-27 11:34:16 +00001368 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001369 return true;
1370 }
1371 if (CheckArithmeticConstantExpression(Exp->getCond()))
1372 return true;
1373 if (Exp->getLHS() &&
1374 CheckAddressConstantExpression(Exp->getLHS()))
1375 return true;
1376 return CheckAddressConstantExpression(Exp->getRHS());
1377 }
1378 case Expr::AddrLabelExprClass:
1379 return false;
1380 }
1381}
1382
Eli Friedmane6e0f232008-06-09 05:05:07 +00001383static const Expr* FindExpressionBaseAddress(const Expr* E);
1384
1385static const Expr* FindExpressionBaseAddressLValue(const Expr* E) {
1386 switch (E->getStmtClass()) {
1387 default:
1388 return E;
1389 case Expr::ParenExprClass: {
1390 const ParenExpr* PE = cast<ParenExpr>(E);
1391 return FindExpressionBaseAddressLValue(PE->getSubExpr());
1392 }
1393 case Expr::MemberExprClass: {
1394 const MemberExpr *M = cast<MemberExpr>(E);
1395 if (M->isArrow())
1396 return FindExpressionBaseAddress(M->getBase());
1397 return FindExpressionBaseAddressLValue(M->getBase());
1398 }
1399 case Expr::ArraySubscriptExprClass: {
1400 const ArraySubscriptExpr *ASE = cast<ArraySubscriptExpr>(E);
1401 return FindExpressionBaseAddress(ASE->getBase());
1402 }
1403 case Expr::UnaryOperatorClass: {
1404 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1405
1406 if (Exp->getOpcode() == UnaryOperator::Deref)
1407 return FindExpressionBaseAddress(Exp->getSubExpr());
1408
1409 return E;
1410 }
1411 }
1412}
1413
1414static const Expr* FindExpressionBaseAddress(const Expr* E) {
1415 switch (E->getStmtClass()) {
1416 default:
1417 return E;
1418 case Expr::ParenExprClass: {
1419 const ParenExpr* PE = cast<ParenExpr>(E);
1420 return FindExpressionBaseAddress(PE->getSubExpr());
1421 }
1422 case Expr::UnaryOperatorClass: {
1423 const UnaryOperator *Exp = cast<UnaryOperator>(E);
1424
1425 // C99 6.6p9
1426 if (Exp->getOpcode() == UnaryOperator::AddrOf)
1427 return FindExpressionBaseAddressLValue(Exp->getSubExpr());
1428
1429 if (Exp->getOpcode() == UnaryOperator::Extension)
1430 return FindExpressionBaseAddress(Exp->getSubExpr());
1431
1432 return E;
1433 }
1434 case Expr::BinaryOperatorClass: {
1435 const BinaryOperator *Exp = cast<BinaryOperator>(E);
1436
1437 Expr *PExp = Exp->getLHS();
1438 Expr *IExp = Exp->getRHS();
1439 if (IExp->getType()->isPointerType())
1440 std::swap(PExp, IExp);
1441
1442 return FindExpressionBaseAddress(PExp);
1443 }
1444 case Expr::ImplicitCastExprClass: {
1445 const Expr* SubExpr = cast<ImplicitCastExpr>(E)->getSubExpr();
1446
1447 // Check for implicit promotion
1448 if (SubExpr->getType()->isFunctionType() ||
1449 SubExpr->getType()->isArrayType())
1450 return FindExpressionBaseAddressLValue(SubExpr);
1451
1452 // Check for pointer->pointer cast
1453 if (SubExpr->getType()->isPointerType())
1454 return FindExpressionBaseAddress(SubExpr);
1455
1456 // We assume that we have an arithmetic expression here;
1457 // if we don't, we'll figure it out later
1458 return 0;
1459 }
Douglas Gregorf19b2312008-10-28 15:36:24 +00001460 case Expr::CStyleCastExprClass: {
Eli Friedmane6e0f232008-06-09 05:05:07 +00001461 const Expr* SubExpr = cast<CastExpr>(E)->getSubExpr();
1462
1463 // Check for pointer->pointer cast
1464 if (SubExpr->getType()->isPointerType())
1465 return FindExpressionBaseAddress(SubExpr);
1466
1467 // We assume that we have an arithmetic expression here;
1468 // if we don't, we'll figure it out later
1469 return 0;
1470 }
1471 }
1472}
1473
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001474bool Sema::CheckArithmeticConstantExpression(const Expr* Init) {
1475 switch (Init->getStmtClass()) {
1476 default:
Steve Naroffc6db58a2008-10-27 11:34:16 +00001477 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001478 return true;
1479 case Expr::ParenExprClass: {
1480 const ParenExpr* PE = cast<ParenExpr>(Init);
1481 return CheckArithmeticConstantExpression(PE->getSubExpr());
1482 }
1483 case Expr::FloatingLiteralClass:
1484 case Expr::IntegerLiteralClass:
1485 case Expr::CharacterLiteralClass:
1486 case Expr::ImaginaryLiteralClass:
1487 case Expr::TypesCompatibleExprClass:
1488 case Expr::CXXBoolLiteralExprClass:
1489 return false;
Douglas Gregor993603d2008-11-14 16:09:21 +00001490 case Expr::CallExprClass:
1491 case Expr::CXXOperatorCallExprClass: {
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001492 const CallExpr *CE = cast<CallExpr>(Init);
Chris Lattnercb136912008-10-06 06:49:02 +00001493
1494 // Allow any constant foldable calls to builtins.
1495 if (CE->isBuiltinCall() && CE->isEvaluatable(Context))
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001496 return false;
Chris Lattnercb136912008-10-06 06:49:02 +00001497
Steve Naroffc6db58a2008-10-27 11:34:16 +00001498 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001499 return true;
1500 }
1501 case Expr::DeclRefExprClass: {
1502 const Decl *D = cast<DeclRefExpr>(Init)->getDecl();
1503 if (isa<EnumConstantDecl>(D))
1504 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00001505 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001506 return true;
1507 }
1508 case Expr::CompoundLiteralExprClass:
1509 // Allow "(vector type){2,4}"; normal C constraints don't allow this,
1510 // but vectors are allowed to be magic.
1511 if (Init->getType()->isVectorType())
1512 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00001513 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001514 return true;
1515 case Expr::UnaryOperatorClass: {
1516 const UnaryOperator *Exp = cast<UnaryOperator>(Init);
1517
1518 switch (Exp->getOpcode()) {
1519 // Address, indirect, pre/post inc/dec, etc are not valid constant exprs.
1520 // See C99 6.6p3.
1521 default:
Steve Naroffc6db58a2008-10-27 11:34:16 +00001522 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001523 return true;
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001524 case UnaryOperator::OffsetOf:
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001525 if (Exp->getSubExpr()->getType()->isConstantSizeType())
1526 return false;
Steve Naroffc6db58a2008-10-27 11:34:16 +00001527 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001528 return true;
1529 case UnaryOperator::Extension:
1530 case UnaryOperator::LNot:
1531 case UnaryOperator::Plus:
1532 case UnaryOperator::Minus:
1533 case UnaryOperator::Not:
1534 return CheckArithmeticConstantExpression(Exp->getSubExpr());
1535 }
1536 }
Sebastian Redl6f282892008-11-11 17:56:53 +00001537 case Expr::SizeOfAlignOfExprClass: {
1538 const SizeOfAlignOfExpr *Exp = cast<SizeOfAlignOfExpr>(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001539 // Special check for void types, which are allowed as an extension
Sebastian Redl6f282892008-11-11 17:56:53 +00001540 if (Exp->getTypeOfArgument()->isVoidType())
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001541 return false;
1542 // alignof always evaluates to a constant.
1543 // FIXME: is sizeof(int[3.0]) a constant expression?
Sebastian Redl6f282892008-11-11 17:56:53 +00001544 if (Exp->isSizeOf() && !Exp->getTypeOfArgument()->isConstantSizeType()) {
Steve Naroffc6db58a2008-10-27 11:34:16 +00001545 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001546 return true;
1547 }
1548 return false;
1549 }
1550 case Expr::BinaryOperatorClass: {
1551 const BinaryOperator *Exp = cast<BinaryOperator>(Init);
1552
1553 if (Exp->getLHS()->getType()->isArithmeticType() &&
1554 Exp->getRHS()->getType()->isArithmeticType()) {
1555 return CheckArithmeticConstantExpression(Exp->getLHS()) ||
1556 CheckArithmeticConstantExpression(Exp->getRHS());
1557 }
1558
Eli Friedmane6e0f232008-06-09 05:05:07 +00001559 if (Exp->getLHS()->getType()->isPointerType() &&
1560 Exp->getRHS()->getType()->isPointerType()) {
1561 const Expr* LHSBase = FindExpressionBaseAddress(Exp->getLHS());
1562 const Expr* RHSBase = FindExpressionBaseAddress(Exp->getRHS());
1563
1564 // Only allow a null (constant integer) base; we could
1565 // allow some additional cases if necessary, but this
1566 // is sufficient to cover offsetof-like constructs.
1567 if (!LHSBase && !RHSBase) {
1568 return CheckAddressConstantExpression(Exp->getLHS()) ||
1569 CheckAddressConstantExpression(Exp->getRHS());
1570 }
1571 }
1572
Steve Naroffc6db58a2008-10-27 11:34:16 +00001573 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001574 return true;
1575 }
1576 case Expr::ImplicitCastExprClass:
Douglas Gregorf19b2312008-10-28 15:36:24 +00001577 case Expr::CStyleCastExprClass: {
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00001578 const Expr *SubExpr = cast<CastExpr>(Init)->getSubExpr();
Eli Friedman4c55e2c2008-09-01 22:08:17 +00001579 if (SubExpr->getType()->isArithmeticType())
1580 return CheckArithmeticConstantExpression(SubExpr);
1581
Eli Friedmande09ce02008-09-02 09:37:00 +00001582 if (SubExpr->getType()->isPointerType()) {
1583 const Expr* Base = FindExpressionBaseAddress(SubExpr);
1584 // If the pointer has a null base, this is an offsetof-like construct
1585 if (!Base)
1586 return CheckAddressConstantExpression(SubExpr);
1587 }
1588
Steve Naroffc6db58a2008-10-27 11:34:16 +00001589 InitializerElementNotConstant(Init);
Eli Friedman4c55e2c2008-09-01 22:08:17 +00001590 return true;
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001591 }
1592 case Expr::ConditionalOperatorClass: {
1593 const ConditionalOperator *Exp = cast<ConditionalOperator>(Init);
Chris Lattnerc4346752008-10-06 05:42:39 +00001594
1595 // If GNU extensions are disabled, we require all operands to be arithmetic
1596 // constant expressions.
1597 if (getLangOptions().NoExtensions) {
1598 return CheckArithmeticConstantExpression(Exp->getCond()) ||
1599 (Exp->getLHS() && CheckArithmeticConstantExpression(Exp->getLHS())) ||
1600 CheckArithmeticConstantExpression(Exp->getRHS());
1601 }
1602
1603 // Otherwise, we have to emulate some of the behavior of fold here.
1604 // Basically GCC treats things like "4 ? 1 : somefunc()" as a constant
1605 // because it can constant fold things away. To retain compatibility with
1606 // GCC code, we see if we can fold the condition to a constant (which we
1607 // should always be able to do in theory). If so, we only require the
1608 // specified arm of the conditional to be a constant. This is a horrible
1609 // hack, but is require by real world code that uses __builtin_constant_p.
1610 APValue Val;
Chris Lattner67d7b922008-11-16 21:24:15 +00001611 if (!Exp->getCond()->Evaluate(Val, Context)) {
1612 // If Evaluate couldn't fold it, CheckArithmeticConstantExpression
Chris Lattnerc4346752008-10-06 05:42:39 +00001613 // won't be able to either. Use it to emit the diagnostic though.
1614 bool Res = CheckArithmeticConstantExpression(Exp->getCond());
Chris Lattner67d7b922008-11-16 21:24:15 +00001615 assert(Res && "Evaluate couldn't evaluate this constant?");
Chris Lattnerc4346752008-10-06 05:42:39 +00001616 return Res;
1617 }
1618
1619 // Verify that the side following the condition is also a constant.
1620 const Expr *TrueSide = Exp->getLHS(), *FalseSide = Exp->getRHS();
1621 if (Val.getInt() == 0)
1622 std::swap(TrueSide, FalseSide);
1623
1624 if (TrueSide && CheckArithmeticConstantExpression(TrueSide))
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001625 return true;
Chris Lattnerc4346752008-10-06 05:42:39 +00001626
1627 // Okay, the evaluated side evaluates to a constant, so we accept this.
1628 // Check to see if the other side is obviously not a constant. If so,
1629 // emit a warning that this is a GNU extension.
Chris Lattnercb136912008-10-06 06:49:02 +00001630 if (FalseSide && !FalseSide->isEvaluatable(Context))
Chris Lattnerc4346752008-10-06 05:42:39 +00001631 Diag(Init->getExprLoc(),
1632 diag::ext_typecheck_expression_not_constant_but_accepted,
1633 FalseSide->getSourceRange());
1634 return false;
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001635 }
1636 }
1637}
1638
1639bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Nuno Lopes7bfa1802008-07-07 16:46:50 +00001640 Init = Init->IgnoreParens();
1641
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001642 // Look through CXXDefaultArgExprs; they have no meaning in this context.
1643 if (CXXDefaultArgExpr* DAE = dyn_cast<CXXDefaultArgExpr>(Init))
1644 return CheckForConstantInitializer(DAE->getExpr(), DclT);
1645
Nuno Lopes7bfa1802008-07-07 16:46:50 +00001646 if (CompoundLiteralExpr *e = dyn_cast<CompoundLiteralExpr>(Init))
1647 return CheckForConstantInitializer(e->getInitializer(), DclT);
1648
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001649 if (InitListExpr *Exp = dyn_cast<InitListExpr>(Init)) {
1650 unsigned numInits = Exp->getNumInits();
1651 for (unsigned i = 0; i < numInits; i++) {
1652 // FIXME: Need to get the type of the declaration for C++,
1653 // because it could be a reference?
1654 if (CheckForConstantInitializer(Exp->getInit(i),
1655 Exp->getInit(i)->getType()))
1656 return true;
1657 }
1658 return false;
1659 }
1660
1661 if (Init->isNullPointerConstant(Context))
1662 return false;
1663 if (Init->getType()->isArithmeticType()) {
Chris Lattner574dee62008-07-26 22:17:49 +00001664 QualType InitTy = Context.getCanonicalType(Init->getType())
1665 .getUnqualifiedType();
Eli Friedman66572af2008-05-30 18:14:48 +00001666 if (InitTy == Context.BoolTy) {
1667 // Special handling for pointers implicitly cast to bool;
1668 // (e.g. "_Bool rr = &rr;"). This is only legal at the top level.
1669 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Init)) {
1670 Expr* SubE = ICE->getSubExpr();
1671 if (SubE->getType()->isPointerType() ||
1672 SubE->getType()->isArrayType() ||
1673 SubE->getType()->isFunctionType()) {
1674 return CheckAddressConstantExpression(Init);
1675 }
1676 }
1677 } else if (InitTy->isIntegralType()) {
1678 Expr* SubE = 0;
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +00001679 if (CastExpr* CE = dyn_cast<CastExpr>(Init))
Eli Friedman66572af2008-05-30 18:14:48 +00001680 SubE = CE->getSubExpr();
1681 // Special check for pointer cast to int; we allow as an extension
1682 // an address constant cast to an integer if the integer
1683 // is of an appropriate width (this sort of code is apparently used
1684 // in some places).
1685 // FIXME: Add pedwarn?
1686 // FIXME: Don't allow bitfields here! Need the FieldDecl for that.
1687 if (SubE && (SubE->getType()->isPointerType() ||
1688 SubE->getType()->isArrayType() ||
1689 SubE->getType()->isFunctionType())) {
1690 unsigned IntWidth = Context.getTypeSize(Init->getType());
1691 unsigned PointerWidth = Context.getTypeSize(Context.VoidPtrTy);
1692 if (IntWidth >= PointerWidth)
1693 return CheckAddressConstantExpression(Init);
1694 }
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001695 }
1696
1697 return CheckArithmeticConstantExpression(Init);
1698 }
1699
1700 if (Init->getType()->isPointerType())
1701 return CheckAddressConstantExpression(Init);
1702
Eli Friedman66572af2008-05-30 18:14:48 +00001703 // An array type at the top level that isn't an init-list must
1704 // be a string literal
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001705 if (Init->getType()->isArrayType())
1706 return false;
1707
Nuno Lopes2c5208c2008-09-01 18:42:41 +00001708 if (Init->getType()->isFunctionType())
1709 return false;
1710
Steve Naroffd40a3962008-10-02 17:12:56 +00001711 // Allow block exprs at top level.
1712 if (Init->getType()->isBlockPointerType())
1713 return false;
1714
Steve Naroffc6db58a2008-10-27 11:34:16 +00001715 InitializerElementNotConstant(Init);
Eli Friedmand5a55bd2008-05-20 13:48:25 +00001716 return true;
Steve Naroff98f72032008-01-10 22:15:12 +00001717}
1718
Steve Naroff61091402007-09-12 14:07:44 +00001719void Sema::AddInitializerToDecl(DeclTy *dcl, ExprTy *init) {
Steve Naroff437b4d82007-09-12 20:13:48 +00001720 Decl *RealDecl = static_cast<Decl *>(dcl);
Steve Naroff61091402007-09-12 14:07:44 +00001721 Expr *Init = static_cast<Expr *>(init);
Chris Lattner8beb9de2007-10-19 20:10:30 +00001722 assert(Init && "missing initializer");
Steve Naroff61091402007-09-12 14:07:44 +00001723
Chris Lattner8beb9de2007-10-19 20:10:30 +00001724 // If there is no declaration, there was an error parsing it. Just ignore
1725 // the initializer.
1726 if (RealDecl == 0) {
1727 delete Init;
1728 return;
1729 }
Steve Naroff61091402007-09-12 14:07:44 +00001730
Steve Naroff437b4d82007-09-12 20:13:48 +00001731 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
1732 if (!VDecl) {
Steve Naroff9def2b12007-09-13 21:41:19 +00001733 Diag(dyn_cast<ScopedDecl>(RealDecl)->getLocation(),
1734 diag::err_illegal_initializer);
Steve Naroff437b4d82007-09-12 20:13:48 +00001735 RealDecl->setInvalidDecl();
1736 return;
1737 }
Steve Naroff61091402007-09-12 14:07:44 +00001738 // Get the decls type and save a reference for later, since
Steve Naroff98f72032008-01-10 22:15:12 +00001739 // CheckInitializerTypes may change it.
Steve Naroff437b4d82007-09-12 20:13:48 +00001740 QualType DclT = VDecl->getType(), SavT = DclT;
Steve Naroff08899ff2008-04-15 22:42:06 +00001741 if (VDecl->isBlockVarDecl()) {
1742 VarDecl::StorageClass SC = VDecl->getStorageClass();
Steve Naroff61091402007-09-12 14:07:44 +00001743 if (SC == VarDecl::Extern) { // C99 6.7.8p5
Steve Naroff437b4d82007-09-12 20:13:48 +00001744 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
Steve Naroff08899ff2008-04-15 22:42:06 +00001745 VDecl->setInvalidDecl();
1746 } else if (!VDecl->isInvalidDecl()) {
Douglas Gregor6f543152008-11-05 15:29:30 +00001747 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
1748 VDecl->getName()))
Steve Naroff08899ff2008-04-15 22:42:06 +00001749 VDecl->setInvalidDecl();
Anders Carlsson41e08812008-08-22 05:00:02 +00001750
1751 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
1752 if (!getLangOptions().CPlusPlus) {
1753 if (SC == VarDecl::Static) // C99 6.7.8p4.
1754 CheckForConstantInitializer(Init, DclT);
1755 }
Steve Naroff61091402007-09-12 14:07:44 +00001756 }
Steve Naroff08899ff2008-04-15 22:42:06 +00001757 } else if (VDecl->isFileVarDecl()) {
1758 if (VDecl->getStorageClass() == VarDecl::Extern)
Steve Naroff437b4d82007-09-12 20:13:48 +00001759 Diag(VDecl->getLocation(), diag::warn_extern_init);
Steve Naroff08899ff2008-04-15 22:42:06 +00001760 if (!VDecl->isInvalidDecl())
Douglas Gregor6f543152008-11-05 15:29:30 +00001761 if (CheckInitializerTypes(Init, DclT, VDecl->getLocation(),
1762 VDecl->getName()))
Steve Naroff08899ff2008-04-15 22:42:06 +00001763 VDecl->setInvalidDecl();
Steve Naroff98f72032008-01-10 22:15:12 +00001764
Anders Carlsson41e08812008-08-22 05:00:02 +00001765 // C++ 3.6.2p2, allow dynamic initialization of static initializers.
1766 if (!getLangOptions().CPlusPlus) {
1767 // C99 6.7.8p4. All file scoped initializers need to be constant.
1768 CheckForConstantInitializer(Init, DclT);
1769 }
Steve Naroff61091402007-09-12 14:07:44 +00001770 }
1771 // If the type changed, it means we had an incomplete type that was
1772 // completed by the initializer. For example:
1773 // int ary[] = { 1, 3, 5 };
1774 // "ary" transitions from a VariableArrayType to a ConstantArrayType.
Christopher Lamb2ed9afd2007-11-29 19:09:19 +00001775 if (!VDecl->isInvalidDecl() && (DclT != SavT)) {
Steve Naroff437b4d82007-09-12 20:13:48 +00001776 VDecl->setType(DclT);
Christopher Lamb2ed9afd2007-11-29 19:09:19 +00001777 Init->setType(DclT);
1778 }
Steve Naroff61091402007-09-12 14:07:44 +00001779
1780 // Attach the initializer to the decl.
Steve Naroff437b4d82007-09-12 20:13:48 +00001781 VDecl->setInit(Init);
Steve Naroff61091402007-09-12 14:07:44 +00001782 return;
1783}
1784
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001785void Sema::ActOnUninitializedDecl(DeclTy *dcl) {
1786 Decl *RealDecl = static_cast<Decl *>(dcl);
1787
Argyrios Kyrtzidis6709e7d2008-11-07 13:01:22 +00001788 // If there is no declaration, there was an error parsing it. Just ignore it.
1789 if (RealDecl == 0)
1790 return;
1791
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001792 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
1793 QualType Type = Var->getType();
1794 // C++ [dcl.init.ref]p3:
1795 // The initializer can be omitted for a reference only in a
1796 // parameter declaration (8.3.5), in the declaration of a
1797 // function return type, in the declaration of a class member
1798 // within its class declaration (9.2), and where the extern
1799 // specifier is explicitly used.
Douglas Gregorc28b57d2008-11-03 20:45:27 +00001800 if (Type->isReferenceType() && Var->getStorageClass() != VarDecl::Extern) {
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001801 Diag(Var->getLocation(),
1802 diag::err_reference_var_requires_init,
1803 Var->getName(),
1804 SourceRange(Var->getLocation(), Var->getLocation()));
Douglas Gregorc28b57d2008-11-03 20:45:27 +00001805 Var->setInvalidDecl();
1806 return;
1807 }
1808
1809 // C++ [dcl.init]p9:
1810 //
1811 // If no initializer is specified for an object, and the object
1812 // is of (possibly cv-qualified) non-POD class type (or array
1813 // thereof), the object shall be default-initialized; if the
1814 // object is of const-qualified type, the underlying class type
1815 // shall have a user-declared default constructor.
1816 if (getLangOptions().CPlusPlus) {
1817 QualType InitType = Type;
1818 if (const ArrayType *Array = Context.getAsArrayType(Type))
1819 InitType = Array->getElementType();
1820 if (InitType->isRecordType()) {
Douglas Gregor6f543152008-11-05 15:29:30 +00001821 const CXXConstructorDecl *Constructor
1822 = PerformInitializationByConstructor(InitType, 0, 0,
1823 Var->getLocation(),
1824 SourceRange(Var->getLocation(),
1825 Var->getLocation()),
1826 Var->getName(),
1827 IK_Default);
Douglas Gregorc28b57d2008-11-03 20:45:27 +00001828 if (!Constructor)
1829 Var->setInvalidDecl();
1830 }
1831 }
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001832
Douglas Gregor9774aa12008-10-29 13:50:18 +00001833#if 0
1834 // FIXME: Temporarily disabled because we are not properly parsing
1835 // linkage specifications on declarations, e.g.,
1836 //
1837 // extern "C" const CGPoint CGPointerZero;
1838 //
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001839 // C++ [dcl.init]p9:
1840 //
1841 // If no initializer is specified for an object, and the
1842 // object is of (possibly cv-qualified) non-POD class type (or
1843 // array thereof), the object shall be default-initialized; if
1844 // the object is of const-qualified type, the underlying class
1845 // type shall have a user-declared default
1846 // constructor. Otherwise, if no initializer is specified for
1847 // an object, the object and its subobjects, if any, have an
1848 // indeterminate initial value; if the object or any of its
1849 // subobjects are of const-qualified type, the program is
1850 // ill-formed.
1851 //
1852 // This isn't technically an error in C, so we don't diagnose it.
1853 //
1854 // FIXME: Actually perform the POD/user-defined default
1855 // constructor check.
1856 if (getLangOptions().CPlusPlus &&
Douglas Gregor9774aa12008-10-29 13:50:18 +00001857 Context.getCanonicalType(Type).isConstQualified() &&
1858 Var->getStorageClass() != VarDecl::Extern)
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001859 Diag(Var->getLocation(),
1860 diag::err_const_var_requires_init,
1861 Var->getName(),
1862 SourceRange(Var->getLocation(), Var->getLocation()));
Douglas Gregor9774aa12008-10-29 13:50:18 +00001863#endif
Douglas Gregor8e1cf602008-10-29 00:13:59 +00001864 }
1865}
1866
Chris Lattner776fac82007-06-09 00:53:06 +00001867/// The declarators are chained together backwards, reverse the list.
1868Sema::DeclTy *Sema::FinalizeDeclaratorGroup(Scope *S, DeclTy *group) {
1869 // Often we have single declarators, handle them quickly.
Steve Naroffa23cc792007-09-13 23:52:58 +00001870 Decl *GroupDecl = static_cast<Decl*>(group);
1871 if (GroupDecl == 0)
Steve Naroff61091402007-09-12 14:07:44 +00001872 return 0;
Steve Naroffa23cc792007-09-13 23:52:58 +00001873
1874 ScopedDecl *Group = dyn_cast<ScopedDecl>(GroupDecl);
1875 ScopedDecl *NewGroup = 0;
Steve Naroff61091402007-09-12 14:07:44 +00001876 if (Group->getNextDeclarator() == 0)
Chris Lattner776fac82007-06-09 00:53:06 +00001877 NewGroup = Group;
Steve Naroff61091402007-09-12 14:07:44 +00001878 else { // reverse the list.
1879 while (Group) {
Steve Naroffa23cc792007-09-13 23:52:58 +00001880 ScopedDecl *Next = Group->getNextDeclarator();
Steve Naroff61091402007-09-12 14:07:44 +00001881 Group->setNextDeclarator(NewGroup);
1882 NewGroup = Group;
1883 Group = Next;
1884 }
1885 }
1886 // Perform semantic analysis that depends on having fully processed both
1887 // the declarator and initializer.
Steve Naroffa23cc792007-09-13 23:52:58 +00001888 for (ScopedDecl *ID = NewGroup; ID; ID = ID->getNextDeclarator()) {
Steve Naroff61091402007-09-12 14:07:44 +00001889 VarDecl *IDecl = dyn_cast<VarDecl>(ID);
1890 if (!IDecl)
1891 continue;
Steve Naroff61091402007-09-12 14:07:44 +00001892 QualType T = IDecl->getType();
1893
1894 // C99 6.7.5.2p2: If an identifier is declared to be an object with
1895 // static storage duration, it shall not have a variable length array.
Steve Naroff08899ff2008-04-15 22:42:06 +00001896 if ((IDecl->isFileVarDecl() || IDecl->isBlockVarDecl()) &&
1897 IDecl->getStorageClass() == VarDecl::Static) {
Chris Lattner7adf0762008-08-04 07:31:14 +00001898 if (T->isVariableArrayType()) {
Eli Friedmanbd258282008-02-15 18:16:39 +00001899 Diag(IDecl->getLocation(), diag::err_typecheck_illegal_vla);
1900 IDecl->setInvalidDecl();
Steve Naroff61091402007-09-12 14:07:44 +00001901 }
1902 }
1903 // Block scope. C99 6.7p7: If an identifier for an object is declared with
1904 // no linkage (C99 6.2.2p6), the type for the object shall be complete...
Steve Naroff08899ff2008-04-15 22:42:06 +00001905 if (IDecl->isBlockVarDecl() &&
1906 IDecl->getStorageClass() != VarDecl::Extern) {
Chris Lattner81cb9e82008-04-02 01:05:10 +00001907 if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Chris Lattner310369f2007-12-02 07:50:03 +00001908 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
1909 T.getAsString());
Steve Naroff61091402007-09-12 14:07:44 +00001910 IDecl->setInvalidDecl();
1911 }
1912 }
1913 // File scope. C99 6.9.2p2: A declaration of an identifier for and
1914 // object that has file scope without an initializer, and without a
1915 // storage-class specifier or with the storage-class specifier "static",
1916 // constitutes a tentative definition. Note: A tentative definition with
1917 // external linkage is valid (C99 6.2.2p5).
Steve Naroff5bb8f222008-08-08 17:50:35 +00001918 if (isTentativeDefinition(IDecl)) {
Eli Friedman9e805b22008-02-15 12:53:51 +00001919 if (T->isIncompleteArrayType()) {
Steve Naroffacb6fa62008-01-18 20:40:52 +00001920 // C99 6.9.2 (p2, p5): Implicit initialization causes an incomplete
1921 // array to be completed. Don't issue a diagnostic.
Chris Lattner81cb9e82008-04-02 01:05:10 +00001922 } else if (T->isIncompleteType() && !IDecl->isInvalidDecl()) {
Steve Naroffacb6fa62008-01-18 20:40:52 +00001923 // C99 6.9.2p3: If the declaration of an identifier for an object is
1924 // a tentative definition and has internal linkage (C99 6.2.2p3), the
1925 // declared type shall not be an incomplete type.
Chris Lattner310369f2007-12-02 07:50:03 +00001926 Diag(IDecl->getLocation(), diag::err_typecheck_decl_incomplete_type,
1927 T.getAsString());
Steve Naroff61091402007-09-12 14:07:44 +00001928 IDecl->setInvalidDecl();
1929 }
1930 }
Steve Naroff5bb8f222008-08-08 17:50:35 +00001931 if (IDecl->isFileVarDecl())
1932 CheckForFileScopedRedefinitions(S, IDecl);
Chris Lattner776fac82007-06-09 00:53:06 +00001933 }
1934 return NewGroup;
1935}
Steve Naroff7e6f7c22007-08-28 03:03:08 +00001936
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001937/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
1938/// to introduce parameters into function prototype scope.
1939Sema::DeclTy *
1940Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00001941 // FIXME: disallow CXXScopeSpec for param declarators.
Chris Lattnercf31de32008-06-26 06:49:43 +00001942 const DeclSpec &DS = D.getDeclSpec();
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001943
1944 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Daniel Dunbar0ff41922008-09-03 21:54:21 +00001945 VarDecl::StorageClass StorageClass = VarDecl::None;
1946 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
1947 StorageClass = VarDecl::Register;
1948 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001949 Diag(DS.getStorageClassSpecLoc(),
1950 diag::err_invalid_storage_class_in_func_decl);
Chris Lattnercf31de32008-06-26 06:49:43 +00001951 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001952 }
1953 if (DS.isThreadSpecified()) {
1954 Diag(DS.getThreadSpecLoc(),
1955 diag::err_invalid_storage_class_in_func_decl);
Chris Lattnercf31de32008-06-26 06:49:43 +00001956 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001957 }
1958
Douglas Gregorcaa8ace2008-05-07 04:49:29 +00001959 // Check that there are no default arguments inside the type of this
1960 // parameter (C++ only).
1961 if (getLangOptions().CPlusPlus)
1962 CheckExtraCXXDefaultArguments(D);
1963
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001964 // In this context, we *do not* check D.getInvalidType(). If the declarator
1965 // type was invalid, GetTypeForDeclarator() still returns a "valid" type,
1966 // though it will not reflect the user specified type.
1967 QualType parmDeclType = GetTypeForDeclarator(D, S);
1968
1969 assert(!parmDeclType.isNull() && "GetTypeForDeclarator() returned null type");
1970
Chris Lattnerc284e9b2007-01-23 05:14:32 +00001971 // TODO: CHECK FOR CONFLICTS, multiple decls with same name in one scope.
1972 // Can this happen for params? We already checked that they don't conflict
1973 // among each other. Here they can only shadow globals, which is ok.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001974 IdentifierInfo *II = D.getIdentifier();
1975 if (Decl *PrevDecl = LookupDecl(II, Decl::IDNS_Ordinary, S)) {
1976 if (S->isDeclScope(PrevDecl)) {
1977 Diag(D.getIdentifierLoc(), diag::err_param_redefinition,
1978 dyn_cast<NamedDecl>(PrevDecl)->getName());
1979
1980 // Recover by removing the name
1981 II = 0;
1982 D.SetIdentifier(0, D.getIdentifierLoc());
1983 }
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00001984 }
Steve Naroff773df5c2007-08-07 22:44:21 +00001985
1986 // Perform the default function/array conversion (C99 6.7.5.3p[7,8]).
1987 // Doing the promotion here has a win and a loss. The win is the type for
1988 // both Decl's and DeclRefExpr's will match (a convenient invariant for the
1989 // code generator). The loss is the orginal type isn't preserved. For example:
1990 //
1991 // void func(int parmvardecl[5]) { // convert "int [5]" to "int *"
1992 // int blockvardecl[5];
1993 // sizeof(parmvardecl); // size == 4
1994 // sizeof(blockvardecl); // size == 20
1995 // }
1996 //
1997 // For expressions, all implicit conversions are captured using the
1998 // ImplicitCastExpr AST node (we have no such mechanism for Decl's).
1999 //
2000 // FIXME: If a source translation tool needs to see the original type, then
2001 // we need to consider storing both types (in ParmVarDecl)...
2002 //
Chris Lattnera21ad802008-04-02 05:18:44 +00002003 if (parmDeclType->isArrayType()) {
Chris Lattner4f203512008-01-02 22:50:48 +00002004 // int x[restrict 4] -> int *restrict
Chris Lattnera21ad802008-04-02 05:18:44 +00002005 parmDeclType = Context.getArrayDecayedType(parmDeclType);
Chris Lattner4f203512008-01-02 22:50:48 +00002006 } else if (parmDeclType->isFunctionType())
Steve Naroff773df5c2007-08-07 22:44:21 +00002007 parmDeclType = Context.getPointerType(parmDeclType);
2008
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002009 ParmVarDecl *New = ParmVarDecl::Create(Context, CurContext,
2010 D.getIdentifierLoc(), II,
Daniel Dunbar0ff41922008-09-03 21:54:21 +00002011 parmDeclType, StorageClass,
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002012 0, 0);
Anders Carlsson1a841062008-02-15 07:04:12 +00002013
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002014 if (D.getInvalidType())
Steve Naroffcf871f52007-08-28 18:45:29 +00002015 New->setInvalidDecl();
2016
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00002017 if (II)
2018 PushOnScopeChains(New, S);
Nate Begemand8c41562008-02-17 21:20:31 +00002019
Chris Lattner2727d1b2008-06-29 00:02:00 +00002020 ProcessDeclAttributes(New, D);
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00002021 return New;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002022
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00002023}
Fariborz Jahanian56ff1462007-11-08 23:49:49 +00002024
Chris Lattnera55a2cc2007-10-09 17:14:05 +00002025Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +00002026 assert(getCurFunctionDecl() == 0 && "Function parsing confused");
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002027 assert(D.getTypeObject(0).Kind == DeclaratorChunk::Function &&
2028 "Not a function declarator!");
2029 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(0).Fun;
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002030
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002031 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
2032 // for a K&R function.
2033 if (!FTI.hasPrototype) {
2034 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002035 if (FTI.ArgInfo[i].Param == 0) {
Chris Lattner843c5922007-06-10 23:40:34 +00002036 Diag(FTI.ArgInfo[i].IdentLoc, diag::ext_param_not_declared,
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002037 FTI.ArgInfo[i].Ident->getName());
2038 // Implicitly declare the argument as type 'int' for lack of a better
2039 // type.
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002040 DeclSpec DS;
2041 const char* PrevSpec; // unused
2042 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.ArgInfo[i].IdentLoc,
2043 PrevSpec);
2044 Declarator ParamD(DS, Declarator::KNRTypeListContext);
2045 ParamD.SetIdentifier(FTI.ArgInfo[i].Ident, FTI.ArgInfo[i].IdentLoc);
2046 FTI.ArgInfo[i].Param = ActOnParamDeclarator(FnBodyScope, ParamD);
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002047 }
2048 }
Chris Lattner2114d5e2006-12-04 07:40:24 +00002049 } else {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002050 // FIXME: Diagnose arguments without names in C.
Chris Lattner5c5fbcc2006-12-03 08:41:30 +00002051 }
2052
Chris Lattnerc5cdf4d2007-01-21 07:42:07 +00002053 Scope *GlobalScope = FnBodyScope->getParent();
Steve Naroff012484d2008-01-14 20:51:29 +00002054
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002055 return ActOnStartOfFunctionDef(FnBodyScope,
Daniel Dunbar1ff1d1f2008-08-05 16:28:08 +00002056 ActOnDeclarator(GlobalScope, D, 0));
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002057}
2058
2059Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, DeclTy *D) {
2060 Decl *decl = static_cast<Decl*>(D);
Chris Lattner27055192008-02-16 01:20:36 +00002061 FunctionDecl *FD = cast<FunctionDecl>(decl);
Douglas Gregorcad304ba2008-10-29 15:10:40 +00002062
2063 // See if this is a redefinition.
2064 const FunctionDecl *Definition;
2065 if (FD->getBody(Definition)) {
2066 Diag(FD->getLocation(), diag::err_redefinition,
2067 FD->getName());
2068 Diag(Definition->getLocation(), diag::err_previous_definition);
2069 }
2070
Chris Lattner0a5ff0d2008-04-06 04:47:34 +00002071 PushDeclContext(FD);
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002072
2073 // Check the validity of our function parameters
2074 CheckParmsForFunctionDef(FD);
2075
2076 // Introduce our parameters into the function scope
2077 for (unsigned p = 0, NumParams = FD->getNumParams(); p < NumParams; ++p) {
2078 ParmVarDecl *Param = FD->getParamDecl(p);
2079 // If this has an identifier, add it to the scope stack.
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00002080 if (Param->getIdentifier())
2081 PushOnScopeChains(Param, FnBodyScope);
Chris Lattnerf61c8a82007-01-21 19:04:43 +00002082 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002083
Chris Lattnere168f762006-11-10 05:29:30 +00002084 return FD;
2085}
2086
Steve Naroffb313fc32007-11-11 23:20:51 +00002087Sema::DeclTy *Sema::ActOnFinishFunctionBody(DeclTy *D, StmtTy *Body) {
2088 Decl *dcl = static_cast<Decl *>(D);
Steve Naroff542cd5d2008-07-25 17:57:26 +00002089 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(dcl)) {
Steve Naroffb313fc32007-11-11 23:20:51 +00002090 FD->setBody((Stmt*)Body);
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +00002091 assert(FD == getCurFunctionDecl() && "Function parsing confused");
Steve Naroff542cd5d2008-07-25 17:57:26 +00002092 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Steve Naroffb313fc32007-11-11 23:20:51 +00002093 MD->setBody((Stmt*)Body);
Steve Naroff542cd5d2008-07-25 17:57:26 +00002094 } else
2095 return 0;
Chris Lattner0a5ff0d2008-04-06 04:47:34 +00002096 PopDeclContext();
Chris Lattnere2473062007-05-28 06:28:18 +00002097 // Verify and clean out per-function state.
2098
2099 // Check goto/label use.
Chris Lattner23b7eb62007-06-15 23:05:46 +00002100 for (llvm::DenseMap<IdentifierInfo*, LabelStmt*>::iterator
2101 I = LabelMap.begin(), E = LabelMap.end(); I != E; ++I) {
Chris Lattnere2473062007-05-28 06:28:18 +00002102 // Verify that we have no forward references left. If so, there was a goto
2103 // or address of a label taken, but no definition of it. Label fwd
2104 // definitions are indicated with a null substmt.
2105 if (I->second->getSubStmt() == 0) {
2106 LabelStmt *L = I->second;
2107 // Emit error.
Chris Lattnereefa10e2007-05-28 06:56:27 +00002108 Diag(L->getIdentLoc(), diag::err_undeclared_label_use, L->getName());
Chris Lattnere2473062007-05-28 06:28:18 +00002109
2110 // At this point, we have gotos that use the bogus label. Stitch it into
2111 // the function body so that they aren't leaked and that the AST is well
2112 // formed.
Chris Lattner3efff542008-01-25 00:01:10 +00002113 if (Body) {
2114 L->setSubStmt(new NullStmt(L->getIdentLoc()));
2115 cast<CompoundStmt>((Stmt*)Body)->push_back(L);
2116 } else {
2117 // The whole function wasn't parsed correctly, just delete this.
2118 delete L;
2119 }
Chris Lattnere2473062007-05-28 06:28:18 +00002120 }
2121 }
2122 LabelMap.clear();
2123
Steve Naroffb313fc32007-11-11 23:20:51 +00002124 return D;
Fariborz Jahanian85e1d0d2007-11-10 16:31:34 +00002125}
2126
Chris Lattnerac18be92006-11-20 06:49:47 +00002127/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
2128/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Steve Naroff2f742082007-09-16 16:16:00 +00002129ScopedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
2130 IdentifierInfo &II, Scope *S) {
Chris Lattner00e26072008-05-05 21:18:06 +00002131 // Extension in C99. Legal in C90, but warn about it.
2132 if (getLangOptions().C99)
Chris Lattnerac18be92006-11-20 06:49:47 +00002133 Diag(Loc, diag::ext_implicit_function_decl, II.getName());
Chris Lattner00e26072008-05-05 21:18:06 +00002134 else
Chris Lattnerac18be92006-11-20 06:49:47 +00002135 Diag(Loc, diag::warn_implicit_function_decl, II.getName());
2136
2137 // FIXME: handle stuff like:
2138 // void foo() { extern float X(); }
2139 // void bar() { X(); } <-- implicit decl for X in another scope.
2140
2141 // Set a Declarator for the implicit definition: int foo();
Chris Lattner353f5742006-11-28 04:50:12 +00002142 const char *Dummy;
Chris Lattnerac18be92006-11-20 06:49:47 +00002143 DeclSpec DS;
Chris Lattnerb20e8942006-11-28 05:30:29 +00002144 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy);
Chris Lattnerb055f2d2007-02-11 08:19:57 +00002145 Error = Error; // Silence warning.
Chris Lattner353f5742006-11-28 04:50:12 +00002146 assert(!Error && "Error setting up implicit decl!");
Chris Lattnerac18be92006-11-20 06:49:47 +00002147 Declarator D(DS, Declarator::BlockContext);
Argyrios Kyrtzidis22c40fa2008-10-24 21:46:40 +00002148 D.AddTypeInfo(DeclaratorChunk::getFunction(false, false, 0, 0, 0, Loc));
Chris Lattnerac18be92006-11-20 06:49:47 +00002149 D.SetIdentifier(&II, Loc);
2150
Argyrios Kyrtzidis694dda12008-05-01 21:04:16 +00002151 // Insert this function into translation-unit scope.
2152
2153 DeclContext *PrevDC = CurContext;
2154 CurContext = Context.getTranslationUnitDecl();
2155
Steve Naroff3913ea42008-04-04 14:32:09 +00002156 FunctionDecl *FD =
Daniel Dunbar1ff1d1f2008-08-05 16:28:08 +00002157 dyn_cast<FunctionDecl>(static_cast<Decl*>(ActOnDeclarator(TUScope, D, 0)));
Steve Naroff3913ea42008-04-04 14:32:09 +00002158 FD->setImplicit();
Argyrios Kyrtzidis694dda12008-05-01 21:04:16 +00002159
2160 CurContext = PrevDC;
2161
Steve Naroff3913ea42008-04-04 14:32:09 +00002162 return FD;
Chris Lattnerac18be92006-11-20 06:49:47 +00002163}
2164
Chris Lattner302b4be2006-11-19 02:31:38 +00002165
Chris Lattner07b201d2007-11-14 06:34:38 +00002166TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
Steve Naroffa23cc792007-09-13 23:52:58 +00002167 ScopedDecl *LastDeclarator) {
Chris Lattner776fac82007-06-09 00:53:06 +00002168 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Narofff93b6722007-08-28 20:14:24 +00002169 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Chris Lattner0d8b1a12006-11-20 04:34:45 +00002170
Chris Lattner18b19622007-01-22 07:39:13 +00002171 // Scope manipulation handled by caller.
Chris Lattnerc5ffed42008-04-04 06:12:32 +00002172 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
2173 D.getIdentifierLoc(),
Chris Lattnera7b32872008-03-15 06:12:44 +00002174 D.getIdentifier(),
Chris Lattner96c460d2008-03-15 21:32:50 +00002175 T, LastDeclarator);
Steve Narofff93b6722007-08-28 20:14:24 +00002176 if (D.getInvalidType())
2177 NewTD->setInvalidDecl();
2178 return NewTD;
Chris Lattnere168f762006-11-10 05:29:30 +00002179}
2180
Steve Naroff30d242c2007-09-15 18:49:24 +00002181/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Chris Lattner1300fb92007-01-23 23:42:53 +00002182/// former case, Name will be non-null. In the later case, Name will be null.
2183/// TagType indicates what kind of tag this is. TK indicates whether this is a
2184/// reference/declaration/definition of a tag.
Steve Naroff30d242c2007-09-15 18:49:24 +00002185Sema::DeclTy *Sema::ActOnTag(Scope *S, unsigned TagType, TagKind TK,
Argyrios Kyrtzidis32a03792008-11-08 16:45:02 +00002186 SourceLocation KWLoc, const CXXScopeSpec &SS,
2187 IdentifierInfo *Name, SourceLocation NameLoc,
2188 AttributeList *Attr) {
Chris Lattner8799cf22007-01-23 01:57:16 +00002189 // If this is a use of an existing tag, it must have a name.
Chris Lattner7b9ace62007-01-23 20:11:08 +00002190 assert((Name != 0 || TK == TK_Definition) &&
2191 "Nameless record must be a definition!");
Chris Lattner8799cf22007-01-23 01:57:16 +00002192
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002193 TagDecl::TagKind Kind;
Chris Lattnerbf0b7982007-01-23 04:27:41 +00002194 switch (TagType) {
Chris Lattnerf34c4da2007-01-23 04:08:05 +00002195 default: assert(0 && "Unknown tag type!");
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002196 case DeclSpec::TST_struct: Kind = TagDecl::TK_struct; break;
2197 case DeclSpec::TST_union: Kind = TagDecl::TK_union; break;
2198 case DeclSpec::TST_class: Kind = TagDecl::TK_class; break;
2199 case DeclSpec::TST_enum: Kind = TagDecl::TK_enum; break;
Chris Lattnerf34c4da2007-01-23 04:08:05 +00002200 }
Chris Lattner7e783a12007-01-23 02:05:42 +00002201
Ted Kremenek21475702008-09-05 17:16:31 +00002202 // Two code paths: a new one for structs/unions/classes where we create
2203 // separate decls for forward declarations, and an old (eventually to
2204 // be removed) code path for enums.
2205 if (Kind != TagDecl::TK_enum)
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002206 return ActOnTagStruct(S, Kind, TK, KWLoc, SS, Name, NameLoc, Attr);
Ted Kremenek21475702008-09-05 17:16:31 +00002207
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002208 DeclContext *DC = CurContext;
2209 ScopedDecl *PrevDecl = 0;
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00002210
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002211 if (Name && SS.isNotEmpty()) {
2212 // We have a nested-name tag ('struct foo::bar').
2213
2214 // Check for invalid 'foo::'.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002215 if (SS.isInvalid()) {
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002216 Name = 0;
2217 goto CreateNewDecl;
2218 }
2219
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002220 DC = static_cast<DeclContext*>(SS.getScopeRep());
2221 // Look-up name inside 'foo::'.
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002222 PrevDecl = dyn_cast_or_null<TagDecl>(LookupDecl(Name, Decl::IDNS_Tag,S,DC));
2223
2224 // A tag 'foo::bar' must already exist.
2225 if (PrevDecl == 0) {
2226 Diag(NameLoc, diag::err_not_tag_in_scope, Name->getName(),
2227 SS.getRange());
2228 Name = 0;
2229 goto CreateNewDecl;
2230 }
2231 } else {
2232 // If this is a named struct, check to see if there was a previous forward
2233 // declaration or definition.
2234 // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
2235 PrevDecl = dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag,S));
2236 }
2237
Ted Kremenekceb3ca92008-09-02 21:26:19 +00002238 if (PrevDecl) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002239 assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
2240 "unexpected Decl type");
2241 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner9ff58d72008-07-03 03:30:58 +00002242 // If this is a use of a previous tag, or if the tag is already declared
2243 // in the same scope (so that the definition/declaration completes or
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002244 // rementions the tag), reuse the decl.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002245 if (TK == TK_Reference || isDeclInScope(PrevDecl, DC, S)) {
Chris Lattner9ff58d72008-07-03 03:30:58 +00002246 // Make sure that this wasn't declared as an enum and now used as a
2247 // struct or something similar.
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002248 if (PrevTagDecl->getTagKind() != Kind) {
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002249 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
2250 Diag(PrevDecl->getLocation(), diag::err_previous_use);
Chris Lattner9ff58d72008-07-03 03:30:58 +00002251 // Recover by making this an anonymous redefinition.
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002252 Name = 0;
Chris Lattner9ff58d72008-07-03 03:30:58 +00002253 PrevDecl = 0;
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002254 } else {
Chris Lattner9ff58d72008-07-03 03:30:58 +00002255 // If this is a use or a forward declaration, we're good.
2256 if (TK != TK_Definition)
2257 return PrevDecl;
2258
2259 // Diagnose attempts to redefine a tag.
2260 if (PrevTagDecl->isDefinition()) {
2261 Diag(NameLoc, diag::err_redefinition, Name->getName());
2262 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
2263 // If this is a redefinition, recover by making this struct be
2264 // anonymous, which will make any later references get the previous
2265 // definition.
2266 Name = 0;
2267 } else {
2268 // Okay, this is definition of a previously declared or referenced
2269 // tag. Move the location of the decl to be the definition site.
2270 PrevDecl->setLocation(NameLoc);
2271 return PrevDecl;
2272 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002273 }
Chris Lattner7b9ace62007-01-23 20:11:08 +00002274 }
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +00002275 // If we get here, this is a definition of a new struct type in a nested
2276 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a new
2277 // type.
2278 } else {
Argyrios Kyrtzidis7da34d02008-07-16 07:45:46 +00002279 // PrevDecl is a namespace.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002280 if (isDeclInScope(PrevDecl, DC, S)) {
Ted Kremenek3060d982008-09-03 18:03:35 +00002281 // The tag name clashes with a namespace name, issue an error and
2282 // recover by making this tag be anonymous.
Argyrios Kyrtzidis7da34d02008-07-16 07:45:46 +00002283 Diag(NameLoc, diag::err_redefinition_different_kind, Name->getName());
2284 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
2285 Name = 0;
2286 }
Chris Lattner8799cf22007-01-23 01:57:16 +00002287 }
Chris Lattner18b19622007-01-22 07:39:13 +00002288 }
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00002289
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +00002290 CreateNewDecl:
Chris Lattner18b19622007-01-22 07:39:13 +00002291
Chris Lattnerbf0b7982007-01-23 04:27:41 +00002292 // If there is an identifier, use the location of the identifier as the
2293 // location of the decl, otherwise use the location of the struct/union
2294 // keyword.
2295 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
2296
Chris Lattner18b19622007-01-22 07:39:13 +00002297 // Otherwise, if this is the first time we've seen this tag, create the decl.
Chris Lattner7b9ace62007-01-23 20:11:08 +00002298 TagDecl *New;
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002299 if (Kind == TagDecl::TK_enum) {
Chris Lattner776fac82007-06-09 00:53:06 +00002300 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2301 // enum X { A, B, C } D; D should chain to X.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002302 New = EnumDecl::Create(Context, DC, Loc, Name, 0);
Chris Lattner5f521502007-01-25 06:27:24 +00002303 // If this is an undefined enum, warn.
Chris Lattnerc1915e22007-01-25 07:29:02 +00002304 if (TK != TK_Definition) Diag(Loc, diag::ext_forward_ref_enum);
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002305 } else {
2306 // struct/union/class
2307
Chris Lattner776fac82007-06-09 00:53:06 +00002308 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2309 // struct X { int A; } D; D should chain to X.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002310 if (getLangOptions().CPlusPlus)
Ted Kremenek6ddf53e2008-09-05 17:39:33 +00002311 // FIXME: Look for a way to use RecordDecl for simple structs.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002312 New = CXXRecordDecl::Create(Context, Kind, DC, Loc, Name);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002313 else
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002314 New = RecordDecl::Create(Context, Kind, DC, Loc, Name);
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002315 }
Chris Lattner18b19622007-01-22 07:39:13 +00002316
2317 // If this has an identifier, add it to the scope stack.
2318 if (Name) {
Chris Lattner1a76a3c2007-08-26 06:24:45 +00002319 // The scope passed in may not be a decl scope. Zip up the scope tree until
2320 // we find one that is.
2321 while ((S->getFlags() & Scope::DeclScope) == 0)
2322 S = S->getParent();
2323
2324 // Add it to the decl chain.
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00002325 PushOnScopeChains(New, S);
Chris Lattner18b19622007-01-22 07:39:13 +00002326 }
Chris Lattner622c1932008-02-06 00:51:33 +00002327
Chris Lattnera5741542008-06-28 23:58:55 +00002328 if (Attr)
2329 ProcessDeclAttributeList(New, Attr);
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +00002330
2331 // Set the lexical context. If the tag has a C++ scope specifier, the
2332 // lexical context will be different from the semantic context.
2333 New->setLexicalDeclContext(CurContext);
2334
Chris Lattner18b19622007-01-22 07:39:13 +00002335 return New;
2336}
Chris Lattner1300fb92007-01-23 23:42:53 +00002337
Ted Kremenek21475702008-09-05 17:16:31 +00002338/// ActOnTagStruct - New "ActOnTag" logic for structs/unions/classes. Unlike
2339/// the logic for enums, we create separate decls for forward declarations.
2340/// This is called by ActOnTag, but eventually will replace its logic.
2341Sema::DeclTy *Sema::ActOnTagStruct(Scope *S, TagDecl::TagKind Kind, TagKind TK,
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002342 SourceLocation KWLoc, const CXXScopeSpec &SS,
2343 IdentifierInfo *Name, SourceLocation NameLoc,
2344 AttributeList *Attr) {
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002345 DeclContext *DC = CurContext;
2346 ScopedDecl *PrevDecl = 0;
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002347
2348 if (Name && SS.isNotEmpty()) {
2349 // We have a nested-name tag ('struct foo::bar').
2350
2351 // Check for invalid 'foo::'.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002352 if (SS.isInvalid()) {
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002353 Name = 0;
2354 goto CreateNewDecl;
2355 }
2356
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002357 DC = static_cast<DeclContext*>(SS.getScopeRep());
2358 // Look-up name inside 'foo::'.
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002359 PrevDecl = dyn_cast_or_null<TagDecl>(LookupDecl(Name, Decl::IDNS_Tag,S,DC));
2360
2361 // A tag 'foo::bar' must already exist.
2362 if (PrevDecl == 0) {
2363 Diag(NameLoc, diag::err_not_tag_in_scope, Name->getName(),
2364 SS.getRange());
2365 Name = 0;
2366 goto CreateNewDecl;
2367 }
2368 } else {
2369 // If this is a named struct, check to see if there was a previous forward
2370 // declaration or definition.
2371 // Use ScopedDecl instead of TagDecl, because a NamespaceDecl may come up.
2372 PrevDecl = dyn_cast_or_null<ScopedDecl>(LookupDecl(Name, Decl::IDNS_Tag,S));
2373 }
Ted Kremenek21475702008-09-05 17:16:31 +00002374
2375 if (PrevDecl) {
2376 assert((isa<TagDecl>(PrevDecl) || isa<NamespaceDecl>(PrevDecl)) &&
2377 "unexpected Decl type");
2378
2379 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
2380 // If this is a use of a previous tag, or if the tag is already declared
2381 // in the same scope (so that the definition/declaration completes or
2382 // rementions the tag), reuse the decl.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002383 if (TK == TK_Reference || isDeclInScope(PrevDecl, DC, S)) {
Ted Kremenek21475702008-09-05 17:16:31 +00002384 // Make sure that this wasn't declared as an enum and now used as a
2385 // struct or something similar.
2386 if (PrevTagDecl->getTagKind() != Kind) {
2387 Diag(KWLoc, diag::err_use_with_wrong_tag, Name->getName());
2388 Diag(PrevDecl->getLocation(), diag::err_previous_use);
2389 // Recover by making this an anonymous redefinition.
2390 Name = 0;
2391 PrevDecl = 0;
2392 } else {
2393 // If this is a use, return the original decl.
2394
2395 // FIXME: In the future, return a variant or some other clue
2396 // for the consumer of this Decl to know it doesn't own it.
2397 // For our current ASTs this shouldn't be a problem, but will
2398 // need to be changed with DeclGroups.
2399 if (TK == TK_Reference)
2400 return PrevDecl;
2401
2402 // The new decl is a definition?
2403 if (TK == TK_Definition) {
2404 // Diagnose attempts to redefine a tag.
2405 if (RecordDecl* DefRecord =
2406 cast<RecordDecl>(PrevTagDecl)->getDefinition(Context)) {
2407 Diag(NameLoc, diag::err_redefinition, Name->getName());
2408 Diag(DefRecord->getLocation(), diag::err_previous_definition);
2409 // If this is a redefinition, recover by making this struct be
2410 // anonymous, which will make any later references get the previous
2411 // definition.
2412 Name = 0;
2413 PrevDecl = 0;
2414 }
2415 // Okay, this is definition of a previously declared or referenced
2416 // tag. We're going to create a new Decl.
2417 }
2418 }
2419 // If we get here we have (another) forward declaration. Just create
2420 // a new decl.
2421 }
2422 else {
2423 // If we get here, this is a definition of a new struct type in a nested
2424 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
2425 // new decl/type. We set PrevDecl to NULL so that the Records
2426 // have distinct types.
2427 PrevDecl = 0;
2428 }
2429 } else {
2430 // PrevDecl is a namespace.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002431 if (isDeclInScope(PrevDecl, DC, S)) {
Ted Kremenek21475702008-09-05 17:16:31 +00002432 // The tag name clashes with a namespace name, issue an error and
2433 // recover by making this tag be anonymous.
2434 Diag(NameLoc, diag::err_redefinition_different_kind, Name->getName());
2435 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
2436 Name = 0;
2437 }
2438 }
2439 }
Argyrios Kyrtzidise02eb2b2008-11-09 22:09:58 +00002440
2441 CreateNewDecl:
2442
Ted Kremenek21475702008-09-05 17:16:31 +00002443 // If there is an identifier, use the location of the identifier as the
2444 // location of the decl, otherwise use the location of the struct/union
2445 // keyword.
2446 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
2447
2448 // Otherwise, if this is the first time we've seen this tag, create the decl.
2449 TagDecl *New;
2450
2451 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
2452 // struct X { int A; } D; D should chain to X.
2453 if (getLangOptions().CPlusPlus)
Ted Kremenek6ddf53e2008-09-05 17:39:33 +00002454 // FIXME: Look for a way to use RecordDecl for simple structs.
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002455 New = CXXRecordDecl::Create(Context, Kind, DC, Loc, Name,
Ted Kremenek21475702008-09-05 17:16:31 +00002456 dyn_cast_or_null<CXXRecordDecl>(PrevDecl));
2457 else
Argyrios Kyrtzidis8ad00b22008-11-09 22:53:32 +00002458 New = RecordDecl::Create(Context, Kind, DC, Loc, Name,
Ted Kremenek21475702008-09-05 17:16:31 +00002459 dyn_cast_or_null<RecordDecl>(PrevDecl));
2460
2461 // If this has an identifier, add it to the scope stack.
2462 if ((TK == TK_Definition || !PrevDecl) && Name) {
2463 // The scope passed in may not be a decl scope. Zip up the scope tree until
2464 // we find one that is.
2465 while ((S->getFlags() & Scope::DeclScope) == 0)
2466 S = S->getParent();
2467
2468 // Add it to the decl chain.
2469 PushOnScopeChains(New, S);
2470 }
Daniel Dunbar4290d462008-10-16 02:34:03 +00002471
2472 // Handle #pragma pack: if the #pragma pack stack has non-default
2473 // alignment, make up a packed attribute for this decl. These
2474 // attributes are checked when the ASTContext lays out the
2475 // structure.
2476 //
2477 // It is important for implementing the correct semantics that this
2478 // happen here (in act on tag decl). The #pragma pack stack is
2479 // maintained as a result of parser callbacks which can occur at
2480 // many points during the parsing of a struct declaration (because
2481 // the #pragma tokens are effectively skipped over during the
2482 // parsing of the struct).
2483 if (unsigned Alignment = PackContext.getAlignment())
2484 New->addAttr(new PackedAttr(Alignment * 8));
Ted Kremenek21475702008-09-05 17:16:31 +00002485
2486 if (Attr)
2487 ProcessDeclAttributeList(New, Attr);
2488
Argyrios Kyrtzidis9e59b572008-11-09 23:41:00 +00002489 // Set the lexical context. If the tag has a C++ scope specifier, the
2490 // lexical context will be different from the semantic context.
2491 New->setLexicalDeclContext(CurContext);
2492
Ted Kremenek21475702008-09-05 17:16:31 +00002493 return New;
2494}
2495
2496
Chris Lattner535b8302008-06-21 19:39:06 +00002497/// Collect the instance variables declared in an Objective-C object. Used in
2498/// the creation of structures from objects using the @defs directive.
Ted Kremenek0e857202008-08-20 03:26:33 +00002499static void CollectIvars(ObjCInterfaceDecl *Class, ASTContext& Ctx,
Chris Lattnerd7352d62008-07-21 22:17:28 +00002500 llvm::SmallVectorImpl<Sema::DeclTy*> &ivars) {
Chris Lattner535b8302008-06-21 19:39:06 +00002501 if (Class->getSuperClass())
Ted Kremenek0e857202008-08-20 03:26:33 +00002502 CollectIvars(Class->getSuperClass(), Ctx, ivars);
2503
2504 // For each ivar, create a fresh ObjCAtDefsFieldDecl.
Ted Kremenek3060d982008-09-03 18:03:35 +00002505 for (ObjCInterfaceDecl::ivar_iterator
2506 I=Class->ivar_begin(), E=Class->ivar_end(); I!=E; ++I) {
2507
Ted Kremenek0e857202008-08-20 03:26:33 +00002508 ObjCIvarDecl* ID = *I;
2509 ivars.push_back(ObjCAtDefsFieldDecl::Create(Ctx, ID->getLocation(),
2510 ID->getIdentifier(),
2511 ID->getType(),
2512 ID->getBitWidth()));
2513 }
Chris Lattner535b8302008-06-21 19:39:06 +00002514}
2515
2516/// Called whenever @defs(ClassName) is encountered in the source. Inserts the
2517/// instance variables of ClassName into Decls.
2518void Sema::ActOnDefs(Scope *S, SourceLocation DeclStart,
2519 IdentifierInfo *ClassName,
Chris Lattnerd7352d62008-07-21 22:17:28 +00002520 llvm::SmallVectorImpl<DeclTy*> &Decls) {
Chris Lattner535b8302008-06-21 19:39:06 +00002521 // Check that ClassName is a valid class
2522 ObjCInterfaceDecl *Class = getObjCInterfaceDecl(ClassName);
2523 if (!Class) {
2524 Diag(DeclStart, diag::err_undef_interface, ClassName->getName());
2525 return;
2526 }
Chris Lattner535b8302008-06-21 19:39:06 +00002527 // Collect the instance variables
Ted Kremenek0e857202008-08-20 03:26:33 +00002528 CollectIvars(Class, Context, Decls);
Chris Lattner535b8302008-06-21 19:39:06 +00002529}
2530
Chris Lattnerffb31a22008-11-12 21:17:48 +00002531/// TryToFixInvalidVariablyModifiedType - Helper method to turn variable array
2532/// types into constant array types in certain situations which would otherwise
2533/// be errors (for GCC compatibility).
2534static QualType TryToFixInvalidVariablyModifiedType(QualType T,
2535 ASTContext &Context) {
Eli Friedman149614b2008-06-03 21:01:11 +00002536 // This method tries to turn a variable array into a constant
2537 // array even when the size isn't an ICE. This is necessary
2538 // for compatibility with code that depends on gcc's buggy
2539 // constant expression folding, like struct {char x[(int)(char*)2];}
Chris Lattnerb5da7a32008-11-12 19:48:13 +00002540 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
2541 if (!VLATy) return QualType();
2542
2543 APValue Result;
2544 if (!VLATy->getSizeExpr() ||
Chris Lattner67d7b922008-11-16 21:24:15 +00002545 !VLATy->getSizeExpr()->Evaluate(Result, Context))
Chris Lattnerb5da7a32008-11-12 19:48:13 +00002546 return QualType();
2547
2548 assert(Result.isInt() && "Size expressions must be integers!");
2549 llvm::APSInt &Res = Result.getInt();
2550 if (Res > llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
2551 return Context.getConstantArrayType(VLATy->getElementType(),
2552 Res, ArrayType::Normal, 0);
Eli Friedman149614b2008-06-03 21:01:11 +00002553 return QualType();
2554}
2555
Steve Naroff30d242c2007-09-15 18:49:24 +00002556/// ActOnField - Each field of a struct/union/class is passed into this in order
Chris Lattner1300fb92007-01-23 23:42:53 +00002557/// to create a FieldDecl object for it.
Fariborz Jahaniande615832008-04-10 23:32:45 +00002558Sema::DeclTy *Sema::ActOnField(Scope *S,
Chris Lattner1300fb92007-01-23 23:42:53 +00002559 SourceLocation DeclStart,
2560 Declarator &D, ExprTy *BitfieldWidth) {
2561 IdentifierInfo *II = D.getIdentifier();
2562 Expr *BitWidth = (Expr*)BitfieldWidth;
Chris Lattner1300fb92007-01-23 23:42:53 +00002563 SourceLocation Loc = DeclStart;
2564 if (II) Loc = D.getIdentifierLoc();
2565
Chris Lattner62d2e662007-01-28 00:21:37 +00002566 // FIXME: Unnamed fields can be handled in various different ways, for
2567 // example, unnamed unions inject all members into the struct namespace!
Ted Kremenek3060d982008-09-03 18:03:35 +00002568
Chris Lattner1300fb92007-01-23 23:42:53 +00002569 if (BitWidth) {
2570 // TODO: Validate.
Steve Narofff84d11f2007-05-23 21:48:04 +00002571 //printf("WARNING: BITFIELDS IGNORED!\n");
Chris Lattner1300fb92007-01-23 23:42:53 +00002572
2573 // 6.7.2.1p3
2574 // 6.7.2.1p4
2575
2576 } else {
2577 // Not a bitfield.
2578
2579 // validate II.
2580
2581 }
2582
Steve Naroffe5aa9be2007-04-05 22:36:20 +00002583 QualType T = GetTypeForDeclarator(D, S);
Steve Narofff93b6722007-08-28 20:14:24 +00002584 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
2585 bool InvalidDecl = false;
Steve Naroff096dd942007-08-31 17:20:07 +00002586
Steve Naroff8eeeb132007-05-08 21:09:37 +00002587 // C99 6.7.2.1p8: A member of a structure or union may have any type other
2588 // than a variably modified type.
Eli Friedman9e805b22008-02-15 12:53:51 +00002589 if (T->isVariablyModifiedType()) {
Chris Lattnerffb31a22008-11-12 21:17:48 +00002590 QualType FixedTy = TryToFixInvalidVariablyModifiedType(T, Context);
Eli Friedman149614b2008-06-03 21:01:11 +00002591 if (!FixedTy.isNull()) {
Chris Lattnerf3e388d2008-11-13 18:49:38 +00002592 Diag(Loc, diag::warn_illegal_constant_array_size);
Eli Friedman149614b2008-06-03 21:01:11 +00002593 T = FixedTy;
2594 } else {
Chris Lattnerf3e388d2008-11-13 18:49:38 +00002595 Diag(Loc, diag::err_typecheck_field_variable_size);
Chris Lattnere7d1cdb2008-11-12 19:45:49 +00002596 T = Context.IntTy;
Eli Friedman149614b2008-06-03 21:01:11 +00002597 InvalidDecl = true;
2598 }
Steve Naroff8eeeb132007-05-08 21:09:37 +00002599 }
Chris Lattner776fac82007-06-09 00:53:06 +00002600 // FIXME: Chain fielddecls together.
Argyrios Kyrtzidised983422008-07-01 10:37:29 +00002601 FieldDecl *NewFD;
2602
2603 if (getLangOptions().CPlusPlus) {
2604 // FIXME: Replace CXXFieldDecls with FieldDecls for simple structs.
2605 NewFD = CXXFieldDecl::Create(Context, cast<CXXRecordDecl>(CurContext),
2606 Loc, II, T, BitWidth);
2607 if (II)
2608 PushOnScopeChains(NewFD, S);
2609 }
2610 else
2611 NewFD = FieldDecl::Create(Context, Loc, II, T, BitWidth);
Steve Narofff2fb4ad2007-09-11 21:17:26 +00002612
Chris Lattner2727d1b2008-06-29 00:02:00 +00002613 ProcessDeclAttributes(NewFD, D);
Anders Carlsson28e71082008-02-16 00:29:18 +00002614
Steve Narofff93b6722007-08-28 20:14:24 +00002615 if (D.getInvalidType() || InvalidDecl)
2616 NewFD->setInvalidDecl();
2617 return NewFD;
Chris Lattner1300fb92007-01-23 23:42:53 +00002618}
2619
Fariborz Jahanianf26702eb2007-10-01 16:53:59 +00002620/// TranslateIvarVisibility - Translate visibility from a token ID to an
2621/// AST enum value.
Ted Kremenek1b0ea822008-01-07 19:49:32 +00002622static ObjCIvarDecl::AccessControl
Fariborz Jahanianf26702eb2007-10-01 16:53:59 +00002623TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Naroff2e688fd2007-09-14 23:09:53 +00002624 switch (ivarVisibility) {
Chris Lattner79ef8432008-10-12 00:28:42 +00002625 default: assert(0 && "Unknown visitibility kind");
2626 case tok::objc_private: return ObjCIvarDecl::Private;
2627 case tok::objc_public: return ObjCIvarDecl::Public;
2628 case tok::objc_protected: return ObjCIvarDecl::Protected;
2629 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Naroff2e688fd2007-09-14 23:09:53 +00002630 }
2631}
2632
Fariborz Jahanian96376742008-04-11 16:55:42 +00002633/// ActOnIvar - Each ivar field of an objective-c class is passed into this
2634/// in order to create an IvarDecl object for it.
Fariborz Jahaniande615832008-04-10 23:32:45 +00002635Sema::DeclTy *Sema::ActOnIvar(Scope *S,
Fariborz Jahanian96376742008-04-11 16:55:42 +00002636 SourceLocation DeclStart,
2637 Declarator &D, ExprTy *BitfieldWidth,
2638 tok::ObjCKeywordKind Visibility) {
Fariborz Jahaniande615832008-04-10 23:32:45 +00002639 IdentifierInfo *II = D.getIdentifier();
2640 Expr *BitWidth = (Expr*)BitfieldWidth;
2641 SourceLocation Loc = DeclStart;
2642 if (II) Loc = D.getIdentifierLoc();
2643
2644 // FIXME: Unnamed fields can be handled in various different ways, for
2645 // example, unnamed unions inject all members into the struct namespace!
2646
2647
2648 if (BitWidth) {
2649 // TODO: Validate.
2650 //printf("WARNING: BITFIELDS IGNORED!\n");
2651
2652 // 6.7.2.1p3
2653 // 6.7.2.1p4
2654
2655 } else {
2656 // Not a bitfield.
2657
2658 // validate II.
2659
2660 }
2661
2662 QualType T = GetTypeForDeclarator(D, S);
2663 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
2664 bool InvalidDecl = false;
2665
2666 // C99 6.7.2.1p8: A member of a structure or union may have any type other
2667 // than a variably modified type.
2668 if (T->isVariablyModifiedType()) {
2669 // FIXME: This diagnostic needs work
2670 Diag(Loc, diag::err_typecheck_illegal_vla, Loc);
2671 InvalidDecl = true;
2672 }
2673
Ted Kremenek73295fa2008-07-23 18:04:17 +00002674 // Get the visibility (access control) for this ivar.
2675 ObjCIvarDecl::AccessControl ac =
2676 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
2677 : ObjCIvarDecl::None;
2678
2679 // Construct the decl.
2680 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, Loc, II, T, ac,
Steve Naroffde7d0f62008-07-16 18:22:22 +00002681 (Expr *)BitfieldWidth);
Fariborz Jahaniande615832008-04-10 23:32:45 +00002682
Ted Kremenek73295fa2008-07-23 18:04:17 +00002683 // Process attributes attached to the ivar.
Chris Lattner2727d1b2008-06-29 00:02:00 +00002684 ProcessDeclAttributes(NewID, D);
Fariborz Jahaniande615832008-04-10 23:32:45 +00002685
2686 if (D.getInvalidType() || InvalidDecl)
2687 NewID->setInvalidDecl();
Ted Kremenek73295fa2008-07-23 18:04:17 +00002688
Fariborz Jahaniande615832008-04-10 23:32:45 +00002689 return NewID;
2690}
2691
Fariborz Jahanian343f7092007-09-29 00:54:24 +00002692void Sema::ActOnFields(Scope* S,
Fariborz Jahanian67341402007-10-04 00:45:27 +00002693 SourceLocation RecLoc, DeclTy *RecDecl,
Steve Naroff30d242c2007-09-15 18:49:24 +00002694 DeclTy **Fields, unsigned NumFields,
Daniel Dunbar15619c72008-10-03 02:03:53 +00002695 SourceLocation LBrac, SourceLocation RBrac,
Daniel Dunbar325601a2008-10-03 17:33:35 +00002696 AttributeList *Attr) {
Steve Naroffdb47ee22007-09-14 22:20:54 +00002697 Decl *EnclosingDecl = static_cast<Decl*>(RecDecl);
2698 assert(EnclosingDecl && "missing record or interface decl");
2699 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
2700
Ted Kremenek21475702008-09-05 17:16:31 +00002701 if (Record)
2702 if (RecordDecl* DefRecord = Record->getDefinition(Context)) {
2703 // Diagnose code like:
2704 // struct S { struct S {} X; };
2705 // We discover this when we complete the outer S. Reject and ignore the
2706 // outer S.
2707 Diag(DefRecord->getLocation(), diag::err_nested_redefinition,
2708 DefRecord->getKindName());
2709 Diag(RecLoc, diag::err_previous_definition);
2710 Record->setInvalidDecl();
2711 return;
2712 }
2713
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00002714 // Verify that all the fields are okay.
Chris Lattner82625602007-01-24 02:26:21 +00002715 unsigned NumNamedMembers = 0;
Chris Lattner23b7eb62007-06-15 23:05:46 +00002716 llvm::SmallVector<FieldDecl*, 32> RecFields;
2717 llvm::SmallSet<const IdentifierInfo*, 32> FieldIDs;
Steve Naroffdb47ee22007-09-14 22:20:54 +00002718
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00002719 for (unsigned i = 0; i != NumFields; ++i) {
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00002720
Steve Naroffdb47ee22007-09-14 22:20:54 +00002721 FieldDecl *FD = cast_or_null<FieldDecl>(static_cast<Decl*>(Fields[i]));
2722 assert(FD && "missing field decl");
2723
2724 // Remember all fields.
2725 RecFields.push_back(FD);
Chris Lattner720a0542007-01-25 00:44:24 +00002726
2727 // Get the type for the field.
Chris Lattner0fd893e2007-07-31 21:33:24 +00002728 Type *FDTy = FD->getType().getTypePtr();
Steve Naroff2e688fd2007-09-14 23:09:53 +00002729
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00002730 // C99 6.7.2.1p2 - A field may not be a function type.
Chris Lattner0fd893e2007-07-31 21:33:24 +00002731 if (FDTy->isFunctionType()) {
Steve Naroffdb47ee22007-09-14 22:20:54 +00002732 Diag(FD->getLocation(), diag::err_field_declared_as_function,
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00002733 FD->getName());
Steve Naroffdb47ee22007-09-14 22:20:54 +00002734 FD->setInvalidDecl();
2735 EnclosingDecl->setInvalidDecl();
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00002736 continue;
2737 }
Chris Lattner82625602007-01-24 02:26:21 +00002738 // C99 6.7.2.1p2 - A field may not be an incomplete type except...
Chris Lattner720a0542007-01-25 00:44:24 +00002739 if (FDTy->isIncompleteType()) {
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00002740 if (!Record) { // Incomplete ivar type is always an error.
Fariborz Jahanian67341402007-10-04 00:45:27 +00002741 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroffdb47ee22007-09-14 22:20:54 +00002742 FD->setInvalidDecl();
2743 EnclosingDecl->setInvalidDecl();
Fariborz Jahanian67341402007-10-04 00:45:27 +00002744 continue;
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00002745 }
Chris Lattner82625602007-01-24 02:26:21 +00002746 if (i != NumFields-1 || // ... that the last member ...
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002747 !Record->isStruct() || // ... of a structure ...
Chris Lattner0fd893e2007-07-31 21:33:24 +00002748 !FDTy->isArrayType()) { //... may have incomplete array type.
Chris Lattner82625602007-01-24 02:26:21 +00002749 Diag(FD->getLocation(), diag::err_field_incomplete, FD->getName());
Steve Naroffdb47ee22007-09-14 22:20:54 +00002750 FD->setInvalidDecl();
2751 EnclosingDecl->setInvalidDecl();
Chris Lattner82625602007-01-24 02:26:21 +00002752 continue;
2753 }
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00002754 if (NumNamedMembers < 1) { //... must have more than named member ...
Chris Lattner82625602007-01-24 02:26:21 +00002755 Diag(FD->getLocation(), diag::err_flexible_array_empty_struct,
2756 FD->getName());
Steve Naroffdb47ee22007-09-14 22:20:54 +00002757 FD->setInvalidDecl();
2758 EnclosingDecl->setInvalidDecl();
Chris Lattner82625602007-01-24 02:26:21 +00002759 continue;
2760 }
Chris Lattner720a0542007-01-25 00:44:24 +00002761 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00002762 if (Record)
2763 Record->setHasFlexibleArrayMember(true);
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00002764 }
Chris Lattner720a0542007-01-25 00:44:24 +00002765 /// C99 6.7.2.1p2 - a struct ending in a flexible array member cannot be the
2766 /// field of another structure or the element of an array.
Chris Lattner0fd893e2007-07-31 21:33:24 +00002767 if (const RecordType *FDTTy = FDTy->getAsRecordType()) {
Chris Lattner720a0542007-01-25 00:44:24 +00002768 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
2769 // If this is a member of a union, then entire union becomes "flexible".
Argyrios Kyrtzidis554a07b2008-06-09 23:19:58 +00002770 if (Record && Record->isUnion()) {
Chris Lattner41943152007-01-25 04:52:46 +00002771 Record->setHasFlexibleArrayMember(true);
Chris Lattner720a0542007-01-25 00:44:24 +00002772 } else {
2773 // If this is a struct/class and this is not the last element, reject
2774 // it. Note that GCC supports variable sized arrays in the middle of
2775 // structures.
2776 if (i != NumFields-1) {
2777 Diag(FD->getLocation(), diag::err_variable_sized_type_in_struct,
2778 FD->getName());
Steve Naroffdb47ee22007-09-14 22:20:54 +00002779 FD->setInvalidDecl();
2780 EnclosingDecl->setInvalidDecl();
Chris Lattner720a0542007-01-25 00:44:24 +00002781 continue;
2782 }
Chris Lattner720a0542007-01-25 00:44:24 +00002783 // We support flexible arrays at the end of structs in other structs
2784 // as an extension.
2785 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct,
2786 FD->getName());
Fariborz Jahanian67341402007-10-04 00:45:27 +00002787 if (Record)
Fariborz Jahanianaefb2302007-09-14 16:27:55 +00002788 Record->setHasFlexibleArrayMember(true);
Chris Lattner720a0542007-01-25 00:44:24 +00002789 }
2790 }
2791 }
Fariborz Jahanianecfe4f12007-10-12 22:10:42 +00002792 /// A field cannot be an Objective-c object
Ted Kremenek1b0ea822008-01-07 19:49:32 +00002793 if (FDTy->isObjCInterfaceType()) {
Fariborz Jahanianecfe4f12007-10-12 22:10:42 +00002794 Diag(FD->getLocation(), diag::err_statically_allocated_object,
2795 FD->getName());
2796 FD->setInvalidDecl();
2797 EnclosingDecl->setInvalidDecl();
2798 continue;
2799 }
Chris Lattner82625602007-01-24 02:26:21 +00002800 // Keep track of the number of named members.
Chris Lattnere5a66562007-01-25 22:48:42 +00002801 if (IdentifierInfo *II = FD->getIdentifier()) {
2802 // Detect duplicate member names.
Chris Lattnerbaf33662007-01-27 02:14:08 +00002803 if (!FieldIDs.insert(II)) {
Chris Lattnere5a66562007-01-25 22:48:42 +00002804 Diag(FD->getLocation(), diag::err_duplicate_member, II->getName());
2805 // Find the previous decl.
2806 SourceLocation PrevLoc;
Chris Lattner79ef8432008-10-12 00:28:42 +00002807 for (unsigned i = 0; ; ++i) {
2808 assert(i != RecFields.size() && "Didn't find previous def!");
Chris Lattnere5a66562007-01-25 22:48:42 +00002809 if (RecFields[i]->getIdentifier() == II) {
2810 PrevLoc = RecFields[i]->getLocation();
2811 break;
2812 }
2813 }
2814 Diag(PrevLoc, diag::err_previous_definition);
Steve Naroffdb47ee22007-09-14 22:20:54 +00002815 FD->setInvalidDecl();
2816 EnclosingDecl->setInvalidDecl();
Chris Lattnere5a66562007-01-25 22:48:42 +00002817 continue;
2818 }
Chris Lattner82625602007-01-24 02:26:21 +00002819 ++NumNamedMembers;
Chris Lattnere5a66562007-01-25 22:48:42 +00002820 }
Chris Lattnerbdf8b8d2007-01-24 02:11:17 +00002821 }
Chris Lattner82625602007-01-24 02:26:21 +00002822
Chris Lattner82625602007-01-24 02:26:21 +00002823 // Okay, we successfully defined 'Record'.
Chris Lattner622c1932008-02-06 00:51:33 +00002824 if (Record) {
Ted Kremenek21475702008-09-05 17:16:31 +00002825 Record->defineBody(Context, &RecFields[0], RecFields.size());
Argyrios Kyrtzidis2f67f372008-08-09 00:58:37 +00002826 // If this is a C++ record, HandleTagDeclDefinition will be invoked in
2827 // Sema::ActOnFinishCXXClassDef.
2828 if (!isa<CXXRecordDecl>(Record))
2829 Consumer.HandleTagDeclDefinition(Record);
Chris Lattner622c1932008-02-06 00:51:33 +00002830 } else {
Chris Lattner9413a012008-02-05 22:40:55 +00002831 ObjCIvarDecl **ClsFields = reinterpret_cast<ObjCIvarDecl**>(&RecFields[0]);
2832 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl))
2833 ID->addInstanceVariablesToClass(ClsFields, RecFields.size(), RBrac);
2834 else if (ObjCImplementationDecl *IMPDecl =
2835 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremenek1b0ea822008-01-07 19:49:32 +00002836 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
2837 IMPDecl->ObjCAddInstanceVariablesToClassImpl(ClsFields, RecFields.size());
Fariborz Jahanian95b60762007-10-31 18:48:14 +00002838 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahanian2a4dd312007-09-26 18:27:25 +00002839 }
Fariborz Jahanianf3287bf2007-09-14 21:08:27 +00002840 }
Daniel Dunbar325601a2008-10-03 17:33:35 +00002841
2842 if (Attr)
2843 ProcessDeclAttributeList(Record, Attr);
Chris Lattner1300fb92007-01-23 23:42:53 +00002844}
2845
Steve Naroff30d242c2007-09-15 18:49:24 +00002846Sema::DeclTy *Sema::ActOnEnumConstant(Scope *S, DeclTy *theEnumDecl,
Chris Lattner4ef40012007-06-11 01:28:17 +00002847 DeclTy *lastEnumConst,
Chris Lattnerc1915e22007-01-25 07:29:02 +00002848 SourceLocation IdLoc, IdentifierInfo *Id,
Chris Lattner4ef40012007-06-11 01:28:17 +00002849 SourceLocation EqualLoc, ExprTy *val) {
Chris Lattnerc5ffed42008-04-04 06:12:32 +00002850 EnumDecl *TheEnumDecl = cast<EnumDecl>(static_cast<Decl*>(theEnumDecl));
Chris Lattner4ef40012007-06-11 01:28:17 +00002851 EnumConstantDecl *LastEnumConst =
2852 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(lastEnumConst));
2853 Expr *Val = static_cast<Expr*>(val);
Chris Lattner8116d1b2007-01-25 22:38:29 +00002854
Chris Lattner1a76a3c2007-08-26 06:24:45 +00002855 // The scope passed in may not be a decl scope. Zip up the scope tree until
2856 // we find one that is.
2857 while ((S->getFlags() & Scope::DeclScope) == 0)
2858 S = S->getParent();
2859
Chris Lattner8116d1b2007-01-25 22:38:29 +00002860 // Verify that there isn't already something declared with this name in this
2861 // scope.
Steve Naroff2fc93f52008-04-02 14:35:35 +00002862 if (Decl *PrevDecl = LookupDecl(Id, Decl::IDNS_Ordinary, S)) {
Argyrios Kyrtzidisbd259982008-07-16 21:01:53 +00002863 // When in C++, we may get a TagDecl with the same name; in this case the
2864 // enum constant will 'hide' the tag.
2865 assert((getLangOptions().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
2866 "Received TagDecl when not in C++!");
Argyrios Kyrtzidis5b144d52008-09-09 21:18:04 +00002867 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Chris Lattner8116d1b2007-01-25 22:38:29 +00002868 if (isa<EnumConstantDecl>(PrevDecl))
2869 Diag(IdLoc, diag::err_redefinition_of_enumerator, Id->getName());
2870 else
2871 Diag(IdLoc, diag::err_redefinition, Id->getName());
2872 Diag(PrevDecl->getLocation(), diag::err_previous_definition);
Chris Lattner77683132008-02-26 00:33:57 +00002873 delete Val;
Chris Lattner8116d1b2007-01-25 22:38:29 +00002874 return 0;
2875 }
2876 }
Chris Lattner4ef40012007-06-11 01:28:17 +00002877
Chris Lattner23b7eb62007-06-15 23:05:46 +00002878 llvm::APSInt EnumVal(32);
Chris Lattner4ef40012007-06-11 01:28:17 +00002879 QualType EltTy;
2880 if (Val) {
Chris Lattner0515e4b2007-08-27 21:16:18 +00002881 // Make sure to promote the operand type to int.
2882 UsualUnaryConversions(Val);
2883
Chris Lattner4ef40012007-06-11 01:28:17 +00002884 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
2885 SourceLocation ExpLoc;
Chris Lattner0e9d6222007-07-15 23:26:56 +00002886 if (!Val->isIntegerConstantExpr(EnumVal, Context, &ExpLoc)) {
Chris Lattner4ef40012007-06-11 01:28:17 +00002887 Diag(ExpLoc, diag::err_enum_value_not_integer_constant_expr,
2888 Id->getName());
Chris Lattner77683132008-02-26 00:33:57 +00002889 delete Val;
Chris Lattnerf283a372007-08-27 17:37:24 +00002890 Val = 0; // Just forget about it.
Chris Lattnerc92bc4c2007-08-29 16:03:41 +00002891 } else {
2892 EltTy = Val->getType();
Chris Lattner4ef40012007-06-11 01:28:17 +00002893 }
Chris Lattnerf283a372007-08-27 17:37:24 +00002894 }
2895
2896 if (!Val) {
2897 if (LastEnumConst) {
2898 // Assign the last value + 1.
2899 EnumVal = LastEnumConst->getInitVal();
2900 ++EnumVal;
Chris Lattner0515e4b2007-08-27 21:16:18 +00002901
2902 // Check for overflow on increment.
2903 if (EnumVal < LastEnumConst->getInitVal())
2904 Diag(IdLoc, diag::warn_enum_value_overflow);
2905
Chris Lattnerf283a372007-08-27 17:37:24 +00002906 EltTy = LastEnumConst->getType();
2907 } else {
2908 // First value, set to zero.
2909 EltTy = Context.IntTy;
Chris Lattner37e05872008-03-05 18:54:05 +00002910 EnumVal.zextOrTrunc(static_cast<uint32_t>(Context.getTypeSize(EltTy)));
Chris Lattnerf283a372007-08-27 17:37:24 +00002911 }
Steve Naroff63969212007-05-07 21:22:42 +00002912 }
Chris Lattner4ef40012007-06-11 01:28:17 +00002913
Chris Lattnera7b32872008-03-15 06:12:44 +00002914 EnumConstantDecl *New =
Chris Lattnerc5ffed42008-04-04 06:12:32 +00002915 EnumConstantDecl::Create(Context, TheEnumDecl, IdLoc, Id, EltTy,
2916 Val, EnumVal,
Chris Lattner96c460d2008-03-15 21:32:50 +00002917 LastEnumConst);
Chris Lattner8116d1b2007-01-25 22:38:29 +00002918
2919 // Register this decl in the current scope stack.
Argyrios Kyrtzidisb8a49202008-04-12 00:47:19 +00002920 PushOnScopeChains(New, S);
Chris Lattner8116d1b2007-01-25 22:38:29 +00002921 return New;
Chris Lattnerc1915e22007-01-25 07:29:02 +00002922}
2923
Steve Narofff960c0b2008-08-07 14:08:16 +00002924// FIXME: For consistency with ActOnFields(), we should have the parser
2925// pass in the source location for the left/right braces.
Steve Naroff30d242c2007-09-15 18:49:24 +00002926void Sema::ActOnEnumBody(SourceLocation EnumLoc, DeclTy *EnumDeclX,
Chris Lattnerc1915e22007-01-25 07:29:02 +00002927 DeclTy **Elements, unsigned NumElements) {
2928 EnumDecl *Enum = cast<EnumDecl>(static_cast<Decl*>(EnumDeclX));
Chris Lattnerc1915e22007-01-25 07:29:02 +00002929
Steve Narofff960c0b2008-08-07 14:08:16 +00002930 if (Enum && Enum->isDefinition()) {
2931 // Diagnose code like:
2932 // enum e0 {
2933 // E0 = sizeof(enum e0 { E1 })
2934 // };
2935 Diag(Enum->getLocation(), diag::err_nested_redefinition,
2936 Enum->getName());
2937 Diag(EnumLoc, diag::err_previous_definition);
2938 Enum->setInvalidDecl();
2939 return;
2940 }
Chris Lattner67933c02007-08-28 05:10:31 +00002941 // TODO: If the result value doesn't fit in an int, it must be a long or long
2942 // long value. ISO C does not support this, but GCC does as an extension,
2943 // emit a warning.
Chris Lattner37e05872008-03-05 18:54:05 +00002944 unsigned IntWidth = Context.Target.getIntWidth();
Chris Lattner67933c02007-08-28 05:10:31 +00002945
Chris Lattnerb8a501c2007-08-28 06:15:15 +00002946 // Verify that all the values are okay, compute the size of the values, and
2947 // reverse the list.
2948 unsigned NumNegativeBits = 0;
2949 unsigned NumPositiveBits = 0;
2950
2951 // Keep track of whether all elements have type int.
2952 bool AllElementsInt = true;
2953
Chris Lattner4ef40012007-06-11 01:28:17 +00002954 EnumConstantDecl *EltList = 0;
Chris Lattnerc1915e22007-01-25 07:29:02 +00002955 for (unsigned i = 0; i != NumElements; ++i) {
2956 EnumConstantDecl *ECD =
2957 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
2958 if (!ECD) continue; // Already issued a diagnostic.
Chris Lattnerbf478cb2007-08-28 05:27:00 +00002959
2960 // If the enum value doesn't fit in an int, emit an extension warning.
Chris Lattnerbf478cb2007-08-28 05:27:00 +00002961 const llvm::APSInt &InitVal = ECD->getInitVal();
Chris Lattner77683132008-02-26 00:33:57 +00002962 assert(InitVal.getBitWidth() >= IntWidth &&
2963 "Should have promoted value to int");
Chris Lattnerbf478cb2007-08-28 05:27:00 +00002964 if (InitVal.getBitWidth() > IntWidth) {
2965 llvm::APSInt V(InitVal);
2966 V.trunc(IntWidth);
2967 V.extend(InitVal.getBitWidth());
2968 if (V != InitVal)
2969 Diag(ECD->getLocation(), diag::ext_enum_value_not_int,
Chris Lattner5d1cfa12008-08-17 07:19:51 +00002970 InitVal.toString(10));
Chris Lattnerbf478cb2007-08-28 05:27:00 +00002971 }
Chris Lattnerb8a501c2007-08-28 06:15:15 +00002972
2973 // Keep track of the size of positive and negative values.
Chris Lattner77683132008-02-26 00:33:57 +00002974 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner49f980c2008-01-14 21:47:29 +00002975 NumPositiveBits = std::max(NumPositiveBits,
2976 (unsigned)InitVal.getActiveBits());
Chris Lattnerb8a501c2007-08-28 06:15:15 +00002977 else
Chris Lattner49f980c2008-01-14 21:47:29 +00002978 NumNegativeBits = std::max(NumNegativeBits,
2979 (unsigned)InitVal.getMinSignedBits());
Chris Lattner4ef40012007-06-11 01:28:17 +00002980
Chris Lattnerb8a501c2007-08-28 06:15:15 +00002981 // Keep track of whether every enum element has type int (very commmon).
2982 if (AllElementsInt)
2983 AllElementsInt = ECD->getType() == Context.IntTy;
2984
Chris Lattner4ef40012007-06-11 01:28:17 +00002985 ECD->setNextDeclarator(EltList);
2986 EltList = ECD;
Chris Lattnerc1915e22007-01-25 07:29:02 +00002987 }
2988
Chris Lattnerb8a501c2007-08-28 06:15:15 +00002989 // Figure out the type that should be used for this enum.
2990 // FIXME: Support attribute(packed) on enums and -fshort-enums.
2991 QualType BestType;
Chris Lattner3a370bf2007-08-29 17:31:48 +00002992 unsigned BestWidth;
Chris Lattnerb8a501c2007-08-28 06:15:15 +00002993
2994 if (NumNegativeBits) {
2995 // If there is a negative value, figure out the smallest integer type (of
2996 // int/long/longlong) that fits.
Chris Lattner3a370bf2007-08-29 17:31:48 +00002997 if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerb8a501c2007-08-28 06:15:15 +00002998 BestType = Context.IntTy;
Chris Lattner3a370bf2007-08-29 17:31:48 +00002999 BestWidth = IntWidth;
3000 } else {
Chris Lattner37e05872008-03-05 18:54:05 +00003001 BestWidth = Context.Target.getLongWidth();
Ted Kremenek1daa3cf2007-12-12 22:39:36 +00003002
Chris Lattner3a370bf2007-08-29 17:31:48 +00003003 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth)
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003004 BestType = Context.LongTy;
3005 else {
Chris Lattner37e05872008-03-05 18:54:05 +00003006 BestWidth = Context.Target.getLongLongWidth();
Ted Kremenek1daa3cf2007-12-12 22:39:36 +00003007
Chris Lattner3a370bf2007-08-29 17:31:48 +00003008 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003009 Diag(Enum->getLocation(), diag::warn_enum_too_large);
3010 BestType = Context.LongLongTy;
3011 }
3012 }
3013 } else {
3014 // If there is no negative value, figure out which of uint, ulong, ulonglong
3015 // fits.
Chris Lattner3a370bf2007-08-29 17:31:48 +00003016 if (NumPositiveBits <= IntWidth) {
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003017 BestType = Context.UnsignedIntTy;
Chris Lattner3a370bf2007-08-29 17:31:48 +00003018 BestWidth = IntWidth;
3019 } else if (NumPositiveBits <=
Chris Lattner37e05872008-03-05 18:54:05 +00003020 (BestWidth = Context.Target.getLongWidth())) {
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003021 BestType = Context.UnsignedLongTy;
Chris Lattner37e05872008-03-05 18:54:05 +00003022 } else {
3023 BestWidth = Context.Target.getLongLongWidth();
Chris Lattner3a370bf2007-08-29 17:31:48 +00003024 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003025 "How could an initializer get larger than ULL?");
3026 BestType = Context.UnsignedLongLongTy;
3027 }
3028 }
3029
Chris Lattner3a370bf2007-08-29 17:31:48 +00003030 // Loop over all of the enumerator constants, changing their types to match
3031 // the type of the enum if needed.
3032 for (unsigned i = 0; i != NumElements; ++i) {
3033 EnumConstantDecl *ECD =
3034 cast_or_null<EnumConstantDecl>(static_cast<Decl*>(Elements[i]));
3035 if (!ECD) continue; // Already issued a diagnostic.
3036
3037 // Standard C says the enumerators have int type, but we allow, as an
3038 // extension, the enumerators to be larger than int size. If each
3039 // enumerator value fits in an int, type it as an int, otherwise type it the
3040 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
3041 // that X has type 'int', not 'unsigned'.
Chris Lattner77683132008-02-26 00:33:57 +00003042 if (ECD->getType() == Context.IntTy) {
3043 // Make sure the init value is signed.
3044 llvm::APSInt IV = ECD->getInitVal();
3045 IV.setIsSigned(true);
3046 ECD->setInitVal(IV);
Chris Lattner3a370bf2007-08-29 17:31:48 +00003047 continue; // Already int type.
Chris Lattner77683132008-02-26 00:33:57 +00003048 }
Chris Lattner3a370bf2007-08-29 17:31:48 +00003049
3050 // Determine whether the value fits into an int.
3051 llvm::APSInt InitVal = ECD->getInitVal();
3052 bool FitsInInt;
3053 if (InitVal.isUnsigned() || !InitVal.isNegative())
3054 FitsInInt = InitVal.getActiveBits() < IntWidth;
3055 else
3056 FitsInInt = InitVal.getMinSignedBits() <= IntWidth;
3057
3058 // If it fits into an integer type, force it. Otherwise force it to match
3059 // the enum decl type.
3060 QualType NewTy;
3061 unsigned NewWidth;
3062 bool NewSign;
3063 if (FitsInInt) {
3064 NewTy = Context.IntTy;
3065 NewWidth = IntWidth;
3066 NewSign = true;
3067 } else if (ECD->getType() == BestType) {
3068 // Already the right type!
3069 continue;
3070 } else {
3071 NewTy = BestType;
3072 NewWidth = BestWidth;
3073 NewSign = BestType->isSignedIntegerType();
3074 }
3075
3076 // Adjust the APSInt value.
3077 InitVal.extOrTrunc(NewWidth);
3078 InitVal.setIsSigned(NewSign);
3079 ECD->setInitVal(InitVal);
3080
3081 // Adjust the Expr initializer and type.
Douglas Gregora11693b2008-11-12 17:17:38 +00003082 ECD->setInitExpr(new ImplicitCastExpr(NewTy, ECD->getInitExpr(),
3083 /*isLvalue=*/false));
Chris Lattner3a370bf2007-08-29 17:31:48 +00003084 ECD->setType(NewTy);
3085 }
Chris Lattnerb8a501c2007-08-28 06:15:15 +00003086
Chris Lattner1c1f9322007-08-28 18:24:31 +00003087 Enum->defineElements(EltList, BestType);
Chris Lattner622c1932008-02-06 00:51:33 +00003088 Consumer.HandleTagDeclDefinition(Enum);
Chris Lattnerc1915e22007-01-25 07:29:02 +00003089}
Chris Lattner1300fb92007-01-23 23:42:53 +00003090
Anders Carlsson5c6c0592008-02-08 00:33:21 +00003091Sema::DeclTy *Sema::ActOnFileScopeAsmDecl(SourceLocation Loc,
3092 ExprTy *expr) {
3093 StringLiteral *AsmString = cast<StringLiteral>((Expr*)expr);
3094
Chris Lattneree1284a2008-03-16 00:16:02 +00003095 return FileScopeAsmDecl::Create(Context, Loc, AsmString);
Anders Carlsson5c6c0592008-02-08 00:33:21 +00003096}
3097
Chris Lattner38376f12008-01-12 07:05:38 +00003098Sema::DeclTy* Sema::ActOnLinkageSpec(SourceLocation Loc,
Chris Lattnereb85ab42008-02-25 21:04:36 +00003099 SourceLocation LBrace,
3100 SourceLocation RBrace,
3101 const char *Lang,
3102 unsigned StrSize,
3103 DeclTy *D) {
Chris Lattner38376f12008-01-12 07:05:38 +00003104 LinkageSpecDecl::LanguageIDs Language;
3105 Decl *dcl = static_cast<Decl *>(D);
3106 if (strncmp(Lang, "\"C\"", StrSize) == 0)
3107 Language = LinkageSpecDecl::lang_c;
3108 else if (strncmp(Lang, "\"C++\"", StrSize) == 0)
3109 Language = LinkageSpecDecl::lang_cxx;
3110 else {
3111 Diag(Loc, diag::err_bad_language);
3112 return 0;
3113 }
3114
3115 // FIXME: Add all the various semantics of linkage specifications
Chris Lattneree1284a2008-03-16 00:16:02 +00003116 return LinkageSpecDecl::Create(Context, Loc, Language, dcl);
Chris Lattner38376f12008-01-12 07:05:38 +00003117}
Daniel Dunbar54603742008-10-14 05:35:18 +00003118
3119void Sema::ActOnPragmaPack(PragmaPackKind Kind, IdentifierInfo *Name,
3120 ExprTy *alignment, SourceLocation PragmaLoc,
3121 SourceLocation LParenLoc, SourceLocation RParenLoc) {
3122 Expr *Alignment = static_cast<Expr *>(alignment);
3123
3124 // If specified then alignment must be a "small" power of two.
3125 unsigned AlignmentVal = 0;
3126 if (Alignment) {
3127 llvm::APSInt Val;
3128 if (!Alignment->isIntegerConstantExpr(Val, Context) ||
3129 !Val.isPowerOf2() ||
3130 Val.getZExtValue() > 16) {
3131 Diag(PragmaLoc, diag::warn_pragma_pack_invalid_alignment);
3132 delete Alignment;
3133 return; // Ignore
3134 }
3135
3136 AlignmentVal = (unsigned) Val.getZExtValue();
3137 }
3138
3139 switch (Kind) {
3140 case Action::PPK_Default: // pack([n])
3141 PackContext.setAlignment(AlignmentVal);
3142 break;
3143
3144 case Action::PPK_Show: // pack(show)
3145 // Show the current alignment, making sure to show the right value
3146 // for the default.
3147 AlignmentVal = PackContext.getAlignment();
3148 // FIXME: This should come from the target.
3149 if (AlignmentVal == 0)
3150 AlignmentVal = 8;
3151 Diag(PragmaLoc, diag::warn_pragma_pack_show, llvm::utostr(AlignmentVal));
3152 break;
3153
3154 case Action::PPK_Push: // pack(push [, id] [, [n])
3155 PackContext.push(Name);
3156 // Set the new alignment if specified.
3157 if (Alignment)
3158 PackContext.setAlignment(AlignmentVal);
3159 break;
3160
3161 case Action::PPK_Pop: // pack(pop [, id] [, n])
3162 // MSDN, C/C++ Preprocessor Reference > Pragma Directives > pack:
3163 // "#pragma pack(pop, identifier, n) is undefined"
3164 if (Alignment && Name)
3165 Diag(PragmaLoc, diag::warn_pragma_pack_pop_identifer_and_alignment);
3166
3167 // Do the pop.
3168 if (!PackContext.pop(Name)) {
3169 // If a name was specified then failure indicates the name
3170 // wasn't found. Otherwise failure indicates the stack was
3171 // empty.
3172 Diag(PragmaLoc, diag::warn_pragma_pack_pop_failed,
3173 Name ? "no record matching name" : "stack empty");
3174
3175 // FIXME: Warn about popping named records as MSVC does.
3176 } else {
3177 // Pop succeeded, set the new alignment if specified.
3178 if (Alignment)
3179 PackContext.setAlignment(AlignmentVal);
3180 }
3181 break;
3182
3183 default:
3184 assert(0 && "Invalid #pragma pack kind.");
3185 }
3186}
3187
3188bool PragmaPackStack::pop(IdentifierInfo *Name) {
3189 if (Stack.empty())
3190 return false;
3191
3192 // If name is empty just pop top.
3193 if (!Name) {
3194 Alignment = Stack.back().first;
3195 Stack.pop_back();
3196 return true;
3197 }
3198
3199 // Otherwise, find the named record.
3200 for (unsigned i = Stack.size(); i != 0; ) {
3201 --i;
3202 if (strcmp(Stack[i].second.c_str(), Name->getName()) == 0) {
3203 // Found it, pop up to and including this record.
3204 Alignment = Stack[i].first;
3205 Stack.erase(Stack.begin() + i, Stack.end());
3206 return true;
3207 }
3208 }
3209
3210 return false;
3211}