Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the actions class which performs semantic analysis and |
| 11 | // builds an AST out of a parse stream. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
John McCall | 9c3087b | 2010-08-26 02:13:20 +0000 | [diff] [blame] | 15 | #include "clang/Sema/SemaInternal.h" |
| 16 | #include "clang/Sema/DelayedDiagnostic.h" |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 17 | #include "TargetAttributesSema.h" |
Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DenseMap.h" |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallSet.h" |
John McCall | 680523a | 2009-11-07 03:30:10 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/APFloat.h" |
John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 21 | #include "llvm/Support/CrashRecoveryContext.h" |
John McCall | 5f1e094 | 2010-08-24 08:50:51 +0000 | [diff] [blame] | 22 | #include "clang/Sema/CXXFieldCollector.h" |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 23 | #include "clang/Sema/TemplateDeduction.h" |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 24 | #include "clang/Sema/ExternalSemaSource.h" |
Sebastian Redl | 8c84571 | 2010-09-28 20:23:00 +0000 | [diff] [blame] | 25 | #include "clang/Sema/ObjCMethodList.h" |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 26 | #include "clang/Sema/PrettyDeclStackTrace.h" |
John McCall | 5f1e094 | 2010-08-24 08:50:51 +0000 | [diff] [blame] | 27 | #include "clang/Sema/Scope.h" |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 28 | #include "clang/Sema/ScopeInfo.h" |
Douglas Gregor | 46ea32a | 2010-08-12 22:51:45 +0000 | [diff] [blame] | 29 | #include "clang/Sema/SemaConsumer.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 30 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | 79a9a34 | 2010-02-09 22:26:47 +0000 | [diff] [blame] | 31 | #include "clang/AST/ASTDiagnostic.h" |
John McCall | 384aff8 | 2010-08-25 07:42:41 +0000 | [diff] [blame] | 32 | #include "clang/AST/DeclCXX.h" |
Daniel Jasper | f8cc02e | 2012-06-06 08:32:04 +0000 | [diff] [blame] | 33 | #include "clang/AST/DeclFriend.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 34 | #include "clang/AST/DeclObjC.h" |
Daniel Dunbar | e91593e | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 35 | #include "clang/AST/Expr.h" |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 36 | #include "clang/AST/ExprCXX.h" |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 37 | #include "clang/AST/StmtCXX.h" |
Douglas Gregor | 90db260 | 2011-12-02 01:47:07 +0000 | [diff] [blame] | 38 | #include "clang/Lex/HeaderSearch.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 39 | #include "clang/Lex/Preprocessor.h" |
Douglas Gregor | f7572a6 | 2011-09-20 18:13:03 +0000 | [diff] [blame] | 40 | #include "clang/Basic/FileManager.h" |
Anders Carlsson | 91a0cc9 | 2009-08-26 22:33:56 +0000 | [diff] [blame] | 41 | #include "clang/Basic/PartialDiagnostic.h" |
Chris Lattner | 4d150c8 | 2009-04-30 06:18:40 +0000 | [diff] [blame] | 42 | #include "clang/Basic/TargetInfo.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 43 | using namespace clang; |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 44 | using namespace sema; |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 45 | |
| 46 | FunctionScopeInfo::~FunctionScopeInfo() { } |
| 47 | |
Argyrios Kyrtzidis | 8fc32d2 | 2010-11-19 00:19:15 +0000 | [diff] [blame] | 48 | void FunctionScopeInfo::Clear() { |
John McCall | b60a77e | 2010-08-01 00:26:45 +0000 | [diff] [blame] | 49 | HasBranchProtectedScope = false; |
| 50 | HasBranchIntoScope = false; |
| 51 | HasIndirectGoto = false; |
| 52 | |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 53 | SwitchStack.clear(); |
Douglas Gregor | 5077c38 | 2010-05-15 06:01:05 +0000 | [diff] [blame] | 54 | Returns.clear(); |
Argyrios Kyrtzidis | 8fc32d2 | 2010-11-19 00:19:15 +0000 | [diff] [blame] | 55 | ErrorTrap.reset(); |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 56 | PossiblyUnreachableDiags.clear(); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | BlockScopeInfo::~BlockScopeInfo() { } |
Eli Friedman | ec9ea72 | 2012-01-05 03:35:19 +0000 | [diff] [blame] | 60 | LambdaScopeInfo::~LambdaScopeInfo() { } |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 61 | |
Argyrios Kyrtzidis | ea8c59a | 2012-01-17 02:15:51 +0000 | [diff] [blame] | 62 | PrintingPolicy Sema::getPrintingPolicy(const ASTContext &Context, |
| 63 | const Preprocessor &PP) { |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 64 | PrintingPolicy Policy = Context.getPrintingPolicy(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 65 | Policy.Bool = Context.getLangOpts().Bool; |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 66 | 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 Gregor | c1a3e5e | 2010-08-25 18:07:12 +0000 | [diff] [blame] | 77 | void Sema::ActOnTranslationUnitScope(Scope *S) { |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 78 | TUScope = S; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 79 | PushDeclContext(S, Context.getTranslationUnitDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 80 | |
John McCall | c7e04da | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 81 | VAListTagName = PP.getIdentifierInfo("__va_list_tag"); |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Douglas Gregor | f807fe0 | 2009-04-14 16:27:31 +0000 | [diff] [blame] | 84 | Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, |
Douglas Gregor | 467dc88 | 2011-08-25 22:30:56 +0000 | [diff] [blame] | 85 | TranslationUnitKind TUKind, |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 86 | CodeCompleteConsumer *CodeCompleter) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 87 | : TheTargetAttributesSema(0), FPFeatures(pp.getLangOpts()), |
| 88 | LangOpts(pp.getLangOpts()), PP(pp), Context(ctxt), Consumer(consumer), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 89 | Diags(PP.getDiagnostics()), SourceMgr(PP.getSourceManager()), |
Chandler Carruth | 5d98994 | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 90 | CollectStats(false), ExternalSource(0), CodeCompleter(CodeCompleter), |
Argyrios Kyrtzidis | 3a38744 | 2011-10-06 23:23:20 +0000 | [diff] [blame] | 91 | CurContext(0), OriginalLexicalContext(0), |
| 92 | PackContext(0), MSStructPragmaOn(false), VisContext(0), |
John McCall | 80ee6e8 | 2011-11-10 05:35:25 +0000 | [diff] [blame] | 93 | ExprNeedsCleanups(false), LateTemplateParser(0), OpaqueParser(0), |
Sebastian Redl | 395e04d | 2012-01-17 22:49:33 +0000 | [diff] [blame] | 94 | IdResolver(pp), StdInitializerList(0), CXXTypeInfoDecl(0), MSVCGuidDecl(0), |
Benjamin Kramer | 471131a | 2012-04-22 20:43:35 +0000 | [diff] [blame] | 95 | NSNumberDecl(0), |
| 96 | NSStringDecl(0), StringWithUTF8StringMethod(0), |
| 97 | NSArrayDecl(0), ArrayWithObjectsMethod(0), |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 98 | NSDictionaryDecl(0), DictionaryWithObjectsMethod(0), |
Bill Wendling | b7566d8 | 2010-09-08 21:30:16 +0000 | [diff] [blame] | 99 | GlobalNewDeleteDeclared(false), |
Nico Weber | 9a1ecf0 | 2011-08-22 17:25:57 +0000 | [diff] [blame] | 100 | ObjCShouldCallSuperDealloc(false), |
Nico Weber | 80cb6e6 | 2011-08-28 22:35:17 +0000 | [diff] [blame] | 101 | ObjCShouldCallSuperFinalize(false), |
Douglas Gregor | 467dc88 | 2011-08-25 22:30:56 +0000 | [diff] [blame] | 102 | TUKind(TUKind), |
John McCall | 1348967 | 2012-05-07 06:16:58 +0000 | [diff] [blame] | 103 | NumSFINAEErrors(0), InFunctionDeclarator(0), |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 104 | AccessCheckingSFINAE(false), InNonInstantiationSFINAEContext(false), |
Douglas Gregor | 8491ffe | 2010-12-20 22:05:00 +0000 | [diff] [blame] | 105 | NonInstantiationEntries(0), ArgumentPackSubstitutionIndex(-1), |
| 106 | CurrentInstantiationScope(0), TyposCorrected(0), |
Bill Wendling | b7566d8 | 2010-09-08 21:30:16 +0000 | [diff] [blame] | 107 | AnalysisWarnings(*this) |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 108 | { |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 109 | TUScope = 0; |
Douglas Gregor | cefc3af | 2012-04-16 07:05:22 +0000 | [diff] [blame] | 110 | |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 111 | LoadedExternalKnownNamespaces = false; |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 112 | for (unsigned I = 0; I != NSAPI::NumNSNumberLiteralMethods; ++I) |
| 113 | NSNumberLiteralMethods[I] = 0; |
| 114 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 115 | if (getLangOpts().ObjC1) |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 116 | NSAPIObj.reset(new NSAPI(Context)); |
| 117 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 118 | if (getLangOpts().CPlusPlus) |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 119 | FieldCollector.reset(new CXXFieldCollector()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 121 | // Tell diagnostics how to render things from the AST library. |
Douglas Gregor | 79a9a34 | 2010-02-09 22:26:47 +0000 | [diff] [blame] | 122 | PP.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument, |
| 123 | &Context); |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 124 | |
| 125 | ExprEvalContexts.push_back( |
Richard Smith | 76f3f69 | 2012-02-22 02:04:18 +0000 | [diff] [blame] | 126 | ExpressionEvaluationContextRecord(PotentiallyEvaluated, 0, |
| 127 | false, 0, false)); |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 128 | |
Argyrios Kyrtzidis | 8fc32d2 | 2010-11-19 00:19:15 +0000 | [diff] [blame] | 129 | FunctionScopes.push_back(new FunctionScopeInfo(Diags)); |
Douglas Gregor | 46ea32a | 2010-08-12 22:51:45 +0000 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | void 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 Gregor | 4dfd02a | 2011-08-12 05:46:01 +0000 | [diff] [blame] | 144 | |
Douglas Gregor | 772eeae | 2011-08-12 06:49:56 +0000 | [diff] [blame] | 145 | // 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 Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 150 | if (IdResolver.begin(Int128) == IdResolver.end()) |
Douglas Gregor | 772eeae | 2011-08-12 06:49:56 +0000 | [diff] [blame] | 151 | PushOnScopeChains(Context.getInt128Decl(), TUScope); |
| 152 | |
| 153 | DeclarationName UInt128 = &Context.Idents.get("__uint128_t"); |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 154 | if (IdResolver.begin(UInt128) == IdResolver.end()) |
Douglas Gregor | 772eeae | 2011-08-12 06:49:56 +0000 | [diff] [blame] | 155 | PushOnScopeChains(Context.getUInt128Decl(), TUScope); |
| 156 | } |
| 157 | |
| 158 | |
Douglas Gregor | 4dfd02a | 2011-08-12 05:46:01 +0000 | [diff] [blame] | 159 | // Initialize predefined Objective-C types: |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 160 | if (PP.getLangOpts().ObjC1) { |
Douglas Gregor | 7a27ea5 | 2011-08-12 06:17:30 +0000 | [diff] [blame] | 161 | // 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 Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 164 | if (IdResolver.begin(SEL) == IdResolver.end()) |
Douglas Gregor | 7a27ea5 | 2011-08-12 06:17:30 +0000 | [diff] [blame] | 165 | PushOnScopeChains(Context.getObjCSelDecl(), TUScope); |
| 166 | |
Douglas Gregor | 4dfd02a | 2011-08-12 05:46:01 +0000 | [diff] [blame] | 167 | // 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 Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 170 | if (IdResolver.begin(Id) == IdResolver.end()) |
Douglas Gregor | 4dfd02a | 2011-08-12 05:46:01 +0000 | [diff] [blame] | 171 | PushOnScopeChains(Context.getObjCIdDecl(), TUScope); |
Douglas Gregor | 79d6726 | 2011-08-12 05:59:41 +0000 | [diff] [blame] | 172 | |
| 173 | // Create the built-in typedef for 'Class'. |
| 174 | DeclarationName Class = &Context.Idents.get("Class"); |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 175 | if (IdResolver.begin(Class) == IdResolver.end()) |
Douglas Gregor | 79d6726 | 2011-08-12 05:59:41 +0000 | [diff] [blame] | 176 | PushOnScopeChains(Context.getObjCClassDecl(), TUScope); |
Douglas Gregor | a6ea10e | 2012-01-17 18:09:05 +0000 | [diff] [blame] | 177 | |
| 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 Gregor | 4dfd02a | 2011-08-12 05:46:01 +0000 | [diff] [blame] | 182 | } |
Meador Inge | c5613b2 | 2012-06-16 03:34:49 +0000 | [diff] [blame] | 183 | |
| 184 | DeclarationName BuiltinVaList = &Context.Idents.get("__builtin_va_list"); |
| 185 | if (IdResolver.begin(BuiltinVaList) == IdResolver.end()) |
| 186 | PushOnScopeChains(Context.getBuiltinVaListDecl(), TUScope); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 189 | Sema::~Sema() { |
| 190 | if (PackContext) FreePackedContext(); |
Eli Friedman | aa8b0d1 | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 191 | if (VisContext) FreeVisContext(); |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 192 | delete TheTargetAttributesSema; |
Fariborz Jahanian | 62c9258 | 2011-04-25 18:49:15 +0000 | [diff] [blame] | 193 | MSStructPragmaOn = false; |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 194 | // 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 Gregor | 46ea32a | 2010-08-12 22:51:45 +0000 | [diff] [blame] | 199 | |
| 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 Gregor | 914ed9d | 2010-08-13 03:15:25 +0000 | [diff] [blame] | 206 | = dyn_cast_or_null<ExternalSemaSource>(Context.getExternalSource())) |
Douglas Gregor | 46ea32a | 2010-08-12 22:51:45 +0000 | [diff] [blame] | 207 | ExternalSema->ForgetSema(); |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 208 | } |
| 209 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 210 | /// 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. |
| 214 | bool Sema::makeUnavailableInSystemHeader(SourceLocation loc, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 215 | StringRef msg) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 216 | // 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 Redl | 58a2cd8 | 2011-04-24 16:28:06 +0000 | [diff] [blame] | 235 | ASTMutationListener *Sema::getASTMutationListener() const { |
| 236 | return getASTConsumer().GetASTMutationListener(); |
| 237 | } |
| 238 | |
Chandler Carruth | 5d98994 | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 239 | /// \brief Print out statistics about the semantic analysis. |
| 240 | void 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 Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 248 | /// 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. |
| 251 | ExprResult Sema::ImpCastExprToType(Expr *E, QualType Ty, |
| 252 | CastKind Kind, ExprValueKind VK, |
| 253 | const CXXCastPath *BasePath, |
| 254 | CheckedConversionKind CCK) { |
Richard Smith | 9c129f8 | 2011-10-28 03:31:48 +0000 | [diff] [blame] | 255 | #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 Smith | acdfa4d | 2011-11-10 23:32:36 +0000 | [diff] [blame] | 267 | assert((VK == VK_RValue || !E->isRValue()) && "can't cast rvalue to lvalue"); |
Richard Smith | 9c129f8 | 2011-10-28 03:31:48 +0000 | [diff] [blame] | 268 | #endif |
| 269 | |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 270 | QualType ExprTy = Context.getCanonicalType(E->getType()); |
Mon P Wang | 3a2c744 | 2008-09-04 08:38:01 +0000 | [diff] [blame] | 271 | QualType TypeTy = Context.getCanonicalType(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 272 | |
Mon P Wang | 3a2c744 | 2008-09-04 08:38:01 +0000 | [diff] [blame] | 273 | if (ExprTy == TypeTy) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 274 | return Owned(E); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 275 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 276 | if (getLangOpts().ObjCAutoRefCount) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 277 | CheckObjCARCConversion(SourceRange(), Ty, E, CCK); |
| 278 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 279 | // If this is a derived-to-base cast to a through a virtual base, we |
| 280 | // need a vtable. |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 281 | if (Kind == CK_DerivedToBase && |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 282 | BasePathInvolvesVirtualBase(*BasePath)) { |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 283 | QualType T = E->getType(); |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 284 | if (const PointerType *Pointer = T->getAs<PointerType>()) |
| 285 | T = Pointer->getPointeeType(); |
| 286 | if (const RecordType *RecordTy = T->getAs<RecordType>()) |
John Wiegley | 429bb27 | 2011-04-08 18:41:53 +0000 | [diff] [blame] | 287 | MarkVTableUsed(E->getLocStart(), |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 288 | cast<CXXRecordDecl>(RecordTy->getDecl())); |
| 289 | } |
Anders Carlsson | 4c5fad3 | 2009-09-15 05:28:24 +0000 | [diff] [blame] | 290 | |
Richard Smith | c8d7f58 | 2011-11-29 22:48:16 +0000 | [diff] [blame] | 291 | 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 Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 300 | } |
| 301 | |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 302 | /// ScalarTypeToBooleanCastKind - Returns the cast kind corresponding |
| 303 | /// to the conversion from scalar type ScalarTy to the Boolean type. |
| 304 | CastKind Sema::ScalarTypeToBooleanCastKind(QualType ScalarTy) { |
| 305 | switch (ScalarTy->getScalarTypeKind()) { |
| 306 | case Type::STK_Bool: return CK_NoOp; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 307 | case Type::STK_CPointer: return CK_PointerToBoolean; |
| 308 | case Type::STK_BlockPointer: return CK_PointerToBoolean; |
| 309 | case Type::STK_ObjCObjectPointer: return CK_PointerToBoolean; |
Abramo Bagnara | 737d544 | 2011-04-07 09:26:19 +0000 | [diff] [blame] | 310 | 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 Kyrtzidis | bbc6454 | 2010-08-15 01:15:20 +0000 | [diff] [blame] | 319 | /// \brief Used to prune the decls of Sema's UnusedFileScopedDecls vector. |
| 320 | static 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 Gregor | ef96ee0 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 333 | DeclToCheck = FD->getMostRecentDecl(); |
Argyrios Kyrtzidis | bbc6454 | 2010-08-15 01:15:20 +0000 | [diff] [blame] | 334 | 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 Gregor | ef96ee0 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 347 | DeclToCheck = VD->getMostRecentDecl(); |
Argyrios Kyrtzidis | bbc6454 | 2010-08-15 01:15:20 +0000 | [diff] [blame] | 348 | if (DeclToCheck != VD) |
| 349 | return !SemaRef->ShouldWarnIfUnusedFileScopedDecl(DeclToCheck); |
| 350 | } |
| 351 | |
| 352 | return false; |
| 353 | } |
| 354 | |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 355 | namespace { |
| 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. |
| 370 | static void checkUndefinedInternals(Sema &S) { |
| 371 | if (S.UndefinedInternals.empty()) return; |
| 372 | |
| 373 | // Collect all the still-undefined entities with internal linkage. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 374 | SmallVector<UndefinedInternal, 16> undefined; |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 375 | 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 Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 405 | for (SmallVectorImpl<UndefinedInternal>::iterator |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 406 | 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 Gregor | 31e37b2 | 2011-07-28 18:09:57 +0000 | [diff] [blame] | 414 | void 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 Jasper | f8cc02e | 2012-06-06 08:32:04 +0000 | [diff] [blame] | 430 | |
| 431 | typedef 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. |
| 438 | static 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 Jasper | 0e9e9f8 | 2012-06-14 20:56:06 +0000 | [diff] [blame] | 451 | else if (const FunctionTemplateDecl *F = dyn_cast<FunctionTemplateDecl>(*I)) |
| 452 | Complete = F->getTemplatedDecl()->isDefined(); |
Daniel Jasper | f8cc02e | 2012-06-06 08:32:04 +0000 | [diff] [blame] | 453 | 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. |
| 474 | static 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 Lattner | 9299f3f | 2008-08-23 03:19:52 +0000 | [diff] [blame] | 505 | /// 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 Kyrtzidis | 0e03638 | 2010-08-05 09:48:16 +0000 | [diff] [blame] | 508 | void Sema::ActOnEndOfTranslationUnit() { |
John McCall | 9257664 | 2012-05-07 06:16:41 +0000 | [diff] [blame] | 509 | assert(DelayedDiagnostics.getCurrentPool() == NULL |
| 510 | && "reached end of translation unit with a pool attached?"); |
| 511 | |
Douglas Gregor | 467dc88 | 2011-08-25 22:30:56 +0000 | [diff] [blame] | 512 | // Only complete translation units define vtables and perform implicit |
| 513 | // instantiations. |
| 514 | if (TUKind == TU_Complete) { |
Argyrios Kyrtzidis | 849639d | 2012-02-07 16:50:53 +0000 | [diff] [blame] | 515 | DiagnoseUseOfUnimplementedSelectors(); |
| 516 | |
Chandler Carruth | aee543a | 2010-12-12 21:36:11 +0000 | [diff] [blame] | 517 | // 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 Gregor | a126f17 | 2011-07-28 00:53:40 +0000 | [diff] [blame] | 520 | for (DynamicClassesType::iterator I = DynamicClasses.begin(ExternalSource), |
| 521 | E = DynamicClasses.end(); |
| 522 | I != E; ++I) { |
| 523 | assert(!(*I)->isDependentType() && |
Anders Carlsson | a5c6c2a | 2011-01-25 18:08:22 +0000 | [diff] [blame] | 524 | "Should not see dependent types here!"); |
Douglas Gregor | a126f17 | 2011-07-28 00:53:40 +0000 | [diff] [blame] | 525 | if (const CXXMethodDecl *KeyFunction = Context.getKeyFunction(*I)) { |
Chandler Carruth | aee543a | 2010-12-12 21:36:11 +0000 | [diff] [blame] | 526 | const FunctionDecl *Definition = 0; |
| 527 | if (KeyFunction->hasBody(Definition)) |
Douglas Gregor | a126f17 | 2011-07-28 00:53:40 +0000 | [diff] [blame] | 528 | MarkVTableUsed(Definition->getLocation(), *I, true); |
Chandler Carruth | aee543a | 2010-12-12 21:36:11 +0000 | [diff] [blame] | 529 | } |
| 530 | } |
| 531 | |
Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 532 | // 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 Kyrtzidis | 0e03638 | 2010-08-05 09:48:16 +0000 | [diff] [blame] | 536 | |
Nick Lewycky | 8155910 | 2011-05-31 07:58:42 +0000 | [diff] [blame] | 537 | // 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 Lewycky | 2a5f99e | 2010-11-25 00:35:20 +0000 | [diff] [blame] | 548 | } |
Anders Carlsson | d6a637f | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 549 | |
Argyrios Kyrtzidis | 49b96d1 | 2010-08-13 18:42:17 +0000 | [diff] [blame] | 550 | // Remove file scoped decls that turned out to be used. |
Douglas Gregor | a2ee20a | 2011-07-27 21:45:57 +0000 | [diff] [blame] | 551 | UnusedFileScopedDecls.erase(std::remove_if(UnusedFileScopedDecls.begin(0, |
| 552 | true), |
Argyrios Kyrtzidis | bbc6454 | 2010-08-15 01:15:20 +0000 | [diff] [blame] | 553 | UnusedFileScopedDecls.end(), |
| 554 | std::bind1st(std::ptr_fun(ShouldRemoveFromUnused), |
| 555 | this)), |
Argyrios Kyrtzidis | 49b96d1 | 2010-08-13 18:42:17 +0000 | [diff] [blame] | 556 | UnusedFileScopedDecls.end()); |
Douglas Gregor | 47268a3 | 2010-04-09 17:41:13 +0000 | [diff] [blame] | 557 | |
Douglas Gregor | 467dc88 | 2011-08-25 22:30:56 +0000 | [diff] [blame] | 558 | if (TUKind == TU_Prefix) { |
| 559 | // Translation unit prefixes don't need any of the checking below. |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 560 | TUScope = 0; |
Argyrios Kyrtzidis | 72b9057 | 2010-08-05 09:48:08 +0000 | [diff] [blame] | 561 | return; |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 562 | } |
Argyrios Kyrtzidis | 72b9057 | 2010-08-05 09:48:08 +0000 | [diff] [blame] | 563 | |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 564 | // 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 Gregor | 31e37b2 | 2011-07-28 18:09:57 +0000 | [diff] [blame] | 567 | LoadExternalWeakUndeclaredIdentifiers(); |
Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 568 | for (llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 569 | I = WeakUndeclaredIdentifiers.begin(), |
| 570 | E = WeakUndeclaredIdentifiers.end(); I != E; ++I) { |
| 571 | if (I->second.getUsed()) continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 572 | |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 573 | Diag(I->second.getLocation(), diag::warn_weak_identifier_undeclared) |
| 574 | << I->first; |
Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 575 | } |
| 576 | |
Douglas Gregor | 467dc88 | 2011-08-25 22:30:56 +0000 | [diff] [blame] | 577 | if (TUKind == TU_Module) { |
Douglas Gregor | 90db260 | 2011-12-02 01:47:07 +0000 | [diff] [blame] | 578 | // 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 Gregor | b7a7819 | 2012-01-04 23:32:19 +0000 | [diff] [blame] | 596 | for (Module::submodule_iterator Sub = Mod->submodule_begin(), |
| 597 | SubEnd = Mod->submodule_end(); |
Douglas Gregor | 90db260 | 2011-12-02 01:47:07 +0000 | [diff] [blame] | 598 | Sub != SubEnd; ++Sub) { |
Douglas Gregor | b7a7819 | 2012-01-04 23:32:19 +0000 | [diff] [blame] | 599 | Stack.push_back(*Sub); |
Douglas Gregor | 90db260 | 2011-12-02 01:47:07 +0000 | [diff] [blame] | 600 | } |
| 601 | } |
| 602 | } |
| 603 | |
Douglas Gregor | 467dc88 | 2011-08-25 22:30:56 +0000 | [diff] [blame] | 604 | // Modules don't need any of the checking below. |
| 605 | TUScope = 0; |
| 606 | return; |
| 607 | } |
| 608 | |
Douglas Gregor | 275a369 | 2009-03-10 23:43:53 +0000 | [diff] [blame] | 609 | // 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 Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 620 | llvm::SmallSet<VarDecl *, 32> Seen; |
Douglas Gregor | a862320 | 2011-07-27 20:58:46 +0000 | [diff] [blame] | 621 | for (TentativeDefinitionsType::iterator |
| 622 | T = TentativeDefinitions.begin(ExternalSource), |
| 623 | TEnd = TentativeDefinitions.end(); |
| 624 | T != TEnd; ++T) |
| 625 | { |
| 626 | VarDecl *VD = (*T)->getActingDefinition(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 627 | |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 628 | // 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 Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 632 | continue; |
| 633 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 634 | if (const IncompleteArrayType *ArrayT |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 635 | = Context.getAsIncompleteArrayType(VD->getType())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 636 | if (RequireCompleteType(VD->getLocation(), |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 637 | ArrayT->getElementType(), |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 638 | diag::err_tentative_def_incomplete_type_arr)) { |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 639 | VD->setInvalidDecl(); |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 640 | continue; |
Douglas Gregor | 275a369 | 2009-03-10 23:43:53 +0000 | [diff] [blame] | 641 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 642 | |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 643 | // 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 McCall | 46a617a | 2009-10-16 00:14:28 +0000 | [diff] [blame] | 646 | QualType T = Context.getConstantArrayType(ArrayT->getElementType(), |
| 647 | One, ArrayType::Normal, 0); |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 648 | VD->setType(T); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 649 | } else if (RequireCompleteType(VD->getLocation(), VD->getType(), |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 650 | 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 Gregor | 275a369 | 2009-03-10 23:43:53 +0000 | [diff] [blame] | 657 | } |
Argyrios Kyrtzidis | 43f0a7c | 2011-01-31 07:04:37 +0000 | [diff] [blame] | 658 | |
Sean Hunt | c159870 | 2011-05-05 00:05:47 +0000 | [diff] [blame] | 659 | if (LangOpts.CPlusPlus0x && |
| 660 | Diags.getDiagnosticLevel(diag::warn_delegating_ctor_cycle, |
| 661 | SourceLocation()) |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 662 | != DiagnosticsEngine::Ignored) |
Sean Hunt | fe57eef | 2011-05-04 05:57:24 +0000 | [diff] [blame] | 663 | CheckDelegatingCtorCycles(); |
| 664 | |
Argyrios Kyrtzidis | 43f0a7c | 2011-01-31 07:04:37 +0000 | [diff] [blame] | 665 | // 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 Gregor | a2ee20a | 2011-07-27 21:45:57 +0000 | [diff] [blame] | 669 | for (UnusedFileScopedDeclsType::iterator |
| 670 | I = UnusedFileScopedDecls.begin(ExternalSource), |
Argyrios Kyrtzidis | 43f0a7c | 2011-01-31 07:04:37 +0000 | [diff] [blame] | 671 | E = UnusedFileScopedDecls.end(); I != E; ++I) { |
Douglas Gregor | a2ee20a | 2011-07-27 21:45:57 +0000 | [diff] [blame] | 672 | if (ShouldRemoveFromUnused(this, *I)) |
| 673 | continue; |
| 674 | |
Argyrios Kyrtzidis | 43f0a7c | 2011-01-31 07:04:37 +0000 | [diff] [blame] | 675 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) { |
| 676 | const FunctionDecl *DiagD; |
| 677 | if (!FD->hasBody(DiagD)) |
| 678 | DiagD = FD; |
Argyrios Kyrtzidis | 48b8959 | 2011-03-03 17:47:42 +0000 | [diff] [blame] | 679 | if (DiagD->isDeleted()) |
| 680 | continue; // Deleted functions are supposed to be unused. |
Argyrios Kyrtzidis | 6b6b42a | 2011-04-19 19:51:10 +0000 | [diff] [blame] | 681 | if (DiagD->isReferenced()) { |
| 682 | if (isa<CXXMethodDecl>(DiagD)) |
| 683 | Diag(DiagD->getLocation(), diag::warn_unneeded_member_function) |
| 684 | << DiagD->getDeclName(); |
Fariborz Jahanian | 12d2cc7 | 2012-06-27 19:43:29 +0000 | [diff] [blame^] | 685 | else { |
| 686 | if (FD->getStorageClassAsWritten() == SC_Static && |
| 687 | !FD->isInlineSpecified() && |
| 688 | !SourceMgr.isFromMainFile( |
| 689 | SourceMgr.getExpansionLoc(FD->getLocation()))) |
| 690 | Diag(DiagD->getLocation(), diag::warn_unneeded_static_internal_decl) |
| 691 | << DiagD->getDeclName(); |
| 692 | else |
| 693 | Diag(DiagD->getLocation(), diag::warn_unneeded_internal_decl) |
| 694 | << /*function*/0 << DiagD->getDeclName(); |
| 695 | } |
Argyrios Kyrtzidis | 6b6b42a | 2011-04-19 19:51:10 +0000 | [diff] [blame] | 696 | } else { |
| 697 | Diag(DiagD->getLocation(), |
| 698 | isa<CXXMethodDecl>(DiagD) ? diag::warn_unused_member_function |
| 699 | : diag::warn_unused_function) |
| 700 | << DiagD->getDeclName(); |
| 701 | } |
Argyrios Kyrtzidis | 43f0a7c | 2011-01-31 07:04:37 +0000 | [diff] [blame] | 702 | } else { |
| 703 | const VarDecl *DiagD = cast<VarDecl>(*I)->getDefinition(); |
| 704 | if (!DiagD) |
| 705 | DiagD = cast<VarDecl>(*I); |
Argyrios Kyrtzidis | 6b6b42a | 2011-04-19 19:51:10 +0000 | [diff] [blame] | 706 | if (DiagD->isReferenced()) { |
| 707 | Diag(DiagD->getLocation(), diag::warn_unneeded_internal_decl) |
| 708 | << /*variable*/1 << DiagD->getDeclName(); |
| 709 | } else { |
| 710 | Diag(DiagD->getLocation(), diag::warn_unused_variable) |
| 711 | << DiagD->getDeclName(); |
| 712 | } |
Argyrios Kyrtzidis | 43f0a7c | 2011-01-31 07:04:37 +0000 | [diff] [blame] | 713 | } |
Argyrios Kyrtzidis | bbc6454 | 2010-08-15 01:15:20 +0000 | [diff] [blame] | 714 | } |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 715 | |
| 716 | checkUndefinedInternals(*this); |
Argyrios Kyrtzidis | 49b96d1 | 2010-08-13 18:42:17 +0000 | [diff] [blame] | 717 | } |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 718 | |
Daniel Jasper | f8cc02e | 2012-06-06 08:32:04 +0000 | [diff] [blame] | 719 | if (Diags.getDiagnosticLevel(diag::warn_unused_private_field, |
| 720 | SourceLocation()) |
| 721 | != DiagnosticsEngine::Ignored) { |
| 722 | RecordCompleteMap RecordsComplete; |
| 723 | RecordCompleteMap MNCComplete; |
| 724 | for (NamedDeclSetType::iterator I = UnusedPrivateFields.begin(), |
| 725 | E = UnusedPrivateFields.end(); I != E; ++I) { |
| 726 | const NamedDecl *D = *I; |
| 727 | const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D->getDeclContext()); |
| 728 | if (RD && !RD->isUnion() && |
| 729 | IsRecordFullyDefined(RD, RecordsComplete, MNCComplete)) { |
| 730 | Diag(D->getLocation(), diag::warn_unused_private_field) |
| 731 | << D->getDeclName(); |
| 732 | } |
| 733 | } |
| 734 | } |
| 735 | |
Richard Smith | 483b9f3 | 2011-02-21 20:05:19 +0000 | [diff] [blame] | 736 | // Check we've noticed that we're no longer parsing the initializer for every |
| 737 | // variable. If we miss cases, then at best we have a performance issue and |
| 738 | // at worst a rejects-valid bug. |
| 739 | assert(ParsingInitForAutoVars.empty() && |
| 740 | "Didn't unmark var as having its initializer parsed"); |
| 741 | |
Douglas Gregor | 87c08a5 | 2010-08-13 22:48:40 +0000 | [diff] [blame] | 742 | TUScope = 0; |
Chris Lattner | 9299f3f | 2008-08-23 03:19:52 +0000 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 746 | //===----------------------------------------------------------------------===// |
| 747 | // Helper functions. |
| 748 | //===----------------------------------------------------------------------===// |
| 749 | |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 750 | DeclContext *Sema::getFunctionLevelDeclContext() { |
John McCall | db0ee1d | 2009-12-19 10:53:49 +0000 | [diff] [blame] | 751 | DeclContext *DC = CurContext; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 752 | |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 753 | while (true) { |
| 754 | if (isa<BlockDecl>(DC) || isa<EnumDecl>(DC)) { |
| 755 | DC = DC->getParent(); |
| 756 | } else if (isa<CXXMethodDecl>(DC) && |
Douglas Gregor | 215e4e1 | 2012-02-12 17:34:23 +0000 | [diff] [blame] | 757 | cast<CXXMethodDecl>(DC)->getOverloadedOperator() == OO_Call && |
Eli Friedman | 72899c3 | 2012-01-07 04:59:52 +0000 | [diff] [blame] | 758 | cast<CXXRecordDecl>(DC->getParent())->isLambda()) { |
| 759 | DC = DC->getParent()->getParent(); |
| 760 | } |
| 761 | else break; |
| 762 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 763 | |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 764 | return DC; |
| 765 | } |
| 766 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 767 | /// getCurFunctionDecl - If inside of a function body, this returns a pointer |
| 768 | /// to the function decl for the function being parsed. If we're currently |
| 769 | /// in a 'block', this returns the containing context. |
| 770 | FunctionDecl *Sema::getCurFunctionDecl() { |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 771 | DeclContext *DC = getFunctionLevelDeclContext(); |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 772 | return dyn_cast<FunctionDecl>(DC); |
| 773 | } |
| 774 | |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 775 | ObjCMethodDecl *Sema::getCurMethodDecl() { |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 776 | DeclContext *DC = getFunctionLevelDeclContext(); |
Steve Naroff | d7612e1 | 2008-11-17 16:28:52 +0000 | [diff] [blame] | 777 | return dyn_cast<ObjCMethodDecl>(DC); |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 778 | } |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 779 | |
| 780 | NamedDecl *Sema::getCurFunctionOrMethodDecl() { |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 781 | DeclContext *DC = getFunctionLevelDeclContext(); |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 782 | if (isa<ObjCMethodDecl>(DC) || isa<FunctionDecl>(DC)) |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 783 | return cast<NamedDecl>(DC); |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 784 | return 0; |
| 785 | } |
| 786 | |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 787 | void Sema::EmitCurrentDiagnostic(unsigned DiagID) { |
| 788 | // FIXME: It doesn't make sense to me that DiagID is an incoming argument here |
| 789 | // and yet we also use the current diag ID on the DiagnosticsEngine. This has |
| 790 | // been made more painfully obvious by the refactor that introduced this |
| 791 | // function, but it is possible that the incoming argument can be |
| 792 | // eliminnated. If it truly cannot be (for example, there is some reentrancy |
| 793 | // issue I am not seeing yet), then there should at least be a clarifying |
| 794 | // comment somewhere. |
| 795 | if (llvm::Optional<TemplateDeductionInfo*> Info = isSFINAEContext()) { |
| 796 | switch (DiagnosticIDs::getDiagnosticSFINAEResponse( |
| 797 | Diags.getCurrentDiagID())) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 798 | case DiagnosticIDs::SFINAE_Report: |
Richard Smith | 77faa36 | 2011-10-19 00:07:01 +0000 | [diff] [blame] | 799 | // We'll report the diagnostic below. |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 800 | break; |
| 801 | |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 802 | case DiagnosticIDs::SFINAE_SubstitutionFailure: |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 803 | // Count this failure so that we know that template argument deduction |
| 804 | // has failed. |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 805 | ++NumSFINAEErrors; |
Richard Smith | b8590f3 | 2012-05-07 09:03:25 +0000 | [diff] [blame] | 806 | |
| 807 | // Make a copy of this suppressed diagnostic and store it with the |
| 808 | // template-deduction information. |
| 809 | if (*Info && !(*Info)->hasSFINAEDiagnostic()) { |
| 810 | Diagnostic DiagInfo(&Diags); |
| 811 | (*Info)->addSFINAEDiagnostic(DiagInfo.getLocation(), |
| 812 | PartialDiagnostic(DiagInfo, Context.getDiagAllocator())); |
| 813 | } |
| 814 | |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 815 | Diags.setLastDiagnosticIgnored(); |
| 816 | Diags.Clear(); |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 817 | return; |
| 818 | |
Richard Smith | 77faa36 | 2011-10-19 00:07:01 +0000 | [diff] [blame] | 819 | case DiagnosticIDs::SFINAE_AccessControl: { |
| 820 | // Per C++ Core Issue 1170, access control is part of SFINAE. |
Daniel Dunbar | 00b4384 | 2012-03-13 18:30:54 +0000 | [diff] [blame] | 821 | // Additionally, the AccessCheckingSFINAE flag can be used to temporarily |
Richard Smith | 77faa36 | 2011-10-19 00:07:01 +0000 | [diff] [blame] | 822 | // make access control a part of SFINAE for the purposes of checking |
| 823 | // type traits. |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 824 | if (!AccessCheckingSFINAE && !getLangOpts().CPlusPlus0x) |
Richard Smith | 77faa36 | 2011-10-19 00:07:01 +0000 | [diff] [blame] | 825 | break; |
| 826 | |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 827 | SourceLocation Loc = Diags.getCurrentDiagLoc(); |
Richard Smith | 77faa36 | 2011-10-19 00:07:01 +0000 | [diff] [blame] | 828 | |
| 829 | // Suppress this diagnostic. |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 830 | ++NumSFINAEErrors; |
Richard Smith | b8590f3 | 2012-05-07 09:03:25 +0000 | [diff] [blame] | 831 | |
| 832 | // Make a copy of this suppressed diagnostic and store it with the |
| 833 | // template-deduction information. |
| 834 | if (*Info && !(*Info)->hasSFINAEDiagnostic()) { |
| 835 | Diagnostic DiagInfo(&Diags); |
| 836 | (*Info)->addSFINAEDiagnostic(DiagInfo.getLocation(), |
| 837 | PartialDiagnostic(DiagInfo, Context.getDiagAllocator())); |
| 838 | } |
| 839 | |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 840 | Diags.setLastDiagnosticIgnored(); |
| 841 | Diags.Clear(); |
Richard Smith | 77faa36 | 2011-10-19 00:07:01 +0000 | [diff] [blame] | 842 | |
| 843 | // Now the diagnostic state is clear, produce a C++98 compatibility |
| 844 | // warning. |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 845 | Diag(Loc, diag::warn_cxx98_compat_sfinae_access_control); |
Richard Smith | 77faa36 | 2011-10-19 00:07:01 +0000 | [diff] [blame] | 846 | |
| 847 | // The last diagnostic which Sema produced was ignored. Suppress any |
| 848 | // notes attached to it. |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 849 | Diags.setLastDiagnosticIgnored(); |
Richard Smith | 77faa36 | 2011-10-19 00:07:01 +0000 | [diff] [blame] | 850 | return; |
| 851 | } |
| 852 | |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 853 | case DiagnosticIDs::SFINAE_Suppress: |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 854 | // Make a copy of this suppressed diagnostic and store it with the |
| 855 | // template-deduction information; |
Richard Smith | b8590f3 | 2012-05-07 09:03:25 +0000 | [diff] [blame] | 856 | if (*Info) { |
| 857 | Diagnostic DiagInfo(&Diags); |
Douglas Gregor | 1eee5dc | 2011-01-27 22:31:44 +0000 | [diff] [blame] | 858 | (*Info)->addSuppressedDiagnostic(DiagInfo.getLocation(), |
Richard Smith | b8590f3 | 2012-05-07 09:03:25 +0000 | [diff] [blame] | 859 | PartialDiagnostic(DiagInfo, Context.getDiagAllocator())); |
| 860 | } |
| 861 | |
| 862 | // Suppress this diagnostic. |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 863 | Diags.setLastDiagnosticIgnored(); |
| 864 | Diags.Clear(); |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 865 | return; |
| 866 | } |
| 867 | } |
| 868 | |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 869 | // Set up the context's printing policy based on our current state. |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 870 | Context.setPrintingPolicy(getPrintingPolicy()); |
Douglas Gregor | 8987b23 | 2011-09-27 23:30:47 +0000 | [diff] [blame] | 871 | |
Douglas Gregor | 9b62363 | 2010-10-12 23:32:35 +0000 | [diff] [blame] | 872 | // Emit the diagnostic. |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 873 | if (!Diags.EmitCurrentDiagnostic()) |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 874 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 875 | |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 876 | // If this is not a note, and we're in a template instantiation |
| 877 | // that is different from the last template instantiation where |
| 878 | // we emitted an error, print a template instantiation |
| 879 | // backtrace. |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 880 | if (!DiagnosticIDs::isBuiltinNote(DiagID) && |
Daniel Dunbar | 393eed7 | 2012-03-14 09:49:32 +0000 | [diff] [blame] | 881 | !ActiveTemplateInstantiations.empty() && |
| 882 | ActiveTemplateInstantiations.back() |
| 883 | != LastTemplateInstantiationErrorContext) { |
| 884 | PrintInstantiationStack(); |
| 885 | LastTemplateInstantiationErrorContext = ActiveTemplateInstantiations.back(); |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 886 | } |
| 887 | } |
Douglas Gregor | 2e22253 | 2009-07-02 17:08:52 +0000 | [diff] [blame] | 888 | |
Anders Carlsson | 91a0cc9 | 2009-08-26 22:33:56 +0000 | [diff] [blame] | 889 | Sema::SemaDiagnosticBuilder |
| 890 | Sema::Diag(SourceLocation Loc, const PartialDiagnostic& PD) { |
| 891 | SemaDiagnosticBuilder Builder(Diag(Loc, PD.getDiagID())); |
| 892 | PD.Emit(Builder); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 893 | |
Anders Carlsson | 91a0cc9 | 2009-08-26 22:33:56 +0000 | [diff] [blame] | 894 | return Builder; |
| 895 | } |
| 896 | |
Chandler Carruth | 108f756 | 2011-07-26 05:40:03 +0000 | [diff] [blame] | 897 | /// \brief Looks through the macro-expansion chain for the given |
| 898 | /// location, looking for a macro expansion with the given name. |
John McCall | 834e3f6 | 2011-03-08 07:59:04 +0000 | [diff] [blame] | 899 | /// If one is found, returns true and sets the location to that |
Chandler Carruth | 108f756 | 2011-07-26 05:40:03 +0000 | [diff] [blame] | 900 | /// expansion loc. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 901 | bool Sema::findMacroSpelling(SourceLocation &locref, StringRef name) { |
John McCall | 834e3f6 | 2011-03-08 07:59:04 +0000 | [diff] [blame] | 902 | SourceLocation loc = locref; |
| 903 | if (!loc.isMacroID()) return false; |
| 904 | |
| 905 | // There's no good way right now to look at the intermediate |
Chandler Carruth | 108f756 | 2011-07-26 05:40:03 +0000 | [diff] [blame] | 906 | // expansions, so just jump to the expansion location. |
Chandler Carruth | 4027853 | 2011-07-25 16:49:02 +0000 | [diff] [blame] | 907 | loc = getSourceManager().getExpansionLoc(loc); |
John McCall | 834e3f6 | 2011-03-08 07:59:04 +0000 | [diff] [blame] | 908 | |
| 909 | // If that's written with the name, stop here. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 910 | SmallVector<char, 16> buffer; |
John McCall | 834e3f6 | 2011-03-08 07:59:04 +0000 | [diff] [blame] | 911 | if (getPreprocessor().getSpelling(loc, buffer) == name) { |
| 912 | locref = loc; |
| 913 | return true; |
| 914 | } |
| 915 | return false; |
| 916 | } |
| 917 | |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 918 | /// \brief Determines the active Scope associated with the given declaration |
| 919 | /// context. |
| 920 | /// |
| 921 | /// This routine maps a declaration context to the active Scope object that |
| 922 | /// represents that declaration context in the parser. It is typically used |
| 923 | /// from "scope-less" code (e.g., template instantiation, lazy creation of |
| 924 | /// declarations) that injects a name for name-lookup purposes and, therefore, |
| 925 | /// must update the Scope. |
| 926 | /// |
| 927 | /// \returns The scope corresponding to the given declaraion context, or NULL |
| 928 | /// if no such scope is open. |
| 929 | Scope *Sema::getScopeForContext(DeclContext *Ctx) { |
| 930 | |
| 931 | if (!Ctx) |
| 932 | return 0; |
| 933 | |
| 934 | Ctx = Ctx->getPrimaryContext(); |
| 935 | for (Scope *S = getCurScope(); S; S = S->getParent()) { |
Sebastian Redl | cddc69f | 2010-07-08 23:07:34 +0000 | [diff] [blame] | 936 | // Ignore scopes that cannot have declarations. This is important for |
| 937 | // out-of-line definitions of static class members. |
| 938 | if (S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope)) |
| 939 | if (DeclContext *Entity = static_cast<DeclContext *> (S->getEntity())) |
| 940 | if (Ctx == Entity->getPrimaryContext()) |
| 941 | return S; |
Douglas Gregor | 23c94db | 2010-07-02 17:43:08 +0000 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | return 0; |
| 945 | } |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 946 | |
| 947 | /// \brief Enter a new function scope |
| 948 | void Sema::PushFunctionScope() { |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 949 | if (FunctionScopes.size() == 1) { |
| 950 | // Use the "top" function scope rather than having to allocate |
| 951 | // memory for a new scope. |
Argyrios Kyrtzidis | 8fc32d2 | 2010-11-19 00:19:15 +0000 | [diff] [blame] | 952 | FunctionScopes.back()->Clear(); |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 953 | FunctionScopes.push_back(FunctionScopes.back()); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 954 | return; |
| 955 | } |
| 956 | |
Argyrios Kyrtzidis | 8fc32d2 | 2010-11-19 00:19:15 +0000 | [diff] [blame] | 957 | FunctionScopes.push_back(new FunctionScopeInfo(getDiagnostics())); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) { |
Argyrios Kyrtzidis | 8fc32d2 | 2010-11-19 00:19:15 +0000 | [diff] [blame] | 961 | FunctionScopes.push_back(new BlockScopeInfo(getDiagnostics(), |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 962 | BlockScope, Block)); |
| 963 | } |
| 964 | |
Douglas Gregor | 76e3da5 | 2012-02-08 20:17:14 +0000 | [diff] [blame] | 965 | void Sema::PushLambdaScope(CXXRecordDecl *Lambda, |
| 966 | CXXMethodDecl *CallOperator) { |
| 967 | FunctionScopes.push_back(new LambdaScopeInfo(getDiagnostics(), Lambda, |
| 968 | CallOperator)); |
Eli Friedman | ec9ea72 | 2012-01-05 03:35:19 +0000 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | void Sema::PopFunctionScopeInfo(const AnalysisBasedWarnings::Policy *WP, |
| 972 | const Decl *D, const BlockExpr *blkExpr) { |
Ted Kremenek | 3ed6fc0 | 2011-02-23 01:51:48 +0000 | [diff] [blame] | 973 | FunctionScopeInfo *Scope = FunctionScopes.pop_back_val(); |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 974 | assert(!FunctionScopes.empty() && "mismatched push/pop!"); |
Ted Kremenek | 3ed6fc0 | 2011-02-23 01:51:48 +0000 | [diff] [blame] | 975 | |
| 976 | // Issue any analysis-based warnings. |
| 977 | if (WP && D) |
Ted Kremenek | 283a358 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 978 | AnalysisWarnings.IssueWarnings(*WP, Scope, D, blkExpr); |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 979 | else { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 980 | for (SmallVectorImpl<sema::PossiblyUnreachableDiag>::iterator |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 981 | i = Scope->PossiblyUnreachableDiags.begin(), |
| 982 | e = Scope->PossiblyUnreachableDiags.end(); |
| 983 | i != e; ++i) { |
| 984 | const sema::PossiblyUnreachableDiag &D = *i; |
| 985 | Diag(D.Loc, D.PD); |
| 986 | } |
| 987 | } |
Ted Kremenek | 3ed6fc0 | 2011-02-23 01:51:48 +0000 | [diff] [blame] | 988 | |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 989 | if (FunctionScopes.back() != Scope) { |
John McCall | 781472f | 2010-08-25 08:40:02 +0000 | [diff] [blame] | 990 | delete Scope; |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 991 | } |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 992 | } |
| 993 | |
Dmitri Gribenko | 625bb56 | 2012-02-14 22:14:32 +0000 | [diff] [blame] | 994 | void Sema::PushCompoundScope() { |
| 995 | getCurFunction()->CompoundScopes.push_back(CompoundScopeInfo()); |
| 996 | } |
| 997 | |
| 998 | void Sema::PopCompoundScope() { |
| 999 | FunctionScopeInfo *CurFunction = getCurFunction(); |
| 1000 | assert(!CurFunction->CompoundScopes.empty() && "mismatched push/pop"); |
| 1001 | |
| 1002 | CurFunction->CompoundScopes.pop_back(); |
| 1003 | } |
| 1004 | |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 1005 | /// \brief Determine whether any errors occurred within this function/method/ |
| 1006 | /// block. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1007 | bool Sema::hasAnyUnrecoverableErrorsInThisFunction() const { |
| 1008 | return getCurFunction()->ErrorTrap.hasUnrecoverableErrorOccurred(); |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
| 1011 | BlockScopeInfo *Sema::getCurBlock() { |
| 1012 | if (FunctionScopes.empty()) |
| 1013 | return 0; |
| 1014 | |
| 1015 | return dyn_cast<BlockScopeInfo>(FunctionScopes.back()); |
| 1016 | } |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1017 | |
Eli Friedman | 906a7e1 | 2012-01-06 03:05:34 +0000 | [diff] [blame] | 1018 | LambdaScopeInfo *Sema::getCurLambda() { |
| 1019 | if (FunctionScopes.empty()) |
| 1020 | return 0; |
| 1021 | |
| 1022 | return dyn_cast<LambdaScopeInfo>(FunctionScopes.back()); |
| 1023 | } |
| 1024 | |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 1025 | void Sema::ActOnComment(SourceRange Comment) { |
| 1026 | RawComment RC(SourceMgr, Comment); |
Dmitri Gribenko | 9dda474 | 2012-06-22 16:02:55 +0000 | [diff] [blame] | 1027 | if (RC.isAlmostTrailingComment()) { |
| 1028 | SourceRange MagicMarkerRange(Comment.getBegin(), |
| 1029 | Comment.getBegin().getLocWithOffset(3)); |
| 1030 | StringRef MagicMarkerText; |
| 1031 | switch (RC.getKind()) { |
| 1032 | case RawComment::CK_OrdinaryBCPL: |
| 1033 | MagicMarkerText = "///<"; |
| 1034 | break; |
| 1035 | case RawComment::CK_OrdinaryC: |
| 1036 | MagicMarkerText = "/**<"; |
| 1037 | break; |
| 1038 | default: |
| 1039 | llvm_unreachable("if this is an almost Doxygen comment, " |
| 1040 | "it should be ordinary"); |
| 1041 | } |
| 1042 | Diag(Comment.getBegin(), diag::warn_not_a_doxygen_trailing_member_comment) << |
| 1043 | FixItHint::CreateReplacement(MagicMarkerRange, MagicMarkerText); |
| 1044 | } |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 1045 | Context.addComment(RC); |
| 1046 | } |
| 1047 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1048 | // Pin this vtable to this file. |
| 1049 | ExternalSemaSource::~ExternalSemaSource() {} |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1050 | |
Douglas Gregor | 5ac4b69 | 2012-01-25 00:49:42 +0000 | [diff] [blame] | 1051 | void ExternalSemaSource::ReadMethodPool(Selector Sel) { } |
Sebastian Redl | 8c84571 | 2010-09-28 20:23:00 +0000 | [diff] [blame] | 1052 | |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1053 | void ExternalSemaSource::ReadKnownNamespaces( |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1054 | SmallVectorImpl<NamespaceDecl *> &Namespaces) { |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 1055 | } |
| 1056 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1057 | void PrettyDeclStackTraceEntry::print(raw_ostream &OS) const { |
John McCall | f312b1e | 2010-08-26 23:41:50 +0000 | [diff] [blame] | 1058 | SourceLocation Loc = this->Loc; |
| 1059 | if (!Loc.isValid() && TheDecl) Loc = TheDecl->getLocation(); |
| 1060 | if (Loc.isValid()) { |
| 1061 | Loc.print(OS, S.getSourceManager()); |
| 1062 | OS << ": "; |
| 1063 | } |
| 1064 | OS << Message; |
| 1065 | |
| 1066 | if (TheDecl && isa<NamedDecl>(TheDecl)) { |
| 1067 | std::string Name = cast<NamedDecl>(TheDecl)->getNameAsString(); |
| 1068 | if (!Name.empty()) |
| 1069 | OS << " '" << Name << '\''; |
| 1070 | } |
| 1071 | |
| 1072 | OS << '\n'; |
| 1073 | } |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1074 | |
| 1075 | /// \brief Figure out if an expression could be turned into a call. |
| 1076 | /// |
| 1077 | /// Use this when trying to recover from an error where the programmer may have |
| 1078 | /// written just the name of a function instead of actually calling it. |
| 1079 | /// |
| 1080 | /// \param E - The expression to examine. |
| 1081 | /// \param ZeroArgCallReturnTy - If the expression can be turned into a call |
| 1082 | /// with no arguments, this parameter is set to the type returned by such a |
| 1083 | /// call; otherwise, it is set to an empty QualType. |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1084 | /// \param OverloadSet - If the expression is an overloaded function |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1085 | /// name, this parameter is populated with the decls of the various overloads. |
| 1086 | bool Sema::isExprCallable(const Expr &E, QualType &ZeroArgCallReturnTy, |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1087 | UnresolvedSetImpl &OverloadSet) { |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1088 | ZeroArgCallReturnTy = QualType(); |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1089 | OverloadSet.clear(); |
| 1090 | |
| 1091 | if (E.getType() == Context.OverloadTy) { |
| 1092 | OverloadExpr::FindResult FR = OverloadExpr::find(const_cast<Expr*>(&E)); |
| 1093 | const OverloadExpr *Overloads = FR.Expression; |
| 1094 | |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1095 | for (OverloadExpr::decls_iterator it = Overloads->decls_begin(), |
| 1096 | DeclsEnd = Overloads->decls_end(); it != DeclsEnd; ++it) { |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1097 | OverloadSet.addDecl(*it); |
| 1098 | |
| 1099 | // Check whether the function is a non-template which takes no |
| 1100 | // arguments. |
| 1101 | if (const FunctionDecl *OverloadDecl |
| 1102 | = dyn_cast<FunctionDecl>((*it)->getUnderlyingDecl())) { |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1103 | if (OverloadDecl->getMinRequiredArguments() == 0) |
| 1104 | ZeroArgCallReturnTy = OverloadDecl->getResultType(); |
| 1105 | } |
| 1106 | } |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1107 | |
Douglas Gregor | 64a371f | 2011-10-13 18:26:27 +0000 | [diff] [blame] | 1108 | // Ignore overloads that are pointer-to-member constants. |
| 1109 | if (FR.HasFormOfMemberPointer) |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1110 | return false; |
| 1111 | |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1112 | return true; |
| 1113 | } |
| 1114 | |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1115 | if (const DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E.IgnoreParens())) { |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1116 | if (const FunctionDecl *Fun = dyn_cast<FunctionDecl>(DeclRef->getDecl())) { |
| 1117 | if (Fun->getMinRequiredArguments() == 0) |
| 1118 | ZeroArgCallReturnTy = Fun->getResultType(); |
| 1119 | return true; |
| 1120 | } |
| 1121 | } |
| 1122 | |
| 1123 | // We don't have an expression that's convenient to get a FunctionDecl from, |
| 1124 | // but we can at least check if the type is "function of 0 arguments". |
| 1125 | QualType ExprTy = E.getType(); |
| 1126 | const FunctionType *FunTy = NULL; |
Matt Beaumont-Gay | 9389ddc | 2011-05-05 00:59:35 +0000 | [diff] [blame] | 1127 | QualType PointeeTy = ExprTy->getPointeeType(); |
| 1128 | if (!PointeeTy.isNull()) |
| 1129 | FunTy = PointeeTy->getAs<FunctionType>(); |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1130 | if (!FunTy) |
| 1131 | FunTy = ExprTy->getAs<FunctionType>(); |
| 1132 | if (!FunTy && ExprTy == Context.BoundMemberTy) { |
| 1133 | // Look for the bound-member type. If it's still overloaded, give up, |
| 1134 | // although we probably should have fallen into the OverloadExpr case above |
| 1135 | // if we actually have an overloaded bound member. |
| 1136 | QualType BoundMemberTy = Expr::findBoundMemberType(&E); |
| 1137 | if (!BoundMemberTy.isNull()) |
| 1138 | FunTy = BoundMemberTy->castAs<FunctionType>(); |
| 1139 | } |
| 1140 | |
| 1141 | if (const FunctionProtoType *FPT = |
| 1142 | dyn_cast_or_null<FunctionProtoType>(FunTy)) { |
| 1143 | if (FPT->getNumArgs() == 0) |
| 1144 | ZeroArgCallReturnTy = FunTy->getResultType(); |
| 1145 | return true; |
| 1146 | } |
| 1147 | return false; |
| 1148 | } |
| 1149 | |
| 1150 | /// \brief Give notes for a set of overloads. |
| 1151 | /// |
| 1152 | /// A companion to isExprCallable. In cases when the name that the programmer |
| 1153 | /// wrote was an overloaded function, we may be able to make some guesses about |
| 1154 | /// plausible overloads based on their return types; such guesses can be handed |
| 1155 | /// off to this method to be emitted as notes. |
| 1156 | /// |
| 1157 | /// \param Overloads - The overloads to note. |
| 1158 | /// \param FinalNoteLoc - If we've suppressed printing some overloads due to |
| 1159 | /// -fshow-overloads=best, this is the location to attach to the note about too |
| 1160 | /// many candidates. Typically this will be the location of the original |
| 1161 | /// ill-formed expression. |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1162 | static void noteOverloads(Sema &S, const UnresolvedSetImpl &Overloads, |
| 1163 | const SourceLocation FinalNoteLoc) { |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1164 | int ShownOverloads = 0; |
| 1165 | int SuppressedOverloads = 0; |
| 1166 | for (UnresolvedSetImpl::iterator It = Overloads.begin(), |
| 1167 | DeclsEnd = Overloads.end(); It != DeclsEnd; ++It) { |
| 1168 | // FIXME: Magic number for max shown overloads stolen from |
| 1169 | // OverloadCandidateSet::NoteCandidates. |
| 1170 | if (ShownOverloads >= 4 && |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1171 | S.Diags.getShowOverloads() == DiagnosticsEngine::Ovl_Best) { |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1172 | ++SuppressedOverloads; |
| 1173 | continue; |
| 1174 | } |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1175 | |
| 1176 | NamedDecl *Fn = (*It)->getUnderlyingDecl(); |
Abramo Bagnara | 9c0e1ec | 2011-11-15 21:43:28 +0000 | [diff] [blame] | 1177 | S.Diag(Fn->getLocation(), diag::note_possible_target_of_call); |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1178 | ++ShownOverloads; |
| 1179 | } |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1180 | |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1181 | if (SuppressedOverloads) |
John McCall | 6dbba4f | 2011-10-11 23:14:30 +0000 | [diff] [blame] | 1182 | S.Diag(FinalNoteLoc, diag::note_ovl_too_many_candidates) |
| 1183 | << SuppressedOverloads; |
| 1184 | } |
| 1185 | |
| 1186 | static void notePlausibleOverloads(Sema &S, SourceLocation Loc, |
| 1187 | const UnresolvedSetImpl &Overloads, |
| 1188 | bool (*IsPlausibleResult)(QualType)) { |
| 1189 | if (!IsPlausibleResult) |
| 1190 | return noteOverloads(S, Overloads, Loc); |
| 1191 | |
| 1192 | UnresolvedSet<2> PlausibleOverloads; |
| 1193 | for (OverloadExpr::decls_iterator It = Overloads.begin(), |
| 1194 | DeclsEnd = Overloads.end(); It != DeclsEnd; ++It) { |
| 1195 | const FunctionDecl *OverloadDecl = cast<FunctionDecl>(*It); |
| 1196 | QualType OverloadResultTy = OverloadDecl->getResultType(); |
| 1197 | if (IsPlausibleResult(OverloadResultTy)) |
| 1198 | PlausibleOverloads.addDecl(It.getDecl()); |
| 1199 | } |
| 1200 | noteOverloads(S, PlausibleOverloads, Loc); |
| 1201 | } |
| 1202 | |
| 1203 | /// Determine whether the given expression can be called by just |
| 1204 | /// putting parentheses after it. Notably, expressions with unary |
| 1205 | /// operators can't be because the unary operator will start parsing |
| 1206 | /// outside the call. |
| 1207 | static bool IsCallableWithAppend(Expr *E) { |
| 1208 | E = E->IgnoreImplicit(); |
| 1209 | return (!isa<CStyleCastExpr>(E) && |
| 1210 | !isa<UnaryOperator>(E) && |
| 1211 | !isa<BinaryOperator>(E) && |
| 1212 | !isa<CXXOperatorCallExpr>(E)); |
| 1213 | } |
| 1214 | |
| 1215 | bool Sema::tryToRecoverWithCall(ExprResult &E, const PartialDiagnostic &PD, |
| 1216 | bool ForceComplain, |
| 1217 | bool (*IsPlausibleResult)(QualType)) { |
| 1218 | SourceLocation Loc = E.get()->getExprLoc(); |
| 1219 | SourceRange Range = E.get()->getSourceRange(); |
| 1220 | |
| 1221 | QualType ZeroArgCallTy; |
| 1222 | UnresolvedSet<4> Overloads; |
| 1223 | if (isExprCallable(*E.get(), ZeroArgCallTy, Overloads) && |
| 1224 | !ZeroArgCallTy.isNull() && |
| 1225 | (!IsPlausibleResult || IsPlausibleResult(ZeroArgCallTy))) { |
| 1226 | // At this point, we know E is potentially callable with 0 |
| 1227 | // arguments and that it returns something of a reasonable type, |
| 1228 | // so we can emit a fixit and carry on pretending that E was |
| 1229 | // actually a CallExpr. |
| 1230 | SourceLocation ParenInsertionLoc = |
| 1231 | PP.getLocForEndOfToken(Range.getEnd()); |
| 1232 | Diag(Loc, PD) |
| 1233 | << /*zero-arg*/ 1 << Range |
| 1234 | << (IsCallableWithAppend(E.get()) |
| 1235 | ? FixItHint::CreateInsertion(ParenInsertionLoc, "()") |
| 1236 | : FixItHint()); |
| 1237 | notePlausibleOverloads(*this, Loc, Overloads, IsPlausibleResult); |
| 1238 | |
| 1239 | // FIXME: Try this before emitting the fixit, and suppress diagnostics |
| 1240 | // while doing so. |
| 1241 | E = ActOnCallExpr(0, E.take(), ParenInsertionLoc, |
| 1242 | MultiExprArg(*this, 0, 0), |
| 1243 | ParenInsertionLoc.getLocWithOffset(1)); |
| 1244 | return true; |
| 1245 | } |
| 1246 | |
| 1247 | if (!ForceComplain) return false; |
| 1248 | |
| 1249 | Diag(Loc, PD) << /*not zero-arg*/ 0 << Range; |
| 1250 | notePlausibleOverloads(*this, Loc, Overloads, IsPlausibleResult); |
| 1251 | E = ExprError(); |
| 1252 | return true; |
Matt Beaumont-Gay | c9366ba | 2011-05-04 22:10:40 +0000 | [diff] [blame] | 1253 | } |