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