blob: 33f146aad8d2ea17570813622815fc16da18ebea [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"
20#include "clang/Basic/Diagnostic.h"
21using namespace clang;
22
Chris Lattner22caddc2008-11-23 09:13:29 +000023/// ConvertQualTypeToStringFn - This function is used to pretty print the
24/// specified QualType as a string in diagnostics.
Chris Lattner011bb4e2008-11-23 20:28:15 +000025static void ConvertArgToStringFn(Diagnostic::ArgumentKind Kind, intptr_t Val,
Chris Lattner077bf5e2008-11-24 03:33:13 +000026 const char *Modifier, unsigned ModLen,
Chris Lattner22caddc2008-11-23 09:13:29 +000027 const char *Argument, unsigned ArgLen,
28 llvm::SmallVectorImpl<char> &Output) {
Chris Lattner3fdf4b02008-11-23 09:21:17 +000029
Chris Lattner011bb4e2008-11-23 20:28:15 +000030 std::string S;
31 if (Kind == Diagnostic::ak_qualtype) {
32 QualType Ty(QualType::getFromOpaquePtr(reinterpret_cast<void*>(Val)));
Chris Lattner077bf5e2008-11-24 03:33:13 +000033
Chris Lattner011bb4e2008-11-23 20:28:15 +000034 // FIXME: Playing with std::string is really slow.
35 S = Ty.getAsString();
Chris Lattner077bf5e2008-11-24 03:33:13 +000036
37 assert(ModLen == 0 && ArgLen == 0 &&
38 "Invalid modifier for QualType argument");
39
Chris Lattner011bb4e2008-11-23 20:28:15 +000040 } else {
41 assert(Kind == Diagnostic::ak_declarationname);
42
43 DeclarationName N = DeclarationName::getFromOpaqueInteger(Val);
44 S = N.getAsString();
Chris Lattner077bf5e2008-11-24 03:33:13 +000045
46 if (ModLen == 9 && !memcmp(Modifier, "objcclass", 9) && ArgLen == 0)
47 S = '+' + S;
48 else if (ModLen == 12 && !memcmp(Modifier, "objcinstance", 12) && ArgLen==0)
49 S = '-' + S;
50 else
51 assert(ModLen == 0 && ArgLen == 0 &&
52 "Invalid modifier for DeclarationName argument");
Chris Lattner011bb4e2008-11-23 20:28:15 +000053 }
Chris Lattner22caddc2008-11-23 09:13:29 +000054 Output.append(S.begin(), S.end());
55}
56
57
Chris Lattner0a14eee2008-11-18 07:04:44 +000058static inline RecordDecl *CreateStructDecl(ASTContext &C, const char *Name) {
Anders Carlssonc3036062008-08-23 22:20:38 +000059 if (C.getLangOptions().CPlusPlus)
60 return CXXRecordDecl::Create(C, TagDecl::TK_struct,
61 C.getTranslationUnitDecl(),
Ted Kremenekdf042e62008-09-05 01:34:33 +000062 SourceLocation(), &C.Idents.get(Name));
Chris Lattnerfa25bbb2008-11-19 05:08:23 +000063
64 return RecordDecl::Create(C, TagDecl::TK_struct,
65 C.getTranslationUnitDecl(),
66 SourceLocation(), &C.Idents.get(Name));
Anders Carlssonc3036062008-08-23 22:20:38 +000067}
68
Steve Naroffb216c882007-10-09 22:01:59 +000069void Sema::ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) {
70 TUScope = S;
Douglas Gregor44b43212008-12-11 16:49:14 +000071 PushDeclContext(S, Context.getTranslationUnitDecl());
Chris Lattner2ae34ed2008-02-06 00:46:58 +000072 if (!PP.getLangOptions().ObjC1) return;
73
Steve Naroff69d63752008-02-24 16:25:02 +000074 // Synthesize "typedef struct objc_selector *SEL;"
Anders Carlssonc3036062008-08-23 22:20:38 +000075 RecordDecl *SelTag = CreateStructDecl(Context, "objc_selector");
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +000076 PushOnScopeChains(SelTag, TUScope);
Steve Naroff69d63752008-02-24 16:25:02 +000077
78 QualType SelT = Context.getPointerType(Context.getTagDeclType(SelTag));
Chris Lattner0ed844b2008-04-04 06:12:32 +000079 TypedefDecl *SelTypedef = TypedefDecl::Create(Context, CurContext,
80 SourceLocation(),
Chris Lattner6c2b6eb2008-03-15 06:12:44 +000081 &Context.Idents.get("SEL"),
Chris Lattnerc63e6602008-03-15 21:32:50 +000082 SelT, 0);
Argyrios Kyrtzidis87f3ff02008-04-12 00:47:19 +000083 PushOnScopeChains(SelTypedef, TUScope);
Steve Naroff69d63752008-02-24 16:25:02 +000084 Context.setObjCSelType(SelTypedef);
Chris Lattner6ee1f9c2008-06-21 20:20:39 +000085
Chris Lattner27933c12008-06-21 22:44:51 +000086 // FIXME: Make sure these don't leak!
Anders Carlssonc3036062008-08-23 22:20:38 +000087 RecordDecl *ClassTag = CreateStructDecl(Context, "objc_class");
Chris Lattner6ee1f9c2008-06-21 20:20:39 +000088 QualType ClassT = Context.getPointerType(Context.getTagDeclType(ClassTag));
89 TypedefDecl *ClassTypedef =
90 TypedefDecl::Create(Context, CurContext, SourceLocation(),
91 &Context.Idents.get("Class"), ClassT, 0);
92 PushOnScopeChains(ClassTag, TUScope);
93 PushOnScopeChains(ClassTypedef, TUScope);
94 Context.setObjCClassType(ClassTypedef);
95 // Synthesize "@class Protocol;
96 ObjCInterfaceDecl *ProtocolDecl =
Douglas Gregord0434102009-01-09 00:49:46 +000097 ObjCInterfaceDecl::Create(Context, CurContext, SourceLocation(),
Chris Lattner6ee1f9c2008-06-21 20:20:39 +000098 &Context.Idents.get("Protocol"),
99 SourceLocation(), true);
100 Context.setObjCProtoType(Context.getObjCInterfaceType(ProtocolDecl));
101 PushOnScopeChains(ProtocolDecl, TUScope);
102
103 // Synthesize "typedef struct objc_object { Class isa; } *id;"
Anders Carlssonc3036062008-08-23 22:20:38 +0000104 RecordDecl *ObjectTag = CreateStructDecl(Context, "objc_object");
105
Chris Lattner6ee1f9c2008-06-21 20:20:39 +0000106 QualType ObjT = Context.getPointerType(Context.getTagDeclType(ObjectTag));
107 PushOnScopeChains(ObjectTag, TUScope);
108 TypedefDecl *IdTypedef = TypedefDecl::Create(Context, CurContext,
109 SourceLocation(),
110 &Context.Idents.get("id"),
111 ObjT, 0);
112 PushOnScopeChains(IdTypedef, TUScope);
113 Context.setObjCIdType(IdTypedef);
Steve Naroff3b950172007-10-10 21:53:07 +0000114}
115
Chris Lattner2ae34ed2008-02-06 00:46:58 +0000116Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer)
Chris Lattner3cfa9282008-11-22 08:28:49 +0000117 : PP(pp), Context(ctxt), Consumer(consumer), Diags(PP.getDiagnostics()),
118 SourceMgr(PP.getSourceManager()), CurContext(0), PreDeclaratorDC(0),
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000119 CurBlock(0), PackContext(0), IdResolver(pp.getLangOptions()),
120 GlobalNewDeleteDeclared(false) {
Chris Lattner59907c42007-08-10 20:18:51 +0000121
122 // Get IdentifierInfo objects for known functions for which we
123 // do extra checking.
Chris Lattner2ae34ed2008-02-06 00:46:58 +0000124 IdentifierTable &IT = PP.getIdentifierTable();
Chris Lattner59907c42007-08-10 20:18:51 +0000125
Daniel Dunbarde454282008-10-02 18:44:07 +0000126 KnownFunctionIDs[id_printf] = &IT.get("printf");
127 KnownFunctionIDs[id_fprintf] = &IT.get("fprintf");
128 KnownFunctionIDs[id_sprintf] = &IT.get("sprintf");
129 KnownFunctionIDs[id_sprintf_chk] = &IT.get("__builtin___sprintf_chk");
130 KnownFunctionIDs[id_snprintf] = &IT.get("snprintf");
131 KnownFunctionIDs[id_snprintf_chk] = &IT.get("__builtin___snprintf_chk");
132 KnownFunctionIDs[id_asprintf] = &IT.get("asprintf");
133 KnownFunctionIDs[id_NSLog] = &IT.get("NSLog");
134 KnownFunctionIDs[id_vsnprintf] = &IT.get("vsnprintf");
135 KnownFunctionIDs[id_vasprintf] = &IT.get("vasprintf");
136 KnownFunctionIDs[id_vfprintf] = &IT.get("vfprintf");
137 KnownFunctionIDs[id_vsprintf] = &IT.get("vsprintf");
138 KnownFunctionIDs[id_vsprintf_chk] = &IT.get("__builtin___vsprintf_chk");
139 KnownFunctionIDs[id_vsnprintf] = &IT.get("vsnprintf");
140 KnownFunctionIDs[id_vsnprintf_chk] = &IT.get("__builtin___vsnprintf_chk");
141 KnownFunctionIDs[id_vprintf] = &IT.get("vprintf");
Steve Naroff8ee529b2007-10-31 18:42:27 +0000142
Sebastian Redlc42e1182008-11-11 11:37:55 +0000143 StdNamespace = 0;
Steve Naroff3b950172007-10-10 21:53:07 +0000144 TUScope = 0;
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000145 if (getLangOptions().CPlusPlus)
146 FieldCollector.reset(new CXXFieldCollector());
Chris Lattner22caddc2008-11-23 09:13:29 +0000147
148 // Tell diagnostics how to render things from the AST library.
Chris Lattner3fdf4b02008-11-23 09:21:17 +0000149 PP.getDiagnostics().SetArgToStringFn(ConvertArgToStringFn);
Reid Spencer5f016e22007-07-11 17:01:13 +0000150}
151
Chris Lattner1e0a3902008-01-16 19:17:22 +0000152/// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
153/// If there is already an implicit cast, merge into the existing one.
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000154 /// If isLvalue, the result of the cast is an lvalue.
155void Sema::ImpCastExprToType(Expr *&Expr, QualType Ty, bool isLvalue) {
Mon P Wang3a2c7442008-09-04 08:38:01 +0000156 QualType ExprTy = Context.getCanonicalType(Expr->getType());
157 QualType TypeTy = Context.getCanonicalType(Ty);
158
159 if (ExprTy == TypeTy)
160 return;
161
162 if (Expr->getType().getTypePtr()->isPointerType() &&
163 Ty.getTypePtr()->isPointerType()) {
164 QualType ExprBaseType =
165 cast<PointerType>(ExprTy.getUnqualifiedType())->getPointeeType();
166 QualType BaseType =
167 cast<PointerType>(TypeTy.getUnqualifiedType())->getPointeeType();
168 if (ExprBaseType.getAddressSpace() != BaseType.getAddressSpace()) {
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000169 Diag(Expr->getExprLoc(), diag::err_implicit_pointer_address_space_cast)
170 << Expr->getSourceRange();
Mon P Wang3a2c7442008-09-04 08:38:01 +0000171 }
172 }
Chris Lattner1e0a3902008-01-16 19:17:22 +0000173
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000174 if (ImplicitCastExpr *ImpCast = dyn_cast<ImplicitCastExpr>(Expr)) {
Mon P Wang3a2c7442008-09-04 08:38:01 +0000175 ImpCast->setType(Ty);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000176 ImpCast->setLvalueCast(isLvalue);
177 } else
178 Expr = new ImplicitCastExpr(Ty, Expr, isLvalue);
Chris Lattner1e0a3902008-01-16 19:17:22 +0000179}
180
Chris Lattner394a3fd2007-08-31 04:53:24 +0000181void Sema::DeleteExpr(ExprTy *E) {
Sebastian Redlcfb664c2008-12-22 17:51:10 +0000182 static_cast<Expr*>(E)->Destroy(Context);
Chris Lattner394a3fd2007-08-31 04:53:24 +0000183}
184void Sema::DeleteStmt(StmtTy *S) {
Sebastian Redlcfb664c2008-12-22 17:51:10 +0000185 static_cast<Stmt*>(S)->Destroy(Context);
Chris Lattner394a3fd2007-08-31 04:53:24 +0000186}
187
Chris Lattner9299f3f2008-08-23 03:19:52 +0000188/// ActOnEndOfTranslationUnit - This is called at the very end of the
189/// translation unit when EOF is reached and all but the top-level scope is
190/// popped.
191void Sema::ActOnEndOfTranslationUnit() {
192
193}
194
195
Reid Spencer5f016e22007-07-11 17:01:13 +0000196//===----------------------------------------------------------------------===//
197// Helper functions.
198//===----------------------------------------------------------------------===//
199
Reid Spencer5f016e22007-07-11 17:01:13 +0000200const LangOptions &Sema::getLangOptions() const {
201 return PP.getLangOptions();
202}
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000203
Chris Lattner371f2582008-12-04 23:50:19 +0000204/// getCurFunctionDecl - If inside of a function body, this returns a pointer
205/// to the function decl for the function being parsed. If we're currently
206/// in a 'block', this returns the containing context.
207FunctionDecl *Sema::getCurFunctionDecl() {
208 DeclContext *DC = CurContext;
209 while (isa<BlockDecl>(DC))
210 DC = DC->getParent();
211 return dyn_cast<FunctionDecl>(DC);
212}
213
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000214ObjCMethodDecl *Sema::getCurMethodDecl() {
Steve Naroffd7612e12008-11-17 16:28:52 +0000215 DeclContext *DC = CurContext;
216 while (isa<BlockDecl>(DC))
217 DC = DC->getParent();
218 return dyn_cast<ObjCMethodDecl>(DC);
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +0000219}
Chris Lattner371f2582008-12-04 23:50:19 +0000220
221NamedDecl *Sema::getCurFunctionOrMethodDecl() {
222 DeclContext *DC = CurContext;
223 while (isa<BlockDecl>(DC))
224 DC = DC->getParent();
225 if (isa<ObjCMethodDecl>(DC) || isa<FunctionDecl>(DC))
Steve Naroff0701bbb2009-01-08 17:28:14 +0000226 return cast<ScopedDecl>(DC);
Chris Lattner371f2582008-12-04 23:50:19 +0000227 return 0;
228}
229