blob: eadc2ad253d82a8f62241a05e57bc8d210a79215 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
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 Korobeynikov82d0a412010-01-10 12:58:08 +000016#include "TargetAttributesSema.h"
Ryan Flynne25ff832009-07-30 03:15:39 +000017#include "llvm/ADT/DenseMap.h"
Sebastian Redle9d12b62010-01-31 22:27:38 +000018#include "llvm/ADT/SmallSet.h"
John McCall680523a2009-11-07 03:30:10 +000019#include "llvm/ADT/APFloat.h"
John McCall76bd1f32010-06-01 09:23:16 +000020#include "clang/Sema/ExternalSemaSource.h"
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +000021#include "clang/AST/ASTConsumer.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/AST/ASTContext.h"
Douglas Gregor79a9a342010-02-09 22:26:47 +000023#include "clang/AST/ASTDiagnostic.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000024#include "clang/AST/DeclObjC.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000025#include "clang/AST/Expr.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000026#include "clang/Lex/Preprocessor.h"
Anders Carlsson91a0cc92009-08-26 22:33:56 +000027#include "clang/Basic/PartialDiagnostic.h"
Chris Lattner4d150c82009-04-30 06:18:40 +000028#include "clang/Basic/TargetInfo.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000029using namespace clang;
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000030
31FunctionScopeInfo::~FunctionScopeInfo() { }
32
33void FunctionScopeInfo::Clear(unsigned NumErrors) {
34 NeedsScopeChecking = false;
35 LabelMap.clear();
36 SwitchStack.clear();
Douglas Gregor5077c382010-05-15 06:01:05 +000037 Returns.clear();
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +000038 NumErrorsAtStartOfFunction = NumErrors;
39}
40
41BlockScopeInfo::~BlockScopeInfo() { }
42
Steve Naroffb216c882007-10-09 22:01:59 +000043void Sema::ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) {
44 TUScope = S;
Douglas Gregor44b43212008-12-11 16:49:14 +000045 PushDeclContext(S, Context.getTranslationUnitDecl());
Mike Stump1eb44332009-09-09 15:08:12 +000046
John McCallc7e04da2010-05-28 18:45:08 +000047 VAListTagName = PP.getIdentifierInfo("__va_list_tag");
48
Chris Lattner4d150c82009-04-30 06:18:40 +000049 if (PP.getTargetInfo().getPointerWidth(0) >= 64) {
John McCalla93c9342009-12-07 02:54:59 +000050 TypeSourceInfo *TInfo;
John McCallba6a9bd2009-10-24 08:00:42 +000051
Chris Lattner4d150c82009-04-30 06:18:40 +000052 // Install [u]int128_t for 64-bit targets.
John McCalla93c9342009-12-07 02:54:59 +000053 TInfo = Context.getTrivialTypeSourceInfo(Context.Int128Ty);
Chris Lattner4d150c82009-04-30 06:18:40 +000054 PushOnScopeChains(TypedefDecl::Create(Context, CurContext,
55 SourceLocation(),
56 &Context.Idents.get("__int128_t"),
John McCalla93c9342009-12-07 02:54:59 +000057 TInfo), TUScope);
John McCallba6a9bd2009-10-24 08:00:42 +000058
John McCalla93c9342009-12-07 02:54:59 +000059 TInfo = Context.getTrivialTypeSourceInfo(Context.UnsignedInt128Ty);
Chris Lattner4d150c82009-04-30 06:18:40 +000060 PushOnScopeChains(TypedefDecl::Create(Context, CurContext,
61 SourceLocation(),
62 &Context.Idents.get("__uint128_t"),
John McCalla93c9342009-12-07 02:54:59 +000063 TInfo), TUScope);
Chris Lattner4d150c82009-04-30 06:18:40 +000064 }
Mike Stump1eb44332009-09-09 15:08:12 +000065
66
Chris Lattner2ae34ed2008-02-06 00:46:58 +000067 if (!PP.getLangOptions().ObjC1) return;
Mike Stump1eb44332009-09-09 15:08:12 +000068
Steve Naroffcb83c532009-06-16 00:20:10 +000069 // Built-in ObjC types may already be set by PCHReader (hence isNull checks).
Douglas Gregor319ac892009-04-23 22:29:11 +000070 if (Context.getObjCSelType().isNull()) {
Fariborz Jahanian13dcd002009-11-21 19:53:08 +000071 // Create the built-in typedef for 'SEL'.
Fariborz Jahanian04765ac2009-11-23 18:04:25 +000072 QualType SelT = Context.getPointerType(Context.ObjCBuiltinSelTy);
John McCalla93c9342009-12-07 02:54:59 +000073 TypeSourceInfo *SelInfo = Context.getTrivialTypeSourceInfo(SelT);
John McCallba6a9bd2009-10-24 08:00:42 +000074 TypedefDecl *SelTypedef
75 = TypedefDecl::Create(Context, CurContext, SourceLocation(),
76 &Context.Idents.get("SEL"), SelInfo);
Douglas Gregor319ac892009-04-23 22:29:11 +000077 PushOnScopeChains(SelTypedef, TUScope);
78 Context.setObjCSelType(Context.getTypeDeclType(SelTypedef));
Fariborz Jahanian369a3bd2009-11-25 23:07:42 +000079 Context.ObjCSelRedefinitionType = Context.getObjCSelType();
Douglas Gregor319ac892009-04-23 22:29:11 +000080 }
Chris Lattner6ee1f9c2008-06-21 20:20:39 +000081
Chris Lattner6ee1f9c2008-06-21 20:20:39 +000082 // Synthesize "@class Protocol;
Douglas Gregor319ac892009-04-23 22:29:11 +000083 if (Context.getObjCProtoType().isNull()) {
84 ObjCInterfaceDecl *ProtocolDecl =
85 ObjCInterfaceDecl::Create(Context, CurContext, SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +000086 &Context.Idents.get("Protocol"),
Douglas Gregor319ac892009-04-23 22:29:11 +000087 SourceLocation(), true);
88 Context.setObjCProtoType(Context.getObjCInterfaceType(ProtocolDecl));
Fariborz Jahanian10324db2009-11-18 23:15:37 +000089 PushOnScopeChains(ProtocolDecl, TUScope, false);
Douglas Gregor319ac892009-04-23 22:29:11 +000090 }
Steve Naroffde2e22d2009-07-15 18:40:39 +000091 // Create the built-in typedef for 'id'.
Douglas Gregor319ac892009-04-23 22:29:11 +000092 if (Context.getObjCIdType().isNull()) {
John McCallc12c5bb2010-05-15 11:32:37 +000093 QualType T = Context.getObjCObjectType(Context.ObjCBuiltinIdTy, 0, 0);
94 T = Context.getObjCObjectPointerType(T);
95 TypeSourceInfo *IdInfo = Context.getTrivialTypeSourceInfo(T);
John McCallba6a9bd2009-10-24 08:00:42 +000096 TypedefDecl *IdTypedef
97 = TypedefDecl::Create(Context, CurContext, SourceLocation(),
98 &Context.Idents.get("id"), IdInfo);
Douglas Gregor319ac892009-04-23 22:29:11 +000099 PushOnScopeChains(IdTypedef, TUScope);
100 Context.setObjCIdType(Context.getTypeDeclType(IdTypedef));
David Chisnall0f436562009-08-17 16:35:33 +0000101 Context.ObjCIdRedefinitionType = Context.getObjCIdType();
Douglas Gregor319ac892009-04-23 22:29:11 +0000102 }
Steve Naroffde2e22d2009-07-15 18:40:39 +0000103 // Create the built-in typedef for 'Class'.
Steve Naroff14108da2009-07-10 23:34:53 +0000104 if (Context.getObjCClassType().isNull()) {
John McCallc12c5bb2010-05-15 11:32:37 +0000105 QualType T = Context.getObjCObjectType(Context.ObjCBuiltinClassTy, 0, 0);
106 T = Context.getObjCObjectPointerType(T);
107 TypeSourceInfo *ClassInfo = Context.getTrivialTypeSourceInfo(T);
John McCallba6a9bd2009-10-24 08:00:42 +0000108 TypedefDecl *ClassTypedef
109 = TypedefDecl::Create(Context, CurContext, SourceLocation(),
110 &Context.Idents.get("Class"), ClassInfo);
Steve Naroff14108da2009-07-10 23:34:53 +0000111 PushOnScopeChains(ClassTypedef, TUScope);
112 Context.setObjCClassType(Context.getTypeDeclType(ClassTypedef));
David Chisnall0f436562009-08-17 16:35:33 +0000113 Context.ObjCClassRedefinitionType = Context.getObjCClassType();
Steve Naroff14108da2009-07-10 23:34:53 +0000114 }
Steve Naroff3b950172007-10-10 21:53:07 +0000115}
116
Douglas Gregorf807fe02009-04-14 16:27:31 +0000117Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer,
Daniel Dunbar3a2838d2009-11-13 08:58:20 +0000118 bool CompleteTranslationUnit,
119 CodeCompleteConsumer *CodeCompleter)
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000120 : TheTargetAttributesSema(0),
121 LangOpts(pp.getLangOptions()), PP(pp), Context(ctxt), Consumer(consumer),
Mike Stump1eb44332009-09-09 15:08:12 +0000122 Diags(PP.getDiagnostics()), SourceMgr(PP.getSourceManager()),
Daniel Dunbar3a2838d2009-11-13 08:58:20 +0000123 ExternalSource(0), CodeCompleter(CodeCompleter), CurContext(0),
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000124 PackContext(0), TopFunctionScope(0), ParsingDeclDepth(0),
Douglas Gregor81b747b2009-09-17 21:32:03 +0000125 IdResolver(pp.getLangOptions()), StdNamespace(0), StdBadAlloc(0),
Douglas Gregor2afce722009-11-26 00:44:06 +0000126 GlobalNewDeleteDeclared(false),
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000127 CompleteTranslationUnit(CompleteTranslationUnit),
Douglas Gregorf35f8282009-11-11 21:54:23 +0000128 NumSFINAEErrors(0), NonInstantiationEntries(0),
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000129 CurrentInstantiationScope(0), TyposCorrected(0),
130 AnalysisWarnings(*this)
Douglas Gregorf35f8282009-11-11 21:54:23 +0000131{
Steve Naroff3b950172007-10-10 21:53:07 +0000132 TUScope = 0;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000133 if (getLangOptions().CPlusPlus)
134 FieldCollector.reset(new CXXFieldCollector());
Mike Stump1eb44332009-09-09 15:08:12 +0000135
Chris Lattner22caddc2008-11-23 09:13:29 +0000136 // Tell diagnostics how to render things from the AST library.
Douglas Gregor79a9a342010-02-09 22:26:47 +0000137 PP.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
138 &Context);
Douglas Gregor2afce722009-11-26 00:44:06 +0000139
140 ExprEvalContexts.push_back(
141 ExpressionEvaluationContextRecord(PotentiallyEvaluated, 0));
Reid Spencer5f016e22007-07-11 17:01:13 +0000142}
143
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000144Sema::~Sema() {
145 if (PackContext) FreePackedContext();
146 delete TheTargetAttributesSema;
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000147 while (!FunctionScopes.empty())
148 PopFunctionOrBlockScope();
Anton Korobeynikov82d0a412010-01-10 12:58:08 +0000149}
150
Mike Stump1eb44332009-09-09 15:08:12 +0000151/// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
Chris Lattner1e0a3902008-01-16 19:17:22 +0000152/// If there is already an implicit cast, merge into the existing one.
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000153/// If isLvalue, the result of the cast is an lvalue.
Mike Stump1eb44332009-09-09 15:08:12 +0000154void Sema::ImpCastExprToType(Expr *&Expr, QualType Ty,
Anders Carlsson88465d32010-04-23 22:18:37 +0000155 CastExpr::CastKind Kind,
Anders Carlssonf1b48b72010-04-24 16:57:13 +0000156 bool isLvalue, CXXBaseSpecifierArray BasePath) {
Mon P Wang3a2c7442008-09-04 08:38:01 +0000157 QualType ExprTy = Context.getCanonicalType(Expr->getType());
158 QualType TypeTy = Context.getCanonicalType(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000159
Mon P Wang3a2c7442008-09-04 08:38:01 +0000160 if (ExprTy == TypeTy)
161 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000162
John McCall680523a2009-11-07 03:30:10 +0000163 if (Expr->getType()->isPointerType() && Ty->isPointerType()) {
164 QualType ExprBaseType = cast<PointerType>(ExprTy)->getPointeeType();
165 QualType BaseType = cast<PointerType>(TypeTy)->getPointeeType();
Mon P Wang3a2c7442008-09-04 08:38:01 +0000166 if (ExprBaseType.getAddressSpace() != BaseType.getAddressSpace()) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000167 Diag(Expr->getExprLoc(), diag::err_implicit_pointer_address_space_cast)
168 << Expr->getSourceRange();
Mon P Wang3a2c7442008-09-04 08:38:01 +0000169 }
170 }
Mike Stump1eb44332009-09-09 15:08:12 +0000171
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000172 // If this is a derived-to-base cast to a through a virtual base, we
173 // need a vtable.
174 if (Kind == CastExpr::CK_DerivedToBase &&
175 BasePathInvolvesVirtualBase(BasePath)) {
176 QualType T = Expr->getType();
177 if (const PointerType *Pointer = T->getAs<PointerType>())
178 T = Pointer->getPointeeType();
179 if (const RecordType *RecordTy = T->getAs<RecordType>())
180 MarkVTableUsed(Expr->getLocStart(),
181 cast<CXXRecordDecl>(RecordTy->getDecl()));
182 }
183
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000184 if (ImplicitCastExpr *ImpCast = dyn_cast<ImplicitCastExpr>(Expr)) {
Anders Carlssoncee22422010-04-24 19:22:20 +0000185 if (ImpCast->getCastKind() == Kind && BasePath.empty()) {
Anders Carlsson4c5fad32009-09-15 05:28:24 +0000186 ImpCast->setType(Ty);
187 ImpCast->setLvalueCast(isLvalue);
188 return;
189 }
190 }
191
Anders Carlsson7ab9d572010-04-24 16:34:21 +0000192 Expr = new (Context) ImplicitCastExpr(Ty, Kind, Expr, BasePath, isLvalue);
Chris Lattner1e0a3902008-01-16 19:17:22 +0000193}
194
Chris Lattner394a3fd2007-08-31 04:53:24 +0000195void Sema::DeleteExpr(ExprTy *E) {
Douglas Gregor05c13a32009-01-22 00:58:24 +0000196 if (E) static_cast<Expr*>(E)->Destroy(Context);
Chris Lattner394a3fd2007-08-31 04:53:24 +0000197}
198void Sema::DeleteStmt(StmtTy *S) {
Douglas Gregor05c13a32009-01-22 00:58:24 +0000199 if (S) static_cast<Stmt*>(S)->Destroy(Context);
Chris Lattner394a3fd2007-08-31 04:53:24 +0000200}
201
Chris Lattner9299f3f2008-08-23 03:19:52 +0000202/// ActOnEndOfTranslationUnit - This is called at the very end of the
203/// translation unit when EOF is reached and all but the top-level scope is
204/// popped.
Douglas Gregor47268a32010-04-09 17:41:13 +0000205void Sema::ActOnEndOfTranslationUnit() {
Anders Carlssond6a637f2009-12-07 08:24:59 +0000206 while (1) {
207 // C++: Perform implicit template instantiations.
208 //
209 // FIXME: When we perform these implicit instantiations, we do not carefully
210 // keep track of the point of instantiation (C++ [temp.point]). This means
211 // that name lookup that occurs within the template instantiation will
212 // always happen at the end of the translation unit, so it will find
213 // some names that should not be found. Although this is common behavior
214 // for C++ compilers, it is technically wrong. In the future, we either need
215 // to be able to filter the results of name lookup or we need to perform
216 // template instantiations earlier.
217 PerformPendingImplicitInstantiations();
218
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000219 /// If DefinedUsedVTables ends up marking any virtual member
220 /// functions it might lead to more pending template
Anders Carlssond6a637f2009-12-07 08:24:59 +0000221 /// instantiations, which is why we need to loop here.
Douglas Gregor6fb745b2010-05-13 16:44:06 +0000222 if (!DefineUsedVTables())
Anders Carlssond6a637f2009-12-07 08:24:59 +0000223 break;
224 }
225
Douglas Gregor47268a32010-04-09 17:41:13 +0000226 // Remove functions that turned out to be used.
227 UnusedStaticFuncs.erase(std::remove_if(UnusedStaticFuncs.begin(),
228 UnusedStaticFuncs.end(),
Douglas Gregorc070cc62010-06-17 23:14:26 +0000229 std::bind2nd(std::mem_fun(&FunctionDecl::isUsed),
230 true)),
Douglas Gregor47268a32010-04-09 17:41:13 +0000231 UnusedStaticFuncs.end());
232
Chris Lattner63d65f82009-09-08 18:19:27 +0000233 // Check for #pragma weak identifiers that were never declared
234 // FIXME: This will cause diagnostics to be emitted in a non-determinstic
235 // order! Iterating over a densemap like this is bad.
Ryan Flynne25ff832009-07-30 03:15:39 +0000236 for (llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator
Chris Lattner63d65f82009-09-08 18:19:27 +0000237 I = WeakUndeclaredIdentifiers.begin(),
238 E = WeakUndeclaredIdentifiers.end(); I != E; ++I) {
239 if (I->second.getUsed()) continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000240
Chris Lattner63d65f82009-09-08 18:19:27 +0000241 Diag(I->second.getLocation(), diag::warn_weak_identifier_undeclared)
242 << I->first;
Ryan Flynne25ff832009-07-30 03:15:39 +0000243 }
244
Douglas Gregorf807fe02009-04-14 16:27:31 +0000245 if (!CompleteTranslationUnit)
246 return;
247
Douglas Gregor275a3692009-03-10 23:43:53 +0000248 // C99 6.9.2p2:
249 // A declaration of an identifier for an object that has file
250 // scope without an initializer, and without a storage-class
251 // specifier or with the storage-class specifier static,
252 // constitutes a tentative definition. If a translation unit
253 // contains one or more tentative definitions for an identifier,
254 // and the translation unit contains no external definition for
255 // that identifier, then the behavior is exactly as if the
256 // translation unit contains a file scope declaration of that
257 // identifier, with the composite type as of the end of the
258 // translation unit, with an initializer equal to 0.
Sebastian Redle9d12b62010-01-31 22:27:38 +0000259 llvm::SmallSet<VarDecl *, 32> Seen;
260 for (unsigned i = 0, e = TentativeDefinitions.size(); i != e; ++i) {
261 VarDecl *VD = TentativeDefinitions[i]->getActingDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +0000262
Sebastian Redle9d12b62010-01-31 22:27:38 +0000263 // If the tentative definition was completed, getActingDefinition() returns
264 // null. If we've already seen this variable before, insert()'s second
265 // return value is false.
266 if (VD == 0 || VD->isInvalidDecl() || !Seen.insert(VD))
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000267 continue;
268
Mike Stump1eb44332009-09-09 15:08:12 +0000269 if (const IncompleteArrayType *ArrayT
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000270 = Context.getAsIncompleteArrayType(VD->getType())) {
Mike Stump1eb44332009-09-09 15:08:12 +0000271 if (RequireCompleteType(VD->getLocation(),
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000272 ArrayT->getElementType(),
Chris Lattner63d65f82009-09-08 18:19:27 +0000273 diag::err_tentative_def_incomplete_type_arr)) {
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000274 VD->setInvalidDecl();
Chris Lattner63d65f82009-09-08 18:19:27 +0000275 continue;
Douglas Gregor275a3692009-03-10 23:43:53 +0000276 }
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Chris Lattner63d65f82009-09-08 18:19:27 +0000278 // Set the length of the array to 1 (C99 6.9.2p5).
279 Diag(VD->getLocation(), diag::warn_tentative_incomplete_array);
280 llvm::APInt One(Context.getTypeSize(Context.getSizeType()), true);
John McCall46a617a2009-10-16 00:14:28 +0000281 QualType T = Context.getConstantArrayType(ArrayT->getElementType(),
282 One, ArrayType::Normal, 0);
Chris Lattner63d65f82009-09-08 18:19:27 +0000283 VD->setType(T);
Mike Stump1eb44332009-09-09 15:08:12 +0000284 } else if (RequireCompleteType(VD->getLocation(), VD->getType(),
Douglas Gregorb6c8c8b2009-04-21 17:11:58 +0000285 diag::err_tentative_def_incomplete_type))
286 VD->setInvalidDecl();
287
288 // Notify the consumer that we've completed a tentative definition.
289 if (!VD->isInvalidDecl())
290 Consumer.CompleteTentativeDefinition(VD);
291
Douglas Gregor275a3692009-03-10 23:43:53 +0000292 }
Tanya Lattnere6bbc012010-02-12 00:07:30 +0000293
294 // Output warning for unused functions.
295 for (std::vector<FunctionDecl*>::iterator
296 F = UnusedStaticFuncs.begin(),
297 FEnd = UnusedStaticFuncs.end();
298 F != FEnd;
299 ++F)
300 Diag((*F)->getLocation(), diag::warn_unused_function) << (*F)->getDeclName();
301
Chris Lattner9299f3f2008-08-23 03:19:52 +0000302}
303
304
Reid Spencer5f016e22007-07-11 17:01:13 +0000305//===----------------------------------------------------------------------===//
306// Helper functions.
307//===----------------------------------------------------------------------===//
308
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000309DeclContext *Sema::getFunctionLevelDeclContext() {
John McCalldb0ee1d2009-12-19 10:53:49 +0000310 DeclContext *DC = CurContext;
Mike Stump1eb44332009-09-09 15:08:12 +0000311
Douglas Gregord9008312010-05-22 16:25:05 +0000312 while (isa<BlockDecl>(DC) || isa<EnumDecl>(DC))
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000313 DC = DC->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +0000314
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000315 return DC;
316}
317
Chris Lattner371f2582008-12-04 23:50:19 +0000318/// getCurFunctionDecl - If inside of a function body, this returns a pointer
319/// to the function decl for the function being parsed. If we're currently
320/// in a 'block', this returns the containing context.
321FunctionDecl *Sema::getCurFunctionDecl() {
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000322 DeclContext *DC = getFunctionLevelDeclContext();
Chris Lattner371f2582008-12-04 23:50:19 +0000323 return dyn_cast<FunctionDecl>(DC);
324}
325
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000326ObjCMethodDecl *Sema::getCurMethodDecl() {
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000327 DeclContext *DC = getFunctionLevelDeclContext();
Steve Naroffd7612e12008-11-17 16:28:52 +0000328 return dyn_cast<ObjCMethodDecl>(DC);
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000329}
Chris Lattner371f2582008-12-04 23:50:19 +0000330
331NamedDecl *Sema::getCurFunctionOrMethodDecl() {
Anders Carlsson8517d9b2009-08-08 17:45:02 +0000332 DeclContext *DC = getFunctionLevelDeclContext();
Chris Lattner371f2582008-12-04 23:50:19 +0000333 if (isa<ObjCMethodDecl>(DC) || isa<FunctionDecl>(DC))
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000334 return cast<NamedDecl>(DC);
Chris Lattner371f2582008-12-04 23:50:19 +0000335 return 0;
336}
337
Douglas Gregor25a88bb2009-03-20 22:48:49 +0000338Sema::SemaDiagnosticBuilder::~SemaDiagnosticBuilder() {
Douglas Gregor5e9f35c2009-06-14 07:33:30 +0000339 if (!this->Emit())
340 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000341
Douglas Gregor25a88bb2009-03-20 22:48:49 +0000342 // If this is not a note, and we're in a template instantiation
343 // that is different from the last template instantiation where
344 // we emitted an error, print a template instantiation
345 // backtrace.
346 if (!SemaRef.Diags.isBuiltinNote(DiagID) &&
347 !SemaRef.ActiveTemplateInstantiations.empty() &&
Mike Stump1eb44332009-09-09 15:08:12 +0000348 SemaRef.ActiveTemplateInstantiations.back()
Douglas Gregor25a88bb2009-03-20 22:48:49 +0000349 != SemaRef.LastTemplateInstantiationErrorContext) {
350 SemaRef.PrintInstantiationStack();
Mike Stump1eb44332009-09-09 15:08:12 +0000351 SemaRef.LastTemplateInstantiationErrorContext
Douglas Gregor25a88bb2009-03-20 22:48:49 +0000352 = SemaRef.ActiveTemplateInstantiations.back();
353 }
354}
Douglas Gregor2e222532009-07-02 17:08:52 +0000355
Douglas Gregoreab5d1e2010-03-25 22:17:48 +0000356Sema::SemaDiagnosticBuilder Sema::Diag(SourceLocation Loc, unsigned DiagID) {
357 if (isSFINAEContext()) {
358 switch (Diagnostic::getDiagnosticSFINAEResponse(DiagID)) {
359 case Diagnostic::SFINAE_Report:
360 // Fall through; we'll report the diagnostic below.
361 break;
362
363 case Diagnostic::SFINAE_SubstitutionFailure:
364 // Count this failure so that we know that template argument deduction
365 // has failed.
366 ++NumSFINAEErrors;
367 // Fall through
368
369 case Diagnostic::SFINAE_Suppress:
370 // Suppress this diagnostic.
371 Diags.setLastDiagnosticIgnored();
372 return SemaDiagnosticBuilder(*this);
373 }
374 }
375
376 DiagnosticBuilder DB = Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID);
377 return SemaDiagnosticBuilder(DB, *this, DiagID);
378}
379
Anders Carlsson91a0cc92009-08-26 22:33:56 +0000380Sema::SemaDiagnosticBuilder
381Sema::Diag(SourceLocation Loc, const PartialDiagnostic& PD) {
382 SemaDiagnosticBuilder Builder(Diag(Loc, PD.getDiagID()));
383 PD.Emit(Builder);
Mike Stump1eb44332009-09-09 15:08:12 +0000384
Anders Carlsson91a0cc92009-08-26 22:33:56 +0000385 return Builder;
386}
387
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +0000388
389/// \brief Enter a new function scope
390void Sema::PushFunctionScope() {
391 if (FunctionScopes.empty()) {
392 // Use the "top" function scope rather than having to allocate memory for
393 // a new scope.
394 TopFunctionScope.Clear(getDiagnostics().getNumErrors());
395 FunctionScopes.push_back(&TopFunctionScope);
396 return;
397 }
398
399 FunctionScopes.push_back(
400 new FunctionScopeInfo(getDiagnostics().getNumErrors()));
401}
402
403void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) {
404 FunctionScopes.push_back(new BlockScopeInfo(getDiagnostics().getNumErrors(),
405 BlockScope, Block));
406}
407
408void Sema::PopFunctionOrBlockScope() {
409 if (FunctionScopes.back() != &TopFunctionScope)
410 delete FunctionScopes.back();
411 else
412 TopFunctionScope.Clear(getDiagnostics().getNumErrors());
413
414 FunctionScopes.pop_back();
415}
416
417/// \brief Determine whether any errors occurred within this function/method/
418/// block.
419bool Sema::hasAnyErrorsInThisFunction() const {
420 unsigned NumErrors = TopFunctionScope.NumErrorsAtStartOfFunction;
421 if (!FunctionScopes.empty())
422 NumErrors = FunctionScopes.back()->NumErrorsAtStartOfFunction;
423 return NumErrors != getDiagnostics().getNumErrors();
424}
425
426BlockScopeInfo *Sema::getCurBlock() {
427 if (FunctionScopes.empty())
428 return 0;
429
430 return dyn_cast<BlockScopeInfo>(FunctionScopes.back());
431}
John McCall76bd1f32010-06-01 09:23:16 +0000432
433// Pin this vtable to this file.
434ExternalSemaSource::~ExternalSemaSource() {}