blob: f11ce2043a8ab6ceb6a78c2ccdb74fc9c6857131 [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"
16#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000017#include "clang/AST/DeclObjC.h"
Daniel Dunbare91593e2008-08-11 04:54:23 +000018#include "clang/AST/Expr.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000019#include "clang/Lex/Preprocessor.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020using namespace clang;
21
Chris Lattner22caddc2008-11-23 09:13:29 +000022/// ConvertQualTypeToStringFn - This function is used to pretty print the
23/// specified QualType as a string in diagnostics.
Chris Lattner011bb4e2008-11-23 20:28:15 +000024static void ConvertArgToStringFn(Diagnostic::ArgumentKind Kind, intptr_t Val,
Chris Lattnerd0344a42009-02-19 23:45:49 +000025 const char *Modifier, unsigned ModLen,
26 const char *Argument, unsigned ArgLen,
Chris Lattner92dd3862009-02-19 23:53:20 +000027 llvm::SmallVectorImpl<char> &Output,
28 void *Cookie) {
29 ASTContext &Context = *static_cast<ASTContext*>(Cookie);
Chris Lattner3fdf4b02008-11-23 09:21:17 +000030
Chris Lattner011bb4e2008-11-23 20:28:15 +000031 std::string S;
32 if (Kind == Diagnostic::ak_qualtype) {
Chris Lattnerd0344a42009-02-19 23:45:49 +000033 assert(ModLen == 0 && ArgLen == 0 &&
34 "Invalid modifier for QualType argument");
35
Chris Lattner011bb4e2008-11-23 20:28:15 +000036 QualType Ty(QualType::getFromOpaquePtr(reinterpret_cast<void*>(Val)));
Chris Lattner077bf5e2008-11-24 03:33:13 +000037
Chris Lattner011bb4e2008-11-23 20:28:15 +000038 // FIXME: Playing with std::string is really slow.
39 S = Ty.getAsString();
Chris Lattnerd0344a42009-02-19 23:45:49 +000040
41 // If this is a sugared type (like a typedef, typeof, etc), then unwrap one
42 // level of the sugar so that the type is more obvious to the user.
Douglas Gregor969c6892009-04-01 15:47:24 +000043 QualType DesugaredTy = Ty->getDesugaredType(true);
Chris Lattnerd0344a42009-02-19 23:45:49 +000044 DesugaredTy.setCVRQualifiers(DesugaredTy.getCVRQualifiers() |
45 Ty.getCVRQualifiers());
Chris Lattner077bf5e2008-11-24 03:33:13 +000046
Chris Lattnerd0344a42009-02-19 23:45:49 +000047 if (Ty != DesugaredTy &&
48 // If the desugared type is a vector type, we don't want to expand it,
49 // it will turn into an attribute mess. People want their "vec4".
50 !isa<VectorType>(DesugaredTy) &&
51
Chris Lattner92dd3862009-02-19 23:53:20 +000052 // Don't desugar magic Objective-C types.
53 Ty.getUnqualifiedType() != Context.getObjCIdType() &&
54 Ty.getUnqualifiedType() != Context.getObjCSelType() &&
55 Ty.getUnqualifiedType() != Context.getObjCProtoType() &&
56 Ty.getUnqualifiedType() != Context.getObjCClassType() &&
57
58 // Not va_list.
59 Ty.getUnqualifiedType() != Context.getBuiltinVaListType()) {
Chris Lattnerd0344a42009-02-19 23:45:49 +000060 S = "'"+S+"' (aka '";
61 S += DesugaredTy.getAsString();
62 S += "')";
63 Output.append(S.begin(), S.end());
64 return;
65 }
Chris Lattner077bf5e2008-11-24 03:33:13 +000066
Douglas Gregor47b9a1c2009-02-04 17:27:36 +000067 } else if (Kind == Diagnostic::ak_declarationname) {
Chris Lattner011bb4e2008-11-23 20:28:15 +000068
69 DeclarationName N = DeclarationName::getFromOpaqueInteger(Val);
70 S = N.getAsString();
Chris Lattner077bf5e2008-11-24 03:33:13 +000071
72 if (ModLen == 9 && !memcmp(Modifier, "objcclass", 9) && ArgLen == 0)
73 S = '+' + S;
74 else if (ModLen == 12 && !memcmp(Modifier, "objcinstance", 12) && ArgLen==0)
75 S = '-' + S;
76 else
77 assert(ModLen == 0 && ArgLen == 0 &&
78 "Invalid modifier for DeclarationName argument");
Douglas Gregor47b9a1c2009-02-04 17:27:36 +000079 } else {
80 assert(Kind == Diagnostic::ak_nameddecl);
Douglas Gregoreeb15d42009-02-04 22:46:25 +000081 if (ModLen == 1 && Modifier[0] == 'q' && ArgLen == 0)
82 S = reinterpret_cast<NamedDecl*>(Val)->getQualifiedNameAsString();
83 else {
84 assert(ModLen == 0 && ArgLen == 0 &&
Douglas Gregor47b9a1c2009-02-04 17:27:36 +000085 "Invalid modifier for NamedDecl* argument");
Douglas Gregoreeb15d42009-02-04 22:46:25 +000086 S = reinterpret_cast<NamedDecl*>(Val)->getNameAsString();
87 }
Chris Lattner011bb4e2008-11-23 20:28:15 +000088 }
Chris Lattnerd0344a42009-02-19 23:45:49 +000089
90 Output.push_back('\'');
Chris Lattner22caddc2008-11-23 09:13:29 +000091 Output.append(S.begin(), S.end());
Chris Lattnerd0344a42009-02-19 23:45:49 +000092 Output.push_back('\'');
Chris Lattner22caddc2008-11-23 09:13:29 +000093}
94
95
Chris Lattner0a14eee2008-11-18 07:04:44 +000096static inline RecordDecl *CreateStructDecl(ASTContext &C, const char *Name) {
Anders Carlssonc3036062008-08-23 22:20:38 +000097 if (C.getLangOptions().CPlusPlus)
98 return CXXRecordDecl::Create(C, TagDecl::TK_struct,
99 C.getTranslationUnitDecl(),
Ted Kremenekdf042e62008-09-05 01:34:33 +0000100 SourceLocation(), &C.Idents.get(Name));
Chris Lattnerfa25bbb2008-11-19 05:08:23 +0000101
102 return RecordDecl::Create(C, TagDecl::TK_struct,
103 C.getTranslationUnitDecl(),
104 SourceLocation(), &C.Idents.get(Name));
Anders Carlssonc3036062008-08-23 22:20:38 +0000105}
106
Steve Naroffb216c882007-10-09 22:01:59 +0000107void Sema::ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) {
108 TUScope = S;
Douglas Gregor44b43212008-12-11 16:49:14 +0000109 PushDeclContext(S, Context.getTranslationUnitDecl());
Chris Lattner2ae34ed2008-02-06 00:46:58 +0000110 if (!PP.getLangOptions().ObjC1) return;
111
Steve Naroff69d63752008-02-24 16:25:02 +0000112 // Synthesize "typedef struct objc_selector *SEL;"
Anders Carlssonc3036062008-08-23 22:20:38 +0000113 RecordDecl *SelTag = CreateStructDecl(Context, "objc_selector");
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000114 PushOnScopeChains(SelTag, TUScope);
Steve Naroff69d63752008-02-24 16:25:02 +0000115
116 QualType SelT = Context.getPointerType(Context.getTagDeclType(SelTag));
Chris Lattner0ed844b2008-04-04 06:12:32 +0000117 TypedefDecl *SelTypedef = TypedefDecl::Create(Context, CurContext,
118 SourceLocation(),
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000119 &Context.Idents.get("SEL"),
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000120 SelT);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +0000121 PushOnScopeChains(SelTypedef, TUScope);
Steve Naroff69d63752008-02-24 16:25:02 +0000122 Context.setObjCSelType(SelTypedef);
Chris Lattner6ee1f9c2008-06-21 20:20:39 +0000123
Chris Lattner27933c12008-06-21 22:44:51 +0000124 // FIXME: Make sure these don't leak!
Anders Carlssonc3036062008-08-23 22:20:38 +0000125 RecordDecl *ClassTag = CreateStructDecl(Context, "objc_class");
Chris Lattner6ee1f9c2008-06-21 20:20:39 +0000126 QualType ClassT = Context.getPointerType(Context.getTagDeclType(ClassTag));
127 TypedefDecl *ClassTypedef =
128 TypedefDecl::Create(Context, CurContext, SourceLocation(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000129 &Context.Idents.get("Class"), ClassT);
Chris Lattner6ee1f9c2008-06-21 20:20:39 +0000130 PushOnScopeChains(ClassTag, TUScope);
131 PushOnScopeChains(ClassTypedef, TUScope);
132 Context.setObjCClassType(ClassTypedef);
133 // Synthesize "@class Protocol;
134 ObjCInterfaceDecl *ProtocolDecl =
Douglas Gregord0434102009-01-09 00:49:46 +0000135 ObjCInterfaceDecl::Create(Context, CurContext, SourceLocation(),
Chris Lattner6ee1f9c2008-06-21 20:20:39 +0000136 &Context.Idents.get("Protocol"),
137 SourceLocation(), true);
138 Context.setObjCProtoType(Context.getObjCInterfaceType(ProtocolDecl));
139 PushOnScopeChains(ProtocolDecl, TUScope);
140
141 // Synthesize "typedef struct objc_object { Class isa; } *id;"
Anders Carlssonc3036062008-08-23 22:20:38 +0000142 RecordDecl *ObjectTag = CreateStructDecl(Context, "objc_object");
143
Chris Lattner6ee1f9c2008-06-21 20:20:39 +0000144 QualType ObjT = Context.getPointerType(Context.getTagDeclType(ObjectTag));
145 PushOnScopeChains(ObjectTag, TUScope);
146 TypedefDecl *IdTypedef = TypedefDecl::Create(Context, CurContext,
147 SourceLocation(),
148 &Context.Idents.get("id"),
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000149 ObjT);
Chris Lattner6ee1f9c2008-06-21 20:20:39 +0000150 PushOnScopeChains(IdTypedef, TUScope);
151 Context.setObjCIdType(IdTypedef);
Steve Naroff3b950172007-10-10 21:53:07 +0000152}
153
Chris Lattner2ae34ed2008-02-06 00:46:58 +0000154Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer)
Chris Lattner53ebff32009-01-22 19:21:44 +0000155 : LangOpts(pp.getLangOptions()), PP(pp), Context(ctxt), Consumer(consumer),
156 Diags(PP.getDiagnostics()),
Chris Lattner3cfa9282008-11-22 08:28:49 +0000157 SourceMgr(PP.getSourceManager()), CurContext(0), PreDeclaratorDC(0),
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000158 CurBlock(0), PackContext(0), IdResolver(pp.getLangOptions()),
159 GlobalNewDeleteDeclared(false) {
Chris Lattner59907c42007-08-10 20:18:51 +0000160
161 // Get IdentifierInfo objects for known functions for which we
162 // do extra checking.
Chris Lattner2ae34ed2008-02-06 00:46:58 +0000163 IdentifierTable &IT = PP.getIdentifierTable();
Chris Lattner59907c42007-08-10 20:18:51 +0000164
Daniel Dunbarde454282008-10-02 18:44:07 +0000165 KnownFunctionIDs[id_NSLog] = &IT.get("NSLog");
Douglas Gregor3c385e52009-02-14 18:57:46 +0000166 KnownFunctionIDs[id_NSLogv] = &IT.get("NSLogv");
Douglas Gregora316e7b2009-02-14 00:32:47 +0000167 KnownFunctionIDs[id_asprintf] = &IT.get("asprintf");
Daniel Dunbarde454282008-10-02 18:44:07 +0000168 KnownFunctionIDs[id_vasprintf] = &IT.get("vasprintf");
Steve Naroff8ee529b2007-10-31 18:42:27 +0000169
Sebastian Redlc42e1182008-11-11 11:37:55 +0000170 StdNamespace = 0;
Steve Naroff3b950172007-10-10 21:53:07 +0000171 TUScope = 0;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000172 if (getLangOptions().CPlusPlus)
173 FieldCollector.reset(new CXXFieldCollector());
Chris Lattner22caddc2008-11-23 09:13:29 +0000174
175 // Tell diagnostics how to render things from the AST library.
Chris Lattner92dd3862009-02-19 23:53:20 +0000176 PP.getDiagnostics().SetArgToStringFn(ConvertArgToStringFn, &Context);
Reid Spencer5f016e22007-07-11 17:01:13 +0000177}
178
Chris Lattner1e0a3902008-01-16 19:17:22 +0000179/// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
180/// If there is already an implicit cast, merge into the existing one.
Nate Begeman6fe7c8a2009-01-18 06:42:49 +0000181/// If isLvalue, the result of the cast is an lvalue.
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000182void Sema::ImpCastExprToType(Expr *&Expr, QualType Ty, bool isLvalue) {
Mon P Wang3a2c7442008-09-04 08:38:01 +0000183 QualType ExprTy = Context.getCanonicalType(Expr->getType());
184 QualType TypeTy = Context.getCanonicalType(Ty);
185
186 if (ExprTy == TypeTy)
187 return;
188
189 if (Expr->getType().getTypePtr()->isPointerType() &&
190 Ty.getTypePtr()->isPointerType()) {
191 QualType ExprBaseType =
192 cast<PointerType>(ExprTy.getUnqualifiedType())->getPointeeType();
193 QualType BaseType =
194 cast<PointerType>(TypeTy.getUnqualifiedType())->getPointeeType();
195 if (ExprBaseType.getAddressSpace() != BaseType.getAddressSpace()) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000196 Diag(Expr->getExprLoc(), diag::err_implicit_pointer_address_space_cast)
197 << Expr->getSourceRange();
Mon P Wang3a2c7442008-09-04 08:38:01 +0000198 }
199 }
Chris Lattner1e0a3902008-01-16 19:17:22 +0000200
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000201 if (ImplicitCastExpr *ImpCast = dyn_cast<ImplicitCastExpr>(Expr)) {
Mon P Wang3a2c7442008-09-04 08:38:01 +0000202 ImpCast->setType(Ty);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000203 ImpCast->setLvalueCast(isLvalue);
204 } else
Ted Kremenek8189cde2009-02-07 01:47:29 +0000205 Expr = new (Context) ImplicitCastExpr(Ty, Expr, isLvalue);
Chris Lattner1e0a3902008-01-16 19:17:22 +0000206}
207
Chris Lattner394a3fd2007-08-31 04:53:24 +0000208void Sema::DeleteExpr(ExprTy *E) {
Douglas Gregor05c13a32009-01-22 00:58:24 +0000209 if (E) static_cast<Expr*>(E)->Destroy(Context);
Chris Lattner394a3fd2007-08-31 04:53:24 +0000210}
211void Sema::DeleteStmt(StmtTy *S) {
Douglas Gregor05c13a32009-01-22 00:58:24 +0000212 if (S) static_cast<Stmt*>(S)->Destroy(Context);
Chris Lattner394a3fd2007-08-31 04:53:24 +0000213}
214
Chris Lattner9299f3f2008-08-23 03:19:52 +0000215/// ActOnEndOfTranslationUnit - This is called at the very end of the
216/// translation unit when EOF is reached and all but the top-level scope is
217/// popped.
218void Sema::ActOnEndOfTranslationUnit() {
Douglas Gregor275a3692009-03-10 23:43:53 +0000219 // C99 6.9.2p2:
220 // A declaration of an identifier for an object that has file
221 // scope without an initializer, and without a storage-class
222 // specifier or with the storage-class specifier static,
223 // constitutes a tentative definition. If a translation unit
224 // contains one or more tentative definitions for an identifier,
225 // and the translation unit contains no external definition for
226 // that identifier, then the behavior is exactly as if the
227 // translation unit contains a file scope declaration of that
228 // identifier, with the composite type as of the end of the
229 // translation unit, with an initializer equal to 0.
230 if (!getLangOptions().CPlusPlus) {
231 // Note: we traverse the scope's list of declarations rather than
232 // the DeclContext's list, because we only want to see the most
233 // recent declaration of each identifier.
Chris Lattnerb28317a2009-03-28 19:18:32 +0000234 for (Scope::decl_iterator I = TUScope->decl_begin(),
235 IEnd = TUScope->decl_end();
Douglas Gregor275a3692009-03-10 23:43:53 +0000236 I != IEnd; ++I) {
Chris Lattnerb28317a2009-03-28 19:18:32 +0000237 Decl *D = (*I).getAs<Decl>();
Douglas Gregor275a3692009-03-10 23:43:53 +0000238 if (D->isInvalidDecl())
239 continue;
Chris Lattner9299f3f2008-08-23 03:19:52 +0000240
Douglas Gregor275a3692009-03-10 23:43:53 +0000241 if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
242 if (VD->isTentativeDefinition(Context)) {
243 if (const IncompleteArrayType *ArrayT
244 = Context.getAsIncompleteArrayType(VD->getType())) {
245 if (RequireCompleteType(VD->getLocation(),
246 ArrayT->getElementType(),
247 diag::err_tentative_def_incomplete_type_arr))
248 VD->setInvalidDecl();
249 else {
250 // Set the length of the array to 1 (C99 6.9.2p5).
251 llvm::APSInt One(Context.getTypeSize(Context.getSizeType()),
252 true);
253 QualType T
254 = Context.getConstantArrayType(ArrayT->getElementType(),
255 One, ArrayType::Normal, 0);
256 VD->setType(T);
257 }
258 } else if (RequireCompleteType(VD->getLocation(), VD->getType(),
259 diag::err_tentative_def_incomplete_type))
260 VD->setInvalidDecl();
261 }
262 }
263 }
264 }
Chris Lattner9299f3f2008-08-23 03:19:52 +0000265}
266
267
Reid Spencer5f016e22007-07-11 17:01:13 +0000268//===----------------------------------------------------------------------===//
269// Helper functions.
270//===----------------------------------------------------------------------===//
271
Chris Lattner371f2582008-12-04 23:50:19 +0000272/// getCurFunctionDecl - If inside of a function body, this returns a pointer
273/// to the function decl for the function being parsed. If we're currently
274/// in a 'block', this returns the containing context.
275FunctionDecl *Sema::getCurFunctionDecl() {
276 DeclContext *DC = CurContext;
277 while (isa<BlockDecl>(DC))
278 DC = DC->getParent();
279 return dyn_cast<FunctionDecl>(DC);
280}
281
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000282ObjCMethodDecl *Sema::getCurMethodDecl() {
Steve Naroffd7612e12008-11-17 16:28:52 +0000283 DeclContext *DC = CurContext;
284 while (isa<BlockDecl>(DC))
285 DC = DC->getParent();
286 return dyn_cast<ObjCMethodDecl>(DC);
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000287}
Chris Lattner371f2582008-12-04 23:50:19 +0000288
289NamedDecl *Sema::getCurFunctionOrMethodDecl() {
290 DeclContext *DC = CurContext;
291 while (isa<BlockDecl>(DC))
292 DC = DC->getParent();
293 if (isa<ObjCMethodDecl>(DC) || isa<FunctionDecl>(DC))
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000294 return cast<NamedDecl>(DC);
Chris Lattner371f2582008-12-04 23:50:19 +0000295 return 0;
296}
297
Douglas Gregor25a88bb2009-03-20 22:48:49 +0000298Sema::SemaDiagnosticBuilder::~SemaDiagnosticBuilder() {
299 this->Emit();
300
301 // If this is not a note, and we're in a template instantiation
302 // that is different from the last template instantiation where
303 // we emitted an error, print a template instantiation
304 // backtrace.
305 if (!SemaRef.Diags.isBuiltinNote(DiagID) &&
306 !SemaRef.ActiveTemplateInstantiations.empty() &&
307 SemaRef.ActiveTemplateInstantiations.back()
308 != SemaRef.LastTemplateInstantiationErrorContext) {
309 SemaRef.PrintInstantiationStack();
310 SemaRef.LastTemplateInstantiationErrorContext
311 = SemaRef.ActiveTemplateInstantiations.back();
312 }
313}