Sema.cpp revision f3a41af4d5c98a72a1d6720bbbfd658e57ef2541
1//===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the actions class which performs semantic analysis and
11// builds an AST out of a parse stream.
12//
13//===----------------------------------------------------------------------===//
14
15#include "Sema.h"
16#include "clang/AST/ASTContext.h"
17#include "clang/AST/DeclObjC.h"
18#include "clang/AST/Expr.h"
19#include "clang/Lex/Preprocessor.h"
20#include "clang/Basic/Diagnostic.h"
21using namespace clang;
22
23static inline RecordDecl *CreateStructDecl(ASTContext &C, const char *Name) {
24  if (C.getLangOptions().CPlusPlus)
25    return CXXRecordDecl::Create(C, TagDecl::TK_struct,
26                                 C.getTranslationUnitDecl(),
27                                 SourceLocation(), &C.Idents.get(Name));
28
29  return RecordDecl::Create(C, TagDecl::TK_struct,
30                            C.getTranslationUnitDecl(),
31                            SourceLocation(), &C.Idents.get(Name));
32}
33
34void Sema::ActOnTranslationUnitScope(SourceLocation Loc, Scope *S) {
35  TUScope = S;
36  PushDeclContext(Context.getTranslationUnitDecl());
37  if (!PP.getLangOptions().ObjC1) return;
38
39  // Synthesize "typedef struct objc_selector *SEL;"
40  RecordDecl *SelTag = CreateStructDecl(Context, "objc_selector");
41  PushOnScopeChains(SelTag, TUScope);
42
43  QualType SelT = Context.getPointerType(Context.getTagDeclType(SelTag));
44  TypedefDecl *SelTypedef = TypedefDecl::Create(Context, CurContext,
45                                                SourceLocation(),
46                                                &Context.Idents.get("SEL"),
47                                                SelT, 0);
48  PushOnScopeChains(SelTypedef, TUScope);
49  Context.setObjCSelType(SelTypedef);
50
51  // FIXME: Make sure these don't leak!
52  RecordDecl *ClassTag = CreateStructDecl(Context, "objc_class");
53  QualType ClassT = Context.getPointerType(Context.getTagDeclType(ClassTag));
54  TypedefDecl *ClassTypedef =
55    TypedefDecl::Create(Context, CurContext, SourceLocation(),
56                        &Context.Idents.get("Class"), ClassT, 0);
57  PushOnScopeChains(ClassTag, TUScope);
58  PushOnScopeChains(ClassTypedef, TUScope);
59  Context.setObjCClassType(ClassTypedef);
60  // Synthesize "@class Protocol;
61  ObjCInterfaceDecl *ProtocolDecl =
62    ObjCInterfaceDecl::Create(Context, SourceLocation(),
63                              &Context.Idents.get("Protocol"),
64                              SourceLocation(), true);
65  Context.setObjCProtoType(Context.getObjCInterfaceType(ProtocolDecl));
66  PushOnScopeChains(ProtocolDecl, TUScope);
67
68  // Synthesize "typedef struct objc_object { Class isa; } *id;"
69  RecordDecl *ObjectTag = CreateStructDecl(Context, "objc_object");
70
71  QualType ObjT = Context.getPointerType(Context.getTagDeclType(ObjectTag));
72  PushOnScopeChains(ObjectTag, TUScope);
73  TypedefDecl *IdTypedef = TypedefDecl::Create(Context, CurContext,
74                                               SourceLocation(),
75                                               &Context.Idents.get("id"),
76                                               ObjT, 0);
77  PushOnScopeChains(IdTypedef, TUScope);
78  Context.setObjCIdType(IdTypedef);
79}
80
81Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer)
82  : PP(pp), Context(ctxt), Consumer(consumer), CurContext(0),PreDeclaratorDC(0),
83    CurBlock(0), PackContext(0), IdResolver(pp.getLangOptions()) {
84
85  // Get IdentifierInfo objects for known functions for which we
86  // do extra checking.
87  IdentifierTable &IT = PP.getIdentifierTable();
88
89  KnownFunctionIDs[id_printf]        = &IT.get("printf");
90  KnownFunctionIDs[id_fprintf]       = &IT.get("fprintf");
91  KnownFunctionIDs[id_sprintf]       = &IT.get("sprintf");
92  KnownFunctionIDs[id_sprintf_chk]   = &IT.get("__builtin___sprintf_chk");
93  KnownFunctionIDs[id_snprintf]      = &IT.get("snprintf");
94  KnownFunctionIDs[id_snprintf_chk]  = &IT.get("__builtin___snprintf_chk");
95  KnownFunctionIDs[id_asprintf]      = &IT.get("asprintf");
96  KnownFunctionIDs[id_NSLog]         = &IT.get("NSLog");
97  KnownFunctionIDs[id_vsnprintf]     = &IT.get("vsnprintf");
98  KnownFunctionIDs[id_vasprintf]     = &IT.get("vasprintf");
99  KnownFunctionIDs[id_vfprintf]      = &IT.get("vfprintf");
100  KnownFunctionIDs[id_vsprintf]      = &IT.get("vsprintf");
101  KnownFunctionIDs[id_vsprintf_chk]  = &IT.get("__builtin___vsprintf_chk");
102  KnownFunctionIDs[id_vsnprintf]     = &IT.get("vsnprintf");
103  KnownFunctionIDs[id_vsnprintf_chk] = &IT.get("__builtin___vsnprintf_chk");
104  KnownFunctionIDs[id_vprintf]       = &IT.get("vprintf");
105
106  StdNamespace = 0;
107  TUScope = 0;
108  if (getLangOptions().CPlusPlus)
109    FieldCollector.reset(new CXXFieldCollector());
110}
111
112/// ImpCastExprToType - If Expr is not of type 'Type', insert an implicit cast.
113/// If there is already an implicit cast, merge into the existing one.
114  /// If isLvalue, the result of the cast is an lvalue.
115void Sema::ImpCastExprToType(Expr *&Expr, QualType Ty, bool isLvalue) {
116  QualType ExprTy = Context.getCanonicalType(Expr->getType());
117  QualType TypeTy = Context.getCanonicalType(Ty);
118
119  if (ExprTy == TypeTy)
120    return;
121
122  if (Expr->getType().getTypePtr()->isPointerType() &&
123      Ty.getTypePtr()->isPointerType()) {
124    QualType ExprBaseType =
125      cast<PointerType>(ExprTy.getUnqualifiedType())->getPointeeType();
126    QualType BaseType =
127      cast<PointerType>(TypeTy.getUnqualifiedType())->getPointeeType();
128    if (ExprBaseType.getAddressSpace() != BaseType.getAddressSpace()) {
129      Diag(Expr->getExprLoc(), diag::err_implicit_pointer_address_space_cast)
130        << Expr->getSourceRange();
131    }
132  }
133
134  if (ImplicitCastExpr *ImpCast = dyn_cast<ImplicitCastExpr>(Expr)) {
135    ImpCast->setType(Ty);
136    ImpCast->setLvalueCast(isLvalue);
137  } else
138    Expr = new ImplicitCastExpr(Ty, Expr, isLvalue);
139}
140
141void Sema::DeleteExpr(ExprTy *E) {
142  delete static_cast<Expr*>(E);
143}
144void Sema::DeleteStmt(StmtTy *S) {
145  delete static_cast<Stmt*>(S);
146}
147
148/// ActOnEndOfTranslationUnit - This is called at the very end of the
149/// translation unit when EOF is reached and all but the top-level scope is
150/// popped.
151void Sema::ActOnEndOfTranslationUnit() {
152
153}
154
155
156//===----------------------------------------------------------------------===//
157// Helper functions.
158//===----------------------------------------------------------------------===//
159
160DiagnosticInfo Sema::Diag(SourceLocation Loc, unsigned DiagID) {
161  return PP.getDiagnostics().Report(FullSourceLoc(Loc, PP.getSourceManager()),
162                                    DiagID);
163}
164
165const LangOptions &Sema::getLangOptions() const {
166  return PP.getLangOptions();
167}
168
169ObjCMethodDecl *Sema::getCurMethodDecl() {
170  DeclContext *DC = CurContext;
171  while (isa<BlockDecl>(DC))
172    DC = DC->getParent();
173  return dyn_cast<ObjCMethodDecl>(DC);
174}
175