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 | |
| 15 | #include "Sema.h" |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 16 | #include "TargetAttributesSema.h" |
Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/SmallSet.h" |
John McCall | 680523a | 2009-11-07 03:30:10 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/APFloat.h" |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 20 | #include "clang/AST/ASTConsumer.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 21 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | 79a9a34 | 2010-02-09 22:26:47 +0000 | [diff] [blame] | 22 | #include "clang/AST/ASTDiagnostic.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclObjC.h" |
Daniel Dunbar | e91593e | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 24 | #include "clang/AST/Expr.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 25 | #include "clang/Lex/Preprocessor.h" |
Anders Carlsson | 91a0cc9 | 2009-08-26 22:33:56 +0000 | [diff] [blame] | 26 | #include "clang/Basic/PartialDiagnostic.h" |
Chris Lattner | 4d150c8 | 2009-04-30 06:18:40 +0000 | [diff] [blame] | 27 | #include "clang/Basic/TargetInfo.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 28 | using namespace clang; |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 29 | |
| 30 | FunctionScopeInfo::~FunctionScopeInfo() { } |
| 31 | |
| 32 | void FunctionScopeInfo::Clear(unsigned NumErrors) { |
| 33 | NeedsScopeChecking = false; |
| 34 | LabelMap.clear(); |
| 35 | SwitchStack.clear(); |
| 36 | NumErrorsAtStartOfFunction = NumErrors; |
| 37 | } |
| 38 | |
| 39 | BlockScopeInfo::~BlockScopeInfo() { } |
| 40 | |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 41 | static inline RecordDecl *CreateStructDecl(ASTContext &C, const char *Name) { |
Anders Carlsson | c303606 | 2008-08-23 22:20:38 +0000 | [diff] [blame] | 42 | if (C.getLangOptions().CPlusPlus) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 43 | return CXXRecordDecl::Create(C, TagDecl::TK_struct, |
Anders Carlsson | c303606 | 2008-08-23 22:20:38 +0000 | [diff] [blame] | 44 | C.getTranslationUnitDecl(), |
Ted Kremenek | df042e6 | 2008-09-05 01:34:33 +0000 | [diff] [blame] | 45 | SourceLocation(), &C.Idents.get(Name)); |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 46 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 47 | return RecordDecl::Create(C, TagDecl::TK_struct, |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 48 | C.getTranslationUnitDecl(), |
| 49 | SourceLocation(), &C.Idents.get(Name)); |
Anders Carlsson | c303606 | 2008-08-23 22:20:38 +0000 | [diff] [blame] | 50 | } |
| 51 | |
Steve Naroff | b216c88 | 2007-10-09 22:01:59 +0000 | [diff] [blame] | 52 | void Sema::ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) { |
| 53 | TUScope = S; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 54 | PushDeclContext(S, Context.getTranslationUnitDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 4d150c8 | 2009-04-30 06:18:40 +0000 | [diff] [blame] | 56 | if (PP.getTargetInfo().getPointerWidth(0) >= 64) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 57 | TypeSourceInfo *TInfo; |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 4d150c8 | 2009-04-30 06:18:40 +0000 | [diff] [blame] | 59 | // Install [u]int128_t for 64-bit targets. |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 60 | TInfo = Context.getTrivialTypeSourceInfo(Context.Int128Ty); |
Chris Lattner | 4d150c8 | 2009-04-30 06:18:40 +0000 | [diff] [blame] | 61 | PushOnScopeChains(TypedefDecl::Create(Context, CurContext, |
| 62 | SourceLocation(), |
| 63 | &Context.Idents.get("__int128_t"), |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 64 | TInfo), TUScope); |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 65 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 66 | TInfo = Context.getTrivialTypeSourceInfo(Context.UnsignedInt128Ty); |
Chris Lattner | 4d150c8 | 2009-04-30 06:18:40 +0000 | [diff] [blame] | 67 | PushOnScopeChains(TypedefDecl::Create(Context, CurContext, |
| 68 | SourceLocation(), |
| 69 | &Context.Idents.get("__uint128_t"), |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 70 | TInfo), TUScope); |
Chris Lattner | 4d150c8 | 2009-04-30 06:18:40 +0000 | [diff] [blame] | 71 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 72 | |
| 73 | |
Chris Lattner | 2ae34ed | 2008-02-06 00:46:58 +0000 | [diff] [blame] | 74 | if (!PP.getLangOptions().ObjC1) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 75 | |
Steve Naroff | cb83c53 | 2009-06-16 00:20:10 +0000 | [diff] [blame] | 76 | // Built-in ObjC types may already be set by PCHReader (hence isNull checks). |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 77 | if (Context.getObjCSelType().isNull()) { |
Fariborz Jahanian | 13dcd00 | 2009-11-21 19:53:08 +0000 | [diff] [blame] | 78 | // Create the built-in typedef for 'SEL'. |
Fariborz Jahanian | 04765ac | 2009-11-23 18:04:25 +0000 | [diff] [blame] | 79 | QualType SelT = Context.getPointerType(Context.ObjCBuiltinSelTy); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 80 | TypeSourceInfo *SelInfo = Context.getTrivialTypeSourceInfo(SelT); |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 81 | TypedefDecl *SelTypedef |
| 82 | = TypedefDecl::Create(Context, CurContext, SourceLocation(), |
| 83 | &Context.Idents.get("SEL"), SelInfo); |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 84 | PushOnScopeChains(SelTypedef, TUScope); |
| 85 | Context.setObjCSelType(Context.getTypeDeclType(SelTypedef)); |
Fariborz Jahanian | 369a3bd | 2009-11-25 23:07:42 +0000 | [diff] [blame] | 86 | Context.ObjCSelRedefinitionType = Context.getObjCSelType(); |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 87 | } |
Chris Lattner | 6ee1f9c | 2008-06-21 20:20:39 +0000 | [diff] [blame] | 88 | |
Chris Lattner | 6ee1f9c | 2008-06-21 20:20:39 +0000 | [diff] [blame] | 89 | // Synthesize "@class Protocol; |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 90 | if (Context.getObjCProtoType().isNull()) { |
| 91 | ObjCInterfaceDecl *ProtocolDecl = |
| 92 | ObjCInterfaceDecl::Create(Context, CurContext, SourceLocation(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 93 | &Context.Idents.get("Protocol"), |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 94 | SourceLocation(), true); |
| 95 | Context.setObjCProtoType(Context.getObjCInterfaceType(ProtocolDecl)); |
Fariborz Jahanian | 10324db | 2009-11-18 23:15:37 +0000 | [diff] [blame] | 96 | PushOnScopeChains(ProtocolDecl, TUScope, false); |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 97 | } |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 98 | // Create the built-in typedef for 'id'. |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 99 | if (Context.getObjCIdType().isNull()) { |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 100 | QualType IdT = Context.getObjCObjectPointerType(Context.ObjCBuiltinIdTy); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 101 | TypeSourceInfo *IdInfo = Context.getTrivialTypeSourceInfo(IdT); |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 102 | TypedefDecl *IdTypedef |
| 103 | = TypedefDecl::Create(Context, CurContext, SourceLocation(), |
| 104 | &Context.Idents.get("id"), IdInfo); |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 105 | PushOnScopeChains(IdTypedef, TUScope); |
| 106 | Context.setObjCIdType(Context.getTypeDeclType(IdTypedef)); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 107 | Context.ObjCIdRedefinitionType = Context.getObjCIdType(); |
Douglas Gregor | 319ac89 | 2009-04-23 22:29:11 +0000 | [diff] [blame] | 108 | } |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 109 | // Create the built-in typedef for 'Class'. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 110 | if (Context.getObjCClassType().isNull()) { |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 111 | QualType ClassType |
| 112 | = Context.getObjCObjectPointerType(Context.ObjCBuiltinClassTy); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 113 | TypeSourceInfo *ClassInfo = Context.getTrivialTypeSourceInfo(ClassType); |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 114 | TypedefDecl *ClassTypedef |
| 115 | = TypedefDecl::Create(Context, CurContext, SourceLocation(), |
| 116 | &Context.Idents.get("Class"), ClassInfo); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 117 | PushOnScopeChains(ClassTypedef, TUScope); |
| 118 | Context.setObjCClassType(Context.getTypeDeclType(ClassTypedef)); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 119 | Context.ObjCClassRedefinitionType = Context.getObjCClassType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 120 | } |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 121 | } |
| 122 | |
Douglas Gregor | f807fe0 | 2009-04-14 16:27:31 +0000 | [diff] [blame] | 123 | Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer, |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 124 | bool CompleteTranslationUnit, |
| 125 | CodeCompleteConsumer *CodeCompleter) |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 126 | : TheTargetAttributesSema(0), |
| 127 | LangOpts(pp.getLangOptions()), PP(pp), Context(ctxt), Consumer(consumer), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 128 | Diags(PP.getDiagnostics()), SourceMgr(PP.getSourceManager()), |
Daniel Dunbar | 3a2838d | 2009-11-13 08:58:20 +0000 | [diff] [blame] | 129 | ExternalSource(0), CodeCompleter(CodeCompleter), CurContext(0), |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 130 | PackContext(0), TopFunctionScope(0), ParsingDeclDepth(0), |
Douglas Gregor | 81b747b | 2009-09-17 21:32:03 +0000 | [diff] [blame] | 131 | IdResolver(pp.getLangOptions()), StdNamespace(0), StdBadAlloc(0), |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 132 | GlobalNewDeleteDeclared(false), |
Douglas Gregor | 48dd19b | 2009-05-14 21:44:34 +0000 | [diff] [blame] | 133 | CompleteTranslationUnit(CompleteTranslationUnit), |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 134 | NumSFINAEErrors(0), NonInstantiationEntries(0), |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 135 | CurrentInstantiationScope(0), TyposCorrected(0), |
| 136 | AnalysisWarnings(*this) |
Douglas Gregor | f35f828 | 2009-11-11 21:54:23 +0000 | [diff] [blame] | 137 | { |
Steve Naroff | 3b95017 | 2007-10-10 21:53:07 +0000 | [diff] [blame] | 138 | TUScope = 0; |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 139 | if (getLangOptions().CPlusPlus) |
| 140 | FieldCollector.reset(new CXXFieldCollector()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 141 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 142 | // Tell diagnostics how to render things from the AST library. |
Douglas Gregor | 79a9a34 | 2010-02-09 22:26:47 +0000 | [diff] [blame] | 143 | PP.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument, |
| 144 | &Context); |
Douglas Gregor | 2afce72 | 2009-11-26 00:44:06 +0000 | [diff] [blame] | 145 | |
| 146 | ExprEvalContexts.push_back( |
| 147 | ExpressionEvaluationContextRecord(PotentiallyEvaluated, 0)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 150 | Sema::~Sema() { |
| 151 | if (PackContext) FreePackedContext(); |
| 152 | delete TheTargetAttributesSema; |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 153 | while (!FunctionScopes.empty()) |
| 154 | PopFunctionOrBlockScope(); |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 157 | /// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast. |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 158 | /// If there is already an implicit cast, merge into the existing one. |
Nate Begeman | 6fe7c8a | 2009-01-18 06:42:49 +0000 | [diff] [blame] | 159 | /// If isLvalue, the result of the cast is an lvalue. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 160 | void Sema::ImpCastExprToType(Expr *&Expr, QualType Ty, |
Anders Carlsson | c0a2fd8 | 2009-09-15 05:13:45 +0000 | [diff] [blame] | 161 | CastExpr::CastKind Kind, bool isLvalue) { |
Mon P Wang | 3a2c744 | 2008-09-04 08:38:01 +0000 | [diff] [blame] | 162 | QualType ExprTy = Context.getCanonicalType(Expr->getType()); |
| 163 | QualType TypeTy = Context.getCanonicalType(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 164 | |
Mon P Wang | 3a2c744 | 2008-09-04 08:38:01 +0000 | [diff] [blame] | 165 | if (ExprTy == TypeTy) |
| 166 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 167 | |
John McCall | 680523a | 2009-11-07 03:30:10 +0000 | [diff] [blame] | 168 | if (Expr->getType()->isPointerType() && Ty->isPointerType()) { |
| 169 | QualType ExprBaseType = cast<PointerType>(ExprTy)->getPointeeType(); |
| 170 | QualType BaseType = cast<PointerType>(TypeTy)->getPointeeType(); |
Mon P Wang | 3a2c744 | 2008-09-04 08:38:01 +0000 | [diff] [blame] | 171 | if (ExprBaseType.getAddressSpace() != BaseType.getAddressSpace()) { |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 172 | Diag(Expr->getExprLoc(), diag::err_implicit_pointer_address_space_cast) |
| 173 | << Expr->getSourceRange(); |
Mon P Wang | 3a2c744 | 2008-09-04 08:38:01 +0000 | [diff] [blame] | 174 | } |
| 175 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 176 | |
John McCall | 51313c3 | 2010-01-04 23:31:57 +0000 | [diff] [blame] | 177 | CheckImplicitConversion(Expr, Ty); |
John McCall | 680523a | 2009-11-07 03:30:10 +0000 | [diff] [blame] | 178 | |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 179 | if (ImplicitCastExpr *ImpCast = dyn_cast<ImplicitCastExpr>(Expr)) { |
Anders Carlsson | 4c5fad3 | 2009-09-15 05:28:24 +0000 | [diff] [blame] | 180 | if (ImpCast->getCastKind() == Kind) { |
| 181 | ImpCast->setType(Ty); |
| 182 | ImpCast->setLvalueCast(isLvalue); |
| 183 | return; |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | Expr = new (Context) ImplicitCastExpr(Ty, Kind, Expr, isLvalue); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 188 | } |
| 189 | |
Chris Lattner | 394a3fd | 2007-08-31 04:53:24 +0000 | [diff] [blame] | 190 | void Sema::DeleteExpr(ExprTy *E) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 191 | if (E) static_cast<Expr*>(E)->Destroy(Context); |
Chris Lattner | 394a3fd | 2007-08-31 04:53:24 +0000 | [diff] [blame] | 192 | } |
| 193 | void Sema::DeleteStmt(StmtTy *S) { |
Douglas Gregor | 05c13a3 | 2009-01-22 00:58:24 +0000 | [diff] [blame] | 194 | if (S) static_cast<Stmt*>(S)->Destroy(Context); |
Chris Lattner | 394a3fd | 2007-08-31 04:53:24 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Chris Lattner | 9299f3f | 2008-08-23 03:19:52 +0000 | [diff] [blame] | 197 | /// ActOnEndOfTranslationUnit - This is called at the very end of the |
| 198 | /// translation unit when EOF is reached and all but the top-level scope is |
| 199 | /// popped. |
Douglas Gregor | 47268a3 | 2010-04-09 17:41:13 +0000 | [diff] [blame] | 200 | void Sema::ActOnEndOfTranslationUnit() { |
Anders Carlsson | d6a637f | 2009-12-07 08:24:59 +0000 | [diff] [blame] | 201 | while (1) { |
| 202 | // C++: Perform implicit template instantiations. |
| 203 | // |
| 204 | // FIXME: When we perform these implicit instantiations, we do not carefully |
| 205 | // keep track of the point of instantiation (C++ [temp.point]). This means |
| 206 | // that name lookup that occurs within the template instantiation will |
| 207 | // always happen at the end of the translation unit, so it will find |
| 208 | // some names that should not be found. Although this is common behavior |
| 209 | // for C++ compilers, it is technically wrong. In the future, we either need |
| 210 | // to be able to filter the results of name lookup or we need to perform |
| 211 | // template instantiations earlier. |
| 212 | PerformPendingImplicitInstantiations(); |
| 213 | |
| 214 | /// If ProcessPendingClassesWithUnmarkedVirtualMembers ends up marking |
| 215 | /// any virtual member functions it might lead to more pending template |
| 216 | /// instantiations, which is why we need to loop here. |
| 217 | if (!ProcessPendingClassesWithUnmarkedVirtualMembers()) |
| 218 | break; |
| 219 | } |
| 220 | |
Douglas Gregor | 47268a3 | 2010-04-09 17:41:13 +0000 | [diff] [blame] | 221 | // Remove functions that turned out to be used. |
| 222 | UnusedStaticFuncs.erase(std::remove_if(UnusedStaticFuncs.begin(), |
| 223 | UnusedStaticFuncs.end(), |
| 224 | std::mem_fun(&FunctionDecl::isUsed)), |
| 225 | UnusedStaticFuncs.end()); |
| 226 | |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 227 | // Check for #pragma weak identifiers that were never declared |
| 228 | // FIXME: This will cause diagnostics to be emitted in a non-determinstic |
| 229 | // order! Iterating over a densemap like this is bad. |
Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 230 | for (llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 231 | I = WeakUndeclaredIdentifiers.begin(), |
| 232 | E = WeakUndeclaredIdentifiers.end(); I != E; ++I) { |
| 233 | if (I->second.getUsed()) continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 234 | |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 235 | Diag(I->second.getLocation(), diag::warn_weak_identifier_undeclared) |
| 236 | << I->first; |
Ryan Flynn | e25ff83 | 2009-07-30 03:15:39 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Douglas Gregor | f807fe0 | 2009-04-14 16:27:31 +0000 | [diff] [blame] | 239 | if (!CompleteTranslationUnit) |
| 240 | return; |
| 241 | |
Douglas Gregor | 275a369 | 2009-03-10 23:43:53 +0000 | [diff] [blame] | 242 | // C99 6.9.2p2: |
| 243 | // A declaration of an identifier for an object that has file |
| 244 | // scope without an initializer, and without a storage-class |
| 245 | // specifier or with the storage-class specifier static, |
| 246 | // constitutes a tentative definition. If a translation unit |
| 247 | // contains one or more tentative definitions for an identifier, |
| 248 | // and the translation unit contains no external definition for |
| 249 | // that identifier, then the behavior is exactly as if the |
| 250 | // translation unit contains a file scope declaration of that |
| 251 | // identifier, with the composite type as of the end of the |
| 252 | // translation unit, with an initializer equal to 0. |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 253 | llvm::SmallSet<VarDecl *, 32> Seen; |
| 254 | for (unsigned i = 0, e = TentativeDefinitions.size(); i != e; ++i) { |
| 255 | VarDecl *VD = TentativeDefinitions[i]->getActingDefinition(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 256 | |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 257 | // If the tentative definition was completed, getActingDefinition() returns |
| 258 | // null. If we've already seen this variable before, insert()'s second |
| 259 | // return value is false. |
| 260 | if (VD == 0 || VD->isInvalidDecl() || !Seen.insert(VD)) |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 261 | continue; |
| 262 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 263 | if (const IncompleteArrayType *ArrayT |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 264 | = Context.getAsIncompleteArrayType(VD->getType())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 265 | if (RequireCompleteType(VD->getLocation(), |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 266 | ArrayT->getElementType(), |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 267 | diag::err_tentative_def_incomplete_type_arr)) { |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 268 | VD->setInvalidDecl(); |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 269 | continue; |
Douglas Gregor | 275a369 | 2009-03-10 23:43:53 +0000 | [diff] [blame] | 270 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 271 | |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 272 | // Set the length of the array to 1 (C99 6.9.2p5). |
| 273 | Diag(VD->getLocation(), diag::warn_tentative_incomplete_array); |
| 274 | llvm::APInt One(Context.getTypeSize(Context.getSizeType()), true); |
John McCall | 46a617a | 2009-10-16 00:14:28 +0000 | [diff] [blame] | 275 | QualType T = Context.getConstantArrayType(ArrayT->getElementType(), |
| 276 | One, ArrayType::Normal, 0); |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 277 | VD->setType(T); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 278 | } else if (RequireCompleteType(VD->getLocation(), VD->getType(), |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 279 | diag::err_tentative_def_incomplete_type)) |
| 280 | VD->setInvalidDecl(); |
| 281 | |
| 282 | // Notify the consumer that we've completed a tentative definition. |
| 283 | if (!VD->isInvalidDecl()) |
| 284 | Consumer.CompleteTentativeDefinition(VD); |
| 285 | |
Douglas Gregor | 275a369 | 2009-03-10 23:43:53 +0000 | [diff] [blame] | 286 | } |
Tanya Lattner | e6bbc01 | 2010-02-12 00:07:30 +0000 | [diff] [blame] | 287 | |
| 288 | // Output warning for unused functions. |
| 289 | for (std::vector<FunctionDecl*>::iterator |
| 290 | F = UnusedStaticFuncs.begin(), |
| 291 | FEnd = UnusedStaticFuncs.end(); |
| 292 | F != FEnd; |
| 293 | ++F) |
| 294 | Diag((*F)->getLocation(), diag::warn_unused_function) << (*F)->getDeclName(); |
| 295 | |
Chris Lattner | 9299f3f | 2008-08-23 03:19:52 +0000 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 299 | //===----------------------------------------------------------------------===// |
| 300 | // Helper functions. |
| 301 | //===----------------------------------------------------------------------===// |
| 302 | |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 303 | DeclContext *Sema::getFunctionLevelDeclContext() { |
John McCall | db0ee1d | 2009-12-19 10:53:49 +0000 | [diff] [blame] | 304 | DeclContext *DC = CurContext; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 305 | |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 306 | while (isa<BlockDecl>(DC)) |
| 307 | DC = DC->getParent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 308 | |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 309 | return DC; |
| 310 | } |
| 311 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 312 | /// getCurFunctionDecl - If inside of a function body, this returns a pointer |
| 313 | /// to the function decl for the function being parsed. If we're currently |
| 314 | /// in a 'block', this returns the containing context. |
| 315 | FunctionDecl *Sema::getCurFunctionDecl() { |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 316 | DeclContext *DC = getFunctionLevelDeclContext(); |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 317 | return dyn_cast<FunctionDecl>(DC); |
| 318 | } |
| 319 | |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 320 | ObjCMethodDecl *Sema::getCurMethodDecl() { |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 321 | DeclContext *DC = getFunctionLevelDeclContext(); |
Steve Naroff | d7612e1 | 2008-11-17 16:28:52 +0000 | [diff] [blame] | 322 | return dyn_cast<ObjCMethodDecl>(DC); |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 323 | } |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 324 | |
| 325 | NamedDecl *Sema::getCurFunctionOrMethodDecl() { |
Anders Carlsson | 8517d9b | 2009-08-08 17:45:02 +0000 | [diff] [blame] | 326 | DeclContext *DC = getFunctionLevelDeclContext(); |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 327 | if (isa<ObjCMethodDecl>(DC) || isa<FunctionDecl>(DC)) |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 328 | return cast<NamedDecl>(DC); |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 329 | return 0; |
| 330 | } |
| 331 | |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 332 | Sema::SemaDiagnosticBuilder::~SemaDiagnosticBuilder() { |
Douglas Gregor | 5e9f35c | 2009-06-14 07:33:30 +0000 | [diff] [blame] | 333 | if (!this->Emit()) |
| 334 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 335 | |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 336 | // If this is not a note, and we're in a template instantiation |
| 337 | // that is different from the last template instantiation where |
| 338 | // we emitted an error, print a template instantiation |
| 339 | // backtrace. |
| 340 | if (!SemaRef.Diags.isBuiltinNote(DiagID) && |
| 341 | !SemaRef.ActiveTemplateInstantiations.empty() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 342 | SemaRef.ActiveTemplateInstantiations.back() |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 343 | != SemaRef.LastTemplateInstantiationErrorContext) { |
| 344 | SemaRef.PrintInstantiationStack(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 345 | SemaRef.LastTemplateInstantiationErrorContext |
Douglas Gregor | 25a88bb | 2009-03-20 22:48:49 +0000 | [diff] [blame] | 346 | = SemaRef.ActiveTemplateInstantiations.back(); |
| 347 | } |
| 348 | } |
Douglas Gregor | 2e22253 | 2009-07-02 17:08:52 +0000 | [diff] [blame] | 349 | |
Douglas Gregor | eab5d1e | 2010-03-25 22:17:48 +0000 | [diff] [blame] | 350 | Sema::SemaDiagnosticBuilder Sema::Diag(SourceLocation Loc, unsigned DiagID) { |
| 351 | if (isSFINAEContext()) { |
| 352 | switch (Diagnostic::getDiagnosticSFINAEResponse(DiagID)) { |
| 353 | case Diagnostic::SFINAE_Report: |
| 354 | // Fall through; we'll report the diagnostic below. |
| 355 | break; |
| 356 | |
| 357 | case Diagnostic::SFINAE_SubstitutionFailure: |
| 358 | // Count this failure so that we know that template argument deduction |
| 359 | // has failed. |
| 360 | ++NumSFINAEErrors; |
| 361 | // Fall through |
| 362 | |
| 363 | case Diagnostic::SFINAE_Suppress: |
| 364 | // Suppress this diagnostic. |
| 365 | Diags.setLastDiagnosticIgnored(); |
| 366 | return SemaDiagnosticBuilder(*this); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | DiagnosticBuilder DB = Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID); |
| 371 | return SemaDiagnosticBuilder(DB, *this, DiagID); |
| 372 | } |
| 373 | |
Anders Carlsson | 91a0cc9 | 2009-08-26 22:33:56 +0000 | [diff] [blame] | 374 | Sema::SemaDiagnosticBuilder |
| 375 | Sema::Diag(SourceLocation Loc, const PartialDiagnostic& PD) { |
| 376 | SemaDiagnosticBuilder Builder(Diag(Loc, PD.getDiagID())); |
| 377 | PD.Emit(Builder); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 378 | |
Anders Carlsson | 91a0cc9 | 2009-08-26 22:33:56 +0000 | [diff] [blame] | 379 | return Builder; |
| 380 | } |
| 381 | |
Douglas Gregor | 9ea9bdb | 2010-03-01 23:15:13 +0000 | [diff] [blame] | 382 | |
| 383 | /// \brief Enter a new function scope |
| 384 | void Sema::PushFunctionScope() { |
| 385 | if (FunctionScopes.empty()) { |
| 386 | // Use the "top" function scope rather than having to allocate memory for |
| 387 | // a new scope. |
| 388 | TopFunctionScope.Clear(getDiagnostics().getNumErrors()); |
| 389 | FunctionScopes.push_back(&TopFunctionScope); |
| 390 | return; |
| 391 | } |
| 392 | |
| 393 | FunctionScopes.push_back( |
| 394 | new FunctionScopeInfo(getDiagnostics().getNumErrors())); |
| 395 | } |
| 396 | |
| 397 | void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) { |
| 398 | FunctionScopes.push_back(new BlockScopeInfo(getDiagnostics().getNumErrors(), |
| 399 | BlockScope, Block)); |
| 400 | } |
| 401 | |
| 402 | void Sema::PopFunctionOrBlockScope() { |
| 403 | if (FunctionScopes.back() != &TopFunctionScope) |
| 404 | delete FunctionScopes.back(); |
| 405 | else |
| 406 | TopFunctionScope.Clear(getDiagnostics().getNumErrors()); |
| 407 | |
| 408 | FunctionScopes.pop_back(); |
| 409 | } |
| 410 | |
| 411 | /// \brief Determine whether any errors occurred within this function/method/ |
| 412 | /// block. |
| 413 | bool Sema::hasAnyErrorsInThisFunction() const { |
| 414 | unsigned NumErrors = TopFunctionScope.NumErrorsAtStartOfFunction; |
| 415 | if (!FunctionScopes.empty()) |
| 416 | NumErrors = FunctionScopes.back()->NumErrorsAtStartOfFunction; |
| 417 | return NumErrors != getDiagnostics().getNumErrors(); |
| 418 | } |
| 419 | |
| 420 | BlockScopeInfo *Sema::getCurBlock() { |
| 421 | if (FunctionScopes.empty()) |
| 422 | return 0; |
| 423 | |
| 424 | return dyn_cast<BlockScopeInfo>(FunctionScopes.back()); |
| 425 | } |