blob: 9e4b29197138a193a7a110f2f83a74825d79cb14 [file] [log] [blame]
Chris Lattnerddd6fc82006-11-10 04:58:55 +00001//===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===//
Chris Lattner3e7bd4e2006-08-17 05:51:27 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner3e7bd4e2006-08-17 05:51:27 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattnerddd6fc82006-11-10 04:58:55 +000010// This file implements the actions class which performs semantic analysis and
11// builds an AST out of a parse stream.
Chris Lattner3e7bd4e2006-08-17 05:51:27 +000012//
13//===----------------------------------------------------------------------===//
14
John McCallb45a1e72010-08-26 02:13:20 +000015#include "clang/Sema/SemaInternal.h"
16#include "clang/Sema/DelayedDiagnostic.h"
Anton Korobeynikov55bcea12010-01-10 12:58:08 +000017#include "TargetAttributesSema.h"
Ryan Flynn7d470f32009-07-30 03:15:39 +000018#include "llvm/ADT/DenseMap.h"
Sebastian Redl35351a92010-01-31 22:27:38 +000019#include "llvm/ADT/SmallSet.h"
John McCallfceb64b2009-11-07 03:30:10 +000020#include "llvm/ADT/APFloat.h"
John McCall2ec85372012-05-07 06:16:41 +000021#include "llvm/Support/CrashRecoveryContext.h"
John McCallcc14d1f2010-08-24 08:50:51 +000022#include "clang/Sema/CXXFieldCollector.h"
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +000023#include "clang/Sema/TemplateDeduction.h"
John McCall75b960e2010-06-01 09:23:16 +000024#include "clang/Sema/ExternalSemaSource.h"
Sebastian Redlc1ca90a2010-09-28 20:23:00 +000025#include "clang/Sema/ObjCMethodList.h"
John McCallfaf5fb42010-08-26 23:41:50 +000026#include "clang/Sema/PrettyDeclStackTrace.h"
John McCallcc14d1f2010-08-24 08:50:51 +000027#include "clang/Sema/Scope.h"
John McCallaab3e412010-08-25 08:40:02 +000028#include "clang/Sema/ScopeInfo.h"
Douglas Gregor5c6f10b2010-08-12 22:51:45 +000029#include "clang/Sema/SemaConsumer.h"
Chris Lattnercb6a3822006-11-10 06:20:45 +000030#include "clang/AST/ASTContext.h"
Douglas Gregor639cccc2010-02-09 22:26:47 +000031#include "clang/AST/ASTDiagnostic.h"
John McCall28a0cf72010-08-25 07:42:41 +000032#include "clang/AST/DeclCXX.h"
Daniel Jasper0baec5492012-06-06 08:32:04 +000033#include "clang/AST/DeclFriend.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000034#include "clang/AST/DeclObjC.h"
Daniel Dunbar221fa942008-08-11 04:54:23 +000035#include "clang/AST/Expr.h"
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +000036#include "clang/AST/ExprCXX.h"
Chris Lattnerc8e630e2011-02-17 07:39:24 +000037#include "clang/AST/StmtCXX.h"
Douglas Gregor2b82c2a2011-12-02 01:47:07 +000038#include "clang/Lex/HeaderSearch.h"
Chris Lattnerd3e98952006-10-06 05:22:26 +000039#include "clang/Lex/Preprocessor.h"
Douglas Gregor75644d52011-09-20 18:13:03 +000040#include "clang/Basic/FileManager.h"
Anders Carlssonf68079e2009-08-26 22:33:56 +000041#include "clang/Basic/PartialDiagnostic.h"
Chris Lattner7d4f5c42009-04-30 06:18:40 +000042#include "clang/Basic/TargetInfo.h"
Chris Lattnerc11438c2006-08-18 05:17:52 +000043using namespace clang;
John McCallaab3e412010-08-25 08:40:02 +000044using namespace sema;
Douglas Gregor9a28e842010-03-01 23:15:13 +000045
46FunctionScopeInfo::~FunctionScopeInfo() { }
47
Argyrios Kyrtzidisf51ec1d2010-11-19 00:19:15 +000048void FunctionScopeInfo::Clear() {
John McCalla95172b2010-08-01 00:26:45 +000049 HasBranchProtectedScope = false;
50 HasBranchIntoScope = false;
51 HasIndirectGoto = false;
52
Douglas Gregor9a28e842010-03-01 23:15:13 +000053 SwitchStack.clear();
Douglas Gregor6fd1b182010-05-15 06:01:05 +000054 Returns.clear();
Argyrios Kyrtzidisf51ec1d2010-11-19 00:19:15 +000055 ErrorTrap.reset();
Ted Kremenek3427fac2011-02-23 01:52:04 +000056 PossiblyUnreachableDiags.clear();
Douglas Gregor9a28e842010-03-01 23:15:13 +000057}
58
59BlockScopeInfo::~BlockScopeInfo() { }
Eli Friedman71c80552012-01-05 03:35:19 +000060LambdaScopeInfo::~LambdaScopeInfo() { }
Douglas Gregor9a28e842010-03-01 23:15:13 +000061
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +000062PrintingPolicy Sema::getPrintingPolicy(const ASTContext &Context,
63 const Preprocessor &PP) {
Douglas Gregor75acd922011-09-27 23:30:47 +000064 PrintingPolicy Policy = Context.getPrintingPolicy();
David Blaikiebbafb8a2012-03-11 07:00:24 +000065 Policy.Bool = Context.getLangOpts().Bool;
Douglas Gregor75acd922011-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 Gregorf11096c2010-08-25 18:07:12 +000077void Sema::ActOnTranslationUnitScope(Scope *S) {
Steve Naroffc62adb62007-10-09 22:01:59 +000078 TUScope = S;
Douglas Gregor91f84212008-12-11 16:49:14 +000079 PushDeclContext(S, Context.getTranslationUnitDecl());
Mike Stump11289f42009-09-09 15:08:12 +000080
John McCallf24d7bb2010-05-28 18:45:08 +000081 VAListTagName = PP.getIdentifierInfo("__va_list_tag");
Steve Naroff7f549f12007-10-10 21:53:07 +000082}
83
Douglas Gregor54feb842009-04-14 16:27:31 +000084Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer,
Douglas Gregor69f74f82011-08-25 22:30:56 +000085 TranslationUnitKind TUKind,
Daniel Dunbar242ea9a2009-11-13 08:58:20 +000086 CodeCompleteConsumer *CodeCompleter)
David Blaikiebbafb8a2012-03-11 07:00:24 +000087 : TheTargetAttributesSema(0), FPFeatures(pp.getLangOpts()),
88 LangOpts(pp.getLangOpts()), PP(pp), Context(ctxt), Consumer(consumer),
Mike Stump11289f42009-09-09 15:08:12 +000089 Diags(PP.getDiagnostics()), SourceMgr(PP.getSourceManager()),
Chandler Carruthb4836ea2011-07-06 16:21:37 +000090 CollectStats(false), ExternalSource(0), CodeCompleter(CodeCompleter),
Argyrios Kyrtzidis9321ad32011-10-06 23:23:20 +000091 CurContext(0), OriginalLexicalContext(0),
92 PackContext(0), MSStructPragmaOn(false), VisContext(0),
John McCall28fc7092011-11-10 05:35:25 +000093 ExprNeedsCleanups(false), LateTemplateParser(0), OpaqueParser(0),
Sebastian Redl2bfa1042012-01-17 22:49:33 +000094 IdResolver(pp), StdInitializerList(0), CXXTypeInfoDecl(0), MSVCGuidDecl(0),
Benjamin Kramere4993452012-04-22 20:43:35 +000095 NSNumberDecl(0),
96 NSStringDecl(0), StringWithUTF8StringMethod(0),
97 NSArrayDecl(0), ArrayWithObjectsMethod(0),
Ted Kremeneke65b0862012-03-06 20:05:56 +000098 NSDictionaryDecl(0), DictionaryWithObjectsMethod(0),
Bill Wendling73f59c42010-09-08 21:30:16 +000099 GlobalNewDeleteDeclared(false),
Nico Weber715abaf2011-08-22 17:25:57 +0000100 ObjCShouldCallSuperDealloc(false),
Nico Weber1fb82662011-08-28 22:35:17 +0000101 ObjCShouldCallSuperFinalize(false),
Douglas Gregor69f74f82011-08-25 22:30:56 +0000102 TUKind(TUKind),
John McCall6347b682012-05-07 06:16:58 +0000103 NumSFINAEErrors(0), InFunctionDeclarator(0),
Douglas Gregoredb76852011-01-27 22:31:44 +0000104 AccessCheckingSFINAE(false), InNonInstantiationSFINAEContext(false),
Douglas Gregor840bd6c2010-12-20 22:05:00 +0000105 NonInstantiationEntries(0), ArgumentPackSubstitutionIndex(-1),
106 CurrentInstantiationScope(0), TyposCorrected(0),
Bill Wendling73f59c42010-09-08 21:30:16 +0000107 AnalysisWarnings(*this)
Douglas Gregor84d49a22009-11-11 21:54:23 +0000108{
Steve Naroff7f549f12007-10-10 21:53:07 +0000109 TUScope = 0;
Douglas Gregor3024f072012-04-16 07:05:22 +0000110
Douglas Gregorc2fa1692011-06-28 16:20:02 +0000111 LoadedExternalKnownNamespaces = false;
Ted Kremeneke65b0862012-03-06 20:05:56 +0000112 for (unsigned I = 0; I != NSAPI::NumNSNumberLiteralMethods; ++I)
113 NSNumberLiteralMethods[I] = 0;
114
David Blaikiebbafb8a2012-03-11 07:00:24 +0000115 if (getLangOpts().ObjC1)
Ted Kremeneke65b0862012-03-06 20:05:56 +0000116 NSAPIObj.reset(new NSAPI(Context));
117
David Blaikiebbafb8a2012-03-11 07:00:24 +0000118 if (getLangOpts().CPlusPlus)
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000119 FieldCollector.reset(new CXXFieldCollector());
Mike Stump11289f42009-09-09 15:08:12 +0000120
Chris Lattner6a2ed6f2008-11-23 09:13:29 +0000121 // Tell diagnostics how to render things from the AST library.
Douglas Gregor639cccc2010-02-09 22:26:47 +0000122 PP.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
123 &Context);
Douglas Gregorff790f12009-11-26 00:44:06 +0000124
125 ExprEvalContexts.push_back(
Richard Smithfd555f62012-02-22 02:04:18 +0000126 ExpressionEvaluationContextRecord(PotentiallyEvaluated, 0,
127 false, 0, false));
John McCallaab3e412010-08-25 08:40:02 +0000128
Argyrios Kyrtzidisf51ec1d2010-11-19 00:19:15 +0000129 FunctionScopes.push_back(new FunctionScopeInfo(Diags));
Douglas Gregor5c6f10b2010-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 Gregor3ea72692011-08-12 05:46:01 +0000144
Douglas Gregor801c99d2011-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 Gregor935bc7a22011-10-27 09:33:13 +0000150 if (IdResolver.begin(Int128) == IdResolver.end())
Douglas Gregor801c99d2011-08-12 06:49:56 +0000151 PushOnScopeChains(Context.getInt128Decl(), TUScope);
152
153 DeclarationName UInt128 = &Context.Idents.get("__uint128_t");
Douglas Gregor935bc7a22011-10-27 09:33:13 +0000154 if (IdResolver.begin(UInt128) == IdResolver.end())
Douglas Gregor801c99d2011-08-12 06:49:56 +0000155 PushOnScopeChains(Context.getUInt128Decl(), TUScope);
156 }
157
158
Douglas Gregor3ea72692011-08-12 05:46:01 +0000159 // Initialize predefined Objective-C types:
David Blaikiebbafb8a2012-03-11 07:00:24 +0000160 if (PP.getLangOpts().ObjC1) {
Douglas Gregor52e02802011-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 Gregor935bc7a22011-10-27 09:33:13 +0000164 if (IdResolver.begin(SEL) == IdResolver.end())
Douglas Gregor52e02802011-08-12 06:17:30 +0000165 PushOnScopeChains(Context.getObjCSelDecl(), TUScope);
166
Douglas Gregor3ea72692011-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 Gregor935bc7a22011-10-27 09:33:13 +0000170 if (IdResolver.begin(Id) == IdResolver.end())
Douglas Gregor3ea72692011-08-12 05:46:01 +0000171 PushOnScopeChains(Context.getObjCIdDecl(), TUScope);
Douglas Gregor0a586182011-08-12 05:59:41 +0000172
173 // Create the built-in typedef for 'Class'.
174 DeclarationName Class = &Context.Idents.get("Class");
Douglas Gregor935bc7a22011-10-27 09:33:13 +0000175 if (IdResolver.begin(Class) == IdResolver.end())
Douglas Gregor0a586182011-08-12 05:59:41 +0000176 PushOnScopeChains(Context.getObjCClassDecl(), TUScope);
Douglas Gregord53ae832012-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 Gregor3ea72692011-08-12 05:46:01 +0000182 }
Meador Inge5d3fb222012-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);
Steve Naroff38d31b42007-02-28 01:22:02 +0000187}
Chris Lattnercb6a3822006-11-10 06:20:45 +0000188
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000189Sema::~Sema() {
190 if (PackContext) FreePackedContext();
Eli Friedman570024a2010-08-05 06:57:20 +0000191 if (VisContext) FreeVisContext();
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000192 delete TheTargetAttributesSema;
Fariborz Jahanian743dda42011-04-25 18:49:15 +0000193 MSStructPragmaOn = false;
John McCallaab3e412010-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 Gregor5c6f10b2010-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 Gregor6fd55e02010-08-13 03:15:25 +0000206 = dyn_cast_or_null<ExternalSemaSource>(Context.getExternalSource()))
Douglas Gregor5c6f10b2010-08-12 22:51:45 +0000207 ExternalSema->ForgetSema();
Anton Korobeynikov55bcea12010-01-10 12:58:08 +0000208}
209
John McCall31168b02011-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 Lattner0e62c1c2011-07-23 10:55:15 +0000215 StringRef msg) {
John McCall31168b02011-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 Redlab238a72011-04-24 16:28:06 +0000235ASTMutationListener *Sema::getASTMutationListener() const {
236 return getASTConsumer().GetASTMutationListener();
237}
238
Chandler Carruthb4836ea2011-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 Smith507840d2011-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 Smith508ebf32011-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 Smith4a905b62011-11-10 23:32:36 +0000267 assert((VK == VK_RValue || !E->isRValue()) && "can't cast rvalue to lvalue");
Richard Smith508ebf32011-10-28 03:31:48 +0000268#endif
269
John Wiegley01296292011-04-08 18:41:53 +0000270 QualType ExprTy = Context.getCanonicalType(E->getType());
Mon P Wang74b32072008-09-04 08:38:01 +0000271 QualType TypeTy = Context.getCanonicalType(Ty);
Mike Stump11289f42009-09-09 15:08:12 +0000272
Mon P Wang74b32072008-09-04 08:38:01 +0000273 if (ExprTy == TypeTy)
John Wiegley01296292011-04-08 18:41:53 +0000274 return Owned(E);
Mike Stump11289f42009-09-09 15:08:12 +0000275
David Blaikiebbafb8a2012-03-11 07:00:24 +0000276 if (getLangOpts().ObjCAutoRefCount)
John McCall31168b02011-06-15 23:02:42 +0000277 CheckObjCARCConversion(SourceRange(), Ty, E, CCK);
278
Douglas Gregor88d292c2010-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 McCalle3027922010-08-25 11:45:40 +0000281 if (Kind == CK_DerivedToBase &&
John McCallcf142162010-08-07 06:22:56 +0000282 BasePathInvolvesVirtualBase(*BasePath)) {
John Wiegley01296292011-04-08 18:41:53 +0000283 QualType T = E->getType();
Douglas Gregor88d292c2010-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 Wiegley01296292011-04-08 18:41:53 +0000287 MarkVTableUsed(E->getLocStart(),
Douglas Gregor88d292c2010-05-13 16:44:06 +0000288 cast<CXXRecordDecl>(RecordTy->getDecl()));
289 }
Anders Carlsson4e66cda2009-09-15 05:28:24 +0000290
Richard Smith507840d2011-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 Redlc57d34b2010-07-20 04:20:21 +0000300}
301
Abramo Bagnara7ccce982011-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 McCall9320b872011-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 Bagnara7ccce982011-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 Kyrtzidis1b30d9c2010-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 Gregorec9fd132012-01-14 16:38:05 +0000333 DeclToCheck = FD->getMostRecentDecl();
Argyrios Kyrtzidis1b30d9c2010-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 Gregorec9fd132012-01-14 16:38:05 +0000347 DeclToCheck = VD->getMostRecentDecl();
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +0000348 if (DeclToCheck != VD)
349 return !SemaRef->ShouldWarnIfUnusedFileScopedDecl(DeclToCheck);
350 }
351
352 return false;
353}
354
John McCall83779672011-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 Lattner0e62c1c2011-07-23 10:55:15 +0000374 SmallVector<UndefinedInternal, 16> undefined;
John McCall83779672011-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 Lattner0e62c1c2011-07-23 10:55:15 +0000405 for (SmallVectorImpl<UndefinedInternal>::iterator
John McCall83779672011-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 Gregor1c4bfe52011-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 Jasper0baec5492012-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 Jaspere99c2bf2012-06-14 20:56:06 +0000451 else if (const FunctionTemplateDecl *F = dyn_cast<FunctionTemplateDecl>(*I))
452 Complete = F->getTemplatedDecl()->isDefined();
Daniel Jasper0baec5492012-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 Lattnerf4404402008-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 Kyrtzidis7f76d112010-08-05 09:48:16 +0000508void Sema::ActOnEndOfTranslationUnit() {
John McCall2ec85372012-05-07 06:16:41 +0000509 assert(DelayedDiagnostics.getCurrentPool() == NULL
510 && "reached end of translation unit with a pool attached?");
511
Douglas Gregor69f74f82011-08-25 22:30:56 +0000512 // Only complete translation units define vtables and perform implicit
513 // instantiations.
514 if (TUKind == TU_Complete) {
Argyrios Kyrtzidisb6c6a582012-02-07 16:50:53 +0000515 DiagnoseUseOfUnimplementedSelectors();
516
Chandler Carruth88bfa5e2010-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 Gregor32002192011-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 Carlssone771e762011-01-25 18:08:22 +0000524 "Should not see dependent types here!");
Douglas Gregor32002192011-07-28 00:53:40 +0000525 if (const CXXMethodDecl *KeyFunction = Context.getKeyFunction(*I)) {
Chandler Carruth88bfa5e2010-12-12 21:36:11 +0000526 const FunctionDecl *Definition = 0;
527 if (KeyFunction->hasBody(Definition))
Douglas Gregor32002192011-07-28 00:53:40 +0000528 MarkVTableUsed(Definition->getLocation(), *I, true);
Chandler Carruth88bfa5e2010-12-12 21:36:11 +0000529 }
530 }
531
Nick Lewycky67c4d0f2011-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 Kyrtzidis7f76d112010-08-05 09:48:16 +0000536
Nick Lewycky67c4d0f2011-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 Lewyckyef4f4562010-11-25 00:35:20 +0000548 }
Anders Carlsson82fccd02009-12-07 08:24:59 +0000549
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +0000550 // Remove file scoped decls that turned out to be used.
Douglas Gregora94a1542011-07-27 21:45:57 +0000551 UnusedFileScopedDecls.erase(std::remove_if(UnusedFileScopedDecls.begin(0,
552 true),
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +0000553 UnusedFileScopedDecls.end(),
554 std::bind1st(std::ptr_fun(ShouldRemoveFromUnused),
555 this)),
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +0000556 UnusedFileScopedDecls.end());
Douglas Gregorfb8b27d2010-04-09 17:41:13 +0000557
Douglas Gregor69f74f82011-08-25 22:30:56 +0000558 if (TUKind == TU_Prefix) {
559 // Translation unit prefixes don't need any of the checking below.
Douglas Gregorb14904c2010-08-13 22:48:40 +0000560 TUScope = 0;
Argyrios Kyrtzidisee1afa32010-08-05 09:48:08 +0000561 return;
Douglas Gregorb14904c2010-08-13 22:48:40 +0000562 }
Argyrios Kyrtzidisee1afa32010-08-05 09:48:08 +0000563
Chris Lattner0c797362009-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 Gregor1c4bfe52011-07-28 18:09:57 +0000567 LoadExternalWeakUndeclaredIdentifiers();
Ryan Flynn7d470f32009-07-30 03:15:39 +0000568 for (llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator
Chris Lattner0c797362009-09-08 18:19:27 +0000569 I = WeakUndeclaredIdentifiers.begin(),
570 E = WeakUndeclaredIdentifiers.end(); I != E; ++I) {
571 if (I->second.getUsed()) continue;
Mike Stump11289f42009-09-09 15:08:12 +0000572
Chris Lattner0c797362009-09-08 18:19:27 +0000573 Diag(I->second.getLocation(), diag::warn_weak_identifier_undeclared)
574 << I->first;
Ryan Flynn7d470f32009-07-30 03:15:39 +0000575 }
576
Douglas Gregor69f74f82011-08-25 22:30:56 +0000577 if (TUKind == TU_Module) {
Douglas Gregor2b82c2a2011-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 Gregoreb90e832012-01-04 23:32:19 +0000596 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
597 SubEnd = Mod->submodule_end();
Douglas Gregor2b82c2a2011-12-02 01:47:07 +0000598 Sub != SubEnd; ++Sub) {
Douglas Gregoreb90e832012-01-04 23:32:19 +0000599 Stack.push_back(*Sub);
Douglas Gregor2b82c2a2011-12-02 01:47:07 +0000600 }
601 }
602 }
603
Douglas Gregor69f74f82011-08-25 22:30:56 +0000604 // Modules don't need any of the checking below.
605 TUScope = 0;
606 return;
607 }
608
Douglas Gregor0760fa12009-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 Redl35351a92010-01-31 22:27:38 +0000620 llvm::SmallSet<VarDecl *, 32> Seen;
Douglas Gregoreb08bd42011-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 Stump11289f42009-09-09 15:08:12 +0000627
Sebastian Redl35351a92010-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 Gregorbeecd582009-04-21 17:11:58 +0000632 continue;
633
Mike Stump11289f42009-09-09 15:08:12 +0000634 if (const IncompleteArrayType *ArrayT
Douglas Gregorbeecd582009-04-21 17:11:58 +0000635 = Context.getAsIncompleteArrayType(VD->getType())) {
Mike Stump11289f42009-09-09 15:08:12 +0000636 if (RequireCompleteType(VD->getLocation(),
Douglas Gregorbeecd582009-04-21 17:11:58 +0000637 ArrayT->getElementType(),
Chris Lattner0c797362009-09-08 18:19:27 +0000638 diag::err_tentative_def_incomplete_type_arr)) {
Douglas Gregorbeecd582009-04-21 17:11:58 +0000639 VD->setInvalidDecl();
Chris Lattner0c797362009-09-08 18:19:27 +0000640 continue;
Douglas Gregor0760fa12009-03-10 23:43:53 +0000641 }
Mike Stump11289f42009-09-09 15:08:12 +0000642
Chris Lattner0c797362009-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 McCallc5b82252009-10-16 00:14:28 +0000646 QualType T = Context.getConstantArrayType(ArrayT->getElementType(),
647 One, ArrayType::Normal, 0);
Chris Lattner0c797362009-09-08 18:19:27 +0000648 VD->setType(T);
Mike Stump11289f42009-09-09 15:08:12 +0000649 } else if (RequireCompleteType(VD->getLocation(), VD->getType(),
Douglas Gregorbeecd582009-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 Gregor0760fa12009-03-10 23:43:53 +0000657 }
Argyrios Kyrtzidis77fd99f2011-01-31 07:04:37 +0000658
Alexis Hunte2622992011-05-05 00:05:47 +0000659 if (LangOpts.CPlusPlus0x &&
660 Diags.getDiagnosticLevel(diag::warn_delegating_ctor_cycle,
661 SourceLocation())
David Blaikie9c902b52011-09-25 23:23:43 +0000662 != DiagnosticsEngine::Ignored)
Alexis Hunt6118d662011-05-04 05:57:24 +0000663 CheckDelegatingCtorCycles();
664
Argyrios Kyrtzidis77fd99f2011-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 Gregora94a1542011-07-27 21:45:57 +0000669 for (UnusedFileScopedDeclsType::iterator
670 I = UnusedFileScopedDecls.begin(ExternalSource),
Argyrios Kyrtzidis77fd99f2011-01-31 07:04:37 +0000671 E = UnusedFileScopedDecls.end(); I != E; ++I) {
Douglas Gregora94a1542011-07-27 21:45:57 +0000672 if (ShouldRemoveFromUnused(this, *I))
673 continue;
674
Argyrios Kyrtzidis77fd99f2011-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 Kyrtzidise0283142011-03-03 17:47:42 +0000679 if (DiagD->isDeleted())
680 continue; // Deleted functions are supposed to be unused.
Argyrios Kyrtzidis16180232011-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 Kyrtzidis77fd99f2011-01-31 07:04:37 +0000694 } else {
695 const VarDecl *DiagD = cast<VarDecl>(*I)->getDefinition();
696 if (!DiagD)
697 DiagD = cast<VarDecl>(*I);
Argyrios Kyrtzidis16180232011-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 Kyrtzidis77fd99f2011-01-31 07:04:37 +0000705 }
Argyrios Kyrtzidis1b30d9c2010-08-15 01:15:20 +0000706 }
John McCall83779672011-02-19 02:53:41 +0000707
708 checkUndefinedInternals(*this);
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +0000709 }
Douglas Gregorb14904c2010-08-13 22:48:40 +0000710
Daniel Jasper0baec5492012-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 Smithb2bc2e62011-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 Gregorb14904c2010-08-13 22:48:40 +0000734 TUScope = 0;
Chris Lattnerf4404402008-08-23 03:19:52 +0000735}
736
737
Chris Lattnerc11438c2006-08-18 05:17:52 +0000738//===----------------------------------------------------------------------===//
Chris Lattnereaafe1222006-11-10 05:17:58 +0000739// Helper functions.
740//===----------------------------------------------------------------------===//
741
Anders Carlssonb26ab812009-08-08 17:45:02 +0000742DeclContext *Sema::getFunctionLevelDeclContext() {
John McCallb8788012009-12-19 10:53:49 +0000743 DeclContext *DC = CurContext;
Mike Stump11289f42009-09-09 15:08:12 +0000744
Eli Friedman73a04092012-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 Gregor1a22d282012-02-12 17:34:23 +0000749 cast<CXXMethodDecl>(DC)->getOverloadedOperator() == OO_Call &&
Eli Friedman73a04092012-01-07 04:59:52 +0000750 cast<CXXRecordDecl>(DC->getParent())->isLambda()) {
751 DC = DC->getParent()->getParent();
752 }
753 else break;
754 }
Mike Stump11289f42009-09-09 15:08:12 +0000755
Anders Carlssonb26ab812009-08-08 17:45:02 +0000756 return DC;
757}
758
Chris Lattner79413952008-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 Carlssonb26ab812009-08-08 17:45:02 +0000763 DeclContext *DC = getFunctionLevelDeclContext();
Chris Lattner79413952008-12-04 23:50:19 +0000764 return dyn_cast<FunctionDecl>(DC);
765}
766
Daniel Dunbar6e8aa532008-08-11 05:35:13 +0000767ObjCMethodDecl *Sema::getCurMethodDecl() {
Anders Carlssonb26ab812009-08-08 17:45:02 +0000768 DeclContext *DC = getFunctionLevelDeclContext();
Steve Naroffecf2bb82008-11-17 16:28:52 +0000769 return dyn_cast<ObjCMethodDecl>(DC);
Daniel Dunbar6e8aa532008-08-11 05:35:13 +0000770}
Chris Lattner79413952008-12-04 23:50:19 +0000771
772NamedDecl *Sema::getCurFunctionOrMethodDecl() {
Anders Carlssonb26ab812009-08-08 17:45:02 +0000773 DeclContext *DC = getFunctionLevelDeclContext();
Chris Lattner79413952008-12-04 23:50:19 +0000774 if (isa<ObjCMethodDecl>(DC) || isa<FunctionDecl>(DC))
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000775 return cast<NamedDecl>(DC);
Chris Lattner79413952008-12-04 23:50:19 +0000776 return 0;
777}
778
Daniel Dunbard671ab92012-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 Kyrtzidisd0040642010-11-18 20:06:41 +0000790 case DiagnosticIDs::SFINAE_Report:
Richard Smith38c0e042011-10-19 00:07:01 +0000791 // We'll report the diagnostic below.
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000792 break;
793
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000794 case DiagnosticIDs::SFINAE_SubstitutionFailure:
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000795 // Count this failure so that we know that template argument deduction
796 // has failed.
Daniel Dunbard671ab92012-03-14 09:49:32 +0000797 ++NumSFINAEErrors;
Richard Smith9ca64612012-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 Dunbard671ab92012-03-14 09:49:32 +0000807 Diags.setLastDiagnosticIgnored();
808 Diags.Clear();
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000809 return;
810
Richard Smith38c0e042011-10-19 00:07:01 +0000811 case DiagnosticIDs::SFINAE_AccessControl: {
812 // Per C++ Core Issue 1170, access control is part of SFINAE.
Daniel Dunbara25002f2012-03-13 18:30:54 +0000813 // Additionally, the AccessCheckingSFINAE flag can be used to temporarily
Richard Smith38c0e042011-10-19 00:07:01 +0000814 // make access control a part of SFINAE for the purposes of checking
815 // type traits.
Daniel Dunbard671ab92012-03-14 09:49:32 +0000816 if (!AccessCheckingSFINAE && !getLangOpts().CPlusPlus0x)
Richard Smith38c0e042011-10-19 00:07:01 +0000817 break;
818
Daniel Dunbard671ab92012-03-14 09:49:32 +0000819 SourceLocation Loc = Diags.getCurrentDiagLoc();
Richard Smith38c0e042011-10-19 00:07:01 +0000820
821 // Suppress this diagnostic.
Daniel Dunbard671ab92012-03-14 09:49:32 +0000822 ++NumSFINAEErrors;
Richard Smith9ca64612012-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 Dunbard671ab92012-03-14 09:49:32 +0000832 Diags.setLastDiagnosticIgnored();
833 Diags.Clear();
Richard Smith38c0e042011-10-19 00:07:01 +0000834
835 // Now the diagnostic state is clear, produce a C++98 compatibility
836 // warning.
Daniel Dunbard671ab92012-03-14 09:49:32 +0000837 Diag(Loc, diag::warn_cxx98_compat_sfinae_access_control);
Richard Smith38c0e042011-10-19 00:07:01 +0000838
839 // The last diagnostic which Sema produced was ignored. Suppress any
840 // notes attached to it.
Daniel Dunbard671ab92012-03-14 09:49:32 +0000841 Diags.setLastDiagnosticIgnored();
Richard Smith38c0e042011-10-19 00:07:01 +0000842 return;
843 }
844
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000845 case DiagnosticIDs::SFINAE_Suppress:
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000846 // Make a copy of this suppressed diagnostic and store it with the
847 // template-deduction information;
Richard Smith9ca64612012-05-07 09:03:25 +0000848 if (*Info) {
849 Diagnostic DiagInfo(&Diags);
Douglas Gregoredb76852011-01-27 22:31:44 +0000850 (*Info)->addSuppressedDiagnostic(DiagInfo.getLocation(),
Richard Smith9ca64612012-05-07 09:03:25 +0000851 PartialDiagnostic(DiagInfo, Context.getDiagAllocator()));
852 }
853
854 // Suppress this diagnostic.
Daniel Dunbard671ab92012-03-14 09:49:32 +0000855 Diags.setLastDiagnosticIgnored();
856 Diags.Clear();
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000857 return;
858 }
859 }
860
Douglas Gregor75acd922011-09-27 23:30:47 +0000861 // Set up the context's printing policy based on our current state.
Daniel Dunbard671ab92012-03-14 09:49:32 +0000862 Context.setPrintingPolicy(getPrintingPolicy());
Douglas Gregor75acd922011-09-27 23:30:47 +0000863
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000864 // Emit the diagnostic.
Daniel Dunbard671ab92012-03-14 09:49:32 +0000865 if (!Diags.EmitCurrentDiagnostic())
Douglas Gregor33834512009-06-14 07:33:30 +0000866 return;
Mike Stump11289f42009-09-09 15:08:12 +0000867
Douglas Gregorda17bd32009-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 Kyrtzidisd0040642010-11-18 20:06:41 +0000872 if (!DiagnosticIDs::isBuiltinNote(DiagID) &&
Daniel Dunbard671ab92012-03-14 09:49:32 +0000873 !ActiveTemplateInstantiations.empty() &&
874 ActiveTemplateInstantiations.back()
875 != LastTemplateInstantiationErrorContext) {
876 PrintInstantiationStack();
877 LastTemplateInstantiationErrorContext = ActiveTemplateInstantiations.back();
Douglas Gregorda17bd32009-03-20 22:48:49 +0000878 }
879}
Douglas Gregorc6d5edd2009-07-02 17:08:52 +0000880
Anders Carlssonf68079e2009-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 Stump11289f42009-09-09 15:08:12 +0000885
Anders Carlssonf68079e2009-08-26 22:33:56 +0000886 return Builder;
887}
888
Chandler Carruthc22845a2011-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 McCall462c0552011-03-08 07:59:04 +0000891/// If one is found, returns true and sets the location to that
Chandler Carruthc22845a2011-07-26 05:40:03 +0000892/// expansion loc.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000893bool Sema::findMacroSpelling(SourceLocation &locref, StringRef name) {
John McCall462c0552011-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 Carruthc22845a2011-07-26 05:40:03 +0000898 // expansions, so just jump to the expansion location.
Chandler Carruth35f53202011-07-25 16:49:02 +0000899 loc = getSourceManager().getExpansionLoc(loc);
John McCall462c0552011-03-08 07:59:04 +0000900
901 // If that's written with the name, stop here.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000902 SmallVector<char, 16> buffer;
John McCall462c0552011-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 Gregor0be31a22010-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 Redlcaef9ab2010-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 Gregor0be31a22010-07-02 17:43:08 +0000934 }
935
936 return 0;
937}
Douglas Gregor9a28e842010-03-01 23:15:13 +0000938
939/// \brief Enter a new function scope
940void Sema::PushFunctionScope() {
John McCallaab3e412010-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 Kyrtzidisf51ec1d2010-11-19 00:19:15 +0000944 FunctionScopes.back()->Clear();
John McCallaab3e412010-08-25 08:40:02 +0000945 FunctionScopes.push_back(FunctionScopes.back());
Douglas Gregor9a28e842010-03-01 23:15:13 +0000946 return;
947 }
948
Argyrios Kyrtzidisf51ec1d2010-11-19 00:19:15 +0000949 FunctionScopes.push_back(new FunctionScopeInfo(getDiagnostics()));
Douglas Gregor9a28e842010-03-01 23:15:13 +0000950}
951
952void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) {
Argyrios Kyrtzidisf51ec1d2010-11-19 00:19:15 +0000953 FunctionScopes.push_back(new BlockScopeInfo(getDiagnostics(),
Douglas Gregor9a28e842010-03-01 23:15:13 +0000954 BlockScope, Block));
955}
956
Douglas Gregor21f46922012-02-08 20:17:14 +0000957void Sema::PushLambdaScope(CXXRecordDecl *Lambda,
958 CXXMethodDecl *CallOperator) {
959 FunctionScopes.push_back(new LambdaScopeInfo(getDiagnostics(), Lambda,
960 CallOperator));
Eli Friedman71c80552012-01-05 03:35:19 +0000961}
962
963void Sema::PopFunctionScopeInfo(const AnalysisBasedWarnings::Policy *WP,
964 const Decl *D, const BlockExpr *blkExpr) {
Ted Kremenek1767a272011-02-23 01:51:48 +0000965 FunctionScopeInfo *Scope = FunctionScopes.pop_back_val();
John McCallaab3e412010-08-25 08:40:02 +0000966 assert(!FunctionScopes.empty() && "mismatched push/pop!");
Ted Kremenek1767a272011-02-23 01:51:48 +0000967
968 // Issue any analysis-based warnings.
969 if (WP && D)
Ted Kremenekcc7f1f82011-02-23 01:51:53 +0000970 AnalysisWarnings.IssueWarnings(*WP, Scope, D, blkExpr);
Ted Kremenek3427fac2011-02-23 01:52:04 +0000971 else {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000972 for (SmallVectorImpl<sema::PossiblyUnreachableDiag>::iterator
Ted Kremenek3427fac2011-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 Kremenek1767a272011-02-23 01:51:48 +0000980
Ted Kremenek3427fac2011-02-23 01:52:04 +0000981 if (FunctionScopes.back() != Scope) {
John McCallaab3e412010-08-25 08:40:02 +0000982 delete Scope;
Ted Kremenek3427fac2011-02-23 01:52:04 +0000983 }
Douglas Gregor9a28e842010-03-01 23:15:13 +0000984}
985
Dmitri Gribenko800ddf32012-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 Gregor9a28e842010-03-01 23:15:13 +0000997/// \brief Determine whether any errors occurred within this function/method/
998/// block.
John McCall31168b02011-06-15 23:02:42 +0000999bool Sema::hasAnyUnrecoverableErrorsInThisFunction() const {
1000 return getCurFunction()->ErrorTrap.hasUnrecoverableErrorOccurred();
Douglas Gregor9a28e842010-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 McCall75b960e2010-06-01 09:23:16 +00001009
Eli Friedman4817cf72012-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
Dmitri Gribenkoaab83832012-06-20 00:34:58 +00001017void Sema::ActOnComment(SourceRange Comment) {
1018 RawComment RC(SourceMgr, Comment);
1019 Context.addComment(RC);
1020}
1021
John McCall75b960e2010-06-01 09:23:16 +00001022// Pin this vtable to this file.
1023ExternalSemaSource::~ExternalSemaSource() {}
John McCallfaf5fb42010-08-26 23:41:50 +00001024
Douglas Gregore1716012012-01-25 00:49:42 +00001025void ExternalSemaSource::ReadMethodPool(Selector Sel) { }
Sebastian Redlc1ca90a2010-09-28 20:23:00 +00001026
Douglas Gregorc2fa1692011-06-28 16:20:02 +00001027void ExternalSemaSource::ReadKnownNamespaces(
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001028 SmallVectorImpl<NamespaceDecl *> &Namespaces) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00001029}
1030
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001031void PrettyDeclStackTraceEntry::print(raw_ostream &OS) const {
John McCallfaf5fb42010-08-26 23:41:50 +00001032 SourceLocation Loc = this->Loc;
1033 if (!Loc.isValid() && TheDecl) Loc = TheDecl->getLocation();
1034 if (Loc.isValid()) {
1035 Loc.print(OS, S.getSourceManager());
1036 OS << ": ";
1037 }
1038 OS << Message;
1039
1040 if (TheDecl && isa<NamedDecl>(TheDecl)) {
1041 std::string Name = cast<NamedDecl>(TheDecl)->getNameAsString();
1042 if (!Name.empty())
1043 OS << " '" << Name << '\'';
1044 }
1045
1046 OS << '\n';
1047}
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001048
1049/// \brief Figure out if an expression could be turned into a call.
1050///
1051/// Use this when trying to recover from an error where the programmer may have
1052/// written just the name of a function instead of actually calling it.
1053///
1054/// \param E - The expression to examine.
1055/// \param ZeroArgCallReturnTy - If the expression can be turned into a call
1056/// with no arguments, this parameter is set to the type returned by such a
1057/// call; otherwise, it is set to an empty QualType.
John McCall50a2c2c2011-10-11 23:14:30 +00001058/// \param OverloadSet - If the expression is an overloaded function
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001059/// name, this parameter is populated with the decls of the various overloads.
1060bool Sema::isExprCallable(const Expr &E, QualType &ZeroArgCallReturnTy,
John McCall50a2c2c2011-10-11 23:14:30 +00001061 UnresolvedSetImpl &OverloadSet) {
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001062 ZeroArgCallReturnTy = QualType();
John McCall50a2c2c2011-10-11 23:14:30 +00001063 OverloadSet.clear();
1064
1065 if (E.getType() == Context.OverloadTy) {
1066 OverloadExpr::FindResult FR = OverloadExpr::find(const_cast<Expr*>(&E));
1067 const OverloadExpr *Overloads = FR.Expression;
1068
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001069 for (OverloadExpr::decls_iterator it = Overloads->decls_begin(),
1070 DeclsEnd = Overloads->decls_end(); it != DeclsEnd; ++it) {
John McCall50a2c2c2011-10-11 23:14:30 +00001071 OverloadSet.addDecl(*it);
1072
1073 // Check whether the function is a non-template which takes no
1074 // arguments.
1075 if (const FunctionDecl *OverloadDecl
1076 = dyn_cast<FunctionDecl>((*it)->getUnderlyingDecl())) {
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001077 if (OverloadDecl->getMinRequiredArguments() == 0)
1078 ZeroArgCallReturnTy = OverloadDecl->getResultType();
1079 }
1080 }
John McCall50a2c2c2011-10-11 23:14:30 +00001081
Douglas Gregorf4a06c22011-10-13 18:26:27 +00001082 // Ignore overloads that are pointer-to-member constants.
1083 if (FR.HasFormOfMemberPointer)
John McCall50a2c2c2011-10-11 23:14:30 +00001084 return false;
1085
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001086 return true;
1087 }
1088
John McCall50a2c2c2011-10-11 23:14:30 +00001089 if (const DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E.IgnoreParens())) {
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001090 if (const FunctionDecl *Fun = dyn_cast<FunctionDecl>(DeclRef->getDecl())) {
1091 if (Fun->getMinRequiredArguments() == 0)
1092 ZeroArgCallReturnTy = Fun->getResultType();
1093 return true;
1094 }
1095 }
1096
1097 // We don't have an expression that's convenient to get a FunctionDecl from,
1098 // but we can at least check if the type is "function of 0 arguments".
1099 QualType ExprTy = E.getType();
1100 const FunctionType *FunTy = NULL;
Matt Beaumont-Gay330a5b42011-05-05 00:59:35 +00001101 QualType PointeeTy = ExprTy->getPointeeType();
1102 if (!PointeeTy.isNull())
1103 FunTy = PointeeTy->getAs<FunctionType>();
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001104 if (!FunTy)
1105 FunTy = ExprTy->getAs<FunctionType>();
1106 if (!FunTy && ExprTy == Context.BoundMemberTy) {
1107 // Look for the bound-member type. If it's still overloaded, give up,
1108 // although we probably should have fallen into the OverloadExpr case above
1109 // if we actually have an overloaded bound member.
1110 QualType BoundMemberTy = Expr::findBoundMemberType(&E);
1111 if (!BoundMemberTy.isNull())
1112 FunTy = BoundMemberTy->castAs<FunctionType>();
1113 }
1114
1115 if (const FunctionProtoType *FPT =
1116 dyn_cast_or_null<FunctionProtoType>(FunTy)) {
1117 if (FPT->getNumArgs() == 0)
1118 ZeroArgCallReturnTy = FunTy->getResultType();
1119 return true;
1120 }
1121 return false;
1122}
1123
1124/// \brief Give notes for a set of overloads.
1125///
1126/// A companion to isExprCallable. In cases when the name that the programmer
1127/// wrote was an overloaded function, we may be able to make some guesses about
1128/// plausible overloads based on their return types; such guesses can be handed
1129/// off to this method to be emitted as notes.
1130///
1131/// \param Overloads - The overloads to note.
1132/// \param FinalNoteLoc - If we've suppressed printing some overloads due to
1133/// -fshow-overloads=best, this is the location to attach to the note about too
1134/// many candidates. Typically this will be the location of the original
1135/// ill-formed expression.
John McCall50a2c2c2011-10-11 23:14:30 +00001136static void noteOverloads(Sema &S, const UnresolvedSetImpl &Overloads,
1137 const SourceLocation FinalNoteLoc) {
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001138 int ShownOverloads = 0;
1139 int SuppressedOverloads = 0;
1140 for (UnresolvedSetImpl::iterator It = Overloads.begin(),
1141 DeclsEnd = Overloads.end(); It != DeclsEnd; ++It) {
1142 // FIXME: Magic number for max shown overloads stolen from
1143 // OverloadCandidateSet::NoteCandidates.
1144 if (ShownOverloads >= 4 &&
John McCall50a2c2c2011-10-11 23:14:30 +00001145 S.Diags.getShowOverloads() == DiagnosticsEngine::Ovl_Best) {
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001146 ++SuppressedOverloads;
1147 continue;
1148 }
John McCall50a2c2c2011-10-11 23:14:30 +00001149
1150 NamedDecl *Fn = (*It)->getUnderlyingDecl();
Abramo Bagnaradc1646d2011-11-15 21:43:28 +00001151 S.Diag(Fn->getLocation(), diag::note_possible_target_of_call);
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001152 ++ShownOverloads;
1153 }
John McCall50a2c2c2011-10-11 23:14:30 +00001154
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001155 if (SuppressedOverloads)
John McCall50a2c2c2011-10-11 23:14:30 +00001156 S.Diag(FinalNoteLoc, diag::note_ovl_too_many_candidates)
1157 << SuppressedOverloads;
1158}
1159
1160static void notePlausibleOverloads(Sema &S, SourceLocation Loc,
1161 const UnresolvedSetImpl &Overloads,
1162 bool (*IsPlausibleResult)(QualType)) {
1163 if (!IsPlausibleResult)
1164 return noteOverloads(S, Overloads, Loc);
1165
1166 UnresolvedSet<2> PlausibleOverloads;
1167 for (OverloadExpr::decls_iterator It = Overloads.begin(),
1168 DeclsEnd = Overloads.end(); It != DeclsEnd; ++It) {
1169 const FunctionDecl *OverloadDecl = cast<FunctionDecl>(*It);
1170 QualType OverloadResultTy = OverloadDecl->getResultType();
1171 if (IsPlausibleResult(OverloadResultTy))
1172 PlausibleOverloads.addDecl(It.getDecl());
1173 }
1174 noteOverloads(S, PlausibleOverloads, Loc);
1175}
1176
1177/// Determine whether the given expression can be called by just
1178/// putting parentheses after it. Notably, expressions with unary
1179/// operators can't be because the unary operator will start parsing
1180/// outside the call.
1181static bool IsCallableWithAppend(Expr *E) {
1182 E = E->IgnoreImplicit();
1183 return (!isa<CStyleCastExpr>(E) &&
1184 !isa<UnaryOperator>(E) &&
1185 !isa<BinaryOperator>(E) &&
1186 !isa<CXXOperatorCallExpr>(E));
1187}
1188
1189bool Sema::tryToRecoverWithCall(ExprResult &E, const PartialDiagnostic &PD,
1190 bool ForceComplain,
1191 bool (*IsPlausibleResult)(QualType)) {
1192 SourceLocation Loc = E.get()->getExprLoc();
1193 SourceRange Range = E.get()->getSourceRange();
1194
1195 QualType ZeroArgCallTy;
1196 UnresolvedSet<4> Overloads;
1197 if (isExprCallable(*E.get(), ZeroArgCallTy, Overloads) &&
1198 !ZeroArgCallTy.isNull() &&
1199 (!IsPlausibleResult || IsPlausibleResult(ZeroArgCallTy))) {
1200 // At this point, we know E is potentially callable with 0
1201 // arguments and that it returns something of a reasonable type,
1202 // so we can emit a fixit and carry on pretending that E was
1203 // actually a CallExpr.
1204 SourceLocation ParenInsertionLoc =
1205 PP.getLocForEndOfToken(Range.getEnd());
1206 Diag(Loc, PD)
1207 << /*zero-arg*/ 1 << Range
1208 << (IsCallableWithAppend(E.get())
1209 ? FixItHint::CreateInsertion(ParenInsertionLoc, "()")
1210 : FixItHint());
1211 notePlausibleOverloads(*this, Loc, Overloads, IsPlausibleResult);
1212
1213 // FIXME: Try this before emitting the fixit, and suppress diagnostics
1214 // while doing so.
1215 E = ActOnCallExpr(0, E.take(), ParenInsertionLoc,
1216 MultiExprArg(*this, 0, 0),
1217 ParenInsertionLoc.getLocWithOffset(1));
1218 return true;
1219 }
1220
1221 if (!ForceComplain) return false;
1222
1223 Diag(Loc, PD) << /*not zero-arg*/ 0 << Range;
1224 notePlausibleOverloads(*this, Loc, Overloads, IsPlausibleResult);
1225 E = ExprError();
1226 return true;
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +00001227}