blob: a0ce7663a8276afca257d5c9f8f8d9b4b1cd5439 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaDecl.cpp - Semantic Analysis for Declarations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for declarations.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Douglas Gregor9e876872011-03-01 18:12:44 +000015#include "TypeLocBuilder.h"
Chris Lattnere1e79852008-02-06 00:51:33 +000016#include "clang/AST/ASTConsumer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/AST/ASTContext.h"
Faisal Valifad9e132013-09-26 19:54:12 +000018#include "clang/AST/ASTLambda.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000019#include "clang/AST/CXXInheritance.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/AST/CharUnits.h"
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +000021#include "clang/AST/CommentDiagnostic.h"
John McCall384aff82010-08-25 07:42:41 +000022#include "clang/AST/DeclCXX.h"
John McCall7cd088e2010-08-24 07:21:54 +000023#include "clang/AST/DeclObjC.h"
Douglas Gregoraaba5e32009-02-04 19:02:06 +000024#include "clang/AST/DeclTemplate.h"
Chandler Carrutha7689ef2011-03-27 09:46:56 +000025#include "clang/AST/EvaluatedExprVisitor.h"
Chris Lattner6b6b5372008-06-26 18:38:35 +000026#include "clang/AST/ExprCXX.h"
Sebastian Redld3a413d2009-04-26 20:35:05 +000027#include "clang/AST/StmtCXX.h"
Stephen Hines6bcf27b2014-05-29 04:14:42 -070028#include "clang/Basic/Builtins.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000029#include "clang/Basic/PartialDiagnostic.h"
Steve Naroff4c49a6c2008-01-30 23:46:05 +000030#include "clang/Basic/SourceManager.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000031#include "clang/Basic/TargetInfo.h"
Stephen Hines6bcf27b2014-05-29 04:14:42 -070032#include "clang/Lex/HeaderSearch.h" // TODO: Sema shouldn't depend on Lex
33#include "clang/Lex/Lexer.h" // TODO: Extract static functions to fix layering.
34#include "clang/Lex/ModuleLoader.h" // TODO: Sema shouldn't depend on Lex
35#include "clang/Lex/Preprocessor.h" // Included for isCodeCompletionEnabled()
Chandler Carruth55fc8732012-12-04 09:13:33 +000036#include "clang/Parse/ParseDiagnostic.h"
37#include "clang/Sema/CXXFieldCollector.h"
38#include "clang/Sema/DeclSpec.h"
39#include "clang/Sema/DelayedDiagnostic.h"
40#include "clang/Sema/Initialization.h"
41#include "clang/Sema/Lookup.h"
42#include "clang/Sema/ParsedTemplate.h"
43#include "clang/Sema/Scope.h"
44#include "clang/Sema/ScopeInfo.h"
Faisal Valic00e4192013-11-07 05:17:06 +000045#include "clang/Sema/Template.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000046#include "llvm/ADT/SmallString.h"
John McCall66755862009-12-24 09:58:38 +000047#include "llvm/ADT/Triple.h"
Douglas Gregor6ed40e32008-12-23 21:05:05 +000048#include <algorithm>
Douglas Gregor9a8c9a22009-09-28 21:14:19 +000049#include <cstring>
Douglas Gregor6ed40e32008-12-23 21:05:05 +000050#include <functional>
Reid Spencer5f016e22007-07-11 17:01:13 +000051using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000052using namespace sema;
Reid Spencer5f016e22007-07-11 17:01:13 +000053
Richard Smithc89edf52011-07-01 19:46:12 +000054Sema::DeclGroupPtrTy Sema::ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType) {
55 if (OwnedType) {
56 Decl *Group[2] = { OwnedType, Ptr };
57 return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2));
58 }
59
John McCalld226f652010-08-21 09:40:31 +000060 return DeclGroupPtrTy::make(DeclGroupRef(Ptr));
Chris Lattner682bf922009-03-29 16:50:03 +000061}
62
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +000063namespace {
64
65class TypeNameValidatorCCC : public CorrectionCandidateCallback {
66 public:
Stephen Hines651f13c2014-04-23 16:59:28 -070067 TypeNameValidatorCCC(bool AllowInvalid, bool WantClass=false,
68 bool AllowTemplates=false)
69 : AllowInvalidDecl(AllowInvalid), WantClassName(WantClass),
70 AllowClassTemplates(AllowTemplates) {
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +000071 WantExpressionKeywords = false;
72 WantCXXNamedCasts = false;
73 WantRemainingKeywords = false;
74 }
75
Stephen Hines651f13c2014-04-23 16:59:28 -070076 bool ValidateCandidate(const TypoCorrection &candidate) override {
77 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
78 bool IsType = isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
79 bool AllowedTemplate = AllowClassTemplates && isa<ClassTemplateDecl>(ND);
80 return (IsType || AllowedTemplate) &&
81 (AllowInvalidDecl || !ND->isInvalidDecl());
82 }
83 return !WantClassName && candidate.isKeyword();
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +000084 }
85
86 private:
87 bool AllowInvalidDecl;
Kaelyn Uhrainc1fb5422012-06-22 23:37:05 +000088 bool WantClassName;
Stephen Hines651f13c2014-04-23 16:59:28 -070089 bool AllowClassTemplates;
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +000090};
91
92}
93
Kaelyn Uhrain7bf33402012-06-15 23:45:51 +000094/// \brief Determine whether the token kind starts a simple-type-specifier.
95bool Sema::isSimpleTypeSpecifier(tok::TokenKind Kind) const {
96 switch (Kind) {
97 // FIXME: Take into account the current language when deciding whether a
98 // token kind is a valid type specifier
99 case tok::kw_short:
100 case tok::kw_long:
101 case tok::kw___int64:
102 case tok::kw___int128:
103 case tok::kw_signed:
104 case tok::kw_unsigned:
105 case tok::kw_void:
106 case tok::kw_char:
107 case tok::kw_int:
108 case tok::kw_half:
109 case tok::kw_float:
110 case tok::kw_double:
111 case tok::kw_wchar_t:
112 case tok::kw_bool:
113 case tok::kw___underlying_type:
114 return true;
115
116 case tok::annot_typename:
117 case tok::kw_char16_t:
118 case tok::kw_char32_t:
119 case tok::kw_typeof:
David Majnemerff989a82013-09-22 01:24:26 +0000120 case tok::annot_decltype:
Kaelyn Uhrain7bf33402012-06-15 23:45:51 +0000121 case tok::kw_decltype:
122 return getLangOpts().CPlusPlus;
123
124 default:
125 break;
126 }
127
128 return false;
129}
130
Douglas Gregord6efafa2009-02-04 19:16:12 +0000131/// \brief If the identifier refers to a type name within this scope,
132/// return the declaration of that type.
133///
134/// This routine performs ordinary name lookup of the identifier II
135/// within the given scope, with optional C++ scope specifier SS, to
Douglas Gregor1a51b4a2009-02-09 15:09:02 +0000136/// determine whether the name refers to a type. If so, returns an
137/// opaque pointer (actually a QualType) corresponding to that
138/// type. Otherwise, returns NULL.
Dmitri Gribenko8eead162013-05-03 13:12:11 +0000139ParsedType Sema::getTypeName(const IdentifierInfo &II, SourceLocation NameLoc,
John McCallb3d87482010-08-24 05:47:05 +0000140 Scope *S, CXXScopeSpec *SS,
Fariborz Jahanian1e52dfc2011-02-08 18:05:59 +0000141 bool isClassName, bool HasTrailingDot,
Douglas Gregor9e876872011-03-01 18:12:44 +0000142 ParsedType ObjectTypePtr,
Abramo Bagnarafad03b72012-01-27 08:46:19 +0000143 bool IsCtorOrDtorName,
Kaelyn Uhrainfac94672011-10-11 01:02:41 +0000144 bool WantNontrivialTypeSourceInfo,
145 IdentifierInfo **CorrectedII) {
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000146 // Determine where we will perform name lookup.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700147 DeclContext *LookupCtx = nullptr;
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000148 if (ObjectTypePtr) {
John McCallb3d87482010-08-24 05:47:05 +0000149 QualType ObjectType = ObjectTypePtr.get();
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000150 if (ObjectType->isRecordType())
151 LookupCtx = computeDeclContext(ObjectType);
Jeffrey Yasskinedc28772010-04-07 23:29:58 +0000152 } else if (SS && SS->isNotEmpty()) {
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000153 LookupCtx = computeDeclContext(*SS, false);
154
155 if (!LookupCtx) {
156 if (isDependentScopeSpecifier(*SS)) {
157 // C++ [temp.res]p3:
158 // A qualified-id that refers to a type and in which the
159 // nested-name-specifier depends on a template-parameter (14.6.2)
160 // shall be prefixed by the keyword typename to indicate that the
161 // qualified-id denotes a type, forming an
162 // elaborated-type-specifier (7.1.5.3).
163 //
164 // We therefore do not perform any name lookup if the result would
165 // refer to a member of an unknown specialization.
Richard Smithc5a89a12012-04-02 01:30:27 +0000166 if (!isClassName && !IsCtorOrDtorName)
John McCallb3d87482010-08-24 05:47:05 +0000167 return ParsedType();
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000168
John McCall33500952010-06-11 00:33:02 +0000169 // We know from the grammar that this name refers to a type,
170 // so build a dependent node to describe the type.
Douglas Gregor9e876872011-03-01 18:12:44 +0000171 if (WantNontrivialTypeSourceInfo)
172 return ActOnTypenameType(S, SourceLocation(), *SS, II, NameLoc).get();
173
174 NestedNameSpecifierLoc QualifierLoc = SS->getWithLocInContext(Context);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700175 QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc,
176 II, NameLoc);
177 return ParsedType::make(T);
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000178 }
179
John McCallb3d87482010-08-24 05:47:05 +0000180 return ParsedType();
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000181 }
182
John McCall77bb1aa2010-05-01 00:40:08 +0000183 if (!LookupCtx->isDependentContext() &&
184 RequireCompleteDeclContext(*SS, LookupCtx))
John McCallb3d87482010-08-24 05:47:05 +0000185 return ParsedType();
Douglas Gregor42c39f32009-08-26 18:27:52 +0000186 }
Eli Friedman0f0615b2009-12-21 01:42:38 +0000187
188 // FIXME: LookupNestedNameSpecifierName isn't the right kind of
189 // lookup for class-names.
190 LookupNameKind Kind = isClassName ? LookupNestedNameSpecifierName :
191 LookupOrdinaryName;
192 LookupResult Result(*this, &II, NameLoc, Kind);
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000193 if (LookupCtx) {
194 // Perform "qualified" name lookup into the declaration context we
195 // computed, which is either the type of the base of a member access
196 // expression or the declaration context associated with a prior
197 // nested-name-specifier.
198 LookupQualifiedName(Result, LookupCtx);
Douglas Gregor42af25f2009-05-11 19:58:34 +0000199
Douglas Gregorf6e6fc82009-11-20 22:03:38 +0000200 if (ObjectTypePtr && Result.empty()) {
201 // C++ [basic.lookup.classref]p3:
202 // If the unqualified-id is ~type-name, the type-name is looked up
203 // in the context of the entire postfix-expression. If the type T of
204 // the object expression is of a class type C, the type-name is also
205 // looked up in the scope of class C. At least one of the lookups shall
206 // find a name that refers to (possibly cv-qualified) T.
207 LookupName(Result, S);
208 }
209 } else {
210 // Perform unqualified name lookup.
211 LookupName(Result, S);
212 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700213
214 NamedDecl *IIDecl = nullptr;
John McCalla24dc2e2009-11-17 02:14:36 +0000215 switch (Result.getResultKind()) {
Chris Lattner22bd9052009-02-16 22:07:16 +0000216 case LookupResult::NotFound:
Douglas Gregor7d3f5762010-01-15 01:44:47 +0000217 case LookupResult::NotFoundInCurrentInstantiation:
Kaelyn Uhrainfac94672011-10-11 01:02:41 +0000218 if (CorrectedII) {
Kaelyn Uhrainc1fb5422012-06-22 23:37:05 +0000219 TypeNameValidatorCCC Validator(true, isClassName);
Kaelyn Uhrainfac94672011-10-11 01:02:41 +0000220 TypoCorrection Correction = CorrectTypo(Result.getLookupNameInfo(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700221 Kind, S, SS, Validator,
222 CTK_ErrorRecovery);
Kaelyn Uhrainfac94672011-10-11 01:02:41 +0000223 IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo();
224 TemplateTy Template;
225 bool MemberOfUnknownSpecialization;
226 UnqualifiedId TemplateName;
227 TemplateName.setIdentifier(NewII, NameLoc);
228 NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier();
229 CXXScopeSpec NewSS, *NewSSPtr = SS;
230 if (SS && NNS) {
231 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
232 NewSSPtr = &NewSS;
233 }
234 if (Correction && (NNS || NewII != &II) &&
235 // Ignore a correction to a template type as the to-be-corrected
236 // identifier is not a template (typo correction for template names
237 // is handled elsewhere).
David Blaikie4e4d0842012-03-11 07:00:24 +0000238 !(getLangOpts().CPlusPlus && NewSSPtr &&
Kaelyn Uhrainfac94672011-10-11 01:02:41 +0000239 isTemplateName(S, *NewSSPtr, false, TemplateName, ParsedType(),
240 false, Template, MemberOfUnknownSpecialization))) {
241 ParsedType Ty = getTypeName(*NewII, NameLoc, S, NewSSPtr,
242 isClassName, HasTrailingDot, ObjectTypePtr,
Abramo Bagnarafad03b72012-01-27 08:46:19 +0000243 IsCtorOrDtorName,
Kaelyn Uhrainfac94672011-10-11 01:02:41 +0000244 WantNontrivialTypeSourceInfo);
245 if (Ty) {
Richard Smith2d670972013-08-17 00:46:16 +0000246 diagnoseTypo(Correction,
247 PDiag(diag::err_unknown_type_or_class_name_suggest)
248 << Result.getLookupName() << isClassName);
Kaelyn Uhrainfac94672011-10-11 01:02:41 +0000249 if (SS && NNS)
250 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
251 *CorrectedII = NewII;
252 return Ty;
253 }
254 }
255 }
256 // If typo correction failed or was not performed, fall through
Chris Lattner22bd9052009-02-16 22:07:16 +0000257 case LookupResult::FoundOverloaded:
John McCall7ba107a2009-11-18 02:36:19 +0000258 case LookupResult::FoundUnresolvedValue:
John McCallc373d482010-01-27 01:50:18 +0000259 Result.suppressDiagnostics();
John McCallb3d87482010-08-24 05:47:05 +0000260 return ParsedType();
Douglas Gregorb696ea32009-02-04 17:00:24 +0000261
Chris Lattnera64ef0a2009-10-25 22:09:09 +0000262 case LookupResult::Ambiguous:
John McCall6e247262009-10-10 05:48:19 +0000263 // Recover from type-hiding ambiguities by hiding the type. We'll
264 // do the lookup again when looking for an object, and we can
265 // diagnose the error then. If we don't do this, then the error
266 // about hiding the type will be immediately followed by an error
267 // that only makes sense if the identifier was treated like a type.
John McCalla24dc2e2009-11-17 02:14:36 +0000268 if (Result.getAmbiguityKind() == LookupResult::AmbiguousTagHiding) {
269 Result.suppressDiagnostics();
John McCallb3d87482010-08-24 05:47:05 +0000270 return ParsedType();
John McCalla24dc2e2009-11-17 02:14:36 +0000271 }
John McCall6e247262009-10-10 05:48:19 +0000272
Douglas Gregor31a19b62009-04-01 21:51:26 +0000273 // Look to see if we have a type anywhere in the list of results.
274 for (LookupResult::iterator Res = Result.begin(), ResEnd = Result.end();
275 Res != ResEnd; ++Res) {
276 if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000277 if (!IIDecl ||
278 (*Res)->getLocation().getRawEncoding() <
Douglas Gregor841b53c2009-04-13 15:14:38 +0000279 IIDecl->getLocation().getRawEncoding())
280 IIDecl = *Res;
Douglas Gregor31a19b62009-04-01 21:51:26 +0000281 }
282 }
283
284 if (!IIDecl) {
285 // None of the entities we found is a type, so there is no way
286 // to even assume that the result is a type. In this case, don't
287 // complain about the ambiguity. The parser will either try to
288 // perform this lookup again (e.g., as an object name), which
289 // will produce the ambiguity, or will complain that it expected
290 // a type name.
John McCalla24dc2e2009-11-17 02:14:36 +0000291 Result.suppressDiagnostics();
John McCallb3d87482010-08-24 05:47:05 +0000292 return ParsedType();
Douglas Gregor31a19b62009-04-01 21:51:26 +0000293 }
294
295 // We found a type within the ambiguous lookup; diagnose the
296 // ambiguity and then return that type. This might be the right
297 // answer, or it might not be, but it suppresses any attempt to
298 // perform the name lookup again.
Douglas Gregor31a19b62009-04-01 21:51:26 +0000299 break;
Douglas Gregorb696ea32009-02-04 17:00:24 +0000300
Chris Lattner22bd9052009-02-16 22:07:16 +0000301 case LookupResult::Found:
John McCallf36e02d2009-10-09 21:13:30 +0000302 IIDecl = Result.getFoundDecl();
Chris Lattner22bd9052009-02-16 22:07:16 +0000303 break;
Douglas Gregor7176fff2009-01-15 00:26:24 +0000304 }
305
Chris Lattner10ca3372009-10-25 17:16:46 +0000306 assert(IIDecl && "Didn't find decl");
John McCall54abf7d2009-11-04 02:18:39 +0000307
Chris Lattner10ca3372009-10-25 17:16:46 +0000308 QualType T;
309 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
John McCall54abf7d2009-11-04 02:18:39 +0000310 DiagnoseUseOfDecl(IIDecl, NameLoc);
John McCalla24dc2e2009-11-17 02:14:36 +0000311
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700312 T = Context.getTypeDeclType(TD);
Abramo Bagnarafad03b72012-01-27 08:46:19 +0000313
314 // NOTE: avoid constructing an ElaboratedType(Loc) if this is a
315 // constructor or destructor name (in such a case, the scope specifier
316 // will be attached to the enclosing Expr or Decl node).
317 if (SS && SS->isNotEmpty() && !IsCtorOrDtorName) {
Douglas Gregor9e876872011-03-01 18:12:44 +0000318 if (WantNontrivialTypeSourceInfo) {
319 // Construct a type with type-source information.
320 TypeLocBuilder Builder;
321 Builder.pushTypeSpec(T).setNameLoc(NameLoc);
322
323 T = getElaboratedType(ETK_None, *SS, T);
324 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
Abramo Bagnara38a42912012-02-06 19:09:27 +0000325 ElabTL.setElaboratedKeywordLoc(SourceLocation());
Douglas Gregor9e876872011-03-01 18:12:44 +0000326 ElabTL.setQualifierLoc(SS->getWithLocInContext(Context));
327 return CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
328 } else {
329 T = getElaboratedType(ETK_None, *SS, T);
330 }
331 }
Chris Lattner10ca3372009-10-25 17:16:46 +0000332 } else if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(IIDecl)) {
Fariborz Jahanian02b0d652011-03-08 19:12:46 +0000333 (void)DiagnoseUseOfDecl(IDecl, NameLoc);
Fariborz Jahanian1e52dfc2011-02-08 18:05:59 +0000334 if (!HasTrailingDot)
335 T = Context.getObjCInterfaceType(IDecl);
336 }
337
338 if (T.isNull()) {
John McCalla24dc2e2009-11-17 02:14:36 +0000339 // If it's not plausibly a type, suppress diagnostics.
340 Result.suppressDiagnostics();
John McCallb3d87482010-08-24 05:47:05 +0000341 return ParsedType();
John McCalla24dc2e2009-11-17 02:14:36 +0000342 }
John McCallb3d87482010-08-24 05:47:05 +0000343 return ParsedType::make(T);
Reid Spencer5f016e22007-07-11 17:01:13 +0000344}
345
Chris Lattner4c97d762009-04-12 21:49:30 +0000346/// isTagName() - This method is called *for error recovery purposes only*
347/// to determine if the specified name is a valid tag name ("struct foo"). If
348/// so, this returns the TST for the tag corresponding to it (TST_enum,
Joao Matos6666ed42012-08-31 18:45:21 +0000349/// TST_union, TST_struct, TST_interface, TST_class). This is used to diagnose
350/// cases in C where the user forgot to specify the tag.
Chris Lattner4c97d762009-04-12 21:49:30 +0000351DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
352 // Do a tag name lookup in this scope.
John McCalla24dc2e2009-11-17 02:14:36 +0000353 LookupResult R(*this, &II, SourceLocation(), LookupTagName);
354 LookupName(R, S, false);
355 R.suppressDiagnostics();
356 if (R.getResultKind() == LookupResult::Found)
John McCall1bcee0a2009-12-02 08:25:40 +0000357 if (const TagDecl *TD = R.getAsSingle<TagDecl>()) {
Chris Lattner4c97d762009-04-12 21:49:30 +0000358 switch (TD->getTagKind()) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000359 case TTK_Struct: return DeclSpec::TST_struct;
Joao Matos6666ed42012-08-31 18:45:21 +0000360 case TTK_Interface: return DeclSpec::TST_interface;
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000361 case TTK_Union: return DeclSpec::TST_union;
362 case TTK_Class: return DeclSpec::TST_class;
363 case TTK_Enum: return DeclSpec::TST_enum;
Chris Lattner4c97d762009-04-12 21:49:30 +0000364 }
365 }
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Chris Lattner4c97d762009-04-12 21:49:30 +0000367 return DeclSpec::TST_unspecified;
368}
369
Francois Pichet6943e9b2011-04-13 02:38:49 +0000370/// isMicrosoftMissingTypename - In Microsoft mode, within class scope,
371/// if a CXXScopeSpec's type is equal to the type of one of the base classes
372/// then downgrade the missing typename error to a warning.
373/// This is needed for MSVC compatibility; Example:
374/// @code
375/// template<class T> class A {
376/// public:
377/// typedef int TYPE;
378/// };
379/// template<class T> class B : public A<T> {
380/// public:
381/// A<T>::TYPE a; // no typename required because A<T> is a base class.
382/// };
383/// @endcode
Francois Pichetf11dbe92011-10-11 01:50:09 +0000384bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) {
Francois Pichet6943e9b2011-04-13 02:38:49 +0000385 if (CurContext->isRecord()) {
Francois Pichet3441a522011-04-13 02:44:57 +0000386 const Type *Ty = SS->getScopeRep()->getAsType();
Francois Pichet6943e9b2011-04-13 02:38:49 +0000387
388 CXXRecordDecl *RD = cast<CXXRecordDecl>(CurContext);
Stephen Hines651f13c2014-04-23 16:59:28 -0700389 for (const auto &Base : RD->bases())
390 if (Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType()))
Francois Pichet6943e9b2011-04-13 02:38:49 +0000391 return true;
Francois Pichetf11dbe92011-10-11 01:50:09 +0000392 return S->isFunctionPrototypeScope();
Francois Pichet6943e9b2011-04-13 02:38:49 +0000393 }
Francois Pichetf11dbe92011-10-11 01:50:09 +0000394 return CurContext->isFunctionOrMethod() || S->isFunctionPrototypeScope();
Francois Pichet6943e9b2011-04-13 02:38:49 +0000395}
396
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +0000397bool Sema::DiagnoseUnknownTypeName(IdentifierInfo *&II,
Douglas Gregora786fdb2009-10-13 23:27:22 +0000398 SourceLocation IILoc,
399 Scope *S,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +0000400 CXXScopeSpec *SS,
Stephen Hines651f13c2014-04-23 16:59:28 -0700401 ParsedType &SuggestedType,
402 bool AllowClassTemplates) {
Douglas Gregora786fdb2009-10-13 23:27:22 +0000403 // We don't have anything to suggest (yet).
John McCallb3d87482010-08-24 05:47:05 +0000404 SuggestedType = ParsedType();
Douglas Gregora786fdb2009-10-13 23:27:22 +0000405
Douglas Gregor546be3c2009-12-30 17:04:44 +0000406 // There may have been a typo in the name of the type. Look up typo
407 // results, in case we have something that we can suggest.
Stephen Hines651f13c2014-04-23 16:59:28 -0700408 TypeNameValidatorCCC Validator(false, false, AllowClassTemplates);
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +0000409 if (TypoCorrection Corrected = CorrectTypo(DeclarationNameInfo(II, IILoc),
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +0000410 LookupOrdinaryName, S, SS,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700411 Validator, CTK_ErrorRecovery)) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000412 if (Corrected.isKeyword()) {
413 // We corrected to a keyword.
Richard Smith2d670972013-08-17 00:46:16 +0000414 diagnoseTypo(Corrected, PDiag(diag::err_unknown_typename_suggest) << II);
415 II = Corrected.getCorrectionAsIdentifierInfo();
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000416 } else {
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +0000417 // We found a similarly-named type or interface; suggest that.
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000418 if (!SS || !SS->isSet()) {
Richard Smith2d670972013-08-17 00:46:16 +0000419 diagnoseTypo(Corrected,
420 PDiag(diag::err_unknown_typename_suggest) << II);
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000421 } else if (DeclContext *DC = computeDeclContext(*SS, false)) {
Richard Smith2d670972013-08-17 00:46:16 +0000422 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
423 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000424 II->getName().equals(CorrectedStr);
Richard Smith2d670972013-08-17 00:46:16 +0000425 diagnoseTypo(Corrected,
426 PDiag(diag::err_unknown_nested_typename_suggest)
427 << II << DC << DroppedSpecifier << SS->getRange());
428 } else {
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +0000429 llvm_unreachable("could not have corrected a typo here");
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000430 }
Douglas Gregor546be3c2009-12-30 17:04:44 +0000431
Kaelyn Uhraina934c312013-09-26 21:13:05 +0000432 CXXScopeSpec tmpSS;
433 if (Corrected.getCorrectionSpecifier())
434 tmpSS.MakeTrivial(Context, Corrected.getCorrectionSpecifier(),
435 SourceRange(IILoc));
Richard Smith2d670972013-08-17 00:46:16 +0000436 SuggestedType = getTypeName(*Corrected.getCorrectionAsIdentifierInfo(),
Kaelyn Uhraina934c312013-09-26 21:13:05 +0000437 IILoc, S, tmpSS.isSet() ? &tmpSS : SS, false,
438 false, ParsedType(),
Abramo Bagnarafad03b72012-01-27 08:46:19 +0000439 /*IsCtorOrDtorName=*/false,
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +0000440 /*NonTrivialTypeSourceInfo=*/true);
Douglas Gregor546be3c2009-12-30 17:04:44 +0000441 }
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +0000442 return true;
Douglas Gregor546be3c2009-12-30 17:04:44 +0000443 }
444
David Blaikie4e4d0842012-03-11 07:00:24 +0000445 if (getLangOpts().CPlusPlus) {
Jeffrey Yasskinc173be22010-04-08 21:04:54 +0000446 // See if II is a class template that the user forgot to pass arguments to.
447 UnqualifiedId Name;
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +0000448 Name.setIdentifier(II, IILoc);
Jeffrey Yasskinc173be22010-04-08 21:04:54 +0000449 CXXScopeSpec EmptySS;
450 TemplateTy TemplateResult;
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000451 bool MemberOfUnknownSpecialization;
Abramo Bagnara7c153532010-08-06 12:11:11 +0000452 if (isTemplateName(S, SS ? *SS : EmptySS, /*hasTemplateKeyword=*/false,
John McCallb3d87482010-08-24 05:47:05 +0000453 Name, ParsedType(), true, TemplateResult,
Douglas Gregor1fd6d442010-05-21 23:18:07 +0000454 MemberOfUnknownSpecialization) == TNK_Type_template) {
Serge Pavlov18062392013-08-27 13:15:56 +0000455 TemplateName TplName = TemplateResult.get();
Jeffrey Yasskinc173be22010-04-08 21:04:54 +0000456 Diag(IILoc, diag::err_template_missing_args) << TplName;
457 if (TemplateDecl *TplDecl = TplName.getAsTemplateDecl()) {
458 Diag(TplDecl->getLocation(), diag::note_template_decl_here)
459 << TplDecl->getTemplateParameters()->getSourceRange();
460 }
461 return true;
462 }
463 }
464
Douglas Gregora786fdb2009-10-13 23:27:22 +0000465 // FIXME: Should we move the logic that tries to recover from a missing tag
466 // (struct, union, enum) from Parser::ParseImplicitInt here, instead?
467
Douglas Gregor546be3c2009-12-30 17:04:44 +0000468 if (!SS || (!SS->isSet() && !SS->isInvalid()))
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +0000469 Diag(IILoc, diag::err_unknown_typename) << II;
Douglas Gregora786fdb2009-10-13 23:27:22 +0000470 else if (DeclContext *DC = computeDeclContext(*SS, false))
471 Diag(IILoc, diag::err_typename_nested_not_found)
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +0000472 << II << DC << SS->getRange();
Douglas Gregora786fdb2009-10-13 23:27:22 +0000473 else if (isDependentScopeSpecifier(*SS)) {
Francois Pichet6943e9b2011-04-13 02:38:49 +0000474 unsigned DiagID = diag::err_typename_missing;
Stephen Hines651f13c2014-04-23 16:59:28 -0700475 if (getLangOpts().MSVCCompat && isMicrosoftMissingTypename(SS, S))
Francois Pichetcf320c62011-04-22 08:25:24 +0000476 DiagID = diag::warn_typename_missing;
Francois Pichet6943e9b2011-04-13 02:38:49 +0000477
478 Diag(SS->getRange().getBegin(), DiagID)
Stephen Hines651f13c2014-04-23 16:59:28 -0700479 << SS->getScopeRep() << II->getName()
Douglas Gregora786fdb2009-10-13 23:27:22 +0000480 << SourceRange(SS->getRange().getBegin(), IILoc)
Douglas Gregor849b2432010-03-31 17:46:05 +0000481 << FixItHint::CreateInsertion(SS->getRange().getBegin(), "typename ");
Kaelyn Uhrain50dc12a2012-06-15 23:45:58 +0000482 SuggestedType = ActOnTypenameType(S, SourceLocation(),
483 *SS, *II, IILoc).get();
Douglas Gregora786fdb2009-10-13 23:27:22 +0000484 } else {
485 assert(SS && SS->isInvalid() &&
486 "Invalid scope specifier has already been diagnosed");
487 }
488
489 return true;
490}
Chris Lattner4c97d762009-04-12 21:49:30 +0000491
Douglas Gregor312eadb2011-04-24 05:37:28 +0000492/// \brief Determine whether the given result set contains either a type name
493/// or
494static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000495 bool CheckTemplate = R.getSema().getLangOpts().CPlusPlus &&
Douglas Gregor312eadb2011-04-24 05:37:28 +0000496 NextToken.is(tok::less);
497
498 for (LookupResult::iterator I = R.begin(), IEnd = R.end(); I != IEnd; ++I) {
499 if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I))
500 return true;
501
502 if (CheckTemplate && isa<TemplateDecl>(*I))
503 return true;
504 }
505
506 return false;
507}
508
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000509static bool isTagTypeWithMissingTag(Sema &SemaRef, LookupResult &Result,
510 Scope *S, CXXScopeSpec &SS,
511 IdentifierInfo *&Name,
512 SourceLocation NameLoc) {
Richard Smith69e48262012-09-06 01:37:56 +0000513 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupTagName);
514 SemaRef.LookupParsedName(R, S, &SS);
515 if (TagDecl *Tag = R.getAsSingle<TagDecl>()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700516 StringRef FixItTagName;
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000517 switch (Tag->getTagKind()) {
518 case TTK_Class:
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000519 FixItTagName = "class ";
520 break;
521
522 case TTK_Enum:
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000523 FixItTagName = "enum ";
524 break;
525
526 case TTK_Struct:
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000527 FixItTagName = "struct ";
528 break;
529
Joao Matos6666ed42012-08-31 18:45:21 +0000530 case TTK_Interface:
Joao Matos6666ed42012-08-31 18:45:21 +0000531 FixItTagName = "__interface ";
532 break;
533
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000534 case TTK_Union:
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000535 FixItTagName = "union ";
536 break;
537 }
538
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700539 StringRef TagName = FixItTagName.drop_back();
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000540 SemaRef.Diag(NameLoc, diag::err_use_of_tag_name_without_tag)
541 << Name << TagName << SemaRef.getLangOpts().CPlusPlus
542 << FixItHint::CreateInsertion(NameLoc, FixItTagName);
543
Richard Smith69e48262012-09-06 01:37:56 +0000544 for (LookupResult::iterator I = Result.begin(), IEnd = Result.end();
545 I != IEnd; ++I)
546 SemaRef.Diag((*I)->getLocation(), diag::note_decl_hiding_tag_type)
547 << Name << TagName;
548
549 // Replace lookup results with just the tag decl.
550 Result.clear(Sema::LookupTagName);
551 SemaRef.LookupParsedName(Result, S, &SS);
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000552 return true;
553 }
554
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000555 return false;
556}
557
Richard Smith05766812012-08-18 00:55:03 +0000558/// Build a ParsedType for a simple-type-specifier with a nested-name-specifier.
559static ParsedType buildNestedType(Sema &S, CXXScopeSpec &SS,
560 QualType T, SourceLocation NameLoc) {
561 ASTContext &Context = S.Context;
562
563 TypeLocBuilder Builder;
564 Builder.pushTypeSpec(T).setNameLoc(NameLoc);
565
566 T = S.getElaboratedType(ETK_None, SS, T);
567 ElaboratedTypeLoc ElabTL = Builder.push<ElaboratedTypeLoc>(T);
568 ElabTL.setElaboratedKeywordLoc(SourceLocation());
569 ElabTL.setQualifierLoc(SS.getWithLocInContext(Context));
570 return S.CreateParsedType(T, Builder.getTypeSourceInfo(Context, T));
571}
572
Douglas Gregor312eadb2011-04-24 05:37:28 +0000573Sema::NameClassification Sema::ClassifyName(Scope *S,
574 CXXScopeSpec &SS,
575 IdentifierInfo *&Name,
576 SourceLocation NameLoc,
Richard Smith05766812012-08-18 00:55:03 +0000577 const Token &NextToken,
578 bool IsAddressOfOperand,
579 CorrectionCandidateCallback *CCC) {
Douglas Gregor312eadb2011-04-24 05:37:28 +0000580 DeclarationNameInfo NameInfo(Name, NameLoc);
581 ObjCMethodDecl *CurMethod = getCurMethodDecl();
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700582
Douglas Gregor312eadb2011-04-24 05:37:28 +0000583 if (NextToken.is(tok::coloncolon)) {
584 BuildCXXNestedNameSpecifier(S, *Name, NameLoc, NextToken.getLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700585 QualType(), false, SS, nullptr, false);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000586 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700587
Douglas Gregor312eadb2011-04-24 05:37:28 +0000588 LookupResult Result(*this, Name, NameLoc, LookupOrdinaryName);
589 LookupParsedName(Result, S, &SS, !CurMethod);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700590
Douglas Gregor312eadb2011-04-24 05:37:28 +0000591 // Perform lookup for Objective-C instance variables (including automatically
592 // synthesized instance variables), if we're in an Objective-C method.
593 // FIXME: This lookup really, really needs to be folded in to the normal
594 // unqualified lookup mechanism.
595 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
596 ExprResult E = LookupInObjCMethod(Result, S, Name, true);
Douglas Gregorec385cf2011-04-25 15:05:41 +0000597 if (E.get() || E.isInvalid())
Douglas Gregor312eadb2011-04-24 05:37:28 +0000598 return E;
Douglas Gregor312eadb2011-04-24 05:37:28 +0000599 }
600
601 bool SecondTry = false;
602 bool IsFilteredTemplateName = false;
603
604Corrected:
605 switch (Result.getResultKind()) {
606 case LookupResult::NotFound:
607 // If an unqualified-id is followed by a '(', then we have a function
608 // call.
609 if (!SS.isSet() && NextToken.is(tok::l_paren)) {
610 // In C++, this is an ADL-only call.
611 // FIXME: Reference?
David Blaikie4e4d0842012-03-11 07:00:24 +0000612 if (getLangOpts().CPlusPlus)
Douglas Gregor312eadb2011-04-24 05:37:28 +0000613 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/true);
614
615 // C90 6.3.2.2:
616 // If the expression that precedes the parenthesized argument list in a
617 // function call consists solely of an identifier, and if no
618 // declaration is visible for this identifier, the identifier is
619 // implicitly declared exactly as if, in the innermost block containing
620 // the function call, the declaration
621 //
622 // extern int identifier ();
623 //
624 // appeared.
625 //
626 // We also allow this in C99 as an extension.
627 if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) {
628 Result.addDecl(D);
629 Result.resolveKind();
630 return BuildDeclarationNameExpr(SS, Result, /*ADL=*/false);
631 }
632 }
633
634 // In C, we first see whether there is a tag type by the same name, in
635 // which case it's likely that the user just forget to write "enum",
636 // "struct", or "union".
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000637 if (!getLangOpts().CPlusPlus && !SecondTry &&
638 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
639 break;
Douglas Gregor312eadb2011-04-24 05:37:28 +0000640 }
641
642 // Perform typo correction to determine if there is another name that is
643 // close to this name.
Richard Smith05766812012-08-18 00:55:03 +0000644 if (!SecondTry && CCC) {
Douglas Gregor3a348c82011-07-14 04:54:23 +0000645 SecondTry = true;
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000646 if (TypoCorrection Corrected = CorrectTypo(Result.getLookupNameInfo(),
David Blaikied662a792011-10-19 22:56:21 +0000647 Result.getLookupKind(), S,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700648 &SS, *CCC,
649 CTK_ErrorRecovery)) {
Douglas Gregor27766d22011-04-27 03:47:06 +0000650 unsigned UnqualifiedDiag = diag::err_undeclared_var_use_suggest;
651 unsigned QualifiedDiag = diag::err_no_member_suggest;
Richard Smith2d670972013-08-17 00:46:16 +0000652
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000653 NamedDecl *FirstDecl = Corrected.getCorrectionDecl();
Douglas Gregor3b887352011-04-27 04:48:22 +0000654 NamedDecl *UnderlyingFirstDecl
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700655 = FirstDecl? FirstDecl->getUnderlyingDecl() : nullptr;
David Blaikie4e4d0842012-03-11 07:00:24 +0000656 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
Douglas Gregor3b887352011-04-27 04:48:22 +0000657 UnderlyingFirstDecl && isa<TemplateDecl>(UnderlyingFirstDecl)) {
Douglas Gregor27766d22011-04-27 03:47:06 +0000658 UnqualifiedDiag = diag::err_no_template_suggest;
659 QualifiedDiag = diag::err_no_member_template_suggest;
Douglas Gregor3b887352011-04-27 04:48:22 +0000660 } else if (UnderlyingFirstDecl &&
661 (isa<TypeDecl>(UnderlyingFirstDecl) ||
662 isa<ObjCInterfaceDecl>(UnderlyingFirstDecl) ||
663 isa<ObjCCompatibleAliasDecl>(UnderlyingFirstDecl))) {
David Blaikie30262b72013-03-21 21:35:15 +0000664 UnqualifiedDiag = diag::err_unknown_typename_suggest;
665 QualifiedDiag = diag::err_unknown_nested_typename_suggest;
666 }
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000667
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000668 if (SS.isEmpty()) {
Richard Smith2d670972013-08-17 00:46:16 +0000669 diagnoseTypo(Corrected, PDiag(UnqualifiedDiag) << Name);
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000670 } else {// FIXME: is this even reachable? Test it.
Richard Smith2d670972013-08-17 00:46:16 +0000671 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
672 bool DroppedSpecifier = Corrected.WillReplaceSpecifier() &&
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000673 Name->getName().equals(CorrectedStr);
Richard Smith2d670972013-08-17 00:46:16 +0000674 diagnoseTypo(Corrected, PDiag(QualifiedDiag)
675 << Name << computeDeclContext(SS, false)
676 << DroppedSpecifier << SS.getRange());
Kaelyn Uhrainb2567dd2013-07-02 23:47:44 +0000677 }
Douglas Gregor312eadb2011-04-24 05:37:28 +0000678
679 // Update the name, so that the caller has the new name.
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000680 Name = Corrected.getCorrectionAsIdentifierInfo();
Richard Smith2d670972013-08-17 00:46:16 +0000681
Kaelyn Uhraina5ee6342012-01-24 19:45:35 +0000682 // Typo correction corrected to a keyword.
683 if (Corrected.isKeyword())
Richard Smith2d670972013-08-17 00:46:16 +0000684 return Name;
Kaelyn Uhraina5ee6342012-01-24 19:45:35 +0000685
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000686 // Also update the LookupResult...
687 // FIXME: This should probably go away at some point
688 Result.clear();
689 Result.setLookupName(Corrected.getCorrection());
Richard Smith2d670972013-08-17 00:46:16 +0000690 if (FirstDecl)
Kaelyn Uhraina5ee6342012-01-24 19:45:35 +0000691 Result.addDecl(FirstDecl);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000692
693 // If we found an Objective-C instance variable, let
694 // LookupInObjCMethod build the appropriate expression to
695 // reference the ivar.
696 // FIXME: This is a gross hack.
697 if (ObjCIvarDecl *Ivar = Result.getAsSingle<ObjCIvarDecl>()) {
698 Result.clear();
699 ExprResult E(LookupInObjCMethod(Result, S, Ivar->getIdentifier()));
Benjamin Kramer3fe198b2012-08-23 21:35:17 +0000700 return E;
Douglas Gregor312eadb2011-04-24 05:37:28 +0000701 }
702
703 goto Corrected;
704 }
705 }
706
707 // We failed to correct; just fall through and let the parser deal with it.
708 Result.suppressDiagnostics();
709 return NameClassification::Unknown();
710
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000711 case LookupResult::NotFoundInCurrentInstantiation: {
Douglas Gregor312eadb2011-04-24 05:37:28 +0000712 // We performed name lookup into the current instantiation, and there were
713 // dependent bases, so we treat this result the same way as any other
714 // dependent nested-name-specifier.
715
716 // C++ [temp.res]p2:
717 // A name used in a template declaration or definition and that is
718 // dependent on a template-parameter is assumed not to name a type
719 // unless the applicable name lookup finds a type name or the name is
720 // qualified by the keyword typename.
721 //
722 // FIXME: If the next token is '<', we might want to ask the parser to
723 // perform some heroics to see if we actually have a
724 // template-argument-list, which would indicate a missing 'template'
725 // keyword here.
Richard Smith05766812012-08-18 00:55:03 +0000726 return ActOnDependentIdExpression(SS, /*TemplateKWLoc=*/SourceLocation(),
727 NameInfo, IsAddressOfOperand,
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700728 /*TemplateArgs=*/nullptr);
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000729 }
Douglas Gregor312eadb2011-04-24 05:37:28 +0000730
731 case LookupResult::Found:
732 case LookupResult::FoundOverloaded:
733 case LookupResult::FoundUnresolvedValue:
734 break;
735
736 case LookupResult::Ambiguous:
David Blaikie4e4d0842012-03-11 07:00:24 +0000737 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
Douglas Gregor3b887352011-04-27 04:48:22 +0000738 hasAnyAcceptableTemplateNames(Result)) {
Douglas Gregor312eadb2011-04-24 05:37:28 +0000739 // C++ [temp.local]p3:
740 // A lookup that finds an injected-class-name (10.2) can result in an
741 // ambiguity in certain cases (for example, if it is found in more than
742 // one base class). If all of the injected-class-names that are found
743 // refer to specializations of the same class template, and if the name
744 // is followed by a template-argument-list, the reference refers to the
745 // class template itself and not a specialization thereof, and is not
746 // ambiguous.
747 //
748 // This filtering can make an ambiguous result into an unambiguous one,
749 // so try again after filtering out template names.
750 FilterAcceptableTemplateNames(Result);
751 if (!Result.isAmbiguous()) {
752 IsFilteredTemplateName = true;
753 break;
754 }
755 }
756
757 // Diagnose the ambiguity and return an error.
758 return NameClassification::Error();
759 }
760
David Blaikie4e4d0842012-03-11 07:00:24 +0000761 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
Douglas Gregor312eadb2011-04-24 05:37:28 +0000762 (IsFilteredTemplateName || hasAnyAcceptableTemplateNames(Result))) {
763 // C++ [temp.names]p3:
764 // After name lookup (3.4) finds that a name is a template-name or that
765 // an operator-function-id or a literal- operator-id refers to a set of
766 // overloaded functions any member of which is a function template if
767 // this is followed by a <, the < is always taken as the delimiter of a
768 // template-argument-list and never as the less-than operator.
769 if (!IsFilteredTemplateName)
770 FilterAcceptableTemplateNames(Result);
771
Douglas Gregor3b887352011-04-27 04:48:22 +0000772 if (!Result.empty()) {
773 bool IsFunctionTemplate;
Larisse Voufoef4579c2013-08-06 01:03:05 +0000774 bool IsVarTemplate;
Douglas Gregor3b887352011-04-27 04:48:22 +0000775 TemplateName Template;
776 if (Result.end() - Result.begin() > 1) {
777 IsFunctionTemplate = true;
778 Template = Context.getOverloadedTemplateName(Result.begin(),
779 Result.end());
780 } else {
781 TemplateDecl *TD
782 = cast<TemplateDecl>((*Result.begin())->getUnderlyingDecl());
783 IsFunctionTemplate = isa<FunctionTemplateDecl>(TD);
Larisse Voufoef4579c2013-08-06 01:03:05 +0000784 IsVarTemplate = isa<VarTemplateDecl>(TD);
785
Douglas Gregor3b887352011-04-27 04:48:22 +0000786 if (SS.isSet() && !SS.isInvalid())
787 Template = Context.getQualifiedTemplateName(SS.getScopeRep(),
Douglas Gregor312eadb2011-04-24 05:37:28 +0000788 /*TemplateKeyword=*/false,
Douglas Gregor3b887352011-04-27 04:48:22 +0000789 TD);
790 else
791 Template = TemplateName(TD);
792 }
Douglas Gregor312eadb2011-04-24 05:37:28 +0000793
Douglas Gregor3b887352011-04-27 04:48:22 +0000794 if (IsFunctionTemplate) {
795 // Function templates always go through overload resolution, at which
796 // point we'll perform the various checks (e.g., accessibility) we need
797 // to based on which function we selected.
798 Result.suppressDiagnostics();
799
800 return NameClassification::FunctionTemplate(Template);
801 }
Larisse Voufoef4579c2013-08-06 01:03:05 +0000802
803 return IsVarTemplate ? NameClassification::VarTemplate(Template)
804 : NameClassification::TypeTemplate(Template);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000805 }
Douglas Gregor312eadb2011-04-24 05:37:28 +0000806 }
Richard Smith05766812012-08-18 00:55:03 +0000807
Douglas Gregor3b887352011-04-27 04:48:22 +0000808 NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl();
Douglas Gregor312eadb2011-04-24 05:37:28 +0000809 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
810 DiagnoseUseOfDecl(Type, NameLoc);
811 QualType T = Context.getTypeDeclType(Type);
Richard Smith05766812012-08-18 00:55:03 +0000812 if (SS.isNotEmpty())
813 return buildNestedType(*this, SS, T, NameLoc);
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000814 return ParsedType::make(T);
Douglas Gregor312eadb2011-04-24 05:37:28 +0000815 }
Richard Smith05766812012-08-18 00:55:03 +0000816
Douglas Gregor312eadb2011-04-24 05:37:28 +0000817 ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl);
818 if (!Class) {
819 // FIXME: It's unfortunate that we don't have a Type node for handling this.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700820 if (ObjCCompatibleAliasDecl *Alias =
821 dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl))
Douglas Gregor312eadb2011-04-24 05:37:28 +0000822 Class = Alias->getClassInterface();
823 }
824
825 if (Class) {
826 DiagnoseUseOfDecl(Class, NameLoc);
827
828 if (NextToken.is(tok::period)) {
829 // Interface. <something> is parsed as a property reference expression.
830 // Just return "unknown" as a fall-through for now.
831 Result.suppressDiagnostics();
832 return NameClassification::Unknown();
833 }
834
835 QualType T = Context.getObjCInterfaceType(Class);
836 return ParsedType::make(T);
837 }
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000838
Richard Smith05766812012-08-18 00:55:03 +0000839 // We can have a type template here if we're classifying a template argument.
840 if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl))
841 return NameClassification::TypeTemplate(
842 TemplateName(cast<TemplateDecl>(FirstDecl)));
843
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000844 // Check for a tag type hidden by a non-type decl in a few cases where it
845 // seems likely a type is wanted instead of the non-type that was found.
Argyrios Kyrtzidis99e9fe02013-05-07 19:54:28 +0000846 bool NextIsOp = NextToken.is(tok::amp) || NextToken.is(tok::star);
847 if ((NextToken.is(tok::identifier) ||
Stephen Hines651f13c2014-04-23 16:59:28 -0700848 (NextIsOp &&
849 FirstDecl->getUnderlyingDecl()->isFunctionOrFunctionTemplate())) &&
Argyrios Kyrtzidis99e9fe02013-05-07 19:54:28 +0000850 isTagTypeWithMissingTag(*this, Result, S, SS, Name, NameLoc)) {
851 TypeDecl *Type = Result.getAsSingle<TypeDecl>();
852 DiagnoseUseOfDecl(Type, NameLoc);
853 QualType T = Context.getTypeDeclType(Type);
854 if (SS.isNotEmpty())
855 return buildNestedType(*this, SS, T, NameLoc);
856 return ParsedType::make(T);
Kaelyn Uhrain12f32972012-05-02 00:11:40 +0000857 }
Douglas Gregor312eadb2011-04-24 05:37:28 +0000858
Richard Smith05766812012-08-18 00:55:03 +0000859 if (FirstDecl->isCXXClassMember())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700860 return BuildPossibleImplicitMemberExpr(SS, SourceLocation(), Result,
861 nullptr);
Douglas Gregor3b887352011-04-27 04:48:22 +0000862
Douglas Gregor312eadb2011-04-24 05:37:28 +0000863 bool ADL = UseArgumentDependentLookup(SS, Result, NextToken.is(tok::l_paren));
864 return BuildDeclarationNameExpr(SS, Result, ADL);
865}
866
John McCall88232aa2009-08-18 00:00:49 +0000867// Determines the context to return to after temporarily entering a
868// context. This depends in an unnecessarily complicated way on the
869// exact ordering of callbacks from the parser.
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000870DeclContext *Sema::getContainingDC(DeclContext *DC) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000871
John McCall88232aa2009-08-18 00:00:49 +0000872 // Functions defined inline within classes aren't parsed until we've
873 // finished parsing the top-level class, so the top-level class is
874 // the context we'll need to return to.
Bill Wendlingb7accd02013-12-05 05:24:30 +0000875 // A Lambda call operator whose parent is a class must not be treated
876 // as an inline member function. A Lambda can be used legally
877 // either as an in-class member initializer or a default argument. These
878 // are parsed once the class has been marked complete and so the containing
879 // context would be the nested class (when the lambda is defined in one);
880 // If the class is not complete, then the lambda is being used in an
881 // ill-formed fashion (such as to specify the width of a bit-field, or
882 // in an array-bound) - in which case we still want to return the
883 // lexically containing DC (which could be a nested class).
884 if (isa<FunctionDecl>(DC) && !isLambdaCallOperator(DC)) {
John McCall88232aa2009-08-18 00:00:49 +0000885 DC = DC->getLexicalParent();
886
887 // A function not defined within a class will always return to its
888 // lexical context.
889 if (!isa<CXXRecordDecl>(DC))
890 return DC;
891
892 // A C++ inline method/friend is parsed *after* the topmost class
893 // it was declared in is fully parsed ("complete"); the topmost
894 // class is the context we need to return to.
Argyrios Kyrtzidis77407b82008-11-19 18:01:13 +0000895 while (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC->getLexicalParent()))
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000896 DC = RD;
897
898 // Return the declaration context of the topmost class the inline method is
899 // declared in.
900 return DC;
901 }
902
Argyrios Kyrtzidis77407b82008-11-19 18:01:13 +0000903 return DC->getLexicalParent();
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000904}
905
Douglas Gregor44b43212008-12-11 16:49:14 +0000906void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000907 assert(getContainingDC(DC) == CurContext &&
Zhongxing Xue50897a2008-12-08 07:14:51 +0000908 "The next DeclContext should be lexically contained in the current one.");
Chris Lattner9fdf9c62008-04-22 18:39:57 +0000909 CurContext = DC;
Douglas Gregor44b43212008-12-11 16:49:14 +0000910 S->setEntity(DC);
Chris Lattner0ed844b2008-04-04 06:12:32 +0000911}
912
Chris Lattnerb048c982008-04-06 04:47:34 +0000913void Sema::PopDeclContext() {
914 assert(CurContext && "DeclContext imbalance!");
Douglas Gregor44b43212008-12-11 16:49:14 +0000915
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000916 CurContext = getContainingDC(CurContext);
John McCallacb70392010-07-23 22:45:07 +0000917 assert(CurContext && "Popped translation unit!");
Chris Lattner0ed844b2008-04-04 06:12:32 +0000918}
919
Argyrios Kyrtzidis179fe1a2009-06-17 23:19:02 +0000920/// EnterDeclaratorContext - Used when we must lookup names in the context
921/// of a declarator's nested name specifier.
John McCall7a1dc562009-12-19 10:49:29 +0000922///
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +0000923void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
John McCall7a1dc562009-12-19 10:49:29 +0000924 // C++0x [basic.lookup.unqual]p13:
925 // A name used in the definition of a static data member of class
926 // X (after the qualified-id of the static member) is looked up as
927 // if the name was used in a member function of X.
928 // C++0x [basic.lookup.unqual]p14:
929 // If a variable member of a namespace is defined outside of the
930 // scope of its namespace then any name used in the definition of
931 // the variable member (after the declarator-id) is looked up as
932 // if the definition of the variable member occurred in its
933 // namespace.
934 // Both of these imply that we should push a scope whose context
935 // is the semantic context of the declaration. We can't use
936 // PushDeclContext here because that context is not necessarily
937 // lexically contained in the current context. Fortunately,
938 // the containing scope should have the appropriate information.
939
940 assert(!S->getEntity() && "scope already has entity");
941
942#ifndef NDEBUG
943 Scope *Ancestor = S->getParent();
944 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
945 assert(Ancestor->getEntity() == CurContext && "ancestor context mismatch");
946#endif
947
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +0000948 CurContext = DC;
John McCall7a1dc562009-12-19 10:49:29 +0000949 S->setEntity(DC);
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +0000950}
951
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +0000952void Sema::ExitDeclaratorContext(Scope *S) {
John McCall7a1dc562009-12-19 10:49:29 +0000953 assert(S->getEntity() == CurContext && "Context imbalance!");
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +0000954
John McCall7a1dc562009-12-19 10:49:29 +0000955 // Switch back to the lexical context. The safety of this is
956 // enforced by an assert in EnterDeclaratorContext.
957 Scope *Ancestor = S->getParent();
958 while (!Ancestor->getEntity()) Ancestor = Ancestor->getParent();
Ted Kremenekf0d58612013-10-08 17:08:03 +0000959 CurContext = Ancestor->getEntity();
John McCall7a1dc562009-12-19 10:49:29 +0000960
961 // We don't need to do anything with the scope, which is going to
962 // disappear.
Argyrios Kyrtzidis1d175532009-06-17 23:15:40 +0000963}
964
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000965
966void Sema::ActOnReenterFunctionContext(Scope* S, Decl *D) {
Stephen Hines651f13c2014-04-23 16:59:28 -0700967 // We assume that the caller has already called
968 // ActOnReenterTemplateScope so getTemplatedDecl() works.
969 FunctionDecl *FD = D->getAsFunction();
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000970 if (!FD)
971 return;
972
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +0000973 // Same implementation as PushDeclContext, but enters the context
974 // from the lexical parent, rather than the top-level class.
975 assert(CurContext == FD->getLexicalParent() &&
976 "The next DeclContext should be lexically contained in the current one.");
977 CurContext = FD;
978 S->setEntity(CurContext);
979
Caitlin Sadowskied9d84a2011-09-08 17:42:31 +0000980 for (unsigned P = 0, NumParams = FD->getNumParams(); P < NumParams; ++P) {
981 ParmVarDecl *Param = FD->getParamDecl(P);
982 // If the parameter has an identifier, then add it to the scope
983 if (Param->getIdentifier()) {
984 S->AddDecl(Param);
985 IdResolver.AddDecl(Param);
986 }
987 }
988}
989
990
DeLesley Hutchinscf2fa2f2012-04-06 15:10:17 +0000991void Sema::ActOnExitFunctionContext() {
992 // Same implementation as PopDeclContext, but returns to the lexical parent,
993 // rather than the top-level class.
994 assert(CurContext && "DeclContext imbalance!");
995 CurContext = CurContext->getLexicalParent();
996 assert(CurContext && "Popped translation unit!");
997}
998
999
Douglas Gregorf9201e02009-02-11 23:02:49 +00001000/// \brief Determine whether we allow overloading of the function
1001/// PrevDecl with another declaration.
1002///
1003/// This routine determines whether overloading is possible, not
1004/// whether some new function is actually an overload. It will return
1005/// true in C++ (where we can always provide overloads) or, as an
1006/// extension, in C when the previous function is already an
1007/// overloaded function declaration or has the "overloadable"
1008/// attribute.
John McCall68263142009-11-18 22:49:29 +00001009static bool AllowOverloadingOfFunction(LookupResult &Previous,
1010 ASTContext &Context) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001011 if (Context.getLangOpts().CPlusPlus)
Douglas Gregorf9201e02009-02-11 23:02:49 +00001012 return true;
1013
John McCall68263142009-11-18 22:49:29 +00001014 if (Previous.getResultKind() == LookupResult::FoundOverloaded)
Douglas Gregorf9201e02009-02-11 23:02:49 +00001015 return true;
1016
John McCall68263142009-11-18 22:49:29 +00001017 return (Previous.getResultKind() == LookupResult::Found
1018 && Previous.getFoundDecl()->hasAttr<OverloadableAttr>());
Douglas Gregorf9201e02009-02-11 23:02:49 +00001019}
1020
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001021/// Add this decl to the scope shadowed decl chains.
John McCallab88d972009-08-31 22:39:49 +00001022void Sema::PushOnScopeChains(NamedDecl *D, Scope *S, bool AddToContext) {
Douglas Gregor074149e2009-01-05 19:45:36 +00001023 // Move up the scope chain until we find the nearest enclosing
1024 // non-transparent context. The declaration will be introduced into this
1025 // scope.
Ted Kremenekf0d58612013-10-08 17:08:03 +00001026 while (S->getEntity() && S->getEntity()->isTransparentContext())
Douglas Gregor074149e2009-01-05 19:45:36 +00001027 S = S->getParent();
1028
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001029 // Add scoped declarations into their context, so that they can be
1030 // found later. Declarations without a context won't be inserted
1031 // into any context.
John McCallab88d972009-08-31 22:39:49 +00001032 if (AddToContext)
1033 CurContext->addDecl(D);
Douglas Gregor6ed40e32008-12-23 21:05:05 +00001034
Richard Smitha41c97a2013-09-20 01:15:31 +00001035 // Out-of-line definitions shouldn't be pushed into scope in C++, unless they
1036 // are function-local declarations.
1037 if (getLangOpts().CPlusPlus && D->isOutOfLine() &&
Douglas Gregor6d0468b2011-10-09 22:57:49 +00001038 !D->getDeclContext()->getRedeclContext()->Equals(
Richard Smitha41c97a2013-09-20 01:15:31 +00001039 D->getLexicalDeclContext()->getRedeclContext()) &&
1040 !D->getLexicalDeclContext()->isFunctionOrMethod())
Chandler Carruth8761d682010-02-21 07:08:09 +00001041 return;
1042
1043 // Template instantiations should also not be pushed into scope.
1044 if (isa<FunctionDecl>(D) &&
1045 cast<FunctionDecl>(D)->isFunctionTemplateSpecialization())
Douglas Gregord04b1be2009-09-28 18:41:37 +00001046 return;
1047
John McCallf36e02d2009-10-09 21:13:30 +00001048 // If this replaces anything in the current scope,
1049 IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1050 IEnd = IdResolver.end();
1051 for (; I != IEnd; ++I) {
John McCalld226f652010-08-21 09:40:31 +00001052 if (S->isDeclScope(*I) && D->declarationReplaces(*I)) {
1053 S->RemoveDecl(*I);
John McCallf36e02d2009-10-09 21:13:30 +00001054 IdResolver.RemoveDecl(*I);
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001055
John McCallf36e02d2009-10-09 21:13:30 +00001056 // Should only need to replace one decl.
1057 break;
Douglas Gregor516ff432009-04-24 02:57:34 +00001058 }
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001059 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001060
John McCalld226f652010-08-21 09:40:31 +00001061 S->AddDecl(D);
Douglas Gregor7cbc5582011-03-14 21:19:51 +00001062
1063 if (isa<LabelDecl>(D) && !cast<LabelDecl>(D)->isGnuLocal()) {
1064 // Implicitly-generated labels may end up getting generated in an order that
1065 // isn't strictly lexical, which breaks name lookup. Be careful to insert
1066 // the label at the appropriate place in the identifier chain.
1067 for (I = IdResolver.begin(D->getDeclName()); I != IEnd; ++I) {
Douglas Gregor1d2de762011-03-24 14:35:16 +00001068 DeclContext *IDC = (*I)->getLexicalDeclContext()->getRedeclContext();
Douglas Gregor250e7a72011-03-16 16:39:03 +00001069 if (IDC == CurContext) {
1070 if (!S->isDeclScope(*I))
1071 continue;
1072 } else if (IDC->Encloses(CurContext))
Douglas Gregor7cbc5582011-03-14 21:19:51 +00001073 break;
1074 }
1075
Douglas Gregor250e7a72011-03-16 16:39:03 +00001076 IdResolver.InsertDeclAfter(I, D);
Douglas Gregor7cbc5582011-03-14 21:19:51 +00001077 } else {
1078 IdResolver.AddDecl(D);
1079 }
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00001080}
1081
Douglas Gregoreee242f2011-10-27 09:33:13 +00001082void Sema::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) {
1083 if (IdResolver.tryAddTopLevelDecl(D, Name) && TUScope)
1084 TUScope->AddDecl(D);
1085}
1086
Richard Smithdd9459f2013-08-13 18:18:50 +00001087bool Sema::isDeclInScope(NamedDecl *D, DeclContext *Ctx, Scope *S,
Stephen Hines651f13c2014-04-23 16:59:28 -07001088 bool AllowInlineNamespace) {
1089 return IdResolver.isDeclInScope(D, Ctx, S, AllowInlineNamespace);
Douglas Gregor2531c2d2009-09-28 00:47:05 +00001090}
1091
John McCall5f1e0942010-08-24 08:50:51 +00001092Scope *Sema::getScopeForDeclContext(Scope *S, DeclContext *DC) {
1093 DeclContext *TargetDC = DC->getPrimaryContext();
1094 do {
Ted Kremenekf0d58612013-10-08 17:08:03 +00001095 if (DeclContext *ScopeDC = S->getEntity())
John McCall5f1e0942010-08-24 08:50:51 +00001096 if (ScopeDC->getPrimaryContext() == TargetDC)
1097 return S;
1098 } while ((S = S->getParent()));
1099
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001100 return nullptr;
John McCall5f1e0942010-08-24 08:50:51 +00001101}
1102
John McCall68263142009-11-18 22:49:29 +00001103static bool isOutOfScopePreviousDeclaration(NamedDecl *,
1104 DeclContext*,
1105 ASTContext&);
1106
1107/// Filters out lookup results that don't fall within the given scope
1108/// as determined by isDeclInScope.
Stephen Hines651f13c2014-04-23 16:59:28 -07001109void Sema::FilterLookupForScope(LookupResult &R, DeclContext *Ctx, Scope *S,
Richard Smith3e4c6c42011-05-05 21:57:07 +00001110 bool ConsiderLinkage,
Stephen Hines651f13c2014-04-23 16:59:28 -07001111 bool AllowInlineNamespace) {
John McCall68263142009-11-18 22:49:29 +00001112 LookupResult::Filter F = R.makeFilter();
1113 while (F.hasNext()) {
1114 NamedDecl *D = F.next();
1115
Stephen Hines651f13c2014-04-23 16:59:28 -07001116 if (isDeclInScope(D, Ctx, S, AllowInlineNamespace))
John McCall68263142009-11-18 22:49:29 +00001117 continue;
1118
Stephen Hines651f13c2014-04-23 16:59:28 -07001119 if (ConsiderLinkage && isOutOfScopePreviousDeclaration(D, Ctx, Context))
John McCall68263142009-11-18 22:49:29 +00001120 continue;
Stephen Hines651f13c2014-04-23 16:59:28 -07001121
John McCall68263142009-11-18 22:49:29 +00001122 F.erase();
1123 }
1124
1125 F.done();
1126}
1127
1128static bool isUsingDecl(NamedDecl *D) {
1129 return isa<UsingShadowDecl>(D) ||
1130 isa<UnresolvedUsingTypenameDecl>(D) ||
1131 isa<UnresolvedUsingValueDecl>(D);
1132}
1133
1134/// Removes using shadow declarations from the lookup results.
1135static void RemoveUsingDecls(LookupResult &R) {
1136 LookupResult::Filter F = R.makeFilter();
1137 while (F.hasNext())
1138 if (isUsingDecl(F.next()))
1139 F.erase();
1140
1141 F.done();
1142}
1143
Argyrios Kyrtzidis06999f82010-08-15 10:17:33 +00001144/// \brief Check for this common pattern:
1145/// @code
1146/// class S {
1147/// S(const S&); // DO NOT IMPLEMENT
1148/// void operator=(const S&); // DO NOT IMPLEMENT
1149/// };
1150/// @endcode
1151static bool IsDisallowedCopyOrAssign(const CXXMethodDecl *D) {
1152 // FIXME: Should check for private access too but access is set after we get
1153 // the decl here.
Sean Hunt10620eb2011-05-06 20:44:56 +00001154 if (D->doesThisDeclarationHaveABody())
Argyrios Kyrtzidis06999f82010-08-15 10:17:33 +00001155 return false;
1156
1157 if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D))
1158 return CD->isCopyConstructor();
Douglas Gregor27c08ab2010-09-27 22:06:20 +00001159 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D))
1160 return Method->isCopyAssignmentOperator();
1161 return false;
Argyrios Kyrtzidis06999f82010-08-15 10:17:33 +00001162}
1163
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001164// We need this to handle
1165//
1166// typedef struct {
1167// void *foo() { return 0; }
1168// } A;
1169//
1170// When we see foo we don't know if after the typedef we will get 'A' or '*A'
1171// for example. If 'A', foo will have external linkage. If we have '*A',
Stephen Hines651f13c2014-04-23 16:59:28 -07001172// foo will have no linkage. Since we can't know until we get to the end
1173// of the typedef, this function finds out if D might have non-external linkage.
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001174// Callers should verify at the end of the TU if it D has external linkage or
1175// not.
1176bool Sema::mightHaveNonExternalLinkage(const DeclaratorDecl *D) {
1177 const DeclContext *DC = D->getDeclContext();
1178 while (!DC->isTranslationUnit()) {
1179 if (const RecordDecl *RD = dyn_cast<RecordDecl>(DC)){
1180 if (!RD->hasNameForLinkage())
1181 return true;
1182 }
1183 DC = DC->getParent();
1184 }
1185
Rafael Espindola181e3ec2013-05-13 00:12:11 +00001186 return !D->isExternallyVisible();
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001187}
1188
Eli Friedman39bd3712013-09-10 03:05:56 +00001189// FIXME: This needs to be refactored; some other isInMainFile users want
1190// these semantics.
1191static bool isMainFileLoc(const Sema &S, SourceLocation Loc) {
1192 if (S.TUKind != TU_Complete)
1193 return false;
1194 return S.SourceMgr.isInMainFile(Loc);
1195}
1196
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001197bool Sema::ShouldWarnIfUnusedFileScopedDecl(const DeclaratorDecl *D) const {
1198 assert(D);
Argyrios Kyrtzidisf6d1d432010-08-13 18:42:29 +00001199
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001200 if (D->isInvalidDecl() || D->isUsed() || D->hasAttr<UnusedAttr>())
1201 return false;
1202
Stephen Hines651f13c2014-04-23 16:59:28 -07001203 // Ignore all entities declared within templates, and out-of-line definitions
1204 // of members of class templates.
Chandler Carruthef9d09c2011-01-03 19:27:19 +00001205 if (D->getDeclContext()->isDependentContext() ||
1206 D->getLexicalDeclContext()->isDependentContext())
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001207 return false;
1208
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001209 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Argyrios Kyrtzidis06999f82010-08-15 10:17:33 +00001210 if (FD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1211 return false;
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001212
Argyrios Kyrtzidis06999f82010-08-15 10:17:33 +00001213 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
1214 if (MD->isVirtual() || IsDisallowedCopyOrAssign(MD))
1215 return false;
1216 } else {
Eli Friedman39bd3712013-09-10 03:05:56 +00001217 // 'static inline' functions are defined in headers; don't warn.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001218 if (FD->isInlined() && !isMainFileLoc(*this, FD->getLocation()))
Argyrios Kyrtzidis06999f82010-08-15 10:17:33 +00001219 return false;
1220 }
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001221
Sean Hunt10620eb2011-05-06 20:44:56 +00001222 if (FD->doesThisDeclarationHaveABody() &&
John McCall82b96592010-10-27 01:41:35 +00001223 Context.DeclMustBeEmitted(FD))
1224 return false;
John McCall82b96592010-10-27 01:41:35 +00001225 } else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Eli Friedman39bd3712013-09-10 03:05:56 +00001226 // Constants and utility variables are defined in headers with internal
1227 // linkage; don't warn. (Unlike functions, there isn't a convenient marker
1228 // like "inline".)
1229 if (!isMainFileLoc(*this, VD->getLocation()))
1230 return false;
1231
Eli Friedman39bd3712013-09-10 03:05:56 +00001232 if (Context.DeclMustBeEmitted(VD))
John McCall82b96592010-10-27 01:41:35 +00001233 return false;
1234
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001235 if (VD->isStaticDataMember() &&
1236 VD->getTemplateSpecializationKind() == TSK_ImplicitInstantiation)
1237 return false;
John McCall82b96592010-10-27 01:41:35 +00001238 } else {
1239 return false;
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001240 }
1241
John McCall82b96592010-10-27 01:41:35 +00001242 // Only warn for unused decls internal to the translation unit.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001243 // FIXME: This seems like a bogus check; it suppresses -Wunused-function
1244 // for inline functions defined in the main source file, for instance.
Rafael Espindola2d1b0962013-03-14 03:07:35 +00001245 return mightHaveNonExternalLinkage(D);
John McCall82b96592010-10-27 01:41:35 +00001246}
1247
1248void Sema::MarkUnusedFileScopedDecl(const DeclaratorDecl *D) {
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001249 if (!D)
1250 return;
1251
1252 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Rafael Espindolabc650912013-10-17 15:37:26 +00001253 const FunctionDecl *First = FD->getFirstDecl();
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001254 if (FD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1255 return; // First should already be in the vector.
1256 }
1257
1258 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
Rafael Espindolabc650912013-10-17 15:37:26 +00001259 const VarDecl *First = VD->getFirstDecl();
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001260 if (VD != First && ShouldWarnIfUnusedFileScopedDecl(First))
1261 return; // First should already be in the vector.
1262 }
1263
David Blaikie7f7c42b2012-05-26 05:35:39 +00001264 if (ShouldWarnIfUnusedFileScopedDecl(D))
1265 UnusedFileScopedDecls.push_back(D);
1266}
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +00001267
Anders Carlsson99a000e2009-11-07 07:18:14 +00001268static bool ShouldDiagnoseUnusedDecl(const NamedDecl *D) {
John McCall86ff3082010-02-04 22:26:26 +00001269 if (D->isInvalidDecl())
1270 return false;
1271
Stephen Hines651f13c2014-04-23 16:59:28 -07001272 if (D->isReferenced() || D->isUsed() || D->hasAttr<UnusedAttr>() ||
1273 D->hasAttr<ObjCPreciseLifetimeAttr>())
Anders Carlssonf7613d52009-11-07 07:26:56 +00001274 return false;
John McCall86ff3082010-02-04 22:26:26 +00001275
Chris Lattner57ad3782011-02-17 20:34:02 +00001276 if (isa<LabelDecl>(D))
1277 return true;
1278
John McCall86ff3082010-02-04 22:26:26 +00001279 // White-list anything that isn't a local variable.
1280 if (!isa<VarDecl>(D) || isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D) ||
1281 !D->getDeclContext()->isFunctionOrMethod())
1282 return false;
1283
1284 // Types of valid local variables should be complete, so this should succeed.
Rafael Espindola1a5d3552012-01-06 04:54:01 +00001285 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
John McCallaec58602010-03-31 02:47:45 +00001286
1287 // White-list anything with an __attribute__((unused)) type.
1288 QualType Ty = VD->getType();
1289
1290 // Only look at the outermost level of typedef.
Douglas Gregor2c8e81e2012-09-14 05:10:40 +00001291 if (const TypedefType *TT = Ty->getAs<TypedefType>()) {
John McCallaec58602010-03-31 02:47:45 +00001292 if (TT->getDecl()->hasAttr<UnusedAttr>())
1293 return false;
1294 }
1295
Douglas Gregor5764f612010-05-08 23:05:03 +00001296 // If we failed to complete the type for some reason, or if the type is
1297 // dependent, don't diagnose the variable.
1298 if (Ty->isIncompleteType() || Ty->isDependentType())
Douglas Gregora6a292b2010-04-27 16:20:13 +00001299 return false;
1300
John McCallaec58602010-03-31 02:47:45 +00001301 if (const TagType *TT = Ty->getAs<TagType>()) {
1302 const TagDecl *Tag = TT->getDecl();
1303 if (Tag->hasAttr<UnusedAttr>())
1304 return false;
1305
1306 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Tag)) {
Lubos Lunak1d3ce652013-07-20 15:05:36 +00001307 if (!RD->hasTrivialDestructor() && !RD->hasAttr<WarnUnusedAttr>())
Anders Carlssonf7613d52009-11-07 07:26:56 +00001308 return false;
Rafael Espindola1a5d3552012-01-06 04:54:01 +00001309
1310 if (const Expr *Init = VD->getInit()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001311 if (const ExprWithCleanups *Cleanups =
1312 dyn_cast<ExprWithCleanups>(Init))
David Blaikie39e17762012-10-24 21:29:06 +00001313 Init = Cleanups->getSubExpr();
Rafael Espindola1a5d3552012-01-06 04:54:01 +00001314 const CXXConstructExpr *Construct =
1315 dyn_cast<CXXConstructExpr>(Init);
1316 if (Construct && !Construct->isElidable()) {
1317 CXXConstructorDecl *CD = Construct->getConstructor();
Lubos Lunak1d3ce652013-07-20 15:05:36 +00001318 if (!CD->isTrivial() && !RD->hasAttr<WarnUnusedAttr>())
Rafael Espindola1a5d3552012-01-06 04:54:01 +00001319 return false;
1320 }
1321 }
Anders Carlssonf7613d52009-11-07 07:26:56 +00001322 }
1323 }
John McCallaec58602010-03-31 02:47:45 +00001324
1325 // TODO: __attribute__((unused)) templates?
Anders Carlssonf7613d52009-11-07 07:26:56 +00001326 }
1327
John McCall86ff3082010-02-04 22:26:26 +00001328 return true;
Anders Carlsson99a000e2009-11-07 07:18:14 +00001329}
1330
Anna Zaksd5612a22011-07-28 20:52:06 +00001331static void GenerateFixForUnusedDecl(const NamedDecl *D, ASTContext &Ctx,
1332 FixItHint &Hint) {
1333 if (isa<LabelDecl>(D)) {
1334 SourceLocation AfterColon = Lexer::findLocationAfterToken(D->getLocEnd(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001335 tok::colon, Ctx.getSourceManager(), Ctx.getLangOpts(), true);
Anna Zaksd5612a22011-07-28 20:52:06 +00001336 if (AfterColon.isInvalid())
1337 return;
1338 Hint = FixItHint::CreateRemoval(CharSourceRange::
1339 getCharRange(D->getLocStart(), AfterColon));
1340 }
1341 return;
1342}
1343
Chris Lattner337e5502011-02-18 01:27:55 +00001344/// DiagnoseUnusedDecl - Emit warnings about declarations that are not used
1345/// unless they are marked attr(unused).
Douglas Gregor5764f612010-05-08 23:05:03 +00001346void Sema::DiagnoseUnusedDecl(const NamedDecl *D) {
1347 if (!ShouldDiagnoseUnusedDecl(D))
1348 return;
1349
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001350 FixItHint Hint;
Anna Zaksd5612a22011-07-28 20:52:06 +00001351 GenerateFixForUnusedDecl(D, Context, Hint);
1352
Chris Lattner57ad3782011-02-17 20:34:02 +00001353 unsigned DiagID;
Douglas Gregor5764f612010-05-08 23:05:03 +00001354 if (isa<VarDecl>(D) && cast<VarDecl>(D)->isExceptionVariable())
Chris Lattner57ad3782011-02-17 20:34:02 +00001355 DiagID = diag::warn_unused_exception_param;
1356 else if (isa<LabelDecl>(D))
1357 DiagID = diag::warn_unused_label;
Douglas Gregor5764f612010-05-08 23:05:03 +00001358 else
Chris Lattner57ad3782011-02-17 20:34:02 +00001359 DiagID = diag::warn_unused_variable;
1360
Anna Zaksd5612a22011-07-28 20:52:06 +00001361 Diag(D->getLocation(), DiagID) << D->getDeclName() << Hint;
Douglas Gregor5764f612010-05-08 23:05:03 +00001362}
1363
Chris Lattner337e5502011-02-18 01:27:55 +00001364static void CheckPoppedLabel(LabelDecl *L, Sema &S) {
1365 // Verify that we have no forward references left. If so, there was a goto
1366 // or address of a label taken, but no definition of it. Label fwd
1367 // definitions are indicated with a null substmt.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001368 if (L->getStmt() == nullptr)
Chris Lattner337e5502011-02-18 01:27:55 +00001369 S.Diag(L->getLocation(), diag::err_undeclared_label_use) <<L->getDeclName();
1370}
1371
Steve Naroffb216c882007-10-09 22:01:59 +00001372void Sema::ActOnPopScope(SourceLocation Loc, Scope *S) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001373 S->mergeNRVOIntoParent();
1374
Chris Lattner31e05722007-08-26 06:24:45 +00001375 if (S->decl_empty()) return;
Douglas Gregor72c3f312008-12-05 18:15:24 +00001376 assert((S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) &&
Mike Stump1eb44332009-09-09 15:08:12 +00001377 "Scope shouldn't contain decls!");
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001378
Stephen Hines651f13c2014-04-23 16:59:28 -07001379 for (auto *TmpD : S->decls()) {
Steve Naroffc752d042007-09-13 18:10:37 +00001380 assert(TmpD && "This decl didn't get pushed??");
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +00001381
Douglas Gregor44b43212008-12-11 16:49:14 +00001382 assert(isa<NamedDecl>(TmpD) && "Decl isn't NamedDecl?");
1383 NamedDecl *D = cast<NamedDecl>(TmpD);
Argyrios Kyrtzidis76435362008-06-10 01:32:09 +00001384
Douglas Gregor44b43212008-12-11 16:49:14 +00001385 if (!D->getDeclName()) continue;
Chris Lattner7f925cc2008-04-11 07:00:53 +00001386
Douglas Gregorb5352cf2009-10-08 21:35:42 +00001387 // Diagnose unused variables in this scope.
Matt Beaumont-Gay59d8ccb2013-03-28 21:46:45 +00001388 if (!S->hasUnrecoverableErrorOccurred())
Douglas Gregor5764f612010-05-08 23:05:03 +00001389 DiagnoseUnusedDecl(D);
1390
Chris Lattner337e5502011-02-18 01:27:55 +00001391 // If this was a forward reference to a label, verify it was defined.
1392 if (LabelDecl *LD = dyn_cast<LabelDecl>(D))
1393 CheckPoppedLabel(LD, *this);
1394
Douglas Gregor44b43212008-12-11 16:49:14 +00001395 // Remove this name from our lexical scope.
1396 IdResolver.RemoveDecl(D);
Reid Spencer5f016e22007-07-11 17:01:13 +00001397 }
James Molloy16f1f712012-02-29 10:24:19 +00001398}
1399
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001400/// \brief Look for an Objective-C class in the translation unit.
1401///
1402/// \param Id The name of the Objective-C class we're looking for. If
1403/// typo-correction fixes this name, the Id will be updated
1404/// to the fixed name.
1405///
1406/// \param IdLoc The location of the name in the translation unit.
1407///
James Dennett16ae9de2012-06-22 10:16:05 +00001408/// \param DoTypoCorrection If true, this routine will attempt typo correction
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001409/// if there is no class with the given name.
1410///
1411/// \returns The declaration of the named Objective-C class, or NULL if the
1412/// class could not be found.
1413ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id,
1414 SourceLocation IdLoc,
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001415 bool DoTypoCorrection) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001416 // The third "scope" argument is 0 since we aren't enabling lazy built-in
1417 // creation from this context.
1418 NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName);
1419
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001420 if (!IDecl && DoTypoCorrection) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001421 // Perform typo correction at the given location, but only if we
1422 // find an Objective-C class name.
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +00001423 DeclFilterCCC<ObjCInterfaceDecl> Validator;
1424 if (TypoCorrection C = CorrectTypo(DeclarationNameInfo(Id, IdLoc),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001425 LookupOrdinaryName, TUScope, nullptr,
1426 Validator, CTK_ErrorRecovery)) {
Richard Smith2d670972013-08-17 00:46:16 +00001427 diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id);
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +00001428 IDecl = C.getCorrectionDeclAs<ObjCInterfaceDecl>();
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001429 Id = IDecl->getIdentifier();
1430 }
1431 }
Fariborz Jahanian3306f962012-01-12 00:18:35 +00001432 ObjCInterfaceDecl *Def = dyn_cast_or_null<ObjCInterfaceDecl>(IDecl);
1433 // This routine must always return a class definition, if any.
1434 if (Def && Def->getDefinition())
1435 Def = Def->getDefinition();
1436 return Def;
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001437}
1438
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00001439/// getNonFieldDeclScope - Retrieves the innermost scope, starting
1440/// from S, where a non-field would be declared. This routine copes
1441/// with the difference between C and C++ scoping rules in structs and
1442/// unions. For example, the following code is well-formed in C but
1443/// ill-formed in C++:
1444/// @code
1445/// struct S6 {
1446/// enum { BAR } e;
1447/// };
Mike Stump1eb44332009-09-09 15:08:12 +00001448///
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00001449/// void test_S6() {
1450/// struct S6 a;
1451/// a.e = BAR;
1452/// }
1453/// @endcode
1454/// For the declaration of BAR, this routine will return a different
1455/// scope. The scope S will be the scope of the unnamed enumeration
1456/// within S6. In C++, this routine will return the scope associated
1457/// with S6, because the enumeration's scope is a transparent
1458/// context but structures can contain non-field names. In C, this
1459/// routine will return the translation unit scope, since the
1460/// enumeration's scope is a transparent context and structures cannot
1461/// contain non-field names.
1462Scope *Sema::getNonFieldDeclScope(Scope *S) {
1463 while (((S->getFlags() & Scope::DeclScope) == 0) ||
Ted Kremenekf0d58612013-10-08 17:08:03 +00001464 (S->getEntity() && S->getEntity()->isTransparentContext()) ||
David Blaikie4e4d0842012-03-11 07:00:24 +00001465 (S->isClassScope() && !getLangOpts().CPlusPlus))
Douglas Gregor1a0d31a2009-01-12 18:45:55 +00001466 S = S->getParent();
1467 return S;
1468}
1469
Fariborz Jahanianf7992132013-01-04 18:45:40 +00001470/// \brief Looks up the declaration of "struct objc_super" and
1471/// saves it for later use in building builtin declaration of
1472/// objc_msgSendSuper and objc_msgSendSuper_stret. If no such
1473/// pre-existing declaration exists no action takes place.
1474static void LookupPredefedObjCSuperType(Sema &ThisSema, Scope *S,
1475 IdentifierInfo *II) {
1476 if (!II->isStr("objc_msgSendSuper"))
1477 return;
1478 ASTContext &Context = ThisSema.Context;
1479
1480 LookupResult Result(ThisSema, &Context.Idents.get("objc_super"),
1481 SourceLocation(), Sema::LookupTagName);
1482 ThisSema.LookupName(Result, S);
1483 if (Result.getResultKind() == LookupResult::Found)
1484 if (const TagDecl *TD = Result.getAsSingle<TagDecl>())
1485 Context.setObjCSuperType(Context.getTagDeclType(TD));
1486}
1487
Douglas Gregor3e41d602009-02-13 23:20:09 +00001488/// LazilyCreateBuiltin - The specified Builtin-ID was first used at
1489/// file scope. lazily create a decl for it. ForRedeclaration is true
1490/// if we're creating this built-in in anticipation of redeclaring the
1491/// built-in.
Douglas Gregor4afa39d2009-01-20 01:17:11 +00001492NamedDecl *Sema::LazilyCreateBuiltin(IdentifierInfo *II, unsigned bid,
Douglas Gregor3e41d602009-02-13 23:20:09 +00001493 Scope *S, bool ForRedeclaration,
1494 SourceLocation Loc) {
Fariborz Jahanianf7992132013-01-04 18:45:40 +00001495 LookupPredefedObjCSuperType(*this, S, II);
1496
Reid Spencer5f016e22007-07-11 17:01:13 +00001497 Builtin::ID BID = (Builtin::ID)bid;
1498
Chris Lattner86df27b2009-06-14 00:45:47 +00001499 ASTContext::GetBuiltinTypeError Error;
Mike Stump1eb44332009-09-09 15:08:12 +00001500 QualType R = Context.GetBuiltinType(BID, Error);
Douglas Gregor370ab3f2009-02-14 01:52:53 +00001501 switch (Error) {
Chris Lattner86df27b2009-06-14 00:45:47 +00001502 case ASTContext::GE_None:
Douglas Gregor370ab3f2009-02-14 01:52:53 +00001503 // Okay
1504 break;
1505
Mike Stumpf711c412009-07-28 23:57:15 +00001506 case ASTContext::GE_Missing_stdio:
Douglas Gregor370ab3f2009-02-14 01:52:53 +00001507 if (ForRedeclaration)
Douglas Gregor6b9109e2011-01-03 09:37:44 +00001508 Diag(Loc, diag::warn_implicit_decl_requires_stdio)
Douglas Gregor370ab3f2009-02-14 01:52:53 +00001509 << Context.BuiltinInfo.GetName(BID);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001510 return nullptr;
Mike Stump782fa302009-07-28 02:25:19 +00001511
Mike Stumpf711c412009-07-28 23:57:15 +00001512 case ASTContext::GE_Missing_setjmp:
Mike Stump782fa302009-07-28 02:25:19 +00001513 if (ForRedeclaration)
Douglas Gregor6b9109e2011-01-03 09:37:44 +00001514 Diag(Loc, diag::warn_implicit_decl_requires_setjmp)
Mike Stump782fa302009-07-28 02:25:19 +00001515 << Context.BuiltinInfo.GetName(BID);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001516 return nullptr;
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00001517
1518 case ASTContext::GE_Missing_ucontext:
1519 if (ForRedeclaration)
1520 Diag(Loc, diag::warn_implicit_decl_requires_ucontext)
1521 << Context.BuiltinInfo.GetName(BID);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001522 return nullptr;
Douglas Gregor370ab3f2009-02-14 01:52:53 +00001523 }
Douglas Gregor3e41d602009-02-13 23:20:09 +00001524
1525 if (!ForRedeclaration && Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
1526 Diag(Loc, diag::ext_implicit_lib_function_decl)
1527 << Context.BuiltinInfo.GetName(BID)
1528 << R;
Douglas Gregorb1152d82009-02-16 21:58:21 +00001529 if (Context.BuiltinInfo.getHeaderName(BID) &&
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001530 Diags.getDiagnosticLevel(diag::ext_implicit_lib_function_decl, Loc)
David Blaikied6471f72011-09-25 23:23:43 +00001531 != DiagnosticsEngine::Ignored)
Douglas Gregor3e41d602009-02-13 23:20:09 +00001532 Diag(Loc, diag::note_please_include_header)
1533 << Context.BuiltinInfo.getHeaderName(BID)
1534 << Context.BuiltinInfo.GetName(BID);
1535 }
1536
Warren Hunt2d023ec2013-11-01 23:46:51 +00001537 DeclContext *Parent = Context.getTranslationUnitDecl();
1538 if (getLangOpts().CPlusPlus) {
1539 LinkageSpecDecl *CLinkageDecl =
1540 LinkageSpecDecl::Create(Context, Parent, Loc, Loc,
1541 LinkageSpecDecl::lang_c, false);
Stephen Hines651f13c2014-04-23 16:59:28 -07001542 CLinkageDecl->setImplicit();
Warren Hunt2d023ec2013-11-01 23:46:51 +00001543 Parent->addDecl(CLinkageDecl);
1544 Parent = CLinkageDecl;
1545 }
1546
Argyrios Kyrtzidisff898cd2008-04-17 14:47:13 +00001547 FunctionDecl *New = FunctionDecl::Create(Context,
Warren Hunt2d023ec2013-11-01 23:46:51 +00001548 Parent,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001549 Loc, Loc, II, R, /*TInfo=*/nullptr,
John McCalld931b082010-08-26 03:08:43 +00001550 SC_Extern,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00001551 false,
Douglas Gregor2224f842009-02-25 16:33:18 +00001552 /*hasPrototype=*/true);
Douglas Gregor3e41d602009-02-13 23:20:09 +00001553 New->setImplicit();
1554
Chris Lattner95e2c712008-05-05 22:18:14 +00001555 // Create Decl objects for each parameter, adding them to the
1556 // FunctionDecl.
John McCallf4c73712011-01-19 06:33:43 +00001557 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(R)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001558 SmallVector<ParmVarDecl*, 16> Params;
Stephen Hines651f13c2014-04-23 16:59:28 -07001559 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
John McCallfb44de92011-05-01 22:35:37 +00001560 ParmVarDecl *parm =
Stephen Hines651f13c2014-04-23 16:59:28 -07001561 ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001562 nullptr, FT->getParamType(i), /*TInfo=*/nullptr,
1563 SC_None, nullptr);
John McCallfb44de92011-05-01 22:35:37 +00001564 parm->setScopeInfo(0, i);
1565 Params.push_back(parm);
1566 }
David Blaikie4278c652011-09-21 18:16:56 +00001567 New->setParams(Params);
Chris Lattner95e2c712008-05-05 22:18:14 +00001568 }
Mike Stump1eb44332009-09-09 15:08:12 +00001569
1570 AddKnownFunctionAttributes(New);
Warren Hunt2d023ec2013-11-01 23:46:51 +00001571 RegisterLocallyScopedExternCDecl(New, S);
Mike Stump1eb44332009-09-09 15:08:12 +00001572
Chris Lattner7f925cc2008-04-11 07:00:53 +00001573 // TUScope is the translation-unit scope to insert this function into.
Douglas Gregora8cc8ce2009-01-09 18:51:29 +00001574 // FIXME: This is hideous. We need to teach PushOnScopeChains to
1575 // relate Scopes to DeclContexts, and probably eliminate CurContext
1576 // entirely, but we're not there yet.
1577 DeclContext *SavedContext = CurContext;
Warren Hunt2d023ec2013-11-01 23:46:51 +00001578 CurContext = Parent;
Argyrios Kyrtzidis00bc6452008-05-09 23:39:43 +00001579 PushOnScopeChains(New, TUScope);
Douglas Gregora8cc8ce2009-01-09 18:51:29 +00001580 CurContext = SavedContext;
Reid Spencer5f016e22007-07-11 17:01:13 +00001581 return New;
1582}
1583
Douglas Gregor7dc80e12013-01-09 00:47:56 +00001584/// \brief Filter out any previous declarations that the given declaration
1585/// should not consider because they are not permitted to conflict, e.g.,
1586/// because they come from hidden sub-modules and do not refer to the same
1587/// entity.
1588static void filterNonConflictingPreviousDecls(ASTContext &context,
1589 NamedDecl *decl,
1590 LookupResult &previous){
1591 // This is only interesting when modules are enabled.
1592 if (!context.getLangOpts().Modules)
1593 return;
1594
1595 // Empty sets are uninteresting.
1596 if (previous.empty())
1597 return;
1598
Douglas Gregor7dc80e12013-01-09 00:47:56 +00001599 LookupResult::Filter filter = previous.makeFilter();
1600 while (filter.hasNext()) {
1601 NamedDecl *old = filter.next();
1602
1603 // Non-hidden declarations are never ignored.
1604 if (!old->isHidden())
1605 continue;
1606
Rafael Espindola181e3ec2013-05-13 00:12:11 +00001607 if (!old->isExternallyVisible())
Douglas Gregor7dc80e12013-01-09 00:47:56 +00001608 filter.erase();
1609 }
1610
1611 filter.done();
1612}
1613
Rafael Espindola5df37bd2011-12-26 22:42:47 +00001614bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) {
1615 QualType OldType;
1616 if (TypedefNameDecl *OldTypedef = dyn_cast<TypedefNameDecl>(Old))
1617 OldType = OldTypedef->getUnderlyingType();
1618 else
1619 OldType = Context.getTypeDeclType(Old);
1620 QualType NewType = New->getUnderlyingType();
1621
Douglas Gregorec3bd722012-01-11 22:33:48 +00001622 if (NewType->isVariablyModifiedType()) {
1623 // Must not redefine a typedef with a variably-modified type.
1624 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1625 Diag(New->getLocation(), diag::err_redefinition_variably_modified_typedef)
1626 << Kind << NewType;
1627 if (Old->getLocation().isValid())
1628 Diag(Old->getLocation(), diag::note_previous_definition);
1629 New->setInvalidDecl();
1630 return true;
1631 }
1632
Rafael Espindola5df37bd2011-12-26 22:42:47 +00001633 if (OldType != NewType &&
1634 !OldType->isDependentType() &&
1635 !NewType->isDependentType() &&
Douglas Gregorec3bd722012-01-11 22:33:48 +00001636 !Context.hasSameType(OldType, NewType)) {
Rafael Espindola5df37bd2011-12-26 22:42:47 +00001637 int Kind = isa<TypeAliasDecl>(Old) ? 1 : 0;
1638 Diag(New->getLocation(), diag::err_redefinition_different_typedef)
1639 << Kind << NewType << OldType;
1640 if (Old->getLocation().isValid())
1641 Diag(Old->getLocation(), diag::note_previous_definition);
1642 New->setInvalidDecl();
1643 return true;
1644 }
1645 return false;
1646}
1647
Richard Smith162e1c12011-04-15 14:24:37 +00001648/// MergeTypedefNameDecl - We just parsed a typedef 'New' which has the
Douglas Gregorcda9c672009-02-16 17:45:42 +00001649/// same name and scope as a previous declaration 'Old'. Figure out
1650/// how to resolve this situation, merging decls or emitting
Chris Lattnereaaebc72009-04-25 08:06:05 +00001651/// diagnostics as appropriate. If there was an error, set New to be invalid.
Reid Spencer5f016e22007-07-11 17:01:13 +00001652///
Richard Smith162e1c12011-04-15 14:24:37 +00001653void Sema::MergeTypedefNameDecl(TypedefNameDecl *New, LookupResult &OldDecls) {
John McCall68263142009-11-18 22:49:29 +00001654 // If the new decl is known invalid already, don't bother doing any
1655 // merging checks.
1656 if (New->isInvalidDecl()) return;
Mike Stump1eb44332009-09-09 15:08:12 +00001657
Steve Naroff2b255c42008-09-09 14:32:20 +00001658 // Allow multiple definitions for ObjC built-in typedefs.
1659 // FIXME: Verify the underlying types are equivalent!
David Blaikie4e4d0842012-03-11 07:00:24 +00001660 if (getLangOpts().ObjC1) {
Chris Lattner2bac0f62008-11-20 05:41:43 +00001661 const IdentifierInfo *TypeID = New->getIdentifier();
1662 switch (TypeID->getLength()) {
1663 default: break;
Mike Stump1eb44332009-09-09 15:08:12 +00001664 case 2:
Fariborz Jahanian0cd00be2012-05-14 22:48:56 +00001665 {
1666 if (!TypeID->isStr("id"))
1667 break;
1668 QualType T = New->getUnderlyingType();
1669 if (!T->isPointerType())
1670 break;
1671 if (!T->isVoidPointerType()) {
1672 QualType PT = T->getAs<PointerType>()->getPointeeType();
1673 if (!PT->isStructureType())
1674 break;
1675 }
1676 Context.setObjCIdRedefinitionType(T);
1677 // Install the built-in type for 'id', ignoring the current definition.
1678 New->setTypeForDecl(Context.getObjCIdType().getTypePtr());
1679 return;
1680 }
Chris Lattner2bac0f62008-11-20 05:41:43 +00001681 case 5:
1682 if (!TypeID->isStr("Class"))
1683 break;
Douglas Gregor01a4cf12011-08-11 20:58:55 +00001684 Context.setObjCClassRedefinitionType(New->getUnderlyingType());
Steve Naroff14108da2009-07-10 23:34:53 +00001685 // Install the built-in type for 'Class', ignoring the current definition.
1686 New->setTypeForDecl(Context.getObjCClassType().getTypePtr());
Chris Lattnereaaebc72009-04-25 08:06:05 +00001687 return;
Chris Lattner2bac0f62008-11-20 05:41:43 +00001688 case 3:
1689 if (!TypeID->isStr("SEL"))
1690 break;
Douglas Gregor01a4cf12011-08-11 20:58:55 +00001691 Context.setObjCSelRedefinitionType(New->getUnderlyingType());
Fariborz Jahanian13dcd002009-11-21 19:53:08 +00001692 // Install the built-in type for 'SEL', ignoring the current definition.
1693 New->setTypeForDecl(Context.getObjCSelType().getTypePtr());
Chris Lattnereaaebc72009-04-25 08:06:05 +00001694 return;
Steve Naroff2b255c42008-09-09 14:32:20 +00001695 }
1696 // Fall through - the typedef name was not a builtin type.
1697 }
John McCall68263142009-11-18 22:49:29 +00001698
Douglas Gregor66973122009-01-28 17:15:10 +00001699 // Verify the old decl was also a type.
John McCall5126fd02009-12-30 00:31:22 +00001700 TypeDecl *Old = OldDecls.getAsSingle<TypeDecl>();
1701 if (!Old) {
Mike Stump1eb44332009-09-09 15:08:12 +00001702 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattner08631c52008-11-23 21:45:46 +00001703 << New->getDeclName();
John McCall68263142009-11-18 22:49:29 +00001704
1705 NamedDecl *OldD = OldDecls.getRepresentativeDecl();
Chris Lattnereaaebc72009-04-25 08:06:05 +00001706 if (OldD->getLocation().isValid())
Fariborz Jahanianc55a2402009-01-16 19:58:32 +00001707 Diag(OldD->getLocation(), diag::note_previous_definition);
John McCall68263142009-11-18 22:49:29 +00001708
Chris Lattnereaaebc72009-04-25 08:06:05 +00001709 return New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00001710 }
Douglas Gregor66973122009-01-28 17:15:10 +00001711
John McCall68263142009-11-18 22:49:29 +00001712 // If the old declaration is invalid, just give up here.
1713 if (Old->isInvalidDecl())
1714 return New->setInvalidDecl();
1715
Chris Lattner99cb9972008-07-25 18:44:27 +00001716 // If the typedef types are not identical, reject them in all languages and
1717 // with any extensions enabled.
Rafael Espindola5df37bd2011-12-26 22:42:47 +00001718 if (isIncompatibleTypedef(Old, New))
1719 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001720
Justin Bogner2dd68de2013-10-08 00:19:09 +00001721 // The types match. Link up the redeclaration chain and merge attributes if
1722 // the old declaration was a typedef.
1723 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Old)) {
Rafael Espindolabc650912013-10-17 15:37:26 +00001724 New->setPreviousDecl(Typedef);
Justin Bogner2dd68de2013-10-08 00:19:09 +00001725 mergeDeclAttributes(New, Old);
1726 }
Eli Friedman9ec40992013-07-16 02:07:49 +00001727
David Blaikie4e4d0842012-03-11 07:00:24 +00001728 if (getLangOpts().MicrosoftExt)
Chris Lattnereaaebc72009-04-25 08:06:05 +00001729 return;
Eli Friedman54ecfce2008-06-11 06:20:39 +00001730
David Blaikie4e4d0842012-03-11 07:00:24 +00001731 if (getLangOpts().CPlusPlus) {
Douglas Gregor93dda722010-01-11 21:54:40 +00001732 // C++ [dcl.typedef]p2:
1733 // In a given non-class scope, a typedef specifier can be used to
1734 // redefine the name of any type declared in that scope to refer
1735 // to the type to which it already refers.
Chris Lattner32b06752009-04-17 22:04:20 +00001736 if (!isa<CXXRecordDecl>(CurContext))
Chris Lattnereaaebc72009-04-25 08:06:05 +00001737 return;
Douglas Gregor93dda722010-01-11 21:54:40 +00001738
1739 // C++0x [dcl.typedef]p4:
1740 // In a given class scope, a typedef specifier can be used to redefine
1741 // any class-name declared in that scope that is not also a typedef-name
1742 // to refer to the type to which it already refers.
1743 //
1744 // This wording came in via DR424, which was a correction to the
1745 // wording in DR56, which accidentally banned code like:
1746 //
1747 // struct S {
1748 // typedef struct A { } A;
1749 // };
1750 //
1751 // in the C++03 standard. We implement the C++0x semantics, which
1752 // allow the above but disallow
1753 //
1754 // struct S {
1755 // typedef int I;
1756 // typedef int I;
1757 // };
1758 //
1759 // since that was the intent of DR56.
Richard Smith162e1c12011-04-15 14:24:37 +00001760 if (!isa<TypedefNameDecl>(Old))
Douglas Gregor93dda722010-01-11 21:54:40 +00001761 return;
1762
Chris Lattner32b06752009-04-17 22:04:20 +00001763 Diag(New->getLocation(), diag::err_redefinition)
1764 << New->getDeclName();
1765 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattnereaaebc72009-04-25 08:06:05 +00001766 return New->setInvalidDecl();
Daniel Dunbar2fe09972008-09-12 18:10:20 +00001767 }
Eli Friedman54ecfce2008-06-11 06:20:39 +00001768
Douglas Gregorc0004df2012-01-11 04:25:01 +00001769 // Modules always permit redefinition of typedefs, as does C11.
David Blaikie4e4d0842012-03-11 07:00:24 +00001770 if (getLangOpts().Modules || getLangOpts().C11)
Douglas Gregorc02d62f2012-01-09 15:36:04 +00001771 return;
1772
Chris Lattner32b06752009-04-17 22:04:20 +00001773 // If we have a redefinition of a typedef in C, emit a warning. This warning
1774 // is normally mapped to an error, but can be controlled with
Eli Friedman340a4e52009-06-04 23:03:07 +00001775 // -Wtypedef-redefinition. If either the original or the redefinition is
1776 // in a system header, don't emit this for compatibility with GCC.
Chris Lattner6d97e5e2010-03-01 20:59:53 +00001777 if (getDiagnostics().getSuppressSystemWarnings() &&
Eli Friedman340a4e52009-06-04 23:03:07 +00001778 (Context.getSourceManager().isInSystemHeader(Old->getLocation()) ||
1779 Context.getSourceManager().isInSystemHeader(New->getLocation())))
Chris Lattnerd0359af2009-04-27 01:46:12 +00001780 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001781
Chris Lattner32b06752009-04-17 22:04:20 +00001782 Diag(New->getLocation(), diag::warn_redefinition_of_typedef)
1783 << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00001784 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattnereaaebc72009-04-25 08:06:05 +00001785 return;
Reid Spencer5f016e22007-07-11 17:01:13 +00001786}
1787
Chris Lattner6b6b5372008-06-26 18:38:35 +00001788/// DeclhasAttr - returns true if decl Declaration already has the target
1789/// attribute.
Stephen Hines651f13c2014-04-23 16:59:28 -07001790static bool DeclHasAttr(const Decl *D, const Attr *A) {
Sean Huntcf807c42010-08-18 23:23:40 +00001791 const OwnershipAttr *OA = dyn_cast<OwnershipAttr>(A);
Julien Lerouge77f68bb2011-09-09 22:41:49 +00001792 const AnnotateAttr *Ann = dyn_cast<AnnotateAttr>(A);
Stephen Hines651f13c2014-04-23 16:59:28 -07001793 for (const auto *i : D->attrs())
1794 if (i->getKind() == A->getKind()) {
Julien Lerouge77f68bb2011-09-09 22:41:49 +00001795 if (Ann) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001796 if (Ann->getAnnotation() == cast<AnnotateAttr>(i)->getAnnotation())
Julien Lerouge77f68bb2011-09-09 22:41:49 +00001797 return true;
1798 continue;
1799 }
Sean Huntcf807c42010-08-18 23:23:40 +00001800 // FIXME: Don't hardcode this check
Stephen Hines651f13c2014-04-23 16:59:28 -07001801 if (OA && isa<OwnershipAttr>(i))
1802 return OA->getOwnKind() == cast<OwnershipAttr>(i)->getOwnKind();
Chris Lattnerddee4232008-03-03 03:28:21 +00001803 return true;
Sean Huntcf807c42010-08-18 23:23:40 +00001804 }
Chris Lattnerddee4232008-03-03 03:28:21 +00001805
1806 return false;
1807}
1808
Richard Smith671b3212013-02-22 04:55:39 +00001809static bool isAttributeTargetADefinition(Decl *D) {
1810 if (VarDecl *VD = dyn_cast<VarDecl>(D))
1811 return VD->isThisDeclarationADefinition();
1812 if (TagDecl *TD = dyn_cast<TagDecl>(D))
1813 return TD->isCompleteDefinition() || TD->isBeingDefined();
1814 return true;
1815}
1816
1817/// Merge alignment attributes from \p Old to \p New, taking into account the
1818/// special semantics of C11's _Alignas specifier and C++11's alignas attribute.
1819///
1820/// \return \c true if any attributes were added to \p New.
1821static bool mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) {
1822 // Look for alignas attributes on Old, and pick out whichever attribute
1823 // specifies the strictest alignment requirement.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001824 AlignedAttr *OldAlignasAttr = nullptr;
1825 AlignedAttr *OldStrictestAlignAttr = nullptr;
Richard Smith671b3212013-02-22 04:55:39 +00001826 unsigned OldAlign = 0;
Stephen Hines651f13c2014-04-23 16:59:28 -07001827 for (auto *I : Old->specific_attrs<AlignedAttr>()) {
Richard Smith671b3212013-02-22 04:55:39 +00001828 // FIXME: We have no way of representing inherited dependent alignments
1829 // in a case like:
1830 // template<int A, int B> struct alignas(A) X;
1831 // template<int A, int B> struct alignas(B) X {};
1832 // For now, we just ignore any alignas attributes which are not on the
1833 // definition in such a case.
1834 if (I->isAlignmentDependent())
1835 return false;
1836
1837 if (I->isAlignas())
Stephen Hines651f13c2014-04-23 16:59:28 -07001838 OldAlignasAttr = I;
Richard Smith671b3212013-02-22 04:55:39 +00001839
1840 unsigned Align = I->getAlignment(S.Context);
1841 if (Align > OldAlign) {
1842 OldAlign = Align;
Stephen Hines651f13c2014-04-23 16:59:28 -07001843 OldStrictestAlignAttr = I;
Richard Smith671b3212013-02-22 04:55:39 +00001844 }
1845 }
1846
1847 // Look for alignas attributes on New.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001848 AlignedAttr *NewAlignasAttr = nullptr;
Richard Smith671b3212013-02-22 04:55:39 +00001849 unsigned NewAlign = 0;
Stephen Hines651f13c2014-04-23 16:59:28 -07001850 for (auto *I : New->specific_attrs<AlignedAttr>()) {
Richard Smith671b3212013-02-22 04:55:39 +00001851 if (I->isAlignmentDependent())
1852 return false;
1853
1854 if (I->isAlignas())
Stephen Hines651f13c2014-04-23 16:59:28 -07001855 NewAlignasAttr = I;
Richard Smith671b3212013-02-22 04:55:39 +00001856
1857 unsigned Align = I->getAlignment(S.Context);
1858 if (Align > NewAlign)
1859 NewAlign = Align;
1860 }
1861
1862 if (OldAlignasAttr && NewAlignasAttr && OldAlign != NewAlign) {
1863 // Both declarations have 'alignas' attributes. We require them to match.
1864 // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but
1865 // fall short. (If two declarations both have alignas, they must both match
1866 // every definition, and so must match each other if there is a definition.)
1867
1868 // If either declaration only contains 'alignas(0)' specifiers, then it
1869 // specifies the natural alignment for the type.
1870 if (OldAlign == 0 || NewAlign == 0) {
1871 QualType Ty;
1872 if (ValueDecl *VD = dyn_cast<ValueDecl>(New))
1873 Ty = VD->getType();
1874 else
1875 Ty = S.Context.getTagDeclType(cast<TagDecl>(New));
1876
1877 if (OldAlign == 0)
1878 OldAlign = S.Context.getTypeAlign(Ty);
1879 if (NewAlign == 0)
1880 NewAlign = S.Context.getTypeAlign(Ty);
1881 }
1882
1883 if (OldAlign != NewAlign) {
1884 S.Diag(NewAlignasAttr->getLocation(), diag::err_alignas_mismatch)
1885 << (unsigned)S.Context.toCharUnitsFromBits(OldAlign).getQuantity()
1886 << (unsigned)S.Context.toCharUnitsFromBits(NewAlign).getQuantity();
1887 S.Diag(OldAlignasAttr->getLocation(), diag::note_previous_declaration);
1888 }
1889 }
1890
1891 if (OldAlignasAttr && !NewAlignasAttr && isAttributeTargetADefinition(New)) {
1892 // C++11 [dcl.align]p6:
1893 // if any declaration of an entity has an alignment-specifier,
1894 // every defining declaration of that entity shall specify an
1895 // equivalent alignment.
1896 // C11 6.7.5/7:
1897 // If the definition of an object does not have an alignment
1898 // specifier, any other declaration of that object shall also
1899 // have no alignment specifier.
1900 S.Diag(New->getLocation(), diag::err_alignas_missing_on_definition)
Stephen Hines651f13c2014-04-23 16:59:28 -07001901 << OldAlignasAttr;
Richard Smith671b3212013-02-22 04:55:39 +00001902 S.Diag(OldAlignasAttr->getLocation(), diag::note_alignas_on_declaration)
Stephen Hines651f13c2014-04-23 16:59:28 -07001903 << OldAlignasAttr;
Richard Smith671b3212013-02-22 04:55:39 +00001904 }
1905
1906 bool AnyAdded = false;
1907
1908 // Ensure we have an attribute representing the strictest alignment.
1909 if (OldAlign > NewAlign) {
1910 AlignedAttr *Clone = OldStrictestAlignAttr->clone(S.Context);
1911 Clone->setInherited(true);
1912 New->addAttr(Clone);
1913 AnyAdded = true;
1914 }
1915
1916 // Ensure we have an alignas attribute if the old declaration had one.
1917 if (OldAlignasAttr && !NewAlignasAttr &&
1918 !(AnyAdded && OldStrictestAlignAttr->isAlignas())) {
1919 AlignedAttr *Clone = OldAlignasAttr->clone(S.Context);
1920 Clone->setInherited(true);
1921 New->addAttr(Clone);
1922 AnyAdded = true;
1923 }
1924
1925 return AnyAdded;
1926}
1927
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001928static bool mergeDeclAttribute(Sema &S, NamedDecl *D,
1929 const InheritableAttr *Attr, bool Override) {
1930 InheritableAttr *NewAttr = nullptr;
Michael Han51d8c522013-01-24 16:46:58 +00001931 unsigned AttrSpellingListIndex = Attr->getSpellingListIndex();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001932 if (const auto *AA = dyn_cast<AvailabilityAttr>(Attr))
Richard Smith671b3212013-02-22 04:55:39 +00001933 NewAttr = S.mergeAvailabilityAttr(D, AA->getRange(), AA->getPlatform(),
1934 AA->getIntroduced(), AA->getDeprecated(),
1935 AA->getObsoleted(), AA->getUnavailable(),
1936 AA->getMessage(), Override,
John McCalld4c3d662013-02-20 01:54:26 +00001937 AttrSpellingListIndex);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001938 else if (const auto *VA = dyn_cast<VisibilityAttr>(Attr))
Richard Smith671b3212013-02-22 04:55:39 +00001939 NewAttr = S.mergeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
1940 AttrSpellingListIndex);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001941 else if (const auto *VA = dyn_cast<TypeVisibilityAttr>(Attr))
Richard Smith671b3212013-02-22 04:55:39 +00001942 NewAttr = S.mergeTypeVisibilityAttr(D, VA->getRange(), VA->getVisibility(),
1943 AttrSpellingListIndex);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001944 else if (const auto *ImportA = dyn_cast<DLLImportAttr>(Attr))
Richard Smith671b3212013-02-22 04:55:39 +00001945 NewAttr = S.mergeDLLImportAttr(D, ImportA->getRange(),
1946 AttrSpellingListIndex);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001947 else if (const auto *ExportA = dyn_cast<DLLExportAttr>(Attr))
Richard Smith671b3212013-02-22 04:55:39 +00001948 NewAttr = S.mergeDLLExportAttr(D, ExportA->getRange(),
1949 AttrSpellingListIndex);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001950 else if (const auto *FA = dyn_cast<FormatAttr>(Attr))
Richard Smith671b3212013-02-22 04:55:39 +00001951 NewAttr = S.mergeFormatAttr(D, FA->getRange(), FA->getType(),
1952 FA->getFormatIdx(), FA->getFirstArg(),
1953 AttrSpellingListIndex);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001954 else if (const auto *SA = dyn_cast<SectionAttr>(Attr))
Richard Smith671b3212013-02-22 04:55:39 +00001955 NewAttr = S.mergeSectionAttr(D, SA->getRange(), SA->getName(),
1956 AttrSpellingListIndex);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001957 else if (const auto *IA = dyn_cast<MSInheritanceAttr>(Attr))
Stephen Hines651f13c2014-04-23 16:59:28 -07001958 NewAttr = S.mergeMSInheritanceAttr(D, IA->getRange(), IA->getBestCase(),
1959 AttrSpellingListIndex,
1960 IA->getSemanticSpelling());
Richard Smith671b3212013-02-22 04:55:39 +00001961 else if (isa<AlignedAttr>(Attr))
1962 // AlignedAttrs are handled separately, because we need to handle all
1963 // such attributes on a declaration at the same time.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001964 NewAttr = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07001965 else if (Attr->duplicatesAllowed() || !DeclHasAttr(D, Attr))
Richard Smith671b3212013-02-22 04:55:39 +00001966 NewAttr = cast<InheritableAttr>(Attr->clone(S.Context));
Rafael Espindola98ae8342012-05-10 02:50:16 +00001967
Rafael Espindola599f1b72012-05-13 03:25:18 +00001968 if (NewAttr) {
Rafael Espindola98ae8342012-05-10 02:50:16 +00001969 NewAttr->setInherited(true);
1970 D->addAttr(NewAttr);
1971 return true;
1972 }
1973
1974 return false;
1975}
1976
Rafael Espindola4b044c62012-07-15 01:05:36 +00001977static const Decl *getDefinition(const Decl *D) {
1978 if (const TagDecl *TD = dyn_cast<TagDecl>(D))
Rafael Espindola3f664062012-05-18 01:47:00 +00001979 return TD->getDefinition();
Rafael Espindolab1c0e202013-10-22 21:39:03 +00001980 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
1981 const VarDecl *Def = VD->getDefinition();
1982 if (Def)
1983 return Def;
1984 return VD->getActingDefinition();
1985 }
Rafael Espindola4b044c62012-07-15 01:05:36 +00001986 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Rafael Espindola3f664062012-05-18 01:47:00 +00001987 const FunctionDecl* Def;
Rafael Espindolab1c0e202013-10-22 21:39:03 +00001988 if (FD->isDefined(Def))
Rafael Espindola3f664062012-05-18 01:47:00 +00001989 return Def;
1990 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001991 return nullptr;
Rafael Espindola3f664062012-05-18 01:47:00 +00001992}
1993
Rafael Espindolad320ffc2012-07-15 01:33:40 +00001994static bool hasAttribute(const Decl *D, attr::Kind Kind) {
Stephen Hines651f13c2014-04-23 16:59:28 -07001995 for (const auto *Attribute : D->attrs())
Rafael Espindolad320ffc2012-07-15 01:33:40 +00001996 if (Attribute->getKind() == Kind)
1997 return true;
Rafael Espindolad320ffc2012-07-15 01:33:40 +00001998 return false;
1999}
2000
2001/// checkNewAttributesAfterDef - If we already have a definition, check that
2002/// there are no new attributes in this declaration.
2003static void checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) {
2004 if (!New->hasAttrs())
2005 return;
2006
2007 const Decl *Def = getDefinition(Old);
2008 if (!Def || Def == New)
2009 return;
2010
2011 AttrVec &NewAttributes = New->getAttrs();
2012 for (unsigned I = 0, E = NewAttributes.size(); I != E;) {
2013 const Attr *NewAttribute = NewAttributes[I];
Rafael Espindolab1c0e202013-10-22 21:39:03 +00002014
2015 if (isa<AliasAttr>(NewAttribute)) {
2016 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(New))
2017 S.CheckForFunctionRedefinition(FD, cast<FunctionDecl>(Def));
2018 else {
2019 VarDecl *VD = cast<VarDecl>(New);
2020 unsigned Diag = cast<VarDecl>(Def)->isThisDeclarationADefinition() ==
2021 VarDecl::TentativeDefinition
2022 ? diag::err_alias_after_tentative
2023 : diag::err_redefinition;
2024 S.Diag(VD->getLocation(), Diag) << VD->getDeclName();
2025 S.Diag(Def->getLocation(), diag::note_previous_definition);
2026 VD->setInvalidDecl();
2027 }
2028 ++I;
2029 continue;
2030 }
2031
2032 if (const VarDecl *VD = dyn_cast<VarDecl>(Def)) {
2033 // Tentative definitions are only interesting for the alias check above.
2034 if (VD->isThisDeclarationADefinition() != VarDecl::Definition) {
2035 ++I;
2036 continue;
2037 }
2038 }
2039
Rafael Espindolad320ffc2012-07-15 01:33:40 +00002040 if (hasAttribute(Def, NewAttribute->getKind())) {
2041 ++I;
2042 continue; // regular attr merging will take care of validating this.
2043 }
Richard Smith671b3212013-02-22 04:55:39 +00002044
Richard Smith7586a6e2013-01-30 05:45:05 +00002045 if (isa<C11NoReturnAttr>(NewAttribute)) {
Richard Smith671b3212013-02-22 04:55:39 +00002046 // C's _Noreturn is allowed to be added to a function after it is defined.
Richard Smith7586a6e2013-01-30 05:45:05 +00002047 ++I;
2048 continue;
Richard Smith671b3212013-02-22 04:55:39 +00002049 } else if (const AlignedAttr *AA = dyn_cast<AlignedAttr>(NewAttribute)) {
2050 if (AA->isAlignas()) {
2051 // C++11 [dcl.align]p6:
2052 // if any declaration of an entity has an alignment-specifier,
2053 // every defining declaration of that entity shall specify an
2054 // equivalent alignment.
2055 // C11 6.7.5/7:
2056 // If the definition of an object does not have an alignment
2057 // specifier, any other declaration of that object shall also
2058 // have no alignment specifier.
2059 S.Diag(Def->getLocation(), diag::err_alignas_missing_on_definition)
Stephen Hines651f13c2014-04-23 16:59:28 -07002060 << AA;
Richard Smith671b3212013-02-22 04:55:39 +00002061 S.Diag(NewAttribute->getLocation(), diag::note_alignas_on_declaration)
Stephen Hines651f13c2014-04-23 16:59:28 -07002062 << AA;
Richard Smith671b3212013-02-22 04:55:39 +00002063 NewAttributes.erase(NewAttributes.begin() + I);
2064 --E;
2065 continue;
2066 }
Richard Smith7586a6e2013-01-30 05:45:05 +00002067 }
Richard Smith671b3212013-02-22 04:55:39 +00002068
Rafael Espindolad320ffc2012-07-15 01:33:40 +00002069 S.Diag(NewAttribute->getLocation(),
2070 diag::warn_attribute_precede_definition);
2071 S.Diag(Def->getLocation(), diag::note_previous_definition);
2072 NewAttributes.erase(NewAttributes.begin() + I);
2073 --E;
2074 }
2075}
2076
John McCalleca5d222011-03-02 04:00:57 +00002077/// mergeDeclAttributes - Copy attributes from the Old decl to the New one.
Rafael Espindola51be6e32013-01-08 22:04:34 +00002078void Sema::mergeDeclAttributes(NamedDecl *New, Decl *Old,
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002079 AvailabilityMergeKind AMK) {
Rafael Espindola101e9dc2013-10-25 01:28:12 +00002080 if (UsedAttr *OldAttr = Old->getMostRecentDecl()->getAttr<UsedAttr>()) {
2081 UsedAttr *NewAttr = OldAttr->clone(Context);
2082 NewAttr->setInherited(true);
2083 New->addAttr(NewAttr);
2084 }
2085
Richard Smith3a2b7a12013-01-28 22:42:45 +00002086 if (!Old->hasAttrs() && !New->hasAttrs())
2087 return;
2088
Rafael Espindola3f664062012-05-18 01:47:00 +00002089 // attributes declared post-definition are currently ignored
Rafael Espindolad320ffc2012-07-15 01:33:40 +00002090 checkNewAttributesAfterDef(*this, New, Old);
Rafael Espindola3f664062012-05-18 01:47:00 +00002091
Douglas Gregor27c6da22012-01-01 20:30:41 +00002092 if (!Old->hasAttrs())
Sean Huntcf807c42010-08-18 23:23:40 +00002093 return;
John McCalleca5d222011-03-02 04:00:57 +00002094
Douglas Gregor27c6da22012-01-01 20:30:41 +00002095 bool foundAny = New->hasAttrs();
John McCalleca5d222011-03-02 04:00:57 +00002096
Sean Huntcf807c42010-08-18 23:23:40 +00002097 // Ensure that any moving of objects within the allocated map is done before
2098 // we process them.
Douglas Gregor27c6da22012-01-01 20:30:41 +00002099 if (!foundAny) New->setAttrs(AttrVec());
John McCalleca5d222011-03-02 04:00:57 +00002100
Stephen Hines651f13c2014-04-23 16:59:28 -07002101 for (auto *I : Old->specific_attrs<InheritableAttr>()) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002102 bool Override = false;
Douglas Gregorc193dd82011-09-23 20:23:42 +00002103 // Ignore deprecated/unavailable/availability attributes if requested.
Stephen Hines651f13c2014-04-23 16:59:28 -07002104 if (isa<DeprecatedAttr>(I) ||
2105 isa<UnavailableAttr>(I) ||
2106 isa<AvailabilityAttr>(I)) {
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002107 switch (AMK) {
2108 case AMK_None:
2109 continue;
John McCall6c2c2502011-07-22 02:45:48 +00002110
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002111 case AMK_Redeclaration:
2112 break;
2113
2114 case AMK_Override:
2115 Override = true;
2116 break;
2117 }
2118 }
2119
Rafael Espindola101e9dc2013-10-25 01:28:12 +00002120 // Already handled.
Stephen Hines651f13c2014-04-23 16:59:28 -07002121 if (isa<UsedAttr>(I))
Rafael Espindola101e9dc2013-10-25 01:28:12 +00002122 continue;
2123
Stephen Hines651f13c2014-04-23 16:59:28 -07002124 if (mergeDeclAttribute(*this, New, I, Override))
John McCalleca5d222011-03-02 04:00:57 +00002125 foundAny = true;
Chris Lattnerddee4232008-03-03 03:28:21 +00002126 }
John McCalleca5d222011-03-02 04:00:57 +00002127
Richard Smith671b3212013-02-22 04:55:39 +00002128 if (mergeAlignedAttrs(*this, New, Old))
2129 foundAny = true;
2130
Douglas Gregor27c6da22012-01-01 20:30:41 +00002131 if (!foundAny) New->dropAttrs();
John McCalleca5d222011-03-02 04:00:57 +00002132}
2133
2134/// mergeParamDeclAttributes - Copy attributes from the old parameter
2135/// to the new one.
2136static void mergeParamDeclAttributes(ParmVarDecl *newDecl,
2137 const ParmVarDecl *oldDecl,
Richard Smith3a2b7a12013-01-28 22:42:45 +00002138 Sema &S) {
2139 // C++11 [dcl.attr.depend]p2:
2140 // The first declaration of a function shall specify the
2141 // carries_dependency attribute for its declarator-id if any declaration
2142 // of the function specifies the carries_dependency attribute.
Stephen Hines651f13c2014-04-23 16:59:28 -07002143 const CarriesDependencyAttr *CDA = newDecl->getAttr<CarriesDependencyAttr>();
2144 if (CDA && !oldDecl->hasAttr<CarriesDependencyAttr>()) {
2145 S.Diag(CDA->getLocation(),
Richard Smith3a2b7a12013-01-28 22:42:45 +00002146 diag::err_carries_dependency_missing_on_first_decl) << 1/*Param*/;
2147 // Find the first declaration of the parameter.
2148 // FIXME: Should we build redeclaration chains for function parameters?
2149 const FunctionDecl *FirstFD =
Rafael Espindolabc650912013-10-17 15:37:26 +00002150 cast<FunctionDecl>(oldDecl->getDeclContext())->getFirstDecl();
Richard Smith3a2b7a12013-01-28 22:42:45 +00002151 const ParmVarDecl *FirstVD =
2152 FirstFD->getParamDecl(oldDecl->getFunctionScopeIndex());
2153 S.Diag(FirstVD->getLocation(),
2154 diag::note_carries_dependency_missing_first_decl) << 1/*Param*/;
2155 }
2156
John McCalleca5d222011-03-02 04:00:57 +00002157 if (!oldDecl->hasAttrs())
2158 return;
2159
2160 bool foundAny = newDecl->hasAttrs();
2161
2162 // Ensure that any moving of objects within the allocated map is
2163 // done before we process them.
2164 if (!foundAny) newDecl->setAttrs(AttrVec());
2165
Stephen Hines651f13c2014-04-23 16:59:28 -07002166 for (const auto *I : oldDecl->specific_attrs<InheritableParamAttr>()) {
2167 if (!DeclHasAttr(newDecl, I)) {
Richard Smith3a2b7a12013-01-28 22:42:45 +00002168 InheritableAttr *newAttr =
Stephen Hines651f13c2014-04-23 16:59:28 -07002169 cast<InheritableParamAttr>(I->clone(S.Context));
John McCalleca5d222011-03-02 04:00:57 +00002170 newAttr->setInherited(true);
2171 newDecl->addAttr(newAttr);
2172 foundAny = true;
2173 }
2174 }
2175
2176 if (!foundAny) newDecl->dropAttrs();
Chris Lattnerddee4232008-03-03 03:28:21 +00002177}
2178
Dan Gohman3c46e8d2010-07-26 21:25:24 +00002179namespace {
2180
Douglas Gregorc8376562009-03-06 22:43:54 +00002181/// Used in MergeFunctionDecl to keep track of function parameters in
2182/// C.
2183struct GNUCompatibleParamWarning {
2184 ParmVarDecl *OldParm;
2185 ParmVarDecl *NewParm;
2186 QualType PromotedType;
2187};
2188
Dan Gohman3c46e8d2010-07-26 21:25:24 +00002189}
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002190
2191/// getSpecialMember - get the special member enum for a method.
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00002192Sema::CXXSpecialMember Sema::getSpecialMember(const CXXMethodDecl *MD) {
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002193 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
Sean Huntf961ea52011-05-10 19:08:14 +00002194 if (Ctor->isDefaultConstructor())
2195 return Sema::CXXDefaultConstructor;
Sean Hunt9ae60d52011-05-26 01:26:05 +00002196
2197 if (Ctor->isCopyConstructor())
2198 return Sema::CXXCopyConstructor;
2199
2200 if (Ctor->isMoveConstructor())
2201 return Sema::CXXMoveConstructor;
Sean Hunt82713172011-05-25 23:16:36 +00002202 } else if (isa<CXXDestructorDecl>(MD)) {
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002203 return Sema::CXXDestructor;
Sean Hunt82713172011-05-25 23:16:36 +00002204 } else if (MD->isCopyAssignmentOperator()) {
Sean Huntf961ea52011-05-10 19:08:14 +00002205 return Sema::CXXCopyAssignment;
Sebastian Redl74e611a2011-09-04 18:14:28 +00002206 } else if (MD->isMoveAssignmentOperator()) {
2207 return Sema::CXXMoveAssignment;
Sean Hunt82713172011-05-25 23:16:36 +00002208 }
Sean Huntf961ea52011-05-10 19:08:14 +00002209
Sean Huntf961ea52011-05-10 19:08:14 +00002210 return Sema::CXXInvalid;
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002211}
2212
Sebastian Redl515ddd82010-06-09 21:17:41 +00002213/// canRedefineFunction - checks if a function can be redefined. Currently,
Charles Davisf3f8d2a2010-02-18 02:00:42 +00002214/// only extern inline functions can be redefined, and even then only in
2215/// GNU89 mode.
2216static bool canRedefineFunction(const FunctionDecl *FD,
2217 const LangOptions& LangOpts) {
Eli Friedmaneca3ed72011-06-13 23:56:42 +00002218 return ((FD->hasAttr<GNUInlineAttr>() || LangOpts.GNUInline) &&
2219 !LangOpts.CPlusPlus &&
Charles Davisf3f8d2a2010-02-18 02:00:42 +00002220 FD->isInlineSpecified() &&
John McCalld931b082010-08-26 03:08:43 +00002221 FD->getStorageClass() == SC_Extern);
Charles Davisf3f8d2a2010-02-18 02:00:42 +00002222}
2223
Reid Kleckneref072032013-08-27 23:08:25 +00002224const AttributedType *Sema::getCallingConvAttributedType(QualType T) const {
2225 const AttributedType *AT = T->getAs<AttributedType>();
2226 while (AT && !AT->isCallingConv())
2227 AT = AT->getModifiedType()->getAs<AttributedType>();
2228 return AT;
John McCallfb609142012-08-25 02:00:03 +00002229}
2230
Benjamin Kramera574c892013-02-15 12:30:38 +00002231template <typename T>
2232static bool haveIncompatibleLanguageLinkages(const T *Old, const T *New) {
Rafael Espindola950fee22013-02-14 01:18:37 +00002233 const DeclContext *DC = Old->getDeclContext();
2234 if (DC->isRecord())
2235 return false;
2236
2237 LanguageLinkage OldLinkage = Old->getLanguageLinkage();
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00002238 if (OldLinkage == CXXLanguageLinkage && New->isInExternCContext())
Rafael Espindola950fee22013-02-14 01:18:37 +00002239 return true;
Rafael Espindolad8ffd0b2013-05-05 20:15:21 +00002240 if (OldLinkage == CLanguageLinkage && New->isInExternCXXContext())
Rafael Espindola950fee22013-02-14 01:18:37 +00002241 return true;
2242 return false;
2243}
2244
Chris Lattner04421082008-04-08 04:40:51 +00002245/// MergeFunctionDecl - We just parsed a function 'New' from
2246/// declarator D which has the same name and scope as a previous
2247/// declaration 'Old'. Figure out how to resolve this situation,
2248/// merging decls or emitting diagnostics as appropriate.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002249///
2250/// In C++, New and Old must be declarations that are not
2251/// overloaded. Use IsOverload to determine whether New and Old are
2252/// overloaded, and to select the Old declaration that New should be
2253/// merged with.
Douglas Gregorcda9c672009-02-16 17:45:42 +00002254///
2255/// Returns true if there was an error, false otherwise.
Stephen Hines651f13c2014-04-23 16:59:28 -07002256bool Sema::MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD,
2257 Scope *S, bool MergeTypeWithOld) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002258 // Verify the old decl was also a function.
Stephen Hines651f13c2014-04-23 16:59:28 -07002259 FunctionDecl *Old = OldD->getAsFunction();
Reid Spencer5f016e22007-07-11 17:01:13 +00002260 if (!Old) {
John McCall41ce66f2009-12-10 19:51:03 +00002261 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(OldD)) {
John McCall78037ac2013-04-03 21:19:47 +00002262 if (New->getFriendObjectKind()) {
2263 Diag(New->getLocation(), diag::err_using_decl_friend);
2264 Diag(Shadow->getTargetDecl()->getLocation(),
2265 diag::note_using_decl_target);
2266 Diag(Shadow->getUsingDecl()->getLocation(),
2267 diag::note_using_decl) << 0;
2268 return true;
2269 }
2270
Stephen Hines651f13c2014-04-23 16:59:28 -07002271 // C++11 [namespace.udecl]p14:
2272 // If a function declaration in namespace scope or block scope has the
2273 // same name and the same parameter-type-list as a function introduced
2274 // by a using-declaration, and the declarations do not declare the same
2275 // function, the program is ill-formed.
2276
2277 // Check whether the two declarations might declare the same function.
2278 Old = dyn_cast<FunctionDecl>(Shadow->getTargetDecl());
2279 if (Old &&
2280 !Old->getDeclContext()->getRedeclContext()->Equals(
2281 New->getDeclContext()->getRedeclContext()) &&
2282 !(Old->isExternC() && New->isExternC()))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002283 Old = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07002284
2285 if (!Old) {
2286 Diag(New->getLocation(), diag::err_using_decl_conflict_reverse);
2287 Diag(Shadow->getTargetDecl()->getLocation(),
2288 diag::note_using_decl_target);
2289 Diag(Shadow->getUsingDecl()->getLocation(), diag::note_using_decl) << 0;
2290 return true;
2291 }
2292 OldD = Old;
2293 } else {
2294 Diag(New->getLocation(), diag::err_redefinition_different_kind)
2295 << New->getDeclName();
2296 Diag(OldD->getLocation(), diag::note_previous_definition);
John McCall41ce66f2009-12-10 19:51:03 +00002297 return true;
2298 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002299 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002300
David Majnemerbcd06502013-07-07 23:49:50 +00002301 // If the old declaration is invalid, just give up here.
2302 if (Old->isInvalidDecl())
2303 return true;
2304
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002305 // Determine whether the previous declaration was a definition,
2306 // implicit declaration, or a declaration.
2307 diag::kind PrevDiag;
Stephen Hines651f13c2014-04-23 16:59:28 -07002308 SourceLocation OldLocation = Old->getLocation();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002309 if (Old->isThisDeclarationADefinition())
Chris Lattner5f4a6822008-11-23 23:12:31 +00002310 PrevDiag = diag::note_previous_definition;
Stephen Hines651f13c2014-04-23 16:59:28 -07002311 else if (Old->isImplicit()) {
Douglas Gregorcda9c672009-02-16 17:45:42 +00002312 PrevDiag = diag::note_previous_implicit_declaration;
Stephen Hines651f13c2014-04-23 16:59:28 -07002313 if (OldLocation.isInvalid())
2314 OldLocation = New->getLocation();
2315 } else
Chris Lattner5f4a6822008-11-23 23:12:31 +00002316 PrevDiag = diag::note_previous_declaration;
Mike Stump1eb44332009-09-09 15:08:12 +00002317
Charles Davisf3f8d2a2010-02-18 02:00:42 +00002318 // Don't complain about this if we're in GNU89 mode and the old function
2319 // is an extern inline function.
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002320 // Don't complain about specializations. They are not supposed to have
2321 // storage classes.
Douglas Gregor04495c82009-02-24 01:23:02 +00002322 if (!isa<CXXMethodDecl>(New) && !isa<CXXMethodDecl>(Old) &&
John McCalld931b082010-08-26 03:08:43 +00002323 New->getStorageClass() == SC_Static &&
Rafael Espindola181e3ec2013-05-13 00:12:11 +00002324 Old->hasExternalFormalLinkage() &&
Rafael Espindolad2615cc2013-04-03 19:27:57 +00002325 !New->getTemplateSpecializationInfo() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00002326 !canRedefineFunction(Old, getLangOpts())) {
2327 if (getLangOpts().MicrosoftExt) {
Francois Pichet4bada2e2011-04-22 19:50:06 +00002328 Diag(New->getLocation(), diag::warn_static_non_static) << New;
Stephen Hines651f13c2014-04-23 16:59:28 -07002329 Diag(OldLocation, PrevDiag);
Francois Pichet4bada2e2011-04-22 19:50:06 +00002330 } else {
2331 Diag(New->getLocation(), diag::err_static_non_static) << New;
Stephen Hines651f13c2014-04-23 16:59:28 -07002332 Diag(OldLocation, PrevDiag);
Francois Pichet4bada2e2011-04-22 19:50:06 +00002333 return true;
2334 }
Douglas Gregor04495c82009-02-24 01:23:02 +00002335 }
2336
Reid Kleckneref072032013-08-27 23:08:25 +00002337
2338 // If a function is first declared with a calling convention, but is later
2339 // declared or defined without one, all following decls assume the calling
2340 // convention of the first.
John McCallf82b4e82010-02-04 05:44:44 +00002341 //
John McCallfb609142012-08-25 02:00:03 +00002342 // It's OK if a function is first declared without a calling convention,
2343 // but is later declared or defined with the default calling convention.
2344 //
Reid Kleckneref072032013-08-27 23:08:25 +00002345 // To test if either decl has an explicit calling convention, we look for
2346 // AttributedType sugar nodes on the type as written. If they are missing or
2347 // were canonicalized away, we assume the calling convention was implicit.
John McCallf82b4e82010-02-04 05:44:44 +00002348 //
2349 // Note also that we DO NOT return at this point, because we still have
2350 // other tests to run.
Reid Kleckneref072032013-08-27 23:08:25 +00002351 QualType OldQType = Context.getCanonicalType(Old->getType());
2352 QualType NewQType = Context.getCanonicalType(New->getType());
John McCalle6a365d2010-12-19 02:44:49 +00002353 const FunctionType *OldType = cast<FunctionType>(OldQType);
Reid Kleckneref072032013-08-27 23:08:25 +00002354 const FunctionType *NewType = cast<FunctionType>(NewQType);
John McCalle6a365d2010-12-19 02:44:49 +00002355 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo();
2356 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo();
2357 bool RequiresAdjustment = false;
John McCallfb609142012-08-25 02:00:03 +00002358
Reid Kleckneref072032013-08-27 23:08:25 +00002359 if (OldTypeInfo.getCC() != NewTypeInfo.getCC()) {
Rafael Espindolabc650912013-10-17 15:37:26 +00002360 FunctionDecl *First = Old->getFirstDecl();
Reid Kleckneref072032013-08-27 23:08:25 +00002361 const FunctionType *FT =
2362 First->getType().getCanonicalType()->castAs<FunctionType>();
2363 FunctionType::ExtInfo FI = FT->getExtInfo();
2364 bool NewCCExplicit = getCallingConvAttributedType(New->getType());
2365 if (!NewCCExplicit) {
2366 // Inherit the CC from the previous declaration if it was specified
2367 // there but not here.
2368 NewTypeInfo = NewTypeInfo.withCallingConv(OldTypeInfo.getCC());
2369 RequiresAdjustment = true;
2370 } else {
2371 // Calling conventions aren't compatible, so complain.
2372 bool FirstCCExplicit = getCallingConvAttributedType(First->getType());
2373 Diag(New->getLocation(), diag::err_cconv_change)
2374 << FunctionType::getNameForCallConv(NewTypeInfo.getCC())
2375 << !FirstCCExplicit
2376 << (!FirstCCExplicit ? "" :
2377 FunctionType::getNameForCallConv(FI.getCC()));
John McCallfb609142012-08-25 02:00:03 +00002378
Reid Kleckneref072032013-08-27 23:08:25 +00002379 // Put the note on the first decl, since it is the one that matters.
2380 Diag(First->getLocation(), diag::note_previous_declaration);
2381 return true;
2382 }
John McCallf82b4e82010-02-04 05:44:44 +00002383 }
2384
John McCall04a67a62010-02-05 21:31:56 +00002385 // FIXME: diagnose the other way around?
John McCalle6a365d2010-12-19 02:44:49 +00002386 if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
2387 NewTypeInfo = NewTypeInfo.withNoReturn(true);
2388 RequiresAdjustment = true;
John McCall04a67a62010-02-05 21:31:56 +00002389 }
2390
Douglas Gregord2c64902010-06-18 21:30:25 +00002391 // Merge regparm attribute.
Eli Friedmana49218e2011-04-09 08:18:08 +00002392 if (OldTypeInfo.getHasRegParm() != NewTypeInfo.getHasRegParm() ||
2393 OldTypeInfo.getRegParm() != NewTypeInfo.getRegParm()) {
2394 if (NewTypeInfo.getHasRegParm()) {
Douglas Gregord2c64902010-06-18 21:30:25 +00002395 Diag(New->getLocation(), diag::err_regparm_mismatch)
2396 << NewType->getRegParmType()
2397 << OldType->getRegParmType();
Stephen Hines651f13c2014-04-23 16:59:28 -07002398 Diag(OldLocation, diag::note_previous_declaration);
Douglas Gregord2c64902010-06-18 21:30:25 +00002399 return true;
2400 }
John McCalle6a365d2010-12-19 02:44:49 +00002401
2402 NewTypeInfo = NewTypeInfo.withRegParm(OldTypeInfo.getRegParm());
2403 RequiresAdjustment = true;
2404 }
2405
Douglas Gregorcb1c9c32011-10-14 15:55:40 +00002406 // Merge ns_returns_retained attribute.
2407 if (OldTypeInfo.getProducesResult() != NewTypeInfo.getProducesResult()) {
2408 if (NewTypeInfo.getProducesResult()) {
2409 Diag(New->getLocation(), diag::err_returns_retained_mismatch);
Stephen Hines651f13c2014-04-23 16:59:28 -07002410 Diag(OldLocation, diag::note_previous_declaration);
Douglas Gregorcb1c9c32011-10-14 15:55:40 +00002411 return true;
2412 }
2413
2414 NewTypeInfo = NewTypeInfo.withProducesResult(true);
2415 RequiresAdjustment = true;
2416 }
2417
John McCalle6a365d2010-12-19 02:44:49 +00002418 if (RequiresAdjustment) {
Eli Friedman130fcc82013-09-06 21:09:09 +00002419 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>();
2420 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo);
2421 New->setType(QualType(AdjustedType, 0));
John McCalle6a365d2010-12-19 02:44:49 +00002422 NewQType = Context.getCanonicalType(New->getType());
Eli Friedman130fcc82013-09-06 21:09:09 +00002423 NewType = cast<FunctionType>(NewQType);
Douglas Gregord2c64902010-06-18 21:30:25 +00002424 }
Nick Lewyckycd0655b2013-02-01 08:13:20 +00002425
2426 // If this redeclaration makes the function inline, we may need to add it to
2427 // UndefinedButUsed.
2428 if (!Old->isInlined() && New->isInlined() &&
2429 !New->hasAttr<GNUInlineAttr>() &&
2430 (getLangOpts().CPlusPlus || !getLangOpts().GNUInline) &&
2431 Old->isUsed(false) &&
2432 !Old->isDefined() && !New->isThisDeclarationADefinition())
2433 UndefinedButUsed.insert(std::make_pair(Old->getCanonicalDecl(),
2434 SourceLocation()));
2435
2436 // If this redeclaration makes it newly gnu_inline, we don't want to warn
2437 // about it.
2438 if (New->hasAttr<GNUInlineAttr>() &&
2439 Old->isInlined() && !Old->hasAttr<GNUInlineAttr>()) {
2440 UndefinedButUsed.erase(Old->getCanonicalDecl());
2441 }
Douglas Gregord2c64902010-06-18 21:30:25 +00002442
David Blaikie4e4d0842012-03-11 07:00:24 +00002443 if (getLangOpts().CPlusPlus) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002444 // (C++98 13.1p2):
2445 // Certain function declarations cannot be overloaded:
Mike Stump1eb44332009-09-09 15:08:12 +00002446 // -- Function declarations that differ only in the return type
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002447 // cannot be overloaded.
Richard Smith60e141e2013-05-04 07:00:32 +00002448
2449 // Go back to the type source info to compare the declared return types,
Richard Smith37e849a2013-08-14 20:16:31 +00002450 // per C++1y [dcl.type.auto]p13:
Richard Smith60e141e2013-05-04 07:00:32 +00002451 // Redeclarations or specializations of a function or function template
2452 // with a declared return type that uses a placeholder type shall also
2453 // use that placeholder, not a deduced type.
Stephen Hines651f13c2014-04-23 16:59:28 -07002454 QualType OldDeclaredReturnType =
2455 (Old->getTypeSourceInfo()
2456 ? Old->getTypeSourceInfo()->getType()->castAs<FunctionType>()
2457 : OldType)->getReturnType();
2458 QualType NewDeclaredReturnType =
2459 (New->getTypeSourceInfo()
2460 ? New->getTypeSourceInfo()->getType()->castAs<FunctionType>()
2461 : NewType)->getReturnType();
Fariborz Jahanian2390a722010-05-19 21:37:30 +00002462 QualType ResQT;
Richard Smitha41c97a2013-09-20 01:15:31 +00002463 if (!Context.hasSameType(OldDeclaredReturnType, NewDeclaredReturnType) &&
2464 !((NewQType->isDependentType() || OldQType->isDependentType()) &&
2465 New->isLocalExternDecl())) {
Richard Smith60e141e2013-05-04 07:00:32 +00002466 if (NewDeclaredReturnType->isObjCObjectPointerType() &&
2467 OldDeclaredReturnType->isObjCObjectPointerType())
Fariborz Jahanian2390a722010-05-19 21:37:30 +00002468 ResQT = Context.mergeObjCGCQualifiers(NewQType, OldQType);
2469 if (ResQT.isNull()) {
Argyrios Kyrtzidis1de34dd2011-02-05 05:54:49 +00002470 if (New->isCXXClassMember() && New->isOutOfLine())
2471 Diag(New->getLocation(),
2472 diag::err_member_def_does_not_match_ret_type) << New;
2473 else
2474 Diag(New->getLocation(), diag::err_ovl_diff_return_type);
Stephen Hines651f13c2014-04-23 16:59:28 -07002475 Diag(OldLocation, PrevDiag) << Old << Old->getType();
Fariborz Jahanian2390a722010-05-19 21:37:30 +00002476 return true;
2477 }
2478 else
2479 NewQType = ResQT;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002480 }
2481
Stephen Hines651f13c2014-04-23 16:59:28 -07002482 QualType OldReturnType = OldType->getReturnType();
2483 QualType NewReturnType = cast<FunctionType>(NewQType)->getReturnType();
Richard Smith60e141e2013-05-04 07:00:32 +00002484 if (OldReturnType != NewReturnType) {
2485 // If this function has a deduced return type and has already been
2486 // defined, copy the deduced value from the old declaration.
Stephen Hines651f13c2014-04-23 16:59:28 -07002487 AutoType *OldAT = Old->getReturnType()->getContainedAutoType();
Richard Smith60e141e2013-05-04 07:00:32 +00002488 if (OldAT && OldAT->isDeduced()) {
Richard Smith37e849a2013-08-14 20:16:31 +00002489 New->setType(
2490 SubstAutoType(New->getType(),
2491 OldAT->isDependentType() ? Context.DependentTy
2492 : OldAT->getDeducedType()));
Richard Smith60e141e2013-05-04 07:00:32 +00002493 NewQType = Context.getCanonicalType(
Richard Smith37e849a2013-08-14 20:16:31 +00002494 SubstAutoType(NewQType,
2495 OldAT->isDependentType() ? Context.DependentTy
2496 : OldAT->getDeducedType()));
Richard Smith60e141e2013-05-04 07:00:32 +00002497 }
2498 }
2499
2500 const CXXMethodDecl *OldMethod = dyn_cast<CXXMethodDecl>(Old);
2501 CXXMethodDecl *NewMethod = dyn_cast<CXXMethodDecl>(New);
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002502 if (OldMethod && NewMethod) {
John McCall3d043362010-04-13 07:45:41 +00002503 // Preserve triviality.
2504 NewMethod->setTrivial(OldMethod->isTrivial());
Francois Pichete1e96a62011-05-14 19:17:07 +00002505
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002506 // MSVC allows explicit template specialization at class scope:
Stephen Hines651f13c2014-04-23 16:59:28 -07002507 // 2 CXXMethodDecls referring to the same function will be injected.
2508 // We don't want a redeclaration error.
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002509 bool IsClassScopeExplicitSpecialization =
2510 OldMethod->isFunctionTemplateSpecialization() &&
2511 NewMethod->isFunctionTemplateSpecialization();
John McCall3d043362010-04-13 07:45:41 +00002512 bool isFriend = NewMethod->getFriendObjectKind();
2513
Francois Pichetaf0f4d02011-08-14 03:52:19 +00002514 if (!isFriend && NewMethod->getLexicalDeclContext()->isRecord() &&
2515 !IsClassScopeExplicitSpecialization) {
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002516 // -- Member function declarations with the same name and the
2517 // same parameter types cannot be overloaded if any of them
2518 // is a static member function declaration.
Eli Friedmanfa0d3f82013-06-19 22:43:55 +00002519 if (OldMethod->isStatic() != NewMethod->isStatic()) {
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002520 Diag(New->getLocation(), diag::err_ovl_static_nonstatic_member);
Stephen Hines651f13c2014-04-23 16:59:28 -07002521 Diag(OldLocation, PrevDiag) << Old << Old->getType();
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002522 return true;
2523 }
Richard Smith838925d2012-07-13 04:12:04 +00002524
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002525 // C++ [class.mem]p1:
2526 // [...] A member shall not be declared twice in the
2527 // member-specification, except that a nested class or member
2528 // class template can be declared and then later defined.
Richard Smith838925d2012-07-13 04:12:04 +00002529 if (ActiveTemplateInstantiations.empty()) {
2530 unsigned NewDiag;
2531 if (isa<CXXConstructorDecl>(OldMethod))
2532 NewDiag = diag::err_constructor_redeclared;
2533 else if (isa<CXXDestructorDecl>(NewMethod))
2534 NewDiag = diag::err_destructor_redeclared;
2535 else if (isa<CXXConversionDecl>(NewMethod))
2536 NewDiag = diag::err_conv_function_redeclared;
2537 else
2538 NewDiag = diag::err_member_redeclared;
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002539
Richard Smith838925d2012-07-13 04:12:04 +00002540 Diag(New->getLocation(), NewDiag);
2541 } else {
2542 Diag(New->getLocation(), diag::err_member_redeclared_in_instantiation)
2543 << New << New->getType();
2544 }
Stephen Hines651f13c2014-04-23 16:59:28 -07002545 Diag(OldLocation, PrevDiag) << Old << Old->getType();
John McCall3d043362010-04-13 07:45:41 +00002546
2547 // Complain if this is an explicit declaration of a special
2548 // member that was initially declared implicitly.
2549 //
2550 // As an exception, it's okay to befriend such methods in order
2551 // to permit the implicit constructor/destructor/operator calls.
2552 } else if (OldMethod->isImplicit()) {
2553 if (isFriend) {
2554 NewMethod->setImplicit();
2555 } else {
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002556 Diag(NewMethod->getLocation(),
2557 diag::err_definition_of_implicitly_declared_member)
Anders Carlsson3b8c53b2010-04-22 05:40:53 +00002558 << New << getSpecialMember(OldMethod);
Anders Carlsson5c478cf2009-12-04 22:33:25 +00002559 return true;
2560 }
Richard Smithf4fe8432012-06-08 01:30:54 +00002561 } else if (OldMethod->isExplicitlyDefaulted() && !isFriend) {
Sean Hunt001cad92011-05-10 00:49:42 +00002562 Diag(NewMethod->getLocation(),
2563 diag::err_definition_of_explicitly_defaulted_member)
2564 << getSpecialMember(OldMethod);
2565 return true;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002566 }
2567 }
2568
Richard Smithcd8ab512013-01-17 01:30:42 +00002569 // C++11 [dcl.attr.noreturn]p1:
2570 // The first declaration of a function shall specify the noreturn
2571 // attribute if any declaration of that function specifies the noreturn
2572 // attribute.
Stephen Hines651f13c2014-04-23 16:59:28 -07002573 const CXX11NoReturnAttr *NRA = New->getAttr<CXX11NoReturnAttr>();
2574 if (NRA && !Old->hasAttr<CXX11NoReturnAttr>()) {
2575 Diag(NRA->getLocation(), diag::err_noreturn_missing_on_first_decl);
Rafael Espindolabc650912013-10-17 15:37:26 +00002576 Diag(Old->getFirstDecl()->getLocation(),
Richard Smithcd8ab512013-01-17 01:30:42 +00002577 diag::note_noreturn_missing_first_decl);
2578 }
2579
Richard Smith3a2b7a12013-01-28 22:42:45 +00002580 // C++11 [dcl.attr.depend]p2:
2581 // The first declaration of a function shall specify the
2582 // carries_dependency attribute for its declarator-id if any declaration
2583 // of the function specifies the carries_dependency attribute.
Stephen Hines651f13c2014-04-23 16:59:28 -07002584 const CarriesDependencyAttr *CDA = New->getAttr<CarriesDependencyAttr>();
2585 if (CDA && !Old->hasAttr<CarriesDependencyAttr>()) {
2586 Diag(CDA->getLocation(),
Richard Smith3a2b7a12013-01-28 22:42:45 +00002587 diag::err_carries_dependency_missing_on_first_decl) << 0/*Function*/;
Rafael Espindolabc650912013-10-17 15:37:26 +00002588 Diag(Old->getFirstDecl()->getLocation(),
Richard Smith3a2b7a12013-01-28 22:42:45 +00002589 diag::note_carries_dependency_missing_first_decl) << 0/*Function*/;
2590 }
2591
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002592 // (C++98 8.3.5p3):
2593 // All declarations for a function shall agree exactly in both the
2594 // return type and the parameter-type-list.
John McCalle6a365d2010-12-19 02:44:49 +00002595 // We also want to respect all the extended bits except noreturn.
2596
2597 // noreturn should now match unless the old type info didn't have it.
2598 QualType OldQTypeForComparison = OldQType;
2599 if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
2600 assert(OldQType == QualType(OldType, 0));
2601 const FunctionType *OldTypeForComparison
2602 = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true));
2603 OldQTypeForComparison = QualType(OldTypeForComparison, 0);
2604 assert(OldQTypeForComparison.isCanonical());
2605 }
2606
Rafael Espindola950fee22013-02-14 01:18:37 +00002607 if (haveIncompatibleLanguageLinkages(Old, New)) {
Alp Tokera8a2ebe2013-10-22 22:53:01 +00002608 // As a special case, retain the language linkage from previous
2609 // declarations of a friend function as an extension.
2610 //
2611 // This liberal interpretation of C++ [class.friend]p3 matches GCC/MSVC
2612 // and is useful because there's otherwise no way to specify language
2613 // linkage within class scope.
2614 //
2615 // Check cautiously as the friend object kind isn't yet complete.
2616 if (New->getFriendObjectKind() != Decl::FOK_None) {
2617 Diag(New->getLocation(), diag::ext_retained_language_linkage) << New;
Stephen Hines651f13c2014-04-23 16:59:28 -07002618 Diag(OldLocation, PrevDiag);
Alp Tokera8a2ebe2013-10-22 22:53:01 +00002619 } else {
2620 Diag(New->getLocation(), diag::err_different_language_linkage) << New;
Stephen Hines651f13c2014-04-23 16:59:28 -07002621 Diag(OldLocation, PrevDiag);
Alp Tokera8a2ebe2013-10-22 22:53:01 +00002622 return true;
2623 }
Rafael Espindolae57e3d32012-12-27 03:56:20 +00002624 }
2625
John McCalle6a365d2010-12-19 02:44:49 +00002626 if (OldQTypeForComparison == NewQType)
Richard Smithdd9459f2013-08-13 18:18:50 +00002627 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002628
Richard Smitha41c97a2013-09-20 01:15:31 +00002629 if ((NewQType->isDependentType() || OldQType->isDependentType()) &&
2630 New->isLocalExternDecl()) {
2631 // It's OK if we couldn't merge types for a local function declaraton
2632 // if either the old or new type is dependent. We'll merge the types
2633 // when we instantiate the function.
2634 return false;
2635 }
2636
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002637 // Fall through for conflicting redeclarations and redefinitions.
Douglas Gregorf0097952008-04-21 02:02:58 +00002638 }
Chris Lattner04421082008-04-08 04:40:51 +00002639
2640 // C: Function types need to be compatible, not identical. This handles
Steve Naroffadbbd0c2008-01-14 20:51:29 +00002641 // duplicate function decls like "void f(int); void f(enum X);" properly.
David Blaikie4e4d0842012-03-11 07:00:24 +00002642 if (!getLangOpts().CPlusPlus &&
Eli Friedman3d815e72008-08-22 00:56:42 +00002643 Context.typesAreCompatible(OldQType, NewQType)) {
John McCall183700f2009-09-21 23:43:11 +00002644 const FunctionType *OldFuncType = OldQType->getAs<FunctionType>();
2645 const FunctionType *NewFuncType = NewQType->getAs<FunctionType>();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002646 const FunctionProtoType *OldProto = nullptr;
Richard Smithdd9459f2013-08-13 18:18:50 +00002647 if (MergeTypeWithOld && isa<FunctionNoProtoType>(NewFuncType) &&
Douglas Gregorc8376562009-03-06 22:43:54 +00002648 (OldProto = dyn_cast<FunctionProtoType>(OldFuncType))) {
Douglas Gregor68719812009-02-16 18:20:44 +00002649 // The old declaration provided a function prototype, but the
2650 // new declaration does not. Merge in the prototype.
Sebastian Redl465226e2009-05-27 22:11:52 +00002651 assert(!OldProto->hasExceptionSpec() && "Exception spec in C");
Stephen Hines651f13c2014-04-23 16:59:28 -07002652 SmallVector<QualType, 16> ParamTypes(OldProto->param_types());
2653 NewQType =
2654 Context.getFunctionType(NewFuncType->getReturnType(), ParamTypes,
2655 OldProto->getExtProtoInfo());
Douglas Gregor68719812009-02-16 18:20:44 +00002656 New->setType(NewQType);
Anders Carlssona75e8532009-05-14 21:46:00 +00002657 New->setHasInheritedPrototype();
Douglas Gregor450da982009-02-16 20:58:07 +00002658
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002659 // Synthesize parameters with the same types.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002660 SmallVector<ParmVarDecl*, 16> Params;
Stephen Hines651f13c2014-04-23 16:59:28 -07002661 for (const auto &ParamType : OldProto->param_types()) {
2662 ParmVarDecl *Param = ParmVarDecl::Create(Context, New, SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002663 SourceLocation(), nullptr,
2664 ParamType, /*TInfo=*/nullptr,
2665 SC_None, nullptr);
John McCallfb44de92011-05-01 22:35:37 +00002666 Param->setScopeInfo(0, Params.size());
Douglas Gregor450da982009-02-16 20:58:07 +00002667 Param->setImplicit();
2668 Params.push_back(Param);
2669 }
2670
David Blaikie4278c652011-09-21 18:16:56 +00002671 New->setParams(Params);
Mike Stump1eb44332009-09-09 15:08:12 +00002672 }
Douglas Gregor68719812009-02-16 18:20:44 +00002673
Richard Smithdd9459f2013-08-13 18:18:50 +00002674 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
Chris Lattner04421082008-04-08 04:40:51 +00002675 }
Chris Lattnere3995fe2007-11-06 06:07:26 +00002676
Douglas Gregorc8376562009-03-06 22:43:54 +00002677 // GNU C permits a K&R definition to follow a prototype declaration
2678 // if the declared types of the parameters in the K&R definition
2679 // match the types in the prototype declaration, even when the
2680 // promoted types of the parameters from the K&R definition differ
2681 // from the types in the prototype. GCC then keeps the types from
2682 // the prototype.
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002683 //
2684 // If a variadic prototype is followed by a non-variadic K&R definition,
2685 // the K&R definition becomes variadic. This is sort of an edge case, but
2686 // it's legal per the standard depending on how you read C99 6.7.5.3p15 and
2687 // C99 6.9.1p8.
David Blaikie4e4d0842012-03-11 07:00:24 +00002688 if (!getLangOpts().CPlusPlus &&
Douglas Gregorc8376562009-03-06 22:43:54 +00002689 Old->hasPrototype() && !New->hasPrototype() &&
John McCall183700f2009-09-21 23:43:11 +00002690 New->getType()->getAs<FunctionProtoType>() &&
Douglas Gregorc8376562009-03-06 22:43:54 +00002691 Old->getNumParams() == New->getNumParams()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002692 SmallVector<QualType, 16> ArgTypes;
2693 SmallVector<GNUCompatibleParamWarning, 16> Warnings;
Mike Stump1eb44332009-09-09 15:08:12 +00002694 const FunctionProtoType *OldProto
John McCall183700f2009-09-21 23:43:11 +00002695 = Old->getType()->getAs<FunctionProtoType>();
Mike Stump1eb44332009-09-09 15:08:12 +00002696 const FunctionProtoType *NewProto
John McCall183700f2009-09-21 23:43:11 +00002697 = New->getType()->getAs<FunctionProtoType>();
Mike Stump1eb44332009-09-09 15:08:12 +00002698
Douglas Gregorc8376562009-03-06 22:43:54 +00002699 // Determine whether this is the GNU C extension.
Stephen Hines651f13c2014-04-23 16:59:28 -07002700 QualType MergedReturn = Context.mergeTypes(OldProto->getReturnType(),
2701 NewProto->getReturnType());
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002702 bool LooseCompatible = !MergedReturn.isNull();
Mike Stump1eb44332009-09-09 15:08:12 +00002703 for (unsigned Idx = 0, End = Old->getNumParams();
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002704 LooseCompatible && Idx != End; ++Idx) {
Douglas Gregorc8376562009-03-06 22:43:54 +00002705 ParmVarDecl *OldParm = Old->getParamDecl(Idx);
2706 ParmVarDecl *NewParm = New->getParamDecl(Idx);
Mike Stump1eb44332009-09-09 15:08:12 +00002707 if (Context.typesAreCompatible(OldParm->getType(),
Stephen Hines651f13c2014-04-23 16:59:28 -07002708 NewProto->getParamType(Idx))) {
Douglas Gregorc8376562009-03-06 22:43:54 +00002709 ArgTypes.push_back(NewParm->getType());
2710 } else if (Context.typesAreCompatible(OldParm->getType(),
Douglas Gregor447234d2010-07-29 15:18:02 +00002711 NewParm->getType(),
2712 /*CompareUnqualified=*/true)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07002713 GNUCompatibleParamWarning Warn = { OldParm, NewParm,
2714 NewProto->getParamType(Idx) };
Douglas Gregorc8376562009-03-06 22:43:54 +00002715 Warnings.push_back(Warn);
2716 ArgTypes.push_back(NewParm->getType());
2717 } else
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002718 LooseCompatible = false;
Douglas Gregorc8376562009-03-06 22:43:54 +00002719 }
2720
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002721 if (LooseCompatible) {
Douglas Gregorc8376562009-03-06 22:43:54 +00002722 for (unsigned Warn = 0; Warn < Warnings.size(); ++Warn) {
2723 Diag(Warnings[Warn].NewParm->getLocation(),
2724 diag::ext_param_promoted_not_compatible_with_prototype)
2725 << Warnings[Warn].PromotedType
2726 << Warnings[Warn].OldParm->getType();
Douglas Gregor447234d2010-07-29 15:18:02 +00002727 if (Warnings[Warn].OldParm->getLocation().isValid())
2728 Diag(Warnings[Warn].OldParm->getLocation(),
2729 diag::note_previous_declaration);
Douglas Gregorc8376562009-03-06 22:43:54 +00002730 }
2731
Richard Smithdd9459f2013-08-13 18:18:50 +00002732 if (MergeTypeWithOld)
2733 New->setType(Context.getFunctionType(MergedReturn, ArgTypes,
2734 OldProto->getExtProtoInfo()));
2735 return MergeCompatibleFunctionDecls(New, Old, S, MergeTypeWithOld);
Douglas Gregorc8376562009-03-06 22:43:54 +00002736 }
2737
2738 // Fall through to diagnose conflicting types.
2739 }
2740
John McCall088831d2013-04-14 08:50:55 +00002741 // A function that has already been declared has been redeclared or
2742 // defined with a different type; show an appropriate diagnostic.
2743
2744 // If the previous declaration was an implicitly-generated builtin
2745 // declaration, then at the very least we should use a specialized note.
2746 unsigned BuiltinID;
2747 if (Old->isImplicit() && (BuiltinID = Old->getBuiltinID())) {
2748 // If it's actually a library-defined builtin function like 'malloc'
2749 // or 'printf', just warn about the incompatible redeclaration.
Douglas Gregorcda9c672009-02-16 17:45:42 +00002750 if (Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) {
Douglas Gregorcda9c672009-02-16 17:45:42 +00002751 Diag(New->getLocation(), diag::warn_redecl_library_builtin) << New;
Stephen Hines651f13c2014-04-23 16:59:28 -07002752 Diag(OldLocation, diag::note_previous_builtin_declaration)
Douglas Gregorcda9c672009-02-16 17:45:42 +00002753 << Old << Old->getType();
John McCall088831d2013-04-14 08:50:55 +00002754
2755 // If this is a global redeclaration, just forget hereafter
2756 // about the "builtin-ness" of the function.
2757 //
2758 // Doing this for local extern declarations is problematic. If
2759 // the builtin declaration remains visible, a second invalid
2760 // local declaration will produce a hard error; if it doesn't
2761 // remain visible, a single bogus local redeclaration (which is
2762 // actually only a warning) could break all the downstream code.
Richard Smitha41c97a2013-09-20 01:15:31 +00002763 if (!New->getLexicalDeclContext()->isFunctionOrMethod())
John McCall088831d2013-04-14 08:50:55 +00002764 New->getIdentifier()->setBuiltinID(Builtin::NotBuiltin);
2765
Douglas Gregor374e1562009-03-23 17:47:24 +00002766 return false;
Douglas Gregorcda9c672009-02-16 17:45:42 +00002767 }
Steve Naroff837618c2008-01-16 15:01:34 +00002768
Douglas Gregorcda9c672009-02-16 17:45:42 +00002769 PrevDiag = diag::note_previous_builtin_declaration;
2770 }
2771
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00002772 Diag(New->getLocation(), diag::err_conflicting_types) << New->getDeclName();
Stephen Hines651f13c2014-04-23 16:59:28 -07002773 Diag(OldLocation, PrevDiag) << Old << Old->getType();
Douglas Gregorcda9c672009-02-16 17:45:42 +00002774 return true;
Reid Spencer5f016e22007-07-11 17:01:13 +00002775}
2776
Douglas Gregor04495c82009-02-24 01:23:02 +00002777/// \brief Completes the merge of two function declarations that are
Mike Stump1eb44332009-09-09 15:08:12 +00002778/// known to be compatible.
Douglas Gregor04495c82009-02-24 01:23:02 +00002779///
2780/// This routine handles the merging of attributes and other
Alp Toker89673e02013-10-22 09:00:49 +00002781/// properties of function declarations from the old declaration to
Douglas Gregor04495c82009-02-24 01:23:02 +00002782/// the new declaration, once we know that New is in fact a
2783/// redeclaration of Old.
2784///
2785/// \returns false
James Molloy9cda03f2012-03-13 08:55:35 +00002786bool Sema::MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old,
Richard Smithdd9459f2013-08-13 18:18:50 +00002787 Scope *S, bool MergeTypeWithOld) {
Douglas Gregor04495c82009-02-24 01:23:02 +00002788 // Merge the attributes
Douglas Gregor27c6da22012-01-01 20:30:41 +00002789 mergeDeclAttributes(New, Old);
Douglas Gregor04495c82009-02-24 01:23:02 +00002790
Douglas Gregor04495c82009-02-24 01:23:02 +00002791 // Merge "pure" flag.
2792 if (Old->isPure())
2793 New->setPure();
2794
Rafael Espindola8dbf6972012-11-25 14:07:59 +00002795 // Merge "used" flag.
Rafael Espindolae7bd89a2013-10-23 16:46:34 +00002796 if (Old->getMostRecentDecl()->isUsed(false))
2797 New->setIsUsed();
Rafael Espindola8dbf6972012-11-25 14:07:59 +00002798
John McCalleca5d222011-03-02 04:00:57 +00002799 // Merge attributes from the parameters. These can mismatch with K&R
2800 // declarations.
2801 if (New->getNumParams() == Old->getNumParams())
2802 for (unsigned i = 0, e = New->getNumParams(); i != e; ++i)
2803 mergeParamDeclAttributes(New->getParamDecl(i), Old->getParamDecl(i),
Richard Smith3a2b7a12013-01-28 22:42:45 +00002804 *this);
John McCalleca5d222011-03-02 04:00:57 +00002805
David Blaikie4e4d0842012-03-11 07:00:24 +00002806 if (getLangOpts().CPlusPlus)
James Molloy9cda03f2012-03-13 08:55:35 +00002807 return MergeCXXFunctionDecl(New, Old, S);
Douglas Gregor04495c82009-02-24 01:23:02 +00002808
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00002809 // Merge the function types so the we get the composite types for the return
Richard Smithdd9459f2013-08-13 18:18:50 +00002810 // and argument types. Per C11 6.2.7/4, only update the type if the old decl
2811 // was visible.
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00002812 QualType Merged = Context.mergeTypes(Old->getType(), New->getType());
Richard Smithdd9459f2013-08-13 18:18:50 +00002813 if (!Merged.isNull() && MergeTypeWithOld)
Rafael Espindola8b8a09e2012-11-29 16:09:03 +00002814 New->setType(Merged);
2815
Douglas Gregor04495c82009-02-24 01:23:02 +00002816 return false;
2817}
2818
John McCallf85e1932011-06-15 23:02:42 +00002819
John McCalleca5d222011-03-02 04:00:57 +00002820void Sema::mergeObjCMethodDecls(ObjCMethodDecl *newMethod,
Douglas Gregor27c6da22012-01-01 20:30:41 +00002821 ObjCMethodDecl *oldMethod) {
John McCall6c2c2502011-07-22 02:45:48 +00002822
Fariborz Jahanian1ea67442012-06-05 21:14:46 +00002823 // Merge the attributes, including deprecated/unavailable
Ted Kremenekcb344392013-04-06 00:34:27 +00002824 AvailabilityMergeKind MergeKind =
2825 isa<ObjCImplDecl>(newMethod->getDeclContext()) ? AMK_Redeclaration
2826 : AMK_Override;
2827 mergeDeclAttributes(newMethod, oldMethod, MergeKind);
John McCalleca5d222011-03-02 04:00:57 +00002828
2829 // Merge attributes from the parameters.
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00002830 ObjCMethodDecl::param_const_iterator oi = oldMethod->param_begin(),
2831 oe = oldMethod->param_end();
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +00002832 for (ObjCMethodDecl::param_iterator
John McCalleca5d222011-03-02 04:00:57 +00002833 ni = newMethod->param_begin(), ne = newMethod->param_end();
Douglas Gregor0a4a23a2012-05-17 23:13:29 +00002834 ni != ne && oi != oe; ++ni, ++oi)
Richard Smith3a2b7a12013-01-28 22:42:45 +00002835 mergeParamDeclAttributes(*ni, *oi, *this);
John McCall6c2c2502011-07-22 02:45:48 +00002836
Douglas Gregorf4d918f2013-01-15 22:43:08 +00002837 CheckObjCMethodOverride(newMethod, oldMethod);
John McCalleca5d222011-03-02 04:00:57 +00002838}
2839
Sebastian Redl60618fa2011-03-12 11:50:43 +00002840/// MergeVarDeclTypes - We parsed a variable 'New' which has the same name and
2841/// scope as a previous declaration 'Old'. Figure out how to merge their types,
Richard Smith34b41d92011-02-20 03:19:35 +00002842/// emitting diagnostics as appropriate.
2843///
2844/// Declarations using the auto type specifier (C++ [decl.spec.auto]) call back
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00002845/// to here in AddInitializerToDecl. We can't check them before the initializer
2846/// is attached.
Richard Smithdd9459f2013-08-13 18:18:50 +00002847void Sema::MergeVarDeclTypes(VarDecl *New, VarDecl *Old,
2848 bool MergeTypeWithOld) {
Richard Smith34b41d92011-02-20 03:19:35 +00002849 if (New->isInvalidDecl() || Old->isInvalidDecl())
2850 return;
2851
2852 QualType MergedT;
David Blaikie4e4d0842012-03-11 07:00:24 +00002853 if (getLangOpts().CPlusPlus) {
Richard Smithdc7a4f52013-04-30 13:56:41 +00002854 if (New->getType()->isUndeducedType()) {
Richard Smith34b41d92011-02-20 03:19:35 +00002855 // We don't know what the new type is until the initializer is attached.
2856 return;
Sebastian Redl60618fa2011-03-12 11:50:43 +00002857 } else if (Context.hasSameType(New->getType(), Old->getType())) {
2858 // These could still be something that needs exception specs checked.
2859 return MergeVarDeclExceptionSpecs(New, Old);
2860 }
Richard Smith34b41d92011-02-20 03:19:35 +00002861 // C++ [basic.link]p10:
2862 // [...] the types specified by all declarations referring to a given
2863 // object or function shall be identical, except that declarations for an
2864 // array object can specify array types that differ by the presence or
2865 // absence of a major array bound (8.3.4).
2866 else if (Old->getType()->isIncompleteArrayType() &&
2867 New->getType()->isArrayType()) {
Eli Friedman6febf122012-12-13 01:43:21 +00002868 const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
2869 const ArrayType *NewArray = Context.getAsArrayType(New->getType());
2870 if (Context.hasSameType(OldArray->getElementType(),
2871 NewArray->getElementType()))
Richard Smith34b41d92011-02-20 03:19:35 +00002872 MergedT = New->getType();
2873 } else if (Old->getType()->isArrayType() &&
Richard Smitha41c97a2013-09-20 01:15:31 +00002874 New->getType()->isIncompleteArrayType()) {
Eli Friedman6febf122012-12-13 01:43:21 +00002875 const ArrayType *OldArray = Context.getAsArrayType(Old->getType());
2876 const ArrayType *NewArray = Context.getAsArrayType(New->getType());
2877 if (Context.hasSameType(OldArray->getElementType(),
2878 NewArray->getElementType()))
Richard Smith34b41d92011-02-20 03:19:35 +00002879 MergedT = Old->getType();
Richard Smitha41c97a2013-09-20 01:15:31 +00002880 } else if (New->getType()->isObjCObjectPointerType() &&
2881 Old->getType()->isObjCObjectPointerType()) {
2882 MergedT = Context.mergeObjCGCQualifiers(New->getType(),
2883 Old->getType());
Richard Smith34b41d92011-02-20 03:19:35 +00002884 }
2885 } else {
Richard Smitha41c97a2013-09-20 01:15:31 +00002886 // C 6.2.7p2:
2887 // All declarations that refer to the same object or function shall have
2888 // compatible type.
Richard Smith34b41d92011-02-20 03:19:35 +00002889 MergedT = Context.mergeTypes(New->getType(), Old->getType());
2890 }
2891 if (MergedT.isNull()) {
Richard Smithdd9459f2013-08-13 18:18:50 +00002892 // It's OK if we couldn't merge types if either type is dependent, for a
2893 // block-scope variable. In other cases (static data members of class
2894 // templates, variable templates, ...), we require the types to be
2895 // equivalent.
2896 // FIXME: The C++ standard doesn't say anything about this.
2897 if ((New->getType()->isDependentType() ||
2898 Old->getType()->isDependentType()) && New->isLocalVarDecl()) {
2899 // If the old type was dependent, we can't merge with it, so the new type
2900 // becomes dependent for now. We'll reproduce the original type when we
2901 // instantiate the TypeSourceInfo for the variable.
2902 if (!New->getType()->isDependentType() && MergeTypeWithOld)
2903 New->setType(Context.DependentTy);
2904 return;
2905 }
2906
2907 // FIXME: Even if this merging succeeds, some other non-visible declaration
2908 // of this variable might have an incompatible type. For instance:
2909 //
2910 // extern int arr[];
2911 // void f() { extern int arr[2]; }
2912 // void g() { extern int arr[3]; }
2913 //
2914 // Neither C nor C++ requires a diagnostic for this, but we should still try
2915 // to diagnose it.
Richard Smith34b41d92011-02-20 03:19:35 +00002916 Diag(New->getLocation(), diag::err_redefinition_different_type)
David Blaikiea405b252012-09-20 18:38:57 +00002917 << New->getDeclName() << New->getType() << Old->getType();
Richard Smith34b41d92011-02-20 03:19:35 +00002918 Diag(Old->getLocation(), diag::note_previous_definition);
2919 return New->setInvalidDecl();
2920 }
John McCall5b8740f2013-04-01 18:34:28 +00002921
2922 // Don't actually update the type on the new declaration if the old
Richard Smith99a72382013-09-03 21:00:58 +00002923 // declaration was an extern declaration in a different scope.
Richard Smithdd9459f2013-08-13 18:18:50 +00002924 if (MergeTypeWithOld)
John McCall5b8740f2013-04-01 18:34:28 +00002925 New->setType(MergedT);
Richard Smith34b41d92011-02-20 03:19:35 +00002926}
2927
Richard Smith99a72382013-09-03 21:00:58 +00002928static bool mergeTypeWithPrevious(Sema &S, VarDecl *NewVD, VarDecl *OldVD,
2929 LookupResult &Previous) {
2930 // C11 6.2.7p4:
2931 // For an identifier with internal or external linkage declared
2932 // in a scope in which a prior declaration of that identifier is
2933 // visible, if the prior declaration specifies internal or
2934 // external linkage, the type of the identifier at the later
2935 // declaration becomes the composite type.
2936 //
2937 // If the variable isn't visible, we do not merge with its type.
2938 if (Previous.isShadowed())
2939 return false;
2940
2941 if (S.getLangOpts().CPlusPlus) {
2942 // C++11 [dcl.array]p3:
2943 // If there is a preceding declaration of the entity in the same
2944 // scope in which the bound was specified, an omitted array bound
2945 // is taken to be the same as in that earlier declaration.
2946 return NewVD->isPreviousDeclInSameBlockScope() ||
2947 (!OldVD->getLexicalDeclContext()->isFunctionOrMethod() &&
2948 !NewVD->getLexicalDeclContext()->isFunctionOrMethod());
2949 } else {
2950 // If the old declaration was function-local, don't merge with its
2951 // type unless we're in the same function.
2952 return !OldVD->getLexicalDeclContext()->isFunctionOrMethod() ||
2953 OldVD->getLexicalDeclContext() == NewVD->getLexicalDeclContext();
2954 }
2955}
2956
Reid Spencer5f016e22007-07-11 17:01:13 +00002957/// MergeVarDecl - We just parsed a variable 'New' which has the same name
2958/// and scope as a previous declaration 'Old'. Figure out how to resolve this
2959/// situation, merging decls or emitting diagnostics as appropriate.
2960///
Mike Stump1eb44332009-09-09 15:08:12 +00002961/// Tentative definition rules (C99 6.9.2p2) are checked by
2962/// FinalizeDeclaratorGroup. Unfortunately, we can't analyze tentative
Steve Naroffff9eb1f2008-08-08 17:50:35 +00002963/// definitions here, since the initializer hasn't been attached.
Mike Stump1eb44332009-09-09 15:08:12 +00002964///
Richard Smith99a72382013-09-03 21:00:58 +00002965void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) {
John McCall68263142009-11-18 22:49:29 +00002966 // If the new decl is already invalid, don't do any other checking.
2967 if (New->isInvalidDecl())
2968 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002969
Stephen Hines651f13c2014-04-23 16:59:28 -07002970 VarTemplateDecl *NewTemplate = New->getDescribedVarTemplate();
2971
Larisse Voufo4a919892013-08-14 03:09:19 +00002972 // Verify the old decl was also a variable or variable template.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002973 VarDecl *Old = nullptr;
2974 VarTemplateDecl *OldTemplate = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07002975 if (Previous.isSingleResult()) {
2976 if (NewTemplate) {
2977 OldTemplate = dyn_cast<VarTemplateDecl>(Previous.getFoundDecl());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07002978 Old = OldTemplate ? OldTemplate->getTemplatedDecl() : nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07002979 } else
2980 Old = dyn_cast<VarDecl>(Previous.getFoundDecl());
Larisse Voufo4a919892013-08-14 03:09:19 +00002981 }
2982 if (!Old) {
Chris Lattnerf3a41af2008-11-20 06:38:18 +00002983 Diag(New->getLocation(), diag::err_redefinition_different_kind)
Chris Lattner08631c52008-11-23 21:45:46 +00002984 << New->getDeclName();
John McCall68263142009-11-18 22:49:29 +00002985 Diag(Previous.getRepresentativeDecl()->getLocation(),
2986 diag::note_previous_definition);
Chris Lattnereaaebc72009-04-25 08:06:05 +00002987 return New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00002988 }
Chris Lattnerddee4232008-03-03 03:28:21 +00002989
Rafael Espindola90cc3902013-04-15 12:49:13 +00002990 if (!shouldLinkPossiblyHiddenDecl(Old, New))
2991 return;
2992
Stephen Hines651f13c2014-04-23 16:59:28 -07002993 // Ensure the template parameters are compatible.
2994 if (NewTemplate &&
2995 !TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
2996 OldTemplate->getTemplateParameters(),
2997 /*Complain=*/true, TPL_TemplateMatch))
2998 return;
2999
Douglas Gregor7f6ff022010-08-30 14:32:14 +00003000 // C++ [class.mem]p1:
3001 // A member shall not be declared twice in the member-specification [...]
3002 //
3003 // Here, we need only consider static data members.
3004 if (Old->isStaticDataMember() && !New->isOutOfLine()) {
3005 Diag(New->getLocation(), diag::err_duplicate_member)
3006 << New->getIdentifier();
3007 Diag(Old->getLocation(), diag::note_previous_declaration);
3008 New->setInvalidDecl();
3009 }
3010
Douglas Gregor27c6da22012-01-01 20:30:41 +00003011 mergeDeclAttributes(New, Old);
David Blaikied662a792011-10-19 22:56:21 +00003012 // Warn if an already-declared variable is made a weak_import in a subsequent
3013 // declaration
Stephen Hines651f13c2014-04-23 16:59:28 -07003014 if (New->hasAttr<WeakImportAttr>() &&
Fariborz Jahanianab27d6e2011-06-20 17:50:03 +00003015 Old->getStorageClass() == SC_None &&
Stephen Hines651f13c2014-04-23 16:59:28 -07003016 !Old->hasAttr<WeakImportAttr>()) {
Fariborz Jahaniand5431302011-06-22 22:08:50 +00003017 Diag(New->getLocation(), diag::warn_weak_import) << New->getDeclName();
3018 Diag(Old->getLocation(), diag::note_previous_definition);
3019 // Remove weak_import attribute on new declaration.
Fariborz Jahanianc3ca14d2011-06-23 17:50:10 +00003020 New->dropAttr<WeakImportAttr>();
Fariborz Jahaniand5431302011-06-22 22:08:50 +00003021 }
Chris Lattnerddee4232008-03-03 03:28:21 +00003022
Richard Smith34b41d92011-02-20 03:19:35 +00003023 // Merge the types.
Richard Smith99a72382013-09-03 21:00:58 +00003024 MergeVarDeclTypes(New, Old, mergeTypeWithPrevious(*this, New, Old, Previous));
3025
Richard Smith34b41d92011-02-20 03:19:35 +00003026 if (New->isInvalidDecl())
3027 return;
Douglas Gregor656de632009-03-11 23:52:16 +00003028
Rafael Espindolaea4b1112013-04-04 21:21:25 +00003029 // [dcl.stc]p8: Check if we have a non-static decl followed by a static.
John McCalld931b082010-08-26 03:08:43 +00003030 if (New->getStorageClass() == SC_Static &&
Rafael Espindolaea4b1112013-04-04 21:21:25 +00003031 !New->isStaticDataMember() &&
Rafael Espindola181e3ec2013-05-13 00:12:11 +00003032 Old->hasExternalFormalLinkage()) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003033 Diag(New->getLocation(), diag::err_static_non_static) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00003034 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattnereaaebc72009-04-25 08:06:05 +00003035 return New->setInvalidDecl();
Steve Naroffb7b032e2008-01-30 00:44:01 +00003036 }
Mike Stump1eb44332009-09-09 15:08:12 +00003037 // C99 6.2.2p4:
Douglas Gregor5ef122e2009-03-19 22:01:50 +00003038 // For an identifier declared with the storage-class specifier
3039 // extern in a scope in which a prior declaration of that
3040 // identifier is visible,23) if the prior declaration specifies
3041 // internal or external linkage, the linkage of the identifier at
3042 // the later declaration is the same as the linkage specified at
3043 // the prior declaration. If no prior declaration is visible, or
3044 // if the prior declaration specifies no linkage, then the
3045 // identifier has external linkage.
Douglas Gregor38179b22009-03-23 16:17:01 +00003046 if (New->hasExternalStorage() && Old->hasLinkage())
Douglas Gregor5ef122e2009-03-19 22:01:50 +00003047 /* Okay */;
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003048 else if (New->getCanonicalDecl()->getStorageClass() != SC_Static &&
Rafael Espindolaea4b1112013-04-04 21:21:25 +00003049 !New->isStaticDataMember() &&
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003050 Old->getCanonicalDecl()->getStorageClass() == SC_Static) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00003051 Diag(New->getLocation(), diag::err_non_static_static) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00003052 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattnereaaebc72009-04-25 08:06:05 +00003053 return New->setInvalidDecl();
Steve Naroffb7b032e2008-01-30 00:44:01 +00003054 }
Daniel Dunbar5466c7b2009-04-14 02:25:56 +00003055
Argyrios Kyrtzidis6684d852011-01-31 07:04:46 +00003056 // Check if extern is followed by non-extern and vice-versa.
3057 if (New->hasExternalStorage() &&
3058 !Old->hasLinkage() && Old->isLocalVarDecl()) {
3059 Diag(New->getLocation(), diag::err_extern_non_extern) << New->getDeclName();
3060 Diag(Old->getLocation(), diag::note_previous_definition);
3061 return New->setInvalidDecl();
3062 }
Rafael Espindola80a86892013-04-04 02:47:57 +00003063 if (Old->hasLinkage() && New->isLocalVarDecl() &&
3064 !New->hasExternalStorage()) {
Argyrios Kyrtzidis6684d852011-01-31 07:04:46 +00003065 Diag(New->getLocation(), diag::err_non_extern_extern) << New->getDeclName();
3066 Diag(Old->getLocation(), diag::note_previous_definition);
3067 return New->setInvalidDecl();
3068 }
3069
Steve Naroff094cefb2008-09-17 14:05:40 +00003070 // Variables with external linkage are analyzed in FinalizeDeclaratorGroup.
Mike Stump1eb44332009-09-09 15:08:12 +00003071
Daniel Dunbar5466c7b2009-04-14 02:25:56 +00003072 // FIXME: The test for external storage here seems wrong? We still
3073 // need to check for mismatches.
3074 if (!New->hasExternalStorage() && !New->isFileVarDecl() &&
Douglas Gregor656de632009-03-11 23:52:16 +00003075 // Don't complain about out-of-line definitions of static members.
3076 !(Old->getLexicalDeclContext()->isRecord() &&
3077 !New->getLexicalDeclContext()->isRecord())) {
Chris Lattner08631c52008-11-23 21:45:46 +00003078 Diag(New->getLocation(), diag::err_redefinition) << New->getDeclName();
Chris Lattner5f4a6822008-11-23 23:12:31 +00003079 Diag(Old->getLocation(), diag::note_previous_definition);
Chris Lattnereaaebc72009-04-25 08:06:05 +00003080 return New->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00003081 }
Douglas Gregor275a3692009-03-10 23:43:53 +00003082
Richard Smith38afbc72013-04-13 02:43:54 +00003083 if (New->getTLSKind() != Old->getTLSKind()) {
3084 if (!Old->getTLSKind()) {
3085 Diag(New->getLocation(), diag::err_thread_non_thread) << New->getDeclName();
3086 Diag(Old->getLocation(), diag::note_previous_declaration);
3087 } else if (!New->getTLSKind()) {
3088 Diag(New->getLocation(), diag::err_non_thread_thread) << New->getDeclName();
3089 Diag(Old->getLocation(), diag::note_previous_declaration);
3090 } else {
3091 // Do not allow redeclaration to change the variable between requiring
3092 // static and dynamic initialization.
3093 // FIXME: GCC allows this, but uses the TLS keyword on the first
3094 // declaration to determine the kind. Do we need to be compatible here?
3095 Diag(New->getLocation(), diag::err_thread_thread_different_kind)
3096 << New->getDeclName() << (New->getTLSKind() == VarDecl::TLS_Dynamic);
3097 Diag(Old->getLocation(), diag::note_previous_declaration);
3098 }
Eli Friedman63054b32009-04-19 20:27:55 +00003099 }
3100
Sebastian Redl4cae1b32010-02-02 18:35:11 +00003101 // C++ doesn't have tentative definitions, so go right ahead and check here.
3102 const VarDecl *Def;
David Blaikie4e4d0842012-03-11 07:00:24 +00003103 if (getLangOpts().CPlusPlus &&
Sebastian Redl6c048a92010-02-03 02:08:48 +00003104 New->isThisDeclarationADefinition() == VarDecl::Definition &&
Sebastian Redl4cae1b32010-02-02 18:35:11 +00003105 (Def = Old->getDefinition())) {
Larisse Voufoef4579c2013-08-06 01:03:05 +00003106 Diag(New->getLocation(), diag::err_redefinition) << New;
Sebastian Redl4cae1b32010-02-02 18:35:11 +00003107 Diag(Def->getLocation(), diag::note_previous_definition);
3108 New->setInvalidDecl();
3109 return;
3110 }
Rafael Espindolae57e3d32012-12-27 03:56:20 +00003111
Rafael Espindola950fee22013-02-14 01:18:37 +00003112 if (haveIncompatibleLanguageLinkages(Old, New)) {
Rafael Espindolae57e3d32012-12-27 03:56:20 +00003113 Diag(New->getLocation(), diag::err_different_language_linkage) << New;
3114 Diag(Old->getLocation(), diag::note_previous_definition);
3115 New->setInvalidDecl();
3116 return;
3117 }
3118
Rafael Espindola8dbf6972012-11-25 14:07:59 +00003119 // Merge "used" flag.
Rafael Espindolae7bd89a2013-10-23 16:46:34 +00003120 if (Old->getMostRecentDecl()->isUsed(false))
3121 New->setIsUsed();
Rafael Espindola8dbf6972012-11-25 14:07:59 +00003122
Douglas Gregor275a3692009-03-10 23:43:53 +00003123 // Keep a chain of previous declarations.
Rafael Espindolabc650912013-10-17 15:37:26 +00003124 New->setPreviousDecl(Old);
Stephen Hines651f13c2014-04-23 16:59:28 -07003125 if (NewTemplate)
3126 NewTemplate->setPreviousDecl(OldTemplate);
John McCall46460a62010-01-20 21:53:11 +00003127
3128 // Inherit access appropriately.
3129 New->setAccess(Old->getAccess());
Stephen Hines651f13c2014-04-23 16:59:28 -07003130 if (NewTemplate)
3131 NewTemplate->setAccess(New->getAccess());
Reid Spencer5f016e22007-07-11 17:01:13 +00003132}
3133
3134/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
3135/// no declarator (e.g. "struct foo;") is parsed.
John McCalld226f652010-08-21 09:40:31 +00003136Decl *Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS,
John McCallac4df242011-03-22 23:00:04 +00003137 DeclSpec &DS) {
Benjamin Kramer5354e772012-08-23 23:38:35 +00003138 return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg());
Chandler Carruth0f4be742011-05-03 18:35:10 +00003139}
3140
Stephen Hines651f13c2014-04-23 16:59:28 -07003141static void HandleTagNumbering(Sema &S, const TagDecl *Tag, Scope *TagScope) {
Reid Kleckner942f9fe2013-09-10 20:14:30 +00003142 if (!S.Context.getLangOpts().CPlusPlus)
3143 return;
3144
Eli Friedman5e867c82013-07-10 00:30:46 +00003145 if (isa<CXXRecordDecl>(Tag->getParent())) {
3146 // If this tag is the direct child of a class, number it if
3147 // it is anonymous.
3148 if (!Tag->getName().empty() || Tag->getTypedefNameForAnonDecl())
3149 return;
3150 MangleNumberingContext &MCtx =
3151 S.Context.getManglingNumberContext(Tag->getParent());
Stephen Hines651f13c2014-04-23 16:59:28 -07003152 S.Context.setManglingNumber(
3153 Tag, MCtx.getManglingNumber(Tag, TagScope->getMSLocalManglingNumber()));
Eli Friedman5e867c82013-07-10 00:30:46 +00003154 return;
3155 }
3156
3157 // If this tag isn't a direct child of a class, number it if it is local.
3158 Decl *ManglingContextDecl;
3159 if (MangleNumberingContext *MCtx =
3160 S.getCurrentMangleNumberContext(Tag->getDeclContext(),
3161 ManglingContextDecl)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003162 S.Context.setManglingNumber(
3163 Tag,
3164 MCtx->getManglingNumber(Tag, TagScope->getMSLocalManglingNumber()));
Eli Friedman5e867c82013-07-10 00:30:46 +00003165 }
3166}
3167
Chandler Carruth0f4be742011-05-03 18:35:10 +00003168/// ParsedFreeStandingDeclSpec - This method is invoked when a declspec with
Richard Smithc7f81162013-03-18 22:52:47 +00003169/// no declarator (e.g. "struct foo;") is parsed. It also accepts template
Chandler Carruth0f4be742011-05-03 18:35:10 +00003170/// parameters to cope with template friend declarations.
3171Decl *Sema::ParsedFreeStandingDeclSpec(Scope *S, AccessSpecifier AS,
3172 DeclSpec &DS,
Richard Smithc7f81162013-03-18 22:52:47 +00003173 MultiTemplateParamsArg TemplateParams,
3174 bool IsExplicitInstantiation) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003175 Decl *TagD = nullptr;
3176 TagDecl *Tag = nullptr;
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00003177 if (DS.getTypeSpecType() == DeclSpec::TST_class ||
3178 DS.getTypeSpecType() == DeclSpec::TST_struct ||
Joao Matos6666ed42012-08-31 18:45:21 +00003179 DS.getTypeSpecType() == DeclSpec::TST_interface ||
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00003180 DS.getTypeSpecType() == DeclSpec::TST_union ||
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00003181 DS.getTypeSpecType() == DeclSpec::TST_enum) {
John McCallb3d87482010-08-24 05:47:05 +00003182 TagD = DS.getRepAsDecl();
John McCalle3af0232009-10-07 23:34:25 +00003183
3184 if (!TagD) // We probably had an error
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003185 return nullptr;
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00003186
John McCall67d1a672009-08-06 02:15:43 +00003187 // Note that the above type specs guarantee that the
3188 // type rep is a Decl, whereas in many of the others
3189 // it's a Type.
Peter Collingbourne0661bd0c2011-10-23 17:07:16 +00003190 if (isa<TagDecl>(TagD))
3191 Tag = cast<TagDecl>(TagD);
3192 else if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(TagD))
3193 Tag = CTD->getTemplatedDecl();
Douglas Gregor4d9a16f2009-05-12 23:25:50 +00003194 }
Douglas Gregor1a51b4a2009-02-09 15:09:02 +00003195
Argyrios Kyrtzidis216f78b2012-03-09 20:10:30 +00003196 if (Tag) {
Stephen Hines651f13c2014-04-23 16:59:28 -07003197 HandleTagNumbering(*this, Tag, S);
Argyrios Kyrtzidis717a20b2011-09-30 22:11:31 +00003198 Tag->setFreeStanding();
Argyrios Kyrtzidis216f78b2012-03-09 20:10:30 +00003199 if (Tag->isInvalidDecl())
3200 return Tag;
3201 }
Argyrios Kyrtzidis717a20b2011-09-30 22:11:31 +00003202
Nuno Lopes0a8bab02009-12-17 11:35:26 +00003203 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
3204 // Enforce C99 6.7.3p2: "Types other than pointer types derived from object
3205 // or incomplete types shall not be restrict-qualified."
3206 if (TypeQuals & DeclSpec::TQ_restrict)
3207 Diag(DS.getRestrictSpecLoc(),
3208 diag::err_typecheck_invalid_restrict_not_pointer_noarg)
3209 << DS.getSourceRange();
3210 }
3211
Richard Smithaf1fc7a2011-08-15 21:04:07 +00003212 if (DS.isConstexprSpecified()) {
3213 // C++0x [dcl.constexpr]p1: constexpr can only be applied to declarations
3214 // and definitions of functions and variables.
3215 if (Tag)
3216 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_tag)
3217 << (DS.getTypeSpecType() == DeclSpec::TST_class ? 0 :
3218 DS.getTypeSpecType() == DeclSpec::TST_struct ? 1 :
Joao Matos6666ed42012-08-31 18:45:21 +00003219 DS.getTypeSpecType() == DeclSpec::TST_interface ? 2 :
3220 DS.getTypeSpecType() == DeclSpec::TST_union ? 3 : 4);
Richard Smithaf1fc7a2011-08-15 21:04:07 +00003221 else
3222 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_no_declarators);
3223 // Don't emit warnings after this error.
3224 return TagD;
3225 }
3226
Richard Smithc7f81162013-03-18 22:52:47 +00003227 DiagnoseFunctionSpecifiers(DS);
3228
Douglas Gregord85bea22009-09-26 06:47:28 +00003229 if (DS.isFriendSpecified()) {
John McCall9a34edb2010-10-19 01:40:49 +00003230 // If we're dealing with a decl but not a TagDecl, assume that
3231 // whatever routines created it handled the friendship aspect.
3232 if (TagD && !Tag)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003233 return nullptr;
Chandler Carruth0f4be742011-05-03 18:35:10 +00003234 return ActOnFriendTypeDecl(S, DS, TemplateParams);
Douglas Gregord85bea22009-09-26 06:47:28 +00003235 }
John McCallac4df242011-03-22 23:00:04 +00003236
Richard Smithc7f81162013-03-18 22:52:47 +00003237 CXXScopeSpec &SS = DS.getTypeSpecScope();
3238 bool IsExplicitSpecialization =
3239 !TemplateParams.empty() && TemplateParams.back()->size() == 0;
3240 if (Tag && SS.isNotEmpty() && !Tag->isCompleteDefinition() &&
3241 !IsExplicitInstantiation && !IsExplicitSpecialization) {
3242 // Per C++ [dcl.type.elab]p1, a class declaration cannot have a
3243 // nested-name-specifier unless it is an explicit instantiation
3244 // or an explicit specialization.
3245 // Per C++ [dcl.enum]p1, an opaque-enum-declaration can't either.
3246 Diag(SS.getBeginLoc(), diag::err_standalone_class_nested_name_specifier)
3247 << (DS.getTypeSpecType() == DeclSpec::TST_class ? 0 :
3248 DS.getTypeSpecType() == DeclSpec::TST_struct ? 1 :
3249 DS.getTypeSpecType() == DeclSpec::TST_interface ? 2 :
3250 DS.getTypeSpecType() == DeclSpec::TST_union ? 3 : 4)
3251 << SS.getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003252 return nullptr;
Richard Smithc7f81162013-03-18 22:52:47 +00003253 }
3254
3255 // Track whether this decl-specifier declares anything.
3256 bool DeclaresAnything = true;
3257
3258 // Handle anonymous struct definitions.
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003259 if (RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag)) {
John McCall5e1cdac2011-10-07 06:10:15 +00003260 if (!Record->getDeclName() && Record->isCompleteDefinition() &&
Douglas Gregora71c1292009-03-06 23:06:59 +00003261 DS.getStorageClassSpec() != DeclSpec::SCS_typedef) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003262 if (getLangOpts().CPlusPlus ||
Douglas Gregora71c1292009-03-06 23:06:59 +00003263 Record->getDeclContext()->isRecord())
Stephen Hines651f13c2014-04-23 16:59:28 -07003264 return BuildAnonymousStructOrUnion(S, DS, AS, Record, Context.getPrintingPolicy());
Douglas Gregora71c1292009-03-06 23:06:59 +00003265
Richard Smithc7f81162013-03-18 22:52:47 +00003266 DeclaresAnything = false;
Douglas Gregora71c1292009-03-06 23:06:59 +00003267 }
Francois Pichet8e161ed2010-11-23 06:07:27 +00003268 }
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003269
Richard Smithc7f81162013-03-18 22:52:47 +00003270 // Check for Microsoft C extension: anonymous struct member.
David Blaikie4e4d0842012-03-11 07:00:24 +00003271 if (getLangOpts().MicrosoftExt && !getLangOpts().CPlusPlus &&
Francois Pichet8e161ed2010-11-23 06:07:27 +00003272 CurContext->isRecord() &&
3273 DS.getStorageClassSpec() == DeclSpec::SCS_unspecified) {
3274 // Handle 2 kinds of anonymous struct:
3275 // struct STRUCT;
3276 // and
3277 // STRUCT_TYPE; <- where STRUCT_TYPE is a typedef struct.
3278 RecordDecl *Record = dyn_cast_or_null<RecordDecl>(Tag);
John McCall5e1cdac2011-10-07 06:10:15 +00003279 if ((Record && Record->getDeclName() && !Record->isCompleteDefinition()) ||
Francois Pichet8e161ed2010-11-23 06:07:27 +00003280 (DS.getTypeSpecType() == DeclSpec::TST_typename &&
3281 DS.getRepAsType().get()->isStructureType())) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00003282 Diag(DS.getLocStart(), diag::ext_ms_anonymous_struct)
Francois Pichet8e161ed2010-11-23 06:07:27 +00003283 << DS.getSourceRange();
3284 return BuildMicrosoftCAnonymousStruct(S, DS, Record);
3285 }
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003286 }
Richard Smithc7f81162013-03-18 22:52:47 +00003287
3288 // Skip all the checks below if we have a type error.
3289 if (DS.getTypeSpecType() == DeclSpec::TST_error ||
3290 (TagD && TagD->isInvalidDecl()))
3291 return TagD;
3292
3293 if (getLangOpts().CPlusPlus &&
Douglas Gregora131d0f2010-07-13 06:24:26 +00003294 DS.getStorageClassSpec() != DeclSpec::SCS_typedef)
3295 if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
3296 if (Enum->enumerator_begin() == Enum->enumerator_end() &&
Richard Smithc7f81162013-03-18 22:52:47 +00003297 !Enum->getIdentifier() && !Enum->isInvalidDecl())
3298 DeclaresAnything = false;
John McCallac4df242011-03-22 23:00:04 +00003299
John McCallac4df242011-03-22 23:00:04 +00003300 if (!DS.isMissingDeclaratorOk()) {
Richard Smithc7f81162013-03-18 22:52:47 +00003301 // Customize diagnostic for a typedef missing a name.
3302 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef)
Daniel Dunbar96a00142012-03-09 18:35:03 +00003303 Diag(DS.getLocStart(), diag::ext_typedef_without_a_name)
Douglas Gregora0ebd602010-07-16 15:40:40 +00003304 << DS.getSourceRange();
Richard Smithc7f81162013-03-18 22:52:47 +00003305 else
3306 DeclaresAnything = false;
Sebastian Redla4ed0d82008-12-28 15:28:59 +00003307 }
Mike Stump1eb44332009-09-09 15:08:12 +00003308
Richard Smithc7f81162013-03-18 22:52:47 +00003309 if (DS.isModulePrivateSpecified() &&
Douglas Gregore3895852011-09-12 18:37:38 +00003310 Tag && Tag->getDeclContext()->isFunctionOrMethod())
3311 Diag(DS.getModulePrivateSpecLoc(), diag::err_module_private_local_class)
3312 << Tag->getTagKind()
3313 << FixItHint::CreateRemoval(DS.getModulePrivateSpecLoc());
3314
Richard Smithc7f81162013-03-18 22:52:47 +00003315 ActOnDocumentableDecl(TagD);
3316
3317 // C 6.7/2:
3318 // A declaration [...] shall declare at least a declarator [...], a tag,
3319 // or the members of an enumeration.
3320 // C++ [dcl.dcl]p3:
3321 // [If there are no declarators], and except for the declaration of an
3322 // unnamed bit-field, the decl-specifier-seq shall introduce one or more
3323 // names into the program, or shall redeclare a name introduced by a
3324 // previous declaration.
3325 if (!DeclaresAnything) {
3326 // In C, we allow this as a (popular) extension / bug. Don't bother
3327 // producing further diagnostics for redundant qualifiers after this.
3328 Diag(DS.getLocStart(), diag::ext_no_declarators) << DS.getSourceRange();
3329 return TagD;
3330 }
3331
3332 // C++ [dcl.stc]p1:
3333 // If a storage-class-specifier appears in a decl-specifier-seq, [...] the
3334 // init-declarator-list of the declaration shall not be empty.
3335 // C++ [dcl.fct.spec]p1:
3336 // If a cv-qualifier appears in a decl-specifier-seq, the
3337 // init-declarator-list of the declaration shall not be empty.
3338 //
3339 // Spurious qualifiers here appear to be valid in C.
3340 unsigned DiagID = diag::warn_standalone_specifier;
3341 if (getLangOpts().CPlusPlus)
3342 DiagID = diag::ext_standalone_specifier;
3343
3344 // Note that a linkage-specification sets a storage class, but
3345 // 'extern "C" struct foo;' is actually valid and not theoretically
3346 // useless.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003347 if (DeclSpec::SCS SCS = DS.getStorageClassSpec()) {
3348 if (SCS == DeclSpec::SCS_mutable)
3349 // Since mutable is not a viable storage class specifier in C, there is
3350 // no reason to treat it as an extension. Instead, diagnose as an error.
3351 Diag(DS.getStorageClassSpecLoc(), diag::err_mutable_nonmember);
3352 else if (!DS.isExternInLinkageSpec() && SCS != DeclSpec::SCS_typedef)
Richard Smithc7f81162013-03-18 22:52:47 +00003353 Diag(DS.getStorageClassSpecLoc(), DiagID)
3354 << DeclSpec::getSpecifierName(SCS);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003355 }
Richard Smithc7f81162013-03-18 22:52:47 +00003356
Richard Smithec642442013-04-12 22:46:28 +00003357 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
3358 Diag(DS.getThreadStorageClassSpecLoc(), DiagID)
3359 << DeclSpec::getSpecifierName(TSCS);
Richard Smithc7f81162013-03-18 22:52:47 +00003360 if (DS.getTypeQualifiers()) {
3361 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
3362 Diag(DS.getConstSpecLoc(), DiagID) << "const";
3363 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
3364 Diag(DS.getConstSpecLoc(), DiagID) << "volatile";
3365 // Restrict is covered above.
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003366 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
3367 Diag(DS.getAtomicSpecLoc(), DiagID) << "_Atomic";
Richard Smithc7f81162013-03-18 22:52:47 +00003368 }
3369
Eli Friedmanfc038e92011-12-17 00:36:09 +00003370 // Warn about ignored type attributes, for example:
3371 // __attribute__((aligned)) struct A;
Bill Wendlingad017fa2012-12-20 19:22:21 +00003372 // Attributes should be placed after tag to apply to type declaration.
Eli Friedmanfc038e92011-12-17 00:36:09 +00003373 if (!DS.getAttributes().empty()) {
3374 DeclSpec::TST TypeSpecType = DS.getTypeSpecType();
3375 if (TypeSpecType == DeclSpec::TST_class ||
3376 TypeSpecType == DeclSpec::TST_struct ||
Joao Matos6666ed42012-08-31 18:45:21 +00003377 TypeSpecType == DeclSpec::TST_interface ||
Eli Friedmanfc038e92011-12-17 00:36:09 +00003378 TypeSpecType == DeclSpec::TST_union ||
3379 TypeSpecType == DeclSpec::TST_enum) {
3380 AttributeList* attrs = DS.getAttributes().getList();
3381 while (attrs) {
Michael Han45bed132012-10-04 16:42:52 +00003382 Diag(attrs->getLoc(), diag::warn_declspec_attribute_ignored)
Eli Friedmanfc038e92011-12-17 00:36:09 +00003383 << attrs->getName()
3384 << (TypeSpecType == DeclSpec::TST_class ? 0 :
3385 TypeSpecType == DeclSpec::TST_struct ? 1 :
Joao Matos6666ed42012-08-31 18:45:21 +00003386 TypeSpecType == DeclSpec::TST_union ? 2 :
3387 TypeSpecType == DeclSpec::TST_interface ? 3 : 4);
Eli Friedmanfc038e92011-12-17 00:36:09 +00003388 attrs = attrs->getNext();
3389 }
3390 }
3391 }
John McCallac4df242011-03-22 23:00:04 +00003392
John McCalld226f652010-08-21 09:40:31 +00003393 return TagD;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003394}
3395
John McCall1d7c5282009-12-18 10:40:03 +00003396/// We are trying to inject an anonymous member into the given scope;
John McCall68263142009-11-18 22:49:29 +00003397/// check if there's an existing declaration that can't be overloaded.
3398///
3399/// \return true if this is a forbidden redeclaration
John McCall1d7c5282009-12-18 10:40:03 +00003400static bool CheckAnonMemberRedeclaration(Sema &SemaRef,
3401 Scope *S,
Fariborz Jahanian588a4ad2010-01-22 18:30:17 +00003402 DeclContext *Owner,
John McCall1d7c5282009-12-18 10:40:03 +00003403 DeclarationName Name,
3404 SourceLocation NameLoc,
3405 unsigned diagnostic) {
3406 LookupResult R(SemaRef, Name, NameLoc, Sema::LookupMemberName,
3407 Sema::ForRedeclaration);
3408 if (!SemaRef.LookupName(R, S)) return false;
John McCall68263142009-11-18 22:49:29 +00003409
John McCall1d7c5282009-12-18 10:40:03 +00003410 if (R.getAsSingle<TagDecl>())
John McCall68263142009-11-18 22:49:29 +00003411 return false;
3412
3413 // Pick a representative declaration.
John McCall1d7c5282009-12-18 10:40:03 +00003414 NamedDecl *PrevDecl = R.getRepresentativeDecl()->getUnderlyingDecl();
Argyrios Kyrtzidis2b642392010-09-23 14:26:01 +00003415 assert(PrevDecl && "Expected a non-null Decl");
3416
3417 if (!SemaRef.isDeclInScope(PrevDecl, Owner, S))
3418 return false;
John McCall68263142009-11-18 22:49:29 +00003419
John McCall1d7c5282009-12-18 10:40:03 +00003420 SemaRef.Diag(NameLoc, diagnostic) << Name;
3421 SemaRef.Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
John McCall68263142009-11-18 22:49:29 +00003422
3423 return true;
3424}
3425
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003426/// InjectAnonymousStructOrUnionMembers - Inject the members of the
3427/// anonymous struct or union AnonRecord into the owning context Owner
3428/// and scope S. This routine will be invoked just after we realize
3429/// that an unnamed union or struct is actually an anonymous union or
3430/// struct, e.g.,
3431///
3432/// @code
3433/// union {
3434/// int i;
3435/// float f;
3436/// }; // InjectAnonymousStructOrUnionMembers called here to inject i and
3437/// // f into the surrounding scope.x
3438/// @endcode
3439///
3440/// This routine is recursive, injecting the names of nested anonymous
3441/// structs/unions into the owning context and scope as well.
John McCallaec03712010-05-21 20:45:30 +00003442static bool InjectAnonymousStructOrUnionMembers(Sema &SemaRef, Scope *S,
Craig Topper6b9240e2013-07-05 19:34:19 +00003443 DeclContext *Owner,
3444 RecordDecl *AnonRecord,
3445 AccessSpecifier AS,
3446 SmallVectorImpl<NamedDecl *> &Chaining,
3447 bool MSAnonStruct) {
John McCall68263142009-11-18 22:49:29 +00003448 unsigned diagKind
3449 = AnonRecord->isUnion() ? diag::err_anonymous_union_member_redecl
3450 : diag::err_anonymous_struct_member_redecl;
3451
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003452 bool Invalid = false;
Francois Pichet8e161ed2010-11-23 06:07:27 +00003453
3454 // Look every FieldDecl and IndirectFieldDecl with a name.
Stephen Hines651f13c2014-04-23 16:59:28 -07003455 for (auto *D : AnonRecord->decls()) {
3456 if ((isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D)) &&
3457 cast<NamedDecl>(D)->getDeclName()) {
3458 ValueDecl *VD = cast<ValueDecl>(D);
Francois Pichet8e161ed2010-11-23 06:07:27 +00003459 if (CheckAnonMemberRedeclaration(SemaRef, S, Owner, VD->getDeclName(),
3460 VD->getLocation(), diagKind)) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003461 // C++ [class.union]p2:
3462 // The names of the members of an anonymous union shall be
3463 // distinct from the names of any other entity in the
3464 // scope in which the anonymous union is declared.
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003465 Invalid = true;
3466 } else {
3467 // C++ [class.union]p2:
3468 // For the purpose of name lookup, after the anonymous union
3469 // definition, the members of the anonymous union are
3470 // considered to have been defined in the scope in which the
3471 // anonymous union is declared.
Francois Pichet8e161ed2010-11-23 06:07:27 +00003472 unsigned OldChainingSize = Chaining.size();
3473 if (IndirectFieldDecl *IF = dyn_cast<IndirectFieldDecl>(VD))
Stephen Hines651f13c2014-04-23 16:59:28 -07003474 for (auto *PI : IF->chain())
3475 Chaining.push_back(PI);
Francois Pichet8e161ed2010-11-23 06:07:27 +00003476 else
3477 Chaining.push_back(VD);
3478
Francois Pichet87c2e122010-11-21 06:08:52 +00003479 assert(Chaining.size() >= 2);
3480 NamedDecl **NamedChain =
3481 new (SemaRef.Context)NamedDecl*[Chaining.size()];
3482 for (unsigned i = 0; i < Chaining.size(); i++)
3483 NamedChain[i] = Chaining[i];
3484
3485 IndirectFieldDecl* IndirectField =
Francois Pichet8e161ed2010-11-23 06:07:27 +00003486 IndirectFieldDecl::Create(SemaRef.Context, Owner, VD->getLocation(),
3487 VD->getIdentifier(), VD->getType(),
Francois Pichet87c2e122010-11-21 06:08:52 +00003488 NamedChain, Chaining.size());
3489
3490 IndirectField->setAccess(AS);
3491 IndirectField->setImplicit();
3492 SemaRef.PushOnScopeChains(IndirectField, S);
John McCallaec03712010-05-21 20:45:30 +00003493
3494 // That includes picking up the appropriate access specifier.
Francois Pichet8e161ed2010-11-23 06:07:27 +00003495 if (AS != AS_none) IndirectField->setAccess(AS);
Francois Pichet87c2e122010-11-21 06:08:52 +00003496
Francois Pichet8e161ed2010-11-23 06:07:27 +00003497 Chaining.resize(OldChainingSize);
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003498 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003499 }
3500 }
3501
3502 return Invalid;
3503}
3504
Douglas Gregor16573fa2010-04-19 22:54:31 +00003505/// StorageClassSpecToVarDeclStorageClass - Maps a DeclSpec::SCS to
3506/// a VarDecl::StorageClass. Any error reporting is up to the caller:
John McCalld931b082010-08-26 03:08:43 +00003507/// illegal input values are mapped to SC_None.
3508static StorageClass
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00003509StorageClassSpecToVarDeclStorageClass(const DeclSpec &DS) {
3510 DeclSpec::SCS StorageClassSpec = DS.getStorageClassSpec();
3511 assert(StorageClassSpec != DeclSpec::SCS_typedef &&
3512 "Parser allowed 'typedef' as storage class VarDecl.");
Douglas Gregor16573fa2010-04-19 22:54:31 +00003513 switch (StorageClassSpec) {
John McCalld931b082010-08-26 03:08:43 +00003514 case DeclSpec::SCS_unspecified: return SC_None;
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00003515 case DeclSpec::SCS_extern:
3516 if (DS.isExternInLinkageSpec())
3517 return SC_None;
3518 return SC_Extern;
John McCalld931b082010-08-26 03:08:43 +00003519 case DeclSpec::SCS_static: return SC_Static;
3520 case DeclSpec::SCS_auto: return SC_Auto;
3521 case DeclSpec::SCS_register: return SC_Register;
3522 case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
Douglas Gregor16573fa2010-04-19 22:54:31 +00003523 // Illegal SCSs map to None: error reporting is up to the caller.
3524 case DeclSpec::SCS_mutable: // Fall through.
John McCalld931b082010-08-26 03:08:43 +00003525 case DeclSpec::SCS_typedef: return SC_None;
Douglas Gregor16573fa2010-04-19 22:54:31 +00003526 }
3527 llvm_unreachable("unknown storage class specifier");
3528}
3529
Stephen Hines651f13c2014-04-23 16:59:28 -07003530static SourceLocation findDefaultInitializer(const CXXRecordDecl *Record) {
3531 assert(Record->hasInClassInitializer());
3532
3533 for (const auto *I : Record->decls()) {
3534 const auto *FD = dyn_cast<FieldDecl>(I);
3535 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
3536 FD = IFD->getAnonField();
3537 if (FD && FD->hasInClassInitializer())
3538 return FD->getLocation();
3539 }
3540
3541 llvm_unreachable("couldn't find in-class initializer");
3542}
3543
3544static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
3545 SourceLocation DefaultInitLoc) {
3546 if (!Parent->isUnion() || !Parent->hasInClassInitializer())
3547 return;
3548
3549 S.Diag(DefaultInitLoc, diag::err_multiple_mem_union_initialization);
3550 S.Diag(findDefaultInitializer(Parent), diag::note_previous_initializer) << 0;
3551}
3552
3553static void checkDuplicateDefaultInit(Sema &S, CXXRecordDecl *Parent,
3554 CXXRecordDecl *AnonUnion) {
3555 if (!Parent->isUnion() || !Parent->hasInClassInitializer())
3556 return;
3557
3558 checkDuplicateDefaultInit(S, Parent, findDefaultInitializer(AnonUnion));
3559}
3560
Francois Pichet8e161ed2010-11-23 06:07:27 +00003561/// BuildAnonymousStructOrUnion - Handle the declaration of an
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003562/// anonymous structure or union. Anonymous unions are a C++ feature
Hans Wennborgacbabf12012-02-03 15:47:04 +00003563/// (C++ [class.union]) and a C11 feature; anonymous structures
3564/// are a C11 feature and GNU C++ extension.
John McCalld226f652010-08-21 09:40:31 +00003565Decl *Sema::BuildAnonymousStructOrUnion(Scope *S, DeclSpec &DS,
Stephen Hines651f13c2014-04-23 16:59:28 -07003566 AccessSpecifier AS,
3567 RecordDecl *Record,
3568 const PrintingPolicy &Policy) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003569 DeclContext *Owner = Record->getDeclContext();
3570
3571 // Diagnose whether this anonymous struct/union is an extension.
David Blaikie4e4d0842012-03-11 07:00:24 +00003572 if (Record->isUnion() && !getLangOpts().CPlusPlus && !getLangOpts().C11)
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003573 Diag(Record->getLocation(), diag::ext_anonymous_union);
David Blaikie4e4d0842012-03-11 07:00:24 +00003574 else if (!Record->isUnion() && getLangOpts().CPlusPlus)
Hans Wennborgacbabf12012-02-03 15:47:04 +00003575 Diag(Record->getLocation(), diag::ext_gnu_anonymous_struct);
David Blaikie4e4d0842012-03-11 07:00:24 +00003576 else if (!Record->isUnion() && !getLangOpts().C11)
Hans Wennborgacbabf12012-02-03 15:47:04 +00003577 Diag(Record->getLocation(), diag::ext_c11_anonymous_struct);
Mike Stump1eb44332009-09-09 15:08:12 +00003578
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003579 // C and C++ require different kinds of checks for anonymous
3580 // structs/unions.
3581 bool Invalid = false;
David Blaikie4e4d0842012-03-11 07:00:24 +00003582 if (getLangOpts().CPlusPlus) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003583 const char *PrevSpec = nullptr;
John McCallfec54012009-08-03 20:12:06 +00003584 unsigned DiagID;
David Blaikie2b79c322011-10-19 22:43:29 +00003585 if (Record->isUnion()) {
3586 // C++ [class.union]p6:
3587 // Anonymous unions declared in a named namespace or in the
3588 // global namespace shall be declared static.
3589 if (DS.getStorageClassSpec() != DeclSpec::SCS_static &&
3590 (isa<TranslationUnitDecl>(Owner) ||
3591 (isa<NamespaceDecl>(Owner) &&
3592 cast<NamespaceDecl>(Owner)->getDeclName()))) {
David Blaikie82c8ca12011-10-20 02:49:08 +00003593 Diag(Record->getLocation(), diag::err_anonymous_union_not_static)
3594 << FixItHint::CreateInsertion(Record->getLocation(), "static ");
David Blaikie2b79c322011-10-19 22:43:29 +00003595
3596 // Recover by adding 'static'.
3597 DS.SetStorageClassSpec(*this, DeclSpec::SCS_static, SourceLocation(),
Stephen Hines651f13c2014-04-23 16:59:28 -07003598 PrevSpec, DiagID, Policy);
David Blaikie2b79c322011-10-19 22:43:29 +00003599 }
3600 // C++ [class.union]p6:
3601 // A storage class is not allowed in a declaration of an
3602 // anonymous union in a class scope.
3603 else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified &&
3604 isa<RecordDecl>(Owner)) {
3605 Diag(DS.getStorageClassSpecLoc(),
David Blaikief6f876c2011-10-20 02:10:55 +00003606 diag::err_anonymous_union_with_storage_spec)
3607 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
David Blaikie2b79c322011-10-19 22:43:29 +00003608
3609 // Recover by removing the storage specifier.
David Blaikied662a792011-10-19 22:56:21 +00003610 DS.SetStorageClassSpec(*this, DeclSpec::SCS_unspecified,
3611 SourceLocation(),
Stephen Hines651f13c2014-04-23 16:59:28 -07003612 PrevSpec, DiagID, Context.getPrintingPolicy());
David Blaikie2b79c322011-10-19 22:43:29 +00003613 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003614 }
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003615
Douglas Gregor7604f642011-05-09 23:05:33 +00003616 // Ignore const/volatile/restrict qualifiers.
3617 if (DS.getTypeQualifiers()) {
3618 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
3619 Diag(DS.getConstSpecLoc(), diag::ext_anonymous_struct_union_qualified)
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003620 << Record->isUnion() << "const"
Douglas Gregor7604f642011-05-09 23:05:33 +00003621 << FixItHint::CreateRemoval(DS.getConstSpecLoc());
3622 if (DS.getTypeQualifiers() & DeclSpec::TQ_volatile)
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003623 Diag(DS.getVolatileSpecLoc(),
David Blaikied662a792011-10-19 22:56:21 +00003624 diag::ext_anonymous_struct_union_qualified)
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003625 << Record->isUnion() << "volatile"
Douglas Gregor7604f642011-05-09 23:05:33 +00003626 << FixItHint::CreateRemoval(DS.getVolatileSpecLoc());
3627 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003628 Diag(DS.getRestrictSpecLoc(),
David Blaikied662a792011-10-19 22:56:21 +00003629 diag::ext_anonymous_struct_union_qualified)
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003630 << Record->isUnion() << "restrict"
Douglas Gregor7604f642011-05-09 23:05:33 +00003631 << FixItHint::CreateRemoval(DS.getRestrictSpecLoc());
Richard Smith4cf4a5e2013-03-28 01:55:44 +00003632 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
3633 Diag(DS.getAtomicSpecLoc(),
3634 diag::ext_anonymous_struct_union_qualified)
3635 << Record->isUnion() << "_Atomic"
3636 << FixItHint::CreateRemoval(DS.getAtomicSpecLoc());
Douglas Gregor7604f642011-05-09 23:05:33 +00003637
3638 DS.ClearTypeQualifiers();
3639 }
3640
Mike Stump1eb44332009-09-09 15:08:12 +00003641 // C++ [class.union]p2:
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003642 // The member-specification of an anonymous union shall only
3643 // define non-static data members. [Note: nested types and
3644 // functions cannot be declared within an anonymous union. ]
Stephen Hines651f13c2014-04-23 16:59:28 -07003645 for (auto *Mem : Record->decls()) {
3646 if (auto *FD = dyn_cast<FieldDecl>(Mem)) {
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003647 // C++ [class.union]p3:
3648 // An anonymous union shall not have private or protected
3649 // members (clause 11).
John McCallaec03712010-05-21 20:45:30 +00003650 assert(FD->getAccess() != AS_none);
3651 if (FD->getAccess() != AS_public) {
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003652 Diag(FD->getLocation(), diag::err_anonymous_record_nonpublic_member)
3653 << (int)Record->isUnion() << (int)(FD->getAccess() == AS_protected);
3654 Invalid = true;
3655 }
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +00003656
Sean Huntcf34e752011-05-16 22:41:40 +00003657 // C++ [class.union]p1
3658 // An object of a class with a non-trivial constructor, a non-trivial
3659 // copy constructor, a non-trivial destructor, or a non-trivial copy
3660 // assignment operator cannot be a member of a union, nor can an
3661 // array of such objects.
Richard Smithe7d7c392011-10-19 20:41:51 +00003662 if (CheckNontrivialField(FD))
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +00003663 Invalid = true;
Stephen Hines651f13c2014-04-23 16:59:28 -07003664 } else if (Mem->isImplicit()) {
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003665 // Any implicit members are fine.
Stephen Hines651f13c2014-04-23 16:59:28 -07003666 } else if (isa<TagDecl>(Mem) && Mem->getDeclContext() != Record) {
Douglas Gregor1931b442009-02-03 00:34:39 +00003667 // This is a type that showed up in an
3668 // elaborated-type-specifier inside the anonymous struct or
3669 // union, but which actually declares a type outside of the
3670 // anonymous struct or union. It's okay.
Stephen Hines651f13c2014-04-23 16:59:28 -07003671 } else if (auto *MemRecord = dyn_cast<RecordDecl>(Mem)) {
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003672 if (!MemRecord->isAnonymousStructOrUnion() &&
3673 MemRecord->getDeclName()) {
Francois Pichet538e0d02010-09-08 11:32:25 +00003674 // Visual C++ allows type definition in anonymous struct or union.
David Blaikie4e4d0842012-03-11 07:00:24 +00003675 if (getLangOpts().MicrosoftExt)
Francois Pichet538e0d02010-09-08 11:32:25 +00003676 Diag(MemRecord->getLocation(), diag::ext_anonymous_record_with_type)
3677 << (int)Record->isUnion();
3678 else {
3679 // This is a nested type declaration.
3680 Diag(MemRecord->getLocation(), diag::err_anonymous_record_with_type)
3681 << (int)Record->isUnion();
3682 Invalid = true;
3683 }
Richard Smithc5f7d6a2013-01-28 00:54:05 +00003684 } else {
3685 // This is an anonymous type definition within another anonymous type.
3686 // This is a popular extension, provided by Plan9, MSVC and GCC, but
3687 // not part of standard C++.
3688 Diag(MemRecord->getLocation(),
Richard Smithf2705192013-01-31 03:11:12 +00003689 diag::ext_anonymous_record_with_anonymous_type)
3690 << (int)Record->isUnion();
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003691 }
Stephen Hines651f13c2014-04-23 16:59:28 -07003692 } else if (isa<AccessSpecDecl>(Mem)) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00003693 // Any access specifier is fine.
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003694 } else {
3695 // We have something that isn't a non-static data
3696 // member. Complain about it.
3697 unsigned DK = diag::err_anonymous_record_bad_member;
Stephen Hines651f13c2014-04-23 16:59:28 -07003698 if (isa<TypeDecl>(Mem))
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003699 DK = diag::err_anonymous_record_with_type;
Stephen Hines651f13c2014-04-23 16:59:28 -07003700 else if (isa<FunctionDecl>(Mem))
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003701 DK = diag::err_anonymous_record_with_function;
Stephen Hines651f13c2014-04-23 16:59:28 -07003702 else if (isa<VarDecl>(Mem))
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003703 DK = diag::err_anonymous_record_with_static;
Francois Pichet538e0d02010-09-08 11:32:25 +00003704
3705 // Visual C++ allows type definition in anonymous struct or union.
David Blaikie4e4d0842012-03-11 07:00:24 +00003706 if (getLangOpts().MicrosoftExt &&
Francois Pichet538e0d02010-09-08 11:32:25 +00003707 DK == diag::err_anonymous_record_with_type)
Stephen Hines651f13c2014-04-23 16:59:28 -07003708 Diag(Mem->getLocation(), diag::ext_anonymous_record_with_type)
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003709 << (int)Record->isUnion();
Francois Pichet538e0d02010-09-08 11:32:25 +00003710 else {
Stephen Hines651f13c2014-04-23 16:59:28 -07003711 Diag(Mem->getLocation(), DK)
Francois Pichet538e0d02010-09-08 11:32:25 +00003712 << (int)Record->isUnion();
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003713 Invalid = true;
Francois Pichet538e0d02010-09-08 11:32:25 +00003714 }
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003715 }
3716 }
Stephen Hines651f13c2014-04-23 16:59:28 -07003717
3718 // C++11 [class.union]p8 (DR1460):
3719 // At most one variant member of a union may have a
3720 // brace-or-equal-initializer.
3721 if (cast<CXXRecordDecl>(Record)->hasInClassInitializer() &&
3722 Owner->isRecord())
3723 checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Owner),
3724 cast<CXXRecordDecl>(Record));
Mike Stump1eb44332009-09-09 15:08:12 +00003725 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003726
3727 if (!Record->isUnion() && !Owner->isRecord()) {
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003728 Diag(Record->getLocation(), diag::err_anonymous_struct_not_member)
David Blaikie4e4d0842012-03-11 07:00:24 +00003729 << (int)getLangOpts().CPlusPlus;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003730 Invalid = true;
3731 }
3732
John McCalleb692e02009-10-22 23:31:08 +00003733 // Mock up a declarator.
Argyrios Kyrtzidisd3880f82011-06-28 03:01:18 +00003734 Declarator Dc(DS, Declarator::MemberContext);
John McCallbf1a0282010-06-04 23:28:52 +00003735 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
John McCalla93c9342009-12-07 02:54:59 +00003736 assert(TInfo && "couldn't build declarator info for anonymous struct/union");
John McCalleb692e02009-10-22 23:31:08 +00003737
Mike Stump1eb44332009-09-09 15:08:12 +00003738 // Create a declaration for this anonymous struct/union.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003739 NamedDecl *Anon = nullptr;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003740 if (RecordDecl *OwningClass = dyn_cast<RecordDecl>(Owner)) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003741 Anon = FieldDecl::Create(Context, OwningClass,
Daniel Dunbar96a00142012-03-09 18:35:03 +00003742 DS.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003743 Record->getLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003744 /*IdentifierInfo=*/nullptr,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00003745 Context.getTypeDeclType(Record),
John McCalla93c9342009-12-07 02:54:59 +00003746 TInfo,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003747 /*BitWidth=*/nullptr, /*Mutable=*/false,
Richard Smithca523302012-06-10 03:12:00 +00003748 /*InitStyle=*/ICIS_NoInit);
John McCallaec03712010-05-21 20:45:30 +00003749 Anon->setAccess(AS);
David Blaikie4e4d0842012-03-11 07:00:24 +00003750 if (getLangOpts().CPlusPlus)
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003751 FieldCollector->Add(cast<FieldDecl>(Anon));
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003752 } else {
Douglas Gregor16573fa2010-04-19 22:54:31 +00003753 DeclSpec::SCS SCSpec = DS.getStorageClassSpec();
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00003754 VarDecl::StorageClass SC = StorageClassSpecToVarDeclStorageClass(DS);
Douglas Gregor16573fa2010-04-19 22:54:31 +00003755 if (SCSpec == DeclSpec::SCS_mutable) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003756 // mutable can only appear on non-static class members, so it's always
3757 // an error here
3758 Diag(Record->getLocation(), diag::err_mutable_nonmember);
3759 Invalid = true;
John McCalld931b082010-08-26 03:08:43 +00003760 SC = SC_None;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003761 }
3762
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00003763 Anon = VarDecl::Create(Context, Owner,
Daniel Dunbar96a00142012-03-09 18:35:03 +00003764 DS.getLocStart(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003765 Record->getLocation(), /*IdentifierInfo=*/nullptr,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00003766 Context.getTypeDeclType(Record),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00003767 TInfo, SC);
Richard Smith16ee8192011-09-18 00:06:34 +00003768
3769 // Default-initialize the implicit variable. This initialization will be
3770 // trivial in almost all cases, except if a union member has an in-class
3771 // initializer:
3772 // union { int n = 0; };
3773 ActOnUninitializedDecl(Anon, /*TypeMayContainAuto=*/false);
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003774 }
Douglas Gregor6b3945f2009-01-07 19:46:03 +00003775 Anon->setImplicit();
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003776
Stephen Hines651f13c2014-04-23 16:59:28 -07003777 // Mark this as an anonymous struct/union type.
3778 Record->setAnonymousStructOrUnion(true);
3779
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003780 // Add the anonymous struct/union object to the current
3781 // context. We'll be referencing this object when we refer to one of
3782 // its members.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003783 Owner->addDecl(Anon);
Stephen Hines651f13c2014-04-23 16:59:28 -07003784
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003785 // Inject the members of the anonymous struct/union into the owning
3786 // context and into the identifier resolver chain for name lookup
3787 // purposes.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003788 SmallVector<NamedDecl*, 2> Chain;
Francois Pichet87c2e122010-11-21 06:08:52 +00003789 Chain.push_back(Anon);
3790
Francois Pichet8e161ed2010-11-23 06:07:27 +00003791 if (InjectAnonymousStructOrUnionMembers(*this, S, Owner, Record, AS,
3792 Chain, false))
Douglas Gregor4920f1f2009-01-12 22:49:06 +00003793 Invalid = true;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003794
Stephen Hines651f13c2014-04-23 16:59:28 -07003795 if (VarDecl *NewVD = dyn_cast<VarDecl>(Anon)) {
3796 if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
3797 Decl *ManglingContextDecl;
3798 if (MangleNumberingContext *MCtx =
3799 getCurrentMangleNumberContext(NewVD->getDeclContext(),
3800 ManglingContextDecl)) {
3801 Context.setManglingNumber(NewVD, MCtx->getManglingNumber(NewVD, S->getMSLocalManglingNumber()));
3802 Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
3803 }
3804 }
3805 }
Douglas Gregorbcbffc42009-01-07 00:43:41 +00003806
3807 if (Invalid)
3808 Anon->setInvalidDecl();
3809
John McCalld226f652010-08-21 09:40:31 +00003810 return Anon;
Reid Spencer5f016e22007-07-11 17:01:13 +00003811}
3812
Francois Pichet8e161ed2010-11-23 06:07:27 +00003813/// BuildMicrosoftCAnonymousStruct - Handle the declaration of an
3814/// Microsoft C anonymous structure.
3815/// Ref: http://msdn.microsoft.com/en-us/library/z2cx9y4f.aspx
3816/// Example:
3817///
3818/// struct A { int a; };
3819/// struct B { struct A; int b; };
3820///
3821/// void foo() {
3822/// B var;
3823/// var.a = 3;
3824/// }
3825///
3826Decl *Sema::BuildMicrosoftCAnonymousStruct(Scope *S, DeclSpec &DS,
3827 RecordDecl *Record) {
3828
3829 // If there is no Record, get the record via the typedef.
3830 if (!Record)
3831 Record = DS.getRepAsType().get()->getAsStructureType()->getDecl();
3832
3833 // Mock up a declarator.
3834 Declarator Dc(DS, Declarator::TypeNameContext);
3835 TypeSourceInfo *TInfo = GetTypeForDeclarator(Dc, S);
3836 assert(TInfo && "couldn't build declarator info for anonymous struct");
3837
3838 // Create a declaration for this anonymous struct.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003839 NamedDecl *Anon = FieldDecl::Create(Context,
Francois Pichet8e161ed2010-11-23 06:07:27 +00003840 cast<RecordDecl>(CurContext),
Daniel Dunbar96a00142012-03-09 18:35:03 +00003841 DS.getLocStart(),
3842 DS.getLocStart(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003843 /*IdentifierInfo=*/nullptr,
Francois Pichet8e161ed2010-11-23 06:07:27 +00003844 Context.getTypeDeclType(Record),
3845 TInfo,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003846 /*BitWidth=*/nullptr, /*Mutable=*/false,
Richard Smithca523302012-06-10 03:12:00 +00003847 /*InitStyle=*/ICIS_NoInit);
Francois Pichet8e161ed2010-11-23 06:07:27 +00003848 Anon->setImplicit();
3849
3850 // Add the anonymous struct object to the current context.
3851 CurContext->addDecl(Anon);
3852
3853 // Inject the members of the anonymous struct into the current
3854 // context and into the identifier resolver chain for name lookup
3855 // purposes.
Chris Lattner5f9e2722011-07-23 10:55:15 +00003856 SmallVector<NamedDecl*, 2> Chain;
Francois Pichet8e161ed2010-11-23 06:07:27 +00003857 Chain.push_back(Anon);
3858
Nico Weberee625af2012-02-01 00:41:00 +00003859 RecordDecl *RecordDef = Record->getDefinition();
3860 if (!RecordDef || InjectAnonymousStructOrUnionMembers(*this, S, CurContext,
3861 RecordDef, AS_none,
3862 Chain, true))
Francois Pichet8e161ed2010-11-23 06:07:27 +00003863 Anon->setInvalidDecl();
3864
3865 return Anon;
3866}
Steve Narofff0090632007-09-02 02:04:30 +00003867
Douglas Gregor10bd3682008-11-17 22:58:34 +00003868/// GetNameForDeclarator - Determine the full declaration name for the
3869/// given Declarator.
Abramo Bagnara25777432010-08-11 22:01:17 +00003870DeclarationNameInfo Sema::GetNameForDeclarator(Declarator &D) {
Douglas Gregor02a24ee2009-11-03 16:56:39 +00003871 return GetNameFromUnqualifiedId(D.getName());
3872}
3873
Abramo Bagnara25777432010-08-11 22:01:17 +00003874/// \brief Retrieves the declaration name from a parsed unqualified-id.
3875DeclarationNameInfo
3876Sema::GetNameFromUnqualifiedId(const UnqualifiedId &Name) {
3877 DeclarationNameInfo NameInfo;
3878 NameInfo.setLoc(Name.StartLocation);
3879
Douglas Gregor3f9a0562009-11-03 01:35:08 +00003880 switch (Name.getKind()) {
Sean Hunt0486d742009-11-28 04:44:28 +00003881
Fariborz Jahanian98a54032011-07-12 17:16:56 +00003882 case UnqualifiedId::IK_ImplicitSelfParam:
Abramo Bagnara25777432010-08-11 22:01:17 +00003883 case UnqualifiedId::IK_Identifier:
3884 NameInfo.setName(Name.Identifier);
3885 NameInfo.setLoc(Name.StartLocation);
3886 return NameInfo;
Sean Hunt0486d742009-11-28 04:44:28 +00003887
Abramo Bagnara25777432010-08-11 22:01:17 +00003888 case UnqualifiedId::IK_OperatorFunctionId:
3889 NameInfo.setName(Context.DeclarationNames.getCXXOperatorName(
3890 Name.OperatorFunctionId.Operator));
3891 NameInfo.setLoc(Name.StartLocation);
3892 NameInfo.getInfo().CXXOperatorName.BeginOpNameLoc
3893 = Name.OperatorFunctionId.SymbolLocations[0];
3894 NameInfo.getInfo().CXXOperatorName.EndOpNameLoc
3895 = Name.EndLocation.getRawEncoding();
3896 return NameInfo;
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003897
Abramo Bagnara25777432010-08-11 22:01:17 +00003898 case UnqualifiedId::IK_LiteralOperatorId:
3899 NameInfo.setName(Context.DeclarationNames.getCXXLiteralOperatorName(
3900 Name.Identifier));
3901 NameInfo.setLoc(Name.StartLocation);
3902 NameInfo.setCXXLiteralOperatorNameLoc(Name.EndLocation);
3903 return NameInfo;
Douglas Gregor0efc2c12010-01-13 17:31:36 +00003904
Abramo Bagnara25777432010-08-11 22:01:17 +00003905 case UnqualifiedId::IK_ConversionFunctionId: {
3906 TypeSourceInfo *TInfo;
3907 QualType Ty = GetTypeFromParser(Name.ConversionFunctionId, &TInfo);
3908 if (Ty.isNull())
3909 return DeclarationNameInfo();
3910 NameInfo.setName(Context.DeclarationNames.getCXXConversionFunctionName(
3911 Context.getCanonicalType(Ty)));
3912 NameInfo.setLoc(Name.StartLocation);
3913 NameInfo.setNamedTypeInfo(TInfo);
3914 return NameInfo;
Douglas Gregordb422df2009-09-25 21:45:23 +00003915 }
Abramo Bagnara25777432010-08-11 22:01:17 +00003916
3917 case UnqualifiedId::IK_ConstructorName: {
3918 TypeSourceInfo *TInfo;
3919 QualType Ty = GetTypeFromParser(Name.ConstructorName, &TInfo);
3920 if (Ty.isNull())
3921 return DeclarationNameInfo();
3922 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
3923 Context.getCanonicalType(Ty)));
3924 NameInfo.setLoc(Name.StartLocation);
3925 NameInfo.setNamedTypeInfo(TInfo);
3926 return NameInfo;
3927 }
3928
3929 case UnqualifiedId::IK_ConstructorTemplateId: {
3930 // In well-formed code, we can only have a constructor
3931 // template-id that refers to the current context, so go there
3932 // to find the actual type being constructed.
3933 CXXRecordDecl *CurClass = dyn_cast<CXXRecordDecl>(CurContext);
3934 if (!CurClass || CurClass->getIdentifier() != Name.TemplateId->Name)
3935 return DeclarationNameInfo();
3936
3937 // Determine the type of the class being constructed.
3938 QualType CurClassType = Context.getTypeDeclType(CurClass);
3939
3940 // FIXME: Check two things: that the template-id names the same type as
3941 // CurClassType, and that the template-id does not occur when the name
3942 // was qualified.
3943
3944 NameInfo.setName(Context.DeclarationNames.getCXXConstructorName(
3945 Context.getCanonicalType(CurClassType)));
3946 NameInfo.setLoc(Name.StartLocation);
3947 // FIXME: should we retrieve TypeSourceInfo?
Stephen Hines6bcf27b2014-05-29 04:14:42 -07003948 NameInfo.setNamedTypeInfo(nullptr);
Abramo Bagnara25777432010-08-11 22:01:17 +00003949 return NameInfo;
3950 }
3951
3952 case UnqualifiedId::IK_DestructorName: {
3953 TypeSourceInfo *TInfo;
3954 QualType Ty = GetTypeFromParser(Name.DestructorName, &TInfo);
3955 if (Ty.isNull())
3956 return DeclarationNameInfo();
3957 NameInfo.setName(Context.DeclarationNames.getCXXDestructorName(
3958 Context.getCanonicalType(Ty)));
3959 NameInfo.setLoc(Name.StartLocation);
3960 NameInfo.setNamedTypeInfo(TInfo);
3961 return NameInfo;
3962 }
3963
3964 case UnqualifiedId::IK_TemplateId: {
John McCall2b5289b2010-08-23 07:28:44 +00003965 TemplateName TName = Name.TemplateId->Template.get();
Abramo Bagnara25777432010-08-11 22:01:17 +00003966 SourceLocation TNameLoc = Name.TemplateId->TemplateNameLoc;
3967 return Context.getNameForTemplate(TName, TNameLoc);
3968 }
3969
3970 } // switch (Name.getKind())
3971
David Blaikieb219cfc2011-09-23 05:06:16 +00003972 llvm_unreachable("Unknown name kind");
Douglas Gregor10bd3682008-11-17 22:58:34 +00003973}
3974
Kaelyn Uhrain4d9d1572011-08-04 17:40:00 +00003975static QualType getCoreType(QualType Ty) {
3976 do {
3977 if (Ty->isPointerType() || Ty->isReferenceType())
3978 Ty = Ty->getPointeeType();
3979 else if (Ty->isArrayType())
3980 Ty = Ty->castAsArrayTypeUnsafe()->getElementType();
3981 else
3982 return Ty.withoutLocalFastQualifiers();
3983 } while (true);
3984}
3985
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00003986/// hasSimilarParameters - Determine whether the C++ functions Declaration
3987/// and Definition have "nearly" matching parameters. This heuristic is
3988/// used to improve diagnostics in the case where an out-of-line function
3989/// definition doesn't match any declaration within the class or namespace.
3990/// Also sets Params to the list of indices to the parameters that differ
3991/// between the declaration and the definition. If hasSimilarParameters
3992/// returns true and Params is empty, then all of the parameters match.
3993static bool hasSimilarParameters(ASTContext &Context,
Douglas Gregor4ce205f2009-02-06 17:46:57 +00003994 FunctionDecl *Declaration,
Kaelyn Uhrain4d9d1572011-08-04 17:40:00 +00003995 FunctionDecl *Definition,
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00003996 SmallVectorImpl<unsigned> &Params) {
Kaelyn Uhrain4d9d1572011-08-04 17:40:00 +00003997 Params.clear();
Douglas Gregor584049d2008-12-15 23:53:10 +00003998 if (Declaration->param_size() != Definition->param_size())
3999 return false;
4000 for (unsigned Idx = 0; Idx < Declaration->param_size(); ++Idx) {
4001 QualType DeclParamTy = Declaration->getParamDecl(Idx)->getType();
4002 QualType DefParamTy = Definition->getParamDecl(Idx)->getType();
4003
Kaelyn Uhrain4d9d1572011-08-04 17:40:00 +00004004 // The parameter types are identical
Matt Beaumont-Gay903d6dc2011-08-23 01:35:51 +00004005 if (Context.hasSameType(DefParamTy, DeclParamTy))
Kaelyn Uhrain4d9d1572011-08-04 17:40:00 +00004006 continue;
4007
4008 QualType DeclParamBaseTy = getCoreType(DeclParamTy);
4009 QualType DefParamBaseTy = getCoreType(DefParamTy);
4010 const IdentifierInfo *DeclTyName = DeclParamBaseTy.getBaseTypeIdentifier();
4011 const IdentifierInfo *DefTyName = DefParamBaseTy.getBaseTypeIdentifier();
4012
4013 if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) ||
4014 (DeclTyName && DeclTyName == DefTyName))
4015 Params.push_back(Idx);
4016 else // The two parameters aren't even close
Douglas Gregor584049d2008-12-15 23:53:10 +00004017 return false;
4018 }
4019
4020 return true;
4021}
4022
John McCall63b43852010-04-29 23:50:39 +00004023/// NeedsRebuildingInCurrentInstantiation - Checks whether the given
4024/// declarator needs to be rebuilt in the current instantiation.
4025/// Any bits of declarator which appear before the name are valid for
4026/// consideration here. That's specifically the type in the decl spec
4027/// and the base type in any member-pointer chunks.
4028static bool RebuildDeclaratorInCurrentInstantiation(Sema &S, Declarator &D,
4029 DeclarationName Name) {
4030 // The types we specifically need to rebuild are:
4031 // - typenames, typeofs, and decltypes
4032 // - types which will become injected class names
4033 // Of course, we also need to rebuild any type referencing such a
4034 // type. It's safest to just say "dependent", but we call out a
4035 // few cases here.
4036
4037 DeclSpec &DS = D.getMutableDeclSpec();
4038 switch (DS.getTypeSpecType()) {
4039 case DeclSpec::TST_typename:
4040 case DeclSpec::TST_typeofType:
Eli Friedmanb001de72011-10-06 23:00:33 +00004041 case DeclSpec::TST_underlyingType:
4042 case DeclSpec::TST_atomic: {
John McCall63b43852010-04-29 23:50:39 +00004043 // Grab the type from the parser.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004044 TypeSourceInfo *TSI = nullptr;
John McCallb3d87482010-08-24 05:47:05 +00004045 QualType T = S.GetTypeFromParser(DS.getRepAsType(), &TSI);
John McCall63b43852010-04-29 23:50:39 +00004046 if (T.isNull() || !T->isDependentType()) break;
4047
4048 // Make sure there's a type source info. This isn't really much
4049 // of a waste; most dependent types should have type source info
4050 // attached already.
4051 if (!TSI)
4052 TSI = S.Context.getTrivialTypeSourceInfo(T, DS.getTypeSpecTypeLoc());
4053
4054 // Rebuild the type in the current instantiation.
4055 TSI = S.RebuildTypeInCurrentInstantiation(TSI, D.getIdentifierLoc(), Name);
4056 if (!TSI) return true;
4057
4058 // Store the new type back in the decl spec.
John McCallb3d87482010-08-24 05:47:05 +00004059 ParsedType LocType = S.CreateParsedType(TSI->getType(), TSI);
4060 DS.UpdateTypeRep(LocType);
4061 break;
4062 }
4063
Richard Smithc4a83912012-10-01 20:35:07 +00004064 case DeclSpec::TST_decltype:
John McCallb3d87482010-08-24 05:47:05 +00004065 case DeclSpec::TST_typeofExpr: {
4066 Expr *E = DS.getRepAsExpr();
John McCall60d7b3a2010-08-24 06:29:42 +00004067 ExprResult Result = S.RebuildExprInCurrentInstantiation(E);
John McCallb3d87482010-08-24 05:47:05 +00004068 if (Result.isInvalid()) return true;
4069 DS.UpdateExprRep(Result.get());
John McCall63b43852010-04-29 23:50:39 +00004070 break;
4071 }
4072
4073 default:
4074 // Nothing to do for these decl specs.
4075 break;
4076 }
4077
4078 // It doesn't matter what order we do this in.
4079 for (unsigned I = 0, E = D.getNumTypeObjects(); I != E; ++I) {
4080 DeclaratorChunk &Chunk = D.getTypeObject(I);
4081
4082 // The only type information in the declarator which can come
4083 // before the declaration name is the base type of a member
4084 // pointer.
4085 if (Chunk.Kind != DeclaratorChunk::MemberPointer)
4086 continue;
4087
4088 // Rebuild the scope specifier in-place.
4089 CXXScopeSpec &SS = Chunk.Mem.Scope();
4090 if (S.RebuildNestedNameSpecifierInCurrentInstantiation(SS))
4091 return true;
4092 }
4093
4094 return false;
4095}
4096
Anders Carlsson3242ee02011-07-04 16:28:17 +00004097Decl *Sema::ActOnDeclarator(Scope *S, Declarator &D) {
Douglas Gregor45fa5602011-11-07 20:56:01 +00004098 D.setFunctionDefinitionKind(FDK_Declaration);
Benjamin Kramer5354e772012-08-23 23:38:35 +00004099 Decl *Dcl = HandleDeclarator(S, D, MultiTemplateParamsArg());
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00004100
4101 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer() &&
Douglas Gregore7be1092012-04-30 18:13:01 +00004102 Dcl && Dcl->getDeclContext()->isFileContext())
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00004103 Dcl->setTopLevelDeclInObjCContainer();
4104
4105 return Dcl;
John McCall7cd088e2010-08-24 07:21:54 +00004106}
4107
Richard Smith162e1c12011-04-15 14:24:37 +00004108/// DiagnoseClassNameShadow - Implement C++ [class.mem]p13:
4109/// If T is the name of a class, then each of the following shall have a
4110/// name different from T:
4111/// - every static data member of class T;
4112/// - every member function of class T
4113/// - every member of class T that is itself a type;
4114/// \returns true if the declaration name violates these rules.
4115bool Sema::DiagnoseClassNameShadow(DeclContext *DC,
4116 DeclarationNameInfo NameInfo) {
4117 DeclarationName Name = NameInfo.getName();
4118
4119 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC))
4120 if (Record->getIdentifier() && Record->getDeclName() == Name) {
4121 Diag(NameInfo.getLoc(), diag::err_member_name_of_class) << Name;
4122 return true;
4123 }
4124
4125 return false;
4126}
Douglas Gregor42acead2012-03-17 23:06:31 +00004127
Douglas Gregor69605872012-03-28 16:01:27 +00004128/// \brief Diagnose a declaration whose declarator-id has the given
4129/// nested-name-specifier.
4130///
4131/// \param SS The nested-name-specifier of the declarator-id.
4132///
4133/// \param DC The declaration context to which the nested-name-specifier
4134/// resolves.
4135///
4136/// \param Name The name of the entity being declared.
4137///
4138/// \param Loc The location of the name of the entity being declared.
Douglas Gregor42acead2012-03-17 23:06:31 +00004139///
4140/// \returns true if we cannot safely recover from this error, false otherwise.
Douglas Gregor69605872012-03-28 16:01:27 +00004141bool Sema::diagnoseQualifiedDeclaration(CXXScopeSpec &SS, DeclContext *DC,
Douglas Gregor42acead2012-03-17 23:06:31 +00004142 DeclarationName Name,
Stephen Hines651f13c2014-04-23 16:59:28 -07004143 SourceLocation Loc) {
Douglas Gregor69605872012-03-28 16:01:27 +00004144 DeclContext *Cur = CurContext;
Eli Friedmana03c5ee2013-08-12 21:54:01 +00004145 while (isa<LinkageSpecDecl>(Cur) || isa<CapturedDecl>(Cur))
Douglas Gregor69605872012-03-28 16:01:27 +00004146 Cur = Cur->getParent();
Stephen Hines651f13c2014-04-23 16:59:28 -07004147
4148 // If the user provided a superfluous scope specifier that refers back to the
4149 // class in which the entity is already declared, diagnose and ignore it.
Douglas Gregor42acead2012-03-17 23:06:31 +00004150 //
4151 // class X {
4152 // void X::f();
4153 // };
Stephen Hines651f13c2014-04-23 16:59:28 -07004154 //
4155 // Note, it was once ill-formed to give redundant qualification in all
4156 // contexts, but that rule was removed by DR482.
Douglas Gregor69605872012-03-28 16:01:27 +00004157 if (Cur->Equals(DC)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004158 if (Cur->isRecord()) {
4159 Diag(Loc, LangOpts.MicrosoftExt ? diag::warn_member_extra_qualification
4160 : diag::err_member_extra_qualification)
4161 << Name << FixItHint::CreateRemoval(SS.getRange());
4162 SS.clear();
4163 } else {
4164 Diag(Loc, diag::warn_namespace_member_extra_qualification) << Name;
4165 }
Douglas Gregor42acead2012-03-17 23:06:31 +00004166 return false;
Stephen Hines651f13c2014-04-23 16:59:28 -07004167 }
Douglas Gregor69605872012-03-28 16:01:27 +00004168
4169 // Check whether the qualifying scope encloses the scope of the original
4170 // declaration.
4171 if (!Cur->Encloses(DC)) {
4172 if (Cur->isRecord())
4173 Diag(Loc, diag::err_member_qualification)
4174 << Name << SS.getRange();
4175 else if (isa<TranslationUnitDecl>(DC))
4176 Diag(Loc, diag::err_invalid_declarator_global_scope)
4177 << Name << SS.getRange();
4178 else if (isa<FunctionDecl>(Cur))
4179 Diag(Loc, diag::err_invalid_declarator_in_function)
4180 << Name << SS.getRange();
Eli Friedmana03c5ee2013-08-12 21:54:01 +00004181 else if (isa<BlockDecl>(Cur))
4182 Diag(Loc, diag::err_invalid_declarator_in_block)
4183 << Name << SS.getRange();
Douglas Gregor69605872012-03-28 16:01:27 +00004184 else
4185 Diag(Loc, diag::err_invalid_declarator_scope)
Richard Smitha1c4f7c2012-04-13 04:07:40 +00004186 << Name << cast<NamedDecl>(Cur) << cast<NamedDecl>(DC) << SS.getRange();
Douglas Gregor69605872012-03-28 16:01:27 +00004187
Douglas Gregor42acead2012-03-17 23:06:31 +00004188 return true;
Douglas Gregor69605872012-03-28 16:01:27 +00004189 }
4190
4191 if (Cur->isRecord()) {
4192 // Cannot qualify members within a class.
4193 Diag(Loc, diag::err_member_qualification)
4194 << Name << SS.getRange();
4195 SS.clear();
4196
4197 // C++ constructors and destructors with incorrect scopes can break
4198 // our AST invariants by having the wrong underlying types. If
4199 // that's the case, then drop this declaration entirely.
4200 if ((Name.getNameKind() == DeclarationName::CXXConstructorName ||
4201 Name.getNameKind() == DeclarationName::CXXDestructorName) &&
4202 !Context.hasSameType(Name.getCXXNameType(),
4203 Context.getTypeDeclType(cast<CXXRecordDecl>(Cur))))
4204 return true;
4205
4206 return false;
4207 }
Douglas Gregor42acead2012-03-17 23:06:31 +00004208
Douglas Gregor69605872012-03-28 16:01:27 +00004209 // C++11 [dcl.meaning]p1:
4210 // [...] "The nested-name-specifier of the qualified declarator-id shall
4211 // not begin with a decltype-specifer"
4212 NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data());
4213 while (SpecLoc.getPrefix())
4214 SpecLoc = SpecLoc.getPrefix();
4215 if (dyn_cast_or_null<DecltypeType>(
4216 SpecLoc.getNestedNameSpecifier()->getAsType()))
4217 Diag(Loc, diag::err_decltype_in_declarator)
4218 << SpecLoc.getTypeLoc().getSourceRange();
4219
Douglas Gregor42acead2012-03-17 23:06:31 +00004220 return false;
4221}
4222
Rafael Espindolafc35cbc2013-01-08 20:44:06 +00004223NamedDecl *Sema::HandleDeclarator(Scope *S, Declarator &D,
4224 MultiTemplateParamsArg TemplateParamLists) {
Abramo Bagnara25777432010-08-11 22:01:17 +00004225 // TODO: consider using NameInfo for diagnostic.
4226 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
4227 DeclarationName Name = NameInfo.getName();
Douglas Gregor10bd3682008-11-17 22:58:34 +00004228
Chris Lattnere80a59c2007-07-25 00:24:17 +00004229 // All of these full declarators require an identifier. If it doesn't have
4230 // one, the ParsedFreeStandingDeclSpec action should be used.
Douglas Gregor10bd3682008-11-17 22:58:34 +00004231 if (!Name) {
Chris Lattnereaaebc72009-04-25 08:06:05 +00004232 if (!D.isInvalidType()) // Reject this if we think it is valid.
Daniel Dunbar96a00142012-03-09 18:35:03 +00004233 Diag(D.getDeclSpec().getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004234 diag::err_declarator_need_ident)
4235 << D.getDeclSpec().getSourceRange() << D.getSourceRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004236 return nullptr;
Douglas Gregor56c04582010-12-16 00:46:58 +00004237 } else if (DiagnoseUnexpandedParameterPack(NameInfo, UPPC_DeclarationType))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004238 return nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00004239
Chris Lattner31e05722007-08-26 06:24:45 +00004240 // The scope passed in may not be a decl scope. Zip up the scope tree until
4241 // we find one that is.
Douglas Gregor44b43212008-12-11 16:49:14 +00004242 while ((S->getFlags() & Scope::DeclScope) == 0 ||
Douglas Gregoraaba5e32009-02-04 19:02:06 +00004243 (S->getFlags() & Scope::TemplateParamScope) != 0)
Chris Lattner31e05722007-08-26 06:24:45 +00004244 S = S->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00004245
John McCall63b43852010-04-29 23:50:39 +00004246 DeclContext *DC = CurContext;
4247 if (D.getCXXScopeSpec().isInvalid())
4248 D.setInvalidType();
4249 else if (D.getCXXScopeSpec().isSet()) {
Douglas Gregor6ccab972010-12-16 01:14:37 +00004250 if (DiagnoseUnexpandedParameterPack(D.getCXXScopeSpec(),
4251 UPPC_DeclarationQualifier))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004252 return nullptr;
Douglas Gregor6ccab972010-12-16 01:14:37 +00004253
John McCall63b43852010-04-29 23:50:39 +00004254 bool EnteringContext = !D.getDeclSpec().isFriendSpecified();
4255 DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext);
Bill Wendling13303b92013-11-26 04:09:45 +00004256 if (!DC || isa<EnumDecl>(DC)) {
John McCall63b43852010-04-29 23:50:39 +00004257 // If we could not compute the declaration context, it's because the
4258 // declaration context is dependent but does not refer to a class,
4259 // class template, or class template partial specialization. Complain
4260 // and return early, to avoid the coming semantic disaster.
4261 Diag(D.getIdentifierLoc(),
4262 diag::err_template_qualified_declarator_no_match)
Stephen Hines651f13c2014-04-23 16:59:28 -07004263 << D.getCXXScopeSpec().getScopeRep()
John McCall63b43852010-04-29 23:50:39 +00004264 << D.getCXXScopeSpec().getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004265 return nullptr;
John McCall63b43852010-04-29 23:50:39 +00004266 }
John McCall63b43852010-04-29 23:50:39 +00004267 bool IsDependentContext = DC->isDependentContext();
John McCall0dd7ceb2009-12-19 09:35:56 +00004268
John McCall63b43852010-04-29 23:50:39 +00004269 if (!IsDependentContext &&
John McCall77bb1aa2010-05-01 00:40:08 +00004270 RequireCompleteDeclContext(D.getCXXScopeSpec(), DC))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004271 return nullptr;
John McCall63b43852010-04-29 23:50:39 +00004272
Douglas Gregor69605872012-03-28 16:01:27 +00004273 if (isa<CXXRecordDecl>(DC) && !cast<CXXRecordDecl>(DC)->hasDefinition()) {
4274 Diag(D.getIdentifierLoc(),
4275 diag::err_member_def_undefined_record)
4276 << Name << DC << D.getCXXScopeSpec().getRange();
4277 D.setInvalidType();
4278 } else if (!D.getDeclSpec().isFriendSpecified()) {
4279 if (diagnoseQualifiedDeclaration(D.getCXXScopeSpec(), DC,
4280 Name, D.getIdentifierLoc())) {
4281 if (DC->isRecord())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004282 return nullptr;
4283
Douglas Gregor69605872012-03-28 16:01:27 +00004284 D.setInvalidType();
Douglas Gregor922fff22010-10-13 22:19:53 +00004285 }
John McCall63b43852010-04-29 23:50:39 +00004286 }
4287
4288 // Check whether we need to rebuild the type of the given
4289 // declaration in the current instantiation.
4290 if (EnteringContext && IsDependentContext &&
4291 TemplateParamLists.size() != 0) {
4292 ContextRAII SavedContext(*this, DC);
4293 if (RebuildDeclaratorInCurrentInstantiation(*this, D, Name))
4294 D.setInvalidType();
Douglas Gregor4a959d82009-08-06 16:20:37 +00004295 }
4296 }
Richard Smith162e1c12011-04-15 14:24:37 +00004297
4298 if (DiagnoseClassNameShadow(DC, NameInfo))
4299 // If this is a typedef, we'll end up spewing multiple diagnostics.
4300 // Just return early; it's safer.
4301 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004302 return nullptr;
4303
John McCallbf1a0282010-06-04 23:28:52 +00004304 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
4305 QualType R = TInfo->getType();
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00004306
Douglas Gregord0937222010-12-13 22:49:22 +00004307 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
4308 UPPC_DeclarationType))
4309 D.setInvalidType();
4310
Abramo Bagnara25777432010-08-11 22:01:17 +00004311 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
John McCall68263142009-11-18 22:49:29 +00004312 ForRedeclaration);
4313
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00004314 // See if this is a redefinition of a variable in the same scope.
John McCall63b43852010-04-29 23:50:39 +00004315 if (!D.getCXXScopeSpec().isSet()) {
John McCall68263142009-11-18 22:49:29 +00004316 bool IsLinkageLookup = false;
Richard Smithdd9459f2013-08-13 18:18:50 +00004317 bool CreateBuiltins = false;
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00004318
4319 // If the declaration we're planning to build will be a function
4320 // or object with linkage, then look for another declaration with
4321 // linkage (C99 6.2.2p4-5 and C++ [basic.link]p6).
Richard Smithdd9459f2013-08-13 18:18:50 +00004322 //
4323 // If the declaration we're planning to build will be declared with
4324 // external linkage in the translation unit, create any builtin with
4325 // the same name.
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00004326 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef)
4327 /* Do nothing*/;
Richard Smithdd9459f2013-08-13 18:18:50 +00004328 else if (CurContext->isFunctionOrMethod() &&
4329 (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_extern ||
4330 R->isFunctionType())) {
John McCall68263142009-11-18 22:49:29 +00004331 IsLinkageLookup = true;
Richard Smithdd9459f2013-08-13 18:18:50 +00004332 CreateBuiltins =
4333 CurContext->getEnclosingNamespaceContext()->isTranslationUnit();
4334 } else if (CurContext->getRedeclContext()->isTranslationUnit() &&
4335 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_static)
4336 CreateBuiltins = true;
John McCall68263142009-11-18 22:49:29 +00004337
4338 if (IsLinkageLookup)
4339 Previous.clear(LookupRedeclarationWithLinkage);
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00004340
Richard Smithdd9459f2013-08-13 18:18:50 +00004341 LookupName(Previous, S, CreateBuiltins);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00004342 } else { // Something like "int foo::x;"
John McCall68263142009-11-18 22:49:29 +00004343 LookupQualifiedName(Previous, DC);
4344
Douglas Gregor69605872012-03-28 16:01:27 +00004345 // C++ [dcl.meaning]p1:
4346 // When the declarator-id is qualified, the declaration shall refer to a
4347 // previously declared member of the class or namespace to which the
4348 // qualifier refers (or, in the case of a namespace, of an element of the
4349 // inline namespace set of that namespace (7.3.1)) or to a specialization
4350 // thereof; [...]
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00004351 //
Douglas Gregor69605872012-03-28 16:01:27 +00004352 // Note that we already checked the context above, and that we do not have
4353 // enough information to make sure that Previous contains the declaration
4354 // we want to match. For example, given:
Douglas Gregor584049d2008-12-15 23:53:10 +00004355 //
Douglas Gregor9d350972008-12-12 08:25:50 +00004356 // class X {
4357 // void f();
Douglas Gregor584049d2008-12-15 23:53:10 +00004358 // void f(float);
Douglas Gregor9d350972008-12-12 08:25:50 +00004359 // };
4360 //
Douglas Gregor584049d2008-12-15 23:53:10 +00004361 // void X::f(int) { } // ill-formed
4362 //
Douglas Gregor69605872012-03-28 16:01:27 +00004363 // In this case, Previous will point to the overload set
Douglas Gregor584049d2008-12-15 23:53:10 +00004364 // containing the two f's declared in X, but neither of them
Mike Stump1eb44332009-09-09 15:08:12 +00004365 // matches.
Douglas Gregor69605872012-03-28 16:01:27 +00004366
4367 // C++ [dcl.meaning]p1:
4368 // [...] the member shall not merely have been introduced by a
4369 // using-declaration in the scope of the class or namespace nominated by
4370 // the nested-name-specifier of the declarator-id.
4371 RemoveUsingDecls(Previous);
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +00004372 }
4373
John McCall68263142009-11-18 22:49:29 +00004374 if (Previous.isSingleResult() &&
4375 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +00004376 // Maybe we will complain about the shadowed template parameter.
Mike Stump1eb44332009-09-09 15:08:12 +00004377 if (!D.isInvalidType())
Douglas Gregorcb8f9512011-10-20 17:58:49 +00004378 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(),
4379 Previous.getFoundDecl());
Mike Stump1eb44332009-09-09 15:08:12 +00004380
Douglas Gregor72c3f312008-12-05 18:15:24 +00004381 // Just pretend that we didn't see the previous declaration.
John McCall68263142009-11-18 22:49:29 +00004382 Previous.clear();
Douglas Gregor72c3f312008-12-05 18:15:24 +00004383 }
4384
Douglas Gregor2ce52f32008-04-13 21:07:44 +00004385 // In C++, the previous declaration we find might be a tag type
4386 // (class or enum). In this case, the new declaration will hide the
Douglas Gregor66973122009-01-28 17:15:10 +00004387 // tag type. Note that this does does not apply if we're declaring a
4388 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00004389 if (Previous.isSingleTagDecl() &&
Douglas Gregor66973122009-01-28 17:15:10 +00004390 D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef)
John McCall68263142009-11-18 22:49:29 +00004391 Previous.clear();
Douglas Gregor2ce52f32008-04-13 21:07:44 +00004392
Richard Smith3cdbbdc2013-03-06 01:37:38 +00004393 // Check that there are no default arguments other than in the parameters
4394 // of a function declaration (C++ only).
4395 if (getLangOpts().CPlusPlus)
4396 CheckExtraCXXDefaultArguments(D);
4397
Nico Webere6bb76c2012-12-23 00:40:46 +00004398 NamedDecl *New;
4399
Francois Pichetaf0f4d02011-08-14 03:52:19 +00004400 bool AddToScope = true;
Reid Spencer5f016e22007-07-11 17:01:13 +00004401 if (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_typedef) {
Douglas Gregore542c862009-06-23 23:11:28 +00004402 if (TemplateParamLists.size()) {
4403 Diag(D.getIdentifierLoc(), diag::err_template_typedef);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004404 return nullptr;
Douglas Gregore542c862009-06-23 23:11:28 +00004405 }
Mike Stump1eb44332009-09-09 15:08:12 +00004406
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00004407 New = ActOnTypedefDeclarator(S, D, DC, TInfo, Previous);
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00004408 } else if (R->isFunctionType()) {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00004409 New = ActOnFunctionDeclarator(S, D, DC, TInfo, Previous,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00004410 TemplateParamLists,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00004411 AddToScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00004412 } else {
Larisse Voufoef4579c2013-08-06 01:03:05 +00004413 New = ActOnVariableDeclarator(S, D, DC, TInfo, Previous, TemplateParamLists,
4414 AddToScope);
Reid Spencer5f016e22007-07-11 17:01:13 +00004415 }
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00004416
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004417 if (!New)
4418 return nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00004419
Douglas Gregorb9aa6b22009-09-24 23:14:47 +00004420 // If this has an identifier and is not an invalid redeclaration or
4421 // function template specialization, add it to the scope stack.
Francois Pichetaf0f4d02011-08-14 03:52:19 +00004422 if (New->getDeclName() && AddToScope &&
Richard Smitha41c97a2013-09-20 01:15:31 +00004423 !(D.isRedeclaration() && New->isInvalidDecl())) {
4424 // Only make a locally-scoped extern declaration visible if it is the first
4425 // declaration of this entity. Qualified lookup for such an entity should
4426 // only find this declaration if there is no visible declaration of it.
4427 bool AddToContext = !D.isRedeclaration() || !New->isLocalExternDecl();
4428 PushOnScopeChains(New, S, AddToContext);
4429 if (!AddToContext)
4430 CurContext->addHiddenDecl(New);
4431 }
Mike Stump1eb44332009-09-09 15:08:12 +00004432
John McCalld226f652010-08-21 09:40:31 +00004433 return New;
Reid Spencer5f016e22007-07-11 17:01:13 +00004434}
4435
Abramo Bagnara88adb982012-11-08 16:27:30 +00004436/// Helper method to turn variable array types into constant array
4437/// types in certain situations which would otherwise be errors (for
4438/// GCC compatibility).
Eli Friedman1ca48132009-02-21 00:44:51 +00004439static QualType TryToFixInvalidVariablyModifiedType(QualType T,
4440 ASTContext &Context,
Douglas Gregor2767ce22010-08-18 00:39:00 +00004441 bool &SizeIsNegative,
4442 llvm::APSInt &Oversized) {
Eli Friedman1ca48132009-02-21 00:44:51 +00004443 // This method tries to turn a variable array into a constant
4444 // array even when the size isn't an ICE. This is necessary
4445 // for compatibility with code that depends on gcc's buggy
4446 // constant expression folding, like struct {char x[(int)(char*)2];}
4447 SizeIsNegative = false;
Douglas Gregor2767ce22010-08-18 00:39:00 +00004448 Oversized = 0;
4449
4450 if (T->isDependentType())
4451 return QualType();
4452
John McCall0953e762009-09-24 19:53:00 +00004453 QualifierCollector Qs;
4454 const Type *Ty = Qs.strip(T);
4455
4456 if (const PointerType* PTy = dyn_cast<PointerType>(Ty)) {
Eli Friedman1ca48132009-02-21 00:44:51 +00004457 QualType Pointee = PTy->getPointeeType();
4458 QualType FixedType =
Douglas Gregor2767ce22010-08-18 00:39:00 +00004459 TryToFixInvalidVariablyModifiedType(Pointee, Context, SizeIsNegative,
4460 Oversized);
Eli Friedman1ca48132009-02-21 00:44:51 +00004461 if (FixedType.isNull()) return FixedType;
Eli Friedman61125c82009-02-21 00:58:02 +00004462 FixedType = Context.getPointerType(FixedType);
John McCall49f4e1c2010-12-10 11:01:00 +00004463 return Qs.apply(Context, FixedType);
Eli Friedman1ca48132009-02-21 00:44:51 +00004464 }
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004465 if (const ParenType* PTy = dyn_cast<ParenType>(Ty)) {
4466 QualType Inner = PTy->getInnerType();
4467 QualType FixedType =
4468 TryToFixInvalidVariablyModifiedType(Inner, Context, SizeIsNegative,
4469 Oversized);
4470 if (FixedType.isNull()) return FixedType;
4471 FixedType = Context.getParenType(FixedType);
4472 return Qs.apply(Context, FixedType);
4473 }
Eli Friedman1ca48132009-02-21 00:44:51 +00004474
4475 const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T);
Eli Friedmanbc592e62009-02-26 03:58:54 +00004476 if (!VLATy)
4477 return QualType();
4478 // FIXME: We should probably handle this case
4479 if (VLATy->getElementType()->isVariablyModifiedType())
4480 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00004481
Richard Smithaa9c3502011-12-07 00:43:50 +00004482 llvm::APSInt Res;
Eli Friedman1ca48132009-02-21 00:44:51 +00004483 if (!VLATy->getSizeExpr() ||
Richard Smithaa9c3502011-12-07 00:43:50 +00004484 !VLATy->getSizeExpr()->EvaluateAsInt(Res, Context))
Eli Friedman1ca48132009-02-21 00:44:51 +00004485 return QualType();
Eli Friedmanbc592e62009-02-26 03:58:54 +00004486
Douglas Gregor2767ce22010-08-18 00:39:00 +00004487 // Check whether the array size is negative.
Douglas Gregor2767ce22010-08-18 00:39:00 +00004488 if (Res.isSigned() && Res.isNegative()) {
4489 SizeIsNegative = true;
4490 return QualType();
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004491 }
Eli Friedman1ca48132009-02-21 00:44:51 +00004492
Douglas Gregor2767ce22010-08-18 00:39:00 +00004493 // Check whether the array is too large to be addressed.
4494 unsigned ActiveSizeBits
4495 = ConstantArrayType::getNumAddressingBits(Context, VLATy->getElementType(),
4496 Res);
4497 if (ActiveSizeBits > ConstantArrayType::getMaxSizeBits(Context)) {
4498 Oversized = Res;
4499 return QualType();
4500 }
4501
4502 return Context.getConstantArrayType(VLATy->getElementType(),
4503 Res, ArrayType::Normal, 0);
Eli Friedman1ca48132009-02-21 00:44:51 +00004504}
4505
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004506static void
4507FixInvalidVariablyModifiedTypeLoc(TypeLoc SrcTL, TypeLoc DstTL) {
David Blaikie39e6ab42013-02-18 22:06:02 +00004508 if (PointerTypeLoc SrcPTL = SrcTL.getAs<PointerTypeLoc>()) {
4509 PointerTypeLoc DstPTL = DstTL.castAs<PointerTypeLoc>();
4510 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getPointeeLoc(),
4511 DstPTL.getPointeeLoc());
4512 DstPTL.setStarLoc(SrcPTL.getStarLoc());
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004513 return;
4514 }
David Blaikie39e6ab42013-02-18 22:06:02 +00004515 if (ParenTypeLoc SrcPTL = SrcTL.getAs<ParenTypeLoc>()) {
4516 ParenTypeLoc DstPTL = DstTL.castAs<ParenTypeLoc>();
4517 FixInvalidVariablyModifiedTypeLoc(SrcPTL.getInnerLoc(),
4518 DstPTL.getInnerLoc());
4519 DstPTL.setLParenLoc(SrcPTL.getLParenLoc());
4520 DstPTL.setRParenLoc(SrcPTL.getRParenLoc());
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004521 return;
4522 }
David Blaikie39e6ab42013-02-18 22:06:02 +00004523 ArrayTypeLoc SrcATL = SrcTL.castAs<ArrayTypeLoc>();
4524 ArrayTypeLoc DstATL = DstTL.castAs<ArrayTypeLoc>();
4525 TypeLoc SrcElemTL = SrcATL.getElementLoc();
4526 TypeLoc DstElemTL = DstATL.getElementLoc();
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004527 DstElemTL.initializeFullCopy(SrcElemTL);
David Blaikie39e6ab42013-02-18 22:06:02 +00004528 DstATL.setLBracketLoc(SrcATL.getLBracketLoc());
4529 DstATL.setSizeExpr(SrcATL.getSizeExpr());
4530 DstATL.setRBracketLoc(SrcATL.getRBracketLoc());
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004531}
4532
Abramo Bagnara88adb982012-11-08 16:27:30 +00004533/// Helper method to turn variable array types into constant array
4534/// types in certain situations which would otherwise be errors (for
4535/// GCC compatibility).
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004536static TypeSourceInfo*
4537TryToFixInvalidVariablyModifiedTypeSourceInfo(TypeSourceInfo *TInfo,
4538 ASTContext &Context,
4539 bool &SizeIsNegative,
4540 llvm::APSInt &Oversized) {
4541 QualType FixedTy
4542 = TryToFixInvalidVariablyModifiedType(TInfo->getType(), Context,
4543 SizeIsNegative, Oversized);
4544 if (FixedTy.isNull())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004545 return nullptr;
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004546 TypeSourceInfo *FixedTInfo = Context.getTrivialTypeSourceInfo(FixedTy);
4547 FixInvalidVariablyModifiedTypeLoc(TInfo->getTypeLoc(),
4548 FixedTInfo->getTypeLoc());
4549 return FixedTInfo;
4550}
4551
Richard Smith5ea6ef42013-01-10 23:43:47 +00004552/// \brief Register the given locally-scoped extern "C" declaration so
Richard Smith662f41b2013-06-18 20:15:12 +00004553/// that it can be found later for redeclarations. We include any extern "C"
4554/// declaration that is not visible in the translation unit here, not just
4555/// function-scope declarations.
Mike Stump1eb44332009-09-09 15:08:12 +00004556void
Richard Smith662f41b2013-06-18 20:15:12 +00004557Sema::RegisterLocallyScopedExternCDecl(NamedDecl *ND, Scope *S) {
Richard Smithaa4bc182013-06-30 09:48:50 +00004558 if (!getLangOpts().CPlusPlus &&
4559 ND->getLexicalDeclContext()->getRedeclContext()->isTranslationUnit())
4560 // Don't need to track declarations in the TU in C.
4561 return;
4562
Douglas Gregor63935192009-03-02 00:19:53 +00004563 // Note that we have a locally-scoped external with this name.
Richard Smithaa4bc182013-06-30 09:48:50 +00004564 // FIXME: There can be multiple such declarations if they are functions marked
4565 // __attribute__((overloadable)) declared in function scope in C.
Richard Smith5ea6ef42013-01-10 23:43:47 +00004566 LocallyScopedExternCDecls[ND->getDeclName()] = ND;
Douglas Gregor63935192009-03-02 00:19:53 +00004567}
4568
Richard Smith662f41b2013-06-18 20:15:12 +00004569NamedDecl *Sema::findLocallyScopedExternCDecl(DeclarationName Name) {
Douglas Gregorec12ce22011-07-28 14:20:37 +00004570 if (ExternalSource) {
4571 // Load locally-scoped external decls from the external source.
Richard Smith662f41b2013-06-18 20:15:12 +00004572 // FIXME: This is inefficient. Maybe add a DeclContext for extern "C" decls?
Douglas Gregorec12ce22011-07-28 14:20:37 +00004573 SmallVector<NamedDecl *, 4> Decls;
Richard Smith5ea6ef42013-01-10 23:43:47 +00004574 ExternalSource->ReadLocallyScopedExternCDecls(Decls);
Douglas Gregorec12ce22011-07-28 14:20:37 +00004575 for (unsigned I = 0, N = Decls.size(); I != N; ++I) {
4576 llvm::DenseMap<DeclarationName, NamedDecl *>::iterator Pos
Richard Smith5ea6ef42013-01-10 23:43:47 +00004577 = LocallyScopedExternCDecls.find(Decls[I]->getDeclName());
4578 if (Pos == LocallyScopedExternCDecls.end())
4579 LocallyScopedExternCDecls[Decls[I]->getDeclName()] = Decls[I];
Douglas Gregorec12ce22011-07-28 14:20:37 +00004580 }
4581 }
Richard Smith662f41b2013-06-18 20:15:12 +00004582
4583 NamedDecl *D = LocallyScopedExternCDecls.lookup(Name);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004584 return D ? D->getMostRecentDecl() : nullptr;
Douglas Gregorec12ce22011-07-28 14:20:37 +00004585}
4586
Eli Friedman85a53192009-04-07 19:37:57 +00004587/// \brief Diagnose function specifiers on a declaration of an identifier that
4588/// does not identify a function.
Richard Smithc7f81162013-03-18 22:52:47 +00004589void Sema::DiagnoseFunctionSpecifiers(const DeclSpec &DS) {
Eli Friedman85a53192009-04-07 19:37:57 +00004590 // FIXME: We should probably indicate the identifier in question to avoid
4591 // confusion for constructs like "inline int a(), b;"
Richard Smithc7f81162013-03-18 22:52:47 +00004592 if (DS.isInlineSpecified())
4593 Diag(DS.getInlineSpecLoc(),
Eli Friedman85a53192009-04-07 19:37:57 +00004594 diag::err_inline_non_function);
4595
Richard Smithc7f81162013-03-18 22:52:47 +00004596 if (DS.isVirtualSpecified())
4597 Diag(DS.getVirtualSpecLoc(),
Eli Friedman85a53192009-04-07 19:37:57 +00004598 diag::err_virtual_non_function);
4599
Richard Smithc7f81162013-03-18 22:52:47 +00004600 if (DS.isExplicitSpecified())
4601 Diag(DS.getExplicitSpecLoc(),
Eli Friedman85a53192009-04-07 19:37:57 +00004602 diag::err_explicit_non_function);
Richard Smithde03c152013-01-17 22:16:11 +00004603
Richard Smithc7f81162013-03-18 22:52:47 +00004604 if (DS.isNoreturnSpecified())
4605 Diag(DS.getNoreturnSpecLoc(),
Richard Smithde03c152013-01-17 22:16:11 +00004606 diag::err_noreturn_non_function);
Eli Friedman85a53192009-04-07 19:37:57 +00004607}
4608
Douglas Gregor4afa39d2009-01-20 01:17:11 +00004609NamedDecl*
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00004610Sema::ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00004611 TypeSourceInfo *TInfo, LookupResult &Previous) {
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00004612 // Typedef declarators cannot be qualified (C++ [dcl.meaning]p1).
4613 if (D.getCXXScopeSpec().isSet()) {
4614 Diag(D.getIdentifierLoc(), diag::err_qualified_typedef_declarator)
4615 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00004616 D.setInvalidType();
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00004617 // Pretend we didn't see the scope specifier.
Douglas Gregor9de672f2010-03-23 15:26:55 +00004618 DC = CurContext;
4619 Previous.clear();
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00004620 }
4621
Richard Smithc7f81162013-03-18 22:52:47 +00004622 DiagnoseFunctionSpecifiers(D.getDeclSpec());
Eli Friedman85a53192009-04-07 19:37:57 +00004623
Richard Smithaf1fc7a2011-08-15 21:04:07 +00004624 if (D.getDeclSpec().isConstexprSpecified())
4625 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_invalid_constexpr)
4626 << 1;
Eli Friedman63054b32009-04-19 20:27:55 +00004627
Douglas Gregoraef01992010-07-13 06:37:01 +00004628 if (D.getName().Kind != UnqualifiedId::IK_Identifier) {
4629 Diag(D.getName().StartLocation, diag::err_typedef_not_identifier)
4630 << D.getName().getSourceRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004631 return nullptr;
Douglas Gregoraef01992010-07-13 06:37:01 +00004632 }
4633
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00004634 TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004635 if (!NewTD) return nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00004636
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00004637 // Handle attributes prior to checking for duplicates in MergeVarDecl
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00004638 ProcessDeclAttributes(S, NewTD, D);
John McCall68263142009-11-18 22:49:29 +00004639
Richard Smith3e4c6c42011-05-05 21:57:07 +00004640 CheckTypedefForVariablyModifiedType(S, NewTD);
4641
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00004642 bool Redeclaration = D.isRedeclaration();
4643 NamedDecl *ND = ActOnTypedefNameDecl(S, DC, NewTD, Previous, Redeclaration);
4644 D.setRedeclaration(Redeclaration);
4645 return ND;
Richard Smith162e1c12011-04-15 14:24:37 +00004646}
4647
Richard Smith3e4c6c42011-05-05 21:57:07 +00004648void
4649Sema::CheckTypedefForVariablyModifiedType(Scope *S, TypedefNameDecl *NewTD) {
Chris Lattner38c5ebd2009-04-19 05:21:20 +00004650 // C99 6.7.7p2: If a typedef name specifies a variably modified type
4651 // then it shall have block scope.
Eli Friedmanbf87f2c2010-08-10 03:13:15 +00004652 // Note that variably modified types must be fixed before merging the decl so
4653 // that redeclarations will match.
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004654 TypeSourceInfo *TInfo = NewTD->getTypeSourceInfo();
4655 QualType T = TInfo->getType();
Chris Lattner38c5ebd2009-04-19 05:21:20 +00004656 if (T->isVariablyModifiedType()) {
John McCall781472f2010-08-25 08:40:02 +00004657 getCurFunction()->setHasBranchProtectedScope();
Mike Stump1eb44332009-09-09 15:08:12 +00004658
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004659 if (S->getFnParent() == nullptr) {
Eli Friedman1ca48132009-02-21 00:44:51 +00004660 bool SizeIsNegative;
Douglas Gregor2767ce22010-08-18 00:39:00 +00004661 llvm::APSInt Oversized;
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004662 TypeSourceInfo *FixedTInfo =
4663 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
4664 SizeIsNegative,
4665 Oversized);
4666 if (FixedTInfo) {
Richard Smith162e1c12011-04-15 14:24:37 +00004667 Diag(NewTD->getLocation(), diag::warn_illegal_constant_array_size);
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00004668 NewTD->setTypeSourceInfo(FixedTInfo);
Eli Friedman1ca48132009-02-21 00:44:51 +00004669 } else {
4670 if (SizeIsNegative)
Richard Smith162e1c12011-04-15 14:24:37 +00004671 Diag(NewTD->getLocation(), diag::err_typecheck_negative_array_size);
Eli Friedman1ca48132009-02-21 00:44:51 +00004672 else if (T->isVariableArrayType())
Richard Smith162e1c12011-04-15 14:24:37 +00004673 Diag(NewTD->getLocation(), diag::err_vla_decl_in_file_scope);
Douglas Gregor2767ce22010-08-18 00:39:00 +00004674 else if (Oversized.getBoolValue())
David Blaikied662a792011-10-19 22:56:21 +00004675 Diag(NewTD->getLocation(), diag::err_array_too_large)
4676 << Oversized.toString(10);
Eli Friedman1ca48132009-02-21 00:44:51 +00004677 else
Richard Smith162e1c12011-04-15 14:24:37 +00004678 Diag(NewTD->getLocation(), diag::err_vm_decl_in_file_scope);
Chris Lattnereaaebc72009-04-25 08:06:05 +00004679 NewTD->setInvalidDecl();
Eli Friedman1ca48132009-02-21 00:44:51 +00004680 }
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00004681 }
4682 }
Richard Smith3e4c6c42011-05-05 21:57:07 +00004683}
Douglas Gregorc29f77b2009-07-07 16:35:42 +00004684
Richard Smith3e4c6c42011-05-05 21:57:07 +00004685
4686/// ActOnTypedefNameDecl - Perform semantic checking for a declaration which
4687/// declares a typedef-name, either using the 'typedef' type specifier or via
4688/// a C++0x [dcl.typedef]p2 alias-declaration: 'using T = A;'.
4689NamedDecl*
4690Sema::ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD,
4691 LookupResult &Previous, bool &Redeclaration) {
Eli Friedmanbf87f2c2010-08-10 03:13:15 +00004692 // Merge the decl with the existing one if appropriate. If the decl is
4693 // in an outer scope, it isn't the same thing.
Stephen Hines651f13c2014-04-23 16:59:28 -07004694 FilterLookupForScope(Previous, DC, S, /*ConsiderLinkage*/false,
4695 /*AllowInlineNamespace*/false);
Douglas Gregor7dc80e12013-01-09 00:47:56 +00004696 filterNonConflictingPreviousDecls(Context, NewTD, Previous);
Eli Friedmanbf87f2c2010-08-10 03:13:15 +00004697 if (!Previous.empty()) {
4698 Redeclaration = true;
Richard Smith162e1c12011-04-15 14:24:37 +00004699 MergeTypedefNameDecl(NewTD, Previous);
Eli Friedmanbf87f2c2010-08-10 03:13:15 +00004700 }
4701
Douglas Gregorc29f77b2009-07-07 16:35:42 +00004702 // If this is the C FILE type, notify the AST context.
4703 if (IdentifierInfo *II = NewTD->getIdentifier())
4704 if (!NewTD->isInvalidDecl() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +00004705 NewTD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
Mike Stump782fa302009-07-28 02:25:19 +00004706 if (II->isStr("FILE"))
4707 Context.setFILEDecl(NewTD);
4708 else if (II->isStr("jmp_buf"))
4709 Context.setjmp_bufDecl(NewTD);
4710 else if (II->isStr("sigjmp_buf"))
4711 Context.setsigjmp_bufDecl(NewTD);
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00004712 else if (II->isStr("ucontext_t"))
4713 Context.setucontext_tDecl(NewTD);
Mike Stump782fa302009-07-28 02:25:19 +00004714 }
4715
Zhongxing Xud5ed8c32009-01-16 03:34:13 +00004716 return NewTD;
4717}
4718
Douglas Gregor8f301052009-02-24 19:23:27 +00004719/// \brief Determines whether the given declaration is an out-of-scope
4720/// previous declaration.
4721///
4722/// This routine should be invoked when name lookup has found a
4723/// previous declaration (PrevDecl) that is not in the scope where a
4724/// new declaration by the same name is being introduced. If the new
4725/// declaration occurs in a local scope, previous declarations with
4726/// linkage may still be considered previous declarations (C99
4727/// 6.2.2p4-5, C++ [basic.link]p6).
4728///
4729/// \param PrevDecl the previous declaration found by name
4730/// lookup
Mike Stump1eb44332009-09-09 15:08:12 +00004731///
Douglas Gregor8f301052009-02-24 19:23:27 +00004732/// \param DC the context in which the new declaration is being
4733/// declared.
4734///
4735/// \returns true if PrevDecl is an out-of-scope previous declaration
4736/// for a new delcaration with the same name.
Mike Stump1eb44332009-09-09 15:08:12 +00004737static bool
Douglas Gregor8f301052009-02-24 19:23:27 +00004738isOutOfScopePreviousDeclaration(NamedDecl *PrevDecl, DeclContext *DC,
4739 ASTContext &Context) {
4740 if (!PrevDecl)
Sebastian Redl7a126a42010-08-31 00:36:30 +00004741 return false;
Douglas Gregor8f301052009-02-24 19:23:27 +00004742
Douglas Gregord6f7e9d2009-02-24 20:03:32 +00004743 if (!PrevDecl->hasLinkage())
4744 return false;
Douglas Gregor8f301052009-02-24 19:23:27 +00004745
David Blaikie4e4d0842012-03-11 07:00:24 +00004746 if (Context.getLangOpts().CPlusPlus) {
Douglas Gregor8f301052009-02-24 19:23:27 +00004747 // C++ [basic.link]p6:
4748 // If there is a visible declaration of an entity with linkage
4749 // having the same name and type, ignoring entities declared
4750 // outside the innermost enclosing namespace scope, the block
4751 // scope declaration declares that same entity and receives the
4752 // linkage of the previous declaration.
Sebastian Redl7a126a42010-08-31 00:36:30 +00004753 DeclContext *OuterContext = DC->getRedeclContext();
Douglas Gregor8f301052009-02-24 19:23:27 +00004754 if (!OuterContext->isFunctionOrMethod())
4755 // This rule only applies to block-scope declarations.
4756 return false;
Douglas Gregor757c6002010-08-27 22:55:10 +00004757
4758 DeclContext *PrevOuterContext = PrevDecl->getDeclContext();
4759 if (PrevOuterContext->isRecord())
4760 // We found a member function: ignore it.
4761 return false;
4762
4763 // Find the innermost enclosing namespace for the new and
4764 // previous declarations.
Sebastian Redl7a126a42010-08-31 00:36:30 +00004765 OuterContext = OuterContext->getEnclosingNamespaceContext();
4766 PrevOuterContext = PrevOuterContext->getEnclosingNamespaceContext();
Mike Stump1eb44332009-09-09 15:08:12 +00004767
Douglas Gregor757c6002010-08-27 22:55:10 +00004768 // The previous declaration is in a different namespace, so it
4769 // isn't the same function.
4770 if (!OuterContext->Equals(PrevOuterContext))
4771 return false;
Douglas Gregor8f301052009-02-24 19:23:27 +00004772 }
4773
Douglas Gregor8f301052009-02-24 19:23:27 +00004774 return true;
4775}
4776
John McCallb6217662010-03-15 10:12:16 +00004777static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) {
4778 CXXScopeSpec &SS = D.getCXXScopeSpec();
4779 if (!SS.isSet()) return;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004780 DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext()));
John McCallb6217662010-03-15 10:12:16 +00004781}
4782
John McCallf85e1932011-06-15 23:02:42 +00004783bool Sema::inferObjCARCLifetime(ValueDecl *decl) {
4784 QualType type = decl->getType();
4785 Qualifiers::ObjCLifetime lifetime = type.getObjCLifetime();
4786 if (lifetime == Qualifiers::OCL_Autoreleasing) {
4787 // Various kinds of declaration aren't allowed to be __autoreleasing.
4788 unsigned kind = -1U;
4789 if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
4790 if (var->hasAttr<BlocksAttr>())
4791 kind = 0; // __block
4792 else if (!var->hasLocalStorage())
4793 kind = 1; // global
4794 } else if (isa<ObjCIvarDecl>(decl)) {
4795 kind = 3; // ivar
4796 } else if (isa<FieldDecl>(decl)) {
4797 kind = 2; // field
4798 }
4799
4800 if (kind != -1U) {
4801 Diag(decl->getLocation(), diag::err_arc_autoreleasing_var)
4802 << kind;
4803 }
4804 } else if (lifetime == Qualifiers::OCL_None) {
4805 // Try to infer lifetime.
4806 if (!type->isObjCLifetimeType())
4807 return false;
4808
4809 lifetime = type->getObjCARCImplicitLifetime();
4810 type = Context.getLifetimeQualifiedType(type, lifetime);
4811 decl->setType(type);
4812 }
4813
4814 if (VarDecl *var = dyn_cast<VarDecl>(decl)) {
4815 // Thread-local variables cannot have lifetime.
4816 if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone &&
Richard Smith38afbc72013-04-13 02:43:54 +00004817 var->getTLSKind()) {
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00004818 Diag(var->getLocation(), diag::err_arc_thread_ownership)
John McCallf85e1932011-06-15 23:02:42 +00004819 << var->getType();
4820 return true;
4821 }
4822 }
4823
4824 return false;
4825}
4826
Rafael Espindola2a5bb502013-01-16 23:11:15 +00004827static void checkAttributesAfterMerging(Sema &S, NamedDecl &ND) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004828 // Ensure that an auto decl is deduced otherwise the checks below might cache
4829 // the wrong linkage.
4830 assert(S.ParsingInitForAutoVars.count(&ND) == 0);
4831
Rafael Espindola2a5bb502013-01-16 23:11:15 +00004832 // 'weak' only applies to declarations with external linkage.
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004833 if (WeakAttr *Attr = ND.getAttr<WeakAttr>()) {
Rafael Espindola181e3ec2013-05-13 00:12:11 +00004834 if (!ND.isExternallyVisible()) {
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004835 S.Diag(Attr->getLocation(), diag::err_attribute_weak_static);
4836 ND.dropAttr<WeakAttr>();
4837 }
4838 }
4839 if (WeakRefAttr *Attr = ND.getAttr<WeakRefAttr>()) {
Rafael Espindola181e3ec2013-05-13 00:12:11 +00004840 if (ND.isExternallyVisible()) {
Rafael Espindola4d8a33b2013-01-16 23:49:06 +00004841 S.Diag(Attr->getLocation(), diag::err_attribute_weakref_not_static);
4842 ND.dropAttr<WeakRefAttr>();
4843 }
Rafael Espindola2a5bb502013-01-16 23:11:15 +00004844 }
Reid Klecknera7225342013-05-20 14:02:37 +00004845
4846 // 'selectany' only applies to externally visible varable declarations.
4847 // It does not apply to functions.
4848 if (SelectAnyAttr *Attr = ND.getAttr<SelectAnyAttr>()) {
4849 if (isa<FunctionDecl>(ND) || !ND.isExternallyVisible()) {
4850 S.Diag(Attr->getLocation(), diag::err_attribute_selectany_non_extern_data);
4851 ND.dropAttr<SelectAnyAttr>();
4852 }
4853 }
Stephen Hines651f13c2014-04-23 16:59:28 -07004854
4855 // dll attributes require external linkage.
4856 if (const DLLImportAttr *Attr = ND.getAttr<DLLImportAttr>()) {
4857 if (!ND.isExternallyVisible()) {
4858 S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern)
4859 << &ND << Attr;
4860 ND.setInvalidDecl();
4861 }
4862 }
4863 if (const DLLExportAttr *Attr = ND.getAttr<DLLExportAttr>()) {
4864 if (!ND.isExternallyVisible()) {
4865 S.Diag(ND.getLocation(), diag::err_attribute_dll_not_extern)
4866 << &ND << Attr;
4867 ND.setInvalidDecl();
4868 }
4869 }
4870}
4871
4872static void checkDLLAttributeRedeclaration(Sema &S, NamedDecl *OldDecl,
4873 NamedDecl *NewDecl,
4874 bool IsSpecialization) {
4875 if (TemplateDecl *OldTD = dyn_cast<TemplateDecl>(OldDecl))
4876 OldDecl = OldTD->getTemplatedDecl();
4877 if (TemplateDecl *NewTD = dyn_cast<TemplateDecl>(NewDecl))
4878 NewDecl = NewTD->getTemplatedDecl();
4879
4880 if (!OldDecl || !NewDecl)
4881 return;
4882
4883 const DLLImportAttr *OldImportAttr = OldDecl->getAttr<DLLImportAttr>();
4884 const DLLExportAttr *OldExportAttr = OldDecl->getAttr<DLLExportAttr>();
4885 const DLLImportAttr *NewImportAttr = NewDecl->getAttr<DLLImportAttr>();
4886 const DLLExportAttr *NewExportAttr = NewDecl->getAttr<DLLExportAttr>();
4887
4888 // dllimport and dllexport are inheritable attributes so we have to exclude
4889 // inherited attribute instances.
4890 bool HasNewAttr = (NewImportAttr && !NewImportAttr->isInherited()) ||
4891 (NewExportAttr && !NewExportAttr->isInherited());
4892
4893 // A redeclaration is not allowed to add a dllimport or dllexport attribute,
4894 // the only exception being explicit specializations.
4895 // Implicitly generated declarations are also excluded for now because there
4896 // is no other way to switch these to use dllimport or dllexport.
4897 bool AddsAttr = !(OldImportAttr || OldExportAttr) && HasNewAttr;
4898 if (AddsAttr && !IsSpecialization && !OldDecl->isImplicit()) {
4899 S.Diag(NewDecl->getLocation(), diag::err_attribute_dll_redeclaration)
4900 << NewDecl
4901 << (NewImportAttr ? (const Attr *)NewImportAttr : NewExportAttr);
4902 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
4903 NewDecl->setInvalidDecl();
4904 return;
4905 }
4906
4907 // A redeclaration is not allowed to drop a dllimport attribute, the only
4908 // exception being inline function definitions.
Stephen Hines651f13c2014-04-23 16:59:28 -07004909 // NB: MSVC converts such a declaration to dllexport.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004910 bool IsInline =
4911 isa<FunctionDecl>(NewDecl) && cast<FunctionDecl>(NewDecl)->isInlined();
4912
4913 if (OldImportAttr && !HasNewAttr && !IsInline) {
Stephen Hines651f13c2014-04-23 16:59:28 -07004914 S.Diag(NewDecl->getLocation(),
4915 diag::warn_redeclaration_without_attribute_prev_attribute_ignored)
4916 << NewDecl << OldImportAttr;
4917 S.Diag(OldDecl->getLocation(), diag::note_previous_declaration);
4918 S.Diag(OldImportAttr->getLocation(), diag::note_previous_attribute);
4919 OldDecl->dropAttr<DLLImportAttr>();
4920 NewDecl->dropAttr<DLLImportAttr>();
4921 }
Rafael Espindola2a5bb502013-01-16 23:11:15 +00004922}
4923
John McCallb421d922013-04-02 02:48:58 +00004924/// Given that we are within the definition of the given function,
4925/// will that definition behave like C99's 'inline', where the
4926/// definition is discarded except for optimization purposes?
4927static bool isFunctionDefinitionDiscarded(Sema &S, FunctionDecl *FD) {
4928 // Try to avoid calling GetGVALinkageForFunction.
4929
4930 // All cases of this require the 'inline' keyword.
4931 if (!FD->isInlined()) return false;
4932
4933 // This is only possible in C++ with the gnu_inline attribute.
4934 if (S.getLangOpts().CPlusPlus && !FD->hasAttr<GNUInlineAttr>())
4935 return false;
4936
4937 // Okay, go ahead and call the relatively-more-expensive function.
4938
4939#ifndef NDEBUG
4940 // AST quite reasonably asserts that it's working on a function
4941 // definition. We don't really have a way to tell it that we're
4942 // currently defining the function, so just lie to it in +Asserts
4943 // builds. This is an awful hack.
4944 FD->setLazyBody(1);
4945#endif
4946
Stephen Hines6bcf27b2014-05-29 04:14:42 -07004947 bool isC99Inline =
4948 S.Context.GetGVALinkageForFunction(FD) == GVA_AvailableExternally;
John McCallb421d922013-04-02 02:48:58 +00004949
4950#ifndef NDEBUG
4951 FD->setLazyBody(0);
4952#endif
4953
4954 return isC99Inline;
4955}
4956
Richard Smithaa4bc182013-06-30 09:48:50 +00004957/// Determine whether a variable is extern "C" prior to attaching
4958/// an initializer. We can't just call isExternC() here, because that
4959/// will also compute and cache whether the declaration is externally
4960/// visible, which might change when we attach the initializer.
4961///
4962/// This can only be used if the declaration is known to not be a
4963/// redeclaration of an internal linkage declaration.
4964///
4965/// For instance:
4966///
4967/// auto x = []{};
4968///
4969/// Attaching the initializer here makes this declaration not externally
4970/// visible, because its type has internal linkage.
4971///
4972/// FIXME: This is a hack.
4973template<typename T>
4974static bool isIncompleteDeclExternC(Sema &S, const T *D) {
4975 if (S.getLangOpts().CPlusPlus) {
4976 // In C++, the overloadable attribute negates the effects of extern "C".
4977 if (!D->isInExternCContext() || D->template hasAttr<OverloadableAttr>())
4978 return false;
4979 }
4980 return D->isExternC();
4981}
4982
Rafael Espindola2d1b0962013-03-14 03:07:35 +00004983static bool shouldConsiderLinkage(const VarDecl *VD) {
4984 const DeclContext *DC = VD->getDeclContext()->getRedeclContext();
4985 if (DC->isFunctionOrMethod())
Rafael Espindolad2615cc2013-04-03 19:27:57 +00004986 return VD->hasExternalStorage();
Rafael Espindola2d1b0962013-03-14 03:07:35 +00004987 if (DC->isFileContext())
4988 return true;
4989 if (DC->isRecord())
4990 return false;
4991 llvm_unreachable("Unexpected context");
4992}
4993
4994static bool shouldConsiderLinkage(const FunctionDecl *FD) {
4995 const DeclContext *DC = FD->getDeclContext()->getRedeclContext();
4996 if (DC->isFileContext() || DC->isFunctionOrMethod())
4997 return true;
4998 if (DC->isRecord())
4999 return false;
5000 llvm_unreachable("Unexpected context");
5001}
5002
Stephen Hines651f13c2014-04-23 16:59:28 -07005003static bool hasParsedAttr(Scope *S, const AttributeList *AttrList,
5004 AttributeList::Kind Kind) {
5005 for (const AttributeList *L = AttrList; L; L = L->getNext())
5006 if (L->getKind() == Kind)
5007 return true;
5008 return false;
5009}
5010
5011static bool hasParsedAttr(Scope *S, const Declarator &PD,
5012 AttributeList::Kind Kind) {
5013 // Check decl attributes on the DeclSpec.
5014 if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind))
5015 return true;
5016
5017 // Walk the declarator structure, checking decl attributes that were in a type
5018 // position to the decl itself.
5019 for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) {
5020 if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind))
5021 return true;
5022 }
5023
5024 // Finally, check attributes on the decl itself.
5025 return hasParsedAttr(S, PD.getAttributes(), Kind);
5026}
5027
Richard Smitha41c97a2013-09-20 01:15:31 +00005028/// Adjust the \c DeclContext for a function or variable that might be a
5029/// function-local external declaration.
5030bool Sema::adjustContextForLocalExternDecl(DeclContext *&DC) {
5031 if (!DC->isFunctionOrMethod())
5032 return false;
5033
5034 // If this is a local extern function or variable declared within a function
5035 // template, don't add it into the enclosing namespace scope until it is
5036 // instantiated; it might have a dependent type right now.
5037 if (DC->isDependentContext())
5038 return true;
5039
5040 // C++11 [basic.link]p7:
5041 // When a block scope declaration of an entity with linkage is not found to
5042 // refer to some other declaration, then that entity is a member of the
5043 // innermost enclosing namespace.
5044 //
5045 // Per C++11 [namespace.def]p6, the innermost enclosing namespace is a
5046 // semantically-enclosing namespace, not a lexically-enclosing one.
5047 while (!DC->isFileContext() && !isa<LinkageSpecDecl>(DC))
5048 DC = DC->getParent();
5049 return true;
5050}
5051
Larisse Voufoef4579c2013-08-06 01:03:05 +00005052NamedDecl *
Chris Lattner16c5dea2010-10-10 18:16:20 +00005053Sema::ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005054 TypeSourceInfo *TInfo, LookupResult &Previous,
Larisse Voufoef4579c2013-08-06 01:03:05 +00005055 MultiTemplateParamsArg TemplateParamLists,
5056 bool &AddToScope) {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005057 QualType R = TInfo->getType();
Abramo Bagnara25777432010-08-11 22:01:17 +00005058 DeclarationName Name = GetNameForDeclarator(D).getName();
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005059
Douglas Gregor16573fa2010-04-19 22:54:31 +00005060 DeclSpec::SCS SCSpec = D.getDeclSpec().getStorageClassSpec();
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00005061 VarDecl::StorageClass SC =
5062 StorageClassSpecToVarDeclStorageClass(D.getDeclSpec());
Joey Gouly19dbb202013-01-23 11:56:20 +00005063
Stephen Hines651f13c2014-04-23 16:59:28 -07005064 // dllimport globals without explicit storage class are treated as extern. We
5065 // have to change the storage class this early to get the right DeclContext.
5066 if (SC == SC_None && !DC->isRecord() &&
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005067 hasParsedAttr(S, D, AttributeList::AT_DLLImport) &&
5068 !hasParsedAttr(S, D, AttributeList::AT_DLLExport))
Stephen Hines651f13c2014-04-23 16:59:28 -07005069 SC = SC_Extern;
5070
Richard Smitha41c97a2013-09-20 01:15:31 +00005071 DeclContext *OriginalDC = DC;
5072 bool IsLocalExternDecl = SC == SC_Extern &&
5073 adjustContextForLocalExternDecl(DC);
5074
Stephen Hines651f13c2014-04-23 16:59:28 -07005075 if (getLangOpts().OpenCL) {
5076 // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
5077 QualType NR = R;
5078 while (NR->isPointerType()) {
5079 if (NR->isFunctionPointerType()) {
5080 Diag(D.getIdentifierLoc(), diag::err_opencl_function_pointer_variable);
5081 D.setInvalidType();
5082 break;
5083 }
5084 NR = NR->getPointeeType();
5085 }
5086
5087 if (!getOpenCLOptions().cl_khr_fp16) {
5088 // OpenCL v1.2 s6.1.1.1: reject declaring variables of the half and
5089 // half array type (unless the cl_khr_fp16 extension is enabled).
5090 if (Context.getBaseElementType(R)->isHalfType()) {
5091 Diag(D.getIdentifierLoc(), diag::err_opencl_half_declaration) << R;
5092 D.setInvalidType();
5093 }
Joey Gouly19dbb202013-01-23 11:56:20 +00005094 }
5095 }
5096
Douglas Gregor16573fa2010-04-19 22:54:31 +00005097 if (SCSpec == DeclSpec::SCS_mutable) {
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005098 // mutable can only appear on non-static class members, so it's always
5099 // an error here
5100 Diag(D.getIdentifierLoc(), diag::err_mutable_nonmember);
Chris Lattnereaaebc72009-04-25 08:06:05 +00005101 D.setInvalidType();
John McCalld931b082010-08-26 03:08:43 +00005102 SC = SC_None;
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005103 }
John McCallb421d922013-04-02 02:48:58 +00005104
Richard Smith9109bf12013-06-17 01:34:01 +00005105 if (getLangOpts().CPlusPlus11 && SCSpec == DeclSpec::SCS_register &&
5106 !D.getAsmLabel() && !getSourceManager().isInSystemMacro(
5107 D.getDeclSpec().getStorageClassSpecLoc())) {
5108 // In C++11, the 'register' storage class specifier is deprecated.
5109 // Suppress the warning in system macros, it's used in macros in some
5110 // popular C system headers, such as in glibc's htonl() macro.
5111 Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5112 diag::warn_deprecated_register)
5113 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5114 }
5115
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005116 IdentifierInfo *II = Name.getAsIdentifierInfo();
5117 if (!II) {
5118 Diag(D.getIdentifierLoc(), diag::err_bad_variable_name)
Douglas Gregorb5a01872011-10-09 18:55:59 +00005119 << Name;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005120 return nullptr;
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005121 }
5122
Richard Smithc7f81162013-03-18 22:52:47 +00005123 DiagnoseFunctionSpecifiers(D.getDeclSpec());
Douglas Gregor021c3b32009-03-11 23:00:04 +00005124
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005125 if (!DC->isRecord() && S->getFnParent() == nullptr) {
Douglas Gregor2d2e9cf2009-03-11 20:22:50 +00005126 // C99 6.9p2: The storage-class specifiers auto and register shall not
5127 // appear in the declaration specifiers in an external declaration.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005128 // Global Register+Asm is a GNU extension we support.
5129 if (SC == SC_Auto || (SC == SC_Register && !D.getAsmLabel())) {
5130 Diag(D.getIdentifierLoc(), diag::err_typecheck_sclass_fscope);
Chris Lattnereaaebc72009-04-25 08:06:05 +00005131 D.setInvalidType();
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005132 }
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005133 }
Richard Smith9109bf12013-06-17 01:34:01 +00005134
David Blaikie4e4d0842012-03-11 07:00:24 +00005135 if (getLangOpts().OpenCL) {
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00005136 // Set up the special work-group-local storage class for variables in the
5137 // OpenCL __local address space.
Rafael Espindola0db661e2012-12-21 01:21:33 +00005138 if (R.getAddressSpace() == LangAS::opencl_local) {
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00005139 SC = SC_OpenCLWorkGroupLocal;
Rafael Espindola0db661e2012-12-21 01:21:33 +00005140 }
Guy Benyeie6b9d802013-01-20 12:31:11 +00005141
Guy Benyei21f18c42013-02-07 10:55:47 +00005142 // OpenCL v1.2 s6.9.b p4:
5143 // The sampler type cannot be used with the __local and __global address
5144 // space qualifiers.
5145 if (R->isSamplerT() && (R.getAddressSpace() == LangAS::opencl_local ||
5146 R.getAddressSpace() == LangAS::opencl_global)) {
5147 Diag(D.getIdentifierLoc(), diag::err_wrong_sampler_addressspace);
5148 }
5149
Guy Benyeie6b9d802013-01-20 12:31:11 +00005150 // OpenCL 1.2 spec, p6.9 r:
5151 // The event type cannot be used to declare a program scope variable.
5152 // The event type cannot be used with the __local, __constant and __global
5153 // address space qualifiers.
5154 if (R->isEventT()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005155 if (S->getParent() == nullptr) {
Guy Benyeie6b9d802013-01-20 12:31:11 +00005156 Diag(D.getLocStart(), diag::err_event_t_global_var);
5157 D.setInvalidType();
5158 }
5159
5160 if (R.getAddressSpace()) {
5161 Diag(D.getLocStart(), diag::err_event_t_addr_space_qual);
5162 D.setInvalidType();
5163 }
5164 }
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00005165 }
5166
Larisse Voufoef4579c2013-08-06 01:03:05 +00005167 bool IsExplicitSpecialization = false;
5168 bool IsVariableTemplateSpecialization = false;
5169 bool IsPartialSpecialization = false;
Larisse Voufo4a919892013-08-14 03:09:19 +00005170 bool IsVariableTemplate = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005171 VarDecl *NewVD = nullptr;
5172 VarTemplateDecl *NewTemplate = nullptr;
5173 TemplateParameterList *TemplateParams = nullptr;
David Blaikie4e4d0842012-03-11 07:00:24 +00005174 if (!getLangOpts().CPlusPlus) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00005175 NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00005176 D.getIdentifierLoc(), II,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00005177 R, TInfo, SC);
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005178
5179 if (D.isInvalidType())
5180 NewVD->setInvalidDecl();
5181 } else {
Larisse Voufo567f9172013-08-22 00:59:14 +00005182 bool Invalid = false;
5183
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005184 if (DC->isRecord() && !CurContext->isRecord()) {
5185 // This is an out-of-line definition of a static data member.
Rafael Espindola3882aed2013-06-19 13:41:54 +00005186 switch (SC) {
5187 case SC_None:
5188 break;
5189 case SC_Static:
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005190 Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5191 diag::err_static_out_of_line)
5192 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
Rafael Espindola3882aed2013-06-19 13:41:54 +00005193 break;
5194 case SC_Auto:
5195 case SC_Register:
5196 case SC_Extern:
5197 // [dcl.stc] p2: The auto or register specifiers shall be applied only
5198 // to names of variables declared in a block or to function parameters.
5199 // [dcl.stc] p6: The extern specifier cannot be used in the declaration
5200 // of class members
5201
5202 Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5203 diag::err_storage_class_for_static_member)
5204 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
5205 break;
5206 case SC_PrivateExtern:
5207 llvm_unreachable("C storage class in c++!");
5208 case SC_OpenCLWorkGroupLocal:
5209 llvm_unreachable("OpenCL storage class in c++!");
Rafael Espindolaea4b1112013-04-04 21:21:25 +00005210 }
Larisse Voufo06935f32013-08-06 03:43:07 +00005211 }
5212
Richard Smithb9c64d82012-02-16 20:41:22 +00005213 if (SC == SC_Static && CurContext->isRecord()) {
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005214 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
5215 if (RD->isLocalClass())
5216 Diag(D.getIdentifierLoc(),
5217 diag::err_static_data_member_not_allowed_in_local_class)
5218 << Name << RD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00005219
Richard Smithb9c64d82012-02-16 20:41:22 +00005220 // C++98 [class.union]p1: If a union contains a static data member,
5221 // the program is ill-formed. C++11 drops this restriction.
5222 if (RD->isUnion())
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005223 Diag(D.getIdentifierLoc(),
Richard Smith80ad52f2013-01-02 11:42:31 +00005224 getLangOpts().CPlusPlus11
Richard Smithb9c64d82012-02-16 20:41:22 +00005225 ? diag::warn_cxx98_compat_static_data_member_in_union
5226 : diag::ext_static_data_member_in_union) << Name;
5227 // We conservatively disallow static data members in anonymous structs.
5228 else if (!RD->getDeclName())
5229 Diag(D.getIdentifierLoc(),
5230 diag::err_static_data_member_not_allowed_in_anon_struct)
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005231 << Name << RD->isUnion();
5232 }
5233 }
5234
5235 // Match up the template parameter lists with the scope specifier, then
5236 // determine whether we have a template or a template specialization.
Stephen Hines651f13c2014-04-23 16:59:28 -07005237 TemplateParams = MatchTemplateParametersToScopeSpecifier(
5238 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005239 D.getCXXScopeSpec(),
5240 D.getName().getKind() == UnqualifiedId::IK_TemplateId
5241 ? D.getName().TemplateId
5242 : nullptr,
5243 TemplateParamLists,
Stephen Hines651f13c2014-04-23 16:59:28 -07005244 /*never a friend*/ false, IsExplicitSpecialization, Invalid);
Larisse Voufoef4579c2013-08-06 01:03:05 +00005245
Stephen Hines651f13c2014-04-23 16:59:28 -07005246 if (TemplateParams) {
5247 if (!TemplateParams->size() &&
5248 D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
5249 // There is an extraneous 'template<>' for this variable. Complain
5250 // about it, but allow the declaration of the variable.
5251 Diag(TemplateParams->getTemplateLoc(),
5252 diag::err_template_variable_noparams)
5253 << II
5254 << SourceRange(TemplateParams->getTemplateLoc(),
5255 TemplateParams->getRAngleLoc());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005256 TemplateParams = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07005257 } else {
Stephen Hines651f13c2014-04-23 16:59:28 -07005258 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
5259 // This is an explicit specialization or a partial specialization.
5260 // FIXME: Check that we can declare a specialization here.
5261 IsVariableTemplateSpecialization = true;
5262 IsPartialSpecialization = TemplateParams->size() > 0;
5263 } else { // if (TemplateParams->size() > 0)
5264 // This is a template declaration.
5265 IsVariableTemplate = true;
5266
5267 // Check that we can declare a template here.
5268 if (CheckTemplateDeclScope(S, TemplateParams))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005269 return nullptr;
5270
5271 // Only C++1y supports variable templates (N3651).
5272 Diag(D.getIdentifierLoc(),
5273 getLangOpts().CPlusPlus1y
5274 ? diag::warn_cxx11_compat_variable_template
5275 : diag::ext_variable_template);
Stephen Hines651f13c2014-04-23 16:59:28 -07005276 }
5277 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005278 } else {
5279 assert(D.getName().getKind() != UnqualifiedId::IK_TemplateId &&
5280 "should have a 'template<>' for this decl");
Douglas Gregordfe3f2d2009-07-22 17:18:37 +00005281 }
Mike Stump1eb44332009-09-09 15:08:12 +00005282
Larisse Voufoef4579c2013-08-06 01:03:05 +00005283 if (IsVariableTemplateSpecialization) {
Larisse Voufoef4579c2013-08-06 01:03:05 +00005284 SourceLocation TemplateKWLoc =
5285 TemplateParamLists.size() > 0
5286 ? TemplateParamLists[0]->getTemplateLoc()
5287 : SourceLocation();
5288 DeclResult Res = ActOnVarTemplateSpecialization(
Stephen Hines651f13c2014-04-23 16:59:28 -07005289 S, D, TInfo, TemplateKWLoc, TemplateParams, SC,
Larisse Voufoef4579c2013-08-06 01:03:05 +00005290 IsPartialSpecialization);
5291 if (Res.isInvalid())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005292 return nullptr;
Larisse Voufoef4579c2013-08-06 01:03:05 +00005293 NewVD = cast<VarDecl>(Res.get());
5294 AddToScope = false;
5295 } else
5296 NewVD = VarDecl::Create(Context, DC, D.getLocStart(),
5297 D.getIdentifierLoc(), II, R, TInfo, SC);
Eli Friedman63054b32009-04-19 20:27:55 +00005298
Larisse Voufo567f9172013-08-22 00:59:14 +00005299 // If this is supposed to be a variable template, create it as such.
5300 if (IsVariableTemplate) {
5301 NewTemplate =
5302 VarTemplateDecl::Create(Context, DC, D.getIdentifierLoc(), Name,
Stephen Hines651f13c2014-04-23 16:59:28 -07005303 TemplateParams, NewVD);
Larisse Voufo567f9172013-08-22 00:59:14 +00005304 NewVD->setDescribedVarTemplate(NewTemplate);
5305 }
5306
Richard Smith483b9f32011-02-21 20:05:19 +00005307 // If this decl has an auto type in need of deduction, make a note of the
5308 // Decl so we can diagnose uses of it in its own initializer.
Richard Smitha2c36462013-04-26 16:15:35 +00005309 if (D.getDeclSpec().containsPlaceholderType() && R->getContainedAutoType())
Richard Smith483b9f32011-02-21 20:05:19 +00005310 ParsingInitForAutoVars.insert(NewVD);
Richard Smith34b41d92011-02-20 03:19:35 +00005311
Larisse Voufo567f9172013-08-22 00:59:14 +00005312 if (D.isInvalidType() || Invalid) {
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005313 NewVD->setInvalidDecl();
Larisse Voufo567f9172013-08-22 00:59:14 +00005314 if (NewTemplate)
5315 NewTemplate->setInvalidDecl();
5316 }
Mike Stump1eb44332009-09-09 15:08:12 +00005317
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005318 SetNestedNameSpecifier(NewVD, D);
John McCallb6217662010-03-15 10:12:16 +00005319
Stephen Hines651f13c2014-04-23 16:59:28 -07005320 // If we have any template parameter lists that don't directly belong to
5321 // the variable (matching the scope specifier), store them.
5322 unsigned VDTemplateParamLists = TemplateParams ? 1 : 0;
5323 if (TemplateParamLists.size() > VDTemplateParamLists)
Larisse Voufoef4579c2013-08-06 01:03:05 +00005324 NewVD->setTemplateParameterListsInfo(
Stephen Hines651f13c2014-04-23 16:59:28 -07005325 Context, TemplateParamLists.size() - VDTemplateParamLists,
5326 TemplateParamLists.data());
Richard Smithaf1fc7a2011-08-15 21:04:07 +00005327
Richard Smith7ca48502012-02-13 22:16:19 +00005328 if (D.getDeclSpec().isConstexprSpecified())
Richard Smithdd4b3502011-12-25 21:17:58 +00005329 NewVD->setConstexpr(true);
Abramo Bagnara9b934882010-06-12 08:15:14 +00005330 }
5331
Douglas Gregore3895852011-09-12 18:37:38 +00005332 // Set the lexical context. If the declarator has a C++ scope specifier, the
5333 // lexical context will be different from the semantic context.
5334 NewVD->setLexicalDeclContext(CurContext);
Larisse Voufo567f9172013-08-22 00:59:14 +00005335 if (NewTemplate)
5336 NewTemplate->setLexicalDeclContext(CurContext);
Douglas Gregore3895852011-09-12 18:37:38 +00005337
Richard Smitha41c97a2013-09-20 01:15:31 +00005338 if (IsLocalExternDecl)
5339 NewVD->setLocalExternDecl();
5340
Richard Smithec642442013-04-12 22:46:28 +00005341 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec()) {
Enea Zaffanella9cbcab82013-05-10 20:34:44 +00005342 if (NewVD->hasLocalStorage()) {
5343 // C++11 [dcl.stc]p4:
5344 // When thread_local is applied to a variable of block scope the
5345 // storage-class-specifier static is implied if it does not appear
5346 // explicitly.
5347 // Core issue: 'static' is not implied if the variable is declared
5348 // 'extern'.
5349 if (SCSpec == DeclSpec::SCS_unspecified &&
5350 TSCS == DeclSpec::TSCS_thread_local &&
5351 DC->isFunctionOrMethod())
5352 NewVD->setTSCSpec(TSCS);
5353 else
5354 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
5355 diag::err_thread_non_global)
5356 << DeclSpec::getSpecifierName(TSCS);
5357 } else if (!Context.getTargetInfo().isTLSSupported())
Richard Smithec642442013-04-12 22:46:28 +00005358 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
5359 diag::err_thread_unsupported);
Eli Friedman63054b32009-04-19 20:27:55 +00005360 else
Enea Zaffanelladc173842013-05-04 08:27:07 +00005361 NewVD->setTSCSpec(TSCS);
Eli Friedman63054b32009-04-19 20:27:55 +00005362 }
Douglas Gregor4afa39d2009-01-20 01:17:11 +00005363
John McCallb421d922013-04-02 02:48:58 +00005364 // C99 6.7.4p3
5365 // An inline definition of a function with external linkage shall
5366 // not contain a definition of a modifiable object with static or
5367 // thread storage duration...
5368 // We only apply this when the function is required to be defined
5369 // elsewhere, i.e. when the function is not 'extern inline'. Note
5370 // that a local variable with thread storage duration still has to
5371 // be marked 'static'. Also note that it's possible to get these
5372 // semantics in C++ using __attribute__((gnu_inline)).
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005373 if (SC == SC_Static && S->getFnParent() != nullptr &&
John McCallb421d922013-04-02 02:48:58 +00005374 !NewVD->getType().isConstQualified()) {
5375 FunctionDecl *CurFD = getCurFunctionDecl();
5376 if (CurFD && isFunctionDefinitionDiscarded(*this, CurFD)) {
5377 Diag(D.getDeclSpec().getStorageClassSpecLoc(),
5378 diag::warn_static_local_in_extern_inline);
5379 MaybeSuggestAddingStaticToDecl(CurFD);
5380 }
5381 }
5382
Douglas Gregord023aec2011-09-09 20:53:38 +00005383 if (D.getDeclSpec().isModulePrivateSpecified()) {
Larisse Voufoef4579c2013-08-06 01:03:05 +00005384 if (IsVariableTemplateSpecialization)
5385 Diag(NewVD->getLocation(), diag::err_module_private_specialization)
5386 << (IsPartialSpecialization ? 1 : 0)
5387 << FixItHint::CreateRemoval(
5388 D.getDeclSpec().getModulePrivateSpecLoc());
5389 else if (IsExplicitSpecialization)
Douglas Gregord023aec2011-09-09 20:53:38 +00005390 Diag(NewVD->getLocation(), diag::err_module_private_specialization)
5391 << 2
5392 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
Douglas Gregore3895852011-09-12 18:37:38 +00005393 else if (NewVD->hasLocalStorage())
5394 Diag(NewVD->getLocation(), diag::err_module_private_local)
5395 << 0 << NewVD->getDeclName()
5396 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
5397 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
Larisse Voufo567f9172013-08-22 00:59:14 +00005398 else {
Douglas Gregord023aec2011-09-09 20:53:38 +00005399 NewVD->setModulePrivate();
Larisse Voufo567f9172013-08-22 00:59:14 +00005400 if (NewTemplate)
5401 NewTemplate->setModulePrivate();
5402 }
Douglas Gregord023aec2011-09-09 20:53:38 +00005403 }
Douglas Gregor8d267c52011-09-09 02:06:17 +00005404
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005405 // Handle attributes prior to checking for duplicates in MergeVarDecl
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005406 ProcessDeclAttributes(S, NewVD, D);
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005407
Peter Collingbournec0c00662012-08-28 20:37:50 +00005408 if (getLangOpts().CUDA) {
5409 // CUDA B.2.5: "__shared__ and __constant__ variables have implied static
5410 // storage [duration]."
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005411 if (SC == SC_None && S->getFnParent() != nullptr &&
Rafael Espindola0db661e2012-12-21 01:21:33 +00005412 (NewVD->hasAttr<CUDASharedAttr>() ||
5413 NewVD->hasAttr<CUDAConstantAttr>())) {
Peter Collingbournec0c00662012-08-28 20:37:50 +00005414 NewVD->setStorageClass(SC_Static);
Rafael Espindola0db661e2012-12-21 01:21:33 +00005415 }
Peter Collingbournec0c00662012-08-28 20:37:50 +00005416 }
5417
Stephen Hines651f13c2014-04-23 16:59:28 -07005418 // Ensure that dllimport globals without explicit storage class are treated as
5419 // extern. The storage class is set above using parsed attributes. Now we can
5420 // check the VarDecl itself.
5421 assert(!NewVD->hasAttr<DLLImportAttr>() ||
5422 NewVD->getAttr<DLLImportAttr>()->isInherited() ||
5423 NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None);
5424
John McCallf85e1932011-06-15 23:02:42 +00005425 // In auto-retain/release, infer strong retension for variables of
5426 // retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +00005427 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewVD))
John McCallf85e1932011-06-15 23:02:42 +00005428 NewVD->setInvalidDecl();
5429
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005430 // Handle GNU asm-label extension (encoded as an attribute).
Chris Lattner16c5dea2010-10-10 18:16:20 +00005431 if (Expr *E = (Expr*)D.getAsmLabel()) {
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005432 // The parser guarantees this is a string.
Mike Stump1eb44332009-09-09 15:08:12 +00005433 StringLiteral *SE = cast<StringLiteral>(E);
Chris Lattner5f9e2722011-07-23 10:55:15 +00005434 StringRef Label = SE->getString();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005435 if (S->getFnParent() != nullptr) {
Abramo Bagnara2b57aef2011-01-11 15:16:52 +00005436 switch (SC) {
5437 case SC_None:
5438 case SC_Auto:
5439 Diag(E->getExprLoc(), diag::warn_asm_label_on_auto_decl) << Label;
5440 break;
5441 case SC_Register:
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005442 // Local Named register
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00005443 if (!Context.getTargetInfo().isValidGCCRegisterName(Label))
Abramo Bagnara2b57aef2011-01-11 15:16:52 +00005444 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
5445 break;
5446 case SC_Static:
5447 case SC_Extern:
5448 case SC_PrivateExtern:
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00005449 case SC_OpenCLWorkGroupLocal:
Abramo Bagnara2b57aef2011-01-11 15:16:52 +00005450 break;
5451 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005452 } else if (SC == SC_Register) {
5453 // Global Named register
5454 if (!Context.getTargetInfo().isValidGCCRegisterName(Label))
5455 Diag(E->getExprLoc(), diag::err_asm_unknown_register_name) << Label;
Abramo Bagnara2b57aef2011-01-11 15:16:52 +00005456 }
5457
5458 NewVD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0),
Stephen Hines651f13c2014-04-23 16:59:28 -07005459 Context, Label, 0));
David Chisnall5f3c1632012-02-18 16:12:34 +00005460 } else if (!ExtnameUndeclaredIdentifiers.empty()) {
5461 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
5462 ExtnameUndeclaredIdentifiers.find(NewVD->getIdentifier());
5463 if (I != ExtnameUndeclaredIdentifiers.end()) {
5464 NewVD->addAttr(I->second);
5465 ExtnameUndeclaredIdentifiers.erase(I);
5466 }
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005467 }
5468
John McCall8472af42010-03-16 21:48:18 +00005469 // Diagnose shadowed variables before filtering for scope.
Stephen Hines651f13c2014-04-23 16:59:28 -07005470 if (D.getCXXScopeSpec().isEmpty())
John McCall053f4bd2010-03-22 09:20:08 +00005471 CheckShadow(S, NewVD, Previous);
John McCall8472af42010-03-16 21:48:18 +00005472
John McCall68263142009-11-18 22:49:29 +00005473 // Don't consider existing declarations that are in a different
5474 // scope and are out-of-semantic-context declarations (if the new
5475 // declaration has linkage).
Stephen Hines651f13c2014-04-23 16:59:28 -07005476 FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewVD),
5477 D.getCXXScopeSpec().isNotEmpty() ||
5478 IsExplicitSpecialization ||
5479 IsVariableTemplateSpecialization);
Larisse Voufoef4579c2013-08-06 01:03:05 +00005480
Richard Smithdd9459f2013-08-13 18:18:50 +00005481 // Check whether the previous declaration is in the same block scope. This
5482 // affects whether we merge types with it, per C++11 [dcl.array]p3.
5483 if (getLangOpts().CPlusPlus &&
5484 NewVD->isLocalVarDecl() && NewVD->hasExternalStorage())
5485 NewVD->setPreviousDeclInSameBlockScope(
5486 Previous.isSingleResult() && !Previous.isShadowed() &&
Richard Smitha41c97a2013-09-20 01:15:31 +00005487 isDeclInScope(Previous.getFoundDecl(), OriginalDC, S, false));
Richard Smithdd9459f2013-08-13 18:18:50 +00005488
David Blaikie4e4d0842012-03-11 07:00:24 +00005489 if (!getLangOpts().CPlusPlus) {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005490 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
5491 } else {
Stephen Hines651f13c2014-04-23 16:59:28 -07005492 // If this is an explicit specialization of a static data member, check it.
5493 if (IsExplicitSpecialization && !NewVD->isInvalidDecl() &&
5494 CheckMemberSpecialization(NewVD, Previous))
5495 NewVD->setInvalidDecl();
5496
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005497 // Merge the decl with the existing one if appropriate.
5498 if (!Previous.empty()) {
5499 if (Previous.isSingleResult() &&
5500 isa<FieldDecl>(Previous.getFoundDecl()) &&
5501 D.getCXXScopeSpec().isSet()) {
5502 // The user tried to define a non-static data member
5503 // out-of-line (C++ [dcl.meaning]p1).
5504 Diag(NewVD->getLocation(), diag::err_nonstatic_member_out_of_line)
5505 << D.getCXXScopeSpec().getRange();
5506 Previous.clear();
5507 NewVD->setInvalidDecl();
5508 }
5509 } else if (D.getCXXScopeSpec().isSet()) {
5510 // No previous declaration in the qualifying scope.
5511 Diag(D.getIdentifierLoc(), diag::err_no_member)
5512 << Name << computeDeclContext(D.getCXXScopeSpec(), true)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005513 << D.getCXXScopeSpec().getRange();
Chris Lattnereaaebc72009-04-25 08:06:05 +00005514 NewVD->setInvalidDecl();
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005515 }
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005516
Stephen Hines651f13c2014-04-23 16:59:28 -07005517 if (!IsVariableTemplateSpecialization)
5518 D.setRedeclaration(CheckVariableDeclaration(NewVD, Previous));
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00005519
Stephen Hines651f13c2014-04-23 16:59:28 -07005520 if (NewTemplate) {
5521 VarTemplateDecl *PrevVarTemplate =
5522 NewVD->getPreviousDecl()
5523 ? NewVD->getPreviousDecl()->getDescribedVarTemplate()
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005524 : nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07005525
5526 // Check the template parameter list of this declaration, possibly
5527 // merging in the template parameter list from the previous variable
5528 // template declaration.
5529 if (CheckTemplateParameterList(
5530 TemplateParams,
5531 PrevVarTemplate ? PrevVarTemplate->getTemplateParameters()
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005532 : nullptr,
Stephen Hines651f13c2014-04-23 16:59:28 -07005533 (D.getCXXScopeSpec().isSet() && DC && DC->isRecord() &&
5534 DC->isDependentContext())
5535 ? TPC_ClassTemplateMember
5536 : TPC_VarTemplate))
5537 NewVD->setInvalidDecl();
5538
5539 // If we are providing an explicit specialization of a static variable
5540 // template, make a note of that.
5541 if (PrevVarTemplate &&
5542 PrevVarTemplate->getInstantiatedFromMemberTemplate())
5543 PrevVarTemplate->setMemberSpecialization();
5544 }
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005545 }
Ryan Flynn478fbc62009-07-25 22:29:44 +00005546
Rafael Espindola65611bf2013-03-02 21:41:48 +00005547 ProcessPragmaWeak(S, NewVD);
Rafael Espindola2a5bb502013-01-16 23:11:15 +00005548
Richard Smithaa4bc182013-06-30 09:48:50 +00005549 // If this is the first declaration of an extern C variable, update
5550 // the map of such variables.
Rafael Espindola7693b322013-10-19 02:13:21 +00005551 if (NewVD->isFirstDecl() && !NewVD->isInvalidDecl() &&
Richard Smithaa4bc182013-06-30 09:48:50 +00005552 isIncompleteDeclExternC(*this, NewVD))
Richard Smith662f41b2013-06-18 20:15:12 +00005553 RegisterLocallyScopedExternCDecl(NewVD, S);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005554
Reid Kleckner942f9fe2013-09-10 20:14:30 +00005555 if (getLangOpts().CPlusPlus && NewVD->isStaticLocal()) {
Eli Friedman5e867c82013-07-10 00:30:46 +00005556 Decl *ManglingContextDecl;
5557 if (MangleNumberingContext *MCtx =
5558 getCurrentMangleNumberContext(NewVD->getDeclContext(),
5559 ManglingContextDecl)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005560 Context.setManglingNumber(
5561 NewVD, MCtx->getManglingNumber(NewVD, S->getMSLocalManglingNumber()));
5562 Context.setStaticLocalNumber(NewVD, MCtx->getStaticLocalNumber(NewVD));
Eli Friedman5e867c82013-07-10 00:30:46 +00005563 }
5564 }
5565
Stephen Hines651f13c2014-04-23 16:59:28 -07005566 if (D.isRedeclaration() && !Previous.empty()) {
5567 checkDLLAttributeRedeclaration(
5568 *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewVD,
5569 IsExplicitSpecialization);
5570 }
Larisse Voufoef4579c2013-08-06 01:03:05 +00005571
Larisse Voufo567f9172013-08-22 00:59:14 +00005572 if (NewTemplate) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005573 if (NewVD->isInvalidDecl())
5574 NewTemplate->setInvalidDecl();
Larisse Voufo567f9172013-08-22 00:59:14 +00005575 ActOnDocumentableDecl(NewTemplate);
5576 return NewTemplate;
Larisse Voufoef4579c2013-08-06 01:03:05 +00005577 }
5578
Larisse Voufo567f9172013-08-22 00:59:14 +00005579 return NewVD;
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005580}
5581
John McCall053f4bd2010-03-22 09:20:08 +00005582/// \brief Diagnose variable or built-in function shadowing. Implements
5583/// -Wshadow.
John McCall8472af42010-03-16 21:48:18 +00005584///
John McCall053f4bd2010-03-22 09:20:08 +00005585/// This method is called whenever a VarDecl is added to a "useful"
5586/// scope.
John McCall8472af42010-03-16 21:48:18 +00005587///
John McCalla369a952010-03-20 04:12:52 +00005588/// \param S the scope in which the shadowing name is being declared
5589/// \param R the lookup of the name
John McCall8472af42010-03-16 21:48:18 +00005590///
John McCall053f4bd2010-03-22 09:20:08 +00005591void Sema::CheckShadow(Scope *S, VarDecl *D, const LookupResult& R) {
John McCall8472af42010-03-16 21:48:18 +00005592 // Return if warning is ignored.
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00005593 if (Diags.getDiagnosticLevel(diag::warn_decl_shadow, R.getNameLoc()) ==
David Blaikied6471f72011-09-25 23:23:43 +00005594 DiagnosticsEngine::Ignored)
John McCall8472af42010-03-16 21:48:18 +00005595 return;
5596
Argyrios Kyrtzidis651f86f2011-02-08 18:21:25 +00005597 // Don't diagnose declarations at file scope.
Argyrios Kyrtzidis865dd8c2011-04-25 21:39:50 +00005598 if (D->hasGlobalStorage())
John McCall8472af42010-03-16 21:48:18 +00005599 return;
Argyrios Kyrtzidis865dd8c2011-04-25 21:39:50 +00005600
5601 DeclContext *NewDC = D->getDeclContext();
5602
John McCalla369a952010-03-20 04:12:52 +00005603 // Only diagnose if we're shadowing an unambiguous field or variable.
Douglas Gregorc48c9162010-03-17 16:03:44 +00005604 if (R.getResultKind() != LookupResult::Found)
John McCall8472af42010-03-16 21:48:18 +00005605 return;
John McCall8472af42010-03-16 21:48:18 +00005606
John McCall8472af42010-03-16 21:48:18 +00005607 NamedDecl* ShadowedDecl = R.getFoundDecl();
5608 if (!isa<VarDecl>(ShadowedDecl) && !isa<FieldDecl>(ShadowedDecl))
5609 return;
5610
Argyrios Kyrtzidis36eb5e42011-01-31 07:04:54 +00005611 // Fields are not shadowed by variables in C++ static methods.
5612 if (isa<FieldDecl>(ShadowedDecl))
5613 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewDC))
5614 if (MD->isStatic())
5615 return;
5616
Argyrios Kyrtzidis49a61722011-01-31 07:04:50 +00005617 if (VarDecl *shadowedVar = dyn_cast<VarDecl>(ShadowedDecl))
5618 if (shadowedVar->isExternC()) {
Argyrios Kyrtzidis49a61722011-01-31 07:04:50 +00005619 // For shadowing external vars, make sure that we point to the global
5620 // declaration, not a locally scoped extern declaration.
Stephen Hines651f13c2014-04-23 16:59:28 -07005621 for (auto I : shadowedVar->redecls())
Argyrios Kyrtzidis49a61722011-01-31 07:04:50 +00005622 if (I->isFileVarDecl()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07005623 ShadowedDecl = I;
Argyrios Kyrtzidis49a61722011-01-31 07:04:50 +00005624 break;
5625 }
5626 }
5627
5628 DeclContext *OldDC = ShadowedDecl->getDeclContext();
5629
John McCalla369a952010-03-20 04:12:52 +00005630 // Only warn about certain kinds of shadowing for class members.
5631 if (NewDC && NewDC->isRecord()) {
5632 // In particular, don't warn about shadowing non-class members.
5633 if (!OldDC->isRecord())
5634 return;
5635
5636 // TODO: should we warn about static data members shadowing
5637 // static data members from base classes?
5638
5639 // TODO: don't diagnose for inaccessible shadowed members.
5640 // This is hard to do perfectly because we might friend the
5641 // shadowing context, but that's just a false negative.
5642 }
5643
5644 // Determine what kind of declaration we're shadowing.
John McCall8472af42010-03-16 21:48:18 +00005645 unsigned Kind;
John McCalla369a952010-03-20 04:12:52 +00005646 if (isa<RecordDecl>(OldDC)) {
John McCall8472af42010-03-16 21:48:18 +00005647 if (isa<FieldDecl>(ShadowedDecl))
5648 Kind = 3; // field
5649 else
5650 Kind = 2; // static data member
John McCalla369a952010-03-20 04:12:52 +00005651 } else if (OldDC->isFileContext())
John McCall8472af42010-03-16 21:48:18 +00005652 Kind = 1; // global
5653 else
5654 Kind = 0; // local
5655
John McCalla369a952010-03-20 04:12:52 +00005656 DeclarationName Name = R.getLookupName();
5657
John McCall8472af42010-03-16 21:48:18 +00005658 // Emit warning and note.
Stephen Hines651f13c2014-04-23 16:59:28 -07005659 if (getSourceManager().isInSystemMacro(R.getNameLoc()))
5660 return;
John McCalla369a952010-03-20 04:12:52 +00005661 Diag(R.getNameLoc(), diag::warn_decl_shadow) << Name << Kind << OldDC;
John McCall8472af42010-03-16 21:48:18 +00005662 Diag(ShadowedDecl->getLocation(), diag::note_previous_declaration);
5663}
5664
John McCall053f4bd2010-03-22 09:20:08 +00005665/// \brief Check -Wshadow without the advantage of a previous lookup.
5666void Sema::CheckShadow(Scope *S, VarDecl *D) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00005667 if (Diags.getDiagnosticLevel(diag::warn_decl_shadow, D->getLocation()) ==
David Blaikied6471f72011-09-25 23:23:43 +00005668 DiagnosticsEngine::Ignored)
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00005669 return;
5670
John McCall053f4bd2010-03-22 09:20:08 +00005671 LookupResult R(*this, D->getDeclName(), D->getLocation(),
5672 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
5673 LookupName(R, S);
5674 CheckShadow(S, D, R);
5675}
5676
Richard Smithaa4bc182013-06-30 09:48:50 +00005677/// Check for conflict between this global or extern "C" declaration and
5678/// previous global or extern "C" declarations. This is only used in C++.
Rafael Espindola294ddc62013-01-11 19:34:23 +00005679template<typename T>
Richard Smithaa4bc182013-06-30 09:48:50 +00005680static bool checkGlobalOrExternCConflict(
5681 Sema &S, const T *ND, bool IsGlobal, LookupResult &Previous) {
5682 assert(S.getLangOpts().CPlusPlus && "only C++ has extern \"C\"");
5683 NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName());
Rafael Espindola2d1b0962013-03-14 03:07:35 +00005684
Richard Smithaa4bc182013-06-30 09:48:50 +00005685 if (!Prev && IsGlobal && !isIncompleteDeclExternC(S, ND)) {
5686 // The common case: this global doesn't conflict with any extern "C"
5687 // declaration.
5688 return false;
5689 }
5690
5691 if (Prev) {
5692 if (!IsGlobal || isIncompleteDeclExternC(S, ND)) {
5693 // Both the old and new declarations have C language linkage. This is a
5694 // redeclaration.
5695 Previous.clear();
5696 Previous.addDecl(Prev);
5697 return true;
5698 }
5699
5700 // This is a global, non-extern "C" declaration, and there is a previous
5701 // non-global extern "C" declaration. Diagnose if this is a variable
5702 // declaration.
5703 if (!isa<VarDecl>(ND))
5704 return false;
5705 } else {
5706 // The declaration is extern "C". Check for any declaration in the
5707 // translation unit which might conflict.
5708 if (IsGlobal) {
5709 // We have already performed the lookup into the translation unit.
5710 IsGlobal = false;
5711 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5712 I != E; ++I) {
5713 if (isa<VarDecl>(*I)) {
5714 Prev = *I;
5715 break;
5716 }
5717 }
5718 } else {
5719 DeclContext::lookup_result R =
5720 S.Context.getTranslationUnitDecl()->lookup(ND->getDeclName());
5721 for (DeclContext::lookup_result::iterator I = R.begin(), E = R.end();
5722 I != E; ++I) {
5723 if (isa<VarDecl>(*I)) {
5724 Prev = *I;
5725 break;
5726 }
5727 // FIXME: If we have any other entity with this name in global scope,
5728 // the declaration is ill-formed, but that is a defect: it breaks the
5729 // 'stat' hack, for instance. Only variables can have mangled name
5730 // clashes with extern "C" declarations, so only they deserve a
5731 // diagnostic.
5732 }
5733 }
5734
5735 if (!Prev)
Rafael Espindola2d1b0962013-03-14 03:07:35 +00005736 return false;
5737 }
5738
Richard Smithaa4bc182013-06-30 09:48:50 +00005739 // Use the first declaration's location to ensure we point at something which
5740 // is lexically inside an extern "C" linkage-spec.
5741 assert(Prev && "should have found a previous declaration to diagnose");
5742 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Prev))
Rafael Espindolabc650912013-10-17 15:37:26 +00005743 Prev = FD->getFirstDecl();
Richard Smithaa4bc182013-06-30 09:48:50 +00005744 else
Rafael Espindolabc650912013-10-17 15:37:26 +00005745 Prev = cast<VarDecl>(Prev)->getFirstDecl();
Richard Smithaa4bc182013-06-30 09:48:50 +00005746
5747 S.Diag(ND->getLocation(), diag::err_extern_c_global_conflict)
5748 << IsGlobal << ND;
5749 S.Diag(Prev->getLocation(), diag::note_extern_c_global_conflict)
5750 << IsGlobal;
5751 return false;
5752}
5753
5754/// Apply special rules for handling extern "C" declarations. Returns \c true
5755/// if we have found that this is a redeclaration of some prior entity.
5756///
5757/// Per C++ [dcl.link]p6:
5758/// Two declarations [for a function or variable] with C language linkage
5759/// with the same name that appear in different scopes refer to the same
5760/// [entity]. An entity with C language linkage shall not be declared with
5761/// the same name as an entity in global scope.
5762template<typename T>
5763static bool checkForConflictWithNonVisibleExternC(Sema &S, const T *ND,
5764 LookupResult &Previous) {
5765 if (!S.getLangOpts().CPlusPlus) {
5766 // In C, when declaring a global variable, look for a corresponding 'extern'
Richard Smitha41c97a2013-09-20 01:15:31 +00005767 // variable declared in function scope. We don't need this in C++, because
5768 // we find local extern decls in the surrounding file-scope DeclContext.
Richard Smithaa4bc182013-06-30 09:48:50 +00005769 if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
5770 if (NamedDecl *Prev = S.findLocallyScopedExternCDecl(ND->getDeclName())) {
5771 Previous.clear();
5772 Previous.addDecl(Prev);
5773 return true;
5774 }
5775 }
5776 return false;
5777 }
5778
5779 // A declaration in the translation unit can conflict with an extern "C"
5780 // declaration.
5781 if (ND->getDeclContext()->getRedeclContext()->isTranslationUnit())
5782 return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/true, Previous);
5783
5784 // An extern "C" declaration can conflict with a declaration in the
5785 // translation unit or can be a redeclaration of an extern "C" declaration
5786 // in another scope.
5787 if (isIncompleteDeclExternC(S,ND))
5788 return checkGlobalOrExternCConflict(S, ND, /*IsGlobal*/false, Previous);
5789
5790 // Neither global nor extern "C": nothing to do.
5791 return false;
Rafael Espindola294ddc62013-01-11 19:34:23 +00005792}
5793
Richard Smithdc7a4f52013-04-30 13:56:41 +00005794void Sema::CheckVariableDeclarationType(VarDecl *NewVD) {
Chris Lattnereaaebc72009-04-25 08:06:05 +00005795 // If the decl is already known invalid, don't check it.
5796 if (NewVD->isInvalidDecl())
Richard Smithdc7a4f52013-04-30 13:56:41 +00005797 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005798
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00005799 TypeSourceInfo *TInfo = NewVD->getTypeSourceInfo();
5800 QualType T = TInfo->getType();
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005801
Richard Smithdc7a4f52013-04-30 13:56:41 +00005802 // Defer checking an 'auto' type until its initializer is attached.
5803 if (T->isUndeducedType())
5804 return;
5805
Stephen Hines651f13c2014-04-23 16:59:28 -07005806 if (NewVD->hasAttrs())
5807 CheckAlignasUnderalignment(NewVD);
5808
John McCallc12c5bb2010-05-15 11:32:37 +00005809 if (T->isObjCObjectType()) {
Fariborz Jahaniandcf10112011-07-25 21:12:27 +00005810 Diag(NewVD->getLocation(), diag::err_statically_allocated_object)
5811 << FixItHint::CreateInsertion(NewVD->getLocation(), "*");
Fariborz Jahanian8eaefdc2011-07-26 17:58:54 +00005812 T = Context.getObjCObjectPointerType(T);
5813 NewVD->setType(T);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005814 }
Mike Stump1eb44332009-09-09 15:08:12 +00005815
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005816 // Emit an error if an address space was applied to decl with local storage.
5817 // This includes arrays of objects with address space qualifiers, but not
5818 // automatic variables that point to other address spaces.
5819 // ISO/IEC TR 18037 S5.1.2
Chris Lattner16c5dea2010-10-10 18:16:20 +00005820 if (NewVD->hasLocalStorage() && T.getAddressSpace() != 0) {
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005821 Diag(NewVD->getLocation(), diag::err_as_qualified_auto_decl);
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005822 NewVD->setInvalidDecl();
Richard Smithdc7a4f52013-04-30 13:56:41 +00005823 return;
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005824 }
Fariborz Jahanian7b5b3172009-02-21 19:44:02 +00005825
Tanya Lattner8aa86d12013-04-05 20:14:50 +00005826 // OpenCL v1.2 s6.5 - All program scope variables must be declared in the
5827 // __constant address space.
5828 if (getLangOpts().OpenCL && NewVD->isFileVarDecl()
5829 && T.getAddressSpace() != LangAS::opencl_constant
5830 && !T->isSamplerT()){
5831 Diag(NewVD->getLocation(), diag::err_opencl_global_invalid_addr_space);
5832 NewVD->setInvalidDecl();
Richard Smithdc7a4f52013-04-30 13:56:41 +00005833 return;
Tanya Lattner8aa86d12013-04-05 20:14:50 +00005834 }
5835
Tanya Lattner5e94d6f2012-06-19 23:09:52 +00005836 // OpenCL v1.2 s6.8 -- The static qualifier is valid only in program
5837 // scope.
5838 if ((getLangOpts().OpenCLVersion >= 120)
5839 && NewVD->isStaticLocal()) {
5840 Diag(NewVD->getLocation(), diag::err_static_function_scope);
5841 NewVD->setInvalidDecl();
Richard Smithdc7a4f52013-04-30 13:56:41 +00005842 return;
Tanya Lattner5e94d6f2012-06-19 23:09:52 +00005843 }
5844
Mike Stumpf33651c2009-04-14 00:57:29 +00005845 if (NewVD->hasLocalStorage() && T.isObjCGCWeak()
Fariborz Jahanian175df892011-06-07 20:15:46 +00005846 && !NewVD->hasAttr<BlocksAttr>()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005847 if (getLangOpts().getGC() != LangOptions::NonGC)
Fariborz Jahanian175df892011-06-07 20:15:46 +00005848 Diag(NewVD->getLocation(), diag::warn_gc_attribute_weak_on_local);
Ted Kremenek3ba17ee2012-10-02 05:36:02 +00005849 else {
5850 assert(!getLangOpts().ObjCAutoRefCount);
Fariborz Jahanian175df892011-06-07 20:15:46 +00005851 Diag(NewVD->getLocation(), diag::warn_attribute_weak_on_local);
Ted Kremenek3ba17ee2012-10-02 05:36:02 +00005852 }
Fariborz Jahanian175df892011-06-07 20:15:46 +00005853 }
Chris Lattner16c5dea2010-10-10 18:16:20 +00005854
Chris Lattner38c5ebd2009-04-19 05:21:20 +00005855 bool isVM = T->isVariablyModifiedType();
Chris Lattnerbe6d2592009-07-19 20:17:11 +00005856 if (isVM || NewVD->hasAttr<CleanupAttr>() ||
John McCalle46f62c2010-08-01 01:24:59 +00005857 NewVD->hasAttr<BlocksAttr>())
John McCall781472f2010-08-25 08:40:02 +00005858 getCurFunction()->setHasBranchProtectedScope();
Mike Stump1eb44332009-09-09 15:08:12 +00005859
Chris Lattner38c5ebd2009-04-19 05:21:20 +00005860 if ((isVM && NewVD->hasLinkage()) ||
5861 (T->isVariableArrayType() && NewVD->hasGlobalStorage())) {
Anders Carlsson1a7acfa2009-02-28 21:56:50 +00005862 bool SizeIsNegative;
Douglas Gregor2767ce22010-08-18 00:39:00 +00005863 llvm::APSInt Oversized;
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00005864 TypeSourceInfo *FixedTInfo =
5865 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
5866 SizeIsNegative, Oversized);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005867 if (!FixedTInfo && T->isVariableArrayType()) {
Douglas Gregor3d7a12a2009-03-25 23:32:15 +00005868 const VariableArrayType *VAT = Context.getAsVariableArrayType(T);
Mike Stump1eb44332009-09-09 15:08:12 +00005869 // FIXME: This won't give the correct result for
5870 // int a[10][n];
Anders Carlsson1a7acfa2009-02-28 21:56:50 +00005871 SourceRange SizeRange = VAT->getSizeExpr()->getSourceRange();
Mike Stump1eb44332009-09-09 15:08:12 +00005872
Anders Carlsson1a7acfa2009-02-28 21:56:50 +00005873 if (NewVD->isFileVarDecl())
5874 Diag(NewVD->getLocation(), diag::err_vla_decl_in_file_scope)
Chris Lattnereaaebc72009-04-25 08:06:05 +00005875 << SizeRange;
Enea Zaffanella9cbcab82013-05-10 20:34:44 +00005876 else if (NewVD->isStaticLocal())
Anders Carlsson1a7acfa2009-02-28 21:56:50 +00005877 Diag(NewVD->getLocation(), diag::err_vla_decl_has_static_storage)
Chris Lattnereaaebc72009-04-25 08:06:05 +00005878 << SizeRange;
Anders Carlsson1a7acfa2009-02-28 21:56:50 +00005879 else
5880 Diag(NewVD->getLocation(), diag::err_vla_decl_has_extern_linkage)
Chris Lattnereaaebc72009-04-25 08:06:05 +00005881 << SizeRange;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005882 NewVD->setInvalidDecl();
Richard Smithdc7a4f52013-04-30 13:56:41 +00005883 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005884 }
5885
Stephen Hines6bcf27b2014-05-29 04:14:42 -07005886 if (!FixedTInfo) {
Anders Carlsson1a7acfa2009-02-28 21:56:50 +00005887 if (NewVD->isFileVarDecl())
5888 Diag(NewVD->getLocation(), diag::err_vm_decl_in_file_scope);
5889 else
5890 Diag(NewVD->getLocation(), diag::err_vm_decl_has_extern_linkage);
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005891 NewVD->setInvalidDecl();
Richard Smithdc7a4f52013-04-30 13:56:41 +00005892 return;
Anders Carlsson1a7acfa2009-02-28 21:56:50 +00005893 }
Mike Stump1eb44332009-09-09 15:08:12 +00005894
Chris Lattnereaaebc72009-04-25 08:06:05 +00005895 Diag(NewVD->getLocation(), diag::warn_illegal_constant_array_size);
Abramo Bagnaraeae859a2012-11-08 16:01:51 +00005896 NewVD->setType(FixedTInfo->getType());
Abramo Bagnara4c5750e2012-11-08 14:44:42 +00005897 NewVD->setTypeSourceInfo(FixedTInfo);
Anders Carlsson1a7acfa2009-02-28 21:56:50 +00005898 }
5899
David Majnemeraa715672013-05-29 00:56:45 +00005900 if (T->isVoidType()) {
5901 // C++98 [dcl.stc]p5: The extern specifier can be applied only to the names
5902 // of objects and functions.
5903 if (NewVD->isThisDeclarationADefinition() || getLangOpts().CPlusPlus) {
5904 Diag(NewVD->getLocation(), diag::err_typecheck_decl_incomplete_type)
5905 << T;
5906 NewVD->setInvalidDecl();
5907 return;
5908 }
Richard Smithdc7a4f52013-04-30 13:56:41 +00005909 }
5910
5911 if (!NewVD->hasLocalStorage() && NewVD->hasAttr<BlocksAttr>()) {
5912 Diag(NewVD->getLocation(), diag::err_block_on_nonlocal);
5913 NewVD->setInvalidDecl();
5914 return;
5915 }
5916
5917 if (isVM && NewVD->hasAttr<BlocksAttr>()) {
5918 Diag(NewVD->getLocation(), diag::err_block_on_vm);
5919 NewVD->setInvalidDecl();
5920 return;
5921 }
5922
5923 if (NewVD->isConstexpr() && !T->isDependentType() &&
5924 RequireLiteralType(NewVD->getLocation(), T,
5925 diag::err_constexpr_var_non_literal)) {
Richard Smithdc7a4f52013-04-30 13:56:41 +00005926 NewVD->setInvalidDecl();
5927 return;
5928 }
5929}
5930
5931/// \brief Perform semantic checking on a newly-created variable
5932/// declaration.
5933///
5934/// This routine performs all of the type-checking required for a
5935/// variable declaration once it has been built. It is used both to
5936/// check variables after they have been parsed and their declarators
5937/// have been translated into a declaration, and to check variables
5938/// that have been instantiated from a template.
5939///
5940/// Sets NewVD->isInvalidDecl() if an error was encountered.
5941///
5942/// Returns true if the variable declaration is a redeclaration.
Larisse Voufo567f9172013-08-22 00:59:14 +00005943bool Sema::CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) {
Richard Smithdc7a4f52013-04-30 13:56:41 +00005944 CheckVariableDeclarationType(NewVD);
5945
5946 // If the decl is already known invalid, don't check it.
5947 if (NewVD->isInvalidDecl())
5948 return false;
5949
John McCall5b8740f2013-04-01 18:34:28 +00005950 // If we did not find anything by this name, look for a non-visible
5951 // extern "C" declaration with the same name.
Richard Smithdd9459f2013-08-13 18:18:50 +00005952 if (Previous.empty() &&
5953 checkForConflictWithNonVisibleExternC(*this, NewVD, Previous))
Richard Smith99a72382013-09-03 21:00:58 +00005954 Previous.setShadowed();
Douglas Gregor63935192009-03-02 00:19:53 +00005955
Douglas Gregor7dc80e12013-01-09 00:47:56 +00005956 // Filter out any non-conflicting previous declarations.
5957 filterNonConflictingPreviousDecls(Context, NewVD, Previous);
5958
John McCall68263142009-11-18 22:49:29 +00005959 if (!Previous.empty()) {
Richard Smith99a72382013-09-03 21:00:58 +00005960 MergeVarDecl(NewVD, Previous);
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005961 return true;
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005962 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00005963 return false;
Zhongxing Xucb8f4f12009-01-16 02:36:34 +00005964}
5965
Douglas Gregora8f32e02009-10-06 17:59:45 +00005966/// \brief Data used with FindOverriddenMethod
5967struct FindOverriddenMethodData {
5968 Sema *S;
5969 CXXMethodDecl *Method;
5970};
5971
5972/// \brief Member lookup function that determines whether a given C++
5973/// method overrides a method in a base class, to be used with
5974/// CXXRecordDecl::lookupInBases().
John McCallaf8e6ed2009-11-12 03:15:40 +00005975static bool FindOverriddenMethod(const CXXBaseSpecifier *Specifier,
Douglas Gregora8f32e02009-10-06 17:59:45 +00005976 CXXBasePath &Path,
5977 void *UserData) {
5978 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
Anders Carlsson95496802009-11-26 20:50:40 +00005979
Douglas Gregora8f32e02009-10-06 17:59:45 +00005980 FindOverriddenMethodData *Data
5981 = reinterpret_cast<FindOverriddenMethodData*>(UserData);
Anders Carlsson95496802009-11-26 20:50:40 +00005982
5983 DeclarationName Name = Data->Method->getDeclName();
5984
5985 // FIXME: Do we care about other names here too?
5986 if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
John McCallad00b772010-06-16 08:42:20 +00005987 // We really want to find the base class destructor here.
Anders Carlsson95496802009-11-26 20:50:40 +00005988 QualType T = Data->S->Context.getTypeDeclType(BaseRecord);
5989 CanQualType CT = Data->S->Context.getCanonicalType(T);
5990
Anders Carlsson1a689722009-11-27 01:26:58 +00005991 Name = Data->S->Context.DeclarationNames.getCXXDestructorName(CT);
Anders Carlsson95496802009-11-26 20:50:40 +00005992 }
5993
5994 for (Path.Decls = BaseRecord->lookup(Name);
David Blaikie3bc93e32012-12-19 00:45:41 +00005995 !Path.Decls.empty();
5996 Path.Decls = Path.Decls.slice(1)) {
5997 NamedDecl *D = Path.Decls.front();
John McCallad00b772010-06-16 08:42:20 +00005998 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
5999 if (MD->isVirtual() && !Data->S->IsOverload(Data->Method, MD, false))
Douglas Gregora8f32e02009-10-06 17:59:45 +00006000 return true;
6001 }
6002 }
6003
6004 return false;
6005}
6006
David Blaikie5708c182012-10-17 00:47:58 +00006007namespace {
6008 enum OverrideErrorKind { OEK_All, OEK_NonDeleted, OEK_Deleted };
6009}
6010/// \brief Report an error regarding overriding, along with any relevant
6011/// overriden methods.
6012///
6013/// \param DiagID the primary error to report.
6014/// \param MD the overriding method.
6015/// \param OEK which overrides to include as notes.
6016static void ReportOverrides(Sema& S, unsigned DiagID, const CXXMethodDecl *MD,
6017 OverrideErrorKind OEK = OEK_All) {
6018 S.Diag(MD->getLocation(), DiagID) << MD->getDeclName();
6019 for (CXXMethodDecl::method_iterator I = MD->begin_overridden_methods(),
6020 E = MD->end_overridden_methods();
6021 I != E; ++I) {
6022 // This check (& the OEK parameter) could be replaced by a predicate, but
6023 // without lambdas that would be overkill. This is still nicer than writing
6024 // out the diag loop 3 times.
6025 if ((OEK == OEK_All) ||
6026 (OEK == OEK_NonDeleted && !(*I)->isDeleted()) ||
6027 (OEK == OEK_Deleted && (*I)->isDeleted()))
6028 S.Diag((*I)->getLocation(), diag::note_overridden_virtual_function);
6029 }
6030}
6031
Sebastian Redla165da02009-11-18 21:51:29 +00006032/// AddOverriddenMethods - See if a method overrides any in the base classes,
6033/// and if so, check that it's a valid override and remember it.
Douglas Gregora6c1e3a2010-10-13 22:55:32 +00006034bool Sema::AddOverriddenMethods(CXXRecordDecl *DC, CXXMethodDecl *MD) {
Sebastian Redla165da02009-11-18 21:51:29 +00006035 // Look for virtual methods in base classes that this method might override.
6036 CXXBasePaths Paths;
6037 FindOverriddenMethodData Data;
6038 Data.Method = MD;
6039 Data.S = this;
David Blaikie5708c182012-10-17 00:47:58 +00006040 bool hasDeletedOverridenMethods = false;
6041 bool hasNonDeletedOverridenMethods = false;
Douglas Gregora6c1e3a2010-10-13 22:55:32 +00006042 bool AddedAny = false;
Sebastian Redla165da02009-11-18 21:51:29 +00006043 if (DC->lookupInBases(&FindOverriddenMethod, &Data, Paths)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07006044 for (auto *I : Paths.found_decls()) {
6045 if (CXXMethodDecl *OldMD = dyn_cast<CXXMethodDecl>(I)) {
Richard Trieu304e2332011-07-01 20:02:53 +00006046 MD->addOverriddenMethod(OldMD->getCanonicalDecl());
Sebastian Redla165da02009-11-18 21:51:29 +00006047 if (!CheckOverridingFunctionReturnType(MD, OldMD) &&
Aaron Ballmanfff32482012-12-09 17:45:41 +00006048 !CheckOverridingFunctionAttributes(MD, OldMD) &&
Richard Smithb9d0b762012-07-27 04:22:15 +00006049 !CheckOverridingFunctionExceptionSpec(MD, OldMD) &&
Anders Carlsson2e1c7302011-01-20 16:25:36 +00006050 !CheckIfOverriddenFunctionIsMarkedFinal(MD, OldMD)) {
David Blaikie5708c182012-10-17 00:47:58 +00006051 hasDeletedOverridenMethods |= OldMD->isDeleted();
6052 hasNonDeletedOverridenMethods |= !OldMD->isDeleted();
Douglas Gregora6c1e3a2010-10-13 22:55:32 +00006053 AddedAny = true;
6054 }
Sebastian Redla165da02009-11-18 21:51:29 +00006055 }
6056 }
6057 }
David Blaikie5708c182012-10-17 00:47:58 +00006058
6059 if (hasDeletedOverridenMethods && !MD->isDeleted()) {
6060 ReportOverrides(*this, diag::err_non_deleted_override, MD, OEK_Deleted);
6061 }
6062 if (hasNonDeletedOverridenMethods && MD->isDeleted()) {
6063 ReportOverrides(*this, diag::err_deleted_override, MD, OEK_NonDeleted);
6064 }
6065
Douglas Gregora6c1e3a2010-10-13 22:55:32 +00006066 return AddedAny;
Sebastian Redla165da02009-11-18 21:51:29 +00006067}
6068
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006069namespace {
6070 // Struct for holding all of the extra arguments needed by
6071 // DiagnoseInvalidRedeclaration to call Sema::ActOnFunctionDeclarator.
6072 struct ActOnFDArgs {
6073 Scope *S;
6074 Declarator &D;
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006075 MultiTemplateParamsArg TemplateParamLists;
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006076 bool AddToScope;
6077 };
6078}
6079
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +00006080namespace {
6081
6082// Callback to only accept typo corrections that have a non-zero edit distance.
Kaelyn Uhrain33363532012-02-16 22:40:59 +00006083// Also only accept corrections that have the same parent decl.
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +00006084class DifferentNameValidatorCCC : public CorrectionCandidateCallback {
6085 public:
Kaelyn Uhrainef094a12012-06-07 23:57:08 +00006086 DifferentNameValidatorCCC(ASTContext &Context, FunctionDecl *TypoFD,
6087 CXXRecordDecl *Parent)
6088 : Context(Context), OriginalFD(TypoFD),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006089 ExpectedParent(Parent ? Parent->getCanonicalDecl() : nullptr) {}
Kaelyn Uhrain33363532012-02-16 22:40:59 +00006090
Stephen Hines651f13c2014-04-23 16:59:28 -07006091 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhrain33363532012-02-16 22:40:59 +00006092 if (candidate.getEditDistance() == 0)
6093 return false;
6094
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00006095 SmallVector<unsigned, 1> MismatchedParams;
Kaelyn Uhrainef094a12012-06-07 23:57:08 +00006096 for (TypoCorrection::const_decl_iterator CDecl = candidate.begin(),
6097 CDeclEnd = candidate.end();
6098 CDecl != CDeclEnd; ++CDecl) {
6099 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
6100
6101 if (FD && !FD->hasBody() &&
6102 hasSimilarParameters(Context, FD, OriginalFD, MismatchedParams)) {
6103 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
6104 CXXRecordDecl *Parent = MD->getParent();
6105 if (Parent && Parent->getCanonicalDecl() == ExpectedParent)
6106 return true;
6107 } else if (!ExpectedParent) {
6108 return true;
6109 }
6110 }
Kaelyn Uhrain33363532012-02-16 22:40:59 +00006111 }
6112
Kaelyn Uhrainef094a12012-06-07 23:57:08 +00006113 return false;
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +00006114 }
Kaelyn Uhrain33363532012-02-16 22:40:59 +00006115
6116 private:
Kaelyn Uhrainef094a12012-06-07 23:57:08 +00006117 ASTContext &Context;
6118 FunctionDecl *OriginalFD;
Kaelyn Uhrain33363532012-02-16 22:40:59 +00006119 CXXRecordDecl *ExpectedParent;
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +00006120};
6121
6122}
6123
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006124/// \brief Generate diagnostics for an invalid function redeclaration.
6125///
6126/// This routine handles generating the diagnostic messages for an invalid
6127/// function redeclaration, including finding possible similar declarations
6128/// or performing typo correction if there are no previous declarations with
6129/// the same name.
6130///
Sylvestre Ledruf3477c12012-09-27 10:16:10 +00006131/// Returns a NamedDecl iff typo correction was performed and substituting in
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006132/// the new declaration name does not cause new errors.
Richard Smith4e9686b2013-08-09 04:35:01 +00006133static NamedDecl *DiagnoseInvalidRedeclaration(
Kaelyn Uhrainf09ce392011-10-11 00:28:52 +00006134 Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD,
Richard Smith4e9686b2013-08-09 04:35:01 +00006135 ActOnFDArgs &ExtraArgs, bool IsLocalFriend, Scope *S) {
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006136 DeclarationName Name = NewFD->getDeclName();
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006137 DeclContext *NewDC = NewFD->getDeclContext();
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00006138 SmallVector<unsigned, 1> MismatchedParams;
6139 SmallVector<std::pair<FunctionDecl *, unsigned>, 1> NearMatches;
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006140 TypoCorrection Correction;
Richard Smith2d670972013-08-17 00:46:16 +00006141 bool IsDefinition = ExtraArgs.D.isFunctionDefinition();
Richard Smith4e9686b2013-08-09 04:35:01 +00006142 unsigned DiagMsg = IsLocalFriend ? diag::err_no_matching_local_friend
6143 : diag::err_member_decl_does_not_match;
6144 LookupResult Prev(SemaRef, Name, NewFD->getLocation(),
6145 IsLocalFriend ? Sema::LookupLocalFriendName
6146 : Sema::LookupOrdinaryName,
6147 Sema::ForRedeclaration);
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006148
6149 NewFD->setInvalidDecl();
Richard Smith4e9686b2013-08-09 04:35:01 +00006150 if (IsLocalFriend)
6151 SemaRef.LookupName(Prev, S);
6152 else
6153 SemaRef.LookupQualifiedName(Prev, NewDC);
John McCall29ae6e52010-10-13 05:45:15 +00006154 assert(!Prev.isAmbiguous() &&
6155 "Cannot have an ambiguity in previous-declaration lookup");
Kaelyn Uhrain33363532012-02-16 22:40:59 +00006156 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
Kaelyn Uhrainef094a12012-06-07 23:57:08 +00006157 DifferentNameValidatorCCC Validator(SemaRef.Context, NewFD,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006158 MD ? MD->getParent() : nullptr);
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006159 if (!Prev.empty()) {
6160 for (LookupResult::iterator Func = Prev.begin(), FuncEnd = Prev.end();
6161 Func != FuncEnd; ++Func) {
6162 FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func);
Kaelyn Uhrainf09ce392011-10-11 00:28:52 +00006163 if (FD &&
6164 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006165 // Add 1 to the index so that 0 can mean the mismatch didn't
6166 // involve a parameter
6167 unsigned ParamNum =
6168 MismatchedParams.empty() ? 0 : MismatchedParams.front() + 1;
6169 NearMatches.push_back(std::make_pair(FD, ParamNum));
6170 }
Kaelyn Uhrain4d9d1572011-08-04 17:40:00 +00006171 }
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006172 // If the qualified name lookup yielded nothing, try typo correction
Richard Smith4e9686b2013-08-09 04:35:01 +00006173 } else if ((Correction = SemaRef.CorrectTypo(
Richard Smith2d670972013-08-17 00:46:16 +00006174 Prev.getLookupNameInfo(), Prev.getLookupKind(), S,
6175 &ExtraArgs.D.getCXXScopeSpec(), Validator,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006176 Sema::CTK_ErrorRecovery, IsLocalFriend ? nullptr : NewDC))) {
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006177 // Set up everything for the call to ActOnFunctionDeclarator
6178 ExtraArgs.D.SetIdentifier(Correction.getCorrectionAsIdentifierInfo(),
6179 ExtraArgs.D.getIdentifierLoc());
6180 Previous.clear();
6181 Previous.setLookupName(Correction.getCorrection());
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006182 for (TypoCorrection::decl_iterator CDecl = Correction.begin(),
6183 CDeclEnd = Correction.end();
6184 CDecl != CDeclEnd; ++CDecl) {
6185 FunctionDecl *FD = dyn_cast<FunctionDecl>(*CDecl);
Kaelyn Uhrainef094a12012-06-07 23:57:08 +00006186 if (FD && !FD->hasBody() &&
6187 hasSimilarParameters(SemaRef.Context, FD, NewFD, MismatchedParams)) {
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006188 Previous.addDecl(FD);
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006189 }
6190 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00006191 bool wasRedeclaration = ExtraArgs.D.isRedeclaration();
Richard Smith2d670972013-08-17 00:46:16 +00006192
6193 NamedDecl *Result;
6194 // Retry building the function declaration with the new previous
6195 // declarations, and with errors suppressed.
6196 {
6197 // Trap errors.
6198 Sema::SFINAETrap Trap(SemaRef);
6199
6200 // TODO: Refactor ActOnFunctionDeclarator so that we can call only the
6201 // pieces need to verify the typo-corrected C++ declaration and hopefully
6202 // eliminate the need for the parameter pack ExtraArgs.
6203 Result = SemaRef.ActOnFunctionDeclarator(
6204 ExtraArgs.S, ExtraArgs.D,
6205 Correction.getCorrectionDecl()->getDeclContext(),
6206 NewFD->getTypeSourceInfo(), Previous, ExtraArgs.TemplateParamLists,
6207 ExtraArgs.AddToScope);
6208
6209 if (Trap.hasErrorOccurred())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006210 Result = nullptr;
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006211 }
Richard Smith2d670972013-08-17 00:46:16 +00006212
6213 if (Result) {
6214 // Determine which correction we picked.
6215 Decl *Canonical = Result->getCanonicalDecl();
6216 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
6217 I != E; ++I)
6218 if ((*I)->getCanonicalDecl() == Canonical)
6219 Correction.setCorrectionDecl(*I);
6220
6221 SemaRef.diagnoseTypo(
6222 Correction,
6223 SemaRef.PDiag(IsLocalFriend
6224 ? diag::err_no_matching_local_friend_suggest
6225 : diag::err_member_decl_does_not_match_suggest)
6226 << Name << NewDC << IsDefinition);
6227 return Result;
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00006228 }
Richard Smith2d670972013-08-17 00:46:16 +00006229
6230 // Pretend the typo correction never occurred
6231 ExtraArgs.D.SetIdentifier(Name.getAsIdentifierInfo(),
6232 ExtraArgs.D.getIdentifierLoc());
6233 ExtraArgs.D.setRedeclaration(wasRedeclaration);
6234 Previous.clear();
6235 Previous.setLookupName(Name);
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006236 }
6237
Richard Smith2d670972013-08-17 00:46:16 +00006238 SemaRef.Diag(NewFD->getLocation(), DiagMsg)
6239 << Name << NewDC << IsDefinition << NewFD->getLocation();
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006240
Kaelyn Uhrain10553932011-10-10 18:01:37 +00006241 bool NewFDisConst = false;
6242 if (CXXMethodDecl *NewMD = dyn_cast<CXXMethodDecl>(NewFD))
David Blaikie4ef832f2012-08-10 00:55:35 +00006243 NewFDisConst = NewMD->isConst();
Kaelyn Uhrain10553932011-10-10 18:01:37 +00006244
Craig Topper8bc99dd2013-07-04 03:15:42 +00006245 for (SmallVectorImpl<std::pair<FunctionDecl *, unsigned> >::iterator
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006246 NearMatch = NearMatches.begin(), NearMatchEnd = NearMatches.end();
6247 NearMatch != NearMatchEnd; ++NearMatch) {
6248 FunctionDecl *FD = NearMatch->first;
Richard Smith4e9686b2013-08-09 04:35:01 +00006249 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD);
6250 bool FDisConst = MD && MD->isConst();
6251 bool IsMember = MD || !IsLocalFriend;
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006252
Richard Smitha41c97a2013-09-20 01:15:31 +00006253 // FIXME: These notes are poorly worded for the local friend case.
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006254 if (unsigned Idx = NearMatch->second) {
6255 ParmVarDecl *FDParam = FD->getParamDecl(Idx-1);
Richard Smith1c931be2012-04-02 18:40:40 +00006256 SourceLocation Loc = FDParam->getTypeSpecStartLoc();
6257 if (Loc.isInvalid()) Loc = FD->getLocation();
Richard Smith4e9686b2013-08-09 04:35:01 +00006258 SemaRef.Diag(Loc, IsMember ? diag::note_member_def_close_param_match
6259 : diag::note_local_decl_close_param_match)
6260 << Idx << FDParam->getType()
6261 << NewFD->getParamDecl(Idx - 1)->getType();
Kaelyn Uhrain10553932011-10-10 18:01:37 +00006262 } else if (FDisConst != NewFDisConst) {
Kaelyn Uhrainf09ce392011-10-11 00:28:52 +00006263 SemaRef.Diag(FD->getLocation(), diag::note_member_def_close_const_match)
Kaelyn Uhrain10553932011-10-10 18:01:37 +00006264 << NewFDisConst << FD->getSourceRange().getEnd();
Kaelyn Uhrain51611632011-08-18 18:19:12 +00006265 } else
Richard Smith4e9686b2013-08-09 04:35:01 +00006266 SemaRef.Diag(FD->getLocation(),
6267 IsMember ? diag::note_member_def_close_match
6268 : diag::note_local_decl_close_match);
John McCall29ae6e52010-10-13 05:45:15 +00006269 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006270 return nullptr;
John McCall29ae6e52010-10-13 05:45:15 +00006271}
6272
David Blaikied662a792011-10-19 22:56:21 +00006273static FunctionDecl::StorageClass getFunctionStorageClass(Sema &SemaRef,
6274 Declarator &D) {
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006275 switch (D.getDeclSpec().getStorageClassSpec()) {
6276 default: llvm_unreachable("Unknown storage class!");
6277 case DeclSpec::SCS_auto:
6278 case DeclSpec::SCS_register:
6279 case DeclSpec::SCS_mutable:
6280 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6281 diag::err_typecheck_sclass_func);
6282 D.setInvalidType();
6283 break;
6284 case DeclSpec::SCS_unspecified: break;
Rafael Espindola65dfa2b2013-04-25 12:11:36 +00006285 case DeclSpec::SCS_extern:
6286 if (D.getDeclSpec().isExternInLinkageSpec())
6287 return SC_None;
6288 return SC_Extern;
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006289 case DeclSpec::SCS_static: {
6290 if (SemaRef.CurContext->getRedeclContext()->isFunctionOrMethod()) {
6291 // C99 6.7.1p5:
6292 // The declaration of an identifier for a function that has
6293 // block scope shall have no explicit storage-class specifier
6294 // other than extern
6295 // See also (C++ [dcl.stc]p4).
6296 SemaRef.Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6297 diag::err_static_block_func);
6298 break;
6299 } else
6300 return SC_Static;
6301 }
6302 case DeclSpec::SCS_private_extern: return SC_PrivateExtern;
6303 }
6304
6305 // No explicit storage class has already been returned
6306 return SC_None;
6307}
6308
6309static FunctionDecl* CreateNewFunctionDecl(Sema &SemaRef, Declarator &D,
6310 DeclContext *DC, QualType &R,
6311 TypeSourceInfo *TInfo,
6312 FunctionDecl::StorageClass SC,
6313 bool &IsVirtualOkay) {
6314 DeclarationNameInfo NameInfo = SemaRef.GetNameForDeclarator(D);
6315 DeclarationName Name = NameInfo.getName();
6316
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006317 FunctionDecl *NewFD = nullptr;
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006318 bool isInline = D.getDeclSpec().isInlineSpecified();
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006319
David Blaikie4e4d0842012-03-11 07:00:24 +00006320 if (!SemaRef.getLangOpts().CPlusPlus) {
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006321 // Determine whether the function was written with a
6322 // prototype. This true when:
6323 // - there is a prototype in the declarator, or
6324 // - the type R of the function is some kind of typedef or other reference
6325 // to a type name (which eventually refers to a function type).
6326 bool HasPrototype =
6327 (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) ||
6328 (!isa<FunctionType>(R.getTypePtr()) && R->isFunctionProtoType());
6329
David Blaikied662a792011-10-19 22:56:21 +00006330 NewFD = FunctionDecl::Create(SemaRef.Context, DC,
Daniel Dunbar96a00142012-03-09 18:35:03 +00006331 D.getLocStart(), NameInfo, R,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00006332 TInfo, SC, isInline,
6333 HasPrototype, false);
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006334 if (D.isInvalidType())
6335 NewFD->setInvalidDecl();
6336
6337 // Set the lexical context.
6338 NewFD->setLexicalDeclContext(SemaRef.CurContext);
6339
6340 return NewFD;
6341 }
6342
6343 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
6344 bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
6345
6346 // Check that the return type is not an abstract class type.
6347 // For record types, this is done by the AbstractClassUsageDiagnoser once
6348 // the class has been completely parsed.
6349 if (!DC->isRecord() &&
Stephen Hines651f13c2014-04-23 16:59:28 -07006350 SemaRef.RequireNonAbstractType(
6351 D.getIdentifierLoc(), R->getAs<FunctionType>()->getReturnType(),
6352 diag::err_abstract_type_in_decl, SemaRef.AbstractReturnType))
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006353 D.setInvalidType();
6354
6355 if (Name.getNameKind() == DeclarationName::CXXConstructorName) {
6356 // This is a C++ constructor declaration.
6357 assert(DC->isRecord() &&
6358 "Constructors can only be declared in a member context");
6359
6360 R = SemaRef.CheckConstructorDeclarator(D, R, SC);
6361 return CXXConstructorDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
Daniel Dunbar96a00142012-03-09 18:35:03 +00006362 D.getLocStart(), NameInfo,
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006363 R, TInfo, isExplicit, isInline,
6364 /*isImplicitlyDeclared=*/false,
6365 isConstexpr);
6366
6367 } else if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
6368 // This is a C++ destructor declaration.
6369 if (DC->isRecord()) {
6370 R = SemaRef.CheckDestructorDeclarator(D, R, SC);
6371 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
6372 CXXDestructorDecl *NewDD = CXXDestructorDecl::Create(
6373 SemaRef.Context, Record,
Daniel Dunbar96a00142012-03-09 18:35:03 +00006374 D.getLocStart(),
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006375 NameInfo, R, TInfo, isInline,
6376 /*isImplicitlyDeclared=*/false);
6377
6378 // If the class is complete, then we now create the implicit exception
6379 // specification. If the class is incomplete or dependent, we can't do
6380 // it yet.
Richard Smith80ad52f2013-01-02 11:42:31 +00006381 if (SemaRef.getLangOpts().CPlusPlus11 && !Record->isDependentType() &&
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006382 Record->getDefinition() && !Record->isBeingDefined() &&
6383 R->getAs<FunctionProtoType>()->getExceptionSpecType() == EST_None) {
6384 SemaRef.AdjustDestructorExceptionSpec(Record, NewDD);
6385 }
6386
6387 IsVirtualOkay = true;
6388 return NewDD;
6389
6390 } else {
6391 SemaRef.Diag(D.getIdentifierLoc(), diag::err_destructor_not_member);
6392 D.setInvalidType();
6393
6394 // Create a FunctionDecl to satisfy the function definition parsing
6395 // code path.
6396 return FunctionDecl::Create(SemaRef.Context, DC,
Daniel Dunbar96a00142012-03-09 18:35:03 +00006397 D.getLocStart(),
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006398 D.getIdentifierLoc(), Name, R, TInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00006399 SC, isInline,
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006400 /*hasPrototype=*/true, isConstexpr);
6401 }
6402
6403 } else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
6404 if (!DC->isRecord()) {
6405 SemaRef.Diag(D.getIdentifierLoc(),
6406 diag::err_conv_function_not_member);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006407 return nullptr;
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006408 }
6409
6410 SemaRef.CheckConversionDeclarator(D, R, SC);
6411 IsVirtualOkay = true;
6412 return CXXConversionDecl::Create(SemaRef.Context, cast<CXXRecordDecl>(DC),
Daniel Dunbar96a00142012-03-09 18:35:03 +00006413 D.getLocStart(), NameInfo,
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006414 R, TInfo, isInline, isExplicit,
6415 isConstexpr, SourceLocation());
6416
6417 } else if (DC->isRecord()) {
6418 // If the name of the function is the same as the name of the record,
6419 // then this must be an invalid constructor that has a return type.
6420 // (The parser checks for a return type and makes the declarator a
6421 // constructor if it has no return type).
6422 if (Name.getAsIdentifierInfo() &&
6423 Name.getAsIdentifierInfo() == cast<CXXRecordDecl>(DC)->getIdentifier()){
6424 SemaRef.Diag(D.getIdentifierLoc(), diag::err_constructor_return_type)
6425 << SourceRange(D.getDeclSpec().getTypeSpecTypeLoc())
6426 << SourceRange(D.getIdentifierLoc());
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006427 return nullptr;
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006428 }
6429
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006430 // This is a C++ method declaration.
Rafael Espindolad2615cc2013-04-03 19:27:57 +00006431 CXXMethodDecl *Ret = CXXMethodDecl::Create(SemaRef.Context,
6432 cast<CXXRecordDecl>(DC),
6433 D.getLocStart(), NameInfo, R,
6434 TInfo, SC, isInline,
6435 isConstexpr, SourceLocation());
6436 IsVirtualOkay = !Ret->isStatic();
6437 return Ret;
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006438 } else {
6439 // Determine whether the function was written with a
6440 // prototype. This true when:
6441 // - we're in C++ (where every function has a prototype),
6442 return FunctionDecl::Create(SemaRef.Context, DC,
Daniel Dunbar96a00142012-03-09 18:35:03 +00006443 D.getLocStart(),
Rafael Espindolad2615cc2013-04-03 19:27:57 +00006444 NameInfo, R, TInfo, SC, isInline,
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006445 true/*HasPrototype*/, isConstexpr);
6446 }
6447}
6448
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00006449enum OpenCLParamType {
6450 ValidKernelParam,
6451 PtrPtrKernelParam,
6452 PtrKernelParam,
Stephen Hines651f13c2014-04-23 16:59:28 -07006453 PrivatePtrKernelParam,
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00006454 InvalidKernelParam,
6455 RecordKernelParam
6456};
6457
6458static OpenCLParamType getOpenCLKernelParameterType(QualType PT) {
6459 if (PT->isPointerType()) {
6460 QualType PointeeType = PT->getPointeeType();
Stephen Hines651f13c2014-04-23 16:59:28 -07006461 if (PointeeType->isPointerType())
6462 return PtrPtrKernelParam;
6463 return PointeeType.getAddressSpace() == 0 ? PrivatePtrKernelParam
6464 : PtrKernelParam;
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00006465 }
6466
6467 // TODO: Forbid the other integer types (size_t, ptrdiff_t...) when they can
6468 // be used as builtin types.
6469
6470 if (PT->isImageType())
6471 return PtrKernelParam;
6472
6473 if (PT->isBooleanType())
6474 return InvalidKernelParam;
6475
6476 if (PT->isEventT())
6477 return InvalidKernelParam;
6478
6479 if (PT->isHalfType())
6480 return InvalidKernelParam;
6481
6482 if (PT->isRecordType())
6483 return RecordKernelParam;
6484
6485 return ValidKernelParam;
6486}
6487
6488static void checkIsValidOpenCLKernelParameter(
6489 Sema &S,
6490 Declarator &D,
6491 ParmVarDecl *Param,
6492 llvm::SmallPtrSet<const Type *, 16> &ValidTypes) {
6493 QualType PT = Param->getType();
6494
6495 // Cache the valid types we encounter to avoid rechecking structs that are
6496 // used again
6497 if (ValidTypes.count(PT.getTypePtr()))
6498 return;
6499
6500 switch (getOpenCLKernelParameterType(PT)) {
6501 case PtrPtrKernelParam:
6502 // OpenCL v1.2 s6.9.a:
6503 // A kernel function argument cannot be declared as a
6504 // pointer to a pointer type.
6505 S.Diag(Param->getLocation(), diag::err_opencl_ptrptr_kernel_param);
6506 D.setInvalidType();
6507 return;
6508
Stephen Hines651f13c2014-04-23 16:59:28 -07006509 case PrivatePtrKernelParam:
6510 // OpenCL v1.2 s6.9.a:
6511 // A kernel function argument cannot be declared as a
6512 // pointer to the private address space.
6513 S.Diag(Param->getLocation(), diag::err_opencl_private_ptr_kernel_param);
6514 D.setInvalidType();
6515 return;
6516
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00006517 // OpenCL v1.2 s6.9.k:
6518 // Arguments to kernel functions in a program cannot be declared with the
6519 // built-in scalar types bool, half, size_t, ptrdiff_t, intptr_t, and
6520 // uintptr_t or a struct and/or union that contain fields declared to be
6521 // one of these built-in scalar types.
6522
6523 case InvalidKernelParam:
6524 // OpenCL v1.2 s6.8 n:
6525 // A kernel function argument cannot be declared
6526 // of event_t type.
6527 S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
6528 D.setInvalidType();
6529 return;
6530
6531 case PtrKernelParam:
6532 case ValidKernelParam:
6533 ValidTypes.insert(PT.getTypePtr());
6534 return;
6535
6536 case RecordKernelParam:
6537 break;
6538 }
6539
6540 // Track nested structs we will inspect
6541 SmallVector<const Decl *, 4> VisitStack;
6542
6543 // Track where we are in the nested structs. Items will migrate from
6544 // VisitStack to HistoryStack as we do the DFS for bad field.
6545 SmallVector<const FieldDecl *, 4> HistoryStack;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006546 HistoryStack.push_back(nullptr);
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00006547
6548 const RecordDecl *PD = PT->castAs<RecordType>()->getDecl();
6549 VisitStack.push_back(PD);
6550
6551 assert(VisitStack.back() && "First decl null?");
6552
6553 do {
6554 const Decl *Next = VisitStack.pop_back_val();
6555 if (!Next) {
6556 assert(!HistoryStack.empty());
6557 // Found a marker, we have gone up a level
6558 if (const FieldDecl *Hist = HistoryStack.pop_back_val())
6559 ValidTypes.insert(Hist->getType().getTypePtr());
6560
6561 continue;
6562 }
6563
6564 // Adds everything except the original parameter declaration (which is not a
6565 // field itself) to the history stack.
6566 const RecordDecl *RD;
6567 if (const FieldDecl *Field = dyn_cast<FieldDecl>(Next)) {
6568 HistoryStack.push_back(Field);
6569 RD = Field->getType()->castAs<RecordType>()->getDecl();
6570 } else {
6571 RD = cast<RecordDecl>(Next);
6572 }
6573
6574 // Add a null marker so we know when we've gone back up a level
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006575 VisitStack.push_back(nullptr);
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00006576
Stephen Hines651f13c2014-04-23 16:59:28 -07006577 for (const auto *FD : RD->fields()) {
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00006578 QualType QT = FD->getType();
6579
6580 if (ValidTypes.count(QT.getTypePtr()))
6581 continue;
6582
6583 OpenCLParamType ParamType = getOpenCLKernelParameterType(QT);
6584 if (ParamType == ValidKernelParam)
6585 continue;
6586
6587 if (ParamType == RecordKernelParam) {
6588 VisitStack.push_back(FD);
6589 continue;
6590 }
6591
6592 // OpenCL v1.2 s6.9.p:
6593 // Arguments to kernel functions that are declared to be a struct or union
6594 // do not allow OpenCL objects to be passed as elements of the struct or
6595 // union.
Stephen Hines651f13c2014-04-23 16:59:28 -07006596 if (ParamType == PtrKernelParam || ParamType == PtrPtrKernelParam ||
6597 ParamType == PrivatePtrKernelParam) {
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00006598 S.Diag(Param->getLocation(),
6599 diag::err_record_with_pointers_kernel_param)
6600 << PT->isUnionType()
6601 << PT;
6602 } else {
6603 S.Diag(Param->getLocation(), diag::err_bad_kernel_param_type) << PT;
6604 }
6605
6606 S.Diag(PD->getLocation(), diag::note_within_field_of_type)
6607 << PD->getDeclName();
6608
6609 // We have an error, now let's go back up through history and show where
6610 // the offending field came from
6611 for (ArrayRef<const FieldDecl *>::const_iterator I = HistoryStack.begin() + 1,
6612 E = HistoryStack.end(); I != E; ++I) {
6613 const FieldDecl *OuterField = *I;
6614 S.Diag(OuterField->getLocation(), diag::note_within_field_of_type)
6615 << OuterField->getType();
6616 }
6617
6618 S.Diag(FD->getLocation(), diag::note_illegal_field_declared_here)
6619 << QT->isPointerType()
6620 << QT;
6621 D.setInvalidType();
6622 return;
6623 }
6624 } while (!VisitStack.empty());
6625}
6626
Mike Stump1eb44332009-09-09 15:08:12 +00006627NamedDecl*
Nick Lewycky25af0912011-07-02 02:05:12 +00006628Sema::ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00006629 TypeSourceInfo *TInfo, LookupResult &Previous,
Douglas Gregore542c862009-06-23 23:11:28 +00006630 MultiTemplateParamsArg TemplateParamLists,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00006631 bool &AddToScope) {
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00006632 QualType R = TInfo->getType();
6633
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00006634 assert(R.getTypePtr()->isFunctionType());
6635
Abramo Bagnara25777432010-08-11 22:01:17 +00006636 // TODO: consider using NameInfo for diagnostic.
6637 DeclarationNameInfo NameInfo = GetNameForDeclarator(D);
6638 DeclarationName Name = NameInfo.getName();
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006639 FunctionDecl::StorageClass SC = getFunctionStorageClass(*this, D);
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00006640
Richard Smithec642442013-04-12 22:46:28 +00006641 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
6642 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
6643 diag::err_invalid_thread)
6644 << DeclSpec::getSpecifierName(TSCS);
Eli Friedman63054b32009-04-19 20:27:55 +00006645
Reid Klecknerd1a32c32013-10-08 00:58:57 +00006646 if (D.isFirstDeclarationOfMember())
6647 adjustMemberFunctionCC(R, D.isStaticMember());
Reid Kleckneref072032013-08-27 23:08:25 +00006648
Douglas Gregor3922ed02010-12-10 19:28:19 +00006649 bool isFriend = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006650 FunctionTemplateDecl *FunctionTemplate = nullptr;
Douglas Gregor3922ed02010-12-10 19:28:19 +00006651 bool isExplicitSpecialization = false;
6652 bool isFunctionTemplateSpecialization = false;
Nico Weber6b020092012-06-25 17:21:05 +00006653
Francois Pichetaf0f4d02011-08-14 03:52:19 +00006654 bool isDependentClassScopeExplicitSpecialization = false;
Nico Weber6b020092012-06-25 17:21:05 +00006655 bool HasExplicitTemplateArgs = false;
6656 TemplateArgumentListInfo TemplateArgs;
6657
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006658 bool isVirtualOkay = false;
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00006659
Richard Smitha41c97a2013-09-20 01:15:31 +00006660 DeclContext *OriginalDC = DC;
6661 bool IsLocalExternDecl = adjustContextForLocalExternDecl(DC);
6662
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006663 FunctionDecl *NewFD = CreateNewFunctionDecl(*this, D, DC, R, TInfo, SC,
6664 isVirtualOkay);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006665 if (!NewFD) return nullptr;
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006666
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00006667 if (OriginalLexicalContext && OriginalLexicalContext->isObjCContainer())
6668 NewFD->setTopLevelDeclInObjCContainer();
6669
Richard Smitha41c97a2013-09-20 01:15:31 +00006670 // Set the lexical context. If this is a function-scope declaration, or has a
6671 // C++ scope specifier, or is the object of a friend declaration, the lexical
6672 // context will be different from the semantic context.
6673 NewFD->setLexicalDeclContext(CurContext);
6674
6675 if (IsLocalExternDecl)
6676 NewFD->setLocalExternDecl();
6677
David Blaikie4e4d0842012-03-11 07:00:24 +00006678 if (getLangOpts().CPlusPlus) {
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006679 bool isInline = D.getDeclSpec().isInlineSpecified();
Douglas Gregor3922ed02010-12-10 19:28:19 +00006680 bool isVirtual = D.getDeclSpec().isVirtualSpecified();
6681 bool isExplicit = D.getDeclSpec().isExplicitSpecified();
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006682 bool isConstexpr = D.getDeclSpec().isConstexprSpecified();
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006683 isFriend = D.getDeclSpec().isFriendSpecified();
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00006684 if (isFriend && !isInline && D.isFunctionDefinition()) {
Abramo Bagnarab0a2fcc2011-03-18 15:21:59 +00006685 // C++ [class.friend]p5
6686 // A function can be defined in a friend declaration of a
6687 // class . . . . Such a function is implicitly inline.
6688 NewFD->setImplicitlyInline();
6689 }
6690
John McCalle402e722012-09-25 07:32:39 +00006691 // If this is a method defined in an __interface, and is not a constructor
6692 // or an overloaded operator, then set the pure flag (isVirtual will already
6693 // return true).
6694 if (const CXXRecordDecl *Parent =
6695 dyn_cast<CXXRecordDecl>(NewFD->getDeclContext())) {
6696 if (Parent->isInterface() && cast<CXXMethodDecl>(NewFD)->isUserProvided())
Joao Matos6666ed42012-08-31 18:45:21 +00006697 NewFD->setPure(true);
6698 }
6699
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006700 SetNestedNameSpecifier(NewFD, D);
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006701 isExplicitSpecialization = false;
6702 isFunctionTemplateSpecialization = false;
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006703 if (D.isInvalidType())
6704 NewFD->setInvalidDecl();
Richard Smitha41c97a2013-09-20 01:15:31 +00006705
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006706 // Match up the template parameter lists with the scope specifier, then
6707 // determine whether we have a template or a template specialization.
6708 bool Invalid = false;
Robert Wilhelm1169e2f2013-07-21 15:20:44 +00006709 if (TemplateParameterList *TemplateParams =
6710 MatchTemplateParametersToScopeSpecifier(
6711 D.getDeclSpec().getLocStart(), D.getIdentifierLoc(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006712 D.getCXXScopeSpec(),
6713 D.getName().getKind() == UnqualifiedId::IK_TemplateId
6714 ? D.getName().TemplateId
6715 : nullptr,
6716 TemplateParamLists, isFriend, isExplicitSpecialization,
6717 Invalid)) {
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00006718 if (TemplateParams->size() > 0) {
6719 // This is a function template
Abramo Bagnara9b934882010-06-12 08:15:14 +00006720
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00006721 // Check that we can declare a template here.
6722 if (CheckTemplateDeclScope(S, TemplateParams))
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006723 return nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00006724
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00006725 // A destructor cannot be a template.
6726 if (Name.getNameKind() == DeclarationName::CXXDestructorName) {
6727 Diag(NewFD->getLocation(), diag::err_destructor_template);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006728 return nullptr;
John McCall5fd378b2010-03-24 08:27:58 +00006729 }
Douglas Gregor20606502011-10-14 15:31:12 +00006730
6731 // If we're adding a template to a dependent context, we may need to
David Blaikied662a792011-10-19 22:56:21 +00006732 // rebuilding some of the types used within the template parameter list,
Douglas Gregor20606502011-10-14 15:31:12 +00006733 // now that we know what the current instantiation is.
6734 if (DC->isDependentContext()) {
6735 ContextRAII SavedContext(*this, DC);
6736 if (RebuildTemplateParamsInCurrentInstantiation(TemplateParams))
6737 Invalid = true;
6738 }
6739
John McCall5fd378b2010-03-24 08:27:58 +00006740
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00006741 FunctionTemplate = FunctionTemplateDecl::Create(Context, DC,
6742 NewFD->getLocation(),
6743 Name, TemplateParams,
6744 NewFD);
6745 FunctionTemplate->setLexicalDeclContext(CurContext);
6746 NewFD->setDescribedFunctionTemplate(FunctionTemplate);
6747
6748 // For source fidelity, store the other template param lists.
6749 if (TemplateParamLists.size() > 1) {
6750 NewFD->setTemplateParameterListsInfo(Context,
6751 TemplateParamLists.size() - 1,
Benjamin Kramer5354e772012-08-23 23:38:35 +00006752 TemplateParamLists.data());
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00006753 }
6754 } else {
6755 // This is a function template specialization.
6756 isFunctionTemplateSpecialization = true;
6757 // For source fidelity, store all the template param lists.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006758 if (TemplateParamLists.size() > 0)
6759 NewFD->setTemplateParameterListsInfo(Context,
6760 TemplateParamLists.size(),
6761 TemplateParamLists.data());
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00006762
6763 // C++0x [temp.expl.spec]p20 forbids "template<> friend void foo(int);".
6764 if (isFriend) {
6765 // We want to remove the "template<>", found here.
6766 SourceRange RemoveRange = TemplateParams->getSourceRange();
6767
6768 // If we remove the template<> and the name is not a
6769 // template-id, we're actually silently creating a problem:
6770 // the friend declaration will refer to an untemplated decl,
6771 // and clearly the user wants a template specialization. So
6772 // we need to insert '<>' after the name.
6773 SourceLocation InsertLoc;
6774 if (D.getName().getKind() != UnqualifiedId::IK_TemplateId) {
6775 InsertLoc = D.getName().getSourceRange().getEnd();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07006776 InsertLoc = getLocForEndOfToken(InsertLoc);
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00006777 }
6778
6779 Diag(D.getIdentifierLoc(), diag::err_template_spec_decl_friend)
6780 << Name << RemoveRange
6781 << FixItHint::CreateRemoval(RemoveRange)
6782 << FixItHint::CreateInsertion(InsertLoc, "<>");
6783 }
6784 }
6785 }
6786 else {
6787 // All template param lists were matched against the scope specifier:
6788 // this is NOT (an explicit specialization of) a template.
6789 if (TemplateParamLists.size() > 0)
6790 // For source fidelity, store all the template param lists.
6791 NewFD->setTemplateParameterListsInfo(Context,
6792 TemplateParamLists.size(),
Benjamin Kramer5354e772012-08-23 23:38:35 +00006793 TemplateParamLists.data());
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006794 }
6795
6796 if (Invalid) {
6797 NewFD->setInvalidDecl();
6798 if (FunctionTemplate)
6799 FunctionTemplate->setInvalidDecl();
6800 }
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006801
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006802 // C++ [dcl.fct.spec]p5:
6803 // The virtual specifier shall only be used in declarations of
6804 // nonstatic class member functions that appear within a
6805 // member-specification of a class declaration; see 10.3.
6806 //
6807 if (isVirtual && !NewFD->isInvalidDecl()) {
6808 if (!isVirtualOkay) {
6809 Diag(D.getDeclSpec().getVirtualSpecLoc(),
6810 diag::err_virtual_non_function);
6811 } else if (!CurContext->isRecord()) {
6812 // 'virtual' was specified outside of the class.
Anders Carlssonf1602a52011-01-22 14:43:56 +00006813 Diag(D.getDeclSpec().getVirtualSpecLoc(),
6814 diag::err_virtual_out_of_class)
6815 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
6816 } else if (NewFD->getDescribedFunctionTemplate()) {
6817 // C++ [temp.mem]p3:
6818 // A member function template shall not be virtual.
6819 Diag(D.getDeclSpec().getVirtualSpecLoc(),
6820 diag::err_virtual_member_function_template)
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006821 << FixItHint::CreateRemoval(D.getDeclSpec().getVirtualSpecLoc());
6822 } else {
6823 // Okay: Add virtual to the method.
6824 NewFD->setVirtualAsWritten(true);
John McCall7ad650f2010-03-24 07:46:06 +00006825 }
Richard Smith60e141e2013-05-04 07:00:32 +00006826
6827 if (getLangOpts().CPlusPlus1y &&
Stephen Hines651f13c2014-04-23 16:59:28 -07006828 NewFD->getReturnType()->isUndeducedType())
Richard Smith60e141e2013-05-04 07:00:32 +00006829 Diag(D.getDeclSpec().getVirtualSpecLoc(), diag::err_auto_fn_virtual);
Douglas Gregorc5c903a2009-06-24 00:23:40 +00006830 }
Abramo Bagnara9b934882010-06-12 08:15:14 +00006831
Richard Smithf93ec762013-11-15 02:58:23 +00006832 if (getLangOpts().CPlusPlus1y &&
6833 (NewFD->isDependentContext() ||
6834 (isFriend && CurContext->isDependentContext())) &&
Stephen Hines651f13c2014-04-23 16:59:28 -07006835 NewFD->getReturnType()->isUndeducedType()) {
Richard Smith37e849a2013-08-14 20:16:31 +00006836 // If the function template is referenced directly (for instance, as a
6837 // member of the current instantiation), pretend it has a dependent type.
6838 // This is not really justified by the standard, but is the only sane
6839 // thing to do.
Richard Smithf93ec762013-11-15 02:58:23 +00006840 // FIXME: For a friend function, we have not marked the function as being
6841 // a friend yet, so 'isDependentContext' on the FD doesn't work.
Richard Smith37e849a2013-08-14 20:16:31 +00006842 const FunctionProtoType *FPT =
6843 NewFD->getType()->castAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07006844 QualType Result =
6845 SubstAutoType(FPT->getReturnType(), Context.DependentTy);
6846 NewFD->setType(Context.getFunctionType(Result, FPT->getParamTypes(),
Richard Smith37e849a2013-08-14 20:16:31 +00006847 FPT->getExtProtoInfo()));
6848 }
6849
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006850 // C++ [dcl.fct.spec]p3:
David Blaikied662a792011-10-19 22:56:21 +00006851 // The inline specifier shall not appear on a block scope function
6852 // declaration.
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006853 if (isInline && !NewFD->isInvalidDecl()) {
6854 if (CurContext->isFunctionOrMethod()) {
6855 // 'inline' is not allowed on block scope function declaration.
6856 Diag(D.getDeclSpec().getInlineSpecLoc(),
6857 diag::err_inline_declaration_block_scope) << Name
6858 << FixItHint::CreateRemoval(D.getDeclSpec().getInlineSpecLoc());
6859 }
6860 }
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006861
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006862 // C++ [dcl.fct.spec]p6:
6863 // The explicit specifier shall be used only in the declaration of a
David Blaikied662a792011-10-19 22:56:21 +00006864 // constructor or conversion function within its class definition;
6865 // see 12.3.1 and 12.3.2.
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006866 if (isExplicit && !NewFD->isInvalidDecl()) {
6867 if (!CurContext->isRecord()) {
6868 // 'explicit' was specified outside of the class.
6869 Diag(D.getDeclSpec().getExplicitSpecLoc(),
6870 diag::err_explicit_out_of_class)
6871 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
6872 } else if (!isa<CXXConstructorDecl>(NewFD) &&
6873 !isa<CXXConversionDecl>(NewFD)) {
6874 // 'explicit' was specified on a function that wasn't a constructor
6875 // or conversion function.
6876 Diag(D.getDeclSpec().getExplicitSpecLoc(),
6877 diag::err_explicit_non_ctor_or_conv_function)
6878 << FixItHint::CreateRemoval(D.getDeclSpec().getExplicitSpecLoc());
6879 }
6880 }
Abramo Bagnara9b934882010-06-12 08:15:14 +00006881
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006882 if (isConstexpr) {
Richard Smith21c8fa82013-01-14 05:37:29 +00006883 // C++11 [dcl.constexpr]p2: constexpr functions and constexpr constructors
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006884 // are implicitly inline.
6885 NewFD->setImplicitlyInline();
6886
Richard Smith21c8fa82013-01-14 05:37:29 +00006887 // C++11 [dcl.constexpr]p3: functions declared constexpr are required to
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006888 // be either constructors or to return a literal type. Therefore,
6889 // destructors cannot be declared constexpr.
6890 if (isa<CXXDestructorDecl>(NewFD))
Richard Smith9f569cc2011-10-01 02:31:28 +00006891 Diag(D.getDeclSpec().getConstexprSpecLoc(), diag::err_constexpr_dtor);
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006892 }
6893
Douglas Gregor8d267c52011-09-09 02:06:17 +00006894 // If __module_private__ was specified, mark the function accordingly.
6895 if (D.getDeclSpec().isModulePrivateSpecified()) {
Douglas Gregord023aec2011-09-09 20:53:38 +00006896 if (isFunctionTemplateSpecialization) {
6897 SourceLocation ModulePrivateLoc
6898 = D.getDeclSpec().getModulePrivateSpecLoc();
6899 Diag(ModulePrivateLoc, diag::err_module_private_specialization)
6900 << 0
6901 << FixItHint::CreateRemoval(ModulePrivateLoc);
6902 } else {
6903 NewFD->setModulePrivate();
6904 if (FunctionTemplate)
6905 FunctionTemplate->setModulePrivate();
6906 }
Douglas Gregor8d267c52011-09-09 02:06:17 +00006907 }
Richard Smithaf1fc7a2011-08-15 21:04:07 +00006908
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006909 if (isFriend) {
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006910 if (FunctionTemplate) {
Richard Smith22050f22013-07-17 23:53:16 +00006911 FunctionTemplate->setObjectOfFriendDecl();
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006912 FunctionTemplate->setAccess(AS_public);
6913 }
Richard Smith22050f22013-07-17 23:53:16 +00006914 NewFD->setObjectOfFriendDecl();
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006915 NewFD->setAccess(AS_public);
6916 }
6917
Douglas Gregor45fa5602011-11-07 20:56:01 +00006918 // If a function is defined as defaulted or deleted, mark it as such now.
Stephen Hines651f13c2014-04-23 16:59:28 -07006919 // FIXME: Does this ever happen? ActOnStartOfFunctionDef forces the function
6920 // definition kind to FDK_Definition.
Douglas Gregor45fa5602011-11-07 20:56:01 +00006921 switch (D.getFunctionDefinitionKind()) {
6922 case FDK_Declaration:
6923 case FDK_Definition:
6924 break;
6925
6926 case FDK_Defaulted:
6927 NewFD->setDefaulted();
6928 break;
6929
6930 case FDK_Deleted:
6931 NewFD->setDeletedAsWritten();
6932 break;
6933 }
6934
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00006935 if (isa<CXXMethodDecl>(NewFD) && DC == CurContext &&
6936 D.isFunctionDefinition()) {
Douglas Gregor45fa5602011-11-07 20:56:01 +00006937 // C++ [class.mfct]p2:
6938 // A member function may be defined (8.4) in its class definition, in
6939 // which case it is an inline member function (7.1.2)
John McCallbfdcdc82010-12-15 04:00:32 +00006940 NewFD->setImplicitlyInline();
6941 }
6942
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00006943 if (SC == SC_Static && isa<CXXMethodDecl>(NewFD) &&
6944 !CurContext->isRecord()) {
6945 // C++ [class.static]p1:
6946 // A data or function member of a class may be declared static
6947 // in a class definition, in which case it is a static member of
6948 // the class.
6949
6950 // Complain about the 'static' specifier if it's on an out-of-line
6951 // member function definition.
6952 Diag(D.getDeclSpec().getStorageClassSpecLoc(),
6953 diag::err_static_out_of_line)
6954 << FixItHint::CreateRemoval(D.getDeclSpec().getStorageClassSpecLoc());
6955 }
Richard Smith444d3842012-10-20 08:26:51 +00006956
6957 // C++11 [except.spec]p15:
6958 // A deallocation function with no exception-specification is treated
6959 // as if it were specified with noexcept(true).
6960 const FunctionProtoType *FPT = R->getAs<FunctionProtoType>();
6961 if ((Name.getCXXOverloadedOperator() == OO_Delete ||
6962 Name.getCXXOverloadedOperator() == OO_Array_Delete) &&
Richard Smith80ad52f2013-01-02 11:42:31 +00006963 getLangOpts().CPlusPlus11 && FPT && !FPT->hasExceptionSpec()) {
Richard Smith444d3842012-10-20 08:26:51 +00006964 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
6965 EPI.ExceptionSpecType = EST_BasicNoexcept;
Stephen Hines651f13c2014-04-23 16:59:28 -07006966 NewFD->setType(Context.getFunctionType(FPT->getReturnType(),
6967 FPT->getParamTypes(), EPI));
Richard Smith444d3842012-10-20 08:26:51 +00006968 }
Douglas Gregor0167f3c2010-07-14 23:14:12 +00006969 }
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006970
6971 // Filter out previous declarations that don't match the scope.
Richard Smitha41c97a2013-09-20 01:15:31 +00006972 FilterLookupForScope(Previous, OriginalDC, S, shouldConsiderLinkage(NewFD),
Stephen Hines651f13c2014-04-23 16:59:28 -07006973 D.getCXXScopeSpec().isNotEmpty() ||
Kaelyn Uhraind7e19ce2011-10-11 00:28:49 +00006974 isExplicitSpecialization ||
6975 isFunctionTemplateSpecialization);
Richard Smithdd9459f2013-08-13 18:18:50 +00006976
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00006977 // Handle GNU asm-label extension (encoded as an attribute).
6978 if (Expr *E = (Expr*) D.getAsmLabel()) {
6979 // The parser guarantees this is a string.
Mike Stump1eb44332009-09-09 15:08:12 +00006980 StringLiteral *SE = cast<StringLiteral>(E);
Sean Huntcf807c42010-08-18 23:23:40 +00006981 NewFD->addAttr(::new (Context) AsmLabelAttr(SE->getStrTokenLoc(0), Context,
Stephen Hines651f13c2014-04-23 16:59:28 -07006982 SE->getString(), 0));
David Chisnall5f3c1632012-02-18 16:12:34 +00006983 } else if (!ExtnameUndeclaredIdentifiers.empty()) {
6984 llvm::DenseMap<IdentifierInfo*,AsmLabelAttr*>::iterator I =
6985 ExtnameUndeclaredIdentifiers.find(NewFD->getIdentifier());
6986 if (I != ExtnameUndeclaredIdentifiers.end()) {
6987 NewFD->addAttr(I->second);
6988 ExtnameUndeclaredIdentifiers.erase(I);
6989 }
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00006990 }
6991
Chris Lattner2dbd2852009-04-25 06:12:16 +00006992 // Copy the parameter declarations from the declarator D to the function
6993 // declaration NewFD, if they are available. First scavenge them into Params.
Chris Lattner5f9e2722011-07-23 10:55:15 +00006994 SmallVector<ParmVarDecl*, 16> Params;
Abramo Bagnara723df242010-12-14 22:11:44 +00006995 if (D.isFunctionDeclarator()) {
Abramo Bagnara075f8f12010-12-10 16:29:40 +00006996 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00006997
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00006998 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs
6999 // function that takes no arguments, not a function that takes a
7000 // single void argument.
7001 // We let through "const void" here because Sema::GetTypeForDeclarator
7002 // already checks for that case.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007003 if (FTIHasNonVoidParameters(FTI) && FTI.Params[0].Param) {
Stephen Hines651f13c2014-04-23 16:59:28 -07007004 for (unsigned i = 0, e = FTI.NumParams; i != e; ++i) {
7005 ParmVarDecl *Param = cast<ParmVarDecl>(FTI.Params[i].Param);
Argyrios Kyrtzidis9bedef62009-07-14 03:18:53 +00007006 assert(Param->getDeclContext() != NewFD && "Was set before ?");
7007 Param->setDeclContext(NewFD);
7008 Params.push_back(Param);
John McCallf19de1c2010-04-14 01:27:20 +00007009
7010 if (Param->isInvalidDecl())
7011 NewFD->setInvalidDecl();
Argyrios Kyrtzidis9bedef62009-07-14 03:18:53 +00007012 }
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007013 }
Mike Stump1eb44332009-09-09 15:08:12 +00007014
John McCall183700f2009-09-21 23:43:11 +00007015 } else if (const FunctionProtoType *FT = R->getAs<FunctionProtoType>()) {
Chris Lattner1ad9b282009-04-25 06:03:53 +00007016 // When we're declaring a function with a typedef, typeof, etc as in the
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007017 // following example, we'll need to synthesize (unnamed)
7018 // parameters for use in the declaration.
7019 //
7020 // @code
7021 // typedef void fn(int);
7022 // fn f;
7023 // @endcode
Mike Stump1eb44332009-09-09 15:08:12 +00007024
Chris Lattner1ad9b282009-04-25 06:03:53 +00007025 // Synthesize a parameter for each argument type.
Stephen Hines651f13c2014-04-23 16:59:28 -07007026 for (const auto &AI : FT->param_types()) {
John McCall82dc0092010-06-04 11:21:44 +00007027 ParmVarDecl *Param =
Stephen Hines651f13c2014-04-23 16:59:28 -07007028 BuildParmVarDeclForTypedef(NewFD, D.getIdentifierLoc(), AI);
John McCallfb44de92011-05-01 22:35:37 +00007029 Param->setScopeInfo(0, Params.size());
Chris Lattner1ad9b282009-04-25 06:03:53 +00007030 Params.push_back(Param);
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007031 }
Chris Lattner84bb9442009-04-25 18:38:18 +00007032 } else {
7033 assert(R->isFunctionNoProtoType() && NewFD->getNumParams() == 0 &&
7034 "Should not need args for typedef of non-prototype fn");
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007035 }
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00007036
Chris Lattner2dbd2852009-04-25 06:12:16 +00007037 // Finally, we know we have the right number of parameters, install them.
David Blaikie4278c652011-09-21 18:16:56 +00007038 NewFD->setParams(Params);
Mike Stump1eb44332009-09-09 15:08:12 +00007039
James Molloy16f1f712012-02-29 10:24:19 +00007040 // Find all anonymous symbols defined during the declaration of this function
7041 // and add to NewFD. This lets us track decls such 'enum Y' in:
7042 //
7043 // void f(enum Y {AA} x) {}
7044 //
7045 // which would otherwise incorrectly end up in the translation unit scope.
7046 NewFD->setDeclsInPrototypeScope(DeclsInPrototypeScope);
7047 DeclsInPrototypeScope.clear();
7048
Richard Smith7586a6e2013-01-30 05:45:05 +00007049 if (D.getDeclSpec().isNoreturnSpecified())
7050 NewFD->addAttr(
7051 ::new(Context) C11NoReturnAttr(D.getDeclSpec().getNoreturnSpecLoc(),
Stephen Hines651f13c2014-04-23 16:59:28 -07007052 Context, 0));
Richard Smith7586a6e2013-01-30 05:45:05 +00007053
Richard Smithb03a9df2012-03-13 05:56:40 +00007054 // Functions returning a variably modified type violate C99 6.7.5.2p2
7055 // because all functions have linkage.
7056 if (!NewFD->isInvalidDecl() &&
Stephen Hines651f13c2014-04-23 16:59:28 -07007057 NewFD->getReturnType()->isVariablyModifiedType()) {
Richard Smithb03a9df2012-03-13 05:56:40 +00007058 Diag(NewFD->getLocation(), diag::err_vm_func_decl);
7059 NewFD->setInvalidDecl();
7060 }
7061
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007062 if (D.isFunctionDefinition() && CodeSegStack.CurrentValue &&
7063 !NewFD->hasAttr<SectionAttr>()) {
7064 NewFD->addAttr(
7065 SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate,
7066 CodeSegStack.CurrentValue->getString(),
7067 CodeSegStack.CurrentPragmaLocation));
7068 if (UnifySection(CodeSegStack.CurrentValue->getString(),
7069 PSF_Implicit | PSF_Execute | PSF_Read, NewFD))
7070 NewFD->dropAttr<SectionAttr>();
7071 }
7072
Rafael Espindola98ae8342012-05-10 02:50:16 +00007073 // Handle attributes.
Richard Smith4a97b8e2013-08-29 00:47:48 +00007074 ProcessDeclAttributes(S, NewFD, D);
Rafael Espindola98ae8342012-05-10 02:50:16 +00007075
Stephen Hines651f13c2014-04-23 16:59:28 -07007076 QualType RetType = NewFD->getReturnType();
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00007077 const CXXRecordDecl *Ret = RetType->isRecordType() ?
7078 RetType->getAsCXXRecordDecl() : RetType->getPointeeCXXRecordDecl();
7079 if (!NewFD->isInvalidDecl() && !NewFD->hasAttr<WarnUnusedResultAttr>() &&
7080 Ret && Ret->hasAttr<WarnUnusedResultAttr>()) {
Kaelyn Uhrain97c81bf2012-11-13 21:23:31 +00007081 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
Stephen Hines651f13c2014-04-23 16:59:28 -07007082 // Attach WarnUnusedResult to functions returning types with that attribute.
7083 // Don't apply the attribute to that type's own non-static member functions
7084 // (to avoid warning on things like assignment operators)
7085 if (!MD || MD->getParent() != Ret)
7086 NewFD->addAttr(WarnUnusedResultAttr::CreateImplicit(Context));
7087 }
7088
7089 if (getLangOpts().OpenCL) {
7090 // OpenCL v1.1 s6.5: Using an address space qualifier in a function return
7091 // type declaration will generate a compilation error.
7092 unsigned AddressSpace = RetType.getAddressSpace();
7093 if (AddressSpace == LangAS::opencl_local ||
7094 AddressSpace == LangAS::opencl_global ||
7095 AddressSpace == LangAS::opencl_constant) {
7096 Diag(NewFD->getLocation(),
7097 diag::err_opencl_return_value_with_address_space);
7098 NewFD->setInvalidDecl();
Kaelyn Uhrain97c81bf2012-11-13 21:23:31 +00007099 }
Kaelyn Uhrain51ceb7b2012-11-12 23:48:05 +00007100 }
7101
David Blaikie4e4d0842012-03-11 07:00:24 +00007102 if (!getLangOpts().CPlusPlus) {
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007103 // Perform semantic checking on the function declaration.
Douglas Gregor89b9f102011-06-06 15:22:55 +00007104 bool isExplicitSpecialization=false;
David Majnemerc371db62013-07-06 02:13:46 +00007105 if (!NewFD->isInvalidDecl() && NewFD->isMain())
7106 CheckMain(NewFD, D.getDeclSpec());
7107
David Majnemere9f6f332013-09-16 22:44:20 +00007108 if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
7109 CheckMSVCRTEntryPoint(NewFD);
7110
David Majnemerc371db62013-07-06 02:13:46 +00007111 if (!NewFD->isInvalidDecl())
Richard Smithb03a9df2012-03-13 05:56:40 +00007112 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
7113 isExplicitSpecialization));
Fariborz Jahanian37c765a2012-09-05 17:52:12 +00007114 else if (!Previous.empty())
Richard Smithdd9459f2013-08-13 18:18:50 +00007115 // Make graceful recovery from an invalid redeclaration.
7116 D.setRedeclaration(true);
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007117 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007118 Previous.getResultKind() != LookupResult::FoundOverloaded) &&
7119 "previous declaration set still overloaded");
7120 } else {
Richard Smithcf19e5b2013-11-16 01:57:09 +00007121 // C++11 [replacement.functions]p3:
7122 // The program's definitions shall not be specified as inline.
7123 //
7124 // N.B. We diagnose declarations instead of definitions per LWG issue 2340.
7125 //
7126 // Suppress the diagnostic if the function is __attribute__((used)), since
7127 // that forces an external definition to be emitted.
7128 if (D.getDeclSpec().isInlineSpecified() &&
7129 NewFD->isReplaceableGlobalAllocationFunction() &&
7130 !NewFD->hasAttr<UsedAttr>())
7131 Diag(D.getDeclSpec().getInlineSpecLoc(),
7132 diag::ext_operator_new_delete_declared_inline)
7133 << NewFD->getDeclName();
7134
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007135 // If the declarator is a template-id, translate the parser's template
7136 // argument list into our AST format.
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007137 if (D.getName().getKind() == UnqualifiedId::IK_TemplateId) {
7138 TemplateIdAnnotation *TemplateId = D.getName().TemplateId;
7139 TemplateArgs.setLAngleLoc(TemplateId->LAngleLoc);
7140 TemplateArgs.setRAngleLoc(TemplateId->RAngleLoc);
Benjamin Kramer5354e772012-08-23 23:38:35 +00007141 ASTTemplateArgsPtr TemplateArgsPtr(TemplateId->getTemplateArgs(),
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007142 TemplateId->NumArgs);
7143 translateTemplateArguments(TemplateArgsPtr,
7144 TemplateArgs);
Douglas Gregor0b60d9e2009-09-25 23:53:26 +00007145
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007146 HasExplicitTemplateArgs = true;
Douglas Gregor0b60d9e2009-09-25 23:53:26 +00007147
Douglas Gregor89b9f102011-06-06 15:22:55 +00007148 if (NewFD->isInvalidDecl()) {
7149 HasExplicitTemplateArgs = false;
7150 } else if (FunctionTemplate) {
Douglas Gregor5505c722011-01-24 18:54:39 +00007151 // Function template with explicit template arguments.
7152 Diag(D.getIdentifierLoc(), diag::err_function_template_partial_spec)
7153 << SourceRange(TemplateId->LAngleLoc, TemplateId->RAngleLoc);
7154
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007155 HasExplicitTemplateArgs = false;
John McCall29ae6e52010-10-13 05:45:15 +00007156 } else {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007157 assert((isFunctionTemplateSpecialization ||
7158 D.getDeclSpec().isFriendSpecified()) &&
7159 "should have a 'template<>' for this decl");
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007160 // "friend void foo<>(int);" is an implicit specialization decl.
7161 isFunctionTemplateSpecialization = true;
Francois Pichetc71d8eb2010-10-01 21:19:28 +00007162 }
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007163 } else if (isFriend && isFunctionTemplateSpecialization) {
7164 // This combination is only possible in a recovery case; the user
7165 // wrote something like:
7166 // template <> friend void foo(int);
7167 // which we're recovering from as if the user had written:
7168 // friend void foo<>(int);
7169 // Go ahead and fake up a template id.
7170 HasExplicitTemplateArgs = true;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007171 TemplateArgs.setLAngleLoc(D.getIdentifierLoc());
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007172 TemplateArgs.setRAngleLoc(D.getIdentifierLoc());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00007173 }
John McCall29ae6e52010-10-13 05:45:15 +00007174
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007175 // If it's a friend (and only if it's a friend), it's possible
7176 // that either the specialized function type or the specialized
7177 // template is dependent, and therefore matching will fail. In
7178 // this case, don't check the specialization yet.
Douglas Gregor33ab0da2011-10-09 20:59:17 +00007179 bool InstantiationDependent = false;
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007180 if (isFunctionTemplateSpecialization && isFriend &&
Douglas Gregor33ab0da2011-10-09 20:59:17 +00007181 (NewFD->getType()->isDependentType() || DC->isDependentContext() ||
7182 TemplateSpecializationType::anyDependentTemplateArguments(
7183 TemplateArgs.getArgumentArray(), TemplateArgs.size(),
7184 InstantiationDependent))) {
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007185 assert(HasExplicitTemplateArgs &&
7186 "friend function specialization without template args");
7187 if (CheckDependentFunctionTemplateSpecialization(NewFD, TemplateArgs,
7188 Previous))
7189 NewFD->setInvalidDecl();
7190 } else if (isFunctionTemplateSpecialization) {
Douglas Gregoreef7ac52011-03-16 19:27:09 +00007191 if (CurContext->isDependentContext() && CurContext->isRecord()
Francois Pichetab01add2011-06-03 13:59:45 +00007192 && !isFriend) {
Francois Pichetaf0f4d02011-08-14 03:52:19 +00007193 isDependentClassScopeExplicitSpecialization = true;
David Blaikie4e4d0842012-03-11 07:00:24 +00007194 Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
Francois Pichetaf0f4d02011-08-14 03:52:19 +00007195 diag::ext_function_specialization_in_class :
7196 diag::err_function_specialization_in_class)
Douglas Gregoreef7ac52011-03-16 19:27:09 +00007197 << NewFD->getDeclName();
Douglas Gregoreef7ac52011-03-16 19:27:09 +00007198 } else if (CheckFunctionTemplateSpecialization(NewFD,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007199 (HasExplicitTemplateArgs ? &TemplateArgs
7200 : nullptr),
Douglas Gregoreef7ac52011-03-16 19:27:09 +00007201 Previous))
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007202 NewFD->setInvalidDecl();
Douglas Gregore885e182011-05-21 18:53:30 +00007203
7204 // C++ [dcl.stc]p1:
7205 // A storage-class-specifier shall not be specified in an explicit
7206 // specialization (14.7.3)
Richard Trieu62ab0102013-05-16 02:14:08 +00007207 FunctionTemplateSpecializationInfo *Info =
7208 NewFD->getTemplateSpecializationInfo();
7209 if (Info && SC != SC_None) {
7210 if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass())
Douglas Gregor0f9dc862011-06-17 05:09:08 +00007211 Diag(NewFD->getLocation(),
7212 diag::err_explicit_specialization_inconsistent_storage_class)
7213 << SC
7214 << FixItHint::CreateRemoval(
7215 D.getDeclSpec().getStorageClassSpecLoc());
7216
7217 else
7218 Diag(NewFD->getLocation(),
7219 diag::ext_explicit_specialization_storage_class)
7220 << FixItHint::CreateRemoval(
7221 D.getDeclSpec().getStorageClassSpecLoc());
Douglas Gregore885e182011-05-21 18:53:30 +00007222 }
7223
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007224 } else if (isExplicitSpecialization && isa<CXXMethodDecl>(NewFD)) {
7225 if (CheckMemberSpecialization(NewFD, Previous))
7226 NewFD->setInvalidDecl();
7227 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00007228
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007229 // Perform semantic checking on the function declaration.
David Blaikie14068e82011-09-08 06:33:04 +00007230 if (!isDependentClassScopeExplicitSpecialization) {
David Majnemerc371db62013-07-06 02:13:46 +00007231 if (!NewFD->isInvalidDecl() && NewFD->isMain())
7232 CheckMain(NewFD, D.getDeclSpec());
7233
David Majnemere9f6f332013-09-16 22:44:20 +00007234 if (!NewFD->isInvalidDecl() && NewFD->isMSVCRTEntryPoint())
7235 CheckMSVCRTEntryPoint(NewFD);
7236
Stephen Hines651f13c2014-04-23 16:59:28 -07007237 if (!NewFD->isInvalidDecl())
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007238 D.setRedeclaration(CheckFunctionDeclaration(S, NewFD, Previous,
7239 isExplicitSpecialization));
David Blaikie14068e82011-09-08 06:33:04 +00007240 }
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007241
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007242 assert((NewFD->isInvalidDecl() || !D.isRedeclaration() ||
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007243 Previous.getResultKind() != LookupResult::FoundOverloaded) &&
7244 "previous declaration set still overloaded");
7245
7246 NamedDecl *PrincipalDecl = (FunctionTemplate
7247 ? cast<NamedDecl>(FunctionTemplate)
7248 : NewFD);
7249
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007250 if (isFriend && D.isRedeclaration()) {
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007251 AccessSpecifier Access = AS_public;
7252 if (!NewFD->isInvalidDecl())
Douglas Gregoref96ee02012-01-14 16:38:05 +00007253 Access = NewFD->getPreviousDecl()->getAccess();
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007254
7255 NewFD->setAccess(Access);
7256 if (FunctionTemplate) FunctionTemplate->setAccess(Access);
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007257 }
7258
7259 if (NewFD->isOverloadedOperator() && !DC->isRecord() &&
7260 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
7261 PrincipalDecl->setNonMemberOperator();
7262
7263 // If we have a function template, check the template parameter
7264 // list. This will check and merge default template arguments.
7265 if (FunctionTemplate) {
David Blaikied662a792011-10-19 22:56:21 +00007266 FunctionTemplateDecl *PrevTemplate =
Douglas Gregoref96ee02012-01-14 16:38:05 +00007267 FunctionTemplate->getPreviousDecl();
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007268 CheckTemplateParameterList(FunctionTemplate->getTemplateParameters(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007269 PrevTemplate ? PrevTemplate->getTemplateParameters()
7270 : nullptr,
Douglas Gregord89d86f2011-02-04 04:20:44 +00007271 D.getDeclSpec().isFriendSpecified()
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007272 ? (D.isFunctionDefinition()
Douglas Gregord89d86f2011-02-04 04:20:44 +00007273 ? TPC_FriendFunctionTemplateDefinition
7274 : TPC_FriendFunctionTemplate)
7275 : (D.getCXXScopeSpec().isSet() &&
Douglas Gregor461bf2e2011-02-04 12:22:53 +00007276 DC && DC->isRecord() &&
7277 DC->isDependentContext())
Douglas Gregord89d86f2011-02-04 04:20:44 +00007278 ? TPC_ClassTemplateMember
7279 : TPC_FunctionTemplate);
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007280 }
7281
7282 if (NewFD->isInvalidDecl()) {
7283 // Ignore all the rest of this.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007284 } else if (!D.isRedeclaration()) {
Kaelyn Uhrainf09ce392011-10-11 00:28:52 +00007285 struct ActOnFDArgs ExtraArgs = { S, D, TemplateParamLists,
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00007286 AddToScope };
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007287 // Fake up an access specifier if it's supposed to be a class member.
7288 if (isa<CXXRecordDecl>(NewFD->getDeclContext()))
7289 NewFD->setAccess(AS_public);
7290
7291 // Qualified decls generally require a previous declaration.
7292 if (D.getCXXScopeSpec().isSet()) {
7293 // ...with the major exception of templated-scope or
7294 // dependent-scope friend declarations.
7295
7296 // TODO: we currently also suppress this check in dependent
7297 // contexts because (1) the parameter depth will be off when
7298 // matching friend templates and (2) we might actually be
7299 // selecting a friend based on a dependent factor. But there
7300 // are situations where these conditions don't apply and we
7301 // can actually do this check immediately.
7302 if (isFriend &&
Abramo Bagnara7f0a9152011-03-18 15:16:37 +00007303 (TemplateParamLists.size() ||
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007304 D.getCXXScopeSpec().getScopeRep()->isDependent() ||
7305 CurContext->isDependentContext())) {
Chandler Carruth47eb2b62011-08-19 01:38:33 +00007306 // ignore these
7307 } else {
7308 // The user tried to provide an out-of-line definition for a
7309 // function that is a member of a class or namespace, but there
7310 // was no such member function declared (C++ [class.mfct]p2,
7311 // C++ [namespace.memdef]p2). For example:
7312 //
7313 // class X {
7314 // void f() const;
7315 // };
7316 //
7317 // void X::f() { } // ill-formed
7318 //
7319 // Complain about this problem, and attempt to suggest close
7320 // matches (e.g., those that differ only in cv-qualifiers and
7321 // whether the parameter types are references).
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007322
Richard Smith4e9686b2013-08-09 04:35:01 +00007323 if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007324 *this, Previous, NewFD, ExtraArgs, false, nullptr)) {
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00007325 AddToScope = ExtraArgs.AddToScope;
7326 return Result;
7327 }
Chandler Carruth47eb2b62011-08-19 01:38:33 +00007328 }
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007329
7330 // Unqualified local friend declarations are required to resolve
7331 // to something.
Chandler Carruth3d095fe2011-08-19 01:40:11 +00007332 } else if (isFriend && cast<CXXRecordDecl>(CurContext)->isLocalClass()) {
Richard Smith4e9686b2013-08-09 04:35:01 +00007333 if (NamedDecl *Result = DiagnoseInvalidRedeclaration(
7334 *this, Previous, NewFD, ExtraArgs, true, S)) {
Kaelyn Uhrain2afd7662011-10-11 00:28:39 +00007335 AddToScope = ExtraArgs.AddToScope;
7336 return Result;
7337 }
Chandler Carruth3d095fe2011-08-19 01:40:11 +00007338 }
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007339
Stephen Hines651f13c2014-04-23 16:59:28 -07007340 } else if (!D.isFunctionDefinition() &&
7341 isa<CXXMethodDecl>(NewFD) && NewFD->isOutOfLine() &&
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007342 !isFriend && !isFunctionTemplateSpecialization &&
Sean Hunte4246a62011-05-12 06:15:49 +00007343 !isExplicitSpecialization) {
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007344 // An out-of-line member function declaration must also be a
Stephen Hines651f13c2014-04-23 16:59:28 -07007345 // definition (C++ [class.mfct]p2).
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007346 // Note that this is not the case for explicit specializations of
7347 // function templates or member functions of class templates, per
David Blaikied662a792011-10-19 22:56:21 +00007348 // C++ [temp.expl.spec]p2. We also allow these declarations as an
7349 // extension for compatibility with old SWIG code which likes to
7350 // generate them.
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007351 Diag(NewFD->getLocation(), diag::ext_out_of_line_declaration)
7352 << D.getCXXScopeSpec().getRange();
7353 }
7354 }
Ryan Flynn478fbc62009-07-25 22:29:44 +00007355
Rafael Espindola65611bf2013-03-02 21:41:48 +00007356 ProcessPragmaWeak(S, NewFD);
Rafael Espindola2a5bb502013-01-16 23:11:15 +00007357 checkAttributesAfterMerging(*this, *NewFD);
7358
Douglas Gregor2dc0e642009-03-23 23:06:20 +00007359 AddKnownFunctionAttributes(NewFD);
7360
Douglas Gregord9455382010-08-06 13:50:58 +00007361 if (NewFD->hasAttr<OverloadableAttr>() &&
7362 !NewFD->getType()->getAs<FunctionProtoType>()) {
7363 Diag(NewFD->getLocation(),
7364 diag::err_attribute_overloadable_no_prototype)
7365 << NewFD;
7366
7367 // Turn this into a variadic function with no parameters.
7368 const FunctionType *FT = NewFD->getType()->getAs<FunctionType>();
Reid Kleckneref072032013-08-27 23:08:25 +00007369 FunctionProtoType::ExtProtoInfo EPI(
7370 Context.getDefaultCallingConvention(true, false));
John McCalle23cf432010-12-14 08:05:40 +00007371 EPI.Variadic = true;
7372 EPI.ExtInfo = FT->getExtInfo();
7373
Stephen Hines651f13c2014-04-23 16:59:28 -07007374 QualType R = Context.getFunctionType(FT->getReturnType(), None, EPI);
Douglas Gregord9455382010-08-06 13:50:58 +00007375 NewFD->setType(R);
7376 }
7377
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00007378 // If there's a #pragma GCC visibility in scope, and this isn't a class
7379 // member, set the visibility of this function.
Rafael Espindola181e3ec2013-05-13 00:12:11 +00007380 if (!DC->isRecord() && NewFD->isExternallyVisible())
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00007381 AddPushedVisibilityAttribute(NewFD);
7382
John McCall8dfac0b2011-09-30 05:12:12 +00007383 // If there's a #pragma clang arc_cf_code_audited in scope, consider
7384 // marking the function.
7385 AddCFAuditedAttribute(NewFD);
7386
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007387 // If this is a function definition, check if we have to apply optnone due to
7388 // a pragma.
7389 if(D.isFunctionDefinition())
7390 AddRangeBasedOptnone(NewFD);
7391
Richard Smithaa4bc182013-06-30 09:48:50 +00007392 // If this is the first declaration of an extern C variable, update
7393 // the map of such variables.
Rafael Espindola7693b322013-10-19 02:13:21 +00007394 if (NewFD->isFirstDecl() && !NewFD->isInvalidDecl() &&
Richard Smithaa4bc182013-06-30 09:48:50 +00007395 isIncompleteDeclExternC(*this, NewFD))
Richard Smith662f41b2013-06-18 20:15:12 +00007396 RegisterLocallyScopedExternCDecl(NewFD, S);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00007397
Argyrios Kyrtzidis16f19302009-06-25 18:22:24 +00007398 // Set this FunctionDecl's range up to the right paren.
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00007399 NewFD->setRangeEnd(D.getSourceRange().getEnd());
Argyrios Kyrtzidis16f19302009-06-25 18:22:24 +00007400
Stephen Hines651f13c2014-04-23 16:59:28 -07007401 if (D.isRedeclaration() && !Previous.empty()) {
7402 checkDLLAttributeRedeclaration(
7403 *this, dyn_cast<NamedDecl>(Previous.getRepresentativeDecl()), NewFD,
7404 isExplicitSpecialization || isFunctionTemplateSpecialization);
7405 }
7406
David Blaikie4e4d0842012-03-11 07:00:24 +00007407 if (getLangOpts().CPlusPlus) {
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007408 if (FunctionTemplate) {
7409 if (NewFD->isInvalidDecl())
7410 FunctionTemplate->setInvalidDecl();
7411 return FunctionTemplate;
7412 }
Fariborz Jahanianbfe57882010-12-09 23:11:32 +00007413 }
Mike Stump1eb44332009-09-09 15:08:12 +00007414
Guy Benyeie6b9d802013-01-20 12:31:11 +00007415 if (NewFD->hasAttr<OpenCLKernelAttr>()) {
Guy Benyeie6b9d802013-01-20 12:31:11 +00007416 // OpenCL v1.2 s6.8 static is invalid for kernel functions.
7417 if ((getLangOpts().OpenCLVersion >= 120)
7418 && (SC == SC_Static)) {
7419 Diag(D.getIdentifierLoc(), diag::err_static_kernel);
7420 D.setInvalidType();
7421 }
Tanya Lattner7564bcc2013-01-30 19:48:52 +00007422
7423 // OpenCL v1.2, s6.9 -- Kernels can only have return type void.
Stephen Hines651f13c2014-04-23 16:59:28 -07007424 if (!NewFD->getReturnType()->isVoidType()) {
Tanya Lattner7564bcc2013-01-30 19:48:52 +00007425 Diag(D.getIdentifierLoc(),
7426 diag::err_expected_kernel_void_return_type);
7427 D.setInvalidType();
7428 }
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00007429
7430 llvm::SmallPtrSet<const Type *, 16> ValidTypes;
Stephen Hines651f13c2014-04-23 16:59:28 -07007431 for (auto Param : NewFD->params())
Matt Arsenaulte6c8afc2013-07-23 01:23:36 +00007432 checkIsValidOpenCLKernelParameter(*this, D, Param, ValidTypes);
Tanya Lattner5e94d6f2012-06-19 23:09:52 +00007433 }
7434
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00007435 MarkUnusedFileScopedDecl(NewFD);
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00007436
David Blaikie4e4d0842012-03-11 07:00:24 +00007437 if (getLangOpts().CUDA)
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00007438 if (IdentifierInfo *II = NewFD->getIdentifier())
7439 if (!NewFD->isInvalidDecl() &&
7440 NewFD->getDeclContext()->getRedeclContext()->isTranslationUnit()) {
7441 if (II->isStr("cudaConfigureCall")) {
Stephen Hines651f13c2014-04-23 16:59:28 -07007442 if (!R->getAs<FunctionType>()->getReturnType()->isScalarType())
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00007443 Diag(NewFD->getLocation(), diag::err_config_scalar_return);
7444
7445 Context.setcudaConfigureCallDecl(NewFD);
7446 }
7447 }
Francois Pichetaf0f4d02011-08-14 03:52:19 +00007448
7449 // Here we have an function template explicit specialization at class scope.
7450 // The actually specialization will be postponed to template instatiation
7451 // time via the ClassScopeFunctionSpecializationDecl node.
7452 if (isDependentClassScopeExplicitSpecialization) {
7453 ClassScopeFunctionSpecializationDecl *NewSpec =
7454 ClassScopeFunctionSpecializationDecl::Create(
Nico Weber6b020092012-06-25 17:21:05 +00007455 Context, CurContext, SourceLocation(),
7456 cast<CXXMethodDecl>(NewFD),
7457 HasExplicitTemplateArgs, TemplateArgs);
Francois Pichetaf0f4d02011-08-14 03:52:19 +00007458 CurContext->addDecl(NewSpec);
7459 AddToScope = false;
7460 }
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00007461
Douglas Gregor2dc0e642009-03-23 23:06:20 +00007462 return NewFD;
7463}
7464
7465/// \brief Perform semantic checking of a new function declaration.
7466///
7467/// Performs semantic analysis of the new function declaration
7468/// NewFD. This routine performs all semantic checking that does not
7469/// require the actual declarator involved in the declaration, and is
7470/// used both for the declaration of functions as they are parsed
7471/// (called via ActOnDeclarator) and for the declaration of functions
7472/// that have been instantiated via C++ template instantiation (called
7473/// via InstantiateDecl).
7474///
James Dennettefce31f2012-06-22 08:10:18 +00007475/// \param IsExplicitSpecialization whether this new function declaration is
Douglas Gregorfd056bc2009-10-13 16:30:37 +00007476/// an explicit specialization of the previous declaration.
7477///
Chris Lattnereaaebc72009-04-25 08:06:05 +00007478/// This sets NewFD->isInvalidDecl() to true if there was an error.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007479///
James Dennettefce31f2012-06-22 08:10:18 +00007480/// \returns true if the function declaration is a redeclaration.
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007481bool Sema::CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD,
John McCall68263142009-11-18 22:49:29 +00007482 LookupResult &Previous,
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007483 bool IsExplicitSpecialization) {
Stephen Hines651f13c2014-04-23 16:59:28 -07007484 assert(!NewFD->getReturnType()->isVariablyModifiedType() &&
7485 "Variably modified return types are not handled here");
John McCall8c4859a2009-07-24 03:03:21 +00007486
Richard Smithdd9459f2013-08-13 18:18:50 +00007487 // Determine whether the type of this function should be merged with
7488 // a previous visible declaration. This never happens for functions in C++,
7489 // and always happens in C if the previous declaration was visible.
7490 bool MergeTypeWithPrevious = !getLangOpts().CPlusPlus &&
7491 !Previous.isShadowed();
7492
Douglas Gregor7dc80e12013-01-09 00:47:56 +00007493 // Filter out any non-conflicting previous declarations.
7494 filterNonConflictingPreviousDecls(Context, NewFD, Previous);
7495
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007496 bool Redeclaration = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007497 NamedDecl *OldDecl = nullptr;
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007498
Douglas Gregor04495c82009-02-24 01:23:02 +00007499 // Merge or overload the declaration with an existing declaration of
7500 // the same name, if appropriate.
John McCall68263142009-11-18 22:49:29 +00007501 if (!Previous.empty()) {
Douglas Gregorf9201e02009-02-11 23:02:49 +00007502 // Determine whether NewFD is an overload of PrevDecl or
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007503 // a declaration that requires merging. If it's an overload,
7504 // there's no more work to do here; we'll just add the new
7505 // function to the scope.
John McCall871b2e72009-12-09 03:35:25 +00007506 if (!AllowOverloadingOfFunction(Previous, Context)) {
Rafael Espindola90cc3902013-04-15 12:49:13 +00007507 NamedDecl *Candidate = Previous.getFoundDecl();
7508 if (shouldLinkPossiblyHiddenDecl(Candidate, NewFD)) {
7509 Redeclaration = true;
7510 OldDecl = Candidate;
7511 }
John McCall871b2e72009-12-09 03:35:25 +00007512 } else {
John McCallad00b772010-06-16 08:42:20 +00007513 switch (CheckOverload(S, NewFD, Previous, OldDecl,
7514 /*NewIsUsingDecl*/ false)) {
John McCall871b2e72009-12-09 03:35:25 +00007515 case Ovl_Match:
John McCall9f54ad42009-12-10 09:41:52 +00007516 Redeclaration = true;
John McCall871b2e72009-12-09 03:35:25 +00007517 break;
7518
7519 case Ovl_NonFunction:
7520 Redeclaration = true;
7521 break;
7522
7523 case Ovl_Overload:
7524 Redeclaration = false;
7525 break;
John McCall68263142009-11-18 22:49:29 +00007526 }
Peter Collingbournec80e8112011-01-21 02:08:54 +00007527
David Blaikie4e4d0842012-03-11 07:00:24 +00007528 if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) {
Peter Collingbournec80e8112011-01-21 02:08:54 +00007529 // If a function name is overloadable in C, then every function
7530 // with that name must be marked "overloadable".
7531 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
7532 << Redeclaration << NewFD;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007533 NamedDecl *OverloadedDecl = nullptr;
Peter Collingbournec80e8112011-01-21 02:08:54 +00007534 if (Redeclaration)
7535 OverloadedDecl = OldDecl;
7536 else if (!Previous.empty())
7537 OverloadedDecl = Previous.getRepresentativeDecl();
7538 if (OverloadedDecl)
7539 Diag(OverloadedDecl->getLocation(),
7540 diag::note_attribute_overloadable_prev_overload);
Stephen Hines651f13c2014-04-23 16:59:28 -07007541 NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
Peter Collingbournec80e8112011-01-21 02:08:54 +00007542 }
John McCall68263142009-11-18 22:49:29 +00007543 }
Richard Smith21c8fa82013-01-14 05:37:29 +00007544 }
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007545
Richard Smithaa4bc182013-06-30 09:48:50 +00007546 // Check for a previous extern "C" declaration with this name.
7547 if (!Redeclaration &&
7548 checkForConflictWithNonVisibleExternC(*this, NewFD, Previous)) {
7549 filterNonConflictingPreviousDecls(Context, NewFD, Previous);
7550 if (!Previous.empty()) {
7551 // This is an extern "C" declaration with the same name as a previous
7552 // declaration, and thus redeclares that entity...
7553 Redeclaration = true;
7554 OldDecl = Previous.getFoundDecl();
Richard Smithdd9459f2013-08-13 18:18:50 +00007555 MergeTypeWithPrevious = false;
Richard Smithaa4bc182013-06-30 09:48:50 +00007556
7557 // ... except in the presence of __attribute__((overloadable)).
7558 if (OldDecl->hasAttr<OverloadableAttr>()) {
7559 if (!getLangOpts().CPlusPlus && !NewFD->hasAttr<OverloadableAttr>()) {
7560 Diag(NewFD->getLocation(), diag::err_attribute_overloadable_missing)
7561 << Redeclaration << NewFD;
7562 Diag(Previous.getFoundDecl()->getLocation(),
7563 diag::note_attribute_overloadable_prev_overload);
Stephen Hines651f13c2014-04-23 16:59:28 -07007564 NewFD->addAttr(OverloadableAttr::CreateImplicit(Context));
Richard Smithaa4bc182013-06-30 09:48:50 +00007565 }
7566 if (IsOverload(NewFD, cast<FunctionDecl>(OldDecl), false)) {
7567 Redeclaration = false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007568 OldDecl = nullptr;
Richard Smithaa4bc182013-06-30 09:48:50 +00007569 }
7570 }
7571 }
7572 }
7573
Richard Smith21c8fa82013-01-14 05:37:29 +00007574 // C++11 [dcl.constexpr]p8:
7575 // A constexpr specifier for a non-static member function that is not
7576 // a constructor declares that member function to be const.
7577 //
7578 // This needs to be delayed until we know whether this is an out-of-line
7579 // definition of a static member function.
Richard Smith84046262013-04-21 01:08:50 +00007580 //
7581 // This rule is not present in C++1y, so we produce a backwards
7582 // compatibility warning whenever it happens in C++11.
Richard Smith21c8fa82013-01-14 05:37:29 +00007583 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(NewFD);
Richard Smith84046262013-04-21 01:08:50 +00007584 if (!getLangOpts().CPlusPlus1y && MD && MD->isConstexpr() &&
7585 !MD->isStatic() && !isa<CXXConstructorDecl>(MD) &&
Richard Smith21c8fa82013-01-14 05:37:29 +00007586 (MD->getTypeQualifiers() & Qualifiers::Const) == 0) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007587 CXXMethodDecl *OldMD = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07007588 if (OldDecl)
7589 OldMD = dyn_cast<CXXMethodDecl>(OldDecl->getAsFunction());
Richard Smith21c8fa82013-01-14 05:37:29 +00007590 if (!OldMD || !OldMD->isStatic()) {
7591 const FunctionProtoType *FPT =
7592 MD->getType()->castAs<FunctionProtoType>();
7593 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
7594 EPI.TypeQuals |= Qualifiers::Const;
Stephen Hines651f13c2014-04-23 16:59:28 -07007595 MD->setType(Context.getFunctionType(FPT->getReturnType(),
7596 FPT->getParamTypes(), EPI));
Richard Smith84046262013-04-21 01:08:50 +00007597
7598 // Warn that we did this, if we're not performing template instantiation.
7599 // In that case, we'll have warned already when the template was defined.
7600 if (ActiveTemplateInstantiations.empty()) {
7601 SourceLocation AddConstLoc;
7602 if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
7603 .IgnoreParens().getAs<FunctionTypeLoc>())
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007604 AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
Richard Smith84046262013-04-21 01:08:50 +00007605
7606 Diag(MD->getLocation(), diag::warn_cxx1y_compat_constexpr_not_const)
7607 << FixItHint::CreateInsertion(AddConstLoc, " const");
7608 }
Richard Smith21c8fa82013-01-14 05:37:29 +00007609 }
7610 }
7611
7612 if (Redeclaration) {
7613 // NewFD and OldDecl represent declarations that need to be
7614 // merged.
Richard Smithdd9459f2013-08-13 18:18:50 +00007615 if (MergeFunctionDecl(NewFD, OldDecl, S, MergeTypeWithPrevious)) {
Richard Smith21c8fa82013-01-14 05:37:29 +00007616 NewFD->setInvalidDecl();
7617 return Redeclaration;
7618 }
7619
7620 Previous.clear();
7621 Previous.addDecl(OldDecl);
7622
7623 if (FunctionTemplateDecl *OldTemplateDecl
7624 = dyn_cast<FunctionTemplateDecl>(OldDecl)) {
7625 NewFD->setPreviousDeclaration(OldTemplateDecl->getTemplatedDecl());
7626 FunctionTemplateDecl *NewTemplateDecl
7627 = NewFD->getDescribedFunctionTemplate();
7628 assert(NewTemplateDecl && "Template/non-template mismatch");
7629 if (CXXMethodDecl *Method
7630 = dyn_cast<CXXMethodDecl>(NewTemplateDecl->getTemplatedDecl())) {
7631 Method->setAccess(OldTemplateDecl->getAccess());
7632 NewTemplateDecl->setAccess(OldTemplateDecl->getAccess());
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007633 }
Richard Smith21c8fa82013-01-14 05:37:29 +00007634
7635 // If this is an explicit specialization of a member that is a function
7636 // template, mark it as a member specialization.
7637 if (IsExplicitSpecialization &&
7638 NewTemplateDecl->getInstantiatedFromMemberTemplate()) {
7639 NewTemplateDecl->setMemberSpecialization();
7640 assert(OldTemplateDecl->isMemberSpecialization());
Argyrios Kyrtzidis9bedef62009-07-14 03:18:53 +00007641 }
Richard Smith21c8fa82013-01-14 05:37:29 +00007642
7643 } else {
John McCalld5617ee2013-01-25 22:31:03 +00007644 // This needs to happen first so that 'inline' propagates.
Richard Smith21c8fa82013-01-14 05:37:29 +00007645 NewFD->setPreviousDeclaration(cast<FunctionDecl>(OldDecl));
John McCalld5617ee2013-01-25 22:31:03 +00007646
7647 if (isa<CXXMethodDecl>(NewFD)) {
7648 // A valid redeclaration of a C++ method must be out-of-line,
7649 // but (unfortunately) it's not necessarily a definition
7650 // because of templates, which means that the previous
7651 // declaration is not necessarily from the class definition.
7652
7653 // For just setting the access, that doesn't matter.
7654 CXXMethodDecl *oldMethod = cast<CXXMethodDecl>(OldDecl);
7655 NewFD->setAccess(oldMethod->getAccess());
7656
7657 // Update the key-function state if necessary for this ABI.
7658 if (NewFD->isInlined() &&
7659 !Context.getTargetInfo().getCXXABI().canKeyFunctionBeInline()) {
7660 // setNonKeyFunction needs to work with the original
7661 // declaration from the class definition, and isVirtual() is
7662 // just faster in that case, so map back to that now.
Rafael Espindolabc650912013-10-17 15:37:26 +00007663 oldMethod = cast<CXXMethodDecl>(oldMethod->getFirstDecl());
John McCalld5617ee2013-01-25 22:31:03 +00007664 if (oldMethod->isVirtual()) {
7665 Context.setNonKeyFunction(oldMethod);
7666 }
7667 }
7668 }
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007669 }
Douglas Gregor4ce205f2009-02-06 17:46:57 +00007670 }
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007671
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007672 // Semantic checking for this function declaration (in isolation).
David Blaikie4e4d0842012-03-11 07:00:24 +00007673 if (getLangOpts().CPlusPlus) {
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007674 // C++-specific checks.
7675 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(NewFD)) {
7676 CheckConstructor(Constructor);
Anders Carlsson6d701392009-11-15 22:49:34 +00007677 } else if (CXXDestructorDecl *Destructor =
7678 dyn_cast<CXXDestructorDecl>(NewFD)) {
7679 CXXRecordDecl *Record = Destructor->getParent();
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007680 QualType ClassType = Context.getTypeDeclType(Record);
Anders Carlsson6d701392009-11-15 22:49:34 +00007681
Douglas Gregor4923aa22010-07-02 20:37:36 +00007682 // FIXME: Shouldn't we be able to perform this check even when the class
Anders Carlsson6d701392009-11-15 22:49:34 +00007683 // type is dependent? Both gcc and edg can handle that.
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007684 if (!ClassType->isDependentType()) {
7685 DeclarationName Name
7686 = Context.DeclarationNames.getCXXDestructorName(
7687 Context.getCanonicalType(ClassType));
7688 if (NewFD->getDeclName() != Name) {
7689 Diag(NewFD->getLocation(), diag::err_destructor_name);
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007690 NewFD->setInvalidDecl();
7691 return Redeclaration;
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007692 }
7693 }
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007694 } else if (CXXConversionDecl *Conversion
Douglas Gregor4ba31362009-12-01 17:24:26 +00007695 = dyn_cast<CXXConversionDecl>(NewFD)) {
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007696 ActOnConversionDeclarator(Conversion);
Douglas Gregor4ba31362009-12-01 17:24:26 +00007697 }
7698
7699 // Find any virtual functions that this function overrides.
Douglas Gregore6342c02009-12-01 17:35:23 +00007700 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(NewFD)) {
7701 if (!Method->isFunctionTemplateSpecialization() &&
Argyrios Kyrtzidis38eb1e12012-10-09 01:23:45 +00007702 !Method->getDescribedFunctionTemplate() &&
7703 Method->isCanonicalDecl()) {
Douglas Gregora6c1e3a2010-10-13 22:55:32 +00007704 if (AddOverriddenMethods(Method->getParent(), Method)) {
7705 // If the function was marked as "static", we have a problem.
7706 if (NewFD->getStorageClass() == SC_Static) {
David Blaikie5708c182012-10-17 00:47:58 +00007707 ReportOverrides(*this, diag::err_static_overrides_virtual, Method);
Douglas Gregora6c1e3a2010-10-13 22:55:32 +00007708 }
Argyrios Kyrtzidis799ef662011-02-03 18:01:15 +00007709 }
Douglas Gregora6c1e3a2010-10-13 22:55:32 +00007710 }
Douglas Gregorcefc3af2012-04-16 07:05:22 +00007711
7712 if (Method->isStatic())
7713 checkThisInStaticMemberFunctionType(Method);
Douglas Gregore6342c02009-12-01 17:35:23 +00007714 }
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007715
7716 // Extra checking for C++ overloaded operators (C++ [over.oper]).
7717 if (NewFD->isOverloadedOperator() &&
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007718 CheckOverloadedOperatorDeclaration(NewFD)) {
7719 NewFD->setInvalidDecl();
7720 return Redeclaration;
7721 }
Sean Hunta6c058d2010-01-13 09:01:02 +00007722
7723 // Extra checking for C++0x literal operators (C++0x [over.literal]).
7724 if (NewFD->getLiteralIdentifier() &&
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007725 CheckLiteralOperatorDeclaration(NewFD)) {
7726 NewFD->setInvalidDecl();
7727 return Redeclaration;
7728 }
Sean Hunta6c058d2010-01-13 09:01:02 +00007729
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007730 // In C++, check default arguments now that we have merged decls. Unless
7731 // the lexical context is the class, because in this case this is done
7732 // during delayed parsing anyway.
7733 if (!CurContext->isRecord())
7734 CheckCXXDefaultArguments(NewFD);
Warren Hunt2d023ec2013-11-01 23:46:51 +00007735
Douglas Gregorb68e3992010-12-21 19:47:46 +00007736 // If this function declares a builtin function, check the type of this
7737 // declaration against the expected type for the builtin.
7738 if (unsigned BuiltinID = NewFD->getBuiltinID()) {
7739 ASTContext::GetBuiltinTypeError Error;
Fariborz Jahanian9ef15182013-01-05 21:54:55 +00007740 LookupPredefedObjCSuperType(*this, S, NewFD->getIdentifier());
Douglas Gregorb68e3992010-12-21 19:47:46 +00007741 QualType T = Context.GetBuiltinType(BuiltinID, Error);
7742 if (!T.isNull() && !Context.hasSameType(T, NewFD->getType())) {
7743 // The type of this function differs from the type of the builtin,
7744 // so forget about the builtin entirely.
7745 Context.BuiltinInfo.ForgetBuiltin(BuiltinID, Context.Idents);
7746 }
7747 }
Warren Hunt2d023ec2013-11-01 23:46:51 +00007748
Aaron Ballman2c0bf242012-02-09 01:21:34 +00007749 // If this function is declared as being extern "C", then check to see if
7750 // the function returns a UDT (class, struct, or union type) that is not C
7751 // compatible, and if it does, warn the user.
Fariborz Jahanian96db3292013-03-14 23:09:00 +00007752 // But, issue any diagnostic on the first declaration only.
7753 if (NewFD->isExternC() && Previous.empty()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07007754 QualType R = NewFD->getReturnType();
Hans Wennborg168c07b2012-07-24 17:59:41 +00007755 if (R->isIncompleteType() && !R->isVoidType())
7756 Diag(NewFD->getLocation(), diag::warn_return_value_udt_incomplete)
7757 << NewFD << R;
Douglas Gregorb38b4912012-08-07 06:14:34 +00007758 else if (!R.isPODType(Context) && !R->isVoidType() &&
7759 !R->isObjCObjectPointerType())
Hans Wennborg168c07b2012-07-24 17:59:41 +00007760 Diag(NewFD->getLocation(), diag::warn_return_value_udt) << NewFD << R;
Aaron Ballman2c0bf242012-02-09 01:21:34 +00007761 }
Anders Carlsson2c59d3c2009-09-13 21:33:06 +00007762 }
Kaelyn Uhrain2c712f52011-10-11 00:28:45 +00007763 return Redeclaration;
Zhongxing Xu416fcaf2009-01-16 01:13:29 +00007764}
7765
Dmitri Gribenkoa6f97072013-01-17 00:26:13 +00007766static SourceRange getResultSourceRange(const FunctionDecl *FD) {
7767 const TypeSourceInfo *TSI = FD->getTypeSourceInfo();
7768 if (!TSI)
7769 return SourceRange();
7770
7771 TypeLoc TL = TSI->getTypeLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +00007772 FunctionTypeLoc FunctionTL = TL.getAs<FunctionTypeLoc>();
Dmitri Gribenkoa6f97072013-01-17 00:26:13 +00007773 if (!FunctionTL)
7774 return SourceRange();
7775
Stephen Hines651f13c2014-04-23 16:59:28 -07007776 TypeLoc ResultTL = FunctionTL.getReturnLoc();
David Blaikie39e6ab42013-02-18 22:06:02 +00007777 if (ResultTL.getUnqualifiedLoc().getAs<BuiltinTypeLoc>())
Dmitri Gribenkoa6f97072013-01-17 00:26:13 +00007778 return ResultTL.getSourceRange();
7779
7780 return SourceRange();
7781}
7782
David Blaikie14068e82011-09-08 06:33:04 +00007783void Sema::CheckMain(FunctionDecl* FD, const DeclSpec& DS) {
Stephen Hines651f13c2014-04-23 16:59:28 -07007784 // C++11 [basic.start.main]p3:
7785 // A program that [...] declares main to be inline, static or
7786 // constexpr is ill-formed.
Richard Smithde03c152013-01-17 22:16:11 +00007787 // C11 6.7.4p4: In a hosted environment, no function specifier(s) shall
7788 // appear in a declaration of main.
John McCall13591ed2009-07-25 04:36:53 +00007789 // static main is not an error under C99, but we should warn about it.
Richard Smithde03c152013-01-17 22:16:11 +00007790 // We accept _Noreturn main as an extension.
David Blaikie14068e82011-09-08 06:33:04 +00007791 if (FD->getStorageClass() == SC_Static)
David Blaikie4e4d0842012-03-11 07:00:24 +00007792 Diag(DS.getStorageClassSpecLoc(), getLangOpts().CPlusPlus
David Blaikie14068e82011-09-08 06:33:04 +00007793 ? diag::err_static_main : diag::warn_static_main)
7794 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc());
7795 if (FD->isInlineSpecified())
7796 Diag(DS.getInlineSpecLoc(), diag::err_inline_main)
7797 << FixItHint::CreateRemoval(DS.getInlineSpecLoc());
Dmitri Gribenko445743d2013-01-21 11:25:03 +00007798 if (DS.isNoreturnSpecified()) {
7799 SourceLocation NoreturnLoc = DS.getNoreturnSpecLoc();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007800 SourceRange NoreturnRange(NoreturnLoc, getLocForEndOfToken(NoreturnLoc));
Dmitri Gribenko445743d2013-01-21 11:25:03 +00007801 Diag(NoreturnLoc, diag::ext_noreturn_main);
7802 Diag(NoreturnLoc, diag::note_main_remove_noreturn)
7803 << FixItHint::CreateRemoval(NoreturnRange);
7804 }
Richard Smitha5065862012-02-04 06:10:17 +00007805 if (FD->isConstexpr()) {
7806 Diag(DS.getConstexprSpecLoc(), diag::err_constexpr_main)
7807 << FixItHint::CreateRemoval(DS.getConstexprSpecLoc());
7808 FD->setConstexpr(false);
7809 }
John McCall13591ed2009-07-25 04:36:53 +00007810
Joey Goulyc879fe52013-11-05 12:30:39 +00007811 if (getLangOpts().OpenCL) {
7812 Diag(FD->getLocation(), diag::err_opencl_no_main)
7813 << FD->hasAttr<OpenCLKernelAttr>();
7814 FD->setInvalidDecl();
7815 return;
7816 }
7817
John McCall13591ed2009-07-25 04:36:53 +00007818 QualType T = FD->getType();
7819 assert(T->isFunctionType() && "function decl is not of function type");
John McCall75d8ba32012-02-14 19:50:52 +00007820 const FunctionType* FT = T->castAs<FunctionType>();
Mike Stump1eb44332009-09-09 15:08:12 +00007821
John McCall75d8ba32012-02-14 19:50:52 +00007822 // All the standards say that main() should should return 'int'.
Stephen Hines651f13c2014-04-23 16:59:28 -07007823 if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy)) {
John McCall75d8ba32012-02-14 19:50:52 +00007824 // In C and C++, main magically returns 0 if you fall off the end;
7825 // set the flag which tells us that.
7826 // This is C++ [basic.start.main]p5 and C99 5.1.2.2.3.
7827 FD->setHasImplicitReturnZero(true);
7828
7829 // In C with GNU extensions we allow main() to have non-integer return
7830 // type, but we should warn about the extension, and we disable the
7831 // implicit-return-zero rule.
David Blaikie4e4d0842012-03-11 07:00:24 +00007832 } else if (getLangOpts().GNUMode && !getLangOpts().CPlusPlus) {
John McCall75d8ba32012-02-14 19:50:52 +00007833 Diag(FD->getTypeSpecStartLoc(), diag::ext_main_returns_nonint);
7834
Dmitri Gribenkoa6f97072013-01-17 00:26:13 +00007835 SourceRange ResultRange = getResultSourceRange(FD);
7836 if (ResultRange.isValid())
7837 Diag(ResultRange.getBegin(), diag::note_main_change_return_type)
7838 << FixItHint::CreateReplacement(ResultRange, "int");
7839
John McCall75d8ba32012-02-14 19:50:52 +00007840 // Otherwise, this is just a flat-out error.
7841 } else {
Dmitri Gribenkoa6f97072013-01-17 00:26:13 +00007842 SourceRange ResultRange = getResultSourceRange(FD);
7843 if (ResultRange.isValid())
7844 Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint)
7845 << FixItHint::CreateReplacement(ResultRange, "int");
7846 else
7847 Diag(FD->getTypeSpecStartLoc(), diag::err_main_returns_nonint);
7848
John McCall13591ed2009-07-25 04:36:53 +00007849 FD->setInvalidDecl(true);
7850 }
7851
7852 // Treat protoless main() as nullary.
7853 if (isa<FunctionNoProtoType>(FT)) return;
7854
7855 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT);
Stephen Hines651f13c2014-04-23 16:59:28 -07007856 unsigned nparams = FTP->getNumParams();
John McCall13591ed2009-07-25 04:36:53 +00007857 assert(FD->getNumParams() == nparams);
7858
John McCall66755862009-12-24 09:58:38 +00007859 bool HasExtraParameters = (nparams > 3);
7860
7861 // Darwin passes an undocumented fourth argument of type char**. If
7862 // other platforms start sprouting these, the logic below will start
7863 // getting shifty.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00007864 if (nparams == 4 && Context.getTargetInfo().getTriple().isOSDarwin())
John McCall66755862009-12-24 09:58:38 +00007865 HasExtraParameters = false;
7866
7867 if (HasExtraParameters) {
John McCall13591ed2009-07-25 04:36:53 +00007868 Diag(FD->getLocation(), diag::err_main_surplus_args) << nparams;
7869 FD->setInvalidDecl(true);
7870 nparams = 3;
7871 }
7872
7873 // FIXME: a lot of the following diagnostics would be improved
7874 // if we had some location information about types.
7875
7876 QualType CharPP =
7877 Context.getPointerType(Context.getPointerType(Context.CharTy));
John McCall66755862009-12-24 09:58:38 +00007878 QualType Expected[] = { Context.IntTy, CharPP, CharPP, CharPP };
John McCall13591ed2009-07-25 04:36:53 +00007879
7880 for (unsigned i = 0; i < nparams; ++i) {
Stephen Hines651f13c2014-04-23 16:59:28 -07007881 QualType AT = FTP->getParamType(i);
John McCall13591ed2009-07-25 04:36:53 +00007882
7883 bool mismatch = true;
7884
7885 if (Context.hasSameUnqualifiedType(AT, Expected[i]))
7886 mismatch = false;
7887 else if (Expected[i] == CharPP) {
7888 // As an extension, the following forms are okay:
7889 // char const **
7890 // char const * const *
7891 // char * const *
7892
John McCall0953e762009-09-24 19:53:00 +00007893 QualifierCollector qs;
John McCall13591ed2009-07-25 04:36:53 +00007894 const PointerType* PT;
Ted Kremenek6217b802009-07-29 21:53:49 +00007895 if ((PT = qs.strip(AT)->getAs<PointerType>()) &&
7896 (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) &&
Richard Smith485b3122013-01-29 02:49:47 +00007897 Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0),
7898 Context.CharTy)) {
John McCall13591ed2009-07-25 04:36:53 +00007899 qs.removeConst();
7900 mismatch = !qs.empty();
7901 }
7902 }
7903
7904 if (mismatch) {
7905 Diag(FD->getLocation(), diag::err_main_arg_wrong) << i << Expected[i];
7906 // TODO: suggest replacing given type with expected type
7907 FD->setInvalidDecl(true);
7908 }
7909 }
7910
7911 if (nparams == 1 && !FD->isInvalidDecl()) {
7912 Diag(FD->getLocation(), diag::warn_main_one_arg);
7913 }
Douglas Gregor0bab54c2010-10-21 16:57:46 +00007914
7915 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07007916 Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
David Majnemere9f6f332013-09-16 22:44:20 +00007917 FD->setInvalidDecl();
7918 }
7919}
7920
7921void Sema::CheckMSVCRTEntryPoint(FunctionDecl *FD) {
7922 QualType T = FD->getType();
7923 assert(T->isFunctionType() && "function decl is not of function type");
7924 const FunctionType *FT = T->castAs<FunctionType>();
7925
7926 // Set an implicit return of 'zero' if the function can return some integral,
7927 // enumeration, pointer or nullptr type.
Stephen Hines651f13c2014-04-23 16:59:28 -07007928 if (FT->getReturnType()->isIntegralOrEnumerationType() ||
7929 FT->getReturnType()->isAnyPointerType() ||
7930 FT->getReturnType()->isNullPtrType())
David Majnemere9f6f332013-09-16 22:44:20 +00007931 // DllMain is exempt because a return value of zero means it failed.
7932 if (FD->getName() != "DllMain")
7933 FD->setHasImplicitReturnZero(true);
7934
7935 if (!FD->isInvalidDecl() && FD->getDescribedFunctionTemplate()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07007936 Diag(FD->getLocation(), diag::err_mainlike_template_decl) << FD;
Douglas Gregor0bab54c2010-10-21 16:57:46 +00007937 FD->setInvalidDecl();
7938 }
John McCall8c4859a2009-07-24 03:03:21 +00007939}
7940
Eli Friedmanc594b322008-05-20 13:48:25 +00007941bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
Eli Friedman3b8a36a2009-02-27 04:17:12 +00007942 // FIXME: Need strict checking. In C89, we need to check for
7943 // any assignment, increment, decrement, function-calls, or
7944 // commas outside of a sizeof. In C99, it's the same list,
7945 // except that the aforementioned are allowed in unevaluated
7946 // expressions. Everything else falls under the
7947 // "may accept other forms of constant expressions" exception.
7948 // (We never end up here for C++, so the constant expression
7949 // rules there don't matter.)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007950 const Expr *Culprit;
7951 if (Init->isConstantInitializer(Context, false, &Culprit))
Eli Friedman578a9722009-02-22 06:45:27 +00007952 return false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07007953 Diag(Culprit->getExprLoc(), diag::err_init_element_not_constant)
7954 << Culprit->getSourceRange();
Eli Friedmanc594b322008-05-20 13:48:25 +00007955 return true;
Steve Naroffd0091aa2008-01-10 22:15:12 +00007956}
7957
Chandler Carrutha7689ef2011-03-27 09:46:56 +00007958namespace {
7959 // Visits an initialization expression to see if OrigDecl is evaluated in
7960 // its own initialization and throws a warning if it does.
7961 class SelfReferenceChecker
7962 : public EvaluatedExprVisitor<SelfReferenceChecker> {
7963 Sema &S;
7964 Decl *OrigDecl;
Richard Trieu898267f2011-09-01 21:44:13 +00007965 bool isRecordType;
7966 bool isPODType;
Hans Wennborg8be9e772012-08-17 10:12:33 +00007967 bool isReferenceType;
Chandler Carrutha7689ef2011-03-27 09:46:56 +00007968
7969 public:
7970 typedef EvaluatedExprVisitor<SelfReferenceChecker> Inherited;
7971
7972 SelfReferenceChecker(Sema &S, Decl *OrigDecl) : Inherited(S.Context),
Richard Trieu898267f2011-09-01 21:44:13 +00007973 S(S), OrigDecl(OrigDecl) {
7974 isPODType = false;
7975 isRecordType = false;
Hans Wennborg8be9e772012-08-17 10:12:33 +00007976 isReferenceType = false;
Richard Trieu898267f2011-09-01 21:44:13 +00007977 if (ValueDecl *VD = dyn_cast<ValueDecl>(OrigDecl)) {
7978 isPODType = VD->getType().isPODType(S.Context);
7979 isRecordType = VD->getType()->isRecordType();
Hans Wennborg8be9e772012-08-17 10:12:33 +00007980 isReferenceType = VD->getType()->isReferenceType();
Richard Trieu898267f2011-09-01 21:44:13 +00007981 }
7982 }
Chandler Carrutha7689ef2011-03-27 09:46:56 +00007983
Richard Trieu7e9f8af2012-05-09 00:21:34 +00007984 // For most expressions, the cast is directly above the DeclRefExpr.
7985 // For conditional operators, the cast can be outside the conditional
7986 // operator if both expressions are DeclRefExpr's.
7987 void HandleValue(Expr *E) {
Richard Trieu568f7852012-10-01 17:39:51 +00007988 if (isReferenceType)
7989 return;
Richard Trieu7e9f8af2012-05-09 00:21:34 +00007990 E = E->IgnoreParenImpCasts();
7991 if (DeclRefExpr* DRE = dyn_cast<DeclRefExpr>(E)) {
7992 HandleDeclRefExpr(DRE);
7993 return;
7994 }
7995
7996 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
7997 HandleValue(CO->getTrueExpr());
7998 HandleValue(CO->getFalseExpr());
Richard Trieu6b2cc422012-10-03 00:41:36 +00007999 return;
8000 }
8001
8002 if (isa<MemberExpr>(E)) {
8003 Expr *Base = E->IgnoreParenImpCasts();
8004 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
8005 // Check for static member variables and don't warn on them.
8006 if (!isa<FieldDecl>(ME->getMemberDecl()))
8007 return;
8008 Base = ME->getBase()->IgnoreParenImpCasts();
8009 }
8010 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base))
8011 HandleDeclRefExpr(DRE);
8012 return;
Richard Trieu7e9f8af2012-05-09 00:21:34 +00008013 }
8014 }
8015
Richard Trieu568f7852012-10-01 17:39:51 +00008016 // Reference types are handled here since all uses of references are
8017 // bad, not just r-value uses.
8018 void VisitDeclRefExpr(DeclRefExpr *E) {
8019 if (isReferenceType)
8020 HandleDeclRefExpr(E);
8021 }
8022
Richard Trieu7e9f8af2012-05-09 00:21:34 +00008023 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
Richard Trieu6b2cc422012-10-03 00:41:36 +00008024 if (E->getCastKind() == CK_LValueToRValue ||
Richard Trieu7e9f8af2012-05-09 00:21:34 +00008025 (isRecordType && E->getCastKind() == CK_NoOp))
8026 HandleValue(E->getSubExpr());
8027
8028 Inherited::VisitImplicitCastExpr(E);
Chandler Carrutha7689ef2011-03-27 09:46:56 +00008029 }
8030
Richard Trieu898267f2011-09-01 21:44:13 +00008031 void VisitMemberExpr(MemberExpr *E) {
Richard Trieu7e9f8af2012-05-09 00:21:34 +00008032 // Don't warn on arrays since they can be treated as pointers.
Richard Trieu47eb8982011-09-07 00:58:53 +00008033 if (E->getType()->canDecayToPointerType()) return;
Richard Trieu7e9f8af2012-05-09 00:21:34 +00008034
Richard Trieu6b2cc422012-10-03 00:41:36 +00008035 // Warn when a non-static method call is followed by non-static member
8036 // field accesses, which is followed by a DeclRefExpr.
8037 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(E->getMemberDecl());
8038 bool Warn = (MD && !MD->isStatic());
8039 Expr *Base = E->getBase()->IgnoreParenImpCasts();
8040 while (MemberExpr *ME = dyn_cast<MemberExpr>(Base)) {
8041 if (!isa<FieldDecl>(ME->getMemberDecl()))
8042 Warn = false;
8043 Base = ME->getBase()->IgnoreParenImpCasts();
8044 }
Richard Trieu898267f2011-09-01 21:44:13 +00008045
Richard Trieu6b2cc422012-10-03 00:41:36 +00008046 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
8047 if (Warn)
8048 HandleDeclRefExpr(DRE);
8049 return;
8050 }
8051
8052 // The base of a MemberExpr is not a MemberExpr or a DeclRefExpr.
8053 // Visit that expression.
8054 Visit(Base);
Chandler Carrutha7689ef2011-03-27 09:46:56 +00008055 }
8056
Richard Trieu8af742a2013-03-26 03:41:40 +00008057 void VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
8058 if (E->getNumArgs() > 0)
8059 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E->getArg(0)))
8060 HandleDeclRefExpr(DRE);
8061
8062 Inherited::VisitCXXOperatorCallExpr(E);
8063 }
8064
Richard Trieu898267f2011-09-01 21:44:13 +00008065 void VisitUnaryOperator(UnaryOperator *E) {
8066 // For POD record types, addresses of its own members are well-defined.
Richard Trieu6b2cc422012-10-03 00:41:36 +00008067 if (E->getOpcode() == UO_AddrOf && isRecordType &&
8068 isa<MemberExpr>(E->getSubExpr()->IgnoreParens())) {
8069 if (!isPODType)
8070 HandleValue(E->getSubExpr());
8071 return;
8072 }
Richard Trieu898267f2011-09-01 21:44:13 +00008073 Inherited::VisitUnaryOperator(E);
Richard Smith0f2fc5f2013-05-03 19:16:22 +00008074 }
Richard Trieu7e9f8af2012-05-09 00:21:34 +00008075
8076 void VisitObjCMessageExpr(ObjCMessageExpr *E) { return; }
8077
Richard Trieu898267f2011-09-01 21:44:13 +00008078 void HandleDeclRefExpr(DeclRefExpr *DRE) {
NAKAMURA Takumif3052792013-01-19 01:54:35 +00008079 Decl* ReferenceDecl = DRE->getDecl();
Chandler Carrutha7689ef2011-03-27 09:46:56 +00008080 if (OrigDecl != ReferenceDecl) return;
Ted Kremenek39371b82013-01-19 04:33:14 +00008081 unsigned diag;
8082 if (isReferenceType) {
8083 diag = diag::warn_uninit_self_reference_in_reference_init;
8084 } else if (cast<VarDecl>(OrigDecl)->isStaticLocal()) {
8085 diag = diag::warn_static_self_reference_in_init;
8086 } else {
8087 diag = diag::warn_uninit_self_reference_in_init;
8088 }
8089
Richard Trieu898267f2011-09-01 21:44:13 +00008090 S.DiagRuntimeBehavior(DRE->getLocStart(), DRE,
Hans Wennborg5965b7c2012-08-20 08:52:22 +00008091 S.PDiag(diag)
Hans Wennborg7821e072012-09-21 08:58:33 +00008092 << DRE->getNameInfo().getName()
Douglas Gregor63fe6812011-05-24 16:02:01 +00008093 << OrigDecl->getLocation()
Richard Trieu898267f2011-09-01 21:44:13 +00008094 << DRE->getSourceRange());
Chandler Carrutha7689ef2011-03-27 09:46:56 +00008095 }
8096 };
Chandler Carrutha7689ef2011-03-27 09:46:56 +00008097
Richard Trieu568f7852012-10-01 17:39:51 +00008098 /// CheckSelfReference - Warns if OrigDecl is used in expression E.
8099 static void CheckSelfReference(Sema &S, Decl* OrigDecl, Expr *E,
8100 bool DirectInit) {
8101 // Parameters arguments are occassionially constructed with itself,
8102 // for instance, in recursive functions. Skip them.
8103 if (isa<ParmVarDecl>(OrigDecl))
8104 return;
8105
8106 E = E->IgnoreParens();
8107
8108 // Skip checking T a = a where T is not a record or reference type.
8109 // Doing so is a way to silence uninitialized warnings.
8110 if (!DirectInit && !cast<VarDecl>(OrigDecl)->getType()->isRecordType())
8111 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E))
8112 if (ICE->getCastKind() == CK_LValueToRValue)
8113 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(ICE->getSubExpr()))
8114 if (DRE->getDecl() == OrigDecl)
8115 return;
8116
8117 SelfReferenceChecker(S, OrigDecl).Visit(E);
8118 }
Richard Trieu898267f2011-09-01 21:44:13 +00008119}
8120
Douglas Gregor09f41cf2009-01-14 15:45:31 +00008121/// AddInitializerToDecl - Adds the initializer Init to the
8122/// declaration dcl. If DirectInit is true, this is C++ direct
8123/// initialization rather than copy initialization.
Richard Smith34b41d92011-02-20 03:19:35 +00008124void Sema::AddInitializerToDecl(Decl *RealDecl, Expr *Init,
8125 bool DirectInit, bool TypeMayContainAuto) {
Chris Lattner9a11b9a2007-10-19 20:10:30 +00008126 // If there is no declaration, there was an error parsing it. Just ignore
8127 // the initializer.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008128 if (!RealDecl || RealDecl->isInvalidDecl())
Chris Lattner9a11b9a2007-10-19 20:10:30 +00008129 return;
Mike Stump1eb44332009-09-09 15:08:12 +00008130
Douglas Gregor021c3b32009-03-11 23:00:04 +00008131 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(RealDecl)) {
8132 // With declarators parsed the way they are, the parser cannot
8133 // distinguish between a normal initializer and a pure-specifier.
8134 // Thus this grotesque test.
8135 IntegerLiteral *IL;
Douglas Gregor021c3b32009-03-11 23:00:04 +00008136 if ((IL = dyn_cast<IntegerLiteral>(Init)) && IL->getValue() == 0 &&
Douglas Gregor4ba31362009-12-01 17:24:26 +00008137 Context.getCanonicalType(IL->getType()) == Context.IntTy)
8138 CheckPureMethod(Method, Init->getSourceRange());
8139 else {
Douglas Gregor021c3b32009-03-11 23:00:04 +00008140 Diag(Method->getLocation(), diag::err_member_function_initialization)
8141 << Method->getDeclName() << Init->getSourceRange();
8142 Method->setInvalidDecl();
8143 }
8144 return;
8145 }
8146
Steve Naroff410e3e22007-09-12 20:13:48 +00008147 VarDecl *VDecl = dyn_cast<VarDecl>(RealDecl);
8148 if (!VDecl) {
Richard Smithc2cdd532011-06-12 11:43:46 +00008149 assert(!isa<FieldDecl>(RealDecl) && "field init shouldn't get here");
8150 Diag(RealDecl->getLocation(), diag::err_illegal_initializer);
Steve Naroff410e3e22007-09-12 20:13:48 +00008151 RealDecl->setInvalidDecl();
8152 return;
Eli Friedman3b8a36a2009-02-27 04:17:12 +00008153 }
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008154 ParenListExpr *CXXDirectInit = dyn_cast<ParenListExpr>(Init);
8155
Richard Smith01888722011-12-15 19:20:59 +00008156 // C++11 [decl.spec.auto]p6. Deduce the type which 'auto' stands in for.
Richard Smithdc7a4f52013-04-30 13:56:41 +00008157 if (TypeMayContainAuto && VDecl->getType()->isUndeducedType()) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008158 Expr *DeduceInit = Init;
8159 // Initializer could be a C++ direct-initializer. Deduction only works if it
8160 // contains exactly one expression.
8161 if (CXXDirectInit) {
8162 if (CXXDirectInit->getNumExprs() == 0) {
8163 // It isn't possible to write this directly, but it is possible to
8164 // end up in this situation with "auto x(some_pack...);"
Daniel Dunbar96a00142012-03-09 18:35:03 +00008165 Diag(CXXDirectInit->getLocStart(),
Richard Smith04fa7a32013-09-28 04:02:39 +00008166 VDecl->isInitCapture() ? diag::err_init_capture_no_expression
8167 : diag::err_auto_var_init_no_expression)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008168 << VDecl->getDeclName() << VDecl->getType()
8169 << VDecl->getSourceRange();
8170 RealDecl->setInvalidDecl();
8171 return;
8172 } else if (CXXDirectInit->getNumExprs() > 1) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00008173 Diag(CXXDirectInit->getExpr(1)->getLocStart(),
Richard Smith04fa7a32013-09-28 04:02:39 +00008174 VDecl->isInitCapture()
8175 ? diag::err_init_capture_multiple_expressions
8176 : diag::err_auto_var_init_multiple_expressions)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008177 << VDecl->getDeclName() << VDecl->getType()
8178 << VDecl->getSourceRange();
8179 RealDecl->setInvalidDecl();
8180 return;
8181 } else {
8182 DeduceInit = CXXDirectInit->getExpr(0);
Stephen Hines651f13c2014-04-23 16:59:28 -07008183 if (isa<InitListExpr>(DeduceInit))
8184 Diag(CXXDirectInit->getLocStart(),
8185 diag::err_auto_var_init_paren_braces)
8186 << VDecl->getDeclName() << VDecl->getType()
8187 << VDecl->getSourceRange();
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008188 }
8189 }
Douglas Gregor1344e942013-03-07 22:57:58 +00008190
8191 // Expressions default to 'id' when we're in a debugger.
8192 bool DefaultedToAuto = false;
8193 if (getLangOpts().DebuggerCastResultToId &&
8194 Init->getType() == Context.UnknownAnyTy) {
8195 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
8196 if (Result.isInvalid()) {
8197 VDecl->setInvalidDecl();
8198 return;
8199 }
8200 Init = Result.take();
8201 DefaultedToAuto = true;
8202 }
Richard Smith9b131752013-04-30 21:23:01 +00008203
8204 QualType DeducedType;
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008205 if (DeduceAutoType(VDecl->getTypeSourceInfo(), DeduceInit, DeducedType) ==
Sebastian Redlb832f6d2012-01-23 22:09:39 +00008206 DAR_Failed)
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008207 DiagnoseAutoDeductionFailure(VDecl, DeduceInit);
Richard Smith9b131752013-04-30 21:23:01 +00008208 if (DeducedType.isNull()) {
Richard Smith34b41d92011-02-20 03:19:35 +00008209 RealDecl->setInvalidDecl();
8210 return;
8211 }
Richard Smith9b131752013-04-30 21:23:01 +00008212 VDecl->setType(DeducedType);
Rafael Espindola2d1b0962013-03-14 03:07:35 +00008213 assert(VDecl->isLinkageValid());
Rafael Espindola2d9e8832013-03-12 21:06:00 +00008214
John McCallf85e1932011-06-15 23:02:42 +00008215 // In ARC, infer lifetime.
David Blaikie4e4d0842012-03-11 07:00:24 +00008216 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(VDecl))
John McCallf85e1932011-06-15 23:02:42 +00008217 VDecl->setInvalidDecl();
8218
Jordan Rose0abbdfe2012-06-08 22:46:07 +00008219 // Warn if we deduced 'id'. 'auto' usually implies type-safety, but using
8220 // 'id' instead of a specific object type prevents most of our usual checks.
8221 // We only want to warn outside of template instantiations, though:
8222 // inside a template, the 'id' could have come from a parameter.
Douglas Gregor1344e942013-03-07 22:57:58 +00008223 if (ActiveTemplateInstantiations.empty() && !DefaultedToAuto &&
Richard Smith9b131752013-04-30 21:23:01 +00008224 DeducedType->isObjCIdType()) {
8225 SourceLocation Loc =
8226 VDecl->getTypeSourceInfo()->getTypeLoc().getBeginLoc();
Jordan Rose0abbdfe2012-06-08 22:46:07 +00008227 Diag(Loc, diag::warn_auto_var_is_id)
8228 << VDecl->getDeclName() << DeduceInit->getSourceRange();
8229 }
8230
Richard Smith34b41d92011-02-20 03:19:35 +00008231 // If this is a redeclaration, check that the type we just deduced matches
8232 // the previously declared type.
Richard Smithdd9459f2013-08-13 18:18:50 +00008233 if (VarDecl *Old = VDecl->getPreviousDecl()) {
8234 // We never need to merge the type, because we cannot form an incomplete
8235 // array of auto, nor deduce such a type.
8236 MergeVarDeclTypes(VDecl, Old, /*MergeTypeWithPrevious*/false);
8237 }
Richard Smithdc7a4f52013-04-30 13:56:41 +00008238
8239 // Check the deduced type is valid for a variable declaration.
8240 CheckVariableDeclarationType(VDecl);
8241 if (VDecl->isInvalidDecl())
8242 return;
Richard Smith34b41d92011-02-20 03:19:35 +00008243 }
Richard Smith01888722011-12-15 19:20:59 +00008244
Stephen Hines651f13c2014-04-23 16:59:28 -07008245 // dllimport cannot be used on variable definitions.
8246 if (VDecl->hasAttr<DLLImportAttr>() && !VDecl->isStaticDataMember()) {
8247 Diag(VDecl->getLocation(), diag::err_attribute_dllimport_data_definition);
8248 VDecl->setInvalidDecl();
8249 return;
8250 }
8251
Richard Smith01888722011-12-15 19:20:59 +00008252 if (VDecl->isLocalVarDecl() && VDecl->hasExternalStorage()) {
8253 // C99 6.7.8p5. C++ has no such restriction, but that is a defect.
8254 Diag(VDecl->getLocation(), diag::err_block_extern_cant_init);
8255 VDecl->setInvalidDecl();
8256 return;
8257 }
8258
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008259 if (!VDecl->getType()->isDependentType()) {
8260 // A definition must end up with a complete type, which means it must be
8261 // complete with the restriction that an array type might be completed by
8262 // the initializer; note that later code assumes this restriction.
8263 QualType BaseDeclType = VDecl->getType();
8264 if (const ArrayType *Array = Context.getAsIncompleteArrayType(BaseDeclType))
8265 BaseDeclType = Array->getElementType();
8266 if (RequireCompleteType(VDecl->getLocation(), BaseDeclType,
8267 diag::err_typecheck_decl_incomplete_type)) {
8268 RealDecl->setInvalidDecl();
8269 return;
8270 }
Douglas Gregor3a91abf2010-08-24 05:27:49 +00008271
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008272 // The variable can not have an abstract class type.
8273 if (RequireNonAbstractType(VDecl->getLocation(), VDecl->getType(),
8274 diag::err_abstract_type_in_decl,
8275 AbstractVariableType))
8276 VDecl->setInvalidDecl();
Eli Friedmana31feca2009-04-13 21:28:54 +00008277 }
8278
Sebastian Redl31310a22010-02-01 20:16:42 +00008279 const VarDecl *Def;
8280 if ((Def = VDecl->getDefinition()) && Def != VDecl) {
Mike Stump1eb44332009-09-09 15:08:12 +00008281 Diag(VDecl->getLocation(), diag::err_redefinition)
Douglas Gregor275a3692009-03-10 23:43:53 +00008282 << VDecl->getDeclName();
8283 Diag(Def->getLocation(), diag::note_previous_definition);
8284 VDecl->setInvalidDecl();
8285 return;
8286 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008287
8288 const VarDecl *PrevInit = nullptr;
David Blaikie4e4d0842012-03-11 07:00:24 +00008289 if (getLangOpts().CPlusPlus) {
Douglas Gregora31040f2010-12-16 01:31:22 +00008290 // C++ [class.static.data]p4
8291 // If a static data member is of const integral or const
8292 // enumeration type, its declaration in the class definition can
8293 // specify a constant-initializer which shall be an integral
8294 // constant expression (5.19). In that case, the member can appear
8295 // in integral constant expressions. The member shall still be
8296 // defined in a namespace scope if it is used in the program and the
8297 // namespace scope definition shall not contain an initializer.
8298 //
8299 // We already performed a redefinition check above, but for static
8300 // data members we also need to check whether there was an in-class
8301 // declaration with an initializer.
8302 if (VDecl->isStaticDataMember() && VDecl->getAnyInitializer(PrevInit)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07008303 Diag(Init->getExprLoc(), diag::err_static_data_member_reinitialization)
8304 << VDecl->getDeclName();
8305 Diag(PrevInit->getInit()->getExprLoc(), diag::note_previous_initializer) << 0;
Douglas Gregora31040f2010-12-16 01:31:22 +00008306 return;
8307 }
Douglas Gregor275a3692009-03-10 23:43:53 +00008308
Douglas Gregora31040f2010-12-16 01:31:22 +00008309 if (VDecl->hasLocalStorage())
8310 getCurFunction()->setHasBranchProtectedScope();
8311
8312 if (DiagnoseUnexpandedParameterPack(Init, UPPC_Initializer)) {
8313 VDecl->setInvalidDecl();
8314 return;
8315 }
8316 }
John McCalle46f62c2010-08-01 01:24:59 +00008317
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00008318 // OpenCL 1.1 6.5.2: "Variables allocated in the __local address space inside
8319 // a kernel function cannot be initialized."
8320 if (VDecl->getStorageClass() == SC_OpenCLWorkGroupLocal) {
8321 Diag(VDecl->getLocation(), diag::err_local_cant_init);
8322 VDecl->setInvalidDecl();
8323 return;
8324 }
8325
Steve Naroffbb204692007-09-12 14:07:44 +00008326 // Get the decls type and save a reference for later, since
Steve Naroffd0091aa2008-01-10 22:15:12 +00008327 // CheckInitializerTypes may change it.
Steve Naroff410e3e22007-09-12 20:13:48 +00008328 QualType DclT = VDecl->getType(), SavT = DclT;
Fariborz Jahanian509fb3e2012-03-09 18:47:16 +00008329
Douglas Gregor1344e942013-03-07 22:57:58 +00008330 // Expressions default to 'id' when we're in a debugger
8331 // and we are assigning it to a variable of Objective-C pointer type.
8332 if (getLangOpts().DebuggerCastResultToId && DclT->isObjCObjectPointerType() &&
8333 Init->getType() == Context.UnknownAnyTy) {
8334 ExprResult Result = forceUnknownAnyToType(Init, Context.getObjCIdType());
8335 if (Result.isInvalid()) {
8336 VDecl->setInvalidDecl();
8337 return;
Fariborz Jahanian509fb3e2012-03-09 18:47:16 +00008338 }
Douglas Gregor1344e942013-03-07 22:57:58 +00008339 Init = Result.take();
8340 }
Richard Smith01888722011-12-15 19:20:59 +00008341
8342 // Perform the initialization.
8343 if (!VDecl->isInvalidDecl()) {
8344 InitializedEntity Entity = InitializedEntity::InitializeVariable(VDecl);
8345 InitializationKind Kind
Sebastian Redl168319c2012-02-12 16:37:24 +00008346 = DirectInit ?
8347 CXXDirectInit ? InitializationKind::CreateDirect(VDecl->getLocation(),
8348 Init->getLocStart(),
8349 Init->getLocEnd())
8350 : InitializationKind::CreateDirectList(
8351 VDecl->getLocation())
Richard Smith01888722011-12-15 19:20:59 +00008352 : InitializationKind::CreateCopy(VDecl->getLocation(),
8353 Init->getLocStart());
8354
Dmitri Gribenko1f78a502013-05-03 15:05:50 +00008355 MultiExprArg Args = Init;
8356 if (CXXDirectInit)
8357 Args = MultiExprArg(CXXDirectInit->getExprs(),
8358 CXXDirectInit->getNumExprs());
8359
8360 InitializationSequence InitSeq(*this, Entity, Kind, Args);
8361 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, Args, &DclT);
Richard Smith01888722011-12-15 19:20:59 +00008362 if (Result.isInvalid()) {
Steve Naroff248a7532008-04-15 22:42:06 +00008363 VDecl->setInvalidDecl();
Richard Smith01888722011-12-15 19:20:59 +00008364 return;
Steve Naroffbb204692007-09-12 14:07:44 +00008365 }
Richard Smith01888722011-12-15 19:20:59 +00008366
8367 Init = Result.takeAs<Expr>();
8368 }
8369
Richard Trieu568f7852012-10-01 17:39:51 +00008370 // Check for self-references within variable initializers.
8371 // Variables declared within a function/method body (except for references)
8372 // are handled by a dataflow analysis.
8373 if (!VDecl->hasLocalStorage() || VDecl->getType()->isRecordType() ||
8374 VDecl->getType()->isReferenceType()) {
8375 CheckSelfReference(*this, RealDecl, Init, DirectInit);
8376 }
8377
Richard Smith01888722011-12-15 19:20:59 +00008378 // If the type changed, it means we had an incomplete type that was
8379 // completed by the initializer. For example:
8380 // int ary[] = { 1, 3, 5 };
John McCall73076432012-01-05 00:13:19 +00008381 // "ary" transitions from an IncompleteArrayType to a ConstantArrayType.
Eli Friedman5c89c392012-02-23 02:25:10 +00008382 if (!VDecl->isInvalidDecl() && (DclT != SavT))
Richard Smith01888722011-12-15 19:20:59 +00008383 VDecl->setType(DclT);
Richard Smith01888722011-12-15 19:20:59 +00008384
Jordan Rosee10f4d32012-09-15 02:48:31 +00008385 if (!VDecl->isInvalidDecl()) {
Richard Smith01888722011-12-15 19:20:59 +00008386 checkUnsafeAssigns(VDecl->getLocation(), VDecl->getType(), Init);
8387
Jordan Rosee10f4d32012-09-15 02:48:31 +00008388 if (VDecl->hasAttr<BlocksAttr>())
8389 checkRetainCycles(VDecl, Init);
Jordan Rose58b6bdc2012-09-28 22:21:30 +00008390
8391 // It is safe to assign a weak reference into a strong variable.
8392 // Although this code can still have problems:
8393 // id x = self.weakProp;
8394 // id y = self.weakProp;
8395 // we do not warn to warn spuriously when 'x' and 'y' are on separate
8396 // paths through the function. This should be revisited if
8397 // -Wrepeated-use-of-weak is made flow-sensitive.
Ted Kremenek904a3262012-12-20 22:31:27 +00008398 if (VDecl->getType().getObjCLifetime() == Qualifiers::OCL_Strong) {
Jordan Rose58b6bdc2012-09-28 22:21:30 +00008399 DiagnosticsEngine::Level Level =
8400 Diags.getDiagnosticLevel(diag::warn_arc_repeated_use_of_weak,
8401 Init->getLocStart());
8402 if (Level != DiagnosticsEngine::Ignored)
8403 getCurFunction()->markSafeWeakUse(Init);
8404 }
Jordan Rosee10f4d32012-09-15 02:48:31 +00008405 }
8406
Richard Smith41956372013-01-14 22:39:08 +00008407 // The initialization is usually a full-expression.
8408 //
8409 // FIXME: If this is a braced initialization of an aggregate, it is not
8410 // an expression, and each individual field initializer is a separate
8411 // full-expression. For instance, in:
8412 //
8413 // struct Temp { ~Temp(); };
8414 // struct S { S(Temp); };
8415 // struct T { S a, b; } t = { Temp(), Temp() }
8416 //
8417 // we should destroy the first Temp before constructing the second.
Fariborz Jahanianad48a502013-01-24 22:11:45 +00008418 ExprResult Result = ActOnFinishFullExpr(Init, VDecl->getLocation(),
8419 false,
8420 VDecl->isConstexpr());
Richard Smith41956372013-01-14 22:39:08 +00008421 if (Result.isInvalid()) {
8422 VDecl->setInvalidDecl();
8423 return;
8424 }
8425 Init = Result.take();
8426
Richard Smith01888722011-12-15 19:20:59 +00008427 // Attach the initializer to the decl.
8428 VDecl->setInit(Init);
8429
8430 if (VDecl->isLocalVarDecl()) {
8431 // C99 6.7.8p4: All the expressions in an initializer for an object that has
8432 // static storage duration shall be constant expressions or string literals.
8433 // C++ does not have this restriction.
Enea Zaffanellab9a59352013-07-22 10:58:26 +00008434 if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008435 const Expr *Culprit;
Enea Zaffanellab9a59352013-07-22 10:58:26 +00008436 if (VDecl->getStorageClass() == SC_Static)
8437 CheckForConstantInitializer(Init, DclT);
8438 // C89 is stricter than C99 for non-static aggregate types.
8439 // C89 6.5.7p3: All the expressions [...] in an initializer list
8440 // for an object that has aggregate or union type shall be
8441 // constant expressions.
8442 else if (!getLangOpts().C99 && VDecl->getType()->isAggregateType() &&
Enea Zaffanella82026302013-07-22 19:10:20 +00008443 isa<InitListExpr>(Init) &&
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008444 !Init->isConstantInitializer(Context, false, &Culprit))
8445 Diag(Culprit->getExprLoc(),
Enea Zaffanellab9a59352013-07-22 10:58:26 +00008446 diag::ext_aggregate_init_not_constant)
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008447 << Culprit->getSourceRange();
Enea Zaffanellab9a59352013-07-22 10:58:26 +00008448 }
Mike Stump1eb44332009-09-09 15:08:12 +00008449 } else if (VDecl->isStaticDataMember() &&
Douglas Gregor021c3b32009-03-11 23:00:04 +00008450 VDecl->getLexicalDeclContext()->isRecord()) {
8451 // This is an in-class initialization for a static data member, e.g.,
8452 //
8453 // struct S {
8454 // static const int value = 17;
8455 // };
8456
Douglas Gregor021c3b32009-03-11 23:00:04 +00008457 // C++ [class.mem]p4:
8458 // A member-declarator can contain a constant-initializer only
8459 // if it declares a static member (9.4) of const integral or
8460 // const enumeration type, see 9.4.2.
Richard Smithc6d990a2011-09-29 19:11:37 +00008461 //
Richard Smith01888722011-12-15 19:20:59 +00008462 // C++11 [class.static.data]p3:
Richard Smithc6d990a2011-09-29 19:11:37 +00008463 // If a non-volatile const static data member is of integral or
8464 // enumeration type, its declaration in the class definition can
8465 // specify a brace-or-equal-initializer in which every initalizer-clause
8466 // that is an assignment-expression is a constant expression. A static
8467 // data member of literal type can be declared in the class definition
8468 // with the constexpr specifier; if so, its declaration shall specify a
8469 // brace-or-equal-initializer in which every initializer-clause that is
8470 // an assignment-expression is a constant expression.
John McCall4e635642010-09-10 23:21:22 +00008471
8472 // Do nothing on dependent types.
Richard Smith01888722011-12-15 19:20:59 +00008473 if (DclT->isDependentType()) {
John McCall4e635642010-09-10 23:21:22 +00008474
Richard Smithc6d990a2011-09-29 19:11:37 +00008475 // Allow any 'static constexpr' members, whether or not they are of literal
Richard Smith86c3ae42012-02-13 03:54:03 +00008476 // type. We separately check that every constexpr variable is of literal
8477 // type.
Richard Smithc6d990a2011-09-29 19:11:37 +00008478 } else if (VDecl->isConstexpr()) {
8479
John McCall4e635642010-09-10 23:21:22 +00008480 // Require constness.
Richard Smith01888722011-12-15 19:20:59 +00008481 } else if (!DclT.isConstQualified()) {
John McCall4e635642010-09-10 23:21:22 +00008482 Diag(VDecl->getLocation(), diag::err_in_class_initializer_non_const)
8483 << Init->getSourceRange();
Douglas Gregor021c3b32009-03-11 23:00:04 +00008484 VDecl->setInvalidDecl();
John McCall4e635642010-09-10 23:21:22 +00008485
8486 // We allow integer constant expressions in all cases.
Richard Smith01888722011-12-15 19:20:59 +00008487 } else if (DclT->isIntegralOrEnumerationType()) {
Chris Lattner24c38e12011-06-14 05:46:29 +00008488 // Check whether the expression is a constant expression.
8489 SourceLocation Loc;
Richard Smith80ad52f2013-01-02 11:42:31 +00008490 if (getLangOpts().CPlusPlus11 && DclT.isVolatileQualified())
Richard Smith01888722011-12-15 19:20:59 +00008491 // In C++11, a non-constexpr const static data member with an
Richard Smith2da7a512011-09-29 21:28:14 +00008492 // in-class initializer cannot be volatile.
8493 Diag(VDecl->getLocation(), diag::err_in_class_initializer_volatile);
8494 else if (Init->isValueDependent())
Chris Lattner24c38e12011-06-14 05:46:29 +00008495 ; // Nothing to check.
8496 else if (Init->isIntegerConstantExpr(Context, &Loc))
8497 ; // Ok, it's an ICE!
8498 else if (Init->isEvaluatable(Context)) {
8499 // If we can constant fold the initializer through heroics, accept it,
8500 // but report this as a use of an extension for -pedantic.
8501 Diag(Loc, diag::ext_in_class_initializer_non_constant)
8502 << Init->getSourceRange();
8503 } else {
8504 // Otherwise, this is some crazy unknown case. Report the issue at the
8505 // location provided by the isIntegerConstantExpr failed check.
8506 Diag(Loc, diag::err_in_class_initializer_non_constant)
8507 << Init->getSourceRange();
8508 VDecl->setInvalidDecl();
John McCall4e635642010-09-10 23:21:22 +00008509 }
8510
Richard Smith01888722011-12-15 19:20:59 +00008511 // We allow foldable floating-point constants as an extension.
8512 } else if (DclT->isFloatingType()) { // also permits complex, which is ok
Richard Smithb4b1d692013-01-25 04:22:16 +00008513 // In C++98, this is a GNU extension. In C++11, it is not, but we support
8514 // it anyway and provide a fixit to add the 'constexpr'.
8515 if (getLangOpts().CPlusPlus11) {
David Blaikiea367e9d2013-01-29 22:26:08 +00008516 Diag(VDecl->getLocation(),
8517 diag::ext_in_class_initializer_float_type_cxx11)
8518 << DclT << Init->getSourceRange();
8519 Diag(VDecl->getLocStart(),
8520 diag::note_in_class_initializer_float_type_cxx11)
8521 << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
Richard Smithb4b1d692013-01-25 04:22:16 +00008522 } else {
8523 Diag(VDecl->getLocation(), diag::ext_in_class_initializer_float_type)
8524 << DclT << Init->getSourceRange();
John McCall4e635642010-09-10 23:21:22 +00008525
Richard Smithb4b1d692013-01-25 04:22:16 +00008526 if (!Init->isValueDependent() && !Init->isEvaluatable(Context)) {
8527 Diag(Init->getExprLoc(), diag::err_in_class_initializer_non_constant)
8528 << Init->getSourceRange();
8529 VDecl->setInvalidDecl();
8530 }
Douglas Gregor021c3b32009-03-11 23:00:04 +00008531 }
Richard Smith947be192011-09-29 23:18:34 +00008532
Richard Smith01888722011-12-15 19:20:59 +00008533 // Suggest adding 'constexpr' in C++11 for literal types.
Richard Smitha10b9782013-04-22 15:31:51 +00008534 } else if (getLangOpts().CPlusPlus11 && DclT->isLiteralType(Context)) {
Richard Smith947be192011-09-29 23:18:34 +00008535 Diag(VDecl->getLocation(), diag::err_in_class_initializer_literal_type)
Richard Smith01888722011-12-15 19:20:59 +00008536 << DclT << Init->getSourceRange()
Richard Smith947be192011-09-29 23:18:34 +00008537 << FixItHint::CreateInsertion(VDecl->getLocStart(), "constexpr ");
8538 VDecl->setConstexpr(true);
8539
Richard Smithc6d990a2011-09-29 19:11:37 +00008540 } else {
8541 Diag(VDecl->getLocation(), diag::err_in_class_initializer_bad_type)
Richard Smith01888722011-12-15 19:20:59 +00008542 << DclT << Init->getSourceRange();
Richard Smithc6d990a2011-09-29 19:11:37 +00008543 VDecl->setInvalidDecl();
Douglas Gregor021c3b32009-03-11 23:00:04 +00008544 }
Steve Naroff248a7532008-04-15 22:42:06 +00008545 } else if (VDecl->isFileVarDecl()) {
Rafael Espindolad2615cc2013-04-03 19:27:57 +00008546 if (VDecl->getStorageClass() == SC_Extern &&
David Blaikie4e4d0842012-03-11 07:00:24 +00008547 (!getLangOpts().CPlusPlus ||
Rafael Espindola5b34b9c2013-03-29 07:56:05 +00008548 !(Context.getBaseElementType(VDecl->getType()).isConstQualified() ||
Richard Smithd0629eb2013-09-27 20:14:12 +00008549 VDecl->isExternC())) &&
8550 !isTemplateInstantiation(VDecl->getTemplateSpecializationKind()))
Steve Naroff410e3e22007-09-12 20:13:48 +00008551 Diag(VDecl->getLocation(), diag::warn_extern_init);
Eli Friedmana91eb542009-12-22 02:10:53 +00008552
Richard Smith01888722011-12-15 19:20:59 +00008553 // C99 6.7.8p4. All file scoped initializers need to be constant.
David Blaikie4e4d0842012-03-11 07:00:24 +00008554 if (!getLangOpts().CPlusPlus && !VDecl->isInvalidDecl())
Anders Carlssonc5eb7312008-08-22 05:00:02 +00008555 CheckForConstantInitializer(Init, DclT);
Steve Naroffbb204692007-09-12 14:07:44 +00008556 }
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +00008557
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008558 // We will represent direct-initialization similarly to copy-initialization:
8559 // int x(1); -as-> int x = 1;
8560 // ClassType x(a,b,c); -as-> ClassType x = ClassType(a,b,c);
8561 //
8562 // Clients that want to distinguish between the two forms, can check for
8563 // direct initializer using VarDecl::getInitStyle().
8564 // A major benefit is that clients that don't particularly care about which
8565 // exactly form was it (like the CodeGen) can handle both cases without
8566 // special case code.
8567
8568 // C++ 8.5p11:
8569 // The form of initialization (using parentheses or '=') is generally
8570 // insignificant, but does matter when the entity being initialized has a
8571 // class type.
8572 if (CXXDirectInit) {
8573 assert(DirectInit && "Call-style initializer must be direct init.");
8574 VDecl->setInitStyle(VarDecl::CallInit);
8575 } else if (DirectInit) {
8576 // This must be list-initialization. No other way is direct-initialization.
8577 VDecl->setInitStyle(VarDecl::ListInit);
8578 }
8579
John McCall2998d6b2011-01-19 11:48:09 +00008580 CheckCompleteVariableDeclaration(VDecl);
Steve Naroffbb204692007-09-12 14:07:44 +00008581}
8582
John McCall7727acf2010-03-31 02:13:20 +00008583/// ActOnInitializerError - Given that there was an error parsing an
8584/// initializer for the given declaration, try to return to some form
8585/// of sanity.
John McCalld226f652010-08-21 09:40:31 +00008586void Sema::ActOnInitializerError(Decl *D) {
John McCall7727acf2010-03-31 02:13:20 +00008587 // Our main concern here is re-establishing invariants like "a
8588 // variable's type is either dependent or complete".
John McCall7727acf2010-03-31 02:13:20 +00008589 if (!D || D->isInvalidDecl()) return;
8590
8591 VarDecl *VD = dyn_cast<VarDecl>(D);
8592 if (!VD) return;
8593
Richard Smith34b41d92011-02-20 03:19:35 +00008594 // Auto types are meaningless if we can't make sense of the initializer.
Richard Smith483b9f32011-02-21 20:05:19 +00008595 if (ParsingInitForAutoVars.count(D)) {
8596 D->setInvalidDecl();
Richard Smith34b41d92011-02-20 03:19:35 +00008597 return;
8598 }
8599
John McCall7727acf2010-03-31 02:13:20 +00008600 QualType Ty = VD->getType();
8601 if (Ty->isDependentType()) return;
8602
8603 // Require a complete type.
8604 if (RequireCompleteType(VD->getLocation(),
8605 Context.getBaseElementType(Ty),
8606 diag::err_typecheck_decl_incomplete_type)) {
8607 VD->setInvalidDecl();
8608 return;
8609 }
8610
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008611 // Require a non-abstract type.
John McCall7727acf2010-03-31 02:13:20 +00008612 if (RequireNonAbstractType(VD->getLocation(), Ty,
8613 diag::err_abstract_type_in_decl,
8614 AbstractVariableType)) {
8615 VD->setInvalidDecl();
8616 return;
8617 }
8618
8619 // Don't bother complaining about constructors or destructors,
8620 // though.
8621}
8622
John McCalld226f652010-08-21 09:40:31 +00008623void Sema::ActOnUninitializedDecl(Decl *RealDecl,
Richard Smith34b41d92011-02-20 03:19:35 +00008624 bool TypeMayContainAuto) {
Argyrios Kyrtzidis48c2e902008-11-07 13:01:22 +00008625 // If there is no declaration, there was an error parsing it. Just ignore it.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008626 if (!RealDecl)
Argyrios Kyrtzidis48c2e902008-11-07 13:01:22 +00008627 return;
8628
Douglas Gregor27c8dc02008-10-29 00:13:59 +00008629 if (VarDecl *Var = dyn_cast<VarDecl>(RealDecl)) {
8630 QualType Type = Var->getType();
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +00008631
Richard Smithdd4b3502011-12-25 21:17:58 +00008632 // C++11 [dcl.spec.auto]p3
Richard Smith34b41d92011-02-20 03:19:35 +00008633 if (TypeMayContainAuto && Type->getContainedAutoType()) {
Anders Carlsson6a75cd92009-07-11 00:34:39 +00008634 Diag(Var->getLocation(), diag::err_auto_var_requires_init)
8635 << Var->getDeclName() << Type;
8636 Var->setInvalidDecl();
8637 return;
8638 }
Mike Stump1eb44332009-09-09 15:08:12 +00008639
Richard Smithdd4b3502011-12-25 21:17:58 +00008640 // C++11 [class.static.data]p3: A static data member can be declared with
Richard Smithc6d990a2011-09-29 19:11:37 +00008641 // the constexpr specifier; if so, its declaration shall specify
8642 // a brace-or-equal-initializer.
Richard Smithdd4b3502011-12-25 21:17:58 +00008643 // C++11 [dcl.constexpr]p1: The constexpr specifier shall be applied only to
8644 // the definition of a variable [...] or the declaration of a static data
8645 // member.
8646 if (Var->isConstexpr() && !Var->isThisDeclarationADefinition()) {
8647 if (Var->isStaticDataMember())
8648 Diag(Var->getLocation(),
8649 diag::err_constexpr_static_mem_var_requires_init)
8650 << Var->getDeclName();
8651 else
8652 Diag(Var->getLocation(), diag::err_invalid_constexpr_var_decl);
Richard Smithc6d990a2011-09-29 19:11:37 +00008653 Var->setInvalidDecl();
8654 return;
8655 }
8656
Stephen Hines651f13c2014-04-23 16:59:28 -07008657 // OpenCL v1.1 s6.5.3: variables declared in the constant address space must
8658 // be initialized.
8659 if (!Var->isInvalidDecl() &&
8660 Var->getType().getAddressSpace() == LangAS::opencl_constant &&
8661 Var->getStorageClass() != SC_Extern && !Var->getInit()) {
8662 Diag(Var->getLocation(), diag::err_opencl_constant_no_init);
8663 Var->setInvalidDecl();
8664 return;
8665 }
8666
Douglas Gregor60c93c92010-02-09 07:26:29 +00008667 switch (Var->isThisDeclarationADefinition()) {
8668 case VarDecl::Definition:
8669 if (!Var->isStaticDataMember() || !Var->getAnyInitializer())
8670 break;
8671
8672 // We have an out-of-line definition of a static data member
8673 // that has an in-class initializer, so we type-check this like
8674 // a declaration.
8675 //
8676 // Fall through
8677
8678 case VarDecl::DeclarationOnly:
8679 // It's only a declaration.
8680
8681 // Block scope. C99 6.7p7: If an identifier for an object is
8682 // declared with no linkage (C99 6.2.2p6), the type for the
8683 // object shall be complete.
John McCallb6bbcc92010-10-15 04:57:14 +00008684 if (!Type->isDependentType() && Var->isLocalVarDecl() &&
Rafael Espindola181e3ec2013-05-13 00:12:11 +00008685 !Var->hasLinkage() && !Var->isInvalidDecl() &&
Douglas Gregor60c93c92010-02-09 07:26:29 +00008686 RequireCompleteType(Var->getLocation(), Type,
8687 diag::err_typecheck_decl_incomplete_type))
8688 Var->setInvalidDecl();
8689
8690 // Make sure that the type is not abstract.
8691 if (!Type->isDependentType() && !Var->isInvalidDecl() &&
8692 RequireNonAbstractType(Var->getLocation(), Type,
8693 diag::err_abstract_type_in_decl,
8694 AbstractVariableType))
8695 Var->setInvalidDecl();
Fariborz Jahanian4cc83c22012-08-15 18:42:26 +00008696 if (!Type->isDependentType() && !Var->isInvalidDecl() &&
Fariborz Jahanian767a1a22012-08-17 21:44:55 +00008697 Var->getStorageClass() == SC_PrivateExtern) {
Fariborz Jahanian4cc83c22012-08-15 18:42:26 +00008698 Diag(Var->getLocation(), diag::warn_private_extern);
Fariborz Jahanian767a1a22012-08-17 21:44:55 +00008699 Diag(Var->getLocation(), diag::note_private_extern);
8700 }
Fariborz Jahanian4cc83c22012-08-15 18:42:26 +00008701
Douglas Gregor60c93c92010-02-09 07:26:29 +00008702 return;
8703
8704 case VarDecl::TentativeDefinition:
8705 // File scope. C99 6.9.2p2: A declaration of an identifier for an
8706 // object that has file scope without an initializer, and without a
8707 // storage-class specifier or with the storage-class specifier "static",
8708 // constitutes a tentative definition. Note: A tentative definition with
8709 // external linkage is valid (C99 6.2.2p5).
8710 if (!Var->isInvalidDecl()) {
8711 if (const IncompleteArrayType *ArrayT
8712 = Context.getAsIncompleteArrayType(Type)) {
8713 if (RequireCompleteType(Var->getLocation(),
8714 ArrayT->getElementType(),
8715 diag::err_illegal_decl_array_incomplete_type))
8716 Var->setInvalidDecl();
John McCalld931b082010-08-26 03:08:43 +00008717 } else if (Var->getStorageClass() == SC_Static) {
Douglas Gregor60c93c92010-02-09 07:26:29 +00008718 // C99 6.9.2p3: If the declaration of an identifier for an object is
8719 // a tentative definition and has internal linkage (C99 6.2.2p3), the
8720 // declared type shall not be an incomplete type.
8721 // NOTE: code such as the following
8722 // static struct s;
8723 // struct s { int a; };
8724 // is accepted by gcc. Hence here we issue a warning instead of
8725 // an error and we do not invalidate the static declaration.
8726 // NOTE: to avoid multiple warnings, only check the first declaration.
Rafael Espindola7693b322013-10-19 02:13:21 +00008727 if (Var->isFirstDecl())
Douglas Gregor60c93c92010-02-09 07:26:29 +00008728 RequireCompleteType(Var->getLocation(), Type,
8729 diag::ext_typecheck_decl_incomplete_type);
8730 }
8731 }
8732
8733 // Record the tentative definition; we're done.
8734 if (!Var->isInvalidDecl())
8735 TentativeDefinitions.push_back(Var);
8736 return;
8737 }
8738
8739 // Provide a specific diagnostic for uninitialized variable
8740 // definitions with incomplete array type.
8741 if (Type->isIncompleteArrayType()) {
Sebastian Redl6e824752009-11-05 19:47:47 +00008742 Diag(Var->getLocation(),
8743 diag::err_typecheck_incomplete_array_needs_initializer);
8744 Var->setInvalidDecl();
8745 return;
8746 }
8747
John McCallb567a8b2010-08-01 01:25:24 +00008748 // Provide a specific diagnostic for uninitialized variable
8749 // definitions with reference type.
8750 if (Type->isReferenceType()) {
8751 Diag(Var->getLocation(), diag::err_reference_var_requires_init)
8752 << Var->getDeclName()
8753 << SourceRange(Var->getLocation(), Var->getLocation());
8754 Var->setInvalidDecl();
8755 return;
8756 }
Douglas Gregor60c93c92010-02-09 07:26:29 +00008757
8758 // Do not attempt to type-check the default initializer for a
8759 // variable with dependent type.
8760 if (Type->isDependentType())
Douglas Gregor251b4ff2009-10-08 07:24:58 +00008761 return;
Douglas Gregor39da0b82009-09-09 23:08:42 +00008762
Douglas Gregor60c93c92010-02-09 07:26:29 +00008763 if (Var->isInvalidDecl())
8764 return;
Douglas Gregor1ab537b2009-12-03 18:33:45 +00008765
Douglas Gregor60c93c92010-02-09 07:26:29 +00008766 if (RequireCompleteType(Var->getLocation(),
8767 Context.getBaseElementType(Type),
8768 diag::err_typecheck_decl_incomplete_type)) {
8769 Var->setInvalidDecl();
8770 return;
Douglas Gregor18fe5682008-11-03 20:45:27 +00008771 }
Douglas Gregor27c8dc02008-10-29 00:13:59 +00008772
Douglas Gregor60c93c92010-02-09 07:26:29 +00008773 // The variable can not have an abstract class type.
8774 if (RequireNonAbstractType(Var->getLocation(), Type,
8775 diag::err_abstract_type_in_decl,
8776 AbstractVariableType)) {
8777 Var->setInvalidDecl();
8778 return;
8779 }
8780
Douglas Gregor4337dc72011-05-21 17:52:48 +00008781 // Check for jumps past the implicit initializer. C++0x
8782 // clarifies that this applies to a "variable with automatic
8783 // storage duration", not a "local variable".
Richard Smith0e9e9812011-10-20 21:42:12 +00008784 // C++11 [stmt.dcl]p3
Douglas Gregor4337dc72011-05-21 17:52:48 +00008785 // A program that jumps from a point where a variable with automatic
8786 // storage duration is not in scope to a point where it is in scope is
8787 // ill-formed unless the variable has scalar type, class type with a
8788 // trivial default constructor and a trivial destructor, a cv-qualified
8789 // version of one of these types, or an array of one of the preceding
8790 // types and is declared without an initializer.
David Blaikie4e4d0842012-03-11 07:00:24 +00008791 if (getLangOpts().CPlusPlus && Var->hasLocalStorage()) {
Douglas Gregor4337dc72011-05-21 17:52:48 +00008792 if (const RecordType *Record
8793 = Context.getBaseElementType(Type)->getAs<RecordType>()) {
Sean Hunta6bff2c2011-05-11 22:50:12 +00008794 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record->getDecl());
Richard Smith0e9e9812011-10-20 21:42:12 +00008795 // Mark the function for further checking even if the looser rules of
8796 // C++11 do not require such checks, so that we can diagnose
8797 // incompatibilities with C++98.
8798 if (!CXXRecord->isPOD())
Sean Hunta6bff2c2011-05-11 22:50:12 +00008799 getCurFunction()->setHasBranchProtectedScope();
8800 }
Douglas Gregor60c93c92010-02-09 07:26:29 +00008801 }
Douglas Gregor4337dc72011-05-21 17:52:48 +00008802
8803 // C++03 [dcl.init]p9:
8804 // If no initializer is specified for an object, and the
8805 // object is of (possibly cv-qualified) non-POD class type (or
8806 // array thereof), the object shall be default-initialized; if
8807 // the object is of const-qualified type, the underlying class
8808 // type shall have a user-declared default
8809 // constructor. Otherwise, if no initializer is specified for
8810 // a non- static object, the object and its subobjects, if
8811 // any, have an indeterminate initial value); if the object
8812 // or any of its subobjects are of const-qualified type, the
8813 // program is ill-formed.
8814 // C++0x [dcl.init]p11:
8815 // If no initializer is specified for an object, the object is
8816 // default-initialized; [...].
8817 InitializedEntity Entity = InitializedEntity::InitializeVariable(Var);
8818 InitializationKind Kind
8819 = InitializationKind::CreateDefault(Var->getLocation());
Dmitri Gribenko62ed8892013-05-05 20:40:26 +00008820
8821 InitializationSequence InitSeq(*this, Entity, Kind, None);
8822 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, None);
Douglas Gregor4337dc72011-05-21 17:52:48 +00008823 if (Init.isInvalid())
8824 Var->setInvalidDecl();
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008825 else if (Init.get()) {
Douglas Gregor4337dc72011-05-21 17:52:48 +00008826 Var->setInit(MaybeCreateExprWithCleanups(Init.get()));
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00008827 // This is important for template substitution.
8828 Var->setInitStyle(VarDecl::CallInit);
8829 }
Douglas Gregor516a6bc2010-03-08 02:45:10 +00008830
John McCall2998d6b2011-01-19 11:48:09 +00008831 CheckCompleteVariableDeclaration(Var);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00008832 }
8833}
8834
Richard Smithad762fc2011-04-14 22:09:26 +00008835void Sema::ActOnCXXForRangeDecl(Decl *D) {
8836 VarDecl *VD = dyn_cast<VarDecl>(D);
8837 if (!VD) {
8838 Diag(D->getLocation(), diag::err_for_range_decl_must_be_var);
8839 D->setInvalidDecl();
8840 return;
8841 }
8842
8843 VD->setCXXForRangeDecl(true);
8844
8845 // for-range-declaration cannot be given a storage class specifier.
8846 int Error = -1;
Rafael Espindolad2615cc2013-04-03 19:27:57 +00008847 switch (VD->getStorageClass()) {
Richard Smithad762fc2011-04-14 22:09:26 +00008848 case SC_None:
8849 break;
8850 case SC_Extern:
8851 Error = 0;
8852 break;
8853 case SC_Static:
8854 Error = 1;
8855 break;
8856 case SC_PrivateExtern:
8857 Error = 2;
8858 break;
8859 case SC_Auto:
8860 Error = 3;
8861 break;
8862 case SC_Register:
8863 Error = 4;
8864 break;
Peter Collingbourne8c25fc52011-09-19 21:14:35 +00008865 case SC_OpenCLWorkGroupLocal:
Peter Collingbourne8be0c742011-09-20 12:40:26 +00008866 llvm_unreachable("Unexpected storage class");
Richard Smithad762fc2011-04-14 22:09:26 +00008867 }
Richard Smithc6d990a2011-09-29 19:11:37 +00008868 if (VD->isConstexpr())
8869 Error = 5;
Richard Smithad762fc2011-04-14 22:09:26 +00008870 if (Error != -1) {
8871 Diag(VD->getOuterLocStart(), diag::err_for_range_storage_class)
8872 << VD->getDeclName() << Error;
8873 D->setInvalidDecl();
8874 }
8875}
8876
John McCall2998d6b2011-01-19 11:48:09 +00008877void Sema::CheckCompleteVariableDeclaration(VarDecl *var) {
8878 if (var->isInvalidDecl()) return;
8879
John McCallf85e1932011-06-15 23:02:42 +00008880 // In ARC, don't allow jumps past the implicit initialization of a
8881 // local retaining variable.
David Blaikie4e4d0842012-03-11 07:00:24 +00008882 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00008883 var->hasLocalStorage()) {
8884 switch (var->getType().getObjCLifetime()) {
8885 case Qualifiers::OCL_None:
8886 case Qualifiers::OCL_ExplicitNone:
8887 case Qualifiers::OCL_Autoreleasing:
8888 break;
8889
8890 case Qualifiers::OCL_Weak:
8891 case Qualifiers::OCL_Strong:
8892 getCurFunction()->setHasBranchProtectedScope();
8893 break;
8894 }
8895 }
8896
Stephen Hines651f13c2014-04-23 16:59:28 -07008897 // Warn about externally-visible variables being defined without a
8898 // prior declaration. We only want to do this for global
8899 // declarations, but we also specifically need to avoid doing it for
8900 // class members because the linkage of an anonymous class can
8901 // change if it's later given a typedef name.
Eli Friedmane4851f22012-10-23 20:19:32 +00008902 if (var->isThisDeclarationADefinition() &&
Stephen Hines651f13c2014-04-23 16:59:28 -07008903 var->getDeclContext()->getRedeclContext()->isFileContext() &&
Eli Friedman2ae28e52013-09-24 23:10:08 +00008904 var->isExternallyVisible() && var->hasLinkage() &&
Manuel Klimekacaf1102012-12-12 13:26:54 +00008905 getDiagnostics().getDiagnosticLevel(
8906 diag::warn_missing_variable_declarations,
8907 var->getLocation())) {
Eli Friedmane4851f22012-10-23 20:19:32 +00008908 // Find a previous declaration that's not a definition.
8909 VarDecl *prev = var->getPreviousDecl();
8910 while (prev && prev->isThisDeclarationADefinition())
8911 prev = prev->getPreviousDecl();
8912
8913 if (!prev)
8914 Diag(var->getLocation(), diag::warn_missing_variable_declarations) << var;
8915 }
8916
Stephen Hines6bcf27b2014-05-29 04:14:42 -07008917 if (var->getTLSKind() == VarDecl::TLS_Static) {
8918 const Expr *Culprit;
8919 if (var->getType().isDestructedType()) {
8920 // GNU C++98 edits for __thread, [basic.start.term]p3:
8921 // The type of an object with thread storage duration shall not
8922 // have a non-trivial destructor.
8923 Diag(var->getLocation(), diag::err_thread_nontrivial_dtor);
8924 if (getLangOpts().CPlusPlus11)
8925 Diag(var->getLocation(), diag::note_use_thread_local);
8926 } else if (getLangOpts().CPlusPlus && var->hasInit() &&
8927 !var->getInit()->isConstantInitializer(
8928 Context, var->getType()->isReferenceType(), &Culprit)) {
8929 // GNU C++98 edits for __thread, [basic.start.init]p4:
8930 // An object of thread storage duration shall not require dynamic
8931 // initialization.
8932 // FIXME: Need strict checking here.
8933 Diag(Culprit->getExprLoc(), diag::err_thread_dynamic_init)
8934 << Culprit->getSourceRange();
8935 if (getLangOpts().CPlusPlus11)
8936 Diag(var->getLocation(), diag::note_use_thread_local);
8937 }
8938
8939 }
8940
8941 if (var->isThisDeclarationADefinition() &&
8942 ActiveTemplateInstantiations.empty()) {
8943 PragmaStack<StringLiteral *> *Stack = nullptr;
8944 int SectionFlags = PSF_Implicit | PSF_Read;
8945 if (var->getType().isConstQualified())
8946 Stack = &ConstSegStack;
8947 else if (!var->getInit()) {
8948 Stack = &BSSSegStack;
8949 SectionFlags |= PSF_Write;
8950 } else {
8951 Stack = &DataSegStack;
8952 SectionFlags |= PSF_Write;
8953 }
8954 if (!var->hasAttr<SectionAttr>() && Stack->CurrentValue)
8955 var->addAttr(
8956 SectionAttr::CreateImplicit(Context, SectionAttr::Declspec_allocate,
8957 Stack->CurrentValue->getString(),
8958 Stack->CurrentPragmaLocation));
8959 if (const SectionAttr *SA = var->getAttr<SectionAttr>())
8960 if (UnifySection(SA->getName(), SectionFlags, var))
8961 var->dropAttr<SectionAttr>();
Richard Smith6a570f62013-04-14 20:11:31 +00008962 }
8963
John McCall2998d6b2011-01-19 11:48:09 +00008964 // All the following checks are C++ only.
David Blaikie4e4d0842012-03-11 07:00:24 +00008965 if (!getLangOpts().CPlusPlus) return;
John McCall2998d6b2011-01-19 11:48:09 +00008966
Richard Smitha67d5032012-11-09 23:03:14 +00008967 QualType type = var->getType();
8968 if (type->isDependentType()) return;
John McCall2998d6b2011-01-19 11:48:09 +00008969
8970 // __block variables might require us to capture a copy-initializer.
8971 if (var->hasAttr<BlocksAttr>()) {
8972 // It's currently invalid to ever have a __block variable with an
8973 // array type; should we diagnose that here?
8974
8975 // Regardless, we don't want to ignore array nesting when
8976 // constructing this copy.
John McCall2998d6b2011-01-19 11:48:09 +00008977 if (type->isStructureOrClassType()) {
John McCallb760f112013-03-22 02:10:40 +00008978 EnterExpressionEvaluationContext scope(*this, PotentiallyEvaluated);
John McCall2998d6b2011-01-19 11:48:09 +00008979 SourceLocation poi = var->getLocation();
John McCallf4b88a42012-03-10 09:33:50 +00008980 Expr *varRef =new (Context) DeclRefExpr(var, false, type, VK_LValue, poi);
Douglas Gregor6cda3e62013-03-07 22:38:24 +00008981 ExprResult result
8982 = PerformMoveOrCopyInitialization(
8983 InitializedEntity::InitializeBlock(poi, type, false),
8984 var, var->getType(), varRef, /*AllowNRVO=*/true);
John McCall2998d6b2011-01-19 11:48:09 +00008985 if (!result.isInvalid()) {
8986 result = MaybeCreateExprWithCleanups(result);
8987 Expr *init = result.takeAs<Expr>();
8988 Context.setBlockVarCopyInits(var, init);
8989 }
8990 }
8991 }
8992
Richard Smith66f85712011-11-07 22:16:17 +00008993 Expr *Init = var->getInit();
8994 bool IsGlobal = var->hasGlobalStorage() && !var->isStaticLocal();
Richard Smitha67d5032012-11-09 23:03:14 +00008995 QualType baseType = Context.getBaseElementType(type);
Richard Smith66f85712011-11-07 22:16:17 +00008996
Richard Smith9568f0c2012-10-29 18:26:47 +00008997 if (!var->getDeclContext()->isDependentContext() &&
8998 Init && !Init->isValueDependent()) {
Richard Smith099e7f62011-12-19 06:19:21 +00008999 if (IsGlobal && !var->isConstexpr() &&
9000 getDiagnostics().getDiagnosticLevel(diag::warn_global_constructor,
9001 var->getLocation())
Eli Friedman21cde052013-07-16 22:40:53 +00009002 != DiagnosticsEngine::Ignored) {
9003 // Warn about globals which don't have a constant initializer. Don't
9004 // warn about globals with a non-trivial destructor because we already
9005 // warned about them.
9006 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl();
9007 if (!(RD && !RD->hasTrivialDestructor()) &&
9008 !Init->isConstantInitializer(Context, baseType->isReferenceType()))
9009 Diag(var->getLocation(), diag::warn_global_constructor)
9010 << Init->getSourceRange();
9011 }
Richard Smith099e7f62011-12-19 06:19:21 +00009012
Richard Smith099e7f62011-12-19 06:19:21 +00009013 if (var->isConstexpr()) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00009014 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smith099e7f62011-12-19 06:19:21 +00009015 if (!var->evaluateValue(Notes) || !var->isInitICE()) {
9016 SourceLocation DiagLoc = var->getLocation();
9017 // If the note doesn't add any useful information other than a source
9018 // location, fold it into the primary diagnostic.
9019 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
9020 diag::note_invalid_subexpr_in_const_expr) {
9021 DiagLoc = Notes[0].first;
9022 Notes.clear();
9023 }
9024 Diag(DiagLoc, diag::err_constexpr_var_requires_const_init)
9025 << var << Init->getSourceRange();
9026 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
9027 Diag(Notes[I].first, Notes[I].second);
9028 }
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +00009029 } else if (var->isUsableInConstantExpressions(Context)) {
Richard Smith099e7f62011-12-19 06:19:21 +00009030 // Check whether the initializer of a const variable of integral or
9031 // enumeration type is an ICE now, since we can't tell whether it was
9032 // initialized by a constant expression if we check later.
9033 var->checkInitIsICE();
9034 }
Richard Smith66f85712011-11-07 22:16:17 +00009035 }
John McCall2998d6b2011-01-19 11:48:09 +00009036
9037 // Require the destructor.
9038 if (const RecordType *recordType = baseType->getAs<RecordType>())
9039 FinalizeVarWithDestructor(var, recordType);
9040}
9041
Richard Smith483b9f32011-02-21 20:05:19 +00009042/// FinalizeDeclaration - called by ParseDeclarationAfterDeclarator to perform
9043/// any semantic actions necessary after any initializer has been attached.
9044void
9045Sema::FinalizeDeclaration(Decl *ThisDecl) {
9046 // Note that we are no longer parsing the initializer for this declaration.
9047 ParsingInitForAutoVars.erase(ThisDecl);
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00009048
Rafael Espindola4c8cba82013-02-22 17:59:16 +00009049 VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl);
Rafael Espindolada844b32013-01-03 04:05:19 +00009050 if (!VD)
9051 return;
9052
Stephen Hines651f13c2014-04-23 16:59:28 -07009053 checkAttributesAfterMerging(*this, *VD);
9054
Rafael Espindola29535ba2013-08-16 23:18:50 +00009055 if (UsedAttr *Attr = VD->getAttr<UsedAttr>()) {
9056 if (!Attr->isInherited() && !VD->isThisDeclarationADefinition()) {
Stephen Hines651f13c2014-04-23 16:59:28 -07009057 Diag(Attr->getLocation(), diag::warn_attribute_ignored) << Attr;
Rafael Espindola29535ba2013-08-16 23:18:50 +00009058 VD->dropAttr<UsedAttr>();
9059 }
9060 }
9061
Rafael Espindolab1c0e202013-10-22 21:39:03 +00009062 if (!VD->isInvalidDecl() &&
9063 VD->isThisDeclarationADefinition() == VarDecl::TentativeDefinition) {
9064 if (const VarDecl *Def = VD->getDefinition()) {
9065 if (Def->hasAttr<AliasAttr>()) {
9066 Diag(VD->getLocation(), diag::err_tentative_after_alias)
9067 << VD->getDeclName();
9068 Diag(Def->getLocation(), diag::note_previous_definition);
9069 VD->setInvalidDecl();
9070 }
9071 }
9072 }
9073
Rafael Espindola4c8cba82013-02-22 17:59:16 +00009074 const DeclContext *DC = VD->getDeclContext();
9075 // If there's a #pragma GCC visibility in scope, and this isn't a class
9076 // member, set the visibility of this variable.
Stephen Hines651f13c2014-04-23 16:59:28 -07009077 if (DC->getRedeclContext()->isFileContext() && VD->isExternallyVisible())
Rafael Espindola4c8cba82013-02-22 17:59:16 +00009078 AddPushedVisibilityAttribute(VD);
9079
Stephen Hines651f13c2014-04-23 16:59:28 -07009080 // FIXME: Warn on unused templates.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009081 if (VD->isFileVarDecl() && !VD->getDescribedVarTemplate() &&
9082 !isa<VarTemplatePartialSpecializationDecl>(VD))
Rafael Espindola6769ccb2013-01-03 04:29:20 +00009083 MarkUnusedFileScopedDecl(VD);
9084
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00009085 // Now we have parsed the initializer and can update the table of magic
9086 // tag values.
Rafael Espindolada844b32013-01-03 04:05:19 +00009087 if (!VD->hasAttr<TypeTagForDatatypeAttr>() ||
9088 !VD->getType()->isIntegralOrEnumerationType())
9089 return;
9090
Stephen Hines651f13c2014-04-23 16:59:28 -07009091 for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) {
Rafael Espindolada844b32013-01-03 04:05:19 +00009092 const Expr *MagicValueExpr = VD->getInit();
9093 if (!MagicValueExpr) {
9094 continue;
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00009095 }
Rafael Espindolada844b32013-01-03 04:05:19 +00009096 llvm::APSInt MagicValueInt;
9097 if (!MagicValueExpr->isIntegerConstantExpr(MagicValueInt, Context)) {
9098 Diag(I->getRange().getBegin(),
9099 diag::err_type_tag_for_datatype_not_ice)
9100 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
9101 continue;
9102 }
9103 if (MagicValueInt.getActiveBits() > 64) {
9104 Diag(I->getRange().getBegin(),
9105 diag::err_type_tag_for_datatype_too_large)
9106 << LangOpts.CPlusPlus << MagicValueExpr->getSourceRange();
9107 continue;
9108 }
9109 uint64_t MagicValue = MagicValueInt.getZExtValue();
9110 RegisterTypeTagForDatatype(I->getArgumentKind(),
9111 MagicValue,
9112 I->getMatchingCType(),
9113 I->getLayoutCompatible(),
9114 I->getMustBeNull());
Dmitri Gribenko0d5a0692012-08-17 00:08:38 +00009115 }
Richard Smith483b9f32011-02-21 20:05:19 +00009116}
9117
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009118Sema::DeclGroupPtrTy Sema::FinalizeDeclaratorGroup(Scope *S, const DeclSpec &DS,
9119 ArrayRef<Decl *> Group) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00009120 SmallVector<Decl*, 8> Decls;
Eli Friedmanc1dc6532009-05-29 01:49:24 +00009121
9122 if (DS.isTypeSpecOwned())
John McCallb3d87482010-08-24 05:47:05 +00009123 Decls.push_back(DS.getRepAsDecl());
Eli Friedmanc1dc6532009-05-29 01:49:24 +00009124
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009125 DeclaratorDecl *FirstDeclaratorInGroup = nullptr;
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009126 for (unsigned i = 0, e = Group.size(); i != e; ++i)
David Majnemeraa824612013-09-17 23:57:10 +00009127 if (Decl *D = Group[i]) {
9128 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D))
9129 if (!FirstDeclaratorInGroup)
9130 FirstDeclaratorInGroup = DD;
Richard Smith406c38e2011-02-23 00:37:57 +00009131 Decls.push_back(D);
David Majnemeraa824612013-09-17 23:57:10 +00009132 }
Richard Smith406c38e2011-02-23 00:37:57 +00009133
Eli Friedman5e867c82013-07-10 00:30:46 +00009134 if (DeclSpec::isDeclRep(DS.getTypeSpecType())) {
David Majnemeraa824612013-09-17 23:57:10 +00009135 if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) {
Stephen Hines651f13c2014-04-23 16:59:28 -07009136 HandleTagNumbering(*this, Tag, S);
David Majnemeraa824612013-09-17 23:57:10 +00009137 if (!Tag->hasNameForLinkage() && !Tag->hasDeclaratorForAnonDecl())
9138 Tag->setDeclaratorForAnonDecl(FirstDeclaratorInGroup);
9139 }
Eli Friedman5e867c82013-07-10 00:30:46 +00009140 }
David Blaikie66cff722012-11-14 01:52:05 +00009141
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009142 return BuildDeclaratorGroup(Decls, DS.containsPlaceholderType());
Richard Smith406c38e2011-02-23 00:37:57 +00009143}
9144
9145/// BuildDeclaratorGroup - convert a list of declarations into a declaration
9146/// group, performing any necessary semantic checking.
9147Sema::DeclGroupPtrTy
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009148Sema::BuildDeclaratorGroup(llvm::MutableArrayRef<Decl *> Group,
Richard Smith406c38e2011-02-23 00:37:57 +00009149 bool TypeMayContainAuto) {
Richard Smith34b41d92011-02-20 03:19:35 +00009150 // C++0x [dcl.spec.auto]p7:
9151 // If the type deduced for the template parameter U is not the same in each
9152 // deduction, the program is ill-formed.
9153 // FIXME: When initializer-list support is added, a distinction is needed
9154 // between the deduced type U and the deduced type which 'auto' stands for.
9155 // auto a = 0, b = { 1, 2, 3 };
9156 // is legal because the deduced type U is 'int' in both cases.
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009157 if (TypeMayContainAuto && Group.size() > 1) {
Richard Smith34b41d92011-02-20 03:19:35 +00009158 QualType Deduced;
9159 CanQualType DeducedCanon;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009160 VarDecl *DeducedDecl = nullptr;
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009161 for (unsigned i = 0, e = Group.size(); i != e; ++i) {
Richard Smith34b41d92011-02-20 03:19:35 +00009162 if (VarDecl *D = dyn_cast<VarDecl>(Group[i])) {
9163 AutoType *AT = D->getType()->getContainedAutoType();
Richard Smith406c38e2011-02-23 00:37:57 +00009164 // Don't reissue diagnostics when instantiating a template.
9165 if (AT && D->isInvalidDecl())
9166 break;
Richard Smithdc7a4f52013-04-30 13:56:41 +00009167 QualType U = AT ? AT->getDeducedType() : QualType();
9168 if (!U.isNull()) {
Richard Smith34b41d92011-02-20 03:19:35 +00009169 CanQualType UCanon = Context.getCanonicalType(U);
9170 if (Deduced.isNull()) {
9171 Deduced = U;
9172 DeducedCanon = UCanon;
9173 DeducedDecl = D;
9174 } else if (DeducedCanon != UCanon) {
Richard Smith406c38e2011-02-23 00:37:57 +00009175 Diag(D->getTypeSourceInfo()->getTypeLoc().getBeginLoc(),
9176 diag::err_auto_different_deductions)
Richard Smithffd015e2013-05-04 04:19:27 +00009177 << (AT->isDecltypeAuto() ? 1 : 0)
Richard Smith34b41d92011-02-20 03:19:35 +00009178 << Deduced << DeducedDecl->getDeclName()
9179 << U << D->getDeclName()
9180 << DeducedDecl->getInit()->getSourceRange()
9181 << D->getInit()->getSourceRange();
Richard Smith406c38e2011-02-23 00:37:57 +00009182 D->setInvalidDecl();
Richard Smith34b41d92011-02-20 03:19:35 +00009183 break;
9184 }
9185 }
9186 }
9187 }
9188 }
9189
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009190 ActOnDocumentableDecls(Group);
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009191
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009192 return DeclGroupPtrTy::make(
9193 DeclGroupRef::Create(Context, Group.data(), Group.size()));
Reid Spencer5f016e22007-07-11 17:01:13 +00009194}
Steve Naroffe1223f72007-08-28 03:03:08 +00009195
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009196void Sema::ActOnDocumentableDecl(Decl *D) {
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009197 ActOnDocumentableDecls(D);
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009198}
9199
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009200void Sema::ActOnDocumentableDecls(ArrayRef<Decl *> Group) {
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009201 // Don't parse the comment if Doxygen diagnostics are ignored.
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009202 if (Group.empty() || !Group[0])
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009203 return;
9204
9205 if (Diags.getDiagnosticLevel(diag::warn_doc_param_not_found,
9206 Group[0]->getLocation())
9207 == DiagnosticsEngine::Ignored)
9208 return;
9209
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009210 if (Group.size() >= 2) {
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009211 // This is a decl group. Normally it will contain only declarations
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009212 // produced from declarator list. But in case we have any definitions or
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009213 // additional declaration references:
9214 // 'typedef struct S {} S;'
9215 // 'typedef struct S *S;'
9216 // 'struct S *pS;'
9217 // FinalizeDeclaratorGroup adds these as separate declarations.
9218 Decl *MaybeTagDecl = Group[0];
9219 if (MaybeTagDecl && isa<TagDecl>(MaybeTagDecl)) {
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009220 Group = Group.slice(1);
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009221 }
9222 }
9223
9224 // See if there are any new comments that are not attached to a decl.
9225 ArrayRef<RawComment *> Comments = Context.getRawCommentList().getComments();
9226 if (!Comments.empty() &&
9227 !Comments.back()->isAttached()) {
9228 // There is at least one comment that not attached to a decl.
9229 // Maybe it should be attached to one of these decls?
9230 //
9231 // Note that this way we pick up not only comments that precede the
9232 // declaration, but also comments that *follow* the declaration -- thanks to
9233 // the lookahead in the lexer: we've consumed the semicolon and looked
9234 // ahead through comments.
Rafael Espindola4549d7f2013-07-09 12:05:01 +00009235 for (unsigned i = 0, e = Group.size(); i != e; ++i)
Dmitri Gribenko19523542012-09-29 11:40:46 +00009236 Context.getCommentForDecl(Group[i], &PP);
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +00009237 }
9238}
Chris Lattner682bf922009-03-29 16:50:03 +00009239
Chris Lattner04421082008-04-08 04:40:51 +00009240/// ActOnParamDeclarator - Called from Parser::ParseFunctionDeclarator()
9241/// to introduce parameters into function prototype scope.
John McCalld226f652010-08-21 09:40:31 +00009242Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) {
Chris Lattner985abd92008-06-26 06:49:43 +00009243 const DeclSpec &DS = D.getDeclSpec();
Douglas Gregor584049d2008-12-15 23:53:10 +00009244
Chris Lattner04421082008-04-08 04:40:51 +00009245 // Verify C99 6.7.5.3p2: The only SCS allowed is 'register'.
Faisal Valifad9e132013-09-26 19:54:12 +00009246
Peter Collingbourne7a8a2e32011-10-21 11:55:09 +00009247 // C++03 [dcl.stc]p2 also permits 'auto'.
John McCalld931b082010-08-26 03:08:43 +00009248 VarDecl::StorageClass StorageClass = SC_None;
Daniel Dunbar33ad0122008-09-03 21:54:21 +00009249 if (DS.getStorageClassSpec() == DeclSpec::SCS_register) {
John McCalld931b082010-08-26 03:08:43 +00009250 StorageClass = SC_Register;
David Blaikie4e4d0842012-03-11 07:00:24 +00009251 } else if (getLangOpts().CPlusPlus &&
Peter Collingbourne7a8a2e32011-10-21 11:55:09 +00009252 DS.getStorageClassSpec() == DeclSpec::SCS_auto) {
9253 StorageClass = SC_Auto;
Daniel Dunbar33ad0122008-09-03 21:54:21 +00009254 } else if (DS.getStorageClassSpec() != DeclSpec::SCS_unspecified) {
Chris Lattner04421082008-04-08 04:40:51 +00009255 Diag(DS.getStorageClassSpecLoc(),
9256 diag::err_invalid_storage_class_in_func_decl);
Chris Lattner985abd92008-06-26 06:49:43 +00009257 D.getMutableDeclSpec().ClearStorageClassSpecs();
Chris Lattner04421082008-04-08 04:40:51 +00009258 }
Eli Friedman63054b32009-04-19 20:27:55 +00009259
Richard Smithec642442013-04-12 22:46:28 +00009260 if (DeclSpec::TSCS TSCS = DS.getThreadStorageClassSpec())
9261 Diag(DS.getThreadStorageClassSpecLoc(), diag::err_invalid_thread)
9262 << DeclSpec::getSpecifierName(TSCS);
9263 if (DS.isConstexprSpecified())
9264 Diag(DS.getConstexprSpecLoc(), diag::err_invalid_constexpr)
Richard Smithaf1fc7a2011-08-15 21:04:07 +00009265 << 0;
Eli Friedman63054b32009-04-19 20:27:55 +00009266
Richard Smithec642442013-04-12 22:46:28 +00009267 DiagnoseFunctionSpecifiers(DS);
Eli Friedman85a53192009-04-07 19:37:57 +00009268
Argyrios Kyrtzidis32153982011-06-28 03:01:15 +00009269 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
John McCallbf1a0282010-06-04 23:28:52 +00009270 QualType parmDeclType = TInfo->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00009271
David Blaikie4e4d0842012-03-11 07:00:24 +00009272 if (getLangOpts().CPlusPlus) {
Douglas Gregora8bc8c92010-12-23 22:44:42 +00009273 // Check that there are no default arguments inside the type of this
9274 // parameter.
9275 CheckExtraCXXDefaultArguments(D);
Douglas Gregora8bc8c92010-12-23 22:44:42 +00009276
9277 // Parameter declarators cannot be qualified (C++ [dcl.meaning]p1).
9278 if (D.getCXXScopeSpec().isSet()) {
9279 Diag(D.getIdentifierLoc(), diag::err_qualified_param_declarator)
9280 << D.getCXXScopeSpec().getRange();
9281 D.getCXXScopeSpec().clear();
9282 }
Douglas Gregor402abb52009-05-28 23:31:59 +00009283 }
9284
Sean Hunt7533a5b2010-11-03 01:07:06 +00009285 // Ensure we have a valid name
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009286 IdentifierInfo *II = nullptr;
Sean Hunt7533a5b2010-11-03 01:07:06 +00009287 if (D.hasName()) {
9288 II = D.getIdentifier();
9289 if (!II) {
9290 Diag(D.getIdentifierLoc(), diag::err_bad_parameter_name)
Stephen Hines651f13c2014-04-23 16:59:28 -07009291 << GetNameForDeclarator(D).getName();
Sean Hunt7533a5b2010-11-03 01:07:06 +00009292 D.setInvalidType(true);
9293 }
9294 }
9295
Chris Lattnerd84aac12010-02-22 00:40:25 +00009296 // Check for redeclaration of parameters, e.g. int foo(int x, int x);
Chris Lattnercf79b012009-01-21 02:38:50 +00009297 if (II) {
John McCall10f28732010-03-18 06:42:38 +00009298 LookupResult R(*this, II, D.getIdentifierLoc(), LookupOrdinaryName,
9299 ForRedeclaration);
9300 LookupName(R, S);
9301 if (R.isSingleResult()) {
9302 NamedDecl *PrevDecl = R.getFoundDecl();
Chris Lattnercf79b012009-01-21 02:38:50 +00009303 if (PrevDecl->isTemplateParameter()) {
9304 // Maybe we will complain about the shadowed template parameter.
9305 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
9306 // Just pretend that we didn't see the previous declaration.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009307 PrevDecl = nullptr;
John McCalld226f652010-08-21 09:40:31 +00009308 } else if (S->isDeclScope(PrevDecl)) {
Chris Lattnercf79b012009-01-21 02:38:50 +00009309 Diag(D.getIdentifierLoc(), diag::err_param_redefinition) << II;
Chris Lattnerd84aac12010-02-22 00:40:25 +00009310 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
Chris Lattner04421082008-04-08 04:40:51 +00009311
Chris Lattnercf79b012009-01-21 02:38:50 +00009312 // Recover by removing the name
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009313 II = nullptr;
9314 D.SetIdentifier(nullptr, D.getIdentifierLoc());
Fariborz Jahanian9a66c302010-02-12 21:53:14 +00009315 D.setInvalidType(true);
Chris Lattnercf79b012009-01-21 02:38:50 +00009316 }
Chris Lattner04421082008-04-08 04:40:51 +00009317 }
Reid Spencer5f016e22007-07-11 17:01:13 +00009318 }
Steve Naroff6a9f3e32007-08-07 22:44:21 +00009319
John McCall7a9813c2010-01-22 00:28:27 +00009320 // Temporarily put parameter variables in the translation unit, not
9321 // the enclosing context. This prevents them from accidentally
9322 // looking like class members in C++.
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00009323 ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(),
Daniel Dunbar96a00142012-03-09 18:35:03 +00009324 D.getLocStart(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009325 D.getIdentifierLoc(), II,
9326 parmDeclType, TInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00009327 StorageClass);
Mike Stump1eb44332009-09-09 15:08:12 +00009328
Chris Lattnereaaebc72009-04-25 08:06:05 +00009329 if (D.isInvalidType())
John McCallfb44de92011-05-01 22:35:37 +00009330 New->setInvalidDecl();
9331
9332 assert(S->isFunctionPrototypeScope());
9333 assert(S->getFunctionPrototypeDepth() >= 1);
9334 New->setScopeInfo(S->getFunctionPrototypeDepth() - 1,
9335 S->getNextFunctionPrototypeIndex());
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00009336
Douglas Gregor44b43212008-12-11 16:49:14 +00009337 // Add the parameter declaration into this scope.
John McCalld226f652010-08-21 09:40:31 +00009338 S->AddDecl(New);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00009339 if (II)
Douglas Gregor44b43212008-12-11 16:49:14 +00009340 IdResolver.AddDecl(New);
Nate Begemanb7894b52008-02-17 21:20:31 +00009341
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009342 ProcessDeclAttributes(S, New, D);
Mike Stumpea000bf2009-04-30 00:19:40 +00009343
Douglas Gregore3895852011-09-12 18:37:38 +00009344 if (D.getDeclSpec().isModulePrivateSpecified())
9345 Diag(New->getLocation(), diag::err_module_private_local)
9346 << 1 << New->getDeclName()
9347 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
9348 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
9349
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00009350 if (New->hasAttr<BlocksAttr>()) {
Mike Stumpea000bf2009-04-30 00:19:40 +00009351 Diag(New->getLocation(), diag::err_block_on_nonlocal);
9352 }
John McCalld226f652010-08-21 09:40:31 +00009353 return New;
Reid Spencer5f016e22007-07-11 17:01:13 +00009354}
Fariborz Jahanian306d68f2007-11-08 23:49:49 +00009355
John McCall82dc0092010-06-04 11:21:44 +00009356/// \brief Synthesizes a variable for a parameter arising from a
9357/// typedef.
9358ParmVarDecl *Sema::BuildParmVarDeclForTypedef(DeclContext *DC,
9359 SourceLocation Loc,
9360 QualType T) {
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009361 /* FIXME: setting StartLoc == Loc.
9362 Would it be worth to modify callers so as to provide proper source
9363 location for the unnamed parameters, embedding the parameter's type? */
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009364 ParmVarDecl *Param = ParmVarDecl::Create(Context, DC, Loc, Loc, nullptr,
John McCall82dc0092010-06-04 11:21:44 +00009365 T, Context.getTrivialTypeSourceInfo(T, Loc),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009366 SC_None, nullptr);
John McCall82dc0092010-06-04 11:21:44 +00009367 Param->setImplicit();
9368 return Param;
9369}
9370
John McCallfbce0e12010-08-24 09:05:15 +00009371void Sema::DiagnoseUnusedParameters(ParmVarDecl * const *Param,
9372 ParmVarDecl * const *ParamEnd) {
John McCallfbce0e12010-08-24 09:05:15 +00009373 // Don't diagnose unused-parameter errors in template instantiations; we
9374 // will already have done so in the template itself.
9375 if (!ActiveTemplateInstantiations.empty())
9376 return;
9377
9378 for (; Param != ParamEnd; ++Param) {
Eli Friedmandd9d6452012-01-13 23:41:25 +00009379 if (!(*Param)->isReferenced() && (*Param)->getDeclName() &&
John McCallfbce0e12010-08-24 09:05:15 +00009380 !(*Param)->hasAttr<UnusedAttr>()) {
9381 Diag((*Param)->getLocation(), diag::warn_unused_parameter)
9382 << (*Param)->getDeclName();
9383 }
9384 }
9385}
9386
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009387void Sema::DiagnoseSizeOfParametersAndReturnValue(ParmVarDecl * const *Param,
9388 ParmVarDecl * const *ParamEnd,
9389 QualType ReturnTy,
9390 NamedDecl *D) {
Argyrios Kyrtzidis1380a142010-11-18 00:20:36 +00009391 if (LangOpts.NumLargeByValueCopy == 0) // No check.
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009392 return;
9393
Argyrios Kyrtzidis1380a142010-11-18 00:20:36 +00009394 // Warn if the return value is pass-by-value and larger than the specified
9395 // threshold.
Eli Friedmand18840d2012-01-09 23:46:59 +00009396 if (!ReturnTy->isDependentType() && ReturnTy.isPODType(Context)) {
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009397 unsigned Size = Context.getTypeSizeInChars(ReturnTy).getQuantity();
Argyrios Kyrtzidis1380a142010-11-18 00:20:36 +00009398 if (Size > LangOpts.NumLargeByValueCopy)
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009399 Diag(D->getLocation(), diag::warn_return_value_size)
9400 << D->getDeclName() << Size;
9401 }
9402
Argyrios Kyrtzidis1380a142010-11-18 00:20:36 +00009403 // Warn if any parameter is pass-by-value and larger than the specified
9404 // threshold.
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009405 for (; Param != ParamEnd; ++Param) {
9406 QualType T = (*Param)->getType();
Eli Friedmand18840d2012-01-09 23:46:59 +00009407 if (T->isDependentType() || !T.isPODType(Context))
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009408 continue;
9409 unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
Argyrios Kyrtzidis1380a142010-11-18 00:20:36 +00009410 if (Size > LangOpts.NumLargeByValueCopy)
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009411 Diag((*Param)->getLocation(), diag::warn_parameter_size)
9412 << (*Param)->getDeclName() << Size;
9413 }
9414}
9415
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009416ParmVarDecl *Sema::CheckParameter(DeclContext *DC, SourceLocation StartLoc,
9417 SourceLocation NameLoc, IdentifierInfo *Name,
9418 QualType T, TypeSourceInfo *TSInfo,
Rafael Espindolad2615cc2013-04-03 19:27:57 +00009419 VarDecl::StorageClass StorageClass) {
Reid Klecknerc910d4c2013-06-08 18:19:52 +00009420 // In ARC, infer a lifetime qualifier for appropriate parameter types.
David Blaikie4e4d0842012-03-11 07:00:24 +00009421 if (getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00009422 T.getObjCLifetime() == Qualifiers::OCL_None &&
Reid Klecknerc910d4c2013-06-08 18:19:52 +00009423 T->isObjCLifetimeType()) {
9424
9425 Qualifiers::ObjCLifetime lifetime;
9426
9427 // Special cases for arrays:
9428 // - if it's const, use __unsafe_unretained
9429 // - otherwise, it's an error
9430 if (T->isArrayType()) {
9431 if (!T.isConstQualified()) {
9432 DelayedDiagnostics.add(
9433 sema::DelayedDiagnostic::makeForbiddenType(
Fariborz Jahanian175fb102011-10-03 22:11:57 +00009434 NameLoc, diag::err_arc_array_param_no_ownership, T, false));
Reid Klecknerc910d4c2013-06-08 18:19:52 +00009435 }
9436 lifetime = Qualifiers::OCL_ExplicitNone;
9437 } else {
9438 lifetime = T->getObjCARCImplicitLifetime();
9439 }
9440 T = Context.getLifetimeQualifiedType(T, lifetime);
John McCallf85e1932011-06-15 23:02:42 +00009441 }
9442
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00009443 ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name,
Douglas Gregor79e6bd32011-07-12 04:42:08 +00009444 Context.getAdjustedParameterType(T),
9445 TSInfo,
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009446 StorageClass, nullptr);
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00009447
9448 // Parameters can not be abstract class types.
9449 // For record types, this is done by the AbstractClassUsageDiagnoser once
9450 // the class has been completely parsed.
9451 if (!CurContext->isRecord() &&
9452 RequireNonAbstractType(NameLoc, T, diag::err_abstract_type_in_decl,
9453 AbstractParamType))
9454 New->setInvalidDecl();
9455
9456 // Parameter declarators cannot be interface types. All ObjC objects are
9457 // passed by reference.
John McCallc12c5bb2010-05-15 11:32:37 +00009458 if (T->isObjCObjectType()) {
Fariborz Jahanian1de6a6c2012-05-09 21:49:29 +00009459 SourceLocation TypeEndLoc = TSInfo->getTypeLoc().getLocEnd();
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00009460 Diag(NameLoc,
Fariborz Jahanian8eaefdc2011-07-26 17:58:54 +00009461 diag::err_object_cannot_be_passed_returned_by_value) << 1 << T
Fariborz Jahanian1de6a6c2012-05-09 21:49:29 +00009462 << FixItHint::CreateInsertion(TypeEndLoc, "*");
Fariborz Jahanian8eaefdc2011-07-26 17:58:54 +00009463 T = Context.getObjCObjectPointerType(T);
9464 New->setType(T);
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00009465 }
9466
9467 // ISO/IEC TR 18037 S6.7.3: "The type of an object with automatic storage
9468 // duration shall not be qualified by an address-space qualifier."
9469 // Since all parameters have automatic store duration, they can not have
9470 // an address space.
9471 if (T.getAddressSpace() != 0) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009472 // OpenCL allows function arguments declared to be an array of a type
9473 // to be qualified with an address space.
9474 if (!(getLangOpts().OpenCL && T->isArrayType())) {
9475 Diag(NameLoc, diag::err_arg_with_address_space);
9476 New->setInvalidDecl();
9477 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00009478 }
9479
9480 return New;
9481}
9482
Douglas Gregora3a83512009-04-01 23:51:29 +00009483void Sema::ActOnFinishKNRParamDeclarations(Scope *S, Declarator &D,
9484 SourceLocation LocAfterDecls) {
Abramo Bagnara075f8f12010-12-10 16:29:40 +00009485 DeclaratorChunk::FunctionTypeInfo &FTI = D.getFunctionTypeInfo();
Chris Lattner04421082008-04-08 04:40:51 +00009486
Reid Spencer5f016e22007-07-11 17:01:13 +00009487 // Verify 6.9.1p6: 'every identifier in the identifier list shall be declared'
9488 // for a K&R function.
9489 if (!FTI.hasPrototype) {
Stephen Hines651f13c2014-04-23 16:59:28 -07009490 for (int i = FTI.NumParams; i != 0; /* decrement in loop */) {
Douglas Gregor26103482009-04-02 03:14:12 +00009491 --i;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009492 if (FTI.Params[i].Param == nullptr) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00009493 SmallString<256> Code;
Stephen Hines651f13c2014-04-23 16:59:28 -07009494 llvm::raw_svector_ostream(Code)
9495 << " int " << FTI.Params[i].Ident->getName() << ";\n";
9496 Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
9497 << FTI.Params[i].Ident
9498 << FixItHint::CreateInsertion(LocAfterDecls, Code.str());
Douglas Gregora3a83512009-04-01 23:51:29 +00009499
Reid Spencer5f016e22007-07-11 17:01:13 +00009500 // Implicitly declare the argument as type 'int' for lack of a better
9501 // type.
John McCall0b7e6782011-03-24 11:26:52 +00009502 AttributeFactory attrs;
9503 DeclSpec DS(attrs);
Chris Lattner04421082008-04-08 04:40:51 +00009504 const char* PrevSpec; // unused
John McCallfec54012009-08-03 20:12:06 +00009505 unsigned DiagID; // unused
Stephen Hines651f13c2014-04-23 16:59:28 -07009506 DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
9507 DiagID, Context.getPrintingPolicy());
Abramo Bagnara16467f22012-10-04 21:38:29 +00009508 // Use the identifier location for the type source range.
Stephen Hines651f13c2014-04-23 16:59:28 -07009509 DS.SetRangeStart(FTI.Params[i].IdentLoc);
9510 DS.SetRangeEnd(FTI.Params[i].IdentLoc);
Chris Lattner04421082008-04-08 04:40:51 +00009511 Declarator ParamD(DS, Declarator::KNRTypeListContext);
Stephen Hines651f13c2014-04-23 16:59:28 -07009512 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
9513 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD);
Reid Spencer5f016e22007-07-11 17:01:13 +00009514 }
9515 }
Mike Stump1eb44332009-09-09 15:08:12 +00009516 }
Douglas Gregorbe109b32009-01-23 16:23:13 +00009517}
9518
Richard Smith87162c22012-04-17 22:30:01 +00009519Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009520 assert(getCurFunctionDecl() == nullptr && "Function parsing confused");
Abramo Bagnara075f8f12010-12-10 16:29:40 +00009521 assert(D.isFunctionDeclarator() && "Not a function declarator!");
Douglas Gregor584049d2008-12-15 23:53:10 +00009522 Scope *ParentScope = FnBodyScope->getParent();
Steve Naroffadbbd0c2008-01-14 20:51:29 +00009523
Douglas Gregor45fa5602011-11-07 20:56:01 +00009524 D.setFunctionDefinitionKind(FDK_Definition);
Benjamin Kramer5354e772012-08-23 23:38:35 +00009525 Decl *DP = HandleDeclarator(ParentScope, D, MultiTemplateParamsArg());
Chris Lattner682bf922009-03-29 16:50:03 +00009526 return ActOnStartOfFunctionDef(FnBodyScope, DP);
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +00009527}
9528
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009529void Sema::ActOnFinishInlineMethodDef(CXXMethodDecl *D) {
9530 Consumer.HandleInlineMethodDefinition(D);
9531}
9532
Anders Carlsson8a0086c2012-12-18 01:29:20 +00009533static bool ShouldWarnAboutMissingPrototype(const FunctionDecl *FD,
9534 const FunctionDecl*& PossibleZeroParamPrototype) {
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009535 // Don't warn about invalid declarations.
9536 if (FD->isInvalidDecl())
9537 return false;
Anders Carlsson63fb6732009-12-09 03:44:46 +00009538
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009539 // Or declarations that aren't global.
9540 if (!FD->isGlobal())
9541 return false;
Anders Carlsson63fb6732009-12-09 03:44:46 +00009542
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009543 // Don't warn about C++ member functions.
9544 if (isa<CXXMethodDecl>(FD))
9545 return false;
Anders Carlsson63fb6732009-12-09 03:44:46 +00009546
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009547 // Don't warn about 'main'.
9548 if (FD->isMain())
9549 return false;
Anders Carlsson63fb6732009-12-09 03:44:46 +00009550
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009551 // Don't warn about inline functions.
John McCall850d3b32011-03-22 07:16:37 +00009552 if (FD->isInlined())
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009553 return false;
Anders Carlsson63fb6732009-12-09 03:44:46 +00009554
9555 // Don't warn about function templates.
9556 if (FD->getDescribedFunctionTemplate())
9557 return false;
9558
9559 // Don't warn about function template specializations.
9560 if (FD->isFunctionTemplateSpecialization())
9561 return false;
9562
Tanya Lattnera95b4f72012-07-26 00:08:28 +00009563 // Don't warn for OpenCL kernels.
9564 if (FD->hasAttr<OpenCLKernelAttr>())
9565 return false;
Richard Smitha41c97a2013-09-20 01:15:31 +00009566
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009567 bool MissingPrototype = true;
Douglas Gregoref96ee02012-01-14 16:38:05 +00009568 for (const FunctionDecl *Prev = FD->getPreviousDecl();
9569 Prev; Prev = Prev->getPreviousDecl()) {
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009570 // Ignore any declarations that occur in function or method
9571 // scope, because they aren't visible from the header.
Richard Smitha41c97a2013-09-20 01:15:31 +00009572 if (Prev->getLexicalDeclContext()->isFunctionOrMethod())
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009573 continue;
Richard Smitha41c97a2013-09-20 01:15:31 +00009574
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009575 MissingPrototype = !Prev->getType()->isFunctionProtoType();
Anders Carlsson8a0086c2012-12-18 01:29:20 +00009576 if (FD->getNumParams() == 0)
9577 PossibleZeroParamPrototype = Prev;
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009578 break;
9579 }
Richard Smitha41c97a2013-09-20 01:15:31 +00009580
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009581 return MissingPrototype;
9582}
9583
Rafael Espindolab1c0e202013-10-22 21:39:03 +00009584void
9585Sema::CheckForFunctionRedefinition(FunctionDecl *FD,
9586 const FunctionDecl *EffectiveDefinition) {
Francois Pichetd4a0caf2011-04-22 23:20:44 +00009587 // Don't complain if we're in GNU89 mode and the previous definition
9588 // was an extern inline function.
Rafael Espindolab1c0e202013-10-22 21:39:03 +00009589 const FunctionDecl *Definition = EffectiveDefinition;
9590 if (!Definition)
9591 if (!FD->isDefined(Definition))
9592 return;
9593
9594 if (canRedefineFunction(Definition, getLangOpts()))
Rafael Espindolaa2770ab2013-10-22 15:18:22 +00009595 return;
9596
9597 if (getLangOpts().GNUMode && Definition->isInlineSpecified() &&
9598 Definition->getStorageClass() == SC_Extern)
9599 Diag(FD->getLocation(), diag::err_redefinition_extern_inline)
David Blaikie4e4d0842012-03-11 07:00:24 +00009600 << FD->getDeclName() << getLangOpts().CPlusPlus;
Rafael Espindolaa2770ab2013-10-22 15:18:22 +00009601 else
9602 Diag(FD->getLocation(), diag::err_redefinition) << FD->getDeclName();
9603
9604 Diag(Definition->getLocation(), diag::note_previous_definition);
9605 FD->setInvalidDecl();
Francois Pichetd4a0caf2011-04-22 23:20:44 +00009606}
Faisal Valic00e4192013-11-07 05:17:06 +00009607
9608
Faisal Valibef582b2013-10-23 16:10:50 +00009609static void RebuildLambdaScopeInfo(CXXMethodDecl *CallOperator,
9610 Sema &S) {
9611 CXXRecordDecl *const LambdaClass = CallOperator->getParent();
Faisal Valid78d6592013-11-12 01:40:44 +00009612
9613 LambdaScopeInfo *LSI = S.PushLambdaScope();
Faisal Valibef582b2013-10-23 16:10:50 +00009614 LSI->CallOperator = CallOperator;
9615 LSI->Lambda = LambdaClass;
Stephen Hines651f13c2014-04-23 16:59:28 -07009616 LSI->ReturnType = CallOperator->getReturnType();
Faisal Valibef582b2013-10-23 16:10:50 +00009617 const LambdaCaptureDefault LCD = LambdaClass->getLambdaCaptureDefault();
9618
9619 if (LCD == LCD_None)
9620 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
9621 else if (LCD == LCD_ByCopy)
9622 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
9623 else if (LCD == LCD_ByRef)
9624 LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;
9625 DeclarationNameInfo DNI = CallOperator->getNameInfo();
9626
9627 LSI->IntroducerRange = DNI.getCXXOperatorNameRange();
9628 LSI->Mutable = !CallOperator->isConst();
9629
Faisal Valic00e4192013-11-07 05:17:06 +00009630 // Add the captures to the LSI so they can be noted as already
9631 // captured within tryCaptureVar.
Stephen Hines651f13c2014-04-23 16:59:28 -07009632 for (const auto &C : LambdaClass->captures()) {
9633 if (C.capturesVariable()) {
9634 VarDecl *VD = C.getCapturedVar();
Faisal Valic00e4192013-11-07 05:17:06 +00009635 if (VD->isInitCapture())
9636 S.CurrentInstantiationScope->InstantiatedLocal(VD, VD);
9637 QualType CaptureType = VD->getType();
Stephen Hines651f13c2014-04-23 16:59:28 -07009638 const bool ByRef = C.getCaptureKind() == LCK_ByRef;
Faisal Valic00e4192013-11-07 05:17:06 +00009639 LSI->addCapture(VD, /*IsBlock*/false, ByRef,
Stephen Hines651f13c2014-04-23 16:59:28 -07009640 /*RefersToEnclosingLocal*/true, C.getLocation(),
9641 /*EllipsisLoc*/C.isPackExpansion()
9642 ? C.getEllipsisLoc() : SourceLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009643 CaptureType, /*Expr*/ nullptr);
9644
Stephen Hines651f13c2014-04-23 16:59:28 -07009645 } else if (C.capturesThis()) {
9646 LSI->addThisCapture(/*Nested*/ false, C.getLocation(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009647 S.getCurrentThisType(), /*Expr*/ nullptr);
Faisal Valic00e4192013-11-07 05:17:06 +00009648 }
9649 }
Faisal Valibef582b2013-10-23 16:10:50 +00009650}
Francois Pichetd4a0caf2011-04-22 23:20:44 +00009651
John McCalld226f652010-08-21 09:40:31 +00009652Decl *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Decl *D) {
Anders Carlsson0ebb6d32009-10-29 15:46:07 +00009653 // Clear the last template instantiation error context.
9654 LastTemplateInstantiationErrorContext = ActiveTemplateInstantiation();
9655
Douglas Gregor52591bf2009-06-24 00:54:41 +00009656 if (!D)
9657 return D;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009658 FunctionDecl *FD = nullptr;
Mike Stump1eb44332009-09-09 15:08:12 +00009659
John McCalld226f652010-08-21 09:40:31 +00009660 if (FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D))
Douglas Gregord83d0402009-08-22 00:34:47 +00009661 FD = FunTmpl->getTemplatedDecl();
9662 else
John McCalld226f652010-08-21 09:40:31 +00009663 FD = cast<FunctionDecl>(D);
Faisal Valifad9e132013-09-26 19:54:12 +00009664 // If we are instantiating a generic lambda call operator, push
9665 // a LambdaScopeInfo onto the function stack. But use the information
Faisal Valibef582b2013-10-23 16:10:50 +00009666 // that's already been calculated (ActOnLambdaExpr) to prime the current
9667 // LambdaScopeInfo.
9668 // When the template operator is being specialized, the LambdaScopeInfo,
9669 // has to be properly restored so that tryCaptureVariable doesn't try
9670 // and capture any new variables. In addition when calculating potential
9671 // captures during transformation of nested lambdas, it is necessary to
9672 // have the LSI properly restored.
Faisal Vali998c5182013-09-29 20:15:45 +00009673 if (isGenericLambdaCallOperatorSpecialization(FD)) {
Faisal Valifad9e132013-09-26 19:54:12 +00009674 assert(ActiveTemplateInstantiations.size() &&
9675 "There should be an active template instantiation on the stack "
9676 "when instantiating a generic lambda!");
Faisal Valibef582b2013-10-23 16:10:50 +00009677 RebuildLambdaScopeInfo(cast<CXXMethodDecl>(D), *this);
Faisal Valifad9e132013-09-26 19:54:12 +00009678 }
9679 else
9680 // Enter a new function scope
9681 PushFunctionScope();
Mike Stump1eb44332009-09-09 15:08:12 +00009682
Douglas Gregor6fc17ff2008-10-29 15:10:40 +00009683 // See if this is a redefinition.
Francois Pichetd4a0caf2011-04-22 23:20:44 +00009684 if (!FD->isLateTemplateParsed())
9685 CheckForFunctionRedefinition(FD);
Douglas Gregor6fc17ff2008-10-29 15:10:40 +00009686
Douglas Gregorcda9c672009-02-16 17:45:42 +00009687 // Builtin functions cannot be defined.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00009688 if (unsigned BuiltinID = FD->getBuiltinID()) {
Rafael Espindolaad24ad42013-06-13 18:34:17 +00009689 if (!Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID) &&
9690 !Context.BuiltinInfo.isPredefinedRuntimeFunction(BuiltinID)) {
Douglas Gregorcda9c672009-02-16 17:45:42 +00009691 Diag(FD->getLocation(), diag::err_builtin_definition) << FD;
Douglas Gregor655753a2009-02-17 16:03:01 +00009692 FD->setInvalidDecl();
9693 }
Douglas Gregorcda9c672009-02-16 17:45:42 +00009694 }
9695
Eli Friedman7f0f5dc2009-03-04 07:30:59 +00009696 // The return type of a function definition must be complete
Douglas Gregore7450f52009-03-24 19:52:54 +00009697 // (C99 6.9.1p3, C++ [dcl.fct]p6).
Stephen Hines651f13c2014-04-23 16:59:28 -07009698 QualType ResultType = FD->getReturnType();
Douglas Gregore7450f52009-03-24 19:52:54 +00009699 if (!ResultType->isDependentType() && !ResultType->isVoidType() &&
Chris Lattner65e6a092009-04-29 05:12:23 +00009700 !FD->isInvalidDecl() &&
Douglas Gregore7450f52009-03-24 19:52:54 +00009701 RequireCompleteType(FD->getLocation(), ResultType,
9702 diag::err_func_def_incomplete_result))
Eli Friedman7f0f5dc2009-03-04 07:30:59 +00009703 FD->setInvalidDecl();
Eli Friedman7f0f5dc2009-03-04 07:30:59 +00009704
Douglas Gregor8499f3f2009-03-31 16:35:03 +00009705 // GNU warning -Wmissing-prototypes:
9706 // Warn if a global function is defined without a previous
9707 // prototype declaration. This warning is issued even if the
9708 // definition itself provides a prototype. The aim is to detect
9709 // global functions that fail to be declared in header files.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009710 const FunctionDecl *PossibleZeroParamPrototype = nullptr;
Anders Carlsson8a0086c2012-12-18 01:29:20 +00009711 if (ShouldWarnAboutMissingPrototype(FD, PossibleZeroParamPrototype)) {
Anders Carlsson9f89dd72009-12-09 03:30:09 +00009712 Diag(FD->getLocation(), diag::warn_missing_prototype) << FD;
Richard Smithac83a3c2013-06-25 20:34:17 +00009713
Anders Carlsson8a0086c2012-12-18 01:29:20 +00009714 if (PossibleZeroParamPrototype) {
Richard Smithac83a3c2013-06-25 20:34:17 +00009715 // We found a declaration that is not a prototype,
Anders Carlsson8a0086c2012-12-18 01:29:20 +00009716 // but that could be a zero-parameter prototype
Richard Smithac83a3c2013-06-25 20:34:17 +00009717 if (TypeSourceInfo *TI =
9718 PossibleZeroParamPrototype->getTypeSourceInfo()) {
9719 TypeLoc TL = TI->getTypeLoc();
9720 if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
9721 Diag(PossibleZeroParamPrototype->getLocation(),
9722 diag::note_declaration_not_a_prototype)
9723 << PossibleZeroParamPrototype
9724 << FixItHint::CreateInsertion(FTL.getRParenLoc(), "void");
9725 }
Anders Carlsson8a0086c2012-12-18 01:29:20 +00009726 }
9727 }
Douglas Gregor8499f3f2009-03-31 16:35:03 +00009728
Douglas Gregore2c31ff2009-05-15 17:59:04 +00009729 if (FnBodyScope)
9730 PushDeclContext(FnBodyScope, FD);
Anton Korobeynikov2f402702008-12-26 00:52:02 +00009731
Chris Lattner04421082008-04-08 04:40:51 +00009732 // Check the validity of our function parameters
Douglas Gregor82aa7132010-11-01 18:37:59 +00009733 CheckParmsForFunctionDef(FD->param_begin(), FD->param_end(),
9734 /*CheckParameterNames=*/true);
Chris Lattner04421082008-04-08 04:40:51 +00009735
9736 // Introduce our parameters into the function scope
Stephen Hines651f13c2014-04-23 16:59:28 -07009737 for (auto Param : FD->params()) {
Douglas Gregora8cc8ce2009-01-09 18:51:29 +00009738 Param->setOwningFunction(FD);
9739
Chris Lattner04421082008-04-08 04:40:51 +00009740 // If this has an identifier, add it to the scope stack.
John McCall053f4bd2010-03-22 09:20:08 +00009741 if (Param->getIdentifier() && FnBodyScope) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00009742 CheckShadow(FnBodyScope, Param);
John McCall053f4bd2010-03-22 09:20:08 +00009743
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +00009744 PushOnScopeChains(Param, FnBodyScope);
John McCall053f4bd2010-03-22 09:20:08 +00009745 }
Reid Spencer5f016e22007-07-11 17:01:13 +00009746 }
Chris Lattner04421082008-04-08 04:40:51 +00009747
James Molloy16f1f712012-02-29 10:24:19 +00009748 // If we had any tags defined in the function prototype,
9749 // introduce them into the function scope.
9750 if (FnBodyScope) {
Robert Wilhelm834c0582013-08-09 18:02:13 +00009751 for (ArrayRef<NamedDecl *>::iterator
9752 I = FD->getDeclsInPrototypeScope().begin(),
9753 E = FD->getDeclsInPrototypeScope().end();
9754 I != E; ++I) {
James Molloy16f1f712012-02-29 10:24:19 +00009755 NamedDecl *D = *I;
9756
9757 // Some of these decls (like enums) may have been pinned to the translation unit
9758 // for lack of a real context earlier. If so, remove from the translation unit
9759 // and reattach to the current context.
9760 if (D->getLexicalDeclContext() == Context.getTranslationUnitDecl()) {
9761 // Is the decl actually in the context?
Stephen Hines651f13c2014-04-23 16:59:28 -07009762 for (const auto *DI : Context.getTranslationUnitDecl()->decls()) {
9763 if (DI == D) {
James Molloy16f1f712012-02-29 10:24:19 +00009764 Context.getTranslationUnitDecl()->removeDecl(D);
9765 break;
9766 }
9767 }
9768 // Either way, reassign the lexical decl context to our FunctionDecl.
9769 D->setLexicalDeclContext(CurContext);
9770 }
9771
9772 // If the decl has a non-null name, make accessible in the current scope.
9773 if (!D->getName().empty())
9774 PushOnScopeChains(D, FnBodyScope, /*AddToContext=*/false);
9775
9776 // Similarly, dive into enums and fish their constants out, making them
9777 // accessible in this scope.
Stephen Hines651f13c2014-04-23 16:59:28 -07009778 if (auto *ED = dyn_cast<EnumDecl>(D)) {
9779 for (auto *EI : ED->enumerators())
9780 PushOnScopeChains(EI, FnBodyScope, /*AddToContext=*/false);
James Molloy16f1f712012-02-29 10:24:19 +00009781 }
9782 }
9783 }
9784
Richard Smith87162c22012-04-17 22:30:01 +00009785 // Ensure that the function's exception specification is instantiated.
9786 if (const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>())
9787 ResolveExceptionSpec(D->getLocation(), FPT);
9788
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009789 // dllimport cannot be applied to non-inline function definitions.
9790 if (FD->hasAttr<DLLImportAttr>() && !FD->isInlined() &&
9791 !FD->isTemplateInstantiation()) {
9792 assert(!FD->hasAttr<DLLExportAttr>());
9793 Diag(FD->getLocation(), diag::err_attribute_dllimport_function_definition);
9794 FD->setInvalidDecl();
9795 return D;
Anton Korobeynikov2f402702008-12-26 00:52:02 +00009796 }
Dmitri Gribenkoc41ace92012-08-14 17:17:18 +00009797 // We want to attach documentation to original Decl (which might be
9798 // a function template).
9799 ActOnDocumentableDecl(D);
Argyrios Kyrtzidisa9990e82012-12-14 06:54:03 +00009800 return D;
Reid Spencer5f016e22007-07-11 17:01:13 +00009801}
9802
Douglas Gregor5077c382010-05-15 06:01:05 +00009803/// \brief Given the set of return statements within a function body,
9804/// compute the variables that are subject to the named return value
9805/// optimization.
9806///
9807/// Each of the variables that is subject to the named return value
9808/// optimization will be marked as NRVO variables in the AST, and any
9809/// return statement that has a marked NRVO variable as its NRVO candidate can
9810/// use the named return value optimization.
9811///
9812/// This function applies a very simplistic algorithm for NRVO: if every return
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009813/// statement in the scope of a variable has the same NRVO candidate, that
9814/// candidate is an NRVO variable.
Douglas Gregorf8b7f712011-09-06 20:46:03 +00009815void Sema::computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) {
John McCall781472f2010-08-25 08:40:02 +00009816 ReturnStmt **Returns = Scope->Returns.data();
9817
John McCall781472f2010-08-25 08:40:02 +00009818 for (unsigned I = 0, E = Scope->Returns.size(); I != E; ++I) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009819 if (const VarDecl *NRVOCandidate = Returns[I]->getNRVOCandidate()) {
9820 if (!NRVOCandidate->isNRVOVariable())
9821 Returns[I]->setNRVOCandidate(nullptr);
9822 }
Douglas Gregor5077c382010-05-15 06:01:05 +00009823 }
Douglas Gregor5077c382010-05-15 06:01:05 +00009824}
9825
Stephen Hines651f13c2014-04-23 16:59:28 -07009826bool Sema::canDelayFunctionBody(const Declarator &D) {
9827 // We can't delay parsing the body of a constexpr function template (yet).
9828 if (D.getDeclSpec().isConstexprSpecified())
Richard Smithd1bac8d2012-11-27 21:31:01 +00009829 return false;
9830
Stephen Hines651f13c2014-04-23 16:59:28 -07009831 // We can't delay parsing the body of a function template with a deduced
9832 // return type (yet).
9833 if (D.getDeclSpec().containsPlaceholderType()) {
9834 // If the placeholder introduces a non-deduced trailing return type,
9835 // we can still delay parsing it.
9836 if (D.getNumTypeObjects()) {
9837 const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1);
9838 if (Outer.Kind == DeclaratorChunk::Function &&
9839 Outer.Fun.hasTrailingReturnType()) {
9840 QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
9841 return Ty.isNull() || !Ty->isUndeducedType();
9842 }
9843 }
9844 return false;
9845 }
Richard Smith1a5bd5d2012-11-19 21:13:18 +00009846
Stephen Hines651f13c2014-04-23 16:59:28 -07009847 return true;
9848}
Richard Smith1a5bd5d2012-11-19 21:13:18 +00009849
Stephen Hines651f13c2014-04-23 16:59:28 -07009850bool Sema::canSkipFunctionBody(Decl *D) {
Richard Smith1a5bd5d2012-11-19 21:13:18 +00009851 // We cannot skip the body of a function (or function template) which is
9852 // constexpr, since we may need to evaluate its body in order to parse the
9853 // rest of the file.
Richard Smith25d8c852013-05-10 04:31:10 +00009854 // We cannot skip the body of a function with an undeduced return type,
9855 // because any callers of that function need to know the type.
Stephen Hines651f13c2014-04-23 16:59:28 -07009856 if (const FunctionDecl *FD = D->getAsFunction())
9857 if (FD->isConstexpr() || FD->getReturnType()->isUndeducedType())
9858 return false;
9859 return Consumer.shouldSkipFunctionBody(D);
Richard Smith1a5bd5d2012-11-19 21:13:18 +00009860}
9861
Argyrios Kyrtzidis35f3f362012-12-06 18:59:10 +00009862Decl *Sema::ActOnSkippedFunctionBody(Decl *Decl) {
Argyrios Kyrtzidis1f12c472013-02-22 04:11:06 +00009863 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(Decl))
Argyrios Kyrtzidis35f3f362012-12-06 18:59:10 +00009864 FD->setHasSkippedBody();
Argyrios Kyrtzidis1f12c472013-02-22 04:11:06 +00009865 else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(Decl))
Argyrios Kyrtzidis35f3f362012-12-06 18:59:10 +00009866 MD->setHasSkippedBody();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009867 return ActOnFinishFunctionBody(Decl, nullptr);
Argyrios Kyrtzidis35f3f362012-12-06 18:59:10 +00009868}
9869
John McCallf312b1e2010-08-26 23:41:50 +00009870Decl *Sema::ActOnFinishFunctionBody(Decl *D, Stmt *BodyArg) {
Benjamin Kramer3fe198b2012-08-23 21:35:17 +00009871 return ActOnFinishFunctionBody(D, BodyArg, false);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00009872}
9873
John McCall9ae2f072010-08-23 23:25:46 +00009874Decl *Sema::ActOnFinishFunctionBody(Decl *dcl, Stmt *Body,
9875 bool IsInstantiation) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009876 FunctionDecl *FD = dcl ? dcl->getAsFunction() : nullptr;
Douglas Gregord83d0402009-08-22 00:34:47 +00009877
Ted Kremenekd064fdc2010-03-23 00:13:23 +00009878 sema::AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009879 sema::AnalysisBasedWarnings::Policy *ActivePolicy = nullptr;
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +00009880
Douglas Gregord83d0402009-08-22 00:34:47 +00009881 if (FD) {
Chris Lattnera5251fc2009-04-18 09:36:27 +00009882 FD->setBody(Body);
John McCall75d8ba32012-02-14 19:50:52 +00009883
Richard Smith25d8c852013-05-10 04:31:10 +00009884 if (getLangOpts().CPlusPlus1y && !FD->isInvalidDecl() && Body &&
Stephen Hines651f13c2014-04-23 16:59:28 -07009885 !FD->isDependentContext() && FD->getReturnType()->isUndeducedType()) {
Richard Smith25d8c852013-05-10 04:31:10 +00009886 // If the function has a deduced result type but contains no 'return'
9887 // statements, the result type as written must be exactly 'auto', and
9888 // the deduced result type is 'void'.
Stephen Hines651f13c2014-04-23 16:59:28 -07009889 if (!FD->getReturnType()->getAs<AutoType>()) {
Richard Smith25d8c852013-05-10 04:31:10 +00009890 Diag(dcl->getLocation(), diag::err_auto_fn_no_return_but_not_auto)
Stephen Hines651f13c2014-04-23 16:59:28 -07009891 << FD->getReturnType();
Richard Smith25d8c852013-05-10 04:31:10 +00009892 FD->setInvalidDecl();
9893 } else {
9894 // Substitute 'void' for the 'auto' in the type.
9895 TypeLoc ResultType = FD->getTypeSourceInfo()->getTypeLoc().
Stephen Hines651f13c2014-04-23 16:59:28 -07009896 IgnoreParens().castAs<FunctionProtoTypeLoc>().getReturnLoc();
Richard Smith25d8c852013-05-10 04:31:10 +00009897 Context.adjustDeducedFunctionResultType(
9898 FD, SubstAutoType(ResultType.getType(), Context.VoidTy));
Richard Smith60e141e2013-05-04 07:00:32 +00009899 }
9900 }
9901
Nick Lewyckycd0655b2013-02-01 08:13:20 +00009902 // The only way to be included in UndefinedButUsed is if there is an
9903 // ODR use before the definition. Avoid the expensive map lookup if this
Nick Lewycky995e26b2013-01-31 03:23:57 +00009904 // is the first declaration.
Rafael Espindola7693b322013-10-19 02:13:21 +00009905 if (!FD->isFirstDecl() && FD->getPreviousDecl()->isUsed()) {
Rafael Espindola181e3ec2013-05-13 00:12:11 +00009906 if (!FD->isExternallyVisible())
Nick Lewyckycd0655b2013-02-01 08:13:20 +00009907 UndefinedButUsed.erase(FD);
9908 else if (FD->isInlined() &&
9909 (LangOpts.CPlusPlus || !LangOpts.GNUInline) &&
9910 (!FD->getPreviousDecl()->hasAttr<GNUInlineAttr>()))
9911 UndefinedButUsed.erase(FD);
9912 }
Nick Lewycky995e26b2013-01-31 03:23:57 +00009913
John McCall75d8ba32012-02-14 19:50:52 +00009914 // If the function implicitly returns zero (like 'main') or is naked,
9915 // don't complain about missing return statements.
9916 if (FD->hasImplicitReturnZero() || FD->hasAttr<NakedAttr>())
Ted Kremenekd064fdc2010-03-23 00:13:23 +00009917 WP.disableCheckFallThrough();
Mike Stump1eb44332009-09-09 15:08:12 +00009918
Francois Pichet6a247472011-05-11 02:14:46 +00009919 // MSVC permits the use of pure specifier (=0) on function definition,
Stephen Hines651f13c2014-04-23 16:59:28 -07009920 // defined at class scope, warn about this non-standard construct.
Reid Kleckner5dbed662013-10-08 22:45:29 +00009921 if (getLangOpts().MicrosoftExt && FD->isPure() && FD->isCanonicalDecl())
Francois Pichet6a247472011-05-11 02:14:46 +00009922 Diag(FD->getLocation(), diag::warn_pure_function_definition);
9923
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009924 if (!FD->isInvalidDecl()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009925 // Don't diagnose unused parameters of defaulted or deleted functions.
9926 if (Body)
9927 DiagnoseUnusedParameters(FD->param_begin(), FD->param_end());
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009928 DiagnoseSizeOfParametersAndReturnValue(FD->param_begin(), FD->param_end(),
Stephen Hines651f13c2014-04-23 16:59:28 -07009929 FD->getReturnType(), FD);
9930
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009931 // If this is a constructor, we need a vtable.
9932 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(FD))
9933 MarkVTableUsed(FD->getLocation(), Constructor->getParent());
Douglas Gregor5077c382010-05-15 06:01:05 +00009934
Jordan Rose7dd900e2012-07-02 21:19:23 +00009935 // Try to apply the named return value optimization. We have to check
9936 // if we can do this here because lambdas keep return statements around
9937 // to deduce an implicit return type.
Stephen Hines651f13c2014-04-23 16:59:28 -07009938 if (getLangOpts().CPlusPlus && FD->getReturnType()->isRecordType() &&
Jordan Rose7dd900e2012-07-02 21:19:23 +00009939 !FD->isDependentContext())
9940 computeNRVO(Body, getCurFunction());
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009941 }
9942
Douglas Gregor76e3da52012-02-08 20:17:14 +00009943 assert((FD == getCurFunctionDecl() || getCurLambda()->CallOperator == FD) &&
9944 "Function parsing confused");
Steve Naroff394f3f42008-07-25 17:57:26 +00009945 } else if (ObjCMethodDecl *MD = dyn_cast_or_null<ObjCMethodDecl>(dcl)) {
Chris Lattnerffed1632009-02-16 19:27:54 +00009946 assert(MD == getCurMethodDecl() && "Method parsing confused");
Chris Lattnera5251fc2009-04-18 09:36:27 +00009947 MD->setBody(Body);
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009948 if (!MD->isInvalidDecl()) {
Douglas Gregore0762c92009-06-19 23:52:42 +00009949 DiagnoseUnusedParameters(MD->param_begin(), MD->param_end());
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009950 DiagnoseSizeOfParametersAndReturnValue(MD->param_begin(), MD->param_end(),
Stephen Hines651f13c2014-04-23 16:59:28 -07009951 MD->getReturnType(), MD);
9952
Douglas Gregorf7603f62011-09-06 20:33:37 +00009953 if (Body)
Douglas Gregorf8b7f712011-09-06 20:46:03 +00009954 computeNRVO(Body, getCurFunction());
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00009955 }
Jordan Rose535a5d02012-10-19 16:05:26 +00009956 if (getCurFunction()->ObjCShouldCallSuper) {
Fariborz Jahanian9f559832012-09-10 16:51:09 +00009957 Diag(MD->getLocEnd(), diag::warn_objc_missing_super_call)
9958 << MD->getSelector().getAsString();
Jordan Rose535a5d02012-10-19 16:05:26 +00009959 getCurFunction()->ObjCShouldCallSuper = false;
Nico Weber80cb6e62011-08-28 22:35:17 +00009960 }
Stephen Hines651f13c2014-04-23 16:59:28 -07009961 if (getCurFunction()->ObjCWarnForNoDesignatedInitChain) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009962 const ObjCMethodDecl *InitMethod = nullptr;
Stephen Hines651f13c2014-04-23 16:59:28 -07009963 bool isDesignated =
9964 MD->isDesignatedInitializerForTheInterface(&InitMethod);
9965 assert(isDesignated && InitMethod);
9966 (void)isDesignated;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009967
9968 auto superIsNSObject = [&](const ObjCMethodDecl *MD) {
9969 auto IFace = MD->getClassInterface();
9970 if (!IFace)
9971 return false;
9972 auto SuperD = IFace->getSuperClass();
9973 if (!SuperD)
9974 return false;
9975 return SuperD->getIdentifier() ==
9976 NSAPIObj->getNSClassId(NSAPI::ClassId_NSObject);
9977 };
9978 // Don't issue this warning for unavailable inits or direct subclasses
9979 // of NSObject.
9980 if (!MD->isUnavailable() && !superIsNSObject(MD)) {
Stephen Hines651f13c2014-04-23 16:59:28 -07009981 Diag(MD->getLocation(),
9982 diag::warn_objc_designated_init_missing_super_call);
9983 Diag(InitMethod->getLocation(),
9984 diag::note_objc_designated_init_marked_here);
9985 }
9986 getCurFunction()->ObjCWarnForNoDesignatedInitChain = false;
9987 }
9988 if (getCurFunction()->ObjCWarnForNoInitDelegation) {
9989 // Don't issue this warning for unavaialable inits.
9990 if (!MD->isUnavailable())
9991 Diag(MD->getLocation(), diag::warn_objc_secondary_init_missing_init_call);
9992 getCurFunction()->ObjCWarnForNoInitDelegation = false;
9993 }
Ted Kremenek8189cde2009-02-07 01:47:29 +00009994 } else {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07009995 return nullptr;
Ted Kremenek8189cde2009-02-07 01:47:29 +00009996 }
Douglas Gregore2c31ff2009-05-15 17:59:04 +00009997
Jordan Rose535a5d02012-10-19 16:05:26 +00009998 assert(!getCurFunction()->ObjCShouldCallSuper &&
Eli Friedman95aac152012-08-01 21:02:59 +00009999 "This should only be set for ObjC methods, which should have been "
10000 "handled in the block above.");
Nico Weber9a1ecf02011-08-22 17:25:57 +000010001
Reid Spencer5f016e22007-07-11 17:01:13 +000010002 // Verify and clean out per-function state.
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000010003 if (Body) {
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000010004 // C++ constructors that have function-try-blocks can't have return
10005 // statements in the handlers of that block. (C++ [except.handle]p14)
10006 // Verify this.
10007 if (FD && isa<CXXConstructorDecl>(FD) && isa<CXXTryStmt>(Body))
10008 DiagnoseReturnInConstructorExceptionHandler(cast<CXXTryStmt>(Body));
10009
Richard Smith37bee672011-08-12 18:44:32 +000010010 // Verify that gotos and switch cases don't jump into scopes illegally.
John McCall781472f2010-08-25 08:40:02 +000010011 if (getCurFunction()->NeedsScopeChecking() &&
Douglas Gregor27bec772012-08-17 05:12:08 +000010012 !PP.isCodeCompletionEnabled())
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000010013 DiagnoseInvalidJumps(Body);
Mike Stump1eb44332009-09-09 15:08:12 +000010014
John McCall15442822010-08-04 01:04:25 +000010015 if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(dcl)) {
10016 if (!Destructor->getParent()->isDependentType())
10017 CheckDestructor(Destructor);
10018
John McCallef027fe2010-03-16 21:39:52 +000010019 MarkBaseAndMemberDestructorsReferenced(Destructor->getLocation(),
10020 Destructor->getParent());
John McCall15442822010-08-04 01:04:25 +000010021 }
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000010022
10023 // If any errors have occurred, clear out any temporaries that may have
10024 // been leftover. This ensures that these temporaries won't be picked up for
10025 // deletion in some later function.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010026 if (getDiagnostics().hasErrorOccurred() ||
10027 getDiagnostics().getSuppressAllDiagnostics()) {
John McCall80ee6e82011-11-10 05:35:25 +000010028 DiscardCleanupsInEvaluationContext();
DeLesley Hutchins12f37e42012-12-07 22:53:48 +000010029 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010030 if (!getDiagnostics().hasUncompilableErrorOccurred() &&
DeLesley Hutchins12f37e42012-12-07 22:53:48 +000010031 !isa<FunctionTemplateDecl>(dcl)) {
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000010032 // Since the body is valid, issue any analysis-based warnings that are
10033 // enabled.
Ted Kremenek3ed6fc02011-02-23 01:51:48 +000010034 ActivePolicy = &WP;
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000010035 }
10036
Richard Smith86c3ae42012-02-13 03:54:03 +000010037 if (!IsInstantiation && FD && FD->isConstexpr() && !FD->isInvalidDecl() &&
10038 (!CheckConstexprFunctionDecl(FD) ||
10039 !CheckConstexprFunctionBody(FD, Body)))
Richard Smith9f569cc2011-10-01 02:31:28 +000010040 FD->setInvalidDecl();
10041
John McCall80ee6e82011-11-10 05:35:25 +000010042 assert(ExprCleanupObjects.empty() && "Leftover temporaries in function");
John McCallf85e1932011-06-15 23:02:42 +000010043 assert(!ExprNeedsCleanups && "Unaccounted cleanups in function");
Eli Friedmand2cce132012-02-02 23:15:15 +000010044 assert(MaybeODRUseExprs.empty() &&
10045 "Leftover expressions for odr-use checking");
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000010046 }
10047
John McCall90f97892010-03-25 22:08:03 +000010048 if (!IsInstantiation)
10049 PopDeclContext();
10050
Eli Friedmanec9ea722012-01-05 03:35:19 +000010051 PopFunctionScopeInfo(ActivePolicy, dcl);
Douglas Gregord5b57282009-11-15 07:07:58 +000010052 // If any errors have occurred, clear out any temporaries that may have
10053 // been leftover. This ensures that these temporaries won't be picked up for
10054 // deletion in some later function.
John McCallf85e1932011-06-15 23:02:42 +000010055 if (getDiagnostics().hasErrorOccurred()) {
John McCall80ee6e82011-11-10 05:35:25 +000010056 DiscardCleanupsInEvaluationContext();
John McCallf85e1932011-06-15 23:02:42 +000010057 }
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +000010058
John McCalld226f652010-08-21 09:40:31 +000010059 return dcl;
Fariborz Jahanian60fbca02007-11-10 16:31:34 +000010060}
10061
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000010062
10063/// When we finish delayed parsing of an attribute, we must attach it to the
10064/// relevant Decl.
10065void Sema::ActOnFinishDelayedAttribute(Scope *S, Decl *D,
10066 ParsedAttributes &Attrs) {
DeLesley Hutchins7b9ff0c2012-01-20 22:37:06 +000010067 // Always attach attributes to the underlying decl.
10068 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
10069 D = TD->getTemplatedDecl();
Douglas Gregorcefc3af2012-04-16 07:05:22 +000010070 ProcessDeclAttributeList(S, D, Attrs.getList());
10071
10072 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(D))
10073 if (Method->isStatic())
10074 checkThisInStaticMemberFunctionAttributes(Method);
Caitlin Sadowskieff98fc2011-09-08 17:42:22 +000010075}
10076
10077
Reid Spencer5f016e22007-07-11 17:01:13 +000010078/// ImplicitlyDefineFunction - An undeclared identifier was used in a function
10079/// call, forming a call to an implicitly defined function (per C99 6.5.1p2).
Mike Stump1eb44332009-09-09 15:08:12 +000010080NamedDecl *Sema::ImplicitlyDefineFunction(SourceLocation Loc,
Douglas Gregor4afa39d2009-01-20 01:17:11 +000010081 IdentifierInfo &II, Scope *S) {
Douglas Gregor63935192009-03-02 00:19:53 +000010082 // Before we produce a declaration for an implicitly defined
10083 // function, see whether there was a locally-scoped declaration of
10084 // this name as a function or variable. If so, use that
10085 // (non-visible) declaration, and complain about it.
Richard Smith662f41b2013-06-18 20:15:12 +000010086 if (NamedDecl *ExternCPrev = findLocallyScopedExternCDecl(&II)) {
10087 Diag(Loc, diag::warn_use_out_of_scope_declaration) << ExternCPrev;
10088 Diag(ExternCPrev->getLocation(), diag::note_previous_declaration);
10089 return ExternCPrev;
Douglas Gregor63935192009-03-02 00:19:53 +000010090 }
10091
Chris Lattner37d10842008-05-05 21:18:06 +000010092 // Extension in C99. Legal in C90, but warn about it.
Hans Wennborge3ca33a2011-12-08 15:56:07 +000010093 unsigned diag_id;
Daniel Dunbar01eb9b92009-10-18 21:17:35 +000010094 if (II.getName().startswith("__builtin_"))
Abramo Bagnara753a2002012-01-09 10:05:48 +000010095 diag_id = diag::warn_builtin_unknown;
David Blaikie4e4d0842012-03-11 07:00:24 +000010096 else if (getLangOpts().C99)
Hans Wennborge3ca33a2011-12-08 15:56:07 +000010097 diag_id = diag::ext_implicit_function_decl;
Chris Lattner37d10842008-05-05 21:18:06 +000010098 else
Hans Wennborge3ca33a2011-12-08 15:56:07 +000010099 diag_id = diag::warn_implicit_function_decl;
10100 Diag(Loc, diag_id) << &II;
Mike Stump1eb44332009-09-09 15:08:12 +000010101
Hans Wennborge3ca33a2011-12-08 15:56:07 +000010102 // Because typo correction is expensive, only do it if the implicit
10103 // function declaration is going to be treated as an error.
10104 if (Diags.getDiagnosticLevel(diag_id, Loc) >= DiagnosticsEngine::Error) {
10105 TypoCorrection Corrected;
Kaelyn Uhrain43e875d2012-01-18 21:41:41 +000010106 DeclFilterCCC<FunctionDecl> Validator;
Hans Wennborge3ca33a2011-12-08 15:56:07 +000010107 if (S && (Corrected = CorrectTypo(DeclarationNameInfo(&II, Loc),
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010108 LookupOrdinaryName, S, nullptr, Validator,
10109 CTK_NonError)))
Richard Smith2d670972013-08-17 00:46:16 +000010110 diagnoseTypo(Corrected, PDiag(diag::note_function_suggestion),
10111 /*ErrorRecovery*/false);
Hans Wennborg122de3e2011-12-06 09:46:12 +000010112 }
10113
Reid Spencer5f016e22007-07-11 17:01:13 +000010114 // Set a Declarator for the implicit definition: int foo();
10115 const char *Dummy;
John McCall0b7e6782011-03-24 11:26:52 +000010116 AttributeFactory attrFactory;
10117 DeclSpec DS(attrFactory);
John McCallfec54012009-08-03 20:12:06 +000010118 unsigned DiagID;
Stephen Hines651f13c2014-04-23 16:59:28 -070010119 bool Error = DS.SetTypeSpecType(DeclSpec::TST_int, Loc, Dummy, DiagID,
10120 Context.getPrintingPolicy());
Jeffrey Yasskinc6ed7292010-12-23 01:01:28 +000010121 (void)Error; // Silence warning.
Reid Spencer5f016e22007-07-11 17:01:13 +000010122 assert(!Error && "Error setting up implicit decl!");
Abramo Bagnara59c0a812012-10-04 21:42:10 +000010123 SourceLocation NoLoc;
Reid Spencer5f016e22007-07-11 17:01:13 +000010124 Declarator D(DS, Declarator::BlockContext);
Abramo Bagnara59c0a812012-10-04 21:42:10 +000010125 D.AddTypeInfo(DeclaratorChunk::getFunction(/*HasProto=*/false,
10126 /*IsAmbiguous=*/false,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010127 /*LParenLoc=*/NoLoc,
10128 /*Params=*/nullptr,
10129 /*NumParams=*/0,
Abramo Bagnara59c0a812012-10-04 21:42:10 +000010130 /*EllipsisLoc=*/NoLoc,
10131 /*RParenLoc=*/NoLoc,
10132 /*TypeQuals=*/0,
10133 /*RefQualifierIsLvalueRef=*/true,
10134 /*RefQualifierLoc=*/NoLoc,
10135 /*ConstQualifierLoc=*/NoLoc,
10136 /*VolatileQualifierLoc=*/NoLoc,
10137 /*MutableLoc=*/NoLoc,
10138 EST_None,
10139 /*ESpecLoc=*/NoLoc,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010140 /*Exceptions=*/nullptr,
10141 /*ExceptionRanges=*/nullptr,
Abramo Bagnara59c0a812012-10-04 21:42:10 +000010142 /*NumExceptions=*/0,
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010143 /*NoexceptExpr=*/nullptr,
Abramo Bagnara59c0a812012-10-04 21:42:10 +000010144 Loc, Loc, D),
John McCall0b7e6782011-03-24 11:26:52 +000010145 DS.getAttributes(),
Sebastian Redlab197ba2009-02-09 18:23:29 +000010146 SourceLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +000010147 D.SetIdentifier(&II, Loc);
Sebastian Redlab197ba2009-02-09 18:23:29 +000010148
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +000010149 // Insert this function into translation-unit scope.
10150
10151 DeclContext *PrevDC = CurContext;
10152 CurContext = Context.getTranslationUnitDecl();
Mike Stump1eb44332009-09-09 15:08:12 +000010153
Jordan Rose41f3f3a2013-03-05 01:27:54 +000010154 FunctionDecl *FD = cast<FunctionDecl>(ActOnDeclarator(TUScope, D));
Steve Naroffe2ef8152008-04-04 14:32:09 +000010155 FD->setImplicit();
Argyrios Kyrtzidis93213bb2008-05-01 21:04:16 +000010156
10157 CurContext = PrevDC;
10158
Douglas Gregor3c385e52009-02-14 18:57:46 +000010159 AddKnownFunctionAttributes(FD);
10160
Steve Naroffe2ef8152008-04-04 14:32:09 +000010161 return FD;
Reid Spencer5f016e22007-07-11 17:01:13 +000010162}
10163
Douglas Gregor3c385e52009-02-14 18:57:46 +000010164/// \brief Adds any function attributes that we know a priori based on
10165/// the declaration of this function.
10166///
10167/// These attributes can apply both to implicitly-declared builtins
10168/// (like __builtin___printf_chk) or to library-declared functions
10169/// like NSLog or printf.
Douglas Gregorb30cd4a2011-06-15 05:45:11 +000010170///
10171/// We need to check for duplicate attributes both here and where user-written
10172/// attributes are applied to declarations.
Douglas Gregor3c385e52009-02-14 18:57:46 +000010173void Sema::AddKnownFunctionAttributes(FunctionDecl *FD) {
10174 if (FD->isInvalidDecl())
10175 return;
10176
10177 // If this is a built-in function, map its builtin attributes to
10178 // actual attributes.
Douglas Gregor7814e6d2009-09-12 00:22:50 +000010179 if (unsigned BuiltinID = FD->getBuiltinID()) {
Douglas Gregor3c385e52009-02-14 18:57:46 +000010180 // Handle printf-formatting attributes.
10181 unsigned FormatIdx;
10182 bool HasVAListArg;
10183 if (Context.BuiltinInfo.isPrintfLike(BuiltinID, FormatIdx, HasVAListArg)) {
Stephen Hines651f13c2014-04-23 16:59:28 -070010184 if (!FD->hasAttr<FormatAttr>()) {
Jean-Daniel Dupas1acbe5e2012-01-24 22:32:46 +000010185 const char *fmt = "printf";
10186 unsigned int NumParams = FD->getNumParams();
10187 if (FormatIdx < NumParams && // NumParams may be 0 (e.g. vfprintf)
10188 FD->getParamDecl(FormatIdx)->getType()->isObjCObjectPointerType())
10189 fmt = "NSString";
Stephen Hines651f13c2014-04-23 16:59:28 -070010190 FD->addAttr(FormatAttr::CreateImplicit(Context,
Aaron Ballmancaa5ab22013-09-03 21:02:22 +000010191 &Context.Idents.get(fmt),
10192 FormatIdx+1,
Stephen Hines651f13c2014-04-23 16:59:28 -070010193 HasVAListArg ? 0 : FormatIdx+2,
10194 FD->getLocation()));
Jean-Daniel Dupas1acbe5e2012-01-24 22:32:46 +000010195 }
Douglas Gregor3c385e52009-02-14 18:57:46 +000010196 }
Ted Kremenekbee05c12010-07-16 02:11:15 +000010197 if (Context.BuiltinInfo.isScanfLike(BuiltinID, FormatIdx,
10198 HasVAListArg)) {
Stephen Hines651f13c2014-04-23 16:59:28 -070010199 if (!FD->hasAttr<FormatAttr>())
10200 FD->addAttr(FormatAttr::CreateImplicit(Context,
Aaron Ballmancaa5ab22013-09-03 21:02:22 +000010201 &Context.Idents.get("scanf"),
10202 FormatIdx+1,
Stephen Hines651f13c2014-04-23 16:59:28 -070010203 HasVAListArg ? 0 : FormatIdx+2,
10204 FD->getLocation()));
Ted Kremenekbee05c12010-07-16 02:11:15 +000010205 }
Daniel Dunbaref2abfe2009-02-16 22:43:43 +000010206
10207 // Mark const if we don't care about errno and that is the only
10208 // thing preventing the function from being const. This allows
10209 // IRgen to use LLVM intrinsics for such functions.
David Blaikie4e4d0842012-03-11 07:00:24 +000010210 if (!getLangOpts().MathErrno &&
Daniel Dunbaref2abfe2009-02-16 22:43:43 +000010211 Context.BuiltinInfo.isConstWithoutErrno(BuiltinID)) {
Stephen Hines651f13c2014-04-23 16:59:28 -070010212 if (!FD->hasAttr<ConstAttr>())
10213 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
Daniel Dunbaref2abfe2009-02-16 22:43:43 +000010214 }
Mike Stump0feecbb2009-07-27 19:14:18 +000010215
Rafael Espindola67004152011-10-12 19:51:18 +000010216 if (Context.BuiltinInfo.isReturnsTwice(BuiltinID) &&
Stephen Hines651f13c2014-04-23 16:59:28 -070010217 !FD->hasAttr<ReturnsTwiceAttr>())
10218 FD->addAttr(ReturnsTwiceAttr::CreateImplicit(Context,
10219 FD->getLocation()));
10220 if (Context.BuiltinInfo.isNoThrow(BuiltinID) && !FD->hasAttr<NoThrowAttr>())
10221 FD->addAttr(NoThrowAttr::CreateImplicit(Context, FD->getLocation()));
10222 if (Context.BuiltinInfo.isConst(BuiltinID) && !FD->hasAttr<ConstAttr>())
10223 FD->addAttr(ConstAttr::CreateImplicit(Context, FD->getLocation()));
Douglas Gregor3c385e52009-02-14 18:57:46 +000010224 }
10225
10226 IdentifierInfo *Name = FD->getIdentifier();
10227 if (!Name)
10228 return;
David Blaikie4e4d0842012-03-11 07:00:24 +000010229 if ((!getLangOpts().CPlusPlus &&
Douglas Gregor3c385e52009-02-14 18:57:46 +000010230 FD->getDeclContext()->isTranslationUnit()) ||
10231 (isa<LinkageSpecDecl>(FD->getDeclContext()) &&
Mike Stump1eb44332009-09-09 15:08:12 +000010232 cast<LinkageSpecDecl>(FD->getDeclContext())->getLanguage() ==
Douglas Gregor3c385e52009-02-14 18:57:46 +000010233 LinkageSpecDecl::lang_c)) {
10234 // Okay: this could be a libc/libm/Objective-C function we know
10235 // about.
10236 } else
10237 return;
10238
Jean-Daniel Dupas1acbe5e2012-01-24 22:32:46 +000010239 if (Name->isStr("asprintf") || Name->isStr("vasprintf")) {
Mike Stump523a8fd2009-07-28 00:07:08 +000010240 // FIXME: asprintf and vasprintf aren't C99 functions. Should they be
Mike Stump1eb44332009-09-09 15:08:12 +000010241 // target-specific builtins, perhaps?
Stephen Hines651f13c2014-04-23 16:59:28 -070010242 if (!FD->hasAttr<FormatAttr>())
10243 FD->addAttr(FormatAttr::CreateImplicit(Context,
Aaron Ballmancaa5ab22013-09-03 21:02:22 +000010244 &Context.Idents.get("printf"), 2,
Stephen Hines651f13c2014-04-23 16:59:28 -070010245 Name->isStr("vasprintf") ? 0 : 3,
10246 FD->getLocation()));
Mike Stump782fa302009-07-28 02:25:19 +000010247 }
Jordan Rose8a64f882012-08-08 21:17:31 +000010248
10249 if (Name->isStr("__CFStringMakeConstantString")) {
10250 // We already have a __builtin___CFStringMakeConstantString,
10251 // but builds that use -fno-constant-cfstrings don't go through that.
Stephen Hines651f13c2014-04-23 16:59:28 -070010252 if (!FD->hasAttr<FormatArgAttr>())
10253 FD->addAttr(FormatArgAttr::CreateImplicit(Context, 1,
10254 FD->getLocation()));
Jordan Rose8a64f882012-08-08 21:17:31 +000010255 }
Douglas Gregor3c385e52009-02-14 18:57:46 +000010256}
Reid Spencer5f016e22007-07-11 17:01:13 +000010257
John McCallba6a9bd2009-10-24 08:00:42 +000010258TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T,
John McCalla93c9342009-12-07 02:54:59 +000010259 TypeSourceInfo *TInfo) {
Reid Spencer5f016e22007-07-11 17:01:13 +000010260 assert(D.getIdentifier() && "Wrong callback for declspec without declarator");
Steve Naroff5912a352007-08-28 20:14:24 +000010261 assert(!T.isNull() && "GetTypeForDeclarator() returned null type");
Mike Stump1eb44332009-09-09 15:08:12 +000010262
John McCalla93c9342009-12-07 02:54:59 +000010263 if (!TInfo) {
John McCallba6a9bd2009-10-24 08:00:42 +000010264 assert(D.isInvalidType() && "no declarator info for valid type");
John McCalla93c9342009-12-07 02:54:59 +000010265 TInfo = Context.getTrivialTypeSourceInfo(T);
John McCallba6a9bd2009-10-24 08:00:42 +000010266 }
10267
Reid Spencer5f016e22007-07-11 17:01:13 +000010268 // Scope manipulation handled by caller.
Chris Lattner0ed844b2008-04-04 06:12:32 +000010269 TypedefDecl *NewTD = TypedefDecl::Create(Context, CurContext,
Daniel Dunbar96a00142012-03-09 18:35:03 +000010270 D.getLocStart(),
Chris Lattner0ed844b2008-04-04 06:12:32 +000010271 D.getIdentifierLoc(),
Mike Stump1eb44332009-09-09 15:08:12 +000010272 D.getIdentifier(),
John McCalla93c9342009-12-07 02:54:59 +000010273 TInfo);
Mike Stump1eb44332009-09-09 15:08:12 +000010274
John McCallcde5a402011-02-01 08:20:08 +000010275 // Bail out immediately if we have an invalid declaration.
10276 if (D.isInvalidType()) {
10277 NewTD->setInvalidDecl();
10278 return NewTD;
Anders Carlsson4843e582009-03-10 17:07:44 +000010279 }
Fariborz Jahanian0f3bb9e2013-11-19 00:09:48 +000010280
Douglas Gregore3895852011-09-12 18:37:38 +000010281 if (D.getDeclSpec().isModulePrivateSpecified()) {
10282 if (CurContext->isFunctionOrMethod())
10283 Diag(NewTD->getLocation(), diag::err_module_private_local)
10284 << 2 << NewTD->getDeclName()
10285 << SourceRange(D.getDeclSpec().getModulePrivateSpecLoc())
10286 << FixItHint::CreateRemoval(D.getDeclSpec().getModulePrivateSpecLoc());
10287 else
10288 NewTD->setModulePrivate();
10289 }
Douglas Gregor8d267c52011-09-09 02:06:17 +000010290
John McCallcde5a402011-02-01 08:20:08 +000010291 // C++ [dcl.typedef]p8:
10292 // If the typedef declaration defines an unnamed class (or
10293 // enum), the first typedef-name declared by the declaration
10294 // to be that class type (or enum type) is used to denote the
10295 // class type (or enum type) for linkage purposes only.
10296 // We need to check whether the type was declared in the declaration.
10297 switch (D.getDeclSpec().getTypeSpecType()) {
10298 case TST_enum:
10299 case TST_struct:
Joao Matos6666ed42012-08-31 18:45:21 +000010300 case TST_interface:
John McCallcde5a402011-02-01 08:20:08 +000010301 case TST_union:
10302 case TST_class: {
10303 TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl());
10304
10305 // Do nothing if the tag is not anonymous or already has an
10306 // associated typedef (from an earlier typedef in this decl group).
10307 if (tagFromDeclSpec->getIdentifier()) break;
Richard Smith162e1c12011-04-15 14:24:37 +000010308 if (tagFromDeclSpec->getTypedefNameForAnonDecl()) break;
John McCallcde5a402011-02-01 08:20:08 +000010309
10310 // A well-formed anonymous tag must always be a TUK_Definition.
10311 assert(tagFromDeclSpec->isThisDeclarationADefinition());
10312
10313 // The type must match the tag exactly; no qualifiers allowed.
10314 if (!Context.hasSameType(T, Context.getTagDeclType(tagFromDeclSpec)))
10315 break;
10316
Stephen Hines651f13c2014-04-23 16:59:28 -070010317 // If we've already computed linkage for the anonymous tag, then
10318 // adding a typedef name for the anonymous decl can change that
10319 // linkage, which might be a serious problem. Diagnose this as
10320 // unsupported and ignore the typedef name. TODO: we should
10321 // pursue this as a language defect and establish a formal rule
10322 // for how to handle it.
10323 if (tagFromDeclSpec->hasLinkageBeenComputed()) {
10324 Diag(D.getIdentifierLoc(), diag::err_typedef_changes_linkage);
10325
10326 SourceLocation tagLoc = D.getDeclSpec().getTypeSpecTypeLoc();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010327 tagLoc = getLocForEndOfToken(tagLoc);
Stephen Hines651f13c2014-04-23 16:59:28 -070010328
10329 llvm::SmallString<40> textToInsert;
10330 textToInsert += ' ';
10331 textToInsert += D.getIdentifier()->getName();
10332 Diag(tagLoc, diag::note_typedef_changes_linkage)
10333 << FixItHint::CreateInsertion(tagLoc, textToInsert);
10334 break;
10335 }
10336
John McCallcde5a402011-02-01 08:20:08 +000010337 // Otherwise, set this is the anon-decl typedef for the tag.
Richard Smith162e1c12011-04-15 14:24:37 +000010338 tagFromDeclSpec->setTypedefNameForAnonDecl(NewTD);
John McCallcde5a402011-02-01 08:20:08 +000010339 break;
10340 }
10341
10342 default:
10343 break;
10344 }
10345
Steve Naroff5912a352007-08-28 20:14:24 +000010346 return NewTD;
Reid Spencer5f016e22007-07-11 17:01:13 +000010347}
10348
Douglas Gregor501c5ce2009-05-14 16:41:31 +000010349
Richard Smithf1c66b42012-03-14 23:13:10 +000010350/// \brief Check that this is a valid underlying type for an enum declaration.
10351bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) {
10352 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
10353 QualType T = TI->getType();
10354
Eli Friedman2fcff832012-12-18 02:37:32 +000010355 if (T->isDependentType())
Richard Smithf1c66b42012-03-14 23:13:10 +000010356 return false;
10357
Eli Friedman2fcff832012-12-18 02:37:32 +000010358 if (const BuiltinType *BT = T->getAs<BuiltinType>())
10359 if (BT->isInteger())
10360 return false;
10361
Richard Smithf1c66b42012-03-14 23:13:10 +000010362 Diag(UnderlyingLoc, diag::err_enum_invalid_underlying) << T;
10363 return true;
10364}
10365
10366/// Check whether this is a valid redeclaration of a previous enumeration.
10367/// \return true if the redeclaration was invalid.
10368bool Sema::CheckEnumRedeclaration(SourceLocation EnumLoc, bool IsScoped,
10369 QualType EnumUnderlyingTy,
10370 const EnumDecl *Prev) {
10371 bool IsFixed = !EnumUnderlyingTy.isNull();
10372
10373 if (IsScoped != Prev->isScoped()) {
10374 Diag(EnumLoc, diag::err_enum_redeclare_scoped_mismatch)
10375 << Prev->isScoped();
Stephen Hines651f13c2014-04-23 16:59:28 -070010376 Diag(Prev->getLocation(), diag::note_previous_declaration);
Richard Smithf1c66b42012-03-14 23:13:10 +000010377 return true;
10378 }
10379
10380 if (IsFixed && Prev->isFixed()) {
Richard Smith4ca93d92012-03-26 04:08:46 +000010381 if (!EnumUnderlyingTy->isDependentType() &&
10382 !Prev->getIntegerType()->isDependentType() &&
10383 !Context.hasSameUnqualifiedType(EnumUnderlyingTy,
Richard Smithf1c66b42012-03-14 23:13:10 +000010384 Prev->getIntegerType())) {
Stephen Hines651f13c2014-04-23 16:59:28 -070010385 // TODO: Highlight the underlying type of the redeclaration.
Richard Smithf1c66b42012-03-14 23:13:10 +000010386 Diag(EnumLoc, diag::err_enum_redeclare_type_mismatch)
10387 << EnumUnderlyingTy << Prev->getIntegerType();
Stephen Hines651f13c2014-04-23 16:59:28 -070010388 Diag(Prev->getLocation(), diag::note_previous_declaration)
10389 << Prev->getIntegerTypeRange();
Richard Smithf1c66b42012-03-14 23:13:10 +000010390 return true;
10391 }
10392 } else if (IsFixed != Prev->isFixed()) {
10393 Diag(EnumLoc, diag::err_enum_redeclare_fixed_mismatch)
10394 << Prev->isFixed();
Stephen Hines651f13c2014-04-23 16:59:28 -070010395 Diag(Prev->getLocation(), diag::note_previous_declaration);
Richard Smithf1c66b42012-03-14 23:13:10 +000010396 return true;
10397 }
10398
10399 return false;
10400}
10401
Joao Matos6666ed42012-08-31 18:45:21 +000010402/// \brief Get diagnostic %select index for tag kind for
10403/// redeclaration diagnostic message.
10404/// WARNING: Indexes apply to particular diagnostics only!
10405///
10406/// \returns diagnostic %select index.
Joao Matosf143ae92012-09-01 00:13:24 +000010407static unsigned getRedeclDiagFromTagKind(TagTypeKind Tag) {
Joao Matos6666ed42012-08-31 18:45:21 +000010408 switch (Tag) {
Joao Matosf143ae92012-09-01 00:13:24 +000010409 case TTK_Struct: return 0;
10410 case TTK_Interface: return 1;
10411 case TTK_Class: return 2;
10412 default: llvm_unreachable("Invalid tag kind for redecl diagnostic!");
Joao Matos6666ed42012-08-31 18:45:21 +000010413 }
Joao Matos6666ed42012-08-31 18:45:21 +000010414}
10415
10416/// \brief Determine if tag kind is a class-key compatible with
10417/// class for redeclaration (class, struct, or __interface).
10418///
Sylvestre Ledruf3477c12012-09-27 10:16:10 +000010419/// \returns true iff the tag kind is compatible.
Joao Matos6666ed42012-08-31 18:45:21 +000010420static bool isClassCompatTagKind(TagTypeKind Tag)
10421{
10422 return Tag == TTK_Struct || Tag == TTK_Class || Tag == TTK_Interface;
10423}
10424
Douglas Gregor501c5ce2009-05-14 16:41:31 +000010425/// \brief Determine whether a tag with a given kind is acceptable
10426/// as a redeclaration of the given tag declaration.
10427///
10428/// \returns true if the new tag kind is acceptable, false otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +000010429bool Sema::isAcceptableTagRedeclaration(const TagDecl *Previous,
Richard Trieubbf34c02011-06-10 03:11:26 +000010430 TagTypeKind NewTag, bool isDefinition,
Douglas Gregor501c5ce2009-05-14 16:41:31 +000010431 SourceLocation NewTagLoc,
10432 const IdentifierInfo &Name) {
10433 // C++ [dcl.type.elab]p3:
10434 // The class-key or enum keyword present in the
10435 // elaborated-type-specifier shall agree in kind with the
Abramo Bagnara465d41b2010-05-11 21:36:43 +000010436 // declaration to which the name in the elaborated-type-specifier
Douglas Gregor501c5ce2009-05-14 16:41:31 +000010437 // refers. This rule also applies to the form of
10438 // elaborated-type-specifier that declares a class-name or
10439 // friend class since it can be construed as referring to the
10440 // definition of the class. Thus, in any
10441 // elaborated-type-specifier, the enum keyword shall be used to
Abramo Bagnara465d41b2010-05-11 21:36:43 +000010442 // refer to an enumeration (7.2), the union class-key shall be
Douglas Gregor501c5ce2009-05-14 16:41:31 +000010443 // used to refer to a union (clause 9), and either the class or
10444 // struct class-key shall be used to refer to a class (clause 9)
10445 // declared using the class or struct class-key.
Abramo Bagnara465d41b2010-05-11 21:36:43 +000010446 TagTypeKind OldTag = Previous->getTagKind();
Joao Matos6666ed42012-08-31 18:45:21 +000010447 if (!isDefinition || !isClassCompatTagKind(NewTag))
Richard Trieubbf34c02011-06-10 03:11:26 +000010448 if (OldTag == NewTag)
10449 return true;
Mike Stump1eb44332009-09-09 15:08:12 +000010450
Joao Matos6666ed42012-08-31 18:45:21 +000010451 if (isClassCompatTagKind(OldTag) && isClassCompatTagKind(NewTag)) {
Douglas Gregor501c5ce2009-05-14 16:41:31 +000010452 // Warn about the struct/class tag mismatch.
10453 bool isTemplate = false;
10454 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Previous))
10455 isTemplate = Record->getDescribedClassTemplate();
10456
Richard Trieubbf34c02011-06-10 03:11:26 +000010457 if (!ActiveTemplateInstantiations.empty()) {
10458 // In a template instantiation, do not offer fix-its for tag mismatches
10459 // since they usually mess up the template instead of fixing the problem.
10460 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
Joao Matos6666ed42012-08-31 18:45:21 +000010461 << getRedeclDiagFromTagKind(NewTag) << isTemplate << &Name
10462 << getRedeclDiagFromTagKind(OldTag);
Richard Trieubbf34c02011-06-10 03:11:26 +000010463 return true;
10464 }
10465
10466 if (isDefinition) {
10467 // On definitions, check previous tags and issue a fix-it for each
10468 // one that doesn't match the current tag.
10469 if (Previous->getDefinition()) {
10470 // Don't suggest fix-its for redefinitions.
10471 return true;
10472 }
10473
10474 bool previousMismatch = false;
Stephen Hines651f13c2014-04-23 16:59:28 -070010475 for (auto I : Previous->redecls()) {
Richard Trieubbf34c02011-06-10 03:11:26 +000010476 if (I->getTagKind() != NewTag) {
10477 if (!previousMismatch) {
10478 previousMismatch = true;
10479 Diag(NewTagLoc, diag::warn_struct_class_previous_tag_mismatch)
Joao Matos6666ed42012-08-31 18:45:21 +000010480 << getRedeclDiagFromTagKind(NewTag) << isTemplate << &Name
10481 << getRedeclDiagFromTagKind(I->getTagKind());
Richard Trieubbf34c02011-06-10 03:11:26 +000010482 }
10483 Diag(I->getInnerLocStart(), diag::note_struct_class_suggestion)
Joao Matos6666ed42012-08-31 18:45:21 +000010484 << getRedeclDiagFromTagKind(NewTag)
Richard Trieubbf34c02011-06-10 03:11:26 +000010485 << FixItHint::CreateReplacement(I->getInnerLocStart(),
Joao Matos6666ed42012-08-31 18:45:21 +000010486 TypeWithKeyword::getTagTypeKindName(NewTag));
Richard Trieubbf34c02011-06-10 03:11:26 +000010487 }
10488 }
10489 return true;
10490 }
10491
10492 // Check for a previous definition. If current tag and definition
10493 // are same type, do nothing. If no definition, but disagree with
10494 // with previous tag type, give a warning, but no fix-it.
10495 const TagDecl *Redecl = Previous->getDefinition() ?
10496 Previous->getDefinition() : Previous;
10497 if (Redecl->getTagKind() == NewTag) {
10498 return true;
10499 }
10500
Douglas Gregor501c5ce2009-05-14 16:41:31 +000010501 Diag(NewTagLoc, diag::warn_struct_class_tag_mismatch)
Joao Matos6666ed42012-08-31 18:45:21 +000010502 << getRedeclDiagFromTagKind(NewTag) << isTemplate << &Name
10503 << getRedeclDiagFromTagKind(OldTag);
Richard Trieubbf34c02011-06-10 03:11:26 +000010504 Diag(Redecl->getLocation(), diag::note_previous_use);
10505
Stephen Hines651f13c2014-04-23 16:59:28 -070010506 // If there is a previous definition, suggest a fix-it.
Richard Trieubbf34c02011-06-10 03:11:26 +000010507 if (Previous->getDefinition()) {
10508 Diag(NewTagLoc, diag::note_struct_class_suggestion)
Joao Matos6666ed42012-08-31 18:45:21 +000010509 << getRedeclDiagFromTagKind(Redecl->getTagKind())
Richard Trieubbf34c02011-06-10 03:11:26 +000010510 << FixItHint::CreateReplacement(SourceRange(NewTagLoc),
Joao Matos6666ed42012-08-31 18:45:21 +000010511 TypeWithKeyword::getTagTypeKindName(Redecl->getTagKind()));
Richard Trieubbf34c02011-06-10 03:11:26 +000010512 }
10513
Douglas Gregor501c5ce2009-05-14 16:41:31 +000010514 return true;
10515 }
10516 return false;
10517}
10518
Steve Naroff08d92e42007-09-15 18:49:24 +000010519/// ActOnTag - This is invoked when we see 'struct foo' or 'struct {'. In the
Reid Spencer5f016e22007-07-11 17:01:13 +000010520/// former case, Name will be non-null. In the later case, Name will be null.
John McCall0f434ec2009-07-31 02:45:11 +000010521/// TagSpec indicates what kind of tag this is. TUK indicates whether this is a
Reid Spencer5f016e22007-07-11 17:01:13 +000010522/// reference/declaration/definition of a tag.
Stephen Hines651f13c2014-04-23 16:59:28 -070010523///
10524/// IsTypeSpecifier is true if this is a type-specifier (or
10525/// trailing-type-specifier) other than one in an alias-declaration.
John McCalld226f652010-08-21 09:40:31 +000010526Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
Douglas Gregor069ea642010-09-16 23:58:57 +000010527 SourceLocation KWLoc, CXXScopeSpec &SS,
10528 IdentifierInfo *Name, SourceLocation NameLoc,
10529 AttributeList *Attr, AccessSpecifier AS,
Douglas Gregore7612302011-09-09 19:05:14 +000010530 SourceLocation ModulePrivateLoc,
Douglas Gregor069ea642010-09-16 23:58:57 +000010531 MultiTemplateParamsArg TemplateParameterLists,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +000010532 bool &OwnedDecl, bool &IsDependent,
Richard Smithbdad7a22012-01-10 01:33:14 +000010533 SourceLocation ScopedEnumKWLoc,
10534 bool ScopedEnumUsesClassTag,
Stephen Hines651f13c2014-04-23 16:59:28 -070010535 TypeResult UnderlyingType,
10536 bool IsTypeSpecifier) {
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000010537 // If this is not a definition, it must have a name.
Douglas Gregor69605872012-03-28 16:01:27 +000010538 IdentifierInfo *OrigName = Name;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010539 assert((Name != nullptr || TUK == TUK_Definition) &&
Reid Spencer5f016e22007-07-11 17:01:13 +000010540 "Nameless record must be a definition!");
John McCall9a34edb2010-10-19 01:40:49 +000010541 assert(TemplateParameterLists.size() == 0 || TUK != TUK_Reference);
Douglas Gregoraaba5e32009-02-04 19:02:06 +000010542
Douglas Gregor402abb52009-05-28 23:31:59 +000010543 OwnedDecl = false;
Abramo Bagnara465d41b2010-05-11 21:36:43 +000010544 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForTypeSpec(TagSpec);
Richard Smithbdad7a22012-01-10 01:33:14 +000010545 bool ScopedEnum = ScopedEnumKWLoc.isValid();
Mike Stump1eb44332009-09-09 15:08:12 +000010546
Douglas Gregor1fef4e62009-10-07 22:35:40 +000010547 // FIXME: Check explicit specializations more carefully.
10548 bool isExplicitSpecialization = false;
Douglas Gregor0167f3c2010-07-14 23:14:12 +000010549 bool Invalid = false;
John McCall9a34edb2010-10-19 01:40:49 +000010550
10551 // We only need to do this matching if we have template parameters
10552 // or a scope specifier, which also conveniently avoids this work
10553 // for non-C++ cases.
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000010554 if (TemplateParameterLists.size() > 0 ||
John McCall9a34edb2010-10-19 01:40:49 +000010555 (SS.isNotEmpty() && TUK != TUK_Reference)) {
Robert Wilhelm1169e2f2013-07-21 15:20:44 +000010556 if (TemplateParameterList *TemplateParams =
10557 MatchTemplateParametersToScopeSpecifier(
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010558 KWLoc, NameLoc, SS, nullptr, TemplateParameterLists,
10559 TUK == TUK_Friend, isExplicitSpecialization, Invalid)) {
Richard Smith725fe0e2013-04-01 21:43:41 +000010560 if (Kind == TTK_Enum) {
10561 Diag(KWLoc, diag::err_enum_template);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010562 return nullptr;
Richard Smith725fe0e2013-04-01 21:43:41 +000010563 }
10564
Douglas Gregord85bea22009-09-26 06:47:28 +000010565 if (TemplateParams->size() > 0) {
Douglas Gregor7cdbc582009-07-22 23:48:44 +000010566 // This is a declaration or definition of a class template (which may
10567 // be a member of another template).
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000010568
Douglas Gregor0167f3c2010-07-14 23:14:12 +000010569 if (Invalid)
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010570 return nullptr;
Abramo Bagnarac57c17d2011-03-10 13:28:31 +000010571
Douglas Gregor7cdbc582009-07-22 23:48:44 +000010572 OwnedDecl = false;
John McCall0f434ec2009-07-31 02:45:11 +000010573 DeclResult Result = CheckClassTemplate(S, TagSpec, TUK, KWLoc,
Douglas Gregor7cdbc582009-07-22 23:48:44 +000010574 SS, Name, NameLoc, Attr,
Abramo Bagnarac57c17d2011-03-10 13:28:31 +000010575 TemplateParams, AS,
Douglas Gregore7612302011-09-09 19:05:14 +000010576 ModulePrivateLoc,
Benjamin Kramer3fe198b2012-08-23 21:35:17 +000010577 TemplateParameterLists.size()-1,
Benjamin Kramer5354e772012-08-23 23:38:35 +000010578 TemplateParameterLists.data());
Douglas Gregor7cdbc582009-07-22 23:48:44 +000010579 return Result.get();
10580 } else {
Douglas Gregorf6b11852009-10-08 15:14:33 +000010581 // The "template<>" header is extraneous.
10582 Diag(TemplateParams->getTemplateLoc(), diag::err_template_tag_noparams)
Abramo Bagnara465d41b2010-05-11 21:36:43 +000010583 << TypeWithKeyword::getTagTypeKindName(Kind) << Name;
Douglas Gregorf6b11852009-10-08 15:14:33 +000010584 isExplicitSpecialization = true;
Douglas Gregor7cdbc582009-07-22 23:48:44 +000010585 }
Mike Stump1eb44332009-09-09 15:08:12 +000010586 }
10587 }
10588
Douglas Gregor1274ccd2010-10-08 23:50:27 +000010589 // Figure out the underlying type if this a enum declaration. We need to do
10590 // this early, because it's needed to detect if this is an incompatible
10591 // redeclaration.
10592 llvm::PointerUnion<const Type*, TypeSourceInfo*> EnumUnderlying;
10593
10594 if (Kind == TTK_Enum) {
10595 if (UnderlyingType.isInvalid() || (!UnderlyingType.get() && ScopedEnum))
10596 // No underlying type explicitly specified, or we failed to parse the
10597 // type, default to int.
10598 EnumUnderlying = Context.IntTy.getTypePtr();
10599 else if (UnderlyingType.get()) {
10600 // C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an
10601 // integral type; any cv-qualification is ignored.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010602 TypeSourceInfo *TI = nullptr;
Richard Smith878416d2012-03-15 00:22:18 +000010603 GetTypeFromParser(UnderlyingType.get(), &TI);
Douglas Gregor1274ccd2010-10-08 23:50:27 +000010604 EnumUnderlying = TI;
10605
Richard Smithf1c66b42012-03-14 23:13:10 +000010606 if (CheckEnumUnderlyingType(TI))
Douglas Gregor1274ccd2010-10-08 23:50:27 +000010607 // Recover by falling back to int.
10608 EnumUnderlying = Context.IntTy.getTypePtr();
Douglas Gregor0c9e4792010-12-16 00:24:44 +000010609
Richard Smithf1c66b42012-03-14 23:13:10 +000010610 if (DiagnoseUnexpandedParameterPack(TI->getTypeLoc().getBeginLoc(), TI,
Douglas Gregor0c9e4792010-12-16 00:24:44 +000010611 UPPC_FixedUnderlyingType))
10612 EnumUnderlying = Context.IntTy.getTypePtr();
10613
Stephen Hines651f13c2014-04-23 16:59:28 -070010614 } else if (getLangOpts().MSVCCompat)
Francois Pichet842e7a22010-10-18 15:01:13 +000010615 // Microsoft enums are always of int type.
10616 EnumUnderlying = Context.IntTy.getTypePtr();
Douglas Gregor1274ccd2010-10-08 23:50:27 +000010617 }
10618
Douglas Gregor4920f1f2009-01-12 22:49:06 +000010619 DeclContext *SearchDC = CurContext;
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +000010620 DeclContext *DC = CurContext;
Douglas Gregor7adb10f2009-09-15 22:30:29 +000010621 bool isStdBadAlloc = false;
Douglas Gregor0b7a1582009-01-17 00:42:38 +000010622
Chandler Carruth7bf36002010-03-01 21:17:36 +000010623 RedeclarationKind Redecl = ForRedeclaration;
10624 if (TUK == TUK_Friend || TUK == TUK_Reference)
10625 Redecl = NotForRedeclaration;
John McCall68263142009-11-18 22:49:29 +000010626
10627 LookupResult Previous(*this, Name, NameLoc, LookupTagName, Redecl);
Douglas Gregord9433522013-06-27 20:42:30 +000010628 bool FriendSawTagOutsideEnclosingNamespace = false;
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +000010629 if (Name && SS.isNotEmpty()) {
10630 // We have a nested-name tag ('struct foo::bar').
10631
10632 // Check for invalid 'foo::'.
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +000010633 if (SS.isInvalid()) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010634 Name = nullptr;
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +000010635 goto CreateNewDecl;
10636 }
10637
John McCallc4e70192009-09-11 04:59:25 +000010638 // If this is a friend or a reference to a class in a dependent
10639 // context, don't try to make a decl for it.
10640 if (TUK == TUK_Friend || TUK == TUK_Reference) {
10641 DC = computeDeclContext(SS, false);
10642 if (!DC) {
10643 IsDependent = true;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010644 return nullptr;
John McCallc4e70192009-09-11 04:59:25 +000010645 }
John McCall77bb1aa2010-05-01 00:40:08 +000010646 } else {
10647 DC = computeDeclContext(SS, true);
10648 if (!DC) {
10649 Diag(SS.getRange().getBegin(), diag::err_dependent_nested_name_spec)
10650 << SS.getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010651 return nullptr;
John McCall77bb1aa2010-05-01 00:40:08 +000010652 }
John McCallc4e70192009-09-11 04:59:25 +000010653 }
10654
John McCall77bb1aa2010-05-01 00:40:08 +000010655 if (RequireCompleteDeclContext(SS, DC))
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010656 return nullptr;
Douglas Gregor3f5b61c2009-05-14 00:28:11 +000010657
Douglas Gregor1931b442009-02-03 00:34:39 +000010658 SearchDC = DC;
Argyrios Kyrtzidis0f84a232008-11-09 22:53:32 +000010659 // Look-up name inside 'foo::'.
John McCall68263142009-11-18 22:49:29 +000010660 LookupQualifiedName(Previous, DC);
John McCall6e247262009-10-10 05:48:19 +000010661
John McCall68263142009-11-18 22:49:29 +000010662 if (Previous.isAmbiguous())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010663 return nullptr;
John McCall6e247262009-10-10 05:48:19 +000010664
John McCall68263142009-11-18 22:49:29 +000010665 if (Previous.empty()) {
Douglas Gregor9edad9b2010-01-14 17:47:39 +000010666 // Name lookup did not find anything. However, if the
10667 // nested-name-specifier refers to the current instantiation,
10668 // and that current instantiation has any dependent base
10669 // classes, we might find something at instantiation time: treat
10670 // this as a dependent elaborated-type-specifier.
John McCall9a34edb2010-10-19 01:40:49 +000010671 // But this only makes any sense for reference-like lookups.
10672 if (Previous.wasNotFoundInCurrentInstantiation() &&
10673 (TUK == TUK_Reference || TUK == TUK_Friend)) {
Douglas Gregor9edad9b2010-01-14 17:47:39 +000010674 IsDependent = true;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010675 return nullptr;
Douglas Gregor9edad9b2010-01-14 17:47:39 +000010676 }
10677
10678 // A tag 'foo::bar' must already exist.
Douglas Gregor1eabb7d2010-03-31 23:17:41 +000010679 Diag(NameLoc, diag::err_not_tag_in_scope)
10680 << Kind << Name << DC << SS.getRange();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010681 Name = nullptr;
Douglas Gregord0c87372009-05-27 17:30:49 +000010682 Invalid = true;
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +000010683 goto CreateNewDecl;
10684 }
Chris Lattnercf79b012009-01-21 02:38:50 +000010685 } else if (Name) {
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +000010686 // If this is a named struct, check to see if there was a previous forward
10687 // declaration or definition.
Douglas Gregor2a3009a2009-02-03 19:21:40 +000010688 // FIXME: We're looking into outer scopes here, even when we
10689 // shouldn't be. Doing so can result in ambiguities that we
10690 // shouldn't be diagnosing.
John McCall68263142009-11-18 22:49:29 +000010691 LookupName(Previous, S);
10692
John McCallc96cd7a2013-03-20 01:53:00 +000010693 // When declaring or defining a tag, ignore ambiguities introduced
10694 // by types using'ed into this scope.
Douglas Gregor93b6bce2011-05-09 21:46:33 +000010695 if (Previous.isAmbiguous() &&
10696 (TUK == TUK_Definition || TUK == TUK_Declaration)) {
Douglas Gregor61c6c442011-05-04 00:25:33 +000010697 LookupResult::Filter F = Previous.makeFilter();
10698 while (F.hasNext()) {
10699 NamedDecl *ND = F.next();
10700 if (ND->getDeclContext()->getRedeclContext() != SearchDC)
10701 F.erase();
10702 }
10703 F.done();
Douglas Gregor61c6c442011-05-04 00:25:33 +000010704 }
John McCallc96cd7a2013-03-20 01:53:00 +000010705
10706 // C++11 [namespace.memdef]p3:
10707 // If the name in a friend declaration is neither qualified nor
10708 // a template-id and the declaration is a function or an
10709 // elaborated-type-specifier, the lookup to determine whether
10710 // the entity has been previously declared shall not consider
10711 // any scopes outside the innermost enclosing namespace.
10712 //
10713 // Does it matter that this should be by scope instead of by
10714 // semantic context?
10715 if (!Previous.empty() && TUK == TUK_Friend) {
10716 DeclContext *EnclosingNS = SearchDC->getEnclosingNamespaceContext();
10717 LookupResult::Filter F = Previous.makeFilter();
10718 while (F.hasNext()) {
10719 NamedDecl *ND = F.next();
10720 DeclContext *DC = ND->getDeclContext()->getRedeclContext();
Douglas Gregord9433522013-06-27 20:42:30 +000010721 if (DC->isFileContext() &&
10722 !EnclosingNS->Encloses(ND->getDeclContext())) {
John McCallc96cd7a2013-03-20 01:53:00 +000010723 F.erase();
Douglas Gregord9433522013-06-27 20:42:30 +000010724 FriendSawTagOutsideEnclosingNamespace = true;
10725 }
John McCallc96cd7a2013-03-20 01:53:00 +000010726 }
10727 F.done();
10728 }
Douglas Gregor61c6c442011-05-04 00:25:33 +000010729
John McCall68263142009-11-18 22:49:29 +000010730 // Note: there used to be some attempt at recovery here.
10731 if (Previous.isAmbiguous())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010732 return nullptr;
Douglas Gregor72de6672009-01-08 20:45:30 +000010733
David Blaikie4e4d0842012-03-11 07:00:24 +000010734 if (!getLangOpts().CPlusPlus && TUK != TUK_Reference) {
Douglas Gregor72de6672009-01-08 20:45:30 +000010735 // FIXME: This makes sure that we ignore the contexts associated
10736 // with C structs, unions, and enums when looking for a matching
10737 // tag declaration or definition. See the similar lookup tweak
Douglas Gregor4c921ae2009-01-30 01:04:22 +000010738 // in Sema::LookupName; is there a better way to deal with this?
Douglas Gregor4920f1f2009-01-12 22:49:06 +000010739 while (isa<RecordDecl>(SearchDC) || isa<EnumDecl>(SearchDC))
10740 SearchDC = SearchDC->getParent();
Douglas Gregor72de6672009-01-08 20:45:30 +000010741 }
Douglas Gregor069ea642010-09-16 23:58:57 +000010742 } else if (S->isFunctionPrototypeScope()) {
10743 // If this is an enum declaration in function prototype scope, set its
10744 // initial context to the translation unit.
Nick Lewycky8d176812012-03-10 07:45:33 +000010745 // FIXME: [citation needed]
Douglas Gregor069ea642010-09-16 23:58:57 +000010746 SearchDC = Context.getTranslationUnitDecl();
Argyrios Kyrtzidis630c81b2008-11-09 22:09:58 +000010747 }
10748
John McCall68263142009-11-18 22:49:29 +000010749 if (Previous.isSingleResult() &&
10750 Previous.getFoundDecl()->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +000010751 // Maybe we will complain about the shadowed template parameter.
John McCall68263142009-11-18 22:49:29 +000010752 DiagnoseTemplateParameterShadow(NameLoc, Previous.getFoundDecl());
Douglas Gregor72c3f312008-12-05 18:15:24 +000010753 // Just pretend that we didn't see the previous declaration.
John McCall68263142009-11-18 22:49:29 +000010754 Previous.clear();
Douglas Gregor72c3f312008-12-05 18:15:24 +000010755 }
10756
David Blaikie4e4d0842012-03-11 07:00:24 +000010757 if (getLangOpts().CPlusPlus && Name && DC && StdNamespace &&
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +000010758 DC->Equals(getStdNamespace()) && Name->isStr("bad_alloc")) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +000010759 // This is a declaration of or a reference to "std::bad_alloc".
10760 isStdBadAlloc = true;
10761
John McCall68263142009-11-18 22:49:29 +000010762 if (Previous.empty() && StdBadAlloc) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +000010763 // std::bad_alloc has been implicitly declared (but made invisible to
10764 // name lookup). Fill in this implicit declaration as the previous
10765 // declaration, so that the declarations get chained appropriately.
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +000010766 Previous.addDecl(getStdBadAlloc());
Douglas Gregor7adb10f2009-09-15 22:30:29 +000010767 }
10768 }
John McCall68263142009-11-18 22:49:29 +000010769
John McCall9c86b512010-03-25 21:28:06 +000010770 // If we didn't find a previous declaration, and this is a reference
10771 // (or friend reference), move to the correct scope. In C++, we
10772 // also need to do a redeclaration lookup there, just in case
10773 // there's a shadow friend decl.
10774 if (Name && Previous.empty() &&
10775 (TUK == TUK_Reference || TUK == TUK_Friend)) {
10776 if (Invalid) goto CreateNewDecl;
10777 assert(SS.isEmpty());
10778
10779 if (TUK == TUK_Reference) {
10780 // C++ [basic.scope.pdecl]p5:
10781 // -- for an elaborated-type-specifier of the form
10782 //
10783 // class-key identifier
10784 //
10785 // if the elaborated-type-specifier is used in the
10786 // decl-specifier-seq or parameter-declaration-clause of a
10787 // function defined in namespace scope, the identifier is
10788 // declared as a class-name in the namespace that contains
10789 // the declaration; otherwise, except as a friend
10790 // declaration, the identifier is declared in the smallest
10791 // non-class, non-function-prototype scope that contains the
10792 // declaration.
10793 //
10794 // C99 6.7.2.3p8 has a similar (but not identical!) provision for
10795 // C structs and unions.
10796 //
10797 // It is an error in C++ to declare (rather than define) an enum
10798 // type, including via an elaborated type specifier. We'll
10799 // diagnose that later; for now, declare the enum in the same
10800 // scope as we would have picked for any other tag type.
10801 //
10802 // GNU C also supports this behavior as part of its incomplete
10803 // enum types extension, while GNU C++ does not.
10804 //
10805 // Find the context where we'll be declaring the tag.
10806 // FIXME: We would like to maintain the current DeclContext as the
10807 // lexical context,
Nick Lewycky1659c372012-03-10 07:47:07 +000010808 while (!SearchDC->isFileContext() && !SearchDC->isFunctionOrMethod())
John McCall9c86b512010-03-25 21:28:06 +000010809 SearchDC = SearchDC->getParent();
10810
10811 // Find the scope where we'll be declaring the tag.
10812 while (S->isClassScope() ||
David Blaikie4e4d0842012-03-11 07:00:24 +000010813 (getLangOpts().CPlusPlus &&
John McCall9c86b512010-03-25 21:28:06 +000010814 S->isFunctionPrototypeScope()) ||
10815 ((S->getFlags() & Scope::DeclScope) == 0) ||
Ted Kremenekf0d58612013-10-08 17:08:03 +000010816 (S->getEntity() && S->getEntity()->isTransparentContext()))
John McCall9c86b512010-03-25 21:28:06 +000010817 S = S->getParent();
10818 } else {
10819 assert(TUK == TUK_Friend);
10820 // C++ [namespace.memdef]p3:
10821 // If a friend declaration in a non-local class first declares a
10822 // class or function, the friend class or function is a member of
10823 // the innermost enclosing namespace.
10824 SearchDC = SearchDC->getEnclosingNamespaceContext();
John McCall9c86b512010-03-25 21:28:06 +000010825 }
10826
John McCall0d6b1642010-04-23 18:46:30 +000010827 // In C++, we need to do a redeclaration lookup to properly
10828 // diagnose some problems.
David Blaikie4e4d0842012-03-11 07:00:24 +000010829 if (getLangOpts().CPlusPlus) {
John McCall9c86b512010-03-25 21:28:06 +000010830 Previous.setRedeclarationKind(ForRedeclaration);
10831 LookupQualifiedName(Previous, SearchDC);
10832 }
10833 }
10834
John McCall68263142009-11-18 22:49:29 +000010835 if (!Previous.empty()) {
Stephen Hines651f13c2014-04-23 16:59:28 -070010836 NamedDecl *PrevDecl = Previous.getFoundDecl();
10837 NamedDecl *DirectPrevDecl =
10838 getLangOpts().MSVCCompat ? *Previous.begin() : PrevDecl;
John McCall0d6b1642010-04-23 18:46:30 +000010839
10840 // It's okay to have a tag decl in the same scope as a typedef
10841 // which hides a tag decl in the same scope. Finding this
10842 // insanity with a redeclaration lookup can only actually happen
10843 // in C++.
10844 //
10845 // This is also okay for elaborated-type-specifiers, which is
10846 // technically forbidden by the current standard but which is
10847 // okay according to the likely resolution of an open issue;
10848 // see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407
David Blaikie4e4d0842012-03-11 07:00:24 +000010849 if (getLangOpts().CPlusPlus) {
Richard Smith162e1c12011-04-15 14:24:37 +000010850 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(PrevDecl)) {
John McCall0d6b1642010-04-23 18:46:30 +000010851 if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
10852 TagDecl *Tag = TT->getDecl();
10853 if (Tag->getDeclName() == Name &&
Sebastian Redl7a126a42010-08-31 00:36:30 +000010854 Tag->getDeclContext()->getRedeclContext()
10855 ->Equals(TD->getDeclContext()->getRedeclContext())) {
John McCall0d6b1642010-04-23 18:46:30 +000010856 PrevDecl = Tag;
10857 Previous.clear();
10858 Previous.addDecl(Tag);
Douglas Gregor757c6002010-08-27 22:55:10 +000010859 Previous.resolveKind();
John McCall0d6b1642010-04-23 18:46:30 +000010860 }
10861 }
10862 }
10863 }
10864
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000010865 if (TagDecl *PrevTagDecl = dyn_cast<TagDecl>(PrevDecl)) {
Chris Lattner14943b92008-07-03 03:30:58 +000010866 // If this is a use of a previous tag, or if the tag is already declared
10867 // in the same scope (so that the definition/declaration completes or
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000010868 // rementions the tag), reuse the decl.
John McCall67d1a672009-08-06 02:15:43 +000010869 if (TUK == TUK_Reference || TUK == TUK_Friend ||
Stephen Hines651f13c2014-04-23 16:59:28 -070010870 isDeclInScope(DirectPrevDecl, SearchDC, S,
10871 SS.isNotEmpty() || isExplicitSpecialization)) {
Chris Lattner14943b92008-07-03 03:30:58 +000010872 // Make sure that this wasn't declared as an enum and now used as a
10873 // struct or something similar.
Richard Trieubbf34c02011-06-10 03:11:26 +000010874 if (!isAcceptableTagRedeclaration(PrevTagDecl, Kind,
10875 TUK == TUK_Definition, KWLoc,
10876 *Name)) {
Mike Stump1eb44332009-09-09 15:08:12 +000010877 bool SafeToContinue
Abramo Bagnara465d41b2010-05-11 21:36:43 +000010878 = (PrevTagDecl->getTagKind() != TTK_Enum &&
10879 Kind != TTK_Enum);
Douglas Gregora3a83512009-04-01 23:51:29 +000010880 if (SafeToContinue)
Mike Stump1eb44332009-09-09 15:08:12 +000010881 Diag(KWLoc, diag::err_use_with_wrong_tag)
Douglas Gregora3a83512009-04-01 23:51:29 +000010882 << Name
Douglas Gregor849b2432010-03-31 17:46:05 +000010883 << FixItHint::CreateReplacement(SourceRange(KWLoc),
10884 PrevTagDecl->getKindName());
Douglas Gregora3a83512009-04-01 23:51:29 +000010885 else
10886 Diag(KWLoc, diag::err_use_with_wrong_tag) << Name;
John McCall68263142009-11-18 22:49:29 +000010887 Diag(PrevTagDecl->getLocation(), diag::note_previous_use);
Douglas Gregora3a83512009-04-01 23:51:29 +000010888
Mike Stump1eb44332009-09-09 15:08:12 +000010889 if (SafeToContinue)
Douglas Gregora3a83512009-04-01 23:51:29 +000010890 Kind = PrevTagDecl->getTagKind();
10891 else {
10892 // Recover by making this an anonymous redefinition.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010893 Name = nullptr;
John McCall68263142009-11-18 22:49:29 +000010894 Previous.clear();
Douglas Gregora3a83512009-04-01 23:51:29 +000010895 Invalid = true;
10896 }
10897 }
10898
Douglas Gregor1274ccd2010-10-08 23:50:27 +000010899 if (Kind == TTK_Enum && PrevTagDecl->getTagKind() == TTK_Enum) {
10900 const EnumDecl *PrevEnum = cast<EnumDecl>(PrevTagDecl);
10901
Richard Smithbdad7a22012-01-10 01:33:14 +000010902 // If this is an elaborated-type-specifier for a scoped enumeration,
10903 // the 'class' keyword is not necessary and not permitted.
10904 if (TUK == TUK_Reference || TUK == TUK_Friend) {
10905 if (ScopedEnum)
10906 Diag(ScopedEnumKWLoc, diag::err_enum_class_reference)
10907 << PrevEnum->isScoped()
10908 << FixItHint::CreateRemoval(ScopedEnumKWLoc);
10909 return PrevTagDecl;
10910 }
10911
Richard Smithf1c66b42012-03-14 23:13:10 +000010912 QualType EnumUnderlyingTy;
10913 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
Stephen Hines651f13c2014-04-23 16:59:28 -070010914 EnumUnderlyingTy = TI->getType().getUnqualifiedType();
Richard Smithf1c66b42012-03-14 23:13:10 +000010915 else if (const Type *T = EnumUnderlying.dyn_cast<const Type*>())
10916 EnumUnderlyingTy = QualType(T, 0);
10917
Douglas Gregor1274ccd2010-10-08 23:50:27 +000010918 // All conflicts with previous declarations are recovered by
Richard Smith3343fad2012-03-23 23:09:08 +000010919 // returning the previous declaration, unless this is a definition,
10920 // in which case we want the caller to bail out.
Richard Smithf1c66b42012-03-14 23:13:10 +000010921 if (CheckEnumRedeclaration(NameLoc.isValid() ? NameLoc : KWLoc,
10922 ScopedEnum, EnumUnderlyingTy, PrevEnum))
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010923 return TUK == TUK_Declaration ? PrevTagDecl : nullptr;
Douglas Gregor1274ccd2010-10-08 23:50:27 +000010924 }
10925
David Majnemer2ec2b842013-06-11 03:51:23 +000010926 // C++11 [class.mem]p1:
David Majnemer0f9b8552013-06-11 06:19:45 +000010927 // A member shall not be declared twice in the member-specification,
David Majnemer2ec2b842013-06-11 03:51:23 +000010928 // except that a nested class or member class template can be declared
10929 // and then later defined.
10930 if (TUK == TUK_Declaration && PrevDecl->isCXXClassMember() &&
10931 S->isDeclScope(PrevDecl)) {
10932 Diag(NameLoc, diag::ext_member_redeclared);
10933 Diag(PrevTagDecl->getLocation(), diag::note_previous_declaration);
10934 }
10935
Douglas Gregora3a83512009-04-01 23:51:29 +000010936 if (!Invalid) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010937 // If this is a use, just return the declaration we found, unless
10938 // we have attributes.
Chris Lattner14943b92008-07-03 03:30:58 +000010939
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000010940 // FIXME: In the future, return a variant or some other clue
10941 // for the consumer of this Decl to know it doesn't own it.
10942 // For our current ASTs this shouldn't be a problem, but will
10943 // need to be changed with DeclGroups.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010944 if (!Attr &&
10945 ((TUK == TUK_Reference &&
10946 (!PrevTagDecl->getFriendObjectKind() || getLangOpts().MicrosoftExt))
10947 || TUK == TUK_Friend))
John McCalld226f652010-08-21 09:40:31 +000010948 return PrevTagDecl;
Douglas Gregoraaba5e32009-02-04 19:02:06 +000010949
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000010950 // Diagnose attempts to redefine a tag.
John McCall0f434ec2009-07-31 02:45:11 +000010951 if (TUK == TUK_Definition) {
Douglas Gregor952b0172010-02-11 01:04:33 +000010952 if (TagDecl *Def = PrevTagDecl->getDefinition()) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +000010953 // If we're defining a specialization and the previous definition
10954 // is from an implicit instantiation, don't emit an error
10955 // here; we'll catch this in the general case below.
Richard Smith1af83c42012-03-23 03:33:32 +000010956 bool IsExplicitSpecializationAfterInstantiation = false;
10957 if (isExplicitSpecialization) {
10958 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Def))
10959 IsExplicitSpecializationAfterInstantiation =
10960 RD->getTemplateSpecializationKind() !=
10961 TSK_ExplicitSpecialization;
10962 else if (EnumDecl *ED = dyn_cast<EnumDecl>(Def))
10963 IsExplicitSpecializationAfterInstantiation =
10964 ED->getTemplateSpecializationKind() !=
10965 TSK_ExplicitSpecialization;
10966 }
10967
10968 if (!IsExplicitSpecializationAfterInstantiation) {
James Molloy16f1f712012-02-29 10:24:19 +000010969 // A redeclaration in function prototype scope in C isn't
10970 // visible elsewhere, so merely issue a warning.
David Blaikie4e4d0842012-03-11 07:00:24 +000010971 if (!getLangOpts().CPlusPlus && S->containedInPrototypeScope())
James Molloy16f1f712012-02-29 10:24:19 +000010972 Diag(NameLoc, diag::warn_redefinition_in_param_list) << Name;
10973 else
10974 Diag(NameLoc, diag::err_redefinition) << Name;
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +000010975 Diag(Def->getLocation(), diag::note_previous_definition);
10976 // If this is a redefinition, recover by making this
10977 // struct be anonymous, which will make any later
10978 // references get the previous definition.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010979 Name = nullptr;
John McCall68263142009-11-18 22:49:29 +000010980 Previous.clear();
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +000010981 Invalid = true;
10982 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +000010983 } else {
10984 // If the type is currently being defined, complain
10985 // about a nested redefinition.
John McCallf4c73712011-01-19 06:33:43 +000010986 const TagType *Tag
10987 = cast<TagType>(Context.getTagDeclType(PrevTagDecl));
Douglas Gregor0b7a1582009-01-17 00:42:38 +000010988 if (Tag->isBeingDefined()) {
10989 Diag(NameLoc, diag::err_nested_redefinition) << Name;
Mike Stump1eb44332009-09-09 15:08:12 +000010990 Diag(PrevTagDecl->getLocation(),
Douglas Gregor0b7a1582009-01-17 00:42:38 +000010991 diag::note_previous_definition);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010992 Name = nullptr;
John McCall68263142009-11-18 22:49:29 +000010993 Previous.clear();
Douglas Gregor0b7a1582009-01-17 00:42:38 +000010994 Invalid = true;
10995 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000010996 }
Douglas Gregor0b7a1582009-01-17 00:42:38 +000010997
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000010998 // Okay, this is definition of a previously declared or referenced
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010999 // tag. We're going to create a new Decl for it.
11000 }
11001
11002 // Okay, we're going to make a redeclaration. If this is some kind
11003 // of reference, make sure we build the redeclaration in the same DC
11004 // as the original, and ignore the current access specifier.
11005 if (TUK == TUK_Friend || TUK == TUK_Reference) {
11006 SearchDC = PrevTagDecl->getDeclContext();
11007 AS = AS_none;
Douglas Gregor0b7a1582009-01-17 00:42:38 +000011008 }
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000011009 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011010 // If we get here we have (another) forward declaration or we
John McCall67d1a672009-08-06 02:15:43 +000011011 // have a definition. Just create a new decl.
11012
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011013 } else {
11014 // If we get here, this is a definition of a new tag type in a nested
Mike Stump1eb44332009-09-09 15:08:12 +000011015 // scope, e.g. "struct foo; void bar() { struct foo; }", just create a
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011016 // new decl/type. We set PrevDecl to NULL so that the entities
11017 // have distinct types.
John McCall68263142009-11-18 22:49:29 +000011018 Previous.clear();
Reid Spencer5f016e22007-07-11 17:01:13 +000011019 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011020 // If we get here, we're going to create a new Decl. If PrevDecl
11021 // is non-NULL, it's a definition of the tag declared by
11022 // PrevDecl. If it's NULL, we have a new definition.
John McCall0d6b1642010-04-23 18:46:30 +000011023
11024
11025 // Otherwise, PrevDecl is not a tag, but was found with tag
11026 // lookup. This is only actually possible in C++, where a few
11027 // things like templates still live in the tag namespace.
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +000011028 } else {
John McCall0d6b1642010-04-23 18:46:30 +000011029 // Use a better diagnostic if an elaborated-type-specifier
11030 // found the wrong kind of type on the first
11031 // (non-redeclaration) lookup.
11032 if ((TUK == TUK_Reference || TUK == TUK_Friend) &&
11033 !Previous.isForRedeclaration()) {
11034 unsigned Kind = 0;
11035 if (isa<TypedefDecl>(PrevDecl)) Kind = 1;
Richard Smith162e1c12011-04-15 14:24:37 +000011036 else if (isa<TypeAliasDecl>(PrevDecl)) Kind = 2;
11037 else if (isa<ClassTemplateDecl>(PrevDecl)) Kind = 3;
John McCall0d6b1642010-04-23 18:46:30 +000011038 Diag(NameLoc, diag::err_tag_reference_non_tag) << Kind;
11039 Diag(PrevDecl->getLocation(), diag::note_declared_at);
11040 Invalid = true;
11041
11042 // Otherwise, only diagnose if the declaration is in scope.
Stephen Hines651f13c2014-04-23 16:59:28 -070011043 } else if (!isDeclInScope(PrevDecl, SearchDC, S,
11044 SS.isNotEmpty() || isExplicitSpecialization)) {
John McCall0d6b1642010-04-23 18:46:30 +000011045 // do nothing
11046
11047 // Diagnose implicit declarations introduced by elaborated types.
11048 } else if (TUK == TUK_Reference || TUK == TUK_Friend) {
11049 unsigned Kind = 0;
11050 if (isa<TypedefDecl>(PrevDecl)) Kind = 1;
Richard Smith162e1c12011-04-15 14:24:37 +000011051 else if (isa<TypeAliasDecl>(PrevDecl)) Kind = 2;
11052 else if (isa<ClassTemplateDecl>(PrevDecl)) Kind = 3;
John McCall0d6b1642010-04-23 18:46:30 +000011053 Diag(NameLoc, diag::err_tag_reference_conflict) << Kind;
11054 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
11055 Invalid = true;
11056
11057 // Otherwise it's a declaration. Call out a particularly common
11058 // case here.
Richard Smith162e1c12011-04-15 14:24:37 +000011059 } else if (TypedefNameDecl *TND = dyn_cast<TypedefNameDecl>(PrevDecl)) {
11060 unsigned Kind = 0;
11061 if (isa<TypeAliasDecl>(PrevDecl)) Kind = 1;
John McCall0d6b1642010-04-23 18:46:30 +000011062 Diag(NameLoc, diag::err_tag_definition_of_typedef)
Richard Smith162e1c12011-04-15 14:24:37 +000011063 << Name << Kind << TND->getUnderlyingType();
John McCall0d6b1642010-04-23 18:46:30 +000011064 Diag(PrevDecl->getLocation(), diag::note_previous_decl) << PrevDecl;
11065 Invalid = true;
11066
11067 // Otherwise, diagnose.
11068 } else {
11069 // The tag name clashes with something else in the target scope,
11070 // issue an error and recover by making this tag be anonymous.
Chris Lattner3c73c412008-11-19 08:23:25 +000011071 Diag(NameLoc, diag::err_redefinition_different_kind) << Name;
Chris Lattner5f4a6822008-11-23 23:12:31 +000011072 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011073 Name = nullptr;
Douglas Gregor0b7a1582009-01-17 00:42:38 +000011074 Invalid = true;
Argyrios Kyrtzidisb02ef242008-07-16 07:45:46 +000011075 }
John McCall0d6b1642010-04-23 18:46:30 +000011076
11077 // The existing declaration isn't relevant to us; we're in a
11078 // new scope, so clear out the previous declaration.
11079 Previous.clear();
Reid Spencer5f016e22007-07-11 17:01:13 +000011080 }
Reid Spencer5f016e22007-07-11 17:01:13 +000011081 }
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +000011082
Chris Lattnercc98eac2008-12-17 07:13:27 +000011083CreateNewDecl:
Mike Stump1eb44332009-09-09 15:08:12 +000011084
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011085 TagDecl *PrevDecl = nullptr;
John McCall68263142009-11-18 22:49:29 +000011086 if (Previous.isSingleResult())
11087 PrevDecl = cast<TagDecl>(Previous.getFoundDecl());
11088
Reid Spencer5f016e22007-07-11 17:01:13 +000011089 // If there is an identifier, use the location of the identifier as the
11090 // location of the decl, otherwise use the location of the struct/union
11091 // keyword.
11092 SourceLocation Loc = NameLoc.isValid() ? NameLoc : KWLoc;
Mike Stump1eb44332009-09-09 15:08:12 +000011093
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011094 // Otherwise, create a new declaration. If there is a previous
11095 // declaration of the same entity, the two will be linked via
11096 // PrevDecl.
Reid Spencer5f016e22007-07-11 17:01:13 +000011097 TagDecl *New;
Douglas Gregorbcbffc42009-01-07 00:43:41 +000011098
Douglas Gregor1274ccd2010-10-08 23:50:27 +000011099 bool IsForwardReference = false;
Abramo Bagnara465d41b2010-05-11 21:36:43 +000011100 if (Kind == TTK_Enum) {
Reid Spencer5f016e22007-07-11 17:01:13 +000011101 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
11102 // enum X { A, B, C } D; D should chain to X.
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000011103 New = EnumDecl::Create(Context, SearchDC, KWLoc, Loc, Name,
Douglas Gregor1274ccd2010-10-08 23:50:27 +000011104 cast_or_null<EnumDecl>(PrevDecl), ScopedEnum,
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +000011105 ScopedEnumUsesClassTag, !EnumUnderlying.isNull());
Reid Spencer5f016e22007-07-11 17:01:13 +000011106 // If this is an undefined enum, warn.
Douglas Gregorf3a7b7c2010-06-22 14:26:35 +000011107 if (TUK != TUK_Definition && !Invalid) {
11108 TagDecl *Def;
Douglas Gregorabde2c72013-03-25 22:22:35 +000011109 if ((getLangOpts().CPlusPlus11 || getLangOpts().ObjC2) &&
11110 cast<EnumDecl>(New)->isFixed()) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +000011111 // C++0x: 7.2p2: opaque-enum-declaration.
11112 // Conflicts are diagnosed above. Do nothing.
11113 }
11114 else if (PrevDecl && (Def = cast<EnumDecl>(PrevDecl)->getDefinition())) {
Douglas Gregorf3a7b7c2010-06-22 14:26:35 +000011115 Diag(Loc, diag::ext_forward_ref_enum_def)
11116 << New;
11117 Diag(Def->getLocation(), diag::note_previous_definition);
11118 } else {
Francois Pichet8dc3abc2010-09-12 05:06:55 +000011119 unsigned DiagID = diag::ext_forward_ref_enum;
Stephen Hines651f13c2014-04-23 16:59:28 -070011120 if (getLangOpts().MSVCCompat)
Francois Pichet8dc3abc2010-09-12 05:06:55 +000011121 DiagID = diag::ext_ms_forward_ref_enum;
David Blaikie4e4d0842012-03-11 07:00:24 +000011122 else if (getLangOpts().CPlusPlus)
Francois Pichet8dc3abc2010-09-12 05:06:55 +000011123 DiagID = diag::err_forward_ref_enum;
11124 Diag(Loc, DiagID);
Douglas Gregor1274ccd2010-10-08 23:50:27 +000011125
11126 // If this is a forward-declared reference to an enumeration, make a
11127 // note of it; we won't actually be introducing the declaration into
11128 // the declaration context.
11129 if (TUK == TUK_Reference)
11130 IsForwardReference = true;
Douglas Gregorf3a7b7c2010-06-22 14:26:35 +000011131 }
Douglas Gregor80711a22009-03-06 18:34:03 +000011132 }
Douglas Gregor1274ccd2010-10-08 23:50:27 +000011133
11134 if (EnumUnderlying) {
11135 EnumDecl *ED = cast<EnumDecl>(New);
11136 if (TypeSourceInfo *TI = EnumUnderlying.dyn_cast<TypeSourceInfo*>())
11137 ED->setIntegerTypeSourceInfo(TI);
11138 else
11139 ED->setIntegerType(QualType(EnumUnderlying.get<const Type*>(), 0));
11140 ED->setPromotionType(ED->getIntegerType());
11141 }
11142
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +000011143 } else {
11144 // struct/union/class
11145
Reid Spencer5f016e22007-07-11 17:01:13 +000011146 // FIXME: Tag decls should be chained to any simultaneous vardecls, e.g.:
11147 // struct X { int A; } D; D should chain to X.
David Blaikie4e4d0842012-03-11 07:00:24 +000011148 if (getLangOpts().CPlusPlus) {
Ted Kremenek2b345eb2008-09-05 17:39:33 +000011149 // FIXME: Look for a way to use RecordDecl for simple structs.
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000011150 New = CXXRecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011151 cast_or_null<CXXRecordDecl>(PrevDecl));
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000011152
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +000011153 if (isStdBadAlloc && (!StdBadAlloc || getStdBadAlloc()->isImplicit()))
Douglas Gregor7adb10f2009-09-15 22:30:29 +000011154 StdBadAlloc = cast<CXXRecordDecl>(New);
11155 } else
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000011156 New = RecordDecl::Create(Context, Kind, SearchDC, KWLoc, Loc, Name,
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011157 cast_or_null<RecordDecl>(PrevDecl));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000011158 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011159
Stephen Hines651f13c2014-04-23 16:59:28 -070011160 // C++11 [dcl.type]p3:
11161 // A type-specifier-seq shall not define a class or enumeration [...].
11162 if (getLangOpts().CPlusPlus && IsTypeSpecifier && TUK == TUK_Definition) {
11163 Diag(New->getLocation(), diag::err_type_defined_in_type_specifier)
11164 << Context.getTagDeclType(New);
11165 Invalid = true;
11166 }
11167
John McCallb6217662010-03-15 10:12:16 +000011168 // Maybe add qualifier info.
11169 if (SS.isNotEmpty()) {
Fariborz Jahanian4fb20532010-05-14 21:35:02 +000011170 if (SS.isSet()) {
Douglas Gregor69605872012-03-28 16:01:27 +000011171 // If this is either a declaration or a definition, check the
11172 // nested-name-specifier against the current context. We don't do this
11173 // for explicit specializations, because they have similar checking
11174 // (with more specific diagnostics) in the call to
11175 // CheckMemberSpecialization, below.
11176 if (!isExplicitSpecialization &&
11177 (TUK == TUK_Definition || TUK == TUK_Declaration) &&
11178 diagnoseQualifiedDeclaration(SS, DC, OrigName, NameLoc))
11179 Invalid = true;
11180
Douglas Gregorc22b5ff2011-02-25 02:25:35 +000011181 New->setQualifierInfo(SS.getWithLocInContext(Context));
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000011182 if (TemplateParameterLists.size() > 0) {
Douglas Gregorc722ea42010-06-15 17:44:38 +000011183 New->setTemplateParameterListsInfo(Context,
Abramo Bagnara7f0a9152011-03-18 15:16:37 +000011184 TemplateParameterLists.size(),
Benjamin Kramer5354e772012-08-23 23:38:35 +000011185 TemplateParameterLists.data());
Abramo Bagnara9b934882010-06-12 08:15:14 +000011186 }
Fariborz Jahanian4fb20532010-05-14 21:35:02 +000011187 }
11188 else
11189 Invalid = true;
John McCallb6217662010-03-15 10:12:16 +000011190 }
11191
Daniel Dunbar9f21f892010-05-27 01:53:40 +000011192 if (RecordDecl *RD = dyn_cast<RecordDecl>(New)) {
11193 // Add alignment attributes if necessary; these attributes are checked when
11194 // the ASTContext lays out the structure.
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011195 //
11196 // It is important for implementing the correct semantics that this
11197 // happen here (in act on tag decl). The #pragma pack stack is
11198 // maintained as a result of parser callbacks which can occur at
11199 // many points during the parsing of a struct declaration (because
11200 // the #pragma tokens are effectively skipped over during the
11201 // parsing of the struct).
Eli Friedman2016c8c2012-08-08 21:08:34 +000011202 if (TUK == TUK_Definition) {
11203 AddAlignmentAttributesForRecord(RD);
11204 AddMsStructLayoutForRecord(RD);
11205 }
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011206 }
11207
Douglas Gregor2ccd89c2011-12-20 18:11:52 +000011208 if (ModulePrivateLoc.isValid()) {
Douglas Gregord023aec2011-09-09 20:53:38 +000011209 if (isExplicitSpecialization)
11210 Diag(New->getLocation(), diag::err_module_private_specialization)
11211 << 2
11212 << FixItHint::CreateRemoval(ModulePrivateLoc);
Douglas Gregore3895852011-09-12 18:37:38 +000011213 // __module_private__ does not apply to local classes. However, we only
11214 // diagnose this as an error when the declaration specifiers are
11215 // freestanding. Here, we just ignore the __module_private__.
Douglas Gregore3895852011-09-12 18:37:38 +000011216 else if (!SearchDC->isFunctionOrMethod())
Douglas Gregore7612302011-09-09 19:05:14 +000011217 New->setModulePrivate();
11218 }
11219
Douglas Gregorf6b11852009-10-08 15:14:33 +000011220 // If this is a specialization of a member class (of a class template),
11221 // check the specialization.
John McCall68263142009-11-18 22:49:29 +000011222 if (isExplicitSpecialization && CheckMemberSpecialization(New, Previous))
Douglas Gregorf6b11852009-10-08 15:14:33 +000011223 Invalid = true;
Douglas Gregor69605872012-03-28 16:01:27 +000011224
Douglas Gregor0b7a1582009-01-17 00:42:38 +000011225 if (Invalid)
11226 New->setInvalidDecl();
11227
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011228 if (Attr)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000011229 ProcessDeclAttributeList(S, New, Attr);
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011230
Stephen Hines651f13c2014-04-23 16:59:28 -070011231 // If we're declaring or defining a tag in function prototype scope in C,
11232 // note that this type can only be used within the function and add it to
11233 // the list of decls to inject into the function definition scope.
11234 if (!getLangOpts().CPlusPlus && (Name || Kind == TTK_Enum) &&
11235 getNonFieldDeclScope(S)->isFunctionPrototypeScope()) {
Douglas Gregor3218c4b2009-01-09 22:42:13 +000011236 Diag(Loc, diag::warn_decl_in_param_list) << Context.getTagDeclType(New);
Stephen Hines651f13c2014-04-23 16:59:28 -070011237 DeclsInPrototypeScope.push_back(New);
11238 }
Douglas Gregor3218c4b2009-01-09 22:42:13 +000011239
Douglas Gregor7df7b6b2008-12-15 16:32:14 +000011240 // Set the lexical context. If the tag has a C++ scope specifier, the
11241 // lexical context will be different from the semantic context.
Douglas Gregor1931b442009-02-03 00:34:39 +000011242 New->setLexicalDeclContext(CurContext);
Douglas Gregor0b7a1582009-01-17 00:42:38 +000011243
John McCall02cace72009-08-28 07:59:38 +000011244 // Mark this as a friend decl if applicable.
Francois Pichetb4746032011-06-01 04:14:20 +000011245 // In Microsoft mode, a friend declaration also acts as a forward
11246 // declaration so we always pass true to setObjectOfFriendDecl to make
11247 // the tag name visible.
John McCall02cace72009-08-28 07:59:38 +000011248 if (TUK == TUK_Friend)
Richard Smith22050f22013-07-17 23:53:16 +000011249 New->setObjectOfFriendDecl(!FriendSawTagOutsideEnclosingNamespace &&
11250 getLangOpts().MicrosoftExt);
John McCall02cace72009-08-28 07:59:38 +000011251
Anders Carlsson0cf88302009-03-26 01:19:02 +000011252 // Set the access specifier.
John McCall9c86b512010-03-25 21:28:06 +000011253 if (!Invalid && SearchDC->isRecord())
Douglas Gregord0c87372009-05-27 17:30:49 +000011254 SetMemberAccessSpecifier(New, PrevDecl, AS);
Douglas Gregor06c0fec2009-03-25 22:00:53 +000011255
John McCall0f434ec2009-07-31 02:45:11 +000011256 if (TUK == TUK_Definition)
Douglas Gregor0b7a1582009-01-17 00:42:38 +000011257 New->startDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +000011258
Reid Spencer5f016e22007-07-11 17:01:13 +000011259 // If this has an identifier, add it to the scope stack.
John McCalld7eff682009-09-02 00:55:30 +000011260 if (TUK == TUK_Friend) {
John McCall82b9fb82009-09-02 19:32:14 +000011261 // We might be replacing an existing declaration in the lookup tables;
11262 // if so, borrow its access specifier.
11263 if (PrevDecl)
11264 New->setAccess(PrevDecl->getAccess());
11265
Sebastian Redl7a126a42010-08-31 00:36:30 +000011266 DeclContext *DC = New->getDeclContext()->getRedeclContext();
Richard Smith1b7f9cb2012-03-13 03:12:56 +000011267 DC->makeDeclVisibleInContext(New);
John McCall9c86b512010-03-25 21:28:06 +000011268 if (Name) // can be null along some error paths
John McCalld7eff682009-09-02 00:55:30 +000011269 if (Scope *EnclosingScope = getScopeForDeclContext(S, DC))
11270 PushOnScopeChains(New, EnclosingScope, /* AddToContext = */ false);
John McCalld7eff682009-09-02 00:55:30 +000011271 } else if (Name) {
Douglas Gregor1a0d31a2009-01-12 18:45:55 +000011272 S = getNonFieldDeclScope(S);
Douglas Gregor1274ccd2010-10-08 23:50:27 +000011273 PushOnScopeChains(New, S, !IsForwardReference);
11274 if (IsForwardReference)
Richard Smith1b7f9cb2012-03-13 03:12:56 +000011275 SearchDC->makeDeclVisibleInContext(New);
Douglas Gregor1274ccd2010-10-08 23:50:27 +000011276
Douglas Gregor4920f1f2009-01-12 22:49:06 +000011277 } else {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000011278 CurContext->addDecl(New);
Reid Spencer5f016e22007-07-11 17:01:13 +000011279 }
Argyrios Kyrtzidis52393042008-11-09 23:41:00 +000011280
Douglas Gregorc29f77b2009-07-07 16:35:42 +000011281 // If this is the C FILE type, notify the AST context.
11282 if (IdentifierInfo *II = New->getIdentifier())
11283 if (!New->isInvalidDecl() &&
Sebastian Redl7a126a42010-08-31 00:36:30 +000011284 New->getDeclContext()->getRedeclContext()->isTranslationUnit() &&
Douglas Gregorc29f77b2009-07-07 16:35:42 +000011285 II->isStr("FILE"))
11286 Context.setFILEDecl(New);
Mike Stump1eb44332009-09-09 15:08:12 +000011287
Rafael Espindola98ae8342012-05-10 02:50:16 +000011288 if (PrevDecl)
11289 mergeDeclAttributes(New, PrevDecl);
11290
Rafael Espindola71adc5b2012-07-17 15:14:47 +000011291 // If there's a #pragma GCC visibility in scope, set the visibility of this
11292 // record.
11293 AddPushedVisibilityAttribute(New);
11294
Douglas Gregor402abb52009-05-28 23:31:59 +000011295 OwnedDecl = true;
Richard Smith37ec8d52012-12-05 11:34:06 +000011296 // In C++, don't return an invalid declaration. We can't recover well from
11297 // the cases where we make the type anonymous.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011298 return (Invalid && getLangOpts().CPlusPlus) ? nullptr : New;
Reid Spencer5f016e22007-07-11 17:01:13 +000011299}
11300
John McCalld226f652010-08-21 09:40:31 +000011301void Sema::ActOnTagStartDefinition(Scope *S, Decl *TagD) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +000011302 AdjustDeclIfTemplate(TagD);
John McCalld226f652010-08-21 09:40:31 +000011303 TagDecl *Tag = cast<TagDecl>(TagD);
Douglas Gregor48c89f42010-04-24 16:38:41 +000011304
Douglas Gregor72de6672009-01-08 20:45:30 +000011305 // Enter the tag context.
11306 PushDeclContext(S, Tag);
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +000011307
11308 ActOnDocumentableDecl(TagD);
Rafael Espindola5e065292012-07-12 04:47:34 +000011309
11310 // If there's a #pragma GCC visibility in scope, set the visibility of this
11311 // record.
11312 AddPushedVisibilityAttribute(Tag);
John McCallf9368152009-12-20 07:58:13 +000011313}
Douglas Gregor72de6672009-01-08 20:45:30 +000011314
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +000011315Decl *Sema::ActOnObjCContainerStartDefinition(Decl *IDecl) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000011316 assert(isa<ObjCContainerDecl>(IDecl) &&
11317 "ActOnObjCContainerStartDefinition - Not ObjCContainerDecl");
11318 DeclContext *OCD = cast<DeclContext>(IDecl);
11319 assert(getContainingDC(OCD) == CurContext &&
11320 "The next DeclContext should be lexically contained in the current one.");
11321 CurContext = OCD;
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +000011322 return IDecl;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000011323}
11324
John McCalld226f652010-08-21 09:40:31 +000011325void Sema::ActOnStartCXXMemberDeclarations(Scope *S, Decl *TagD,
Anders Carlsson2c3ee542011-03-25 14:31:08 +000011326 SourceLocation FinalLoc,
David Majnemer7121bdb2013-10-18 00:33:31 +000011327 bool IsFinalSpelledSealed,
John McCallf9368152009-12-20 07:58:13 +000011328 SourceLocation LBraceLoc) {
11329 AdjustDeclIfTemplate(TagD);
John McCalld226f652010-08-21 09:40:31 +000011330 CXXRecordDecl *Record = cast<CXXRecordDecl>(TagD);
Douglas Gregor72de6672009-01-08 20:45:30 +000011331
John McCallf9368152009-12-20 07:58:13 +000011332 FieldCollector->StartClass();
11333
11334 if (!Record->getIdentifier())
11335 return;
11336
Anders Carlsson2c3ee542011-03-25 14:31:08 +000011337 if (FinalLoc.isValid())
David Majnemer7121bdb2013-10-18 00:33:31 +000011338 Record->addAttr(new (Context)
11339 FinalAttr(FinalLoc, Context, IsFinalSpelledSealed));
11340
John McCallf9368152009-12-20 07:58:13 +000011341 // C++ [class]p2:
11342 // [...] The class-name is also inserted into the scope of the
11343 // class itself; this is known as the injected-class-name. For
11344 // purposes of access checking, the injected-class-name is treated
11345 // as if it were a public member name.
11346 CXXRecordDecl *InjectedClassName
Abramo Bagnaraba877ad2011-03-09 14:09:51 +000011347 = CXXRecordDecl::Create(Context, Record->getTagKind(), CurContext,
11348 Record->getLocStart(), Record->getLocation(),
John McCallf9368152009-12-20 07:58:13 +000011349 Record->getIdentifier(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011350 /*PrevDecl=*/nullptr,
Argyrios Kyrtzidis3b8f6102010-10-14 20:14:21 +000011351 /*DelayTypeCreation=*/true);
11352 Context.getTypeDeclType(InjectedClassName, Record);
John McCallf9368152009-12-20 07:58:13 +000011353 InjectedClassName->setImplicit();
11354 InjectedClassName->setAccess(AS_public);
11355 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate())
11356 InjectedClassName->setDescribedClassTemplate(Template);
11357 PushOnScopeChains(InjectedClassName, S);
11358 assert(InjectedClassName->isInjectedClassName() &&
11359 "Broken injected-class-name");
Douglas Gregor72de6672009-01-08 20:45:30 +000011360}
11361
John McCalld226f652010-08-21 09:40:31 +000011362void Sema::ActOnTagFinishDefinition(Scope *S, Decl *TagD,
Argyrios Kyrtzidis07a5b282009-07-14 03:17:52 +000011363 SourceLocation RBraceLoc) {
Douglas Gregoraaba5e32009-02-04 19:02:06 +000011364 AdjustDeclIfTemplate(TagD);
John McCalld226f652010-08-21 09:40:31 +000011365 TagDecl *Tag = cast<TagDecl>(TagD);
Argyrios Kyrtzidis07a5b282009-07-14 03:17:52 +000011366 Tag->setRBraceLoc(RBraceLoc);
Douglas Gregor72de6672009-01-08 20:45:30 +000011367
Argyrios Kyrtzidis216f78b2012-03-09 20:10:30 +000011368 // Make sure we "complete" the definition even it is invalid.
11369 if (Tag->isBeingDefined()) {
11370 assert(Tag->isInvalidDecl() && "We should already have completed it");
11371 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
11372 RD->completeDefinition();
11373 }
11374
Douglas Gregor72de6672009-01-08 20:45:30 +000011375 if (isa<CXXRecordDecl>(Tag))
11376 FieldCollector->FinishClass();
11377
11378 // Exit this scope of this tag's definition.
11379 PopDeclContext();
Argyrios Kyrtzidis3d207e72013-01-29 18:00:54 +000011380
11381 if (getCurLexicalContext()->isObjCContainer() &&
11382 Tag->getDeclContext()->isFileContext())
11383 Tag->setTopLevelDeclInObjCContainer();
11384
Douglas Gregor72de6672009-01-08 20:45:30 +000011385 // Notify the consumer that we've defined a tag.
Serge Pavlov439b7012013-07-02 17:31:56 +000011386 if (!Tag->isInvalidDecl())
11387 Consumer.HandleTagDeclDefinition(Tag);
Douglas Gregor72de6672009-01-08 20:45:30 +000011388}
Chris Lattner5a6ddbf2008-06-21 19:39:06 +000011389
Fariborz Jahanian10af8792011-08-29 17:33:12 +000011390void Sema::ActOnObjCContainerFinishDefinition() {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000011391 // Exit this scope of this interface definition.
11392 PopDeclContext();
11393}
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +000011394
Argyrios Kyrtzidis458bacf2011-10-27 00:09:34 +000011395void Sema::ActOnObjCTemporaryExitContainerContext(DeclContext *DC) {
Argyrios Kyrtzidis4a7dc8a2011-10-27 00:53:06 +000011396 assert(DC == CurContext && "Mismatch of container contexts");
11397 OriginalLexicalContext = DC;
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +000011398 ActOnObjCContainerFinishDefinition();
11399}
11400
Argyrios Kyrtzidis458bacf2011-10-27 00:09:34 +000011401void Sema::ActOnObjCReenterContainerContext(DeclContext *DC) {
11402 ActOnObjCContainerStartDefinition(cast<Decl>(DC));
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011403 OriginalLexicalContext = nullptr;
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +000011404}
11405
John McCalld226f652010-08-21 09:40:31 +000011406void Sema::ActOnTagDefinitionError(Scope *S, Decl *TagD) {
John McCalldb7bb4a2010-03-17 00:38:33 +000011407 AdjustDeclIfTemplate(TagD);
John McCalld226f652010-08-21 09:40:31 +000011408 TagDecl *Tag = cast<TagDecl>(TagD);
John McCalldb7bb4a2010-03-17 00:38:33 +000011409 Tag->setInvalidDecl();
11410
Argyrios Kyrtzidis216f78b2012-03-09 20:10:30 +000011411 // Make sure we "complete" the definition even it is invalid.
11412 if (Tag->isBeingDefined()) {
11413 if (RecordDecl *RD = dyn_cast<RecordDecl>(Tag))
11414 RD->completeDefinition();
11415 }
11416
John McCalla8cab012010-03-17 19:25:57 +000011417 // We're undoing ActOnTagStartDefinition here, not
11418 // ActOnStartCXXMemberDeclarations, so we don't have to mess with
11419 // the FieldCollector.
John McCalldb7bb4a2010-03-17 00:38:33 +000011420
11421 PopDeclContext();
11422}
11423
Chris Lattnerdf9bcd52009-04-20 17:29:38 +000011424// Note that FieldName may be null for anonymous bitfields.
Richard Smith282e7e62012-02-04 09:53:13 +000011425ExprResult Sema::VerifyBitField(SourceLocation FieldLoc,
11426 IdentifierInfo *FieldName,
Reid Kleckner9a3ecb02013-07-17 20:46:03 +000011427 QualType FieldTy, bool IsMsStruct,
11428 Expr *BitWidth, bool *ZeroWidth) {
Eli Friedman1d954f62009-08-15 21:55:26 +000011429 // Default to true; that shouldn't confuse checks for emptiness
11430 if (ZeroWidth)
11431 *ZeroWidth = true;
11432
Chris Lattner24793662009-03-05 22:45:59 +000011433 // C99 6.7.2.1p4 - verify the field type.
Chris Lattner8b963ef2009-03-05 23:01:03 +000011434 // C++ 9.6p3: A bit-field shall have integral or enumeration type.
Douglas Gregor2ade35e2010-06-16 00:17:44 +000011435 if (!FieldTy->isDependentType() && !FieldTy->isIntegralOrEnumerationType()) {
Chris Lattner24793662009-03-05 22:45:59 +000011436 // Handle incomplete types with specific error.
Douglas Gregora03aca82009-03-10 21:58:27 +000011437 if (RequireCompleteType(FieldLoc, FieldTy, diag::err_field_incomplete))
Richard Smith282e7e62012-02-04 09:53:13 +000011438 return ExprError();
Chris Lattnerdf9bcd52009-04-20 17:29:38 +000011439 if (FieldName)
11440 return Diag(FieldLoc, diag::err_not_integral_type_bitfield)
11441 << FieldName << FieldTy << BitWidth->getSourceRange();
11442 return Diag(FieldLoc, diag::err_not_integral_type_anon_bitfield)
11443 << FieldTy << BitWidth->getSourceRange();
Douglas Gregore1862692010-12-15 23:18:36 +000011444 } else if (DiagnoseUnexpandedParameterPack(const_cast<Expr *>(BitWidth),
11445 UPPC_BitFieldWidth))
Richard Smith282e7e62012-02-04 09:53:13 +000011446 return ExprError();
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011447
11448 // If the bit-width is type- or value-dependent, don't try to check
11449 // it now.
11450 if (BitWidth->isValueDependent() || BitWidth->isTypeDependent())
Richard Smith282e7e62012-02-04 09:53:13 +000011451 return Owned(BitWidth);
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011452
Anders Carlsson9f1e5722008-12-06 20:33:04 +000011453 llvm::APSInt Value;
Richard Smith282e7e62012-02-04 09:53:13 +000011454 ExprResult ICE = VerifyIntegerConstantExpression(BitWidth, &Value);
11455 if (ICE.isInvalid())
11456 return ICE;
11457 BitWidth = ICE.take();
Anders Carlsson9f1e5722008-12-06 20:33:04 +000011458
Eli Friedman1d954f62009-08-15 21:55:26 +000011459 if (Value != 0 && ZeroWidth)
11460 *ZeroWidth = false;
11461
Chris Lattnercd087072008-12-12 04:56:04 +000011462 // Zero-width bitfield is ok for anonymous field.
11463 if (Value == 0 && FieldName)
11464 return Diag(FieldLoc, diag::err_bitfield_has_zero_width) << FieldName;
Mike Stump1eb44332009-09-09 15:08:12 +000011465
Chris Lattnerdf9bcd52009-04-20 17:29:38 +000011466 if (Value.isSigned() && Value.isNegative()) {
11467 if (FieldName)
Mike Stump1eb44332009-09-09 15:08:12 +000011468 return Diag(FieldLoc, diag::err_bitfield_has_negative_width)
Chris Lattnerdf9bcd52009-04-20 17:29:38 +000011469 << FieldName << Value.toString(10);
11470 return Diag(FieldLoc, diag::err_anon_bitfield_has_negative_width)
11471 << Value.toString(10);
11472 }
Anders Carlsson9f1e5722008-12-06 20:33:04 +000011473
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011474 if (!FieldTy->isDependentType()) {
11475 uint64_t TypeSize = Context.getTypeSize(FieldTy);
Chris Lattnerdf9bcd52009-04-20 17:29:38 +000011476 if (Value.getZExtValue() > TypeSize) {
Stephen Hines651f13c2014-04-23 16:59:28 -070011477 if (!getLangOpts().CPlusPlus || IsMsStruct ||
11478 Context.getTargetInfo().getCXXABI().isMicrosoft()) {
Anders Carlsson72468ec2010-04-16 15:16:32 +000011479 if (FieldName)
11480 return Diag(FieldLoc, diag::err_bitfield_width_exceeds_type_size)
11481 << FieldName << (unsigned)Value.getZExtValue()
11482 << (unsigned)TypeSize;
11483
11484 return Diag(FieldLoc, diag::err_anon_bitfield_width_exceeds_type_size)
11485 << (unsigned)Value.getZExtValue() << (unsigned)TypeSize;
11486 }
11487
Chris Lattnerdf9bcd52009-04-20 17:29:38 +000011488 if (FieldName)
Anders Carlsson72468ec2010-04-16 15:16:32 +000011489 Diag(FieldLoc, diag::warn_bitfield_width_exceeds_type_size)
11490 << FieldName << (unsigned)Value.getZExtValue()
11491 << (unsigned)TypeSize;
11492 else
11493 Diag(FieldLoc, diag::warn_anon_bitfield_width_exceeds_type_size)
11494 << (unsigned)Value.getZExtValue() << (unsigned)TypeSize;
Chris Lattnerdf9bcd52009-04-20 17:29:38 +000011495 }
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011496 }
Anders Carlsson9f1e5722008-12-06 20:33:04 +000011497
Richard Smith282e7e62012-02-04 09:53:13 +000011498 return Owned(BitWidth);
Anders Carlsson9f1e5722008-12-06 20:33:04 +000011499}
11500
Richard Smith7a614d82011-06-11 17:19:42 +000011501/// ActOnField - Each field of a C struct/union is passed into this in order
Reid Spencer5f016e22007-07-11 17:01:13 +000011502/// to create a FieldDecl object for it.
Richard Smith7a614d82011-06-11 17:19:42 +000011503Decl *Sema::ActOnField(Scope *S, Decl *TagD, SourceLocation DeclStart,
Richard Trieuf81e5a92011-09-09 02:00:50 +000011504 Declarator &D, Expr *BitfieldWidth) {
John McCalld226f652010-08-21 09:40:31 +000011505 FieldDecl *Res = HandleField(S, cast_or_null<RecordDecl>(TagD),
Chris Lattnerb28317a2009-03-28 19:18:32 +000011506 DeclStart, D, static_cast<Expr*>(BitfieldWidth),
Richard Smithca523302012-06-10 03:12:00 +000011507 /*InitStyle=*/ICIS_NoInit, AS_public);
John McCalld226f652010-08-21 09:40:31 +000011508 return Res;
Chris Lattner24793662009-03-05 22:45:59 +000011509}
11510
11511/// HandleField - Analyze a field of a C struct or a C++ data member.
11512///
11513FieldDecl *Sema::HandleField(Scope *S, RecordDecl *Record,
11514 SourceLocation DeclStart,
Richard Smithca523302012-06-10 03:12:00 +000011515 Declarator &D, Expr *BitWidth,
11516 InClassInitStyle InitStyle,
Douglas Gregor4dd55f52009-03-11 20:50:30 +000011517 AccessSpecifier AS) {
Reid Spencer5f016e22007-07-11 17:01:13 +000011518 IdentifierInfo *II = D.getIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +000011519 SourceLocation Loc = DeclStart;
11520 if (II) Loc = D.getIdentifierLoc();
Mike Stump1eb44332009-09-09 15:08:12 +000011521
John McCallbf1a0282010-06-04 23:28:52 +000011522 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
11523 QualType T = TInfo->getType();
David Blaikie4e4d0842012-03-11 07:00:24 +000011524 if (getLangOpts().CPlusPlus) {
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011525 CheckExtraCXXDefaultArguments(D);
Douglas Gregor021c3b32009-03-11 23:00:04 +000011526
Douglas Gregore1862692010-12-15 23:18:36 +000011527 if (DiagnoseUnexpandedParameterPack(D.getIdentifierLoc(), TInfo,
11528 UPPC_DataMemberType)) {
11529 D.setInvalidType();
11530 T = Context.IntTy;
11531 TInfo = Context.getTrivialTypeSourceInfo(T, Loc);
11532 }
11533 }
11534
Matt Arsenault34b0adb2013-02-26 21:16:00 +000011535 // TR 18037 does not allow fields to be declared with address spaces.
11536 if (T.getQualifiers().hasAddressSpace()) {
11537 Diag(Loc, diag::err_field_with_address_space);
11538 D.setInvalidType();
11539 }
11540
Guy Benyeie6b9d802013-01-20 12:31:11 +000011541 // OpenCL 1.2 spec, s6.9 r:
11542 // The event type cannot be used to declare a structure or union field.
11543 if (LangOpts.OpenCL && T->isEventT()) {
11544 Diag(Loc, diag::err_event_t_struct_field);
11545 D.setInvalidType();
11546 }
11547
Richard Smithc7f81162013-03-18 22:52:47 +000011548 DiagnoseFunctionSpecifiers(D.getDeclSpec());
Eli Friedman85a53192009-04-07 19:37:57 +000011549
Richard Smithec642442013-04-12 22:46:28 +000011550 if (DeclSpec::TSCS TSCS = D.getDeclSpec().getThreadStorageClassSpec())
11551 Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
11552 diag::err_invalid_thread)
11553 << DeclSpec::getSpecifierName(TSCS);
Matt Arsenault34b0adb2013-02-26 21:16:00 +000011554
Douglas Gregor7f6ff022010-08-30 14:32:14 +000011555 // Check to see if this name was declared as a member previously
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011556 NamedDecl *PrevDecl = nullptr;
Douglas Gregor7f6ff022010-08-30 14:32:14 +000011557 LookupResult Previous(*this, II, Loc, LookupMemberName, ForRedeclaration);
11558 LookupName(Previous, S);
Douglas Gregor95e55102011-10-21 15:47:52 +000011559 switch (Previous.getResultKind()) {
11560 case LookupResult::Found:
11561 case LookupResult::FoundUnresolvedValue:
11562 PrevDecl = Previous.getAsSingle<NamedDecl>();
11563 break;
11564
11565 case LookupResult::FoundOverloaded:
11566 PrevDecl = Previous.getRepresentativeDecl();
11567 break;
11568
11569 case LookupResult::NotFound:
11570 case LookupResult::NotFoundInCurrentInstantiation:
11571 case LookupResult::Ambiguous:
11572 break;
11573 }
11574 Previous.suppressDiagnostics();
Douglas Gregorc19ee3e2009-06-17 23:37:01 +000011575
11576 if (PrevDecl && PrevDecl->isTemplateParameter()) {
11577 // Maybe we will complain about the shadowed template parameter.
11578 DiagnoseTemplateParameterShadow(D.getIdentifierLoc(), PrevDecl);
11579 // Just pretend that we didn't see the previous declaration.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011580 PrevDecl = nullptr;
Douglas Gregorc19ee3e2009-06-17 23:37:01 +000011581 }
11582
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011583 if (PrevDecl && !isDeclInScope(PrevDecl, Record, S))
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011584 PrevDecl = nullptr;
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011585
Steve Naroffea218b82009-07-14 14:58:18 +000011586 bool Mutable
11587 = (D.getDeclSpec().getStorageClassSpec() == DeclSpec::SCS_mutable);
Daniel Dunbar96a00142012-03-09 18:35:03 +000011588 SourceLocation TSSL = D.getLocStart();
Steve Naroffea218b82009-07-14 14:58:18 +000011589 FieldDecl *NewFD
Richard Smithca523302012-06-10 03:12:00 +000011590 = CheckFieldDecl(II, T, TInfo, Record, Loc, Mutable, BitWidth, InitStyle,
Richard Smith7a614d82011-06-11 17:19:42 +000011591 TSSL, AS, PrevDecl, &D);
Rafael Espindola01620702010-03-21 22:56:43 +000011592
11593 if (NewFD->isInvalidDecl())
11594 Record->setInvalidDecl();
11595
Douglas Gregor591dc842011-09-12 16:11:24 +000011596 if (D.getDeclSpec().isModulePrivateSpecified())
11597 NewFD->setModulePrivate();
11598
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011599 if (NewFD->isInvalidDecl() && PrevDecl) {
11600 // Don't introduce NewFD into scope; there's already something
11601 // with the same name in the same scope.
11602 } else if (II) {
11603 PushOnScopeChains(NewFD, S);
11604 } else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000011605 Record->addDecl(NewFD);
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011606
11607 return NewFD;
11608}
11609
11610/// \brief Build a new FieldDecl and check its well-formedness.
11611///
11612/// This routine builds a new FieldDecl given the fields name, type,
11613/// record, etc. \p PrevDecl should refer to any previous declaration
11614/// with the same name and in the same scope as the field to be
11615/// created.
11616///
11617/// \returns a new FieldDecl.
11618///
Mike Stump1eb44332009-09-09 15:08:12 +000011619/// \todo The Declarator argument is a hack. It will be removed once
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +000011620FieldDecl *Sema::CheckFieldDecl(DeclarationName Name, QualType T,
John McCalla93c9342009-12-07 02:54:59 +000011621 TypeSourceInfo *TInfo,
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011622 RecordDecl *Record, SourceLocation Loc,
Richard Smithca523302012-06-10 03:12:00 +000011623 bool Mutable, Expr *BitWidth,
11624 InClassInitStyle InitStyle,
Steve Naroffea218b82009-07-14 14:58:18 +000011625 SourceLocation TSSL,
Douglas Gregor4dd55f52009-03-11 20:50:30 +000011626 AccessSpecifier AS, NamedDecl *PrevDecl,
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011627 Declarator *D) {
11628 IdentifierInfo *II = Name.getAsIdentifierInfo();
Steve Naroff5912a352007-08-28 20:14:24 +000011629 bool InvalidDecl = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +000011630 if (D) InvalidDecl = D->isInvalidType();
Sebastian Redl64b45f72009-01-05 20:52:13 +000011631
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011632 // If we receive a broken type, recover by assuming 'int' and
11633 // marking this declaration as invalid.
11634 if (T.isNull()) {
11635 InvalidDecl = true;
11636 T = Context.IntTy;
11637 }
11638
Eli Friedman721e77d2009-12-07 00:22:08 +000011639 QualType EltTy = Context.getBaseElementType(T);
Argyrios Kyrtzidis216f78b2012-03-09 20:10:30 +000011640 if (!EltTy->isDependentType()) {
11641 if (RequireCompleteType(Loc, EltTy, diag::err_field_incomplete)) {
11642 // Fields of incomplete type force their record to be invalid.
11643 Record->setInvalidDecl();
11644 InvalidDecl = true;
11645 } else {
11646 NamedDecl *Def;
11647 EltTy->isIncompleteType(&Def);
11648 if (Def && Def->isInvalidDecl()) {
11649 Record->setInvalidDecl();
11650 InvalidDecl = true;
11651 }
11652 }
John McCall2d7d2d92010-08-16 23:42:35 +000011653 }
Eli Friedman721e77d2009-12-07 00:22:08 +000011654
Joey Gouly617bb312013-01-17 17:35:00 +000011655 // OpenCL v1.2 s6.9.c: bitfields are not supported.
11656 if (BitWidth && getLangOpts().OpenCL) {
11657 Diag(Loc, diag::err_opencl_bitfields);
11658 InvalidDecl = true;
11659 }
11660
Reid Spencer5f016e22007-07-11 17:01:13 +000011661 // C99 6.7.2.1p8: A member of a structure or union may have any type other
11662 // than a variably modified type.
Eli Friedman721e77d2009-12-07 00:22:08 +000011663 if (!InvalidDecl && T->isVariablyModifiedType()) {
Eli Friedman1ca48132009-02-21 00:44:51 +000011664 bool SizeIsNegative;
Douglas Gregor2767ce22010-08-18 00:39:00 +000011665 llvm::APSInt Oversized;
Abramo Bagnara4c5750e2012-11-08 14:44:42 +000011666
11667 TypeSourceInfo *FixedTInfo =
11668 TryToFixInvalidVariablyModifiedTypeSourceInfo(TInfo, Context,
11669 SizeIsNegative,
11670 Oversized);
11671 if (FixedTInfo) {
Eli Friedman1ca48132009-02-21 00:44:51 +000011672 Diag(Loc, diag::warn_illegal_constant_array_size);
Abramo Bagnara4c5750e2012-11-08 14:44:42 +000011673 TInfo = FixedTInfo;
11674 T = FixedTInfo->getType();
Eli Friedman1ca48132009-02-21 00:44:51 +000011675 } else {
11676 if (SizeIsNegative)
11677 Diag(Loc, diag::err_typecheck_negative_array_size);
Douglas Gregor2767ce22010-08-18 00:39:00 +000011678 else if (Oversized.getBoolValue())
11679 Diag(Loc, diag::err_array_too_large)
11680 << Oversized.toString(10);
Eli Friedman1ca48132009-02-21 00:44:51 +000011681 else
11682 Diag(Loc, diag::err_typecheck_field_variable_size);
Eli Friedman1ca48132009-02-21 00:44:51 +000011683 InvalidDecl = true;
11684 }
Reid Spencer5f016e22007-07-11 17:01:13 +000011685 }
Mike Stump1eb44332009-09-09 15:08:12 +000011686
Anders Carlsson4681ebd2009-03-22 20:18:17 +000011687 // Fields can not have abstract class types
Eli Friedman721e77d2009-12-07 00:22:08 +000011688 if (!InvalidDecl && RequireNonAbstractType(Loc, T,
11689 diag::err_abstract_type_in_decl,
11690 AbstractFieldType))
Anders Carlsson4681ebd2009-03-22 20:18:17 +000011691 InvalidDecl = true;
Mike Stump1eb44332009-09-09 15:08:12 +000011692
Eli Friedman1d954f62009-08-15 21:55:26 +000011693 bool ZeroWidth = false;
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011694 // If this is declared as a bit-field, check the bit-field.
Richard Smith282e7e62012-02-04 09:53:13 +000011695 if (!InvalidDecl && BitWidth) {
Reid Kleckner9a3ecb02013-07-17 20:46:03 +000011696 BitWidth = VerifyBitField(Loc, II, T, Record->isMsStruct(Context), BitWidth,
11697 &ZeroWidth).take();
Richard Smith282e7e62012-02-04 09:53:13 +000011698 if (!BitWidth) {
11699 InvalidDecl = true;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011700 BitWidth = nullptr;
Richard Smith282e7e62012-02-04 09:53:13 +000011701 ZeroWidth = false;
11702 }
Anders Carlsson9f1e5722008-12-06 20:33:04 +000011703 }
Mike Stump1eb44332009-09-09 15:08:12 +000011704
John McCall4bde1e12010-06-04 08:34:12 +000011705 // Check that 'mutable' is consistent with the type of the declaration.
11706 if (!InvalidDecl && Mutable) {
11707 unsigned DiagID = 0;
11708 if (T->isReferenceType())
11709 DiagID = diag::err_mutable_reference;
11710 else if (T.isConstQualified())
11711 DiagID = diag::err_mutable_const;
11712
11713 if (DiagID) {
11714 SourceLocation ErrLoc = Loc;
11715 if (D && D->getDeclSpec().getStorageClassSpecLoc().isValid())
11716 ErrLoc = D->getDeclSpec().getStorageClassSpecLoc();
11717 Diag(ErrLoc, DiagID);
11718 Mutable = false;
11719 InvalidDecl = true;
11720 }
11721 }
11722
Stephen Hines651f13c2014-04-23 16:59:28 -070011723 // C++11 [class.union]p8 (DR1460):
11724 // At most one variant member of a union may have a
11725 // brace-or-equal-initializer.
11726 if (InitStyle != ICIS_NoInit)
11727 checkDuplicateDefaultInit(*this, cast<CXXRecordDecl>(Record), Loc);
11728
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000011729 FieldDecl *NewFD = FieldDecl::Create(Context, Record, TSSL, Loc, II, T, TInfo,
Richard Smithca523302012-06-10 03:12:00 +000011730 BitWidth, Mutable, InitStyle);
Chris Lattnereaaebc72009-04-25 08:06:05 +000011731 if (InvalidDecl)
11732 NewFD->setInvalidDecl();
Douglas Gregor44b43212008-12-11 16:49:14 +000011733
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011734 if (PrevDecl && !isa<TagDecl>(PrevDecl)) {
11735 Diag(Loc, diag::err_duplicate_member) << II;
11736 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
11737 NewFD->setInvalidDecl();
Douglas Gregor72de6672009-01-08 20:45:30 +000011738 }
11739
David Blaikie4e4d0842012-03-11 07:00:24 +000011740 if (!InvalidDecl && getLangOpts().CPlusPlus) {
Anders Carlssondfdfc582010-11-07 19:13:55 +000011741 if (Record->isUnion()) {
11742 if (const RecordType *RT = EltTy->getAs<RecordType>()) {
11743 CXXRecordDecl* RDecl = cast<CXXRecordDecl>(RT->getDecl());
11744 if (RDecl->getDefinition()) {
11745 // C++ [class.union]p1: An object of a class with a non-trivial
11746 // constructor, a non-trivial copy constructor, a non-trivial
11747 // destructor, or a non-trivial copy assignment operator
11748 // cannot be a member of a union, nor can an array of such
11749 // objects.
Richard Smithe7d7c392011-10-19 20:41:51 +000011750 if (CheckNontrivialField(NewFD))
Anders Carlssondfdfc582010-11-07 19:13:55 +000011751 NewFD->setInvalidDecl();
11752 }
11753 }
11754
11755 // C++ [class.union]p1: If a union contains a member of reference type,
Aaron Ballman76eed422013-05-30 16:20:00 +000011756 // the program is ill-formed, except when compiling with MSVC extensions
11757 // enabled.
Anders Carlssondfdfc582010-11-07 19:13:55 +000011758 if (EltTy->isReferenceType()) {
Aaron Ballman76eed422013-05-30 16:20:00 +000011759 Diag(NewFD->getLocation(), getLangOpts().MicrosoftExt ?
11760 diag::ext_union_member_of_reference_type :
11761 diag::err_union_member_of_reference_type)
Anders Carlssondfdfc582010-11-07 19:13:55 +000011762 << NewFD->getDeclName() << EltTy;
Aaron Ballman76eed422013-05-30 16:20:00 +000011763 if (!getLangOpts().MicrosoftExt)
11764 NewFD->setInvalidDecl();
Douglas Gregor1f2023a2009-07-22 18:25:24 +000011765 }
11766 }
11767 }
11768
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011769 // FIXME: We need to pass in the attributes given an AST
11770 // representation, not a parser representation.
Richard Smithbe507b62013-02-01 08:12:08 +000011771 if (D) {
Douglas Gregor92eb7d82013-05-02 23:25:32 +000011772 // FIXME: The current scope is almost... but not entirely... correct here.
11773 ProcessDeclAttributes(getCurScope(), NewFD, *D);
Douglas Gregor3cf538d2009-03-11 18:59:21 +000011774
Richard Smithbe507b62013-02-01 08:12:08 +000011775 if (NewFD->hasAttrs())
11776 CheckAlignasUnderalignment(NewFD);
11777 }
11778
John McCallf85e1932011-06-15 23:02:42 +000011779 // In auto-retain/release, infer strong retension for fields of
11780 // retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +000011781 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewFD))
John McCallf85e1932011-06-15 23:02:42 +000011782 NewFD->setInvalidDecl();
11783
Fariborz Jahanianf6123ca2009-02-19 00:22:47 +000011784 if (T.isObjCGCWeak())
Fariborz Jahanianed7e9ef2009-02-18 18:14:41 +000011785 Diag(Loc, diag::warn_attribute_weak_on_field);
Anders Carlssonad148062008-02-16 00:29:18 +000011786
Douglas Gregor4dd55f52009-03-11 20:50:30 +000011787 NewFD->setAccess(AS);
Steve Naroff5912a352007-08-28 20:14:24 +000011788 return NewFD;
Reid Spencer5f016e22007-07-11 17:01:13 +000011789}
11790
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011791bool Sema::CheckNontrivialField(FieldDecl *FD) {
11792 assert(FD);
David Blaikie4e4d0842012-03-11 07:00:24 +000011793 assert(getLangOpts().CPlusPlus && "valid check only for C++");
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011794
Nick Lewyckydccd04d2013-06-25 23:22:23 +000011795 if (FD->isInvalidDecl() || FD->getType()->isDependentType())
11796 return false;
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011797
11798 QualType EltTy = Context.getBaseElementType(FD->getType());
11799 if (const RecordType *RT = EltTy->getAs<RecordType>()) {
Richard Smithac713512012-12-08 02:53:02 +000011800 CXXRecordDecl *RDecl = cast<CXXRecordDecl>(RT->getDecl());
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011801 if (RDecl->getDefinition()) {
11802 // We check for copy constructors before constructors
11803 // because otherwise we'll never get complaints about
11804 // copy constructors.
11805
11806 CXXSpecialMember member = CXXInvalid;
Richard Smith426391c2012-11-16 00:53:38 +000011807 // We're required to check for any non-trivial constructors. Since the
11808 // implicit default constructor is suppressed if there are any
11809 // user-declared constructors, we just need to check that there is a
11810 // trivial default constructor and a trivial copy constructor. (We don't
11811 // worry about move constructors here, since this is a C++98 check.)
11812 if (RDecl->hasNonTrivialCopyConstructor())
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011813 member = CXXCopyConstructor;
Sean Hunt023df372011-05-09 18:22:59 +000011814 else if (!RDecl->hasTrivialDefaultConstructor())
Sean Huntf961ea52011-05-10 19:08:14 +000011815 member = CXXDefaultConstructor;
Richard Smith426391c2012-11-16 00:53:38 +000011816 else if (RDecl->hasNonTrivialCopyAssignment())
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011817 member = CXXCopyAssignment;
Richard Smith426391c2012-11-16 00:53:38 +000011818 else if (RDecl->hasNonTrivialDestructor())
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011819 member = CXXDestructor;
11820
11821 if (member != CXXInvalid) {
Richard Smith80ad52f2013-01-02 11:42:31 +000011822 if (!getLangOpts().CPlusPlus11 &&
David Blaikie4e4d0842012-03-11 07:00:24 +000011823 getLangOpts().ObjCAutoRefCount && RDecl->hasObjectMember()) {
John McCallf85e1932011-06-15 23:02:42 +000011824 // Objective-C++ ARC: it is an error to have a non-trivial field of
11825 // a union. However, system headers in Objective-C programs
11826 // occasionally have Objective-C lifetime objects within unions,
11827 // and rather than cause the program to fail, we make those
11828 // members unavailable.
11829 SourceLocation Loc = FD->getLocation();
11830 if (getSourceManager().isInSystemHeader(Loc)) {
11831 if (!FD->hasAttr<UnavailableAttr>())
Stephen Hines651f13c2014-04-23 16:59:28 -070011832 FD->addAttr(UnavailableAttr::CreateImplicit(Context,
11833 "this system field has retaining ownership",
11834 Loc));
John McCallf85e1932011-06-15 23:02:42 +000011835 return false;
11836 }
11837 }
Richard Smithe7d7c392011-10-19 20:41:51 +000011838
Richard Smith80ad52f2013-01-02 11:42:31 +000011839 Diag(FD->getLocation(), getLangOpts().CPlusPlus11 ?
Richard Smithe7d7c392011-10-19 20:41:51 +000011840 diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member :
11841 diag::err_illegal_union_or_anon_struct_member)
11842 << (int)FD->getParent()->isUnion() << FD->getDeclName() << member;
Richard Smithac713512012-12-08 02:53:02 +000011843 DiagnoseNontrivial(RDecl, member);
Richard Smith80ad52f2013-01-02 11:42:31 +000011844 return !getLangOpts().CPlusPlus11;
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011845 }
11846 }
11847 }
Richard Smithac713512012-12-08 02:53:02 +000011848
Argyrios Kyrtzidisdd7744d2010-08-16 17:27:08 +000011849 return false;
11850}
11851
Mike Stump1eb44332009-09-09 15:08:12 +000011852/// TranslateIvarVisibility - Translate visibility from a token ID to an
Fariborz Jahanian89204a12007-10-01 16:53:59 +000011853/// AST enum value.
Ted Kremeneka526c5c2008-01-07 19:49:32 +000011854static ObjCIvarDecl::AccessControl
Fariborz Jahanian89204a12007-10-01 16:53:59 +000011855TranslateIvarVisibility(tok::ObjCKeywordKind ivarVisibility) {
Steve Narofff13271f2007-09-14 23:09:53 +000011856 switch (ivarVisibility) {
David Blaikieb219cfc2011-09-23 05:06:16 +000011857 default: llvm_unreachable("Unknown visitibility kind");
Chris Lattner33d34a62008-10-12 00:28:42 +000011858 case tok::objc_private: return ObjCIvarDecl::Private;
11859 case tok::objc_public: return ObjCIvarDecl::Public;
11860 case tok::objc_protected: return ObjCIvarDecl::Protected;
11861 case tok::objc_package: return ObjCIvarDecl::Package;
Steve Narofff13271f2007-09-14 23:09:53 +000011862 }
11863}
11864
Mike Stump1eb44332009-09-09 15:08:12 +000011865/// ActOnIvar - Each ivar field of an objective-c class is passed into this
Fariborz Jahanian45bc03f2008-04-11 16:55:42 +000011866/// in order to create an IvarDecl object for it.
John McCalld226f652010-08-21 09:40:31 +000011867Decl *Sema::ActOnIvar(Scope *S,
Mike Stump1eb44332009-09-09 15:08:12 +000011868 SourceLocation DeclStart,
Richard Trieuf81e5a92011-09-09 02:00:50 +000011869 Declarator &D, Expr *BitfieldWidth,
Chris Lattnerb28317a2009-03-28 19:18:32 +000011870 tok::ObjCKeywordKind Visibility) {
Mike Stump1eb44332009-09-09 15:08:12 +000011871
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011872 IdentifierInfo *II = D.getIdentifier();
11873 Expr *BitWidth = (Expr*)BitfieldWidth;
11874 SourceLocation Loc = DeclStart;
11875 if (II) Loc = D.getIdentifierLoc();
Mike Stump1eb44332009-09-09 15:08:12 +000011876
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011877 // FIXME: Unnamed fields can be handled in various different ways, for
11878 // example, unnamed unions inject all members into the struct namespace!
Mike Stump1eb44332009-09-09 15:08:12 +000011879
John McCallbf1a0282010-06-04 23:28:52 +000011880 TypeSourceInfo *TInfo = GetTypeForDeclarator(D, S);
11881 QualType T = TInfo->getType();
Mike Stump1eb44332009-09-09 15:08:12 +000011882
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011883 if (BitWidth) {
Steve Naroff63359c82009-02-20 17:57:11 +000011884 // 6.7.2.1p3, 6.7.2.1p4
Warren Huntb2969b12013-10-11 20:19:00 +000011885 BitWidth = VerifyBitField(Loc, II, T, /*IsMsStruct*/false, BitWidth).take();
Richard Smith282e7e62012-02-04 09:53:13 +000011886 if (!BitWidth)
Chris Lattnereaaebc72009-04-25 08:06:05 +000011887 D.setInvalidType();
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011888 } else {
11889 // Not a bitfield.
Mike Stump1eb44332009-09-09 15:08:12 +000011890
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011891 // validate II.
Mike Stump1eb44332009-09-09 15:08:12 +000011892
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011893 }
Fariborz Jahanian0b7bc8e2010-04-26 22:07:03 +000011894 if (T->isReferenceType()) {
11895 Diag(Loc, diag::err_ivar_reference_type);
11896 D.setInvalidType();
11897 }
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011898 // C99 6.7.2.1p8: A member of a structure or union may have any type other
11899 // than a variably modified type.
Fariborz Jahanian0b7bc8e2010-04-26 22:07:03 +000011900 else if (T->isVariablyModifiedType()) {
Anders Carlsson96e05bc2008-12-07 00:20:55 +000011901 Diag(Loc, diag::err_typecheck_ivar_variable_size);
Chris Lattnereaaebc72009-04-25 08:06:05 +000011902 D.setInvalidType();
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011903 }
Mike Stump1eb44332009-09-09 15:08:12 +000011904
Ted Kremenekb8db21d2008-07-23 18:04:17 +000011905 // Get the visibility (access control) for this ivar.
Mike Stump1eb44332009-09-09 15:08:12 +000011906 ObjCIvarDecl::AccessControl ac =
Ted Kremenekb8db21d2008-07-23 18:04:17 +000011907 Visibility != tok::objc_not_keyword ? TranslateIvarVisibility(Visibility)
11908 : ObjCIvarDecl::None;
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000011909 // Must set ivar's DeclContext to its enclosing interface.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000011910 ObjCContainerDecl *EnclosingDecl = cast<ObjCContainerDecl>(CurContext);
Fariborz Jahanianc645ddf2012-02-02 00:49:12 +000011911 if (!EnclosingDecl || EnclosingDecl->isInvalidDecl())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011912 return nullptr;
Daniel Dunbara19331f2010-04-02 18:29:09 +000011913 ObjCContainerDecl *EnclosingContext;
Mike Stump1eb44332009-09-09 15:08:12 +000011914 if (ObjCImplementationDecl *IMPDecl =
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000011915 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
John McCall260611a2012-06-20 06:18:46 +000011916 if (LangOpts.ObjCRuntime.isFragile()) {
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000011917 // Case of ivar declared in an implementation. Context is that of its class.
Fariborz Jahanian000835d2010-08-23 18:51:39 +000011918 EnclosingContext = IMPDecl->getClassInterface();
11919 assert(EnclosingContext && "Implementation has no class interface!");
11920 }
11921 else
11922 EnclosingContext = EnclosingDecl;
Fariborz Jahanian0bd04592010-04-06 22:43:48 +000011923 } else {
11924 if (ObjCCategoryDecl *CDecl =
11925 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
John McCall260611a2012-06-20 06:18:46 +000011926 if (LangOpts.ObjCRuntime.isFragile() || !CDecl->IsClassExtension()) {
Fariborz Jahanian0bd04592010-04-06 22:43:48 +000011927 Diag(Loc, diag::err_misplaced_ivar) << CDecl->IsClassExtension();
Stephen Hines6bcf27b2014-05-29 04:14:42 -070011928 return nullptr;
Fariborz Jahanian0bd04592010-04-06 22:43:48 +000011929 }
11930 }
Daniel Dunbara19331f2010-04-02 18:29:09 +000011931 EnclosingContext = EnclosingDecl;
Fariborz Jahanian0bd04592010-04-06 22:43:48 +000011932 }
Mike Stump1eb44332009-09-09 15:08:12 +000011933
Ted Kremenekb8db21d2008-07-23 18:04:17 +000011934 // Construct the decl.
Abramo Bagnaraff676cb2011-03-08 08:55:46 +000011935 ObjCIvarDecl *NewID = ObjCIvarDecl::Create(Context, EnclosingContext,
11936 DeclStart, Loc, II, T,
John McCalla93c9342009-12-07 02:54:59 +000011937 TInfo, ac, (Expr *)BitfieldWidth);
Mike Stump1eb44332009-09-09 15:08:12 +000011938
Douglas Gregor72de6672009-01-08 20:45:30 +000011939 if (II) {
Douglas Gregorc83c6872010-04-15 22:33:43 +000011940 NamedDecl *PrevDecl = LookupSingleName(S, II, Loc, LookupMemberName,
John McCall7d384dd2009-11-18 07:57:50 +000011941 ForRedeclaration);
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000011942 if (PrevDecl && isDeclInScope(PrevDecl, EnclosingContext, S)
Douglas Gregor72de6672009-01-08 20:45:30 +000011943 && !isa<TagDecl>(PrevDecl)) {
11944 Diag(Loc, diag::err_duplicate_member) << II;
11945 Diag(PrevDecl->getLocation(), diag::note_previous_declaration);
11946 NewID->setInvalidDecl();
11947 }
11948 }
11949
Ted Kremenekb8db21d2008-07-23 18:04:17 +000011950 // Process attributes attached to the ivar.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000011951 ProcessDeclAttributes(S, NewID, D);
Mike Stump1eb44332009-09-09 15:08:12 +000011952
Chris Lattnereaaebc72009-04-25 08:06:05 +000011953 if (D.isInvalidType())
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011954 NewID->setInvalidDecl();
Ted Kremenekb8db21d2008-07-23 18:04:17 +000011955
John McCallf85e1932011-06-15 23:02:42 +000011956 // In ARC, infer 'retaining' for ivars of retainable type.
David Blaikie4e4d0842012-03-11 07:00:24 +000011957 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(NewID))
John McCallf85e1932011-06-15 23:02:42 +000011958 NewID->setInvalidDecl();
11959
Douglas Gregor591dc842011-09-12 16:11:24 +000011960 if (D.getDeclSpec().isModulePrivateSpecified())
11961 NewID->setModulePrivate();
11962
Douglas Gregor72de6672009-01-08 20:45:30 +000011963 if (II) {
11964 // FIXME: When interfaces are DeclContexts, we'll need to add
11965 // these to the interface.
John McCalld226f652010-08-21 09:40:31 +000011966 S->AddDecl(NewID);
Douglas Gregor72de6672009-01-08 20:45:30 +000011967 IdResolver.AddDecl(NewID);
11968 }
Fariborz Jahanian8f674a82012-05-15 16:33:04 +000011969
John McCall260611a2012-06-20 06:18:46 +000011970 if (LangOpts.ObjCRuntime.isNonFragile() &&
Fariborz Jahanian8f674a82012-05-15 16:33:04 +000011971 !NewID->isInvalidDecl() && isa<ObjCInterfaceDecl>(EnclosingDecl))
Fariborz Jahaniandc3eb6a2012-05-15 17:43:16 +000011972 Diag(Loc, diag::warn_ivars_in_interface);
Fariborz Jahanian8f674a82012-05-15 16:33:04 +000011973
John McCalld226f652010-08-21 09:40:31 +000011974 return NewID;
Fariborz Jahanian1d78cc42008-04-10 23:32:45 +000011975}
11976
Fariborz Jahaniand097be82010-08-23 22:46:52 +000011977/// ActOnLastBitfield - This routine handles synthesized bitfields rules for
Jordan Rosed4582b82013-04-03 01:39:23 +000011978/// class and class extensions. For every class \@interface and class
11979/// extension \@interface, if the last ivar is a bitfield of any type,
Fariborz Jahaniand097be82010-08-23 22:46:52 +000011980/// then add an implicit `char :0` ivar to the end of that interface.
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000011981void Sema::ActOnLastBitfield(SourceLocation DeclLoc,
Chris Lattner5f9e2722011-07-23 10:55:15 +000011982 SmallVectorImpl<Decl *> &AllIvarDecls) {
John McCall260611a2012-06-20 06:18:46 +000011983 if (LangOpts.ObjCRuntime.isFragile() || AllIvarDecls.empty())
Fariborz Jahaniand097be82010-08-23 22:46:52 +000011984 return;
11985
11986 Decl *ivarDecl = AllIvarDecls[AllIvarDecls.size()-1];
11987 ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(ivarDecl);
11988
Richard Smitha6b8b2c2011-10-10 18:28:20 +000011989 if (!Ivar->isBitField() || Ivar->getBitWidthValue(Context) == 0)
Fariborz Jahaniand097be82010-08-23 22:46:52 +000011990 return;
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000011991 ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(CurContext);
Fariborz Jahaniand097be82010-08-23 22:46:52 +000011992 if (!ID) {
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000011993 if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(CurContext)) {
Fariborz Jahaniand097be82010-08-23 22:46:52 +000011994 if (!CD->IsClassExtension())
11995 return;
11996 }
11997 // No need to add this to end of @implementation.
11998 else
11999 return;
12000 }
12001 // All conditions are met. Add a new bitfield to the tail end of ivars.
Douglas Gregor0bbea1b2011-08-03 16:26:46 +000012002 llvm::APInt Zero(Context.getTypeSize(Context.IntTy), 0);
12003 Expr * BW = IntegerLiteral::Create(Context, Zero, Context.IntTy, DeclLoc);
Fariborz Jahaniand097be82010-08-23 22:46:52 +000012004
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000012005 Ivar = ObjCIvarDecl::Create(Context, cast<ObjCContainerDecl>(CurContext),
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012006 DeclLoc, DeclLoc, nullptr,
Fariborz Jahaniand097be82010-08-23 22:46:52 +000012007 Context.CharTy,
Douglas Gregor0bbea1b2011-08-03 16:26:46 +000012008 Context.getTrivialTypeSourceInfo(Context.CharTy,
12009 DeclLoc),
Fariborz Jahaniand097be82010-08-23 22:46:52 +000012010 ObjCIvarDecl::Private, BW,
12011 true);
12012 AllIvarDecls.push_back(Ivar);
12013}
12014
Robert Wilhelm834c0582013-08-09 18:02:13 +000012015void Sema::ActOnFields(Scope *S, SourceLocation RecLoc, Decl *EnclosingDecl,
12016 ArrayRef<Decl *> Fields, SourceLocation LBrac,
12017 SourceLocation RBrac, AttributeList *Attr) {
Steve Naroff74216642007-09-14 22:20:54 +000012018 assert(EnclosingDecl && "missing record or interface decl");
Mike Stump1eb44332009-09-09 15:08:12 +000012019
Eric Christopher6dba4a12012-07-19 22:22:51 +000012020 // If this is an Objective-C @implementation or category and we have
12021 // new fields here we should reset the layout of the interface since
12022 // it will now change.
12023 if (!Fields.empty() && isa<ObjCContainerDecl>(EnclosingDecl)) {
12024 ObjCContainerDecl *DC = cast<ObjCContainerDecl>(EnclosingDecl);
12025 switch (DC->getKind()) {
12026 default: break;
12027 case Decl::ObjCCategory:
12028 Context.ResetObjCLayout(cast<ObjCCategoryDecl>(DC)->getClassInterface());
12029 break;
12030 case Decl::ObjCImplementation:
12031 Context.
12032 ResetObjCLayout(cast<ObjCImplementationDecl>(DC)->getClassInterface());
12033 break;
12034 }
12035 }
12036
Eli Friedman11e70d72012-02-07 05:00:47 +000012037 RecordDecl *Record = dyn_cast<RecordDecl>(EnclosingDecl);
12038
12039 // Start counting up the number of named members; make sure to include
12040 // members of anonymous structs and unions in the total.
Reid Spencer5f016e22007-07-11 17:01:13 +000012041 unsigned NumNamedMembers = 0;
Eli Friedman11e70d72012-02-07 05:00:47 +000012042 if (Record) {
Stephen Hines651f13c2014-04-23 16:59:28 -070012043 for (const auto *I : Record->decls()) {
12044 if (const auto *IFD = dyn_cast<IndirectFieldDecl>(I))
Eli Friedman11e70d72012-02-07 05:00:47 +000012045 if (IFD->getDeclName())
12046 ++NumNamedMembers;
12047 }
12048 }
12049
12050 // Verify that all the fields are okay.
Chris Lattner5f9e2722011-07-23 10:55:15 +000012051 SmallVector<FieldDecl*, 32> RecFields;
Douglas Gregor6b3945f2009-01-07 19:46:03 +000012052
John McCallf85e1932011-06-15 23:02:42 +000012053 bool ARCErrReported = false;
Robert Wilhelm834c0582013-08-09 18:02:13 +000012054 for (ArrayRef<Decl *>::iterator i = Fields.begin(), end = Fields.end();
David Blaikie77b6de02011-09-22 02:58:26 +000012055 i != end; ++i) {
12056 FieldDecl *FD = cast<FieldDecl>(*i);
Mike Stump1eb44332009-09-09 15:08:12 +000012057
Reid Spencer5f016e22007-07-11 17:01:13 +000012058 // Get the type for the field.
John McCallf4c73712011-01-19 06:33:43 +000012059 const Type *FDTy = FD->getType().getTypePtr();
Douglas Gregor6b3945f2009-01-07 19:46:03 +000012060
Douglas Gregor72de6672009-01-08 20:45:30 +000012061 if (!FD->isAnonymousStructOrUnion()) {
Douglas Gregor6b3945f2009-01-07 19:46:03 +000012062 // Remember all fields written by the user.
12063 RecFields.push_back(FD);
12064 }
Mike Stump1eb44332009-09-09 15:08:12 +000012065
Chris Lattner24793662009-03-05 22:45:59 +000012066 // If the field is already invalid for some reason, don't emit more
12067 // diagnostics about it.
Eli Friedman721e77d2009-12-07 00:22:08 +000012068 if (FD->isInvalidDecl()) {
12069 EnclosingDecl->setInvalidDecl();
Chris Lattner24793662009-03-05 22:45:59 +000012070 continue;
Eli Friedman721e77d2009-12-07 00:22:08 +000012071 }
Mike Stump1eb44332009-09-09 15:08:12 +000012072
Douglas Gregore7450f52009-03-24 19:52:54 +000012073 // C99 6.7.2.1p2:
12074 // A structure or union shall not contain a member with
12075 // incomplete or function type (hence, a structure shall not
12076 // contain an instance of itself, but may contain a pointer to
12077 // an instance of itself), except that the last member of a
12078 // structure with more than one named member may have incomplete
12079 // array type; such a structure (and any union containing,
12080 // possibly recursively, a member that is such a structure)
12081 // shall not be a member of a structure or an element of an
12082 // array.
Chris Lattner02c642e2007-07-31 21:33:24 +000012083 if (FDTy->isFunctionType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +000012084 // Field declared as a function.
Chris Lattnerf3a41af2008-11-20 06:38:18 +000012085 Diag(FD->getLocation(), diag::err_field_declared_as_function)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +000012086 << FD->getDeclName();
Steve Naroff74216642007-09-14 22:20:54 +000012087 FD->setInvalidDecl();
12088 EnclosingDecl->setInvalidDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +000012089 continue;
Francois Pichet09246182010-09-15 00:14:08 +000012090 } else if (FDTy->isIncompleteArrayType() && Record &&
David Blaikie77b6de02011-09-22 02:58:26 +000012091 ((i + 1 == Fields.end() && !Record->isUnion()) ||
David Blaikie4e4d0842012-03-11 07:00:24 +000012092 ((getLangOpts().MicrosoftExt ||
12093 getLangOpts().CPlusPlus) &&
David Blaikie77b6de02011-09-22 02:58:26 +000012094 (i + 1 == Fields.end() || Record->isUnion())))) {
Douglas Gregore7450f52009-03-24 19:52:54 +000012095 // Flexible array member.
Argyrios Kyrtzidisd97cec32011-03-07 20:04:04 +000012096 // Microsoft and g++ is more permissive regarding flexible array.
Francois Pichet09246182010-09-15 00:14:08 +000012097 // It will accept flexible array in union and also
Anders Carlsson4d09e842010-10-17 23:36:12 +000012098 // as the sole element of a struct/class.
David Majnemer633c0c22013-11-02 10:38:05 +000012099 unsigned DiagID = 0;
12100 if (Record->isUnion())
12101 DiagID = getLangOpts().MicrosoftExt
12102 ? diag::ext_flexible_array_union_ms
12103 : getLangOpts().CPlusPlus
12104 ? diag::ext_flexible_array_union_gnu
12105 : diag::err_flexible_array_union;
12106 else if (Fields.size() == 1)
12107 DiagID = getLangOpts().MicrosoftExt
12108 ? diag::ext_flexible_array_empty_aggregate_ms
12109 : getLangOpts().CPlusPlus
12110 ? diag::ext_flexible_array_empty_aggregate_gnu
12111 : NumNamedMembers < 1
12112 ? diag::err_flexible_array_empty_aggregate
12113 : 0;
12114
12115 if (DiagID)
12116 Diag(FD->getLocation(), DiagID) << FD->getDeclName()
12117 << Record->getTagKind();
David Majnemer3a665572013-11-02 11:19:13 +000012118 // While the layout of types that contain virtual bases is not specified
12119 // by the C++ standard, both the Itanium and Microsoft C++ ABIs place
12120 // virtual bases after the derived members. This would make a flexible
12121 // array member declared at the end of an object not adjacent to the end
12122 // of the type.
12123 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Record))
12124 if (RD->getNumVBases() != 0)
12125 Diag(FD->getLocation(), diag::err_flexible_array_virtual_base)
12126 << FD->getDeclName() << Record->getTagKind();
David Majnemer633c0c22013-11-02 10:38:05 +000012127 if (!getLangOpts().C99)
12128 Diag(FD->getLocation(), diag::ext_c99_flexible_array_member)
12129 << FD->getDeclName() << Record->getTagKind();
12130
Stephen Hines651f13c2014-04-23 16:59:28 -070012131 // If the element type has a non-trivial destructor, we would not
12132 // implicitly destroy the elements, so disallow it for now.
12133 //
12134 // FIXME: GCC allows this. We should probably either implicitly delete
12135 // the destructor of the containing class, or just allow this.
12136 QualType BaseElem = Context.getBaseElementType(FD->getType());
12137 if (!BaseElem->isDependentType() && BaseElem.isDestructedType()) {
12138 Diag(FD->getLocation(), diag::err_flexible_array_has_nontrivial_dtor)
Fariborz Jahanian2c0a5402010-05-26 20:46:24 +000012139 << FD->getDeclName() << FD->getType();
Fariborz Jahanian4142ceb2010-05-26 20:19:07 +000012140 FD->setInvalidDecl();
12141 EnclosingDecl->setInvalidDecl();
12142 continue;
12143 }
Reid Spencer5f016e22007-07-11 17:01:13 +000012144 // Okay, we have a legal flexible array member at the end of the struct.
Fariborz Jahaniane267ab62007-09-14 16:27:55 +000012145 if (Record)
12146 Record->setHasFlexibleArrayMember(true);
Douglas Gregore7450f52009-03-24 19:52:54 +000012147 } else if (!FDTy->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +000012148 RequireCompleteType(FD->getLocation(), FD->getType(),
Douglas Gregore7450f52009-03-24 19:52:54 +000012149 diag::err_field_incomplete)) {
12150 // Incomplete type
12151 FD->setInvalidDecl();
12152 EnclosingDecl->setInvalidDecl();
12153 continue;
Ted Kremenek6217b802009-07-29 21:53:49 +000012154 } else if (const RecordType *FDTTy = FDTy->getAs<RecordType>()) {
Reid Spencer5f016e22007-07-11 17:01:13 +000012155 if (FDTTy->getDecl()->hasFlexibleArrayMember()) {
12156 // If this is a member of a union, then entire union becomes "flexible".
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +000012157 if (Record && Record->isUnion()) {
Reid Spencer5f016e22007-07-11 17:01:13 +000012158 Record->setHasFlexibleArrayMember(true);
12159 } else {
12160 // If this is a struct/class and this is not the last element, reject
12161 // it. Note that GCC supports variable sized arrays in the middle of
12162 // structures.
David Blaikie77b6de02011-09-22 02:58:26 +000012163 if (i + 1 != Fields.end())
Douglas Gregore4f3e062009-03-06 23:41:27 +000012164 Diag(FD->getLocation(), diag::ext_variable_sized_type_in_struct)
Chris Lattner740782a2009-04-25 18:52:45 +000012165 << FD->getDeclName() << FD->getType();
Douglas Gregore4f3e062009-03-06 23:41:27 +000012166 else {
12167 // We support flexible arrays at the end of structs in
12168 // other structs as an extension.
12169 Diag(FD->getLocation(), diag::ext_flexible_array_in_struct)
12170 << FD->getDeclName();
12171 if (Record)
12172 Record->setHasFlexibleArrayMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +000012173 }
Reid Spencer5f016e22007-07-11 17:01:13 +000012174 }
12175 }
Fariborz Jahanian7f90b532012-08-16 22:38:41 +000012176 if (isa<ObjCContainerDecl>(EnclosingDecl) &&
12177 RequireNonAbstractType(FD->getLocation(), FD->getType(),
12178 diag::err_abstract_type_in_decl,
12179 AbstractIvarType)) {
12180 // Ivars can not have abstract class types
12181 FD->setInvalidDecl();
12182 }
Fariborz Jahanian082b02e2009-07-08 01:18:33 +000012183 if (Record && FDTTy->getDecl()->hasObjectMember())
12184 Record->setHasObjectMember(true);
Fariborz Jahanian3ac83d62013-01-25 23:57:05 +000012185 if (Record && FDTTy->getDecl()->hasVolatileMember())
12186 Record->setHasVolatileMember(true);
John McCallc12c5bb2010-05-15 11:32:37 +000012187 } else if (FDTy->isObjCObjectType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +000012188 /// A field cannot be an Objective-c object
Fariborz Jahanian8eaefdc2011-07-26 17:58:54 +000012189 Diag(FD->getLocation(), diag::err_statically_allocated_object)
12190 << FixItHint::CreateInsertion(FD->getLocation(), "*");
12191 QualType T = Context.getObjCObjectPointerType(FD->getType());
12192 FD->setType(T);
Douglas Gregor4581d452013-01-28 19:08:09 +000012193 } else if (getLangOpts().ObjCAutoRefCount && Record && !ARCErrReported &&
12194 (!getLangOpts().CPlusPlus || Record->isUnion())) {
12195 // It's an error in ARC if a field has lifetime.
12196 // We don't want to report this in a system header, though,
12197 // so we just make the field unavailable.
12198 // FIXME: that's really not sufficient; we need to make the type
12199 // itself invalid to, say, initialize or copy.
12200 QualType T = FD->getType();
12201 Qualifiers::ObjCLifetime lifetime = T.getObjCLifetime();
12202 if (lifetime && lifetime != Qualifiers::OCL_ExplicitNone) {
12203 SourceLocation loc = FD->getLocation();
12204 if (getSourceManager().isInSystemHeader(loc)) {
12205 if (!FD->hasAttr<UnavailableAttr>()) {
Stephen Hines651f13c2014-04-23 16:59:28 -070012206 FD->addAttr(UnavailableAttr::CreateImplicit(Context,
12207 "this system field has retaining ownership",
12208 loc));
John McCallf85e1932011-06-15 23:02:42 +000012209 }
Douglas Gregor4581d452013-01-28 19:08:09 +000012210 } else {
12211 Diag(FD->getLocation(), diag::err_arc_objc_object_in_tag)
Douglas Gregorbde67cf2013-01-28 20:13:44 +000012212 << T->isBlockPointerType() << Record->getTagKind();
John McCallf85e1932011-06-15 23:02:42 +000012213 }
Douglas Gregor4581d452013-01-28 19:08:09 +000012214 ARCErrReported = true;
John McCallf85e1932011-06-15 23:02:42 +000012215 }
Douglas Gregor4581d452013-01-28 19:08:09 +000012216 } else if (getLangOpts().ObjC1 &&
David Blaikie4e4d0842012-03-11 07:00:24 +000012217 getLangOpts().getGC() != LangOptions::NonGC &&
John McCallf85e1932011-06-15 23:02:42 +000012218 Record && !Record->hasObjectMember()) {
Douglas Gregor4581d452013-01-28 19:08:09 +000012219 if (FD->getType()->isObjCObjectPointerType() ||
12220 FD->getType().isObjCGCStrong())
12221 Record->setHasObjectMember(true);
12222 else if (Context.getAsArrayType(FD->getType())) {
12223 QualType BaseType = Context.getBaseElementType(FD->getType());
12224 if (BaseType->isRecordType() &&
12225 BaseType->getAs<RecordType>()->getDecl()->hasObjectMember())
John McCallf85e1932011-06-15 23:02:42 +000012226 Record->setHasObjectMember(true);
Douglas Gregor4581d452013-01-28 19:08:09 +000012227 else if (BaseType->isObjCObjectPointerType() ||
12228 BaseType.isObjCGCStrong())
12229 Record->setHasObjectMember(true);
John McCallf85e1932011-06-15 23:02:42 +000012230 }
Fariborz Jahanian55bcace2010-06-15 22:44:06 +000012231 }
Fariborz Jahanian3ac83d62013-01-25 23:57:05 +000012232 if (Record && FD->getType().isVolatileQualified())
12233 Record->setHasVolatileMember(true);
Reid Spencer5f016e22007-07-11 17:01:13 +000012234 // Keep track of the number of named members.
Douglas Gregor72de6672009-01-08 20:45:30 +000012235 if (FD->getIdentifier())
Reid Spencer5f016e22007-07-11 17:01:13 +000012236 ++NumNamedMembers;
Reid Spencer5f016e22007-07-11 17:01:13 +000012237 }
Sebastian Redl64b45f72009-01-05 20:52:13 +000012238
Reid Spencer5f016e22007-07-11 17:01:13 +000012239 // Okay, we successfully defined 'Record'.
Chris Lattnere1e79852008-02-06 00:51:33 +000012240 if (Record) {
Douglas Gregor7a39dd02010-09-29 00:15:42 +000012241 bool Completed = false;
12242 if (CXXRecordDecl *CXXRecord = dyn_cast<CXXRecordDecl>(Record)) {
12243 if (!CXXRecord->isInvalidDecl()) {
12244 // Set access bits correctly on the directly-declared conversions.
Argyrios Kyrtzidis9d295432012-11-28 03:56:09 +000012245 for (CXXRecordDecl::conversion_iterator
12246 I = CXXRecord->conversion_begin(),
12247 E = CXXRecord->conversion_end(); I != E; ++I)
12248 I.setAccess((*I)->getAccess());
Douglas Gregor7a39dd02010-09-29 00:15:42 +000012249
12250 if (!CXXRecord->isDependentType()) {
Peter Collingbournef51cfb82013-05-20 14:12:25 +000012251 if (CXXRecord->hasUserDeclaredDestructor()) {
12252 // Adjust user-defined destructor exception spec.
12253 if (getLangOpts().CPlusPlus11)
12254 AdjustDestructorExceptionSpec(CXXRecord,
12255 CXXRecord->getDestructor());
Peter Collingbournef51cfb82013-05-20 14:12:25 +000012256 }
Sebastian Redl0ee33912011-05-19 05:13:44 +000012257
Douglas Gregor7a39dd02010-09-29 00:15:42 +000012258 // Add any implicitly-declared members to this class.
12259 AddImplicitlyDeclaredMembersToClass(CXXRecord);
12260
12261 // If we have virtual base classes, we may end up finding multiple
12262 // final overriders for a given virtual function. Check for this
12263 // problem now.
12264 if (CXXRecord->getNumVBases()) {
12265 CXXFinalOverriderMap FinalOverriders;
12266 CXXRecord->getFinalOverriders(FinalOverriders);
12267
12268 for (CXXFinalOverriderMap::iterator M = FinalOverriders.begin(),
12269 MEnd = FinalOverriders.end();
12270 M != MEnd; ++M) {
12271 for (OverridingMethods::iterator SO = M->second.begin(),
12272 SOEnd = M->second.end();
12273 SO != SOEnd; ++SO) {
12274 assert(SO->second.size() > 0 &&
12275 "Virtual function without overridding functions?");
12276 if (SO->second.size() == 1)
12277 continue;
12278
12279 // C++ [class.virtual]p2:
12280 // In a derived class, if a virtual member function of a base
12281 // class subobject has more than one final overrider the
12282 // program is ill-formed.
12283 Diag(Record->getLocation(), diag::err_multiple_final_overriders)
Roman Divacky31ba6132012-09-06 15:59:27 +000012284 << (const NamedDecl *)M->first << Record;
Douglas Gregor7a39dd02010-09-29 00:15:42 +000012285 Diag(M->first->getLocation(),
12286 diag::note_overridden_virtual_function);
12287 for (OverridingMethods::overriding_iterator
12288 OM = SO->second.begin(),
12289 OMEnd = SO->second.end();
12290 OM != OMEnd; ++OM)
12291 Diag(OM->Method->getLocation(), diag::note_final_overrider)
Roman Divacky31ba6132012-09-06 15:59:27 +000012292 << (const NamedDecl *)M->first << OM->Method->getParent();
Douglas Gregor7a39dd02010-09-29 00:15:42 +000012293
12294 Record->setInvalidDecl();
12295 }
12296 }
12297 CXXRecord->completeDefinition(&FinalOverriders);
12298 Completed = true;
12299 }
12300 }
12301 }
12302 }
12303
12304 if (!Completed)
12305 Record->completeDefinition();
Sebastian Redl0ee33912011-05-19 05:13:44 +000012306
Stephen Hines651f13c2014-04-23 16:59:28 -070012307 if (Record->hasAttrs()) {
Richard Smithbe507b62013-02-01 08:12:08 +000012308 CheckAlignasUnderalignment(Record);
Serge Pavlov122e6012013-06-08 13:29:58 +000012309
Stephen Hines651f13c2014-04-23 16:59:28 -070012310 if (const MSInheritanceAttr *IA = Record->getAttr<MSInheritanceAttr>())
12311 checkMSInheritanceAttrOnDefinition(cast<CXXRecordDecl>(Record),
12312 IA->getRange(), IA->getBestCase(),
12313 IA->getSemanticSpelling());
12314 }
12315
Serge Pavlov142ab062013-11-14 02:13:03 +000012316 // Check if the structure/union declaration is a type that can have zero
12317 // size in C. For C this is a language extension, for C++ it may cause
12318 // compatibility problems.
12319 bool CheckForZeroSize;
Serge Pavlov122e6012013-06-08 13:29:58 +000012320 if (!getLangOpts().CPlusPlus) {
Serge Pavlov142ab062013-11-14 02:13:03 +000012321 CheckForZeroSize = true;
12322 } else {
12323 // For C++ filter out types that cannot be referenced in C code.
12324 CXXRecordDecl *CXXRecord = cast<CXXRecordDecl>(Record);
12325 CheckForZeroSize =
12326 CXXRecord->getLexicalDeclContext()->isExternCContext() &&
12327 !CXXRecord->isDependentType() &&
12328 CXXRecord->isCLike();
12329 }
12330 if (CheckForZeroSize) {
Serge Pavlov122e6012013-06-08 13:29:58 +000012331 bool ZeroSize = true;
Serge Pavlov0dcea352013-06-17 17:18:51 +000012332 bool IsEmpty = true;
12333 unsigned NonBitFields = 0;
Serge Pavlov122e6012013-06-08 13:29:58 +000012334 for (RecordDecl::field_iterator I = Record->field_begin(),
Serge Pavlov0dcea352013-06-17 17:18:51 +000012335 E = Record->field_end();
12336 (NonBitFields == 0 || ZeroSize) && I != E; ++I) {
12337 IsEmpty = false;
Serge Pavlov122e6012013-06-08 13:29:58 +000012338 if (I->isUnnamedBitfield()) {
Serge Pavlov122e6012013-06-08 13:29:58 +000012339 if (I->getBitWidthValue(Context) > 0)
12340 ZeroSize = false;
12341 } else {
Serge Pavlov0dcea352013-06-17 17:18:51 +000012342 ++NonBitFields;
12343 QualType FieldType = I->getType();
12344 if (FieldType->isIncompleteType() ||
12345 !Context.getTypeSizeInChars(FieldType).isZero())
12346 ZeroSize = false;
Serge Pavlov122e6012013-06-08 13:29:58 +000012347 }
12348 }
12349
Serge Pavlov142ab062013-11-14 02:13:03 +000012350 // Empty structs are an extension in C (C99 6.7.2.1p7). They are
12351 // allowed in C++, but warn if its declaration is inside
12352 // extern "C" block.
12353 if (ZeroSize) {
12354 Diag(RecLoc, getLangOpts().CPlusPlus ?
12355 diag::warn_zero_size_struct_union_in_extern_c :
12356 diag::warn_zero_size_struct_union_compat)
12357 << IsEmpty << Record->isUnion() << (NonBitFields > 1);
12358 }
Serge Pavlov122e6012013-06-08 13:29:58 +000012359
Serge Pavlov142ab062013-11-14 02:13:03 +000012360 // Structs without named members are extension in C (C99 6.7.2.1p7),
12361 // but are accepted by GCC.
12362 if (NonBitFields == 0 && !getLangOpts().CPlusPlus) {
12363 Diag(RecLoc, IsEmpty ? diag::ext_empty_struct_union :
12364 diag::ext_no_named_members_in_struct_union)
12365 << Record->isUnion();
Serge Pavlov122e6012013-06-08 13:29:58 +000012366 }
12367 }
Chris Lattnere1e79852008-02-06 00:51:33 +000012368 } else {
Jay Foadbeaaccd2009-05-21 09:52:38 +000012369 ObjCIvarDecl **ClsFields =
12370 reinterpret_cast<ObjCIvarDecl**>(RecFields.data());
Fariborz Jahanian60f8c862008-12-13 20:28:25 +000012371 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(EnclosingDecl)) {
Douglas Gregor05c272f2011-12-15 22:34:59 +000012372 ID->setEndOfDefinitionLoc(RBrac);
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000012373 // Add ivar's to class's DeclContext.
12374 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
12375 ClsFields[i]->setLexicalDeclContext(ID);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000012376 ID->addDecl(ClsFields[i]);
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000012377 }
Fariborz Jahanian3281eff2008-12-16 01:08:35 +000012378 // Must enforce the rule that ivars in the base classes may not be
12379 // duplicates.
Fariborz Jahanianf914b972010-02-23 23:41:11 +000012380 if (ID->getSuperClass())
12381 DiagnoseDuplicateIvars(ID, ID->getSuperClass());
Mike Stump1eb44332009-09-09 15:08:12 +000012382 } else if (ObjCImplementationDecl *IMPDecl =
Chris Lattner1829a6d2009-02-23 22:00:08 +000012383 dyn_cast<ObjCImplementationDecl>(EnclosingDecl)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +000012384 assert(IMPDecl && "ActOnFields - missing ObjCImplementationDecl");
Fariborz Jahanian496b5a82009-06-05 18:16:35 +000012385 for (unsigned I = 0, N = RecFields.size(); I != N; ++I)
12386 // Ivar declared in @implementation never belongs to the implementation.
12387 // Only it is in implementation's lexical context.
Douglas Gregor8f36aba2009-04-23 03:23:08 +000012388 ClsFields[I]->setLexicalDeclContext(IMPDecl);
Fariborz Jahanian3a3ca1b2007-10-31 18:48:14 +000012389 CheckImplementationIvars(IMPDecl, ClsFields, RecFields.size(), RBrac);
Fariborz Jahanianaf300292012-02-20 20:09:20 +000012390 IMPDecl->setIvarLBraceLoc(LBrac);
12391 IMPDecl->setIvarRBraceLoc(RBrac);
Fariborz Jahanian83c481a2010-02-22 23:04:20 +000012392 } else if (ObjCCategoryDecl *CDecl =
12393 dyn_cast<ObjCCategoryDecl>(EnclosingDecl)) {
Fariborz Jahanian0bd04592010-04-06 22:43:48 +000012394 // case of ivars in class extension; all other cases have been
12395 // reported as errors elsewhere.
12396 // FIXME. Class extension does not have a LocEnd field.
12397 // CDecl->setLocEnd(RBrac);
12398 // Add ivar's to class extension's DeclContext.
Fariborz Jahanian3ff86f72011-10-21 18:03:52 +000012399 // Diagnose redeclaration of private ivars.
12400 ObjCInterfaceDecl *IDecl = CDecl->getClassInterface();
Fariborz Jahanian0bd04592010-04-06 22:43:48 +000012401 for (unsigned i = 0, e = RecFields.size(); i != e; ++i) {
Fariborz Jahanian3ff86f72011-10-21 18:03:52 +000012402 if (IDecl) {
12403 if (const ObjCIvarDecl *ClsIvar =
12404 IDecl->getIvarDecl(ClsFields[i]->getIdentifier())) {
12405 Diag(ClsFields[i]->getLocation(),
12406 diag::err_duplicate_ivar_declaration);
12407 Diag(ClsIvar->getLocation(), diag::note_previous_definition);
12408 continue;
12409 }
Stephen Hines651f13c2014-04-23 16:59:28 -070012410 for (const auto *Ext : IDecl->known_extensions()) {
Douglas Gregord3297242013-01-16 23:00:23 +000012411 if (const ObjCIvarDecl *ClsExtIvar
12412 = Ext->getIvarDecl(ClsFields[i]->getIdentifier())) {
Fariborz Jahanian3ff86f72011-10-21 18:03:52 +000012413 Diag(ClsFields[i]->getLocation(),
12414 diag::err_duplicate_ivar_declaration);
12415 Diag(ClsExtIvar->getLocation(), diag::note_previous_definition);
12416 continue;
12417 }
12418 }
12419 }
Fariborz Jahanian0bd04592010-04-06 22:43:48 +000012420 ClsFields[i]->setLexicalDeclContext(CDecl);
12421 CDecl->addDecl(ClsFields[i]);
Fariborz Jahanian83c481a2010-02-22 23:04:20 +000012422 }
Fariborz Jahanianaf300292012-02-20 20:09:20 +000012423 CDecl->setIvarLBraceLoc(LBrac);
12424 CDecl->setIvarRBraceLoc(RBrac);
Fariborz Jahaniand0b90bf2007-09-26 18:27:25 +000012425 }
Fariborz Jahanianb04a0212007-09-14 21:08:27 +000012426 }
Daniel Dunbar7d076642008-10-03 17:33:35 +000012427
12428 if (Attr)
Douglas Gregor9cdda0c2009-06-17 21:51:59 +000012429 ProcessDeclAttributeList(S, Record, Attr);
Reid Spencer5f016e22007-07-11 17:01:13 +000012430}
12431
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012432/// \brief Determine whether the given integral value is representable within
12433/// the given type T.
12434static bool isRepresentableIntegerValue(ASTContext &Context,
12435 llvm::APSInt &Value,
12436 QualType T) {
Douglas Gregor9d3347a2010-06-16 00:35:25 +000012437 assert(T->isIntegralType(Context) && "Integral type required!");
Douglas Gregoraf68d4e2010-04-15 15:53:31 +000012438 unsigned BitWidth = Context.getIntWidth(T);
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012439
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012440 if (Value.isUnsigned() || Value.isNonNegative()) {
Douglas Gregor575a1c92011-05-20 16:38:50 +000012441 if (T->isSignedIntegerOrEnumerationType())
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012442 --BitWidth;
12443 return Value.getActiveBits() <= BitWidth;
12444 }
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012445 return Value.getMinSignedBits() <= BitWidth;
12446}
12447
12448// \brief Given an integral type, return the next larger integral type
12449// (or a NULL type of no such type exists).
12450static QualType getNextLargerIntegralType(ASTContext &Context, QualType T) {
12451 // FIXME: Int128/UInt128 support, which also needs to be introduced into
12452 // enum checking below.
Douglas Gregor9d3347a2010-06-16 00:35:25 +000012453 assert(T->isIntegralType(Context) && "Integral type required!");
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012454 const unsigned NumTypes = 4;
12455 QualType SignedIntegralTypes[NumTypes] = {
12456 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy
12457 };
12458 QualType UnsignedIntegralTypes[NumTypes] = {
12459 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy,
12460 Context.UnsignedLongLongTy
12461 };
12462
12463 unsigned BitWidth = Context.getTypeSize(T);
Douglas Gregor575a1c92011-05-20 16:38:50 +000012464 QualType *Types = T->isSignedIntegerOrEnumerationType()? SignedIntegralTypes
12465 : UnsignedIntegralTypes;
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012466 for (unsigned I = 0; I != NumTypes; ++I)
12467 if (Context.getTypeSize(Types[I]) > BitWidth)
12468 return Types[I];
12469
12470 return QualType();
12471}
12472
Douglas Gregor879fd492009-03-17 19:05:46 +000012473EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum,
12474 EnumConstantDecl *LastEnumConst,
12475 SourceLocation IdLoc,
12476 IdentifierInfo *Id,
John McCall9ae2f072010-08-23 23:25:46 +000012477 Expr *Val) {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000012478 unsigned IntWidth = Context.getTargetInfo().getIntWidth();
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012479 llvm::APSInt EnumVal(IntWidth);
Douglas Gregor879fd492009-03-17 19:05:46 +000012480 QualType EltTy;
Douglas Gregor0c9e4792010-12-16 00:24:44 +000012481
12482 if (Val && DiagnoseUnexpandedParameterPack(Val, UPPC_EnumeratorValue))
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012483 Val = nullptr;
Douglas Gregor0c9e4792010-12-16 00:24:44 +000012484
Eli Friedman19efa3e2011-12-06 00:10:34 +000012485 if (Val)
12486 Val = DefaultLvalueConversion(Val).take();
12487
Douglas Gregor4912c342009-11-06 00:03:12 +000012488 if (Val) {
Douglas Gregor9b9edd62010-03-02 17:53:14 +000012489 if (Enum->isDependentType() || Val->isTypeDependent())
Douglas Gregor4912c342009-11-06 00:03:12 +000012490 EltTy = Context.DependentTy;
12491 else {
Douglas Gregor4912c342009-11-06 00:03:12 +000012492 SourceLocation ExpLoc;
Richard Smith80ad52f2013-01-02 11:42:31 +000012493 if (getLangOpts().CPlusPlus11 && Enum->isFixed() &&
Stephen Hines651f13c2014-04-23 16:59:28 -070012494 !getLangOpts().MSVCCompat) {
Richard Smith8ef7b202012-01-18 23:55:52 +000012495 // C++11 [dcl.enum]p5: If the underlying type is fixed, [...] the
12496 // constant-expression in the enumerator-definition shall be a converted
12497 // constant expression of the underlying type.
12498 EltTy = Enum->getIntegerType();
12499 ExprResult Converted =
12500 CheckConvertedConstantExpression(Val, EltTy, EnumVal,
12501 CCEK_Enumerator);
12502 if (Converted.isInvalid())
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012503 Val = nullptr;
Richard Smith8ef7b202012-01-18 23:55:52 +000012504 else
12505 Val = Converted.take();
12506 } else if (!Val->isValueDependent() &&
Richard Smith282e7e62012-02-04 09:53:13 +000012507 !(Val = VerifyIntegerConstantExpression(Val,
12508 &EnumVal).take())) {
Richard Smith8ef7b202012-01-18 23:55:52 +000012509 // C99 6.7.2.2p2: Make sure we have an integer constant expression.
Richard Smith8ef7b202012-01-18 23:55:52 +000012510 } else {
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012511 if (Enum->isFixed()) {
12512 EltTy = Enum->getIntegerType();
12513
Richard Smith8ef7b202012-01-18 23:55:52 +000012514 // In Obj-C and Microsoft mode, require the enumeration value to be
12515 // representable in the underlying type of the enumeration. In C++11,
12516 // we perform a non-narrowing conversion as part of converted constant
12517 // expression checking.
Francois Pichet842e7a22010-10-18 15:01:13 +000012518 if (!isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
Stephen Hines651f13c2014-04-23 16:59:28 -070012519 if (getLangOpts().MSVCCompat) {
Francois Pichet842e7a22010-10-18 15:01:13 +000012520 Diag(IdLoc, diag::ext_enumerator_too_large) << EltTy;
John Wiegley429bb272011-04-08 18:41:53 +000012521 Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).take();
Richard Smith8ef7b202012-01-18 23:55:52 +000012522 } else
12523 Diag(IdLoc, diag::err_enumerator_too_large) << EltTy;
Francois Pichet842e7a22010-10-18 15:01:13 +000012524 } else
John Wiegley429bb272011-04-08 18:41:53 +000012525 Val = ImpCastExprToType(Val, EltTy, CK_IntegralCast).take();
David Blaikie4e4d0842012-03-11 07:00:24 +000012526 } else if (getLangOpts().CPlusPlus) {
Richard Smith8ef7b202012-01-18 23:55:52 +000012527 // C++11 [dcl.enum]p5:
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012528 // If the underlying type is not fixed, the type of each enumerator
12529 // is the type of its initializing value:
12530 // - If an initializer is specified for an enumerator, the
12531 // initializing value has the same type as the expression.
12532 EltTy = Val->getType();
Eli Friedman04ca2522012-02-07 04:34:38 +000012533 } else {
12534 // C99 6.7.2.2p2:
12535 // The expression that defines the value of an enumeration constant
12536 // shall be an integer constant expression that has a value
12537 // representable as an int.
12538
12539 // Complain if the value is not representable in an int.
12540 if (!isRepresentableIntegerValue(Context, EnumVal, Context.IntTy))
12541 Diag(IdLoc, diag::ext_enum_value_not_int)
12542 << EnumVal.toString(10) << Val->getSourceRange()
12543 << (EnumVal.isUnsigned() || EnumVal.isNonNegative());
12544 else if (!Context.hasSameType(Val->getType(), Context.IntTy)) {
12545 // Force the type of the expression to 'int'.
12546 Val = ImpCastExprToType(Val, Context.IntTy, CK_IntegralCast).take();
12547 }
12548 EltTy = Val->getType();
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012549 }
Douglas Gregor4912c342009-11-06 00:03:12 +000012550 }
Douglas Gregor879fd492009-03-17 19:05:46 +000012551 }
12552 }
Mike Stump1eb44332009-09-09 15:08:12 +000012553
Douglas Gregor879fd492009-03-17 19:05:46 +000012554 if (!Val) {
Eli Friedmaned0716b2009-12-11 01:34:50 +000012555 if (Enum->isDependentType())
12556 EltTy = Context.DependentTy;
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012557 else if (!LastEnumConst) {
12558 // C++0x [dcl.enum]p5:
12559 // If the underlying type is not fixed, the type of each enumerator
12560 // is the type of its initializing value:
12561 // - If no initializer is specified for the first enumerator, the
12562 // initializing value has an unspecified integral type.
12563 //
12564 // GCC uses 'int' for its unspecified integral type, as does
12565 // C99 6.7.2.2p3.
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012566 if (Enum->isFixed()) {
12567 EltTy = Enum->getIntegerType();
12568 }
12569 else {
12570 EltTy = Context.IntTy;
12571 }
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012572 } else {
Douglas Gregor879fd492009-03-17 19:05:46 +000012573 // Assign the last value + 1.
12574 EnumVal = LastEnumConst->getInitVal();
12575 ++EnumVal;
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012576 EltTy = LastEnumConst->getType();
Douglas Gregor879fd492009-03-17 19:05:46 +000012577
12578 // Check for overflow on increment.
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012579 if (EnumVal < LastEnumConst->getInitVal()) {
12580 // C++0x [dcl.enum]p5:
12581 // If the underlying type is not fixed, the type of each enumerator
12582 // is the type of its initializing value:
12583 //
12584 // - Otherwise the type of the initializing value is the same as
12585 // the type of the initializing value of the preceding enumerator
12586 // unless the incremented value is not representable in that type,
12587 // in which case the type is an unspecified integral type
12588 // sufficient to contain the incremented value. If no such type
12589 // exists, the program is ill-formed.
12590 QualType T = getNextLargerIntegralType(Context, EltTy);
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012591 if (T.isNull() || Enum->isFixed()) {
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012592 // There is no integral type larger enough to represent this
12593 // value. Complain, then allow the value to wrap around.
12594 EnumVal = LastEnumConst->getInitVal();
Jay Foad9f71a8f2010-12-07 08:25:34 +000012595 EnumVal = EnumVal.zext(EnumVal.getBitWidth() * 2);
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012596 ++EnumVal;
12597 if (Enum->isFixed())
12598 // When the underlying type is fixed, this is ill-formed.
12599 Diag(IdLoc, diag::err_enumerator_wrapped)
12600 << EnumVal.toString(10)
12601 << EltTy;
12602 else
Stephen Hines651f13c2014-04-23 16:59:28 -070012603 Diag(IdLoc, diag::ext_enumerator_increment_too_large)
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012604 << EnumVal.toString(10);
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012605 } else {
12606 EltTy = T;
12607 }
12608
12609 // Retrieve the last enumerator's value, extent that type to the
12610 // type that is supposed to be large enough to represent the incremented
12611 // value, then increment.
12612 EnumVal = LastEnumConst->getInitVal();
Douglas Gregor575a1c92011-05-20 16:38:50 +000012613 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
Jay Foad9f71a8f2010-12-07 08:25:34 +000012614 EnumVal = EnumVal.zextOrTrunc(Context.getIntWidth(EltTy));
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012615 ++EnumVal;
12616
12617 // If we're not in C++, diagnose the overflow of enumerator values,
12618 // which in C99 means that the enumerator value is not representable in
12619 // an int (C99 6.7.2.2p2). However, we support GCC's extension that
12620 // permits enumerator values that are representable in some larger
12621 // integral type.
David Blaikie4e4d0842012-03-11 07:00:24 +000012622 if (!getLangOpts().CPlusPlus && !T.isNull())
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012623 Diag(IdLoc, diag::warn_enum_value_overflow);
David Blaikie4e4d0842012-03-11 07:00:24 +000012624 } else if (!getLangOpts().CPlusPlus &&
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012625 !isRepresentableIntegerValue(Context, EnumVal, EltTy)) {
12626 // Enforce C99 6.7.2.2p2 even when we compute the next value.
12627 Diag(IdLoc, diag::ext_enum_value_not_int)
12628 << EnumVal.toString(10) << 1;
12629 }
Douglas Gregor879fd492009-03-17 19:05:46 +000012630 }
12631 }
Mike Stump1eb44332009-09-09 15:08:12 +000012632
Douglas Gregor9b9edd62010-03-02 17:53:14 +000012633 if (!EltTy->isDependentType()) {
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012634 // Make the enumerator value match the signedness and size of the
12635 // enumerator's type.
Eli Friedman04ca2522012-02-07 04:34:38 +000012636 EnumVal = EnumVal.extOrTrunc(Context.getIntWidth(EltTy));
Douglas Gregor575a1c92011-05-20 16:38:50 +000012637 EnumVal.setIsSigned(EltTy->isSignedIntegerOrEnumerationType());
Douglas Gregor677e4fe2010-02-01 23:36:03 +000012638 }
Douglas Gregor4912c342009-11-06 00:03:12 +000012639
Douglas Gregor879fd492009-03-17 19:05:46 +000012640 return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
Mike Stump1eb44332009-09-09 15:08:12 +000012641 Val, EnumVal);
Douglas Gregor879fd492009-03-17 19:05:46 +000012642}
12643
12644
John McCall5b629aa2010-10-22 23:36:17 +000012645Decl *Sema::ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst,
12646 SourceLocation IdLoc, IdentifierInfo *Id,
12647 AttributeList *Attr,
Richard Smith8ef7b202012-01-18 23:55:52 +000012648 SourceLocation EqualLoc, Expr *Val) {
John McCalld226f652010-08-21 09:40:31 +000012649 EnumDecl *TheEnumDecl = cast<EnumDecl>(theEnumDecl);
Reid Spencer5f016e22007-07-11 17:01:13 +000012650 EnumConstantDecl *LastEnumConst =
John McCalld226f652010-08-21 09:40:31 +000012651 cast_or_null<EnumConstantDecl>(lastEnumConst);
Reid Spencer5f016e22007-07-11 17:01:13 +000012652
Chris Lattner31e05722007-08-26 06:24:45 +000012653 // The scope passed in may not be a decl scope. Zip up the scope tree until
12654 // we find one that is.
Douglas Gregor1a0d31a2009-01-12 18:45:55 +000012655 S = getNonFieldDeclScope(S);
Mike Stump1eb44332009-09-09 15:08:12 +000012656
Reid Spencer5f016e22007-07-11 17:01:13 +000012657 // Verify that there isn't already something declared with this name in this
12658 // scope.
Douglas Gregorc83c6872010-04-15 22:33:43 +000012659 NamedDecl *PrevDecl = LookupSingleName(S, Id, IdLoc, LookupOrdinaryName,
Douglas Gregore39fe722010-01-19 06:06:57 +000012660 ForRedeclaration);
Douglas Gregorf57172b2008-12-08 18:40:42 +000012661 if (PrevDecl && PrevDecl->isTemplateParameter()) {
Douglas Gregor72c3f312008-12-05 18:15:24 +000012662 // Maybe we will complain about the shadowed template parameter.
12663 DiagnoseTemplateParameterShadow(IdLoc, PrevDecl);
12664 // Just pretend that we didn't see the previous declaration.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012665 PrevDecl = nullptr;
Douglas Gregor72c3f312008-12-05 18:15:24 +000012666 }
12667
12668 if (PrevDecl) {
Argyrios Kyrtzidis0ff12f02008-07-16 21:01:53 +000012669 // When in C++, we may get a TagDecl with the same name; in this case the
12670 // enum constant will 'hide' the tag.
David Blaikie4e4d0842012-03-11 07:00:24 +000012671 assert((getLangOpts().CPlusPlus || !isa<TagDecl>(PrevDecl)) &&
Argyrios Kyrtzidis0ff12f02008-07-16 21:01:53 +000012672 "Received TagDecl when not in C++!");
Argyrios Kyrtzidis15a12d02008-09-09 21:18:04 +000012673 if (!isa<TagDecl>(PrevDecl) && isDeclInScope(PrevDecl, CurContext, S)) {
Reid Spencer5f016e22007-07-11 17:01:13 +000012674 if (isa<EnumConstantDecl>(PrevDecl))
Chris Lattner3c73c412008-11-19 08:23:25 +000012675 Diag(IdLoc, diag::err_redefinition_of_enumerator) << Id;
Reid Spencer5f016e22007-07-11 17:01:13 +000012676 else
Chris Lattner3c73c412008-11-19 08:23:25 +000012677 Diag(IdLoc, diag::err_redefinition) << Id;
Chris Lattner5f4a6822008-11-23 23:12:31 +000012678 Diag(PrevDecl->getLocation(), diag::note_previous_definition);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012679 return nullptr;
Reid Spencer5f016e22007-07-11 17:01:13 +000012680 }
12681 }
12682
Aaron Ballmanf8167872012-07-19 03:12:23 +000012683 // C++ [class.mem]p15:
12684 // If T is the name of a class, then each of the following shall have a name
12685 // different from T:
12686 // - every enumerator of every member of class T that is an unscoped
12687 // enumerated type
Douglas Gregora6e937c2010-10-15 13:21:21 +000012688 if (CXXRecordDecl *Record
12689 = dyn_cast<CXXRecordDecl>(
12690 TheEnumDecl->getDeclContext()->getRedeclContext()))
Aaron Ballmanf8167872012-07-19 03:12:23 +000012691 if (!TheEnumDecl->isScoped() &&
12692 Record->getIdentifier() && Record->getIdentifier() == Id)
Douglas Gregora6e937c2010-10-15 13:21:21 +000012693 Diag(IdLoc, diag::err_member_name_of_class) << Id;
12694
John McCall5b629aa2010-10-22 23:36:17 +000012695 EnumConstantDecl *New =
12696 CheckEnumConstant(TheEnumDecl, LastEnumConst, IdLoc, Id, Val);
Chris Lattner421a23d2007-08-27 21:16:18 +000012697
John McCall92f88312010-01-23 00:46:32 +000012698 if (New) {
John McCall5b629aa2010-10-22 23:36:17 +000012699 // Process attributes.
12700 if (Attr) ProcessDeclAttributeList(S, New, Attr);
12701
12702 // Register this decl in the current scope stack.
John McCall92f88312010-01-23 00:46:32 +000012703 New->setAccess(TheEnumDecl->getAccess());
Douglas Gregor879fd492009-03-17 19:05:46 +000012704 PushOnScopeChains(New, S);
John McCall92f88312010-01-23 00:46:32 +000012705 }
Douglas Gregor45579f52008-12-17 02:04:30 +000012706
Dmitri Gribenkoa5ef44f2012-07-11 21:38:39 +000012707 ActOnDocumentableDecl(New);
12708
John McCalld226f652010-08-21 09:40:31 +000012709 return New;
Reid Spencer5f016e22007-07-11 17:01:13 +000012710}
12711
Ted Kremeneka734a0e2012-12-22 01:34:09 +000012712// Returns true when the enum initial expression does not trigger the
12713// duplicate enum warning. A few common cases are exempted as follows:
12714// Element2 = Element1
12715// Element2 = Element1 + 1
12716// Element2 = Element1 - 1
12717// Where Element2 and Element1 are from the same enum.
12718static bool ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) {
12719 Expr *InitExpr = ECD->getInitExpr();
12720 if (!InitExpr)
12721 return true;
12722 InitExpr = InitExpr->IgnoreImpCasts();
12723
12724 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(InitExpr)) {
12725 if (!BO->isAdditiveOp())
12726 return true;
12727 IntegerLiteral *IL = dyn_cast<IntegerLiteral>(BO->getRHS());
12728 if (!IL)
12729 return true;
12730 if (IL->getValue() != 1)
12731 return true;
12732
12733 InitExpr = BO->getLHS();
12734 }
12735
12736 // This checks if the elements are from the same enum.
12737 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InitExpr);
12738 if (!DRE)
12739 return true;
12740
12741 EnumConstantDecl *EnumConstant = dyn_cast<EnumConstantDecl>(DRE->getDecl());
12742 if (!EnumConstant)
12743 return true;
12744
12745 if (cast<EnumDecl>(TagDecl::castFromDeclContext(ECD->getDeclContext())) !=
12746 Enum)
12747 return true;
12748
12749 return false;
12750}
12751
12752struct DupKey {
12753 int64_t val;
12754 bool isTombstoneOrEmptyKey;
12755 DupKey(int64_t val, bool isTombstoneOrEmptyKey)
12756 : val(val), isTombstoneOrEmptyKey(isTombstoneOrEmptyKey) {}
12757};
12758
12759static DupKey GetDupKey(const llvm::APSInt& Val) {
12760 return DupKey(Val.isSigned() ? Val.getSExtValue() : Val.getZExtValue(),
12761 false);
12762}
12763
12764struct DenseMapInfoDupKey {
12765 static DupKey getEmptyKey() { return DupKey(0, true); }
12766 static DupKey getTombstoneKey() { return DupKey(1, true); }
12767 static unsigned getHashValue(const DupKey Key) {
12768 return (unsigned)(Key.val * 37);
12769 }
12770 static bool isEqual(const DupKey& LHS, const DupKey& RHS) {
12771 return LHS.isTombstoneOrEmptyKey == RHS.isTombstoneOrEmptyKey &&
12772 LHS.val == RHS.val;
12773 }
12774};
12775
12776// Emits a warning when an element is implicitly set a value that
12777// a previous element has already been set to.
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +000012778static void CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements,
12779 EnumDecl *Enum,
Ted Kremeneka734a0e2012-12-22 01:34:09 +000012780 QualType EnumType) {
12781 if (S.Diags.getDiagnosticLevel(diag::warn_duplicate_enum_values,
12782 Enum->getLocation()) ==
12783 DiagnosticsEngine::Ignored)
12784 return;
12785 // Avoid anonymous enums
12786 if (!Enum->getIdentifier())
12787 return;
12788
12789 // Only check for small enums.
12790 if (Enum->getNumPositiveBits() > 63 || Enum->getNumNegativeBits() > 64)
12791 return;
12792
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000012793 typedef SmallVector<EnumConstantDecl *, 3> ECDVector;
12794 typedef SmallVector<ECDVector *, 3> DuplicatesVector;
Ted Kremeneka734a0e2012-12-22 01:34:09 +000012795
12796 typedef llvm::PointerUnion<EnumConstantDecl*, ECDVector*> DeclOrVector;
12797 typedef llvm::DenseMap<DupKey, DeclOrVector, DenseMapInfoDupKey>
12798 ValueToVectorMap;
12799
12800 DuplicatesVector DupVector;
12801 ValueToVectorMap EnumMap;
12802
12803 // Populate the EnumMap with all values represented by enum constants without
12804 // an initialier.
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +000012805 for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
Benjamin Kramerefac8da2013-04-07 14:10:40 +000012806 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]);
Ted Kremeneka734a0e2012-12-22 01:34:09 +000012807
12808 // Null EnumConstantDecl means a previous diagnostic has been emitted for
12809 // this constant. Skip this enum since it may be ill-formed.
12810 if (!ECD) {
12811 return;
12812 }
12813
12814 if (ECD->getInitExpr())
12815 continue;
12816
12817 DupKey Key = GetDupKey(ECD->getInitVal());
12818 DeclOrVector &Entry = EnumMap[Key];
12819
12820 // First time encountering this value.
12821 if (Entry.isNull())
12822 Entry = ECD;
12823 }
12824
12825 // Create vectors for any values that has duplicates.
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +000012826 for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
Ted Kremeneka734a0e2012-12-22 01:34:09 +000012827 EnumConstantDecl *ECD = cast<EnumConstantDecl>(Elements[i]);
12828 if (!ValidDuplicateEnum(ECD, Enum))
12829 continue;
12830
12831 DupKey Key = GetDupKey(ECD->getInitVal());
12832
12833 DeclOrVector& Entry = EnumMap[Key];
12834 if (Entry.isNull())
12835 continue;
12836
12837 if (EnumConstantDecl *D = Entry.dyn_cast<EnumConstantDecl*>()) {
12838 // Ensure constants are different.
12839 if (D == ECD)
12840 continue;
12841
12842 // Create new vector and push values onto it.
12843 ECDVector *Vec = new ECDVector();
12844 Vec->push_back(D);
12845 Vec->push_back(ECD);
12846
12847 // Update entry to point to the duplicates vector.
12848 Entry = Vec;
12849
12850 // Store the vector somewhere we can consult later for quick emission of
12851 // diagnostics.
12852 DupVector.push_back(Vec);
12853 continue;
12854 }
12855
12856 ECDVector *Vec = Entry.get<ECDVector*>();
12857 // Make sure constants are not added more than once.
12858 if (*Vec->begin() == ECD)
12859 continue;
12860
12861 Vec->push_back(ECD);
12862 }
12863
12864 // Emit diagnostics.
12865 for (DuplicatesVector::iterator DupVectorIter = DupVector.begin(),
12866 DupVectorEnd = DupVector.end();
12867 DupVectorIter != DupVectorEnd; ++DupVectorIter) {
12868 ECDVector *Vec = *DupVectorIter;
12869 assert(Vec->size() > 1 && "ECDVector should have at least 2 elements.");
12870
12871 // Emit warning for one enum constant.
12872 ECDVector::iterator I = Vec->begin();
12873 S.Diag((*I)->getLocation(), diag::warn_duplicate_enum_values)
12874 << (*I)->getName() << (*I)->getInitVal().toString(10)
12875 << (*I)->getSourceRange();
12876 ++I;
12877
12878 // Emit one note for each of the remaining enum constants with
12879 // the same value.
12880 for (ECDVector::iterator E = Vec->end(); I != E; ++I)
12881 S.Diag((*I)->getLocation(), diag::note_duplicate_element)
12882 << (*I)->getName() << (*I)->getInitVal().toString(10)
12883 << (*I)->getSourceRange();
12884 delete Vec;
12885 }
12886}
12887
Mike Stumpc6e35aa2009-05-16 07:06:02 +000012888void Sema::ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc,
John McCalld226f652010-08-21 09:40:31 +000012889 SourceLocation RBraceLoc, Decl *EnumDeclX,
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +000012890 ArrayRef<Decl *> Elements,
Edward O'Callaghanfee13812009-08-08 14:36:57 +000012891 Scope *S, AttributeList *Attr) {
John McCalld226f652010-08-21 09:40:31 +000012892 EnumDecl *Enum = cast<EnumDecl>(EnumDeclX);
Douglas Gregor074149e2009-01-05 19:45:36 +000012893 QualType EnumType = Context.getTypeDeclType(Enum);
Edward O'Callaghanfee13812009-08-08 14:36:57 +000012894
12895 if (Attr)
12896 ProcessDeclAttributeList(S, Enum, Attr);
Mike Stump1eb44332009-09-09 15:08:12 +000012897
Eli Friedmaned0716b2009-12-11 01:34:50 +000012898 if (Enum->isDependentType()) {
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +000012899 for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
Eli Friedmaned0716b2009-12-11 01:34:50 +000012900 EnumConstantDecl *ECD =
John McCalld226f652010-08-21 09:40:31 +000012901 cast_or_null<EnumConstantDecl>(Elements[i]);
Eli Friedmaned0716b2009-12-11 01:34:50 +000012902 if (!ECD) continue;
12903
12904 ECD->setType(EnumType);
12905 }
12906
John McCall1b5a6182010-05-06 08:49:23 +000012907 Enum->completeDefinition(Context.DependentTy, Context.DependentTy, 0, 0);
Eli Friedmaned0716b2009-12-11 01:34:50 +000012908 return;
12909 }
12910
Chris Lattnere37f0be2007-08-28 05:10:31 +000012911 // TODO: If the result value doesn't fit in an int, it must be a long or long
12912 // long value. ISO C does not support this, but GCC does as an extension,
12913 // emit a warning.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000012914 unsigned IntWidth = Context.getTargetInfo().getIntWidth();
12915 unsigned CharWidth = Context.getTargetInfo().getCharWidth();
12916 unsigned ShortWidth = Context.getTargetInfo().getShortWidth();
Mike Stump1eb44332009-09-09 15:08:12 +000012917
Chris Lattnerac609682007-08-28 06:15:15 +000012918 // Verify that all the values are okay, compute the size of the values, and
12919 // reverse the list.
12920 unsigned NumNegativeBits = 0;
12921 unsigned NumPositiveBits = 0;
Mike Stump1eb44332009-09-09 15:08:12 +000012922
Chris Lattnerac609682007-08-28 06:15:15 +000012923 // Keep track of whether all elements have type int.
12924 bool AllElementsInt = true;
Mike Stump1eb44332009-09-09 15:08:12 +000012925
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +000012926 for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
Reid Spencer5f016e22007-07-11 17:01:13 +000012927 EnumConstantDecl *ECD =
John McCalld226f652010-08-21 09:40:31 +000012928 cast_or_null<EnumConstantDecl>(Elements[i]);
Reid Spencer5f016e22007-07-11 17:01:13 +000012929 if (!ECD) continue; // Already issued a diagnostic.
Mike Stump1eb44332009-09-09 15:08:12 +000012930
Chris Lattner211a30e2007-08-28 05:27:00 +000012931 const llvm::APSInt &InitVal = ECD->getInitVal();
Mike Stump1eb44332009-09-09 15:08:12 +000012932
Chris Lattnerac609682007-08-28 06:15:15 +000012933 // Keep track of the size of positive and negative values.
Chris Lattnera73349d2008-02-26 00:33:57 +000012934 if (InitVal.isUnsigned() || InitVal.isNonNegative())
Chris Lattner21dd8212008-01-14 21:47:29 +000012935 NumPositiveBits = std::max(NumPositiveBits,
12936 (unsigned)InitVal.getActiveBits());
Chris Lattnerac609682007-08-28 06:15:15 +000012937 else
Chris Lattner21dd8212008-01-14 21:47:29 +000012938 NumNegativeBits = std::max(NumNegativeBits,
12939 (unsigned)InitVal.getMinSignedBits());
Reid Spencer5f016e22007-07-11 17:01:13 +000012940
Chris Lattnerac609682007-08-28 06:15:15 +000012941 // Keep track of whether every enum element has type int (very commmon).
12942 if (AllElementsInt)
Mike Stump1eb44332009-09-09 15:08:12 +000012943 AllElementsInt = ECD->getType() == Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +000012944 }
Mike Stump1eb44332009-09-09 15:08:12 +000012945
Chris Lattnerac609682007-08-28 06:15:15 +000012946 // Figure out the type that should be used for this enum.
Chris Lattnerac609682007-08-28 06:15:15 +000012947 QualType BestType;
Chris Lattnerb7f6e082007-08-29 17:31:48 +000012948 unsigned BestWidth;
Edward O'Callaghanfee13812009-08-08 14:36:57 +000012949
John McCall842aef82009-12-09 09:09:27 +000012950 // C++0x N3000 [conv.prom]p3:
12951 // An rvalue of an unscoped enumeration type whose underlying
12952 // type is not fixed can be converted to an rvalue of the first
12953 // of the following types that can represent all the values of
12954 // the enumeration: int, unsigned int, long int, unsigned long
12955 // int, long long int, or unsigned long long int.
12956 // C99 6.4.4.3p2:
12957 // An identifier declared as an enumeration constant has type int.
12958 // The C99 rule is modified by a gcc extension
12959 QualType BestPromotionType;
12960
Stephen Hines651f13c2014-04-23 16:59:28 -070012961 bool Packed = Enum->hasAttr<PackedAttr>();
Argyrios Kyrtzidis9a2b9d72010-10-08 00:25:19 +000012962 // -fshort-enums is the equivalent to specifying the packed attribute on all
12963 // enum definitions.
12964 if (LangOpts.ShortEnums)
12965 Packed = true;
Edward O'Callaghanfee13812009-08-08 14:36:57 +000012966
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012967 if (Enum->isFixed()) {
Eli Friedman3bfb5712011-10-26 07:38:19 +000012968 BestType = Enum->getIntegerType();
12969 if (BestType->isPromotableIntegerType())
12970 BestPromotionType = Context.getPromotedIntegerType(BestType);
12971 else
12972 BestPromotionType = BestType;
Duncan Sands240a0202010-10-12 14:07:59 +000012973 // We don't need to set BestWidth, because BestType is going to be the type
12974 // of the enumerators, but we do anyway because otherwise some compilers
12975 // warn that it might be used uninitialized.
12976 BestWidth = CharWidth;
Douglas Gregor1274ccd2010-10-08 23:50:27 +000012977 }
12978 else if (NumNegativeBits) {
Mike Stump1eb44332009-09-09 15:08:12 +000012979 // If there is a negative value, figure out the smallest integer type (of
Chris Lattnerac609682007-08-28 06:15:15 +000012980 // int/long/longlong) that fits.
Edward O'Callaghanfee13812009-08-08 14:36:57 +000012981 // If it's packed, check also if it fits a char or a short.
12982 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
John McCall842aef82009-12-09 09:09:27 +000012983 BestType = Context.SignedCharTy;
12984 BestWidth = CharWidth;
Mike Stump1eb44332009-09-09 15:08:12 +000012985 } else if (Packed && NumNegativeBits <= ShortWidth &&
Edward O'Callaghanfee13812009-08-08 14:36:57 +000012986 NumPositiveBits < ShortWidth) {
John McCall842aef82009-12-09 09:09:27 +000012987 BestType = Context.ShortTy;
12988 BestWidth = ShortWidth;
12989 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +000012990 BestType = Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +000012991 BestWidth = IntWidth;
12992 } else {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000012993 BestWidth = Context.getTargetInfo().getLongWidth();
Mike Stump1eb44332009-09-09 15:08:12 +000012994
John McCall842aef82009-12-09 09:09:27 +000012995 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +000012996 BestType = Context.LongTy;
John McCall842aef82009-12-09 09:09:27 +000012997 } else {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000012998 BestWidth = Context.getTargetInfo().getLongLongWidth();
Mike Stump1eb44332009-09-09 15:08:12 +000012999
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013000 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
Stephen Hines651f13c2014-04-23 16:59:28 -070013001 Diag(Enum->getLocation(), diag::ext_enum_too_large);
Chris Lattnerac609682007-08-28 06:15:15 +000013002 BestType = Context.LongLongTy;
13003 }
13004 }
John McCall842aef82009-12-09 09:09:27 +000013005 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
Chris Lattnerac609682007-08-28 06:15:15 +000013006 } else {
Douglas Gregoraa74a1e2010-02-02 20:10:50 +000013007 // If there is no negative value, figure out the smallest type that fits
13008 // all of the enumerator values.
Edward O'Callaghanfee13812009-08-08 14:36:57 +000013009 // If it's packed, check also if it fits a char or a short.
13010 if (Packed && NumPositiveBits <= CharWidth) {
John McCall842aef82009-12-09 09:09:27 +000013011 BestType = Context.UnsignedCharTy;
13012 BestPromotionType = Context.IntTy;
13013 BestWidth = CharWidth;
Edward O'Callaghanfee13812009-08-08 14:36:57 +000013014 } else if (Packed && NumPositiveBits <= ShortWidth) {
John McCall842aef82009-12-09 09:09:27 +000013015 BestType = Context.UnsignedShortTy;
13016 BestPromotionType = Context.IntTy;
13017 BestWidth = ShortWidth;
13018 } else if (NumPositiveBits <= IntWidth) {
Chris Lattnerac609682007-08-28 06:15:15 +000013019 BestType = Context.UnsignedIntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013020 BestWidth = IntWidth;
Douglas Gregoraa74a1e2010-02-02 20:10:50 +000013021 BestPromotionType
David Blaikie4e4d0842012-03-11 07:00:24 +000013022 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
Douglas Gregoraa74a1e2010-02-02 20:10:50 +000013023 ? Context.UnsignedIntTy : Context.IntTy;
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013024 } else if (NumPositiveBits <=
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000013025 (BestWidth = Context.getTargetInfo().getLongWidth())) {
Chris Lattnerac609682007-08-28 06:15:15 +000013026 BestType = Context.UnsignedLongTy;
Douglas Gregoraa74a1e2010-02-02 20:10:50 +000013027 BestPromotionType
David Blaikie4e4d0842012-03-11 07:00:24 +000013028 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
Douglas Gregoraa74a1e2010-02-02 20:10:50 +000013029 ? Context.UnsignedLongTy : Context.LongTy;
Chris Lattner98be4942008-03-05 18:54:05 +000013030 } else {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +000013031 BestWidth = Context.getTargetInfo().getLongLongWidth();
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013032 assert(NumPositiveBits <= BestWidth &&
Chris Lattnerac609682007-08-28 06:15:15 +000013033 "How could an initializer get larger than ULL?");
13034 BestType = Context.UnsignedLongLongTy;
Douglas Gregoraa74a1e2010-02-02 20:10:50 +000013035 BestPromotionType
David Blaikie4e4d0842012-03-11 07:00:24 +000013036 = (NumPositiveBits == BestWidth || !getLangOpts().CPlusPlus)
Douglas Gregoraa74a1e2010-02-02 20:10:50 +000013037 ? Context.UnsignedLongLongTy : Context.LongLongTy;
Chris Lattnerac609682007-08-28 06:15:15 +000013038 }
13039 }
Mike Stump1eb44332009-09-09 15:08:12 +000013040
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013041 // Loop over all of the enumerator constants, changing their types to match
13042 // the type of the enum if needed.
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +000013043 for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
John McCalld226f652010-08-21 09:40:31 +000013044 EnumConstantDecl *ECD = cast_or_null<EnumConstantDecl>(Elements[i]);
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013045 if (!ECD) continue; // Already issued a diagnostic.
13046
13047 // Standard C says the enumerators have int type, but we allow, as an
13048 // extension, the enumerators to be larger than int size. If each
13049 // enumerator value fits in an int, type it as an int, otherwise type it the
13050 // same as the enumerator decl itself. This means that in "enum { X = 1U }"
13051 // that X has type 'int', not 'unsigned'.
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013052
13053 // Determine whether the value fits into an int.
13054 llvm::APSInt InitVal = ECD->getInitVal();
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013055
13056 // If it fits into an integer type, force it. Otherwise force it to match
13057 // the enum decl type.
13058 QualType NewTy;
13059 unsigned NewWidth;
13060 bool NewSign;
David Blaikie4e4d0842012-03-11 07:00:24 +000013061 if (!getLangOpts().CPlusPlus &&
Fariborz Jahanian3b252162011-11-04 18:51:24 +000013062 !Enum->isFixed() &&
Douglas Gregor677e4fe2010-02-01 23:36:03 +000013063 isRepresentableIntegerValue(Context, InitVal, Context.IntTy)) {
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013064 NewTy = Context.IntTy;
13065 NewWidth = IntWidth;
13066 NewSign = true;
13067 } else if (ECD->getType() == BestType) {
13068 // Already the right type!
David Blaikie4e4d0842012-03-11 07:00:24 +000013069 if (getLangOpts().CPlusPlus)
Douglas Gregorc9467cf2008-12-12 02:00:36 +000013070 // C++ [dcl.enum]p4: Following the closing brace of an
13071 // enum-specifier, each enumerator has the type of its
Mike Stump1eb44332009-09-09 15:08:12 +000013072 // enumeration.
Douglas Gregorc9467cf2008-12-12 02:00:36 +000013073 ECD->setType(EnumType);
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013074 continue;
13075 } else {
13076 NewTy = BestType;
13077 NewWidth = BestWidth;
Douglas Gregor575a1c92011-05-20 16:38:50 +000013078 NewSign = BestType->isSignedIntegerOrEnumerationType();
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013079 }
13080
13081 // Adjust the APSInt value.
Jay Foad9f71a8f2010-12-07 08:25:34 +000013082 InitVal = InitVal.extOrTrunc(NewWidth);
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013083 InitVal.setIsSigned(NewSign);
13084 ECD->setInitVal(InitVal);
Mike Stump1eb44332009-09-09 15:08:12 +000013085
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013086 // Adjust the Expr initializer and type.
Abramo Bagnara320e1532010-12-17 15:49:53 +000013087 if (ECD->getInitExpr() &&
Nick Lewycky25af0912011-07-02 02:05:12 +000013088 !Context.hasSameType(NewTy, ECD->getInitExpr()->getType()))
John McCallf871d0c2010-08-07 06:22:56 +000013089 ECD->setInitExpr(ImplicitCastExpr::Create(Context, NewTy,
John McCall2de56d12010-08-25 11:45:40 +000013090 CK_IntegralCast,
John McCallf871d0c2010-08-07 06:22:56 +000013091 ECD->getInitExpr(),
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013092 /*base paths*/ nullptr,
John McCall5baba9d2010-08-25 10:28:54 +000013093 VK_RValue));
David Blaikie4e4d0842012-03-11 07:00:24 +000013094 if (getLangOpts().CPlusPlus)
Douglas Gregorc9467cf2008-12-12 02:00:36 +000013095 // C++ [dcl.enum]p4: Following the closing brace of an
13096 // enum-specifier, each enumerator has the type of its
Mike Stump1eb44332009-09-09 15:08:12 +000013097 // enumeration.
Douglas Gregorc9467cf2008-12-12 02:00:36 +000013098 ECD->setType(EnumType);
13099 else
13100 ECD->setType(NewTy);
Chris Lattnerb7f6e082007-08-29 17:31:48 +000013101 }
Mike Stump1eb44332009-09-09 15:08:12 +000013102
John McCall1b5a6182010-05-06 08:49:23 +000013103 Enum->completeDefinition(BestType, BestPromotionType,
13104 NumPositiveBits, NumNegativeBits);
James Molloy16f1f712012-02-29 10:24:19 +000013105
Dmitri Gribenko9ff2b422013-04-27 20:23:52 +000013106 CheckForDuplicateEnumValues(*this, Elements, Enum, EnumType);
Richard Smithbe507b62013-02-01 08:12:08 +000013107
13108 // Now that the enum type is defined, ensure it's not been underaligned.
13109 if (Enum->hasAttrs())
13110 CheckAlignasUnderalignment(Enum);
Reid Spencer5f016e22007-07-11 17:01:13 +000013111}
13112
Abramo Bagnara21e006e2011-03-03 14:20:18 +000013113Decl *Sema::ActOnFileScopeAsmDecl(Expr *expr,
13114 SourceLocation StartLoc,
13115 SourceLocation EndLoc) {
John McCall9ae2f072010-08-23 23:25:46 +000013116 StringLiteral *AsmString = cast<StringLiteral>(expr);
Sebastian Redl798d1192008-12-13 16:23:55 +000013117
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000013118 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext,
Abramo Bagnara21e006e2011-03-03 14:20:18 +000013119 AsmString, StartLoc,
13120 EndLoc);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000013121 CurContext->addDecl(New);
John McCalld226f652010-08-21 09:40:31 +000013122 return New;
Anders Carlssondfab6cb2008-02-08 00:33:21 +000013123}
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013124
Stephen Hines651f13c2014-04-23 16:59:28 -070013125static void checkModuleImportContext(Sema &S, Module *M,
13126 SourceLocation ImportLoc,
13127 DeclContext *DC) {
13128 if (auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) {
13129 switch (LSD->getLanguage()) {
13130 case LinkageSpecDecl::lang_c:
13131 if (!M->IsExternC) {
13132 S.Diag(ImportLoc, diag::err_module_import_in_extern_c)
13133 << M->getFullModuleName();
13134 S.Diag(LSD->getLocStart(), diag::note_module_import_in_extern_c);
13135 return;
13136 }
13137 break;
13138 case LinkageSpecDecl::lang_cxx:
13139 break;
13140 }
13141 DC = LSD->getParent();
13142 }
13143
13144 while (isa<LinkageSpecDecl>(DC))
13145 DC = DC->getParent();
13146 if (!isa<TranslationUnitDecl>(DC)) {
13147 S.Diag(ImportLoc, diag::err_module_import_not_at_top_level)
13148 << M->getFullModuleName() << DC;
13149 S.Diag(cast<Decl>(DC)->getLocStart(),
13150 diag::note_module_import_not_at_top_level)
13151 << DC;
13152 }
13153}
13154
Douglas Gregor5948ae12012-01-03 18:04:46 +000013155DeclResult Sema::ActOnModuleImport(SourceLocation AtLoc,
13156 SourceLocation ImportLoc,
13157 ModuleIdPath Path) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013158 Module *Mod =
13159 getModuleLoader().loadModule(ImportLoc, Path, Module::AllVisible,
13160 /*IsIncludeDirective=*/false);
Douglas Gregor1a4761e2011-11-30 23:21:26 +000013161 if (!Mod)
Douglas Gregor6aa52ec2011-08-26 23:56:07 +000013162 return true;
Stephen Hines651f13c2014-04-23 16:59:28 -070013163
13164 checkModuleImportContext(*this, Mod, ImportLoc, CurContext);
13165
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013166 // FIXME: we should support importing a submodule within a different submodule
13167 // of the same top-level module. Until we do, make it an error rather than
13168 // silently ignoring the import.
13169 if (Mod->getTopLevelModuleName() == getLangOpts().CurrentModule)
13170 Diag(ImportLoc, diag::err_module_self_import)
13171 << Mod->getFullModuleName() << getLangOpts().CurrentModule;
13172
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000013173 SmallVector<SourceLocation, 2> IdentifierLocs;
Douglas Gregor15de72c2011-12-02 23:23:56 +000013174 Module *ModCheck = Mod;
13175 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
13176 // If we've run out of module parents, just drop the remaining identifiers.
13177 // We need the length to be consistent.
13178 if (!ModCheck)
13179 break;
13180 ModCheck = ModCheck->Parent;
13181
13182 IdentifierLocs.push_back(Path[I].second);
13183 }
13184
13185 ImportDecl *Import = ImportDecl::Create(Context,
13186 Context.getTranslationUnitDecl(),
Douglas Gregor5948ae12012-01-03 18:04:46 +000013187 AtLoc.isValid()? AtLoc : ImportLoc,
13188 Mod, IdentifierLocs);
Douglas Gregor15de72c2011-12-02 23:23:56 +000013189 Context.getTranslationUnitDecl()->addDecl(Import);
13190 return Import;
Douglas Gregor6aa52ec2011-08-26 23:56:07 +000013191}
13192
Richard Smith26297f52013-11-15 04:24:58 +000013193void Sema::ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod) {
Stephen Hines651f13c2014-04-23 16:59:28 -070013194 checkModuleImportContext(*this, Mod, DirectiveLoc, CurContext);
13195
Richard Smith26297f52013-11-15 04:24:58 +000013196 // FIXME: Should we synthesize an ImportDecl here?
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013197 getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, DirectiveLoc,
13198 /*Complain=*/true);
Richard Smith26297f52013-11-15 04:24:58 +000013199}
13200
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013201void Sema::createImplicitModuleImportForErrorRecovery(SourceLocation Loc,
13202 Module *Mod) {
13203 // Bail if we're not allowed to implicitly import a module here.
13204 if (isSFINAEContext() || !getLangOpts().ModulesErrorRecovery)
13205 return;
13206
Douglas Gregorca2ab452013-01-12 01:29:50 +000013207 // Create the implicit import declaration.
13208 TranslationUnitDecl *TU = getASTContext().getTranslationUnitDecl();
13209 ImportDecl *ImportD = ImportDecl::CreateImplicit(getASTContext(), TU,
13210 Loc, Mod, Loc);
13211 TU->addDecl(ImportD);
13212 Consumer.HandleImplicitImportDecl(ImportD);
13213
13214 // Make the module visible.
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013215 getModuleLoader().makeModuleVisible(Mod, Module::AllVisible, Loc,
13216 /*Complain=*/false);
Douglas Gregorca2ab452013-01-12 01:29:50 +000013217}
13218
David Chisnall5f3c1632012-02-18 16:12:34 +000013219void Sema::ActOnPragmaRedefineExtname(IdentifierInfo* Name,
13220 IdentifierInfo* AliasName,
13221 SourceLocation PragmaLoc,
13222 SourceLocation NameLoc,
13223 SourceLocation AliasNameLoc) {
13224 Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc,
13225 LookupOrdinaryName);
Stephen Hines651f13c2014-04-23 16:59:28 -070013226 AsmLabelAttr *Attr = ::new (Context) AsmLabelAttr(AliasNameLoc, Context,
13227 AliasName->getName(), 0);
David Chisnall5f3c1632012-02-18 16:12:34 +000013228
13229 if (PrevDecl)
13230 PrevDecl->addAttr(Attr);
13231 else
13232 (void)ExtnameUndeclaredIdentifiers.insert(
13233 std::pair<IdentifierInfo*,AsmLabelAttr*>(Name, Attr));
13234}
13235
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013236void Sema::ActOnPragmaWeakID(IdentifierInfo* Name,
13237 SourceLocation PragmaLoc,
13238 SourceLocation NameLoc) {
Douglas Gregorc83c6872010-04-15 22:33:43 +000013239 Decl *PrevDecl = LookupSingleName(TUScope, Name, NameLoc, LookupOrdinaryName);
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013240
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013241 if (PrevDecl) {
Stephen Hines651f13c2014-04-23 16:59:28 -070013242 PrevDecl->addAttr(WeakAttr::CreateImplicit(Context, PragmaLoc));
Ryan Flynne25ff832009-07-30 03:15:39 +000013243 } else {
13244 (void)WeakUndeclaredIdentifiers.insert(
13245 std::pair<IdentifierInfo*,WeakInfo>
Stephen Hines6bcf27b2014-05-29 04:14:42 -070013246 (Name, WeakInfo((IdentifierInfo*)nullptr, NameLoc)));
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013247 }
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013248}
13249
13250void Sema::ActOnPragmaWeakAlias(IdentifierInfo* Name,
13251 IdentifierInfo* AliasName,
13252 SourceLocation PragmaLoc,
13253 SourceLocation NameLoc,
13254 SourceLocation AliasNameLoc) {
Douglas Gregorc83c6872010-04-15 22:33:43 +000013255 Decl *PrevDecl = LookupSingleName(TUScope, AliasName, AliasNameLoc,
13256 LookupOrdinaryName);
Ryan Flynne25ff832009-07-30 03:15:39 +000013257 WeakInfo W = WeakInfo(Name, NameLoc);
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013258
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013259 if (PrevDecl) {
Ryan Flynne25ff832009-07-30 03:15:39 +000013260 if (!PrevDecl->hasAttr<AliasAttr>())
13261 if (NamedDecl *ND = dyn_cast<NamedDecl>(PrevDecl))
Ryan Flynn7b1fdbd2009-07-31 02:52:19 +000013262 DeclApplyPragmaWeak(TUScope, ND, W);
Ryan Flynne25ff832009-07-30 03:15:39 +000013263 } else {
13264 (void)WeakUndeclaredIdentifiers.insert(
13265 std::pair<IdentifierInfo*,WeakInfo>(AliasName, W));
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013266 }
Eli Friedmanc49f19b2009-06-05 02:44:36 +000013267}
Fariborz Jahaniana28948f2011-08-22 15:54:49 +000013268
13269Decl *Sema::getObjCDeclContext() const {
13270 return (dyn_cast_or_null<ObjCContainerDecl>(CurContext));
13271}
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +000013272
13273AvailabilityResult Sema::getCurContextAvailability() const {
Fariborz Jahanian3359fa32012-09-06 18:38:58 +000013274 const Decl *D = cast<Decl>(getCurObjCLexicalContext());
Stephen Hines651f13c2014-04-23 16:59:28 -070013275 // If we are within an Objective-C method, we should consult
13276 // both the availability of the method as well as the
13277 // enclosing class. If the class is (say) deprecated,
13278 // the entire method is considered deprecated from the
13279 // purpose of checking if the current context is deprecated.
13280 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
13281 AvailabilityResult R = MD->getAvailability();
13282 if (R != AR_Available)
13283 return R;
13284 D = MD->getClassInterface();
13285 }
13286 // If we are within an Objective-c @implementation, it
13287 // gets the same availability context as the @interface.
13288 else if (const ObjCImplementationDecl *ID =
13289 dyn_cast<ObjCImplementationDecl>(D)) {
13290 D = ID->getClassInterface();
13291 }
Argyrios Kyrtzidisc076e372011-10-06 23:23:27 +000013292 return D->getAvailability();
13293}