blob: 6323589bd839a1ce876b92a529c4e5f102bed436 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===//
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 the actions class which performs semantic analysis and
11// builds an AST out of a parse stream.
12//
13//===----------------------------------------------------------------------===//
14
John McCall9c3087b2010-08-26 02:13:20 +000015#include "clang/Sema/SemaInternal.h"
16#include "clang/Sema/DelayedDiagnostic.h"
Anton Korobeynikov82d0a412010-01-10 12:58:08 +000017#include "TargetAttributesSema.h"
Ryan Flynne25ff832009-07-30 03:15:39 +000018#include "llvm/ADT/DenseMap.h"
Sebastian Redle9d12b62010-01-31 22:27:38 +000019#include "llvm/ADT/SmallSet.h"
John McCall680523a2009-11-07 03:30:10 +000020#include "llvm/ADT/APFloat.h"
John McCall92576642012-05-07 06:16:41 +000021#include "llvm/Support/CrashRecoveryContext.h"
John McCall5f1e0942010-08-24 08:50:51 +000022#include "clang/Sema/CXXFieldCollector.h"
Douglas Gregor9b623632010-10-12 23:32:35 +000023#include "clang/Sema/TemplateDeduction.h"
John McCall76bd1f32010-06-01 09:23:16 +000024#include "clang/Sema/ExternalSemaSource.h"
Sebastian Redl8c845712010-09-28 20:23:00 +000025#include "clang/Sema/ObjCMethodList.h"
John McCallf312b1e2010-08-26 23:41:50 +000026#include "clang/Sema/PrettyDeclStackTrace.h"
John McCall5f1e0942010-08-24 08:50:51 +000027#include "clang/Sema/Scope.h"
John McCall781472f2010-08-25 08:40:02 +000028#include "clang/Sema/ScopeInfo.h"
Douglas Gregor46ea32a2010-08-12 22:51:45 +000029#include "clang/Sema/SemaConsumer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000030#include "clang/AST/ASTContext.h"
Douglas Gregor79a9a342010-02-09 22:26:47 +000031#include "clang/AST/ASTDiagnostic.h"
John McCall384aff82010-08-25 07:42:41 +000032#include "clang/AST/DeclCXX.h"
Daniel Jasperf8cc02e2012-06-06 08:32:04 +000033#include "clang/AST/DeclFriend.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000034#include "clang/AST/DeclObjC.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000035#include "clang/AST/Expr.h"
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +000036#include "clang/AST/ExprCXX.h"
Chris Lattnerad8dcf42011-02-17 07:39:24 +000037#include "clang/AST/StmtCXX.h"
Douglas Gregor90db2602011-12-02 01:47:07 +000038#include "clang/Lex/HeaderSearch.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000039#include "clang/Lex/Preprocessor.h"
Douglas Gregorf7572a62011-09-20 18:13:03 +000040#include "clang/Basic/FileManager.h"
Anders Carlsson91a0cc92009-08-26 22:33:56 +000041#include "clang/Basic/PartialDiagnostic.h"
Chris Lattner4d150c82009-04-30 06:18:40 +000042#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000043using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000044using namespace sema;
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000045
46FunctionScopeInfo::~FunctionScopeInfo() { }
47
Argyrios Kyrtzidis8fc32d22010-11-19 00:19:15 +000048void FunctionScopeInfo::Clear() {
John McCallb60a77e2010-08-01 00:26:45 +000049 HasBranchProtectedScope = false;
50 HasBranchIntoScope = false;
51 HasIndirectGoto = false;
52
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000053 SwitchStack.clear();
Douglas Gregor5077c382010-05-15 06:01:05 +000054 Returns.clear();
Argyrios Kyrtzidis8fc32d22010-11-19 00:19:15 +000055 ErrorTrap.reset();
Ted Kremenek351ba912011-02-23 01:52:04 +000056 PossiblyUnreachableDiags.clear();
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000057}
58
59BlockScopeInfo::~BlockScopeInfo() { }
Eli Friedmanec9ea722012-01-05 03:35:19 +000060LambdaScopeInfo::~LambdaScopeInfo() { }
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000061
Argyrios Kyrtzidisea8c59a2012-01-17 02:15:51 +000062PrintingPolicy Sema::getPrintingPolicy(const ASTContext &Context,
63 const Preprocessor &PP) {
Douglas Gregor8987b232011-09-27 23:30:47 +000064 PrintingPolicy Policy = Context.getPrintingPolicy();
David Blaikie4e4d0842012-03-11 07:00:24 +000065 Policy.Bool = Context.getLangOpts().Bool;
Douglas Gregor8987b232011-09-27 23:30:47 +000066 if (!Policy.Bool) {
67 if (MacroInfo *BoolMacro = PP.getMacroInfo(&Context.Idents.get("bool"))) {
68 Policy.Bool = BoolMacro->isObjectLike() &&
69 BoolMacro->getNumTokens() == 1 &&
70 BoolMacro->getReplacementToken(0).is(tok::kw__Bool);
71 }
72 }
73
74 return Policy;
75}
76
Douglas Gregorc1a3e5e2010-08-25 18:07:12 +000077void Sema::ActOnTranslationUnitScope(Scope *S) {
Steve Naroffb216c882007-10-09 22:01:59 +000078 TUScope = S;
Douglas Gregor44b43212008-12-11 16:49:14 +000079 PushDeclContext(S, Context.getTranslationUnitDecl());
Mike Stump1eb44332009-09-09 15:08:12 +000080
John McCallc7e04da2010-05-28 18:45:08 +000081 VAListTagName = PP.getIdentifierInfo("__va_list_tag");
Steve Naroff3b950172007-10-10 21:53:07 +000082}
83
Douglas Gregorf807fe02009-04-14 16:27:31 +000084Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer,
Douglas Gregor467dc882011-08-25 22:30:56 +000085 TranslationUnitKind TUKind,
Daniel Dunbar3a2838d2009-11-13 08:58:20 +000086 CodeCompleteConsumer *CodeCompleter)
David Blaikie4e4d0842012-03-11 07:00:24 +000087 : TheTargetAttributesSema(0), FPFeatures(pp.getLangOpts()),
88 LangOpts(pp.getLangOpts()), PP(pp), Context(ctxt), Consumer(consumer),
Mike Stump1eb44332009-09-09 15:08:12 +000089 Diags(PP.getDiagnostics()), SourceMgr(PP.getSourceManager()),
Chandler Carruth5d989942011-07-06 16:21:37 +000090 CollectStats(false), ExternalSource(0), CodeCompleter(CodeCompleter),
Argyrios Kyrtzidis3a387442011-10-06 23:23:20 +000091 CurContext(0), OriginalLexicalContext(0),
92 PackContext(0), MSStructPragmaOn(false), VisContext(0),
John McCall80ee6e82011-11-10 05:35:25 +000093 ExprNeedsCleanups(false), LateTemplateParser(0), OpaqueParser(0),
Sebastian Redl395e04d2012-01-17 22:49:33 +000094 IdResolver(pp), StdInitializerList(0), CXXTypeInfoDecl(0), MSVCGuidDecl(0),
Benjamin Kramer471131a2012-04-22 20:43:35 +000095 NSNumberDecl(0),
96 NSStringDecl(0), StringWithUTF8StringMethod(0),
97 NSArrayDecl(0), ArrayWithObjectsMethod(0),
Ted Kremenekebcb57a2012-03-06 20:05:56 +000098 NSDictionaryDecl(0), DictionaryWithObjectsMethod(0),
Bill Wendlingb7566d82010-09-08 21:30:16 +000099 GlobalNewDeleteDeclared(false),
Nico Weber9a1ecf02011-08-22 17:25:57 +0000100 ObjCShouldCallSuperDealloc(false),
Nico Weber80cb6e62011-08-28 22:35:17 +0000101 ObjCShouldCallSuperFinalize(false),
Douglas Gregor467dc882011-08-25 22:30:56 +0000102 TUKind(TUKind),
John McCall13489672012-05-07 06:16:58 +0000103 NumSFINAEErrors(0), InFunctionDeclarator(0),
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000104 AccessCheckingSFINAE(false), InNonInstantiationSFINAEContext(false),
Douglas Gregor8491ffe2010-12-20 22:05:00 +0000105 NonInstantiationEntries(0), ArgumentPackSubstitutionIndex(-1),
106 CurrentInstantiationScope(0), TyposCorrected(0),
Bill Wendlingb7566d82010-09-08 21:30:16 +0000107 AnalysisWarnings(*this)
Douglas Gregorf35f8282009-11-11 21:54:23 +0000108{
Steve Naroff3b950172007-10-10 21:53:07 +0000109 TUScope = 0;
Douglas Gregorcefc3af2012-04-16 07:05:22 +0000110
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000111 LoadedExternalKnownNamespaces = false;
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000112 for (unsigned I = 0; I != NSAPI::NumNSNumberLiteralMethods; ++I)
113 NSNumberLiteralMethods[I] = 0;
114
David Blaikie4e4d0842012-03-11 07:00:24 +0000115 if (getLangOpts().ObjC1)
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000116 NSAPIObj.reset(new NSAPI(Context));
117
David Blaikie4e4d0842012-03-11 07:00:24 +0000118 if (getLangOpts().CPlusPlus)
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000119 FieldCollector.reset(new CXXFieldCollector());
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Chris Lattner22caddc2008-11-23 09:13:29 +0000121 // Tell diagnostics how to render things from the AST library.
Douglas Gregor79a9a342010-02-09 22:26:47 +0000122 PP.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
123 &Context);
Douglas Gregor2afce722009-11-26 00:44:06 +0000124
125 ExprEvalContexts.push_back(
Richard Smith76f3f692012-02-22 02:04:18 +0000126 ExpressionEvaluationContextRecord(PotentiallyEvaluated, 0,
127 false, 0, false));
John McCall781472f2010-08-25 08:40:02 +0000128
Argyrios Kyrtzidis8fc32d22010-11-19 00:19:15 +0000129 FunctionScopes.push_back(new FunctionScopeInfo(Diags));
Douglas Gregor46ea32a2010-08-12 22:51:45 +0000130}
131
132void Sema::Initialize() {
133 // Tell the AST consumer about this Sema object.
134 Consumer.Initialize(Context);
135
136 // FIXME: Isn't this redundant with the initialization above?
137 if (SemaConsumer *SC = dyn_cast<SemaConsumer>(&Consumer))
138 SC->InitializeSema(*this);
139
140 // Tell the external Sema source about this Sema object.
141 if (ExternalSemaSource *ExternalSema
142 = dyn_cast_or_null<ExternalSemaSource>(Context.getExternalSource()))
143 ExternalSema->InitializeSema(*this);
Douglas Gregor4dfd02a2011-08-12 05:46:01 +0000144
Douglas Gregor772eeae2011-08-12 06:49:56 +0000145 // Initialize predefined 128-bit integer types, if needed.
146 if (PP.getTargetInfo().getPointerWidth(0) >= 64) {
147 // If either of the 128-bit integer types are unavailable to name lookup,
148 // define them now.
149 DeclarationName Int128 = &Context.Idents.get("__int128_t");
Douglas Gregoreee242f2011-10-27 09:33:13 +0000150 if (IdResolver.begin(Int128) == IdResolver.end())
Douglas Gregor772eeae2011-08-12 06:49:56 +0000151 PushOnScopeChains(Context.getInt128Decl(), TUScope);
152
153 DeclarationName UInt128 = &Context.Idents.get("__uint128_t");
Douglas Gregoreee242f2011-10-27 09:33:13 +0000154 if (IdResolver.begin(UInt128) == IdResolver.end())
Douglas Gregor772eeae2011-08-12 06:49:56 +0000155 PushOnScopeChains(Context.getUInt128Decl(), TUScope);
156 }
157
158
Douglas Gregor4dfd02a2011-08-12 05:46:01 +0000159 // Initialize predefined Objective-C types:
David Blaikie4e4d0842012-03-11 07:00:24 +0000160 if (PP.getLangOpts().ObjC1) {
Douglas Gregor7a27ea52011-08-12 06:17:30 +0000161 // If 'SEL' does not yet refer to any declarations, make it refer to the
162 // predefined 'SEL'.
163 DeclarationName SEL = &Context.Idents.get("SEL");
Douglas Gregoreee242f2011-10-27 09:33:13 +0000164 if (IdResolver.begin(SEL) == IdResolver.end())
Douglas Gregor7a27ea52011-08-12 06:17:30 +0000165 PushOnScopeChains(Context.getObjCSelDecl(), TUScope);
166
Douglas Gregor4dfd02a2011-08-12 05:46:01 +0000167 // If 'id' does not yet refer to any declarations, make it refer to the
168 // predefined 'id'.
169 DeclarationName Id = &Context.Idents.get("id");
Douglas Gregoreee242f2011-10-27 09:33:13 +0000170 if (IdResolver.begin(Id) == IdResolver.end())
Douglas Gregor4dfd02a2011-08-12 05:46:01 +0000171 PushOnScopeChains(Context.getObjCIdDecl(), TUScope);
Douglas Gregor79d67262011-08-12 05:59:41 +0000172
173 // Create the built-in typedef for 'Class'.
174 DeclarationName Class = &Context.Idents.get("Class");
Douglas Gregoreee242f2011-10-27 09:33:13 +0000175 if (IdResolver.begin(Class) == IdResolver.end())
Douglas Gregor79d67262011-08-12 05:59:41 +0000176 PushOnScopeChains(Context.getObjCClassDecl(), TUScope);
Douglas Gregora6ea10e2012-01-17 18:09:05 +0000177
178 // Create the built-in forward declaratino for 'Protocol'.
179 DeclarationName Protocol = &Context.Idents.get("Protocol");
180 if (IdResolver.begin(Protocol) == IdResolver.end())
181 PushOnScopeChains(Context.getObjCProtocolDecl(), TUScope);
Douglas Gregor4dfd02a2011-08-12 05:46:01 +0000182 }
Meador Ingec5613b22012-06-16 03:34:49 +0000183
184 DeclarationName BuiltinVaList = &Context.Idents.get("__builtin_va_list");
185 if (IdResolver.begin(BuiltinVaList) == IdResolver.end())
186 PushOnScopeChains(Context.getBuiltinVaListDecl(), TUScope);
Reid Spencer5f016e22007-07-11 17:01:13 +0000187}
188
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000189Sema::~Sema() {
190 if (PackContext) FreePackedContext();
Eli Friedmanaa8b0d12010-08-05 06:57:20 +0000191 if (VisContext) FreeVisContext();
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000192 delete TheTargetAttributesSema;
Fariborz Jahanian62c92582011-04-25 18:49:15 +0000193 MSStructPragmaOn = false;
John McCall781472f2010-08-25 08:40:02 +0000194 // Kill all the active scopes.
195 for (unsigned I = 1, E = FunctionScopes.size(); I != E; ++I)
196 delete FunctionScopes[I];
197 if (FunctionScopes.size() == 1)
198 delete FunctionScopes[0];
Douglas Gregor46ea32a2010-08-12 22:51:45 +0000199
200 // Tell the SemaConsumer to forget about us; we're going out of scope.
201 if (SemaConsumer *SC = dyn_cast<SemaConsumer>(&Consumer))
202 SC->ForgetSema();
203
204 // Detach from the external Sema source.
205 if (ExternalSemaSource *ExternalSema
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000206 = dyn_cast_or_null<ExternalSemaSource>(Context.getExternalSource()))
Douglas Gregor46ea32a2010-08-12 22:51:45 +0000207 ExternalSema->ForgetSema();
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000208}
209
John McCallf85e1932011-06-15 23:02:42 +0000210/// makeUnavailableInSystemHeader - There is an error in the current
211/// context. If we're still in a system header, and we can plausibly
212/// make the relevant declaration unavailable instead of erroring, do
213/// so and return true.
214bool Sema::makeUnavailableInSystemHeader(SourceLocation loc,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000215 StringRef msg) {
John McCallf85e1932011-06-15 23:02:42 +0000216 // If we're not in a function, it's an error.
217 FunctionDecl *fn = dyn_cast<FunctionDecl>(CurContext);
218 if (!fn) return false;
219
220 // If we're in template instantiation, it's an error.
221 if (!ActiveTemplateInstantiations.empty())
222 return false;
223
224 // If that function's not in a system header, it's an error.
225 if (!Context.getSourceManager().isInSystemHeader(loc))
226 return false;
227
228 // If the function is already unavailable, it's not an error.
229 if (fn->hasAttr<UnavailableAttr>()) return true;
230
231 fn->addAttr(new (Context) UnavailableAttr(loc, Context, msg));
232 return true;
233}
234
Sebastian Redl58a2cd82011-04-24 16:28:06 +0000235ASTMutationListener *Sema::getASTMutationListener() const {
236 return getASTConsumer().GetASTMutationListener();
237}
238
Chandler Carruth5d989942011-07-06 16:21:37 +0000239/// \brief Print out statistics about the semantic analysis.
240void Sema::PrintStats() const {
241 llvm::errs() << "\n*** Semantic Analysis Stats:\n";
242 llvm::errs() << NumSFINAEErrors << " SFINAE diagnostics trapped.\n";
243
244 BumpAlloc.PrintStats();
245 AnalysisWarnings.PrintStats();
246}
247
Richard Smithc8d7f582011-11-29 22:48:16 +0000248/// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
249/// If there is already an implicit cast, merge into the existing one.
250/// The result is of the given category.
251ExprResult Sema::ImpCastExprToType(Expr *E, QualType Ty,
252 CastKind Kind, ExprValueKind VK,
253 const CXXCastPath *BasePath,
254 CheckedConversionKind CCK) {
Richard Smith9c129f82011-10-28 03:31:48 +0000255#ifndef NDEBUG
256 if (VK == VK_RValue && !E->isRValue()) {
257 switch (Kind) {
258 default:
259 assert(0 && "can't implicitly cast lvalue to rvalue with this cast kind");
260 case CK_LValueToRValue:
261 case CK_ArrayToPointerDecay:
262 case CK_FunctionToPointerDecay:
263 case CK_ToVoid:
264 break;
265 }
266 }
Richard Smithacdfa4d2011-11-10 23:32:36 +0000267 assert((VK == VK_RValue || !E->isRValue()) && "can't cast rvalue to lvalue");
Richard Smith9c129f82011-10-28 03:31:48 +0000268#endif
269
John Wiegley429bb272011-04-08 18:41:53 +0000270 QualType ExprTy = Context.getCanonicalType(E->getType());
Mon P Wang3a2c7442008-09-04 08:38:01 +0000271 QualType TypeTy = Context.getCanonicalType(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000272
Mon P Wang3a2c7442008-09-04 08:38:01 +0000273 if (ExprTy == TypeTy)
John Wiegley429bb272011-04-08 18:41:53 +0000274 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +0000275
David Blaikie4e4d0842012-03-11 07:00:24 +0000276 if (getLangOpts().ObjCAutoRefCount)
John McCallf85e1932011-06-15 23:02:42 +0000277 CheckObjCARCConversion(SourceRange(), Ty, E, CCK);
278
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000279 // If this is a derived-to-base cast to a through a virtual base, we
280 // need a vtable.
John McCall2de56d12010-08-25 11:45:40 +0000281 if (Kind == CK_DerivedToBase &&
John McCallf871d0c2010-08-07 06:22:56 +0000282 BasePathInvolvesVirtualBase(*BasePath)) {
John Wiegley429bb272011-04-08 18:41:53 +0000283 QualType T = E->getType();
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000284 if (const PointerType *Pointer = T->getAs<PointerType>())
285 T = Pointer->getPointeeType();
286 if (const RecordType *RecordTy = T->getAs<RecordType>())
John Wiegley429bb272011-04-08 18:41:53 +0000287 MarkVTableUsed(E->getLocStart(),
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000288 cast<CXXRecordDecl>(RecordTy->getDecl()));
289 }
Anders Carlsson4c5fad32009-09-15 05:28:24 +0000290
Richard Smithc8d7f582011-11-29 22:48:16 +0000291 if (ImplicitCastExpr *ImpCast = dyn_cast<ImplicitCastExpr>(E)) {
292 if (ImpCast->getCastKind() == Kind && (!BasePath || BasePath->empty())) {
293 ImpCast->setType(Ty);
294 ImpCast->setValueKind(VK);
295 return Owned(E);
296 }
297 }
298
299 return Owned(ImplicitCastExpr::Create(Context, Ty, Kind, E, BasePath, VK));
Sebastian Redl906082e2010-07-20 04:20:21 +0000300}
301
Abramo Bagnara737d5442011-04-07 09:26:19 +0000302/// ScalarTypeToBooleanCastKind - Returns the cast kind corresponding
303/// to the conversion from scalar type ScalarTy to the Boolean type.
304CastKind Sema::ScalarTypeToBooleanCastKind(QualType ScalarTy) {
305 switch (ScalarTy->getScalarTypeKind()) {
306 case Type::STK_Bool: return CK_NoOp;
John McCall1d9b3b22011-09-09 05:25:32 +0000307 case Type::STK_CPointer: return CK_PointerToBoolean;
308 case Type::STK_BlockPointer: return CK_PointerToBoolean;
309 case Type::STK_ObjCObjectPointer: return CK_PointerToBoolean;
Abramo Bagnara737d5442011-04-07 09:26:19 +0000310 case Type::STK_MemberPointer: return CK_MemberPointerToBoolean;
311 case Type::STK_Integral: return CK_IntegralToBoolean;
312 case Type::STK_Floating: return CK_FloatingToBoolean;
313 case Type::STK_IntegralComplex: return CK_IntegralComplexToBoolean;
314 case Type::STK_FloatingComplex: return CK_FloatingComplexToBoolean;
315 }
316 return CK_Invalid;
317}
318
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000319/// \brief Used to prune the decls of Sema's UnusedFileScopedDecls vector.
320static bool ShouldRemoveFromUnused(Sema *SemaRef, const DeclaratorDecl *D) {
321 if (D->isUsed())
322 return true;
323
324 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
325 // UnusedFileScopedDecls stores the first declaration.
326 // The declaration may have become definition so check again.
327 const FunctionDecl *DeclToCheck;
328 if (FD->hasBody(DeclToCheck))
329 return !SemaRef->ShouldWarnIfUnusedFileScopedDecl(DeclToCheck);
330
331 // Later redecls may add new information resulting in not having to warn,
332 // so check again.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000333 DeclToCheck = FD->getMostRecentDecl();
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000334 if (DeclToCheck != FD)
335 return !SemaRef->ShouldWarnIfUnusedFileScopedDecl(DeclToCheck);
336 }
337
338 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
339 // UnusedFileScopedDecls stores the first declaration.
340 // The declaration may have become definition so check again.
341 const VarDecl *DeclToCheck = VD->getDefinition();
342 if (DeclToCheck)
343 return !SemaRef->ShouldWarnIfUnusedFileScopedDecl(DeclToCheck);
344
345 // Later redecls may add new information resulting in not having to warn,
346 // so check again.
Douglas Gregoref96ee02012-01-14 16:38:05 +0000347 DeclToCheck = VD->getMostRecentDecl();
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000348 if (DeclToCheck != VD)
349 return !SemaRef->ShouldWarnIfUnusedFileScopedDecl(DeclToCheck);
350 }
351
352 return false;
353}
354
John McCall15e310a2011-02-19 02:53:41 +0000355namespace {
356 struct UndefinedInternal {
357 NamedDecl *decl;
358 FullSourceLoc useLoc;
359
360 UndefinedInternal(NamedDecl *decl, FullSourceLoc useLoc)
361 : decl(decl), useLoc(useLoc) {}
362 };
363
364 bool operator<(const UndefinedInternal &l, const UndefinedInternal &r) {
365 return l.useLoc.isBeforeInTranslationUnitThan(r.useLoc);
366 }
367}
368
369/// checkUndefinedInternals - Check for undefined objects with internal linkage.
370static void checkUndefinedInternals(Sema &S) {
371 if (S.UndefinedInternals.empty()) return;
372
373 // Collect all the still-undefined entities with internal linkage.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000374 SmallVector<UndefinedInternal, 16> undefined;
John McCall15e310a2011-02-19 02:53:41 +0000375 for (llvm::DenseMap<NamedDecl*,SourceLocation>::iterator
376 i = S.UndefinedInternals.begin(), e = S.UndefinedInternals.end();
377 i != e; ++i) {
378 NamedDecl *decl = i->first;
379
380 // Ignore attributes that have become invalid.
381 if (decl->isInvalidDecl()) continue;
382
383 // __attribute__((weakref)) is basically a definition.
384 if (decl->hasAttr<WeakRefAttr>()) continue;
385
386 if (FunctionDecl *fn = dyn_cast<FunctionDecl>(decl)) {
387 if (fn->isPure() || fn->hasBody())
388 continue;
389 } else {
390 if (cast<VarDecl>(decl)->hasDefinition() != VarDecl::DeclarationOnly)
391 continue;
392 }
393
394 // We build a FullSourceLoc so that we can sort with array_pod_sort.
395 FullSourceLoc loc(i->second, S.Context.getSourceManager());
396 undefined.push_back(UndefinedInternal(decl, loc));
397 }
398
399 if (undefined.empty()) return;
400
401 // Sort (in order of use site) so that we're not (as) dependent on
402 // the iteration order through an llvm::DenseMap.
403 llvm::array_pod_sort(undefined.begin(), undefined.end());
404
Chris Lattner5f9e2722011-07-23 10:55:15 +0000405 for (SmallVectorImpl<UndefinedInternal>::iterator
John McCall15e310a2011-02-19 02:53:41 +0000406 i = undefined.begin(), e = undefined.end(); i != e; ++i) {
407 NamedDecl *decl = i->decl;
408 S.Diag(decl->getLocation(), diag::warn_undefined_internal)
409 << isa<VarDecl>(decl) << decl;
410 S.Diag(i->useLoc, diag::note_used_here);
411 }
412}
413
Douglas Gregor31e37b22011-07-28 18:09:57 +0000414void Sema::LoadExternalWeakUndeclaredIdentifiers() {
415 if (!ExternalSource)
416 return;
417
418 SmallVector<std::pair<IdentifierInfo *, WeakInfo>, 4> WeakIDs;
419 ExternalSource->ReadWeakUndeclaredIdentifiers(WeakIDs);
420 for (unsigned I = 0, N = WeakIDs.size(); I != N; ++I) {
421 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator Pos
422 = WeakUndeclaredIdentifiers.find(WeakIDs[I].first);
423 if (Pos != WeakUndeclaredIdentifiers.end())
424 continue;
425
426 WeakUndeclaredIdentifiers.insert(WeakIDs[I]);
427 }
428}
429
Daniel Jasperf8cc02e2012-06-06 08:32:04 +0000430
431typedef llvm::DenseMap<const CXXRecordDecl*, bool> RecordCompleteMap;
432
433/// \brief Returns true, if all methods and nested classes of the given
434/// CXXRecordDecl are defined in this translation unit.
435///
436/// Should only be called from ActOnEndOfTranslationUnit so that all
437/// definitions are actually read.
438static bool MethodsAndNestedClassesComplete(const CXXRecordDecl *RD,
439 RecordCompleteMap &MNCComplete) {
440 RecordCompleteMap::iterator Cache = MNCComplete.find(RD);
441 if (Cache != MNCComplete.end())
442 return Cache->second;
443 if (!RD->isCompleteDefinition())
444 return false;
445 bool Complete = true;
446 for (DeclContext::decl_iterator I = RD->decls_begin(),
447 E = RD->decls_end();
448 I != E && Complete; ++I) {
449 if (const CXXMethodDecl *M = dyn_cast<CXXMethodDecl>(*I))
450 Complete = M->isDefined() || (M->isPure() && !isa<CXXDestructorDecl>(M));
Daniel Jasper0e9e9f82012-06-14 20:56:06 +0000451 else if (const FunctionTemplateDecl *F = dyn_cast<FunctionTemplateDecl>(*I))
452 Complete = F->getTemplatedDecl()->isDefined();
Daniel Jasperf8cc02e2012-06-06 08:32:04 +0000453 else if (const CXXRecordDecl *R = dyn_cast<CXXRecordDecl>(*I)) {
454 if (R->isInjectedClassName())
455 continue;
456 if (R->hasDefinition())
457 Complete = MethodsAndNestedClassesComplete(R->getDefinition(),
458 MNCComplete);
459 else
460 Complete = false;
461 }
462 }
463 MNCComplete[RD] = Complete;
464 return Complete;
465}
466
467/// \brief Returns true, if the given CXXRecordDecl is fully defined in this
468/// translation unit, i.e. all methods are defined or pure virtual and all
469/// friends, friend functions and nested classes are fully defined in this
470/// translation unit.
471///
472/// Should only be called from ActOnEndOfTranslationUnit so that all
473/// definitions are actually read.
474static bool IsRecordFullyDefined(const CXXRecordDecl *RD,
475 RecordCompleteMap &RecordsComplete,
476 RecordCompleteMap &MNCComplete) {
477 RecordCompleteMap::iterator Cache = RecordsComplete.find(RD);
478 if (Cache != RecordsComplete.end())
479 return Cache->second;
480 bool Complete = MethodsAndNestedClassesComplete(RD, MNCComplete);
481 for (CXXRecordDecl::friend_iterator I = RD->friend_begin(),
482 E = RD->friend_end();
483 I != E && Complete; ++I) {
484 // Check if friend classes and methods are complete.
485 if (TypeSourceInfo *TSI = (*I)->getFriendType()) {
486 // Friend classes are available as the TypeSourceInfo of the FriendDecl.
487 if (CXXRecordDecl *FriendD = TSI->getType()->getAsCXXRecordDecl())
488 Complete = MethodsAndNestedClassesComplete(FriendD, MNCComplete);
489 else
490 Complete = false;
491 } else {
492 // Friend functions are available through the NamedDecl of FriendDecl.
493 if (const FunctionDecl *FD =
494 dyn_cast<FunctionDecl>((*I)->getFriendDecl()))
495 Complete = FD->isDefined();
496 else
497 // This is a template friend, give up.
498 Complete = false;
499 }
500 }
501 RecordsComplete[RD] = Complete;
502 return Complete;
503}
504
Chris Lattner9299f3f2008-08-23 03:19:52 +0000505/// ActOnEndOfTranslationUnit - This is called at the very end of the
506/// translation unit when EOF is reached and all but the top-level scope is
507/// popped.
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +0000508void Sema::ActOnEndOfTranslationUnit() {
John McCall92576642012-05-07 06:16:41 +0000509 assert(DelayedDiagnostics.getCurrentPool() == NULL
510 && "reached end of translation unit with a pool attached?");
511
Douglas Gregor467dc882011-08-25 22:30:56 +0000512 // Only complete translation units define vtables and perform implicit
513 // instantiations.
514 if (TUKind == TU_Complete) {
Argyrios Kyrtzidis849639d2012-02-07 16:50:53 +0000515 DiagnoseUseOfUnimplementedSelectors();
516
Chandler Carruthaee543a2010-12-12 21:36:11 +0000517 // If any dynamic classes have their key function defined within
518 // this translation unit, then those vtables are considered "used" and must
519 // be emitted.
Douglas Gregora126f172011-07-28 00:53:40 +0000520 for (DynamicClassesType::iterator I = DynamicClasses.begin(ExternalSource),
521 E = DynamicClasses.end();
522 I != E; ++I) {
523 assert(!(*I)->isDependentType() &&
Anders Carlssona5c6c2a2011-01-25 18:08:22 +0000524 "Should not see dependent types here!");
Douglas Gregora126f172011-07-28 00:53:40 +0000525 if (const CXXMethodDecl *KeyFunction = Context.getKeyFunction(*I)) {
Chandler Carruthaee543a2010-12-12 21:36:11 +0000526 const FunctionDecl *Definition = 0;
527 if (KeyFunction->hasBody(Definition))
Douglas Gregora126f172011-07-28 00:53:40 +0000528 MarkVTableUsed(Definition->getLocation(), *I, true);
Chandler Carruthaee543a2010-12-12 21:36:11 +0000529 }
530 }
531
Nick Lewycky81559102011-05-31 07:58:42 +0000532 // If DefinedUsedVTables ends up marking any virtual member functions it
533 // might lead to more pending template instantiations, which we then need
534 // to instantiate.
535 DefineUsedVTables();
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +0000536
Nick Lewycky81559102011-05-31 07:58:42 +0000537 // C++: Perform implicit template instantiations.
538 //
539 // FIXME: When we perform these implicit instantiations, we do not
540 // carefully keep track of the point of instantiation (C++ [temp.point]).
541 // This means that name lookup that occurs within the template
542 // instantiation will always happen at the end of the translation unit,
543 // so it will find some names that should not be found. Although this is
544 // common behavior for C++ compilers, it is technically wrong. In the
545 // future, we either need to be able to filter the results of name lookup
546 // or we need to perform template instantiations earlier.
547 PerformPendingInstantiations();
Nick Lewycky2a5f99e2010-11-25 00:35:20 +0000548 }
Anders Carlssond6a637f2009-12-07 08:24:59 +0000549
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +0000550 // Remove file scoped decls that turned out to be used.
Douglas Gregora2ee20a2011-07-27 21:45:57 +0000551 UnusedFileScopedDecls.erase(std::remove_if(UnusedFileScopedDecls.begin(0,
552 true),
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000553 UnusedFileScopedDecls.end(),
554 std::bind1st(std::ptr_fun(ShouldRemoveFromUnused),
555 this)),
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +0000556 UnusedFileScopedDecls.end());
Douglas Gregor47268a32010-04-09 17:41:13 +0000557
Douglas Gregor467dc882011-08-25 22:30:56 +0000558 if (TUKind == TU_Prefix) {
559 // Translation unit prefixes don't need any of the checking below.
Douglas Gregor87c08a52010-08-13 22:48:40 +0000560 TUScope = 0;
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +0000561 return;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000562 }
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +0000563
Chris Lattner63d65f82009-09-08 18:19:27 +0000564 // Check for #pragma weak identifiers that were never declared
565 // FIXME: This will cause diagnostics to be emitted in a non-determinstic
566 // order! Iterating over a densemap like this is bad.
Douglas Gregor31e37b22011-07-28 18:09:57 +0000567 LoadExternalWeakUndeclaredIdentifiers();
Ryan Flynne25ff832009-07-30 03:15:39 +0000568 for (llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator
Chris Lattner63d65f82009-09-08 18:19:27 +0000569 I = WeakUndeclaredIdentifiers.begin(),
570 E = WeakUndeclaredIdentifiers.end(); I != E; ++I) {
571 if (I->second.getUsed()) continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000572
Chris Lattner63d65f82009-09-08 18:19:27 +0000573 Diag(I->second.getLocation(), diag::warn_weak_identifier_undeclared)
574 << I->first;
Ryan Flynne25ff832009-07-30 03:15:39 +0000575 }
576
Douglas Gregor467dc882011-08-25 22:30:56 +0000577 if (TUKind == TU_Module) {
Douglas Gregor90db2602011-12-02 01:47:07 +0000578 // If we are building a module, resolve all of the exported declarations
579 // now.
580 if (Module *CurrentModule = PP.getCurrentModule()) {
581 ModuleMap &ModMap = PP.getHeaderSearchInfo().getModuleMap();
582
583 llvm::SmallVector<Module *, 2> Stack;
584 Stack.push_back(CurrentModule);
585 while (!Stack.empty()) {
586 Module *Mod = Stack.back();
587 Stack.pop_back();
588
589 // Resolve the exported declarations.
590 // FIXME: Actually complain, once we figure out how to teach the
591 // diagnostic client to deal with complains in the module map at this
592 // point.
593 ModMap.resolveExports(Mod, /*Complain=*/false);
594
595 // Queue the submodules, so their exports will also be resolved.
Douglas Gregorb7a78192012-01-04 23:32:19 +0000596 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
597 SubEnd = Mod->submodule_end();
Douglas Gregor90db2602011-12-02 01:47:07 +0000598 Sub != SubEnd; ++Sub) {
Douglas Gregorb7a78192012-01-04 23:32:19 +0000599 Stack.push_back(*Sub);
Douglas Gregor90db2602011-12-02 01:47:07 +0000600 }
601 }
602 }
603
Douglas Gregor467dc882011-08-25 22:30:56 +0000604 // Modules don't need any of the checking below.
605 TUScope = 0;
606 return;
607 }
608
Douglas Gregor275a3692009-03-10 23:43:53 +0000609 // C99 6.9.2p2:
610 // A declaration of an identifier for an object that has file
611 // scope without an initializer, and without a storage-class
612 // specifier or with the storage-class specifier static,
613 // constitutes a tentative definition. If a translation unit
614 // contains one or more tentative definitions for an identifier,
615 // and the translation unit contains no external definition for
616 // that identifier, then the behavior is exactly as if the
617 // translation unit contains a file scope declaration of that
618 // identifier, with the composite type as of the end of the
619 // translation unit, with an initializer equal to 0.
Sebastian Redle9d12b62010-01-31 22:27:38 +0000620 llvm::SmallSet<VarDecl *, 32> Seen;
Douglas Gregora8623202011-07-27 20:58:46 +0000621 for (TentativeDefinitionsType::iterator
622 T = TentativeDefinitions.begin(ExternalSource),
623 TEnd = TentativeDefinitions.end();
624 T != TEnd; ++T)
625 {
626 VarDecl *VD = (*T)->getActingDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +0000627
Sebastian Redle9d12b62010-01-31 22:27:38 +0000628 // If the tentative definition was completed, getActingDefinition() returns
629 // null. If we've already seen this variable before, insert()'s second
630 // return value is false.
631 if (VD == 0 || VD->isInvalidDecl() || !Seen.insert(VD))
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000632 continue;
633
Mike Stump1eb44332009-09-09 15:08:12 +0000634 if (const IncompleteArrayType *ArrayT
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000635 = Context.getAsIncompleteArrayType(VD->getType())) {
Mike Stump1eb44332009-09-09 15:08:12 +0000636 if (RequireCompleteType(VD->getLocation(),
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000637 ArrayT->getElementType(),
Chris Lattner63d65f82009-09-08 18:19:27 +0000638 diag::err_tentative_def_incomplete_type_arr)) {
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000639 VD->setInvalidDecl();
Chris Lattner63d65f82009-09-08 18:19:27 +0000640 continue;
Douglas Gregor275a3692009-03-10 23:43:53 +0000641 }
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Chris Lattner63d65f82009-09-08 18:19:27 +0000643 // Set the length of the array to 1 (C99 6.9.2p5).
644 Diag(VD->getLocation(), diag::warn_tentative_incomplete_array);
645 llvm::APInt One(Context.getTypeSize(Context.getSizeType()), true);
John McCall46a617a2009-10-16 00:14:28 +0000646 QualType T = Context.getConstantArrayType(ArrayT->getElementType(),
647 One, ArrayType::Normal, 0);
Chris Lattner63d65f82009-09-08 18:19:27 +0000648 VD->setType(T);
Mike Stump1eb44332009-09-09 15:08:12 +0000649 } else if (RequireCompleteType(VD->getLocation(), VD->getType(),
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000650 diag::err_tentative_def_incomplete_type))
651 VD->setInvalidDecl();
652
653 // Notify the consumer that we've completed a tentative definition.
654 if (!VD->isInvalidDecl())
655 Consumer.CompleteTentativeDefinition(VD);
656
Douglas Gregor275a3692009-03-10 23:43:53 +0000657 }
Argyrios Kyrtzidis43f0a7c2011-01-31 07:04:37 +0000658
Sean Huntc1598702011-05-05 00:05:47 +0000659 if (LangOpts.CPlusPlus0x &&
660 Diags.getDiagnosticLevel(diag::warn_delegating_ctor_cycle,
661 SourceLocation())
David Blaikied6471f72011-09-25 23:23:43 +0000662 != DiagnosticsEngine::Ignored)
Sean Huntfe57eef2011-05-04 05:57:24 +0000663 CheckDelegatingCtorCycles();
664
Argyrios Kyrtzidis43f0a7c2011-01-31 07:04:37 +0000665 // If there were errors, disable 'unused' warnings since they will mostly be
666 // noise.
667 if (!Diags.hasErrorOccurred()) {
668 // Output warning for unused file scoped decls.
Douglas Gregora2ee20a2011-07-27 21:45:57 +0000669 for (UnusedFileScopedDeclsType::iterator
670 I = UnusedFileScopedDecls.begin(ExternalSource),
Argyrios Kyrtzidis43f0a7c2011-01-31 07:04:37 +0000671 E = UnusedFileScopedDecls.end(); I != E; ++I) {
Douglas Gregora2ee20a2011-07-27 21:45:57 +0000672 if (ShouldRemoveFromUnused(this, *I))
673 continue;
674
Argyrios Kyrtzidis43f0a7c2011-01-31 07:04:37 +0000675 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
676 const FunctionDecl *DiagD;
677 if (!FD->hasBody(DiagD))
678 DiagD = FD;
Argyrios Kyrtzidis48b89592011-03-03 17:47:42 +0000679 if (DiagD->isDeleted())
680 continue; // Deleted functions are supposed to be unused.
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000681 if (DiagD->isReferenced()) {
682 if (isa<CXXMethodDecl>(DiagD))
683 Diag(DiagD->getLocation(), diag::warn_unneeded_member_function)
684 << DiagD->getDeclName();
685 else
686 Diag(DiagD->getLocation(), diag::warn_unneeded_internal_decl)
687 << /*function*/0 << DiagD->getDeclName();
688 } else {
689 Diag(DiagD->getLocation(),
690 isa<CXXMethodDecl>(DiagD) ? diag::warn_unused_member_function
691 : diag::warn_unused_function)
692 << DiagD->getDeclName();
693 }
Argyrios Kyrtzidis43f0a7c2011-01-31 07:04:37 +0000694 } else {
695 const VarDecl *DiagD = cast<VarDecl>(*I)->getDefinition();
696 if (!DiagD)
697 DiagD = cast<VarDecl>(*I);
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000698 if (DiagD->isReferenced()) {
699 Diag(DiagD->getLocation(), diag::warn_unneeded_internal_decl)
700 << /*variable*/1 << DiagD->getDeclName();
701 } else {
702 Diag(DiagD->getLocation(), diag::warn_unused_variable)
703 << DiagD->getDeclName();
704 }
Argyrios Kyrtzidis43f0a7c2011-01-31 07:04:37 +0000705 }
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +0000706 }
John McCall15e310a2011-02-19 02:53:41 +0000707
708 checkUndefinedInternals(*this);
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +0000709 }
Douglas Gregor87c08a52010-08-13 22:48:40 +0000710
Daniel Jasperf8cc02e2012-06-06 08:32:04 +0000711 if (Diags.getDiagnosticLevel(diag::warn_unused_private_field,
712 SourceLocation())
713 != DiagnosticsEngine::Ignored) {
714 RecordCompleteMap RecordsComplete;
715 RecordCompleteMap MNCComplete;
716 for (NamedDeclSetType::iterator I = UnusedPrivateFields.begin(),
717 E = UnusedPrivateFields.end(); I != E; ++I) {
718 const NamedDecl *D = *I;
719 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D->getDeclContext());
720 if (RD && !RD->isUnion() &&
721 IsRecordFullyDefined(RD, RecordsComplete, MNCComplete)) {
722 Diag(D->getLocation(), diag::warn_unused_private_field)
723 << D->getDeclName();
724 }
725 }
726 }
727
Richard Smith483b9f32011-02-21 20:05:19 +0000728 // Check we've noticed that we're no longer parsing the initializer for every
729 // variable. If we miss cases, then at best we have a performance issue and
730 // at worst a rejects-valid bug.
731 assert(ParsingInitForAutoVars.empty() &&
732 "Didn't unmark var as having its initializer parsed");
733
Douglas Gregor87c08a52010-08-13 22:48:40 +0000734 TUScope = 0;
Chris Lattner9299f3f2008-08-23 03:19:52 +0000735}
736
737
Reid Spencer5f016e22007-07-11 17:01:13 +0000738//===----------------------------------------------------------------------===//
739// Helper functions.
740//===----------------------------------------------------------------------===//
741
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000742DeclContext *Sema::getFunctionLevelDeclContext() {
John McCalldb0ee1d2009-12-19 10:53:49 +0000743 DeclContext *DC = CurContext;
Mike Stump1eb44332009-09-09 15:08:12 +0000744
Eli Friedman72899c32012-01-07 04:59:52 +0000745 while (true) {
746 if (isa<BlockDecl>(DC) || isa<EnumDecl>(DC)) {
747 DC = DC->getParent();
748 } else if (isa<CXXMethodDecl>(DC) &&
Douglas Gregor215e4e12012-02-12 17:34:23 +0000749 cast<CXXMethodDecl>(DC)->getOverloadedOperator() == OO_Call &&
Eli Friedman72899c32012-01-07 04:59:52 +0000750 cast<CXXRecordDecl>(DC->getParent())->isLambda()) {
751 DC = DC->getParent()->getParent();
752 }
753 else break;
754 }
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000756 return DC;
757}
758
Chris Lattner371f2582008-12-04 23:50:19 +0000759/// getCurFunctionDecl - If inside of a function body, this returns a pointer
760/// to the function decl for the function being parsed. If we're currently
761/// in a 'block', this returns the containing context.
762FunctionDecl *Sema::getCurFunctionDecl() {
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000763 DeclContext *DC = getFunctionLevelDeclContext();
Chris Lattner371f2582008-12-04 23:50:19 +0000764 return dyn_cast<FunctionDecl>(DC);
765}
766
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000767ObjCMethodDecl *Sema::getCurMethodDecl() {
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000768 DeclContext *DC = getFunctionLevelDeclContext();
Steve Naroffd7612e12008-11-17 16:28:52 +0000769 return dyn_cast<ObjCMethodDecl>(DC);
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000770}
Chris Lattner371f2582008-12-04 23:50:19 +0000771
772NamedDecl *Sema::getCurFunctionOrMethodDecl() {
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000773 DeclContext *DC = getFunctionLevelDeclContext();
Chris Lattner371f2582008-12-04 23:50:19 +0000774 if (isa<ObjCMethodDecl>(DC) || isa<FunctionDecl>(DC))
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000775 return cast<NamedDecl>(DC);
Chris Lattner371f2582008-12-04 23:50:19 +0000776 return 0;
777}
778
Daniel Dunbar393eed72012-03-14 09:49:32 +0000779void Sema::EmitCurrentDiagnostic(unsigned DiagID) {
780 // FIXME: It doesn't make sense to me that DiagID is an incoming argument here
781 // and yet we also use the current diag ID on the DiagnosticsEngine. This has
782 // been made more painfully obvious by the refactor that introduced this
783 // function, but it is possible that the incoming argument can be
784 // eliminnated. If it truly cannot be (for example, there is some reentrancy
785 // issue I am not seeing yet), then there should at least be a clarifying
786 // comment somewhere.
787 if (llvm::Optional<TemplateDeductionInfo*> Info = isSFINAEContext()) {
788 switch (DiagnosticIDs::getDiagnosticSFINAEResponse(
789 Diags.getCurrentDiagID())) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000790 case DiagnosticIDs::SFINAE_Report:
Richard Smith77faa362011-10-19 00:07:01 +0000791 // We'll report the diagnostic below.
Douglas Gregor9b623632010-10-12 23:32:35 +0000792 break;
793
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000794 case DiagnosticIDs::SFINAE_SubstitutionFailure:
Douglas Gregor9b623632010-10-12 23:32:35 +0000795 // Count this failure so that we know that template argument deduction
796 // has failed.
Daniel Dunbar393eed72012-03-14 09:49:32 +0000797 ++NumSFINAEErrors;
Richard Smithb8590f32012-05-07 09:03:25 +0000798
799 // Make a copy of this suppressed diagnostic and store it with the
800 // template-deduction information.
801 if (*Info && !(*Info)->hasSFINAEDiagnostic()) {
802 Diagnostic DiagInfo(&Diags);
803 (*Info)->addSFINAEDiagnostic(DiagInfo.getLocation(),
804 PartialDiagnostic(DiagInfo, Context.getDiagAllocator()));
805 }
806
Daniel Dunbar393eed72012-03-14 09:49:32 +0000807 Diags.setLastDiagnosticIgnored();
808 Diags.Clear();
Douglas Gregor9b623632010-10-12 23:32:35 +0000809 return;
810
Richard Smith77faa362011-10-19 00:07:01 +0000811 case DiagnosticIDs::SFINAE_AccessControl: {
812 // Per C++ Core Issue 1170, access control is part of SFINAE.
Daniel Dunbar00b43842012-03-13 18:30:54 +0000813 // Additionally, the AccessCheckingSFINAE flag can be used to temporarily
Richard Smith77faa362011-10-19 00:07:01 +0000814 // make access control a part of SFINAE for the purposes of checking
815 // type traits.
Daniel Dunbar393eed72012-03-14 09:49:32 +0000816 if (!AccessCheckingSFINAE && !getLangOpts().CPlusPlus0x)
Richard Smith77faa362011-10-19 00:07:01 +0000817 break;
818
Daniel Dunbar393eed72012-03-14 09:49:32 +0000819 SourceLocation Loc = Diags.getCurrentDiagLoc();
Richard Smith77faa362011-10-19 00:07:01 +0000820
821 // Suppress this diagnostic.
Daniel Dunbar393eed72012-03-14 09:49:32 +0000822 ++NumSFINAEErrors;
Richard Smithb8590f32012-05-07 09:03:25 +0000823
824 // Make a copy of this suppressed diagnostic and store it with the
825 // template-deduction information.
826 if (*Info && !(*Info)->hasSFINAEDiagnostic()) {
827 Diagnostic DiagInfo(&Diags);
828 (*Info)->addSFINAEDiagnostic(DiagInfo.getLocation(),
829 PartialDiagnostic(DiagInfo, Context.getDiagAllocator()));
830 }
831
Daniel Dunbar393eed72012-03-14 09:49:32 +0000832 Diags.setLastDiagnosticIgnored();
833 Diags.Clear();
Richard Smith77faa362011-10-19 00:07:01 +0000834
835 // Now the diagnostic state is clear, produce a C++98 compatibility
836 // warning.
Daniel Dunbar393eed72012-03-14 09:49:32 +0000837 Diag(Loc, diag::warn_cxx98_compat_sfinae_access_control);
Richard Smith77faa362011-10-19 00:07:01 +0000838
839 // The last diagnostic which Sema produced was ignored. Suppress any
840 // notes attached to it.
Daniel Dunbar393eed72012-03-14 09:49:32 +0000841 Diags.setLastDiagnosticIgnored();
Richard Smith77faa362011-10-19 00:07:01 +0000842 return;
843 }
844
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000845 case DiagnosticIDs::SFINAE_Suppress:
Douglas Gregor9b623632010-10-12 23:32:35 +0000846 // Make a copy of this suppressed diagnostic and store it with the
847 // template-deduction information;
Richard Smithb8590f32012-05-07 09:03:25 +0000848 if (*Info) {
849 Diagnostic DiagInfo(&Diags);
Douglas Gregor1eee5dc2011-01-27 22:31:44 +0000850 (*Info)->addSuppressedDiagnostic(DiagInfo.getLocation(),
Richard Smithb8590f32012-05-07 09:03:25 +0000851 PartialDiagnostic(DiagInfo, Context.getDiagAllocator()));
852 }
853
854 // Suppress this diagnostic.
Daniel Dunbar393eed72012-03-14 09:49:32 +0000855 Diags.setLastDiagnosticIgnored();
856 Diags.Clear();
Douglas Gregor9b623632010-10-12 23:32:35 +0000857 return;
858 }
859 }
860
Douglas Gregor8987b232011-09-27 23:30:47 +0000861 // Set up the context's printing policy based on our current state.
Daniel Dunbar393eed72012-03-14 09:49:32 +0000862 Context.setPrintingPolicy(getPrintingPolicy());
Douglas Gregor8987b232011-09-27 23:30:47 +0000863
Douglas Gregor9b623632010-10-12 23:32:35 +0000864 // Emit the diagnostic.
Daniel Dunbar393eed72012-03-14 09:49:32 +0000865 if (!Diags.EmitCurrentDiagnostic())
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000866 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000867
Douglas Gregor25a88bb2009-03-20 22:48:49 +0000868 // If this is not a note, and we're in a template instantiation
869 // that is different from the last template instantiation where
870 // we emitted an error, print a template instantiation
871 // backtrace.
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000872 if (!DiagnosticIDs::isBuiltinNote(DiagID) &&
Daniel Dunbar393eed72012-03-14 09:49:32 +0000873 !ActiveTemplateInstantiations.empty() &&
874 ActiveTemplateInstantiations.back()
875 != LastTemplateInstantiationErrorContext) {
876 PrintInstantiationStack();
877 LastTemplateInstantiationErrorContext = ActiveTemplateInstantiations.back();
Douglas Gregor25a88bb2009-03-20 22:48:49 +0000878 }
879}
Douglas Gregor2e222532009-07-02 17:08:52 +0000880
Anders Carlsson91a0cc92009-08-26 22:33:56 +0000881Sema::SemaDiagnosticBuilder
882Sema::Diag(SourceLocation Loc, const PartialDiagnostic& PD) {
883 SemaDiagnosticBuilder Builder(Diag(Loc, PD.getDiagID()));
884 PD.Emit(Builder);
Mike Stump1eb44332009-09-09 15:08:12 +0000885
Anders Carlsson91a0cc92009-08-26 22:33:56 +0000886 return Builder;
887}
888
Chandler Carruth108f7562011-07-26 05:40:03 +0000889/// \brief Looks through the macro-expansion chain for the given
890/// location, looking for a macro expansion with the given name.
John McCall834e3f62011-03-08 07:59:04 +0000891/// If one is found, returns true and sets the location to that
Chandler Carruth108f7562011-07-26 05:40:03 +0000892/// expansion loc.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000893bool Sema::findMacroSpelling(SourceLocation &locref, StringRef name) {
John McCall834e3f62011-03-08 07:59:04 +0000894 SourceLocation loc = locref;
895 if (!loc.isMacroID()) return false;
896
897 // There's no good way right now to look at the intermediate
Chandler Carruth108f7562011-07-26 05:40:03 +0000898 // expansions, so just jump to the expansion location.
Chandler Carruth40278532011-07-25 16:49:02 +0000899 loc = getSourceManager().getExpansionLoc(loc);
John McCall834e3f62011-03-08 07:59:04 +0000900
901 // If that's written with the name, stop here.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000902 SmallVector<char, 16> buffer;
John McCall834e3f62011-03-08 07:59:04 +0000903 if (getPreprocessor().getSpelling(loc, buffer) == name) {
904 locref = loc;
905 return true;
906 }
907 return false;
908}
909
Douglas Gregor23c94db2010-07-02 17:43:08 +0000910/// \brief Determines the active Scope associated with the given declaration
911/// context.
912///
913/// This routine maps a declaration context to the active Scope object that
914/// represents that declaration context in the parser. It is typically used
915/// from "scope-less" code (e.g., template instantiation, lazy creation of
916/// declarations) that injects a name for name-lookup purposes and, therefore,
917/// must update the Scope.
918///
919/// \returns The scope corresponding to the given declaraion context, or NULL
920/// if no such scope is open.
921Scope *Sema::getScopeForContext(DeclContext *Ctx) {
922
923 if (!Ctx)
924 return 0;
925
926 Ctx = Ctx->getPrimaryContext();
927 for (Scope *S = getCurScope(); S; S = S->getParent()) {
Sebastian Redlcddc69f2010-07-08 23:07:34 +0000928 // Ignore scopes that cannot have declarations. This is important for
929 // out-of-line definitions of static class members.
930 if (S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope))
931 if (DeclContext *Entity = static_cast<DeclContext *> (S->getEntity()))
932 if (Ctx == Entity->getPrimaryContext())
933 return S;
Douglas Gregor23c94db2010-07-02 17:43:08 +0000934 }
935
936 return 0;
937}
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000938
939/// \brief Enter a new function scope
940void Sema::PushFunctionScope() {
John McCall781472f2010-08-25 08:40:02 +0000941 if (FunctionScopes.size() == 1) {
942 // Use the "top" function scope rather than having to allocate
943 // memory for a new scope.
Argyrios Kyrtzidis8fc32d22010-11-19 00:19:15 +0000944 FunctionScopes.back()->Clear();
John McCall781472f2010-08-25 08:40:02 +0000945 FunctionScopes.push_back(FunctionScopes.back());
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000946 return;
947 }
948
Argyrios Kyrtzidis8fc32d22010-11-19 00:19:15 +0000949 FunctionScopes.push_back(new FunctionScopeInfo(getDiagnostics()));
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000950}
951
952void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) {
Argyrios Kyrtzidis8fc32d22010-11-19 00:19:15 +0000953 FunctionScopes.push_back(new BlockScopeInfo(getDiagnostics(),
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000954 BlockScope, Block));
955}
956
Douglas Gregor76e3da52012-02-08 20:17:14 +0000957void Sema::PushLambdaScope(CXXRecordDecl *Lambda,
958 CXXMethodDecl *CallOperator) {
959 FunctionScopes.push_back(new LambdaScopeInfo(getDiagnostics(), Lambda,
960 CallOperator));
Eli Friedmanec9ea722012-01-05 03:35:19 +0000961}
962
963void Sema::PopFunctionScopeInfo(const AnalysisBasedWarnings::Policy *WP,
964 const Decl *D, const BlockExpr *blkExpr) {
Ted Kremenek3ed6fc02011-02-23 01:51:48 +0000965 FunctionScopeInfo *Scope = FunctionScopes.pop_back_val();
John McCall781472f2010-08-25 08:40:02 +0000966 assert(!FunctionScopes.empty() && "mismatched push/pop!");
Ted Kremenek3ed6fc02011-02-23 01:51:48 +0000967
968 // Issue any analysis-based warnings.
969 if (WP && D)
Ted Kremenek283a3582011-02-23 01:51:53 +0000970 AnalysisWarnings.IssueWarnings(*WP, Scope, D, blkExpr);
Ted Kremenek351ba912011-02-23 01:52:04 +0000971 else {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000972 for (SmallVectorImpl<sema::PossiblyUnreachableDiag>::iterator
Ted Kremenek351ba912011-02-23 01:52:04 +0000973 i = Scope->PossiblyUnreachableDiags.begin(),
974 e = Scope->PossiblyUnreachableDiags.end();
975 i != e; ++i) {
976 const sema::PossiblyUnreachableDiag &D = *i;
977 Diag(D.Loc, D.PD);
978 }
979 }
Ted Kremenek3ed6fc02011-02-23 01:51:48 +0000980
Ted Kremenek351ba912011-02-23 01:52:04 +0000981 if (FunctionScopes.back() != Scope) {
John McCall781472f2010-08-25 08:40:02 +0000982 delete Scope;
Ted Kremenek351ba912011-02-23 01:52:04 +0000983 }
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000984}
985
Dmitri Gribenko625bb562012-02-14 22:14:32 +0000986void Sema::PushCompoundScope() {
987 getCurFunction()->CompoundScopes.push_back(CompoundScopeInfo());
988}
989
990void Sema::PopCompoundScope() {
991 FunctionScopeInfo *CurFunction = getCurFunction();
992 assert(!CurFunction->CompoundScopes.empty() && "mismatched push/pop");
993
994 CurFunction->CompoundScopes.pop_back();
995}
996
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000997/// \brief Determine whether any errors occurred within this function/method/
998/// block.
John McCallf85e1932011-06-15 23:02:42 +0000999bool Sema::hasAnyUnrecoverableErrorsInThisFunction() const {
1000 return getCurFunction()->ErrorTrap.hasUnrecoverableErrorOccurred();
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00001001}
1002
1003BlockScopeInfo *Sema::getCurBlock() {
1004 if (FunctionScopes.empty())
1005 return 0;
1006
1007 return dyn_cast<BlockScopeInfo>(FunctionScopes.back());
1008}
John McCall76bd1f32010-06-01 09:23:16 +00001009
Eli Friedman906a7e12012-01-06 03:05:34 +00001010LambdaScopeInfo *Sema::getCurLambda() {
1011 if (FunctionScopes.empty())
1012 return 0;
1013
1014 return dyn_cast<LambdaScopeInfo>(FunctionScopes.back());
1015}
1016
John McCall76bd1f32010-06-01 09:23:16 +00001017// Pin this vtable to this file.
1018ExternalSemaSource::~ExternalSemaSource() {}
John McCallf312b1e2010-08-26 23:41:50 +00001019
Douglas Gregor5ac4b692012-01-25 00:49:42 +00001020void ExternalSemaSource::ReadMethodPool(Selector Sel) { }
Sebastian Redl8c845712010-09-28 20:23:00 +00001021
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001022void ExternalSemaSource::ReadKnownNamespaces(
Chris Lattner5f9e2722011-07-23 10:55:15 +00001023 SmallVectorImpl<NamespaceDecl *> &Namespaces) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001024}
1025
Chris Lattner5f9e2722011-07-23 10:55:15 +00001026void PrettyDeclStackTraceEntry::print(raw_ostream &OS) const {
John McCallf312b1e2010-08-26 23:41:50 +00001027 SourceLocation Loc = this->Loc;
1028 if (!Loc.isValid() && TheDecl) Loc = TheDecl->getLocation();
1029 if (Loc.isValid()) {
1030 Loc.print(OS, S.getSourceManager());
1031 OS << ": ";
1032 }
1033 OS << Message;
1034
1035 if (TheDecl && isa<NamedDecl>(TheDecl)) {
1036 std::string Name = cast<NamedDecl>(TheDecl)->getNameAsString();
1037 if (!Name.empty())
1038 OS << " '" << Name << '\'';
1039 }
1040
1041 OS << '\n';
1042}
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001043
1044/// \brief Figure out if an expression could be turned into a call.
1045///
1046/// Use this when trying to recover from an error where the programmer may have
1047/// written just the name of a function instead of actually calling it.
1048///
1049/// \param E - The expression to examine.
1050/// \param ZeroArgCallReturnTy - If the expression can be turned into a call
1051/// with no arguments, this parameter is set to the type returned by such a
1052/// call; otherwise, it is set to an empty QualType.
John McCall6dbba4f2011-10-11 23:14:30 +00001053/// \param OverloadSet - If the expression is an overloaded function
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001054/// name, this parameter is populated with the decls of the various overloads.
1055bool Sema::isExprCallable(const Expr &E, QualType &ZeroArgCallReturnTy,
John McCall6dbba4f2011-10-11 23:14:30 +00001056 UnresolvedSetImpl &OverloadSet) {
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001057 ZeroArgCallReturnTy = QualType();
John McCall6dbba4f2011-10-11 23:14:30 +00001058 OverloadSet.clear();
1059
1060 if (E.getType() == Context.OverloadTy) {
1061 OverloadExpr::FindResult FR = OverloadExpr::find(const_cast<Expr*>(&E));
1062 const OverloadExpr *Overloads = FR.Expression;
1063
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001064 for (OverloadExpr::decls_iterator it = Overloads->decls_begin(),
1065 DeclsEnd = Overloads->decls_end(); it != DeclsEnd; ++it) {
John McCall6dbba4f2011-10-11 23:14:30 +00001066 OverloadSet.addDecl(*it);
1067
1068 // Check whether the function is a non-template which takes no
1069 // arguments.
1070 if (const FunctionDecl *OverloadDecl
1071 = dyn_cast<FunctionDecl>((*it)->getUnderlyingDecl())) {
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001072 if (OverloadDecl->getMinRequiredArguments() == 0)
1073 ZeroArgCallReturnTy = OverloadDecl->getResultType();
1074 }
1075 }
John McCall6dbba4f2011-10-11 23:14:30 +00001076
Douglas Gregor64a371f2011-10-13 18:26:27 +00001077 // Ignore overloads that are pointer-to-member constants.
1078 if (FR.HasFormOfMemberPointer)
John McCall6dbba4f2011-10-11 23:14:30 +00001079 return false;
1080
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001081 return true;
1082 }
1083
John McCall6dbba4f2011-10-11 23:14:30 +00001084 if (const DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E.IgnoreParens())) {
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001085 if (const FunctionDecl *Fun = dyn_cast<FunctionDecl>(DeclRef->getDecl())) {
1086 if (Fun->getMinRequiredArguments() == 0)
1087 ZeroArgCallReturnTy = Fun->getResultType();
1088 return true;
1089 }
1090 }
1091
1092 // We don't have an expression that's convenient to get a FunctionDecl from,
1093 // but we can at least check if the type is "function of 0 arguments".
1094 QualType ExprTy = E.getType();
1095 const FunctionType *FunTy = NULL;
Matt Beaumont-Gay9389ddc2011-05-05 00:59:35 +00001096 QualType PointeeTy = ExprTy->getPointeeType();
1097 if (!PointeeTy.isNull())
1098 FunTy = PointeeTy->getAs<FunctionType>();
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001099 if (!FunTy)
1100 FunTy = ExprTy->getAs<FunctionType>();
1101 if (!FunTy && ExprTy == Context.BoundMemberTy) {
1102 // Look for the bound-member type. If it's still overloaded, give up,
1103 // although we probably should have fallen into the OverloadExpr case above
1104 // if we actually have an overloaded bound member.
1105 QualType BoundMemberTy = Expr::findBoundMemberType(&E);
1106 if (!BoundMemberTy.isNull())
1107 FunTy = BoundMemberTy->castAs<FunctionType>();
1108 }
1109
1110 if (const FunctionProtoType *FPT =
1111 dyn_cast_or_null<FunctionProtoType>(FunTy)) {
1112 if (FPT->getNumArgs() == 0)
1113 ZeroArgCallReturnTy = FunTy->getResultType();
1114 return true;
1115 }
1116 return false;
1117}
1118
1119/// \brief Give notes for a set of overloads.
1120///
1121/// A companion to isExprCallable. In cases when the name that the programmer
1122/// wrote was an overloaded function, we may be able to make some guesses about
1123/// plausible overloads based on their return types; such guesses can be handed
1124/// off to this method to be emitted as notes.
1125///
1126/// \param Overloads - The overloads to note.
1127/// \param FinalNoteLoc - If we've suppressed printing some overloads due to
1128/// -fshow-overloads=best, this is the location to attach to the note about too
1129/// many candidates. Typically this will be the location of the original
1130/// ill-formed expression.
John McCall6dbba4f2011-10-11 23:14:30 +00001131static void noteOverloads(Sema &S, const UnresolvedSetImpl &Overloads,
1132 const SourceLocation FinalNoteLoc) {
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001133 int ShownOverloads = 0;
1134 int SuppressedOverloads = 0;
1135 for (UnresolvedSetImpl::iterator It = Overloads.begin(),
1136 DeclsEnd = Overloads.end(); It != DeclsEnd; ++It) {
1137 // FIXME: Magic number for max shown overloads stolen from
1138 // OverloadCandidateSet::NoteCandidates.
1139 if (ShownOverloads >= 4 &&
John McCall6dbba4f2011-10-11 23:14:30 +00001140 S.Diags.getShowOverloads() == DiagnosticsEngine::Ovl_Best) {
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001141 ++SuppressedOverloads;
1142 continue;
1143 }
John McCall6dbba4f2011-10-11 23:14:30 +00001144
1145 NamedDecl *Fn = (*It)->getUnderlyingDecl();
Abramo Bagnara9c0e1ec2011-11-15 21:43:28 +00001146 S.Diag(Fn->getLocation(), diag::note_possible_target_of_call);
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001147 ++ShownOverloads;
1148 }
John McCall6dbba4f2011-10-11 23:14:30 +00001149
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001150 if (SuppressedOverloads)
John McCall6dbba4f2011-10-11 23:14:30 +00001151 S.Diag(FinalNoteLoc, diag::note_ovl_too_many_candidates)
1152 << SuppressedOverloads;
1153}
1154
1155static void notePlausibleOverloads(Sema &S, SourceLocation Loc,
1156 const UnresolvedSetImpl &Overloads,
1157 bool (*IsPlausibleResult)(QualType)) {
1158 if (!IsPlausibleResult)
1159 return noteOverloads(S, Overloads, Loc);
1160
1161 UnresolvedSet<2> PlausibleOverloads;
1162 for (OverloadExpr::decls_iterator It = Overloads.begin(),
1163 DeclsEnd = Overloads.end(); It != DeclsEnd; ++It) {
1164 const FunctionDecl *OverloadDecl = cast<FunctionDecl>(*It);
1165 QualType OverloadResultTy = OverloadDecl->getResultType();
1166 if (IsPlausibleResult(OverloadResultTy))
1167 PlausibleOverloads.addDecl(It.getDecl());
1168 }
1169 noteOverloads(S, PlausibleOverloads, Loc);
1170}
1171
1172/// Determine whether the given expression can be called by just
1173/// putting parentheses after it. Notably, expressions with unary
1174/// operators can't be because the unary operator will start parsing
1175/// outside the call.
1176static bool IsCallableWithAppend(Expr *E) {
1177 E = E->IgnoreImplicit();
1178 return (!isa<CStyleCastExpr>(E) &&
1179 !isa<UnaryOperator>(E) &&
1180 !isa<BinaryOperator>(E) &&
1181 !isa<CXXOperatorCallExpr>(E));
1182}
1183
1184bool Sema::tryToRecoverWithCall(ExprResult &E, const PartialDiagnostic &PD,
1185 bool ForceComplain,
1186 bool (*IsPlausibleResult)(QualType)) {
1187 SourceLocation Loc = E.get()->getExprLoc();
1188 SourceRange Range = E.get()->getSourceRange();
1189
1190 QualType ZeroArgCallTy;
1191 UnresolvedSet<4> Overloads;
1192 if (isExprCallable(*E.get(), ZeroArgCallTy, Overloads) &&
1193 !ZeroArgCallTy.isNull() &&
1194 (!IsPlausibleResult || IsPlausibleResult(ZeroArgCallTy))) {
1195 // At this point, we know E is potentially callable with 0
1196 // arguments and that it returns something of a reasonable type,
1197 // so we can emit a fixit and carry on pretending that E was
1198 // actually a CallExpr.
1199 SourceLocation ParenInsertionLoc =
1200 PP.getLocForEndOfToken(Range.getEnd());
1201 Diag(Loc, PD)
1202 << /*zero-arg*/ 1 << Range
1203 << (IsCallableWithAppend(E.get())
1204 ? FixItHint::CreateInsertion(ParenInsertionLoc, "()")
1205 : FixItHint());
1206 notePlausibleOverloads(*this, Loc, Overloads, IsPlausibleResult);
1207
1208 // FIXME: Try this before emitting the fixit, and suppress diagnostics
1209 // while doing so.
1210 E = ActOnCallExpr(0, E.take(), ParenInsertionLoc,
1211 MultiExprArg(*this, 0, 0),
1212 ParenInsertionLoc.getLocWithOffset(1));
1213 return true;
1214 }
1215
1216 if (!ForceComplain) return false;
1217
1218 Diag(Loc, PD) << /*not zero-arg*/ 0 << Range;
1219 notePlausibleOverloads(*this, Loc, Overloads, IsPlausibleResult);
1220 E = ExprError();
1221 return true;
Matt Beaumont-Gayc9366ba2011-05-04 22:10:40 +00001222}