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