blob: 288225d1e587f41f6f9750710bf85f1c3c80ec49 [file] [log] [blame]
Chris Lattner97e8b6f2007-10-07 06:04:32 +00001//===--- ASTConsumers.cpp - ASTConsumer implementations -------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +00002//
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//
Chris Lattner97e8b6f2007-10-07 06:04:32 +000010// AST Consumer Implementations.
Reid Spencer5f016e22007-07-11 17:01:13 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner97e8b6f2007-10-07 06:04:32 +000014#include "ASTConsumers.h"
Daniel Dunbare1bd4e62009-03-02 06:16:29 +000015#include "clang/Frontend/PathDiagnosticClients.h"
Ted Kremenek77cda502007-12-18 21:34:28 +000016#include "clang/AST/TranslationUnit.h"
Nico Weberdae86962008-08-09 18:32:11 +000017#include "clang/Basic/Diagnostic.h"
Ted Kremenek54117722007-12-20 00:34:58 +000018#include "clang/Basic/SourceManager.h"
19#include "clang/Basic/FileManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/AST/AST.h"
Chris Lattner3d4997d2007-09-15 23:02:28 +000021#include "clang/AST/ASTConsumer.h"
Ted Kremenek815c78f2008-08-05 18:50:11 +000022#include "clang/CodeGen/ModuleBuilder.h"
23#include "llvm/Module.h"
Daniel Dunbard46075f2008-10-21 23:54:00 +000024#include "llvm/Support/Streams.h"
Ted Kremenekcb330932008-02-18 21:21:23 +000025#include "llvm/Support/Timer.h"
Ted Kremeneka95d3752008-09-13 05:16:45 +000026#include "llvm/Support/raw_ostream.h"
Ted Kremenek4dc41cc2008-03-31 18:26:32 +000027
Chris Lattner6000dac2007-08-08 22:51:59 +000028using namespace clang;
Reid Spencer5f016e22007-07-11 17:01:13 +000029
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +000030//===----------------------------------------------------------------------===//
31/// DeclPrinter - Utility class for printing top-level decls.
Chris Lattner6000dac2007-08-08 22:51:59 +000032
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +000033namespace {
34 class DeclPrinter {
35 public:
Ted Kremeneka95d3752008-09-13 05:16:45 +000036 llvm::raw_ostream& Out;
Mike Stump071e4da2009-02-10 20:16:46 +000037 unsigned Indentation;
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +000038
Mike Stump071e4da2009-02-10 20:16:46 +000039 DeclPrinter(llvm::raw_ostream* out) : Out(out ? *out : llvm::errs()),
40 Indentation(0) {}
41 DeclPrinter() : Out(llvm::errs()), Indentation(0) {}
Ted Kremeneka95d3752008-09-13 05:16:45 +000042 virtual ~DeclPrinter();
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +000043
Mike Stump071e4da2009-02-10 20:16:46 +000044 void ChangeIndent(int I) {
45 Indentation += I;
46 }
47
48 llvm::raw_ostream& Indent() {
49 for (unsigned i = 0; i < Indentation; ++i)
50 Out << " ";
51 return Out;
52 }
53
Chris Lattneref5a85d2008-01-02 21:04:16 +000054 void PrintDecl(Decl *D);
Mike Stump071e4da2009-02-10 20:16:46 +000055 void Print(NamedDecl *ND);
56 void Print(NamespaceDecl *NS);
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +000057 void PrintFunctionDeclStart(FunctionDecl *FD);
58 void PrintTypeDefDecl(TypedefDecl *TD);
Chris Lattnerc6fdc342008-01-12 07:05:38 +000059 void PrintLinkageSpec(LinkageSpecDecl *LS);
Ted Kremeneka526c5c2008-01-07 19:49:32 +000060 void PrintObjCMethodDecl(ObjCMethodDecl *OMD);
61 void PrintObjCImplementationDecl(ObjCImplementationDecl *OID);
62 void PrintObjCInterfaceDecl(ObjCInterfaceDecl *OID);
63 void PrintObjCProtocolDecl(ObjCProtocolDecl *PID);
64 void PrintObjCCategoryImplDecl(ObjCCategoryImplDecl *PID);
65 void PrintObjCCategoryDecl(ObjCCategoryDecl *PID);
66 void PrintObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *AID);
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +000067 void PrintObjCPropertyDecl(ObjCPropertyDecl *PD);
Fariborz Jahanian628b96f2008-04-23 00:06:01 +000068 void PrintObjCPropertyImplDecl(ObjCPropertyImplDecl *PID);
Douglas Gregoraaba5e32009-02-04 19:02:06 +000069
70 void PrintTemplateDecl(TemplateDecl *TD);
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +000071 };
72} // end anonymous namespace
73
Ted Kremeneka95d3752008-09-13 05:16:45 +000074DeclPrinter::~DeclPrinter() {
75 Out.flush();
76}
77
Chris Lattneref5a85d2008-01-02 21:04:16 +000078void DeclPrinter:: PrintDecl(Decl *D) {
Mike Stump071e4da2009-02-10 20:16:46 +000079 Indent();
Chris Lattneref5a85d2008-01-02 21:04:16 +000080 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
81 PrintFunctionDeclStart(FD);
82
83 if (FD->getBody()) {
84 Out << ' ';
Mike Stump071e4da2009-02-10 20:16:46 +000085 FD->getBody()->printPretty(Out, 0, Indentation, true);
Chris Lattneref5a85d2008-01-02 21:04:16 +000086 Out << '\n';
87 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +000088 } else if (isa<ObjCMethodDecl>(D)) {
Chris Lattneref5a85d2008-01-02 21:04:16 +000089 // Do nothing, methods definitions are printed in
Ted Kremeneka526c5c2008-01-07 19:49:32 +000090 // PrintObjCImplementationDecl.
Chris Lattneref5a85d2008-01-02 21:04:16 +000091 } else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
92 PrintTypeDefDecl(TD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +000093 } else if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(D)) {
94 PrintObjCInterfaceDecl(OID);
95 } else if (ObjCProtocolDecl *PID = dyn_cast<ObjCProtocolDecl>(D)) {
96 PrintObjCProtocolDecl(PID);
97 } else if (ObjCForwardProtocolDecl *OFPD =
Chris Lattnerc81c8142008-02-25 21:04:36 +000098 dyn_cast<ObjCForwardProtocolDecl>(D)) {
Chris Lattneref5a85d2008-01-02 21:04:16 +000099 Out << "@protocol ";
Chris Lattner07fa7742009-02-20 18:10:37 +0000100 for (ObjCForwardProtocolDecl::iterator I = OFPD->begin(), E = OFPD->end();
101 I != E; ++I) {
102 if (I != OFPD->begin()) Out << ", ";
103 Out << (*I)->getNameAsString();
Chris Lattneref5a85d2008-01-02 21:04:16 +0000104 }
105 Out << ";\n";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000106 } else if (ObjCImplementationDecl *OID =
Chris Lattnerc81c8142008-02-25 21:04:36 +0000107 dyn_cast<ObjCImplementationDecl>(D)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000108 PrintObjCImplementationDecl(OID);
109 } else if (ObjCCategoryImplDecl *OID =
Chris Lattnerc81c8142008-02-25 21:04:36 +0000110 dyn_cast<ObjCCategoryImplDecl>(D)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000111 PrintObjCCategoryImplDecl(OID);
112 } else if (ObjCCategoryDecl *OID =
Chris Lattnerc81c8142008-02-25 21:04:36 +0000113 dyn_cast<ObjCCategoryDecl>(D)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000114 PrintObjCCategoryDecl(OID);
115 } else if (ObjCCompatibleAliasDecl *OID =
Chris Lattnerc81c8142008-02-25 21:04:36 +0000116 dyn_cast<ObjCCompatibleAliasDecl>(D)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000117 PrintObjCCompatibleAliasDecl(OID);
Chris Lattner23a0e452008-06-21 21:40:20 +0000118 } else if (ObjCClassDecl *OFCD = dyn_cast<ObjCClassDecl>(D)) {
119 Out << "@class ";
Chris Lattner67956052009-02-20 18:04:31 +0000120 for (ObjCClassDecl::iterator I = OFCD->begin(), E = OFCD->end();
121 I != E; ++I) {
122 if (I != OFCD->begin()) Out << ", ";
123 Out << (*I)->getNameAsString();
Chris Lattner23a0e452008-06-21 21:40:20 +0000124 }
125 Out << ";\n";
Douglas Gregor45579f52008-12-17 02:04:30 +0000126 } else if (EnumDecl *ED = dyn_cast<EnumDecl>(D)) {
127 Out << "enum " << ED->getNameAsString() << " {\n";
128 for (EnumDecl::enumerator_iterator E = ED->enumerator_begin(),
129 EEnd = ED->enumerator_end();
130 E != EEnd; ++E)
131 Out << " " << (*E)->getNameAsString() << ",\n";
132 Out << "};\n";
Chris Lattneref5a85d2008-01-02 21:04:16 +0000133 } else if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
Mike Stump071e4da2009-02-10 20:16:46 +0000134 // print a free standing tag decl (e.g. "struct x;").
135 Out << TD->getKindName();
136 Out << " ";
137 if (const IdentifierInfo *II = TD->getIdentifier())
138 Out << II->getName();
139
140 Out << " {\n";
141 ChangeIndent(1);
142 for (DeclContext::decl_iterator i = TD->decls_begin();
143 i != TD->decls_end();
144 ++i)
145 PrintDecl(*i);
146 ChangeIndent(-1);
147 Indent();
148 Out << "}";
149
150 Out << "\n";
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000151 } else if (TemplateDecl *TempD = dyn_cast<TemplateDecl>(D)) {
152 PrintTemplateDecl(TempD);
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000153 } else if (LinkageSpecDecl *LSD = dyn_cast<LinkageSpecDecl>(D)) {
154 PrintLinkageSpec(LSD);
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000155 } else if (FileScopeAsmDecl *AD = dyn_cast<FileScopeAsmDecl>(D)) {
156 Out << "asm(";
157 AD->getAsmString()->printPretty(Out);
158 Out << ")\n";
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000159 } else if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
Mike Stump071e4da2009-02-10 20:16:46 +0000160 Print(ND);
Chris Lattneref5a85d2008-01-02 21:04:16 +0000161 } else {
162 assert(0 && "Unknown decl type!");
163 }
164}
165
Mike Stump071e4da2009-02-10 20:16:46 +0000166void DeclPrinter::Print(NamedDecl *ND) {
167 switch (ND->getKind()) {
168 default:
169 // FIXME: Handle the rest of the NamedDecls.
170 Out << "### NamedDecl " << ND->getNameAsString() << "\n";
171 break;
172 case Decl::Field:
173 case Decl::Var: {
174 // Emit storage class for vardecls.
175 if (VarDecl *V = dyn_cast<VarDecl>(ND)) {
176 switch (V->getStorageClass()) {
177 default: assert(0 && "Unknown storage class!");
Mike Stumpc5840c02009-02-10 23:49:50 +0000178 case VarDecl::None: break;
179 case VarDecl::Auto: Out << "auto "; break;
180 case VarDecl::Register: Out << "register "; break;
181 case VarDecl::Extern: Out << "extern "; break;
182 case VarDecl::Static: Out << "static "; break;
Daniel Dunbar7ab41f72009-02-13 22:49:34 +0000183 case VarDecl::PrivateExtern: Out << "__private_extern__ "; break;
Mike Stump071e4da2009-02-10 20:16:46 +0000184 }
185 }
186 std::string Name = ND->getNameAsString();
187 // This forms: "int a".
188 dyn_cast<ValueDecl>(ND)->getType().getAsStringInternal(Name);
189 Out << Name << ";\n";
190 break;
191 }
192 case Decl::Namespace:
193 Print(dyn_cast<NamespaceDecl>(ND));
194 break;
195 }
196}
197
198void DeclPrinter::Print(NamespaceDecl *NS) {
199 Out << "namespace " << NS->getNameAsString() << " {\n";
200 ChangeIndent(1);
201 for (DeclContext::decl_iterator i = NS->decls_begin();
202 i != NS->decls_end();
203 ++i)
204 PrintDecl(*i);
205 ChangeIndent(-1);
206 Indent();
207 Out << "}\n";
208}
209
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000210void DeclPrinter::PrintFunctionDeclStart(FunctionDecl *FD) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 bool HasBody = FD->getBody();
212
Ted Kremenekea75c552007-11-28 21:32:21 +0000213 Out << '\n';
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000214
Mike Stump071e4da2009-02-10 20:16:46 +0000215 Indent();
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000216 switch (FD->getStorageClass()) {
217 default: assert(0 && "Unknown storage class");
218 case FunctionDecl::None: break;
Ted Kremenekea75c552007-11-28 21:32:21 +0000219 case FunctionDecl::Extern: Out << "extern "; break;
220 case FunctionDecl::Static: Out << "static "; break;
Ted Kremenek24bd3c42008-04-15 03:57:09 +0000221 case FunctionDecl::PrivateExtern: Out << "__private_extern__ "; break;
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000222 }
223
224 if (FD->isInline())
Ted Kremenekea75c552007-11-28 21:32:21 +0000225 Out << "inline ";
Chris Lattner70c8b2e2007-08-26 04:02:13 +0000226
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000227 std::string Proto = FD->getNameAsString();
Chris Lattner0d6ca112007-12-03 21:43:25 +0000228 const FunctionType *AFT = FD->getType()->getAsFunctionType();
Reid Spencer5f016e22007-07-11 17:01:13 +0000229
Douglas Gregor72564e72009-02-26 23:50:07 +0000230 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(AFT)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000231 Proto += "(";
232 for (unsigned i = 0, e = FD->getNumParams(); i != e; ++i) {
233 if (i) Proto += ", ";
234 std::string ParamStr;
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000235 if (HasBody) ParamStr = FD->getParamDecl(i)->getNameAsString();
Reid Spencer5f016e22007-07-11 17:01:13 +0000236
237 FT->getArgType(i).getAsStringInternal(ParamStr);
238 Proto += ParamStr;
239 }
240
241 if (FT->isVariadic()) {
242 if (FD->getNumParams()) Proto += ", ";
243 Proto += "...";
244 }
245 Proto += ")";
246 } else {
Douglas Gregor72564e72009-02-26 23:50:07 +0000247 assert(isa<FunctionNoProtoType>(AFT));
Reid Spencer5f016e22007-07-11 17:01:13 +0000248 Proto += "()";
249 }
250
251 AFT->getResultType().getAsStringInternal(Proto);
Ted Kremenekea75c552007-11-28 21:32:21 +0000252 Out << Proto;
Reid Spencer5f016e22007-07-11 17:01:13 +0000253
Chris Lattner6000dac2007-08-08 22:51:59 +0000254 if (!FD->getBody())
Ted Kremenekea75c552007-11-28 21:32:21 +0000255 Out << ";\n";
Chris Lattner6000dac2007-08-08 22:51:59 +0000256 // Doesn't print the body.
Reid Spencer5f016e22007-07-11 17:01:13 +0000257}
258
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000259void DeclPrinter::PrintTypeDefDecl(TypedefDecl *TD) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000260 std::string S = TD->getNameAsString();
Reid Spencer5f016e22007-07-11 17:01:13 +0000261 TD->getUnderlyingType().getAsStringInternal(S);
Ted Kremenekea75c552007-11-28 21:32:21 +0000262 Out << "typedef " << S << ";\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000263}
264
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000265void DeclPrinter::PrintLinkageSpec(LinkageSpecDecl *LS) {
266 const char *l;
267 if (LS->getLanguage() == LinkageSpecDecl::lang_c)
268 l = "C";
Chris Lattner06767512008-04-08 05:52:18 +0000269 else {
270 assert(LS->getLanguage() == LinkageSpecDecl::lang_cxx &&
271 "unknown language in linkage specification");
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000272 l = "C++";
Chris Lattner06767512008-04-08 05:52:18 +0000273 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000274
275 Out << "extern \"" << l << "\" ";
Mike Stump071e4da2009-02-10 20:16:46 +0000276 if (LS->hasBraces()) {
Douglas Gregorf44515a2008-12-16 22:23:02 +0000277 Out << "{\n";
Mike Stump071e4da2009-02-10 20:16:46 +0000278 ChangeIndent(1);
279 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000280
Douglas Gregor074149e2009-01-05 19:45:36 +0000281 for (LinkageSpecDecl::decl_iterator D = LS->decls_begin(),
282 DEnd = LS->decls_end();
Douglas Gregorf44515a2008-12-16 22:23:02 +0000283 D != DEnd; ++D)
284 PrintDecl(*D);
285
Mike Stump071e4da2009-02-10 20:16:46 +0000286 if (LS->hasBraces()) {
287 ChangeIndent(-1);
288 Indent() << "}";
289 }
Douglas Gregorf44515a2008-12-16 22:23:02 +0000290 Out << "\n";
Chris Lattnerc6fdc342008-01-12 07:05:38 +0000291}
292
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000293void DeclPrinter::PrintObjCMethodDecl(ObjCMethodDecl *OMD) {
Douglas Gregorf8d49f62009-01-09 17:18:27 +0000294 if (OMD->isInstanceMethod())
Ted Kremenekea75c552007-11-28 21:32:21 +0000295 Out << "\n- ";
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000296 else
Ted Kremenekea75c552007-11-28 21:32:21 +0000297 Out << "\n+ ";
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000298 if (!OMD->getResultType().isNull())
Chris Lattnerefe8a962008-08-22 06:59:15 +0000299 Out << '(' << OMD->getResultType().getAsString() << ")";
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000300
Chris Lattner077bf5e2008-11-24 03:33:13 +0000301 std::string name = OMD->getSelector().getAsString();
Chris Lattnerefe8a962008-08-22 06:59:15 +0000302 std::string::size_type pos, lastPos = 0;
Chris Lattner89951a82009-02-20 18:43:26 +0000303 for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
304 E = OMD->param_end(); PI != E; ++PI) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000305 // FIXME: selector is missing here!
Chris Lattnerefe8a962008-08-22 06:59:15 +0000306 pos = name.find_first_of(":", lastPos);
307 Out << " " << name.substr(lastPos, pos - lastPos);
Chris Lattner89951a82009-02-20 18:43:26 +0000308 Out << ":(" << (*PI)->getType().getAsString() << ")"
309 << (*PI)->getNameAsString();
Chris Lattnerefe8a962008-08-22 06:59:15 +0000310 lastPos = pos + 1;
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000311 }
Chris Lattnerefe8a962008-08-22 06:59:15 +0000312
Chris Lattner89951a82009-02-20 18:43:26 +0000313 if (OMD->param_begin() == OMD->param_end())
Chris Lattnerefe8a962008-08-22 06:59:15 +0000314 Out << " " << name;
315
316 if (OMD->isVariadic())
317 Out << ", ...";
318
319 Out << ";";
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000320}
321
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000322void DeclPrinter::PrintObjCImplementationDecl(ObjCImplementationDecl *OID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000323 std::string I = OID->getNameAsString();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000324 ObjCInterfaceDecl *SID = OID->getSuperClass();
Ted Kremenekea75c552007-11-28 21:32:21 +0000325
326 if (SID)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000327 Out << "@implementation " << I << " : " << SID->getNameAsString();
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000328 else
Ted Kremenekea75c552007-11-28 21:32:21 +0000329 Out << "@implementation " << I;
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000330
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000331 for (ObjCImplementationDecl::instmeth_iterator I = OID->instmeth_begin(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000332 E = OID->instmeth_end(); I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000333 ObjCMethodDecl *OMD = *I;
334 PrintObjCMethodDecl(OMD);
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000335 if (OMD->getBody()) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000336 Out << ' ';
337 OMD->getBody()->printPretty(Out);
338 Out << '\n';
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000339 }
340 }
341
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000342 for (ObjCImplementationDecl::classmeth_iterator I = OID->classmeth_begin(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000343 E = OID->classmeth_end(); I != E; ++I) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000344 ObjCMethodDecl *OMD = *I;
345 PrintObjCMethodDecl(OMD);
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000346 if (OMD->getBody()) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000347 Out << ' ';
348 OMD->getBody()->printPretty(Out);
349 Out << '\n';
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000350 }
351 }
352
Fariborz Jahanian628b96f2008-04-23 00:06:01 +0000353 for (ObjCImplementationDecl::propimpl_iterator I = OID->propimpl_begin(),
354 E = OID->propimpl_end(); I != E; ++I)
355 PrintObjCPropertyImplDecl(*I);
356
Ted Kremenekea75c552007-11-28 21:32:21 +0000357 Out << "@end\n";
Fariborz Jahaniandb8f3d32007-11-10 20:59:13 +0000358}
359
360
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000361void DeclPrinter::PrintObjCInterfaceDecl(ObjCInterfaceDecl *OID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000362 std::string I = OID->getNameAsString();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000363 ObjCInterfaceDecl *SID = OID->getSuperClass();
Ted Kremenekea75c552007-11-28 21:32:21 +0000364
365 if (SID)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000366 Out << "@interface " << I << " : " << SID->getNameAsString();
Fariborz Jahaniane37882a2007-10-08 23:06:41 +0000367 else
Ted Kremenekea75c552007-11-28 21:32:21 +0000368 Out << "@interface " << I;
369
Fariborz Jahaniane37882a2007-10-08 23:06:41 +0000370 // Protocols?
Chris Lattner3db6cae2008-07-21 18:19:38 +0000371 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
372 if (!Protocols.empty()) {
373 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
374 E = Protocols.end(); I != E; ++I)
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000375 Out << (I == Protocols.begin() ? '<' : ',') << (*I)->getNameAsString();
Fariborz Jahaniane37882a2007-10-08 23:06:41 +0000376 }
Ted Kremenekea75c552007-11-28 21:32:21 +0000377
Chris Lattner3db6cae2008-07-21 18:19:38 +0000378 if (!Protocols.empty())
379 Out << ">";
380 Out << '\n';
Fariborz Jahanianedcfb422007-10-26 16:29:12 +0000381
Chris Lattnerf3a7af92008-03-16 21:08:55 +0000382 if (OID->ivar_size() > 0) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000383 Out << '{';
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000384 for (ObjCInterfaceDecl::ivar_iterator I = OID->ivar_begin(),
Chris Lattnerbe6df082007-12-12 07:56:42 +0000385 E = OID->ivar_end(); I != E; ++I) {
386 Out << '\t' << (*I)->getType().getAsString()
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000387 << ' ' << (*I)->getNameAsString() << ";\n";
Fariborz Jahanianedcfb422007-10-26 16:29:12 +0000388 }
Ted Kremenekea75c552007-11-28 21:32:21 +0000389 Out << "}\n";
Fariborz Jahanianedcfb422007-10-26 16:29:12 +0000390 }
Fariborz Jahanian82a5fe32007-11-06 22:01:00 +0000391
Steve Naroff09c47192009-01-09 15:36:25 +0000392 for (ObjCInterfaceDecl::prop_iterator I = OID->prop_begin(),
393 E = OID->prop_end(); I != E; ++I)
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000394 PrintObjCPropertyDecl(*I);
Fariborz Jahanian33de3f02008-05-07 17:43:59 +0000395 bool eol_needed = false;
Fariborz Jahanianb89ca232008-05-06 23:14:25 +0000396 for (ObjCInterfaceDecl::classmeth_iterator I = OID->classmeth_begin(),
397 E = OID->classmeth_end(); I != E; ++I)
Fariborz Jahanian33de3f02008-05-07 17:43:59 +0000398 eol_needed = true, PrintObjCMethodDecl(*I);
Fariborz Jahanianb89ca232008-05-06 23:14:25 +0000399
400 for (ObjCInterfaceDecl::instmeth_iterator I = OID->instmeth_begin(),
401 E = OID->instmeth_end(); I != E; ++I)
Fariborz Jahanian33de3f02008-05-07 17:43:59 +0000402 eol_needed = true, PrintObjCMethodDecl(*I);
Fariborz Jahanianb89ca232008-05-06 23:14:25 +0000403
Fariborz Jahanian33de3f02008-05-07 17:43:59 +0000404 Out << (eol_needed ? "\n@end\n" : "@end\n");
Steve Naroff2bd42fa2007-09-10 20:51:04 +0000405 // FIXME: implement the rest...
406}
407
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000408void DeclPrinter::PrintObjCProtocolDecl(ObjCProtocolDecl *PID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000409 Out << "@protocol " << PID->getNameAsString() << '\n';
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000410
Steve Naroff09c47192009-01-09 15:36:25 +0000411 for (ObjCProtocolDecl::prop_iterator I = PID->prop_begin(),
412 E = PID->prop_end(); I != E; ++I)
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000413 PrintObjCPropertyDecl(*I);
414 Out << "@end\n";
Fariborz Jahanianab0aeb02007-10-08 18:53:38 +0000415 // FIXME: implement the rest...
416}
417
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000418void DeclPrinter::PrintObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000419 Out << "@implementation "
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000420 << PID->getClassInterface()->getNameAsString()
421 << '(' << PID->getNameAsString() << ");\n";
Fariborz Jahanian628b96f2008-04-23 00:06:01 +0000422 for (ObjCCategoryImplDecl::propimpl_iterator I = PID->propimpl_begin(),
423 E = PID->propimpl_end(); I != E; ++I)
424 PrintObjCPropertyImplDecl(*I);
425 Out << "@end\n";
Fariborz Jahanianab0aeb02007-10-08 18:53:38 +0000426 // FIXME: implement the rest...
427}
428
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000429void DeclPrinter::PrintObjCCategoryDecl(ObjCCategoryDecl *PID) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000430 Out << "@interface "
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000431 << PID->getClassInterface()->getNameAsString()
432 << '(' << PID->getNameAsString() << ");\n";
Fariborz Jahanian7e7e3872008-04-16 21:08:45 +0000433 // Output property declarations.
Steve Naroff09c47192009-01-09 15:36:25 +0000434 for (ObjCCategoryDecl::prop_iterator I = PID->prop_begin(),
435 E = PID->prop_end(); I != E; ++I)
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000436 PrintObjCPropertyDecl(*I);
Fariborz Jahanian7e7e3872008-04-16 21:08:45 +0000437 Out << "@end\n";
438
Fariborz Jahanianab0aeb02007-10-08 18:53:38 +0000439 // FIXME: implement the rest...
440}
441
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000442void DeclPrinter::PrintObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *AID) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000443 Out << "@compatibility_alias " << AID->getNameAsString()
444 << ' ' << AID->getClassInterface()->getNameAsString() << ";\n";
Fariborz Jahanian243b64b2007-10-11 23:42:27 +0000445}
446
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000447/// PrintObjCPropertyDecl - print a property declaration.
448///
449void DeclPrinter::PrintObjCPropertyDecl(ObjCPropertyDecl *PDecl) {
Fariborz Jahanian46b55e52008-05-05 18:51:55 +0000450 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required)
451 Out << "@required\n";
452 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional)
453 Out << "@optional\n";
454
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000455 Out << "@property";
456 if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) {
457 bool first = true;
458 Out << " (";
459 if (PDecl->getPropertyAttributes() &
460 ObjCPropertyDecl::OBJC_PR_readonly) {
461 Out << (first ? ' ' : ',') << "readonly";
462 first = false;
463 }
464
465 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
466 Out << (first ? ' ' : ',') << "getter = "
Chris Lattner077bf5e2008-11-24 03:33:13 +0000467 << PDecl->getGetterName().getAsString();
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000468 first = false;
469 }
470 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
471 Out << (first ? ' ' : ',') << "setter = "
Chris Lattner077bf5e2008-11-24 03:33:13 +0000472 << PDecl->getSetterName().getAsString();
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000473 first = false;
474 }
475
476 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) {
477 Out << (first ? ' ' : ',') << "assign";
478 first = false;
479 }
480
481 if (PDecl->getPropertyAttributes() &
482 ObjCPropertyDecl::OBJC_PR_readwrite) {
483 Out << (first ? ' ' : ',') << "readwrite";
484 first = false;
485 }
486
487 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) {
488 Out << (first ? ' ' : ',') << "retain";
489 first = false;
490 }
491
492 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) {
493 Out << (first ? ' ' : ',') << "copy";
494 first = false;
495 }
496
497 if (PDecl->getPropertyAttributes() &
498 ObjCPropertyDecl::OBJC_PR_nonatomic) {
499 Out << (first ? ' ' : ',') << "nonatomic";
500 first = false;
501 }
502 Out << " )";
503 }
504 Out << ' ' << PDecl->getType().getAsString()
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000505 << ' ' << PDecl->getNameAsString();
Fariborz Jahanian3dd4ba42008-04-17 18:25:18 +0000506
507 Out << ";\n";
508}
Fariborz Jahanian628b96f2008-04-23 00:06:01 +0000509
510/// PrintObjCPropertyImplDecl - Print an objective-c property implementation
511/// declaration syntax.
512///
513void DeclPrinter::PrintObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) {
Daniel Dunbar9f0afd42008-08-26 04:47:31 +0000514 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
Fariborz Jahanian628b96f2008-04-23 00:06:01 +0000515 Out << "\n@synthesize ";
516 else
517 Out << "\n@dynamic ";
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000518 Out << PID->getPropertyDecl()->getNameAsString();
Fariborz Jahanian628b96f2008-04-23 00:06:01 +0000519 if (PID->getPropertyIvarDecl())
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000520 Out << "=" << PID->getPropertyIvarDecl()->getNameAsString();
Fariborz Jahanian628b96f2008-04-23 00:06:01 +0000521 Out << ";\n";
522}
Douglas Gregoraaba5e32009-02-04 19:02:06 +0000523
524/// PrintTemplateParams - Print a template parameter list and recursively print
525/// it's underlying top-level definition.
526void DeclPrinter::PrintTemplateDecl(TemplateDecl *TD) {
527 // TODO: Write template parameters.
528 Out << "template <...> ";
529 PrintDecl(TD->getTemplatedDecl());
530}
531
532
533
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000534//===----------------------------------------------------------------------===//
535/// ASTPrinter - Pretty-printer of ASTs
536
Chris Lattner3d4997d2007-09-15 23:02:28 +0000537namespace {
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000538 class ASTPrinter : public ASTConsumer, public DeclPrinter {
539 public:
Ted Kremeneka95d3752008-09-13 05:16:45 +0000540 ASTPrinter(llvm::raw_ostream* o = NULL) : DeclPrinter(o) {}
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000541
Chris Lattner3d4997d2007-09-15 23:02:28 +0000542 virtual void HandleTopLevelDecl(Decl *D) {
Chris Lattneref5a85d2008-01-02 21:04:16 +0000543 PrintDecl(D);
Reid Spencer5f016e22007-07-11 17:01:13 +0000544 }
Chris Lattner3d4997d2007-09-15 23:02:28 +0000545 };
Reid Spencer5f016e22007-07-11 17:01:13 +0000546}
Chris Lattner6000dac2007-08-08 22:51:59 +0000547
Ted Kremeneka95d3752008-09-13 05:16:45 +0000548ASTConsumer *clang::CreateASTPrinter(llvm::raw_ostream* out) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000549 return new ASTPrinter(out);
550}
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000551
552//===----------------------------------------------------------------------===//
553/// ASTDumper - Low-level dumper of ASTs
Chris Lattner3d4997d2007-09-15 23:02:28 +0000554
555namespace {
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000556 class ASTDumper : public ASTConsumer, public DeclPrinter {
Chris Lattner3d4997d2007-09-15 23:02:28 +0000557 SourceManager *SM;
558 public:
Ted Kremenekea75c552007-11-28 21:32:21 +0000559 ASTDumper() : DeclPrinter() {}
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000560
Ted Kremenek95041a22007-12-19 22:51:13 +0000561 void Initialize(ASTContext &Context) {
Ted Kremenek7a9d49f2007-12-11 21:27:55 +0000562 SM = &Context.getSourceManager();
Chris Lattner6000dac2007-08-08 22:51:59 +0000563 }
Chris Lattner3d4997d2007-09-15 23:02:28 +0000564
565 virtual void HandleTopLevelDecl(Decl *D) {
566 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
567 PrintFunctionDeclStart(FD);
568
569 if (FD->getBody()) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000570 Out << '\n';
571 // FIXME: convert dumper to use std::ostream?
Chris Lattner3d4997d2007-09-15 23:02:28 +0000572 FD->getBody()->dumpAll(*SM);
Ted Kremenekea75c552007-11-28 21:32:21 +0000573 Out << '\n';
Chris Lattner3d4997d2007-09-15 23:02:28 +0000574 }
575 } else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
576 PrintTypeDefDecl(TD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000577 } else if (ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(D)) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000578 Out << "Read objc interface '" << OID->getNameAsString() << "'\n";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000579 } else if (ObjCProtocolDecl *OPD = dyn_cast<ObjCProtocolDecl>(D)) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000580 Out << "Read objc protocol '" << OPD->getNameAsString() << "'\n";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000581 } else if (ObjCCategoryDecl *OCD = dyn_cast<ObjCCategoryDecl>(D)) {
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000582 Out << "Read objc category '" << OCD->getNameAsString() << "'\n";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000583 } else if (isa<ObjCForwardProtocolDecl>(D)) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000584 Out << "Read objc fwd protocol decl\n";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000585 } else if (isa<ObjCClassDecl>(D)) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000586 Out << "Read objc fwd class decl\n";
Anders Carlssondfab6cb2008-02-08 00:33:21 +0000587 } else if (isa<FileScopeAsmDecl>(D)) {
588 Out << "Read file scope asm decl\n";
Ted Kremenek63bbe532008-03-14 17:31:00 +0000589 } else if (ObjCMethodDecl* MD = dyn_cast<ObjCMethodDecl>(D)) {
Chris Lattner077bf5e2008-11-24 03:33:13 +0000590 Out << "Read objc method decl: '" << MD->getSelector().getAsString()
Ted Kremenek63bbe532008-03-14 17:31:00 +0000591 << "'\n";
Steve Naroff1a2b90d2008-05-23 18:50:58 +0000592 if (MD->getBody()) {
593 // FIXME: convert dumper to use std::ostream?
594 MD->getBody()->dumpAll(*SM);
595 Out << '\n';
596 }
Ted Kremenek63bbe532008-03-14 17:31:00 +0000597 } else if (isa<ObjCImplementationDecl>(D)) {
598 Out << "Read objc implementation decl\n";
Daniel Dunbar539ced12008-10-05 00:31:15 +0000599 } else if (isa<ObjCCategoryImplDecl>(D)) {
600 Out << "Read objc category implementation decl\n";
Eli Friedmanf595eb02008-12-16 22:14:15 +0000601 } else if (isa<LinkageSpecDecl>(D)) {
602 Out << "Read linkage spec decl\n";
Douglas Gregor305c22e2009-01-23 01:10:18 +0000603 } else if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
604 Out << "Read top-level variable decl: '" << ND->getNameAsString()
605 << "'\n";
Eli Friedmanf595eb02008-12-16 22:14:15 +0000606 } else {
Chris Lattner9fa5e652007-10-06 18:52:10 +0000607 assert(0 && "Unknown decl type!");
Chris Lattner3d4997d2007-09-15 23:02:28 +0000608 }
609 }
610 };
Chris Lattner6000dac2007-08-08 22:51:59 +0000611}
612
Chris Lattner3d4997d2007-09-15 23:02:28 +0000613ASTConsumer *clang::CreateASTDumper() { return new ASTDumper(); }
614
Ted Kremenek1b5a4bd2007-11-27 21:46:50 +0000615//===----------------------------------------------------------------------===//
616/// ASTViewer - AST Visualization
617
Ted Kremenek80de08f2007-09-19 21:29:43 +0000618namespace {
619 class ASTViewer : public ASTConsumer {
620 SourceManager *SM;
621 public:
Ted Kremenek95041a22007-12-19 22:51:13 +0000622 void Initialize(ASTContext &Context) {
Ted Kremenek7a9d49f2007-12-11 21:27:55 +0000623 SM = &Context.getSourceManager();
Ted Kremenek80de08f2007-09-19 21:29:43 +0000624 }
625
626 virtual void HandleTopLevelDecl(Decl *D) {
627 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000628 DeclPrinter().PrintFunctionDeclStart(FD);
Ted Kremenek80de08f2007-09-19 21:29:43 +0000629
630 if (FD->getBody()) {
Ted Kremenekea75c552007-11-28 21:32:21 +0000631 llvm::cerr << '\n';
Ted Kremenek80de08f2007-09-19 21:29:43 +0000632 FD->getBody()->viewAST();
Ted Kremenekea75c552007-11-28 21:32:21 +0000633 llvm::cerr << '\n';
Ted Kremenek80de08f2007-09-19 21:29:43 +0000634 }
635 }
Ted Kremenek63bbe532008-03-14 17:31:00 +0000636 else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
637 DeclPrinter().PrintObjCMethodDecl(MD);
638
639 if (MD->getBody()) {
640 llvm::cerr << '\n';
641 MD->getBody()->viewAST();
642 llvm::cerr << '\n';
643 }
644 }
Ted Kremenek80de08f2007-09-19 21:29:43 +0000645 }
646 };
647}
648
649ASTConsumer *clang::CreateASTViewer() { return new ASTViewer(); }
650
Ted Kremenek74bf2c92007-09-07 23:47:56 +0000651//===----------------------------------------------------------------------===//
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000652/// DeclContextPrinter - Decl and DeclContext Visualization
653
654namespace {
655
656class DeclContextPrinter : public ASTConsumer {
657 llvm::raw_ostream& Out;
658public:
659 DeclContextPrinter() : Out(llvm::errs()) {}
660
661 void HandleTranslationUnit(TranslationUnit& TU) {
Chris Lattnera9376d42009-03-28 03:45:20 +0000662 PrintDeclContext(TU.getContext().getTranslationUnitDecl(), 4);
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000663 }
664
665 void PrintDeclContext(const DeclContext* DC, unsigned Indentation);
666};
667
668void DeclContextPrinter::PrintDeclContext(const DeclContext* DC,
669 unsigned Indentation) {
670 // Print DeclContext name.
Argyrios Kyrtzidis9b9ca012009-01-13 13:11:58 +0000671 switch (DC->getDeclKind()) {
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000672 case Decl::TranslationUnit:
673 Out << "[translation unit] " << DC;
674 break;
675 case Decl::Namespace: {
676 Out << "[namespace] ";
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000677 const NamespaceDecl* ND = cast<NamespaceDecl>(DC);
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000678 Out << ND->getNameAsString();
679 break;
680 }
Zhongxing Xu867c39e2009-01-13 02:41:08 +0000681 case Decl::Enum: {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000682 const EnumDecl* ED = cast<EnumDecl>(DC);
Zhongxing Xu867c39e2009-01-13 02:41:08 +0000683 if (ED->isDefinition())
684 Out << "[enum] ";
685 else
686 Out << "<enum> ";
687 Out << ED->getNameAsString();
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000688 break;
Zhongxing Xu867c39e2009-01-13 02:41:08 +0000689 }
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000690 case Decl::Record: {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000691 const RecordDecl* RD = cast<RecordDecl>(DC);
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000692 if (RD->isDefinition())
693 Out << "[struct] ";
694 else
695 Out << "<struct> ";
696 Out << RD->getNameAsString();
697 break;
698 }
699 case Decl::CXXRecord: {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000700 const CXXRecordDecl* RD = cast<CXXRecordDecl>(DC);
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000701 if (RD->isDefinition())
702 Out << "[class] ";
703 else
704 Out << "<class> ";
705 Out << RD->getNameAsString() << " " << DC;
706 break;
707 }
708 case Decl::ObjCMethod:
709 Out << "[objc method]";
710 break;
711 case Decl::ObjCInterface:
712 Out << "[objc interface]";
713 break;
714 case Decl::ObjCCategory:
715 Out << "[objc category]";
716 break;
717 case Decl::ObjCProtocol:
718 Out << "[objc protocol]";
719 break;
720 case Decl::ObjCImplementation:
721 Out << "[objc implementation]";
722 break;
723 case Decl::ObjCCategoryImpl:
724 Out << "[objc categoryimpl]";
725 break;
726 case Decl::LinkageSpec:
727 Out << "[linkage spec]";
728 break;
729 case Decl::Block:
730 Out << "[block]";
731 break;
732 case Decl::Function: {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000733 const FunctionDecl* FD = cast<FunctionDecl>(DC);
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000734 if (FD->isThisDeclarationADefinition())
735 Out << "[function] ";
736 else
737 Out << "<function> ";
738 Out << FD->getNameAsString();
Zhongxing Xuca04ce42009-01-13 06:25:33 +0000739 // Print the parameters.
740 Out << "(";
741 bool PrintComma = false;
742 for (FunctionDecl::param_const_iterator I = FD->param_begin(),
743 E = FD->param_end(); I != E; ++I) {
744 if (PrintComma)
745 Out << ", ";
746 else
747 PrintComma = true;
748 Out << (*I)->getNameAsString();
749 }
750 Out << ")";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000751 break;
752 }
753 case Decl::CXXMethod: {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000754 const CXXMethodDecl* D = cast<CXXMethodDecl>(DC);
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000755 if (D->isOutOfLineDefinition())
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000756 Out << "[c++ method] ";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000757 else if (D->isImplicit())
758 Out << "(c++ method) ";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000759 else
760 Out << "<c++ method> ";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000761 Out << D->getNameAsString();
Zhongxing Xuca04ce42009-01-13 06:25:33 +0000762 // Print the parameters.
763 Out << "(";
764 bool PrintComma = false;
765 for (FunctionDecl::param_const_iterator I = D->param_begin(),
766 E = D->param_end(); I != E; ++I) {
767 if (PrintComma)
768 Out << ", ";
769 else
770 PrintComma = true;
771 Out << (*I)->getNameAsString();
772 }
773 Out << ")";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000774
775 // Check the semantic DeclContext.
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000776 const DeclContext* SemaDC = D->getDeclContext();
777 const DeclContext* LexicalDC = D->getLexicalDeclContext();
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000778 if (SemaDC != LexicalDC)
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000779 Out << " [[" << SemaDC << "]]";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000780
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000781 break;
782 }
783 case Decl::CXXConstructor: {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000784 const CXXConstructorDecl* D = cast<CXXConstructorDecl>(DC);
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000785 if (D->isOutOfLineDefinition())
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000786 Out << "[c++ ctor] ";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000787 else if (D->isImplicit())
788 Out << "(c++ ctor) ";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000789 else
790 Out << "<c++ ctor> ";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000791 Out << D->getNameAsString();
Zhongxing Xuca04ce42009-01-13 06:25:33 +0000792 // Print the parameters.
793 Out << "(";
794 bool PrintComma = false;
795 for (FunctionDecl::param_const_iterator I = D->param_begin(),
796 E = D->param_end(); I != E; ++I) {
797 if (PrintComma)
798 Out << ", ";
799 else
800 PrintComma = true;
801 Out << (*I)->getNameAsString();
802 }
803 Out << ")";
804
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000805 // Check the semantic DC.
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000806 const DeclContext* SemaDC = D->getDeclContext();
807 const DeclContext* LexicalDC = D->getLexicalDeclContext();
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000808 if (SemaDC != LexicalDC)
809 Out << " [[" << SemaDC << "]]";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000810 break;
811 }
812 case Decl::CXXDestructor: {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000813 const CXXDestructorDecl* D = cast<CXXDestructorDecl>(DC);
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000814 if (D->isOutOfLineDefinition())
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000815 Out << "[c++ dtor] ";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000816 else if (D->isImplicit())
817 Out << "(c++ dtor) ";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000818 else
819 Out << "<c++ dtor> ";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000820 Out << D->getNameAsString();
821 // Check the semantic DC.
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000822 const DeclContext* SemaDC = D->getDeclContext();
823 const DeclContext* LexicalDC = D->getLexicalDeclContext();
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000824 if (SemaDC != LexicalDC)
825 Out << " [[" << SemaDC << "]]";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000826 break;
827 }
828 case Decl::CXXConversion: {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000829 const CXXConversionDecl* D = cast<CXXConversionDecl>(DC);
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000830 if (D->isOutOfLineDefinition())
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000831 Out << "[c++ conversion] ";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000832 else if (D->isImplicit())
833 Out << "(c++ conversion) ";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000834 else
835 Out << "<c++ conversion> ";
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000836 Out << D->getNameAsString();
837 // Check the semantic DC.
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000838 const DeclContext* SemaDC = D->getDeclContext();
839 const DeclContext* LexicalDC = D->getLexicalDeclContext();
Zhongxing Xu2a3eb0e2009-01-13 03:26:38 +0000840 if (SemaDC != LexicalDC)
841 Out << " [[" << SemaDC << "]]";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000842 break;
843 }
844
845 default:
846 assert(0 && "a decl that inherits DeclContext isn't handled");
847 }
848
849 Out << "\n";
850
851 // Print decls in the DeclContext.
852 for (DeclContext::decl_iterator I = DC->decls_begin(), E = DC->decls_end();
853 I != E; ++I) {
854 for (unsigned i = 0; i < Indentation; ++i)
Mike Stump071e4da2009-02-10 20:16:46 +0000855 Out << " ";
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000856
857 Decl::Kind DK = I->getKind();
858 switch (DK) {
859 case Decl::Namespace:
860 case Decl::Enum:
861 case Decl::Record:
862 case Decl::CXXRecord:
863 case Decl::ObjCMethod:
864 case Decl::ObjCInterface:
865 case Decl::ObjCCategory:
866 case Decl::ObjCProtocol:
867 case Decl::ObjCImplementation:
868 case Decl::ObjCCategoryImpl:
869 case Decl::LinkageSpec:
870 case Decl::Block:
871 case Decl::Function:
872 case Decl::CXXMethod:
873 case Decl::CXXConstructor:
874 case Decl::CXXDestructor:
875 case Decl::CXXConversion:
876 {
Argyrios Kyrtzidis7ad5bf32009-02-16 14:29:59 +0000877 DeclContext* DC = cast<DeclContext>(*I);
Mike Stump071e4da2009-02-10 20:16:46 +0000878 PrintDeclContext(DC, Indentation+2);
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000879 break;
880 }
881 case Decl::Field: {
882 FieldDecl* FD = cast<FieldDecl>(*I);
883 Out << "<field> " << FD->getNameAsString() << "\n";
884 break;
885 }
886 case Decl::Typedef: {
887 TypedefDecl* TD = cast<TypedefDecl>(*I);
888 Out << "<typedef> " << TD->getNameAsString() << "\n";
889 break;
890 }
891 case Decl::EnumConstant: {
892 EnumConstantDecl* ECD = cast<EnumConstantDecl>(*I);
893 Out << "<enum constant> " << ECD->getNameAsString() << "\n";
894 break;
895 }
896 case Decl::Var: {
897 VarDecl* VD = cast<VarDecl>(*I);
898 Out << "<var> " << VD->getNameAsString() << "\n";
899 break;
900 }
901 case Decl::ImplicitParam: {
902 ImplicitParamDecl* IPD = cast<ImplicitParamDecl>(*I);
903 Out << "<implicit parameter> " << IPD->getNameAsString() << "\n";
904 break;
905 }
Zhongxing Xu2d75d6f2009-01-13 01:29:24 +0000906 case Decl::ParmVar: {
907 ParmVarDecl* PVD = cast<ParmVarDecl>(*I);
908 Out << "<parameter> " << PVD->getNameAsString() << "\n";
909 break;
910 }
911 case Decl::ObjCProperty: {
912 ObjCPropertyDecl* OPD = cast<ObjCPropertyDecl>(*I);
913 Out << "<objc property> " << OPD->getNameAsString() << "\n";
914 break;
915 }
916 default:
917 fprintf(stderr, "DeclKind: %d\n", DK);
918 assert(0 && "decl unhandled");
919 }
920 }
921}
922
923}
924
925ASTConsumer *clang::CreateDeclContextPrinter() {
926 return new DeclContextPrinter();
927}
928
929//===----------------------------------------------------------------------===//
Ted Kremenek7cae2f62008-10-23 23:36:29 +0000930/// InheritanceViewer - C++ Inheritance Visualization
931
932namespace {
933class InheritanceViewer : public ASTConsumer {
934 const std::string clsname;
935public:
936 InheritanceViewer(const std::string& cname) : clsname(cname) {}
937
938 void HandleTranslationUnit(TranslationUnit& TU) {
939 ASTContext& C = TU.getContext();
940 for (ASTContext::type_iterator I=C.types_begin(),E=C.types_end(); I!=E; ++I)
Douglas Gregorc1efaec2009-02-28 01:32:25 +0000941 if (RecordType *T = dyn_cast<RecordType>(*I)) {
942 if (CXXRecordDecl *D = dyn_cast<CXXRecordDecl>(T->getDecl())) {
943 // FIXME: This lookup needs to be generalized to handle namespaces and
944 // (when we support them) templates.
945 if (D->getNameAsString() == clsname) {
946 D->viewInheritance(C);
947 }
Ted Kremenek7cae2f62008-10-23 23:36:29 +0000948 }
949 }
950 }
951};
952}
953
954ASTConsumer *clang::CreateInheritanceViewer(const std::string& clsname) {
955 return new InheritanceViewer(clsname);
956}
957
958//===----------------------------------------------------------------------===//
Ted Kremeneka1fa3a12007-12-13 00:37:31 +0000959// AST Serializer
960
961namespace {
Ted Kremenekf06c9282007-12-19 23:49:37 +0000962
963class ASTSerializer : public ASTConsumer {
964protected:
Nico Weberdae86962008-08-09 18:32:11 +0000965 Diagnostic& Diags;
Ted Kremenekc1e9dea2008-04-23 16:25:39 +0000966
Ted Kremenekf06c9282007-12-19 23:49:37 +0000967public:
Nico Weberbe1eb5c2008-08-10 19:20:05 +0000968 ASTSerializer(Diagnostic& diags) : Diags(diags) {}
Ted Kremenekf06c9282007-12-19 23:49:37 +0000969};
Eli Friedmand8a65c12008-06-09 20:02:51 +0000970
Ted Kremenekf06c9282007-12-19 23:49:37 +0000971class SingleFileSerializer : public ASTSerializer {
972 const llvm::sys::Path FName;
973public:
Nico Weberdae86962008-08-09 18:32:11 +0000974 SingleFileSerializer(const llvm::sys::Path& F, Diagnostic& diags)
975 : ASTSerializer(diags), FName(F) {}
Ted Kremenekf06c9282007-12-19 23:49:37 +0000976
Nico Weberbe1eb5c2008-08-10 19:20:05 +0000977 virtual void HandleTranslationUnit(TranslationUnit& TU) {
Nico Weberdae86962008-08-09 18:32:11 +0000978 if (Diags.hasErrorOccurred())
979 return;
Chris Lattner80a03332009-03-28 03:53:02 +0000980
981 // Reserve 256K for bitstream buffer.
982 std::vector<unsigned char> Buffer;
983 Buffer.reserve(256*1024);
984
Chris Lattnerd2fa6752009-03-28 03:56:54 +0000985 EmitASTBitcodeBuffer(TU.getContext(), Buffer);
Chris Lattner80a03332009-03-28 03:53:02 +0000986
987 // Write the bits to disk.
988 if (FILE* fp = fopen(FName.c_str(),"wb")) {
989 fwrite((char*)&Buffer.front(), sizeof(char), Buffer.size(), fp);
990 fclose(fp);
991 }
Ted Kremenekf06c9282007-12-19 23:49:37 +0000992 }
993};
994
995class BuildSerializer : public ASTSerializer {
996 llvm::sys::Path EmitDir;
997public:
Nico Weberdae86962008-08-09 18:32:11 +0000998 BuildSerializer(const llvm::sys::Path& dir, Diagnostic& diags)
999 : ASTSerializer(diags), EmitDir(dir) {}
Ted Kremenekf06c9282007-12-19 23:49:37 +00001000
Nico Weberbe1eb5c2008-08-10 19:20:05 +00001001 virtual void HandleTranslationUnit(TranslationUnit& TU) {
1002 if (Diags.hasErrorOccurred())
Ted Kremenekc1e9dea2008-04-23 16:25:39 +00001003 return;
1004
Nico Weberbe1eb5c2008-08-10 19:20:05 +00001005 SourceManager& SourceMgr = TU.getContext().getSourceManager();
Chris Lattner2b2453a2009-01-17 06:22:33 +00001006 FileID ID = SourceMgr.getMainFileID();
1007 assert(!ID.isInvalid() && "MainFileID not set!");
Ted Kremenek54117722007-12-20 00:34:58 +00001008 const FileEntry* FE = SourceMgr.getFileEntryForID(ID);
Chris Lattner2b2453a2009-01-17 06:22:33 +00001009 assert(FE && "No FileEntry for main file.");
Ted Kremenek54117722007-12-20 00:34:58 +00001010
1011 // FIXME: This is not portable to Windows.
1012 // FIXME: This logic should probably be moved elsewhere later.
1013
Ted Kremenekee533642007-12-20 19:47:16 +00001014 llvm::sys::Path FName(EmitDir);
Ted Kremenek54117722007-12-20 00:34:58 +00001015
1016 std::vector<char> buf;
1017 buf.reserve(strlen(FE->getName())+100);
1018
Mike Stump2ace9282009-03-07 18:35:41 +00001019 sprintf(&buf[0], "dev_%llx", (unsigned long long) FE->getDevice());
Ted Kremenekee533642007-12-20 19:47:16 +00001020 FName.appendComponent(&buf[0]);
1021 FName.createDirectoryOnDisk(true);
1022 if (!FName.canWrite() || !FName.isDirectory()) {
Ted Kremenek54117722007-12-20 00:34:58 +00001023 assert (false && "Could not create 'device' serialization directory.");
1024 return;
1025 }
Ted Kremenekee533642007-12-20 19:47:16 +00001026
Mike Stump2ace9282009-03-07 18:35:41 +00001027 sprintf(&buf[0], "%s-%llX.ast", FE->getName(),
1028 (unsigned long long) FE->getInode());
Ted Kremenekee533642007-12-20 19:47:16 +00001029 FName.appendComponent(&buf[0]);
Chris Lattner80a03332009-03-28 03:53:02 +00001030
1031
1032 // Reserve 256K for bitstream buffer.
1033 std::vector<unsigned char> Buffer;
1034 Buffer.reserve(256*1024);
1035
Chris Lattnerd2fa6752009-03-28 03:56:54 +00001036 EmitASTBitcodeBuffer(TU.getContext(), Buffer);
Chris Lattner80a03332009-03-28 03:53:02 +00001037
1038 // Write the bits to disk.
1039 if (FILE* fp = fopen(FName.c_str(),"wb")) {
1040 fwrite((char*)&Buffer.front(), sizeof(char), Buffer.size(), fp);
1041 fclose(fp);
1042 }
Ted Kremenek54117722007-12-20 00:34:58 +00001043
Ted Kremenekee533642007-12-20 19:47:16 +00001044 // Now emit the sources.
1045
Ted Kremenek54117722007-12-20 00:34:58 +00001046 }
Ted Kremenekf06c9282007-12-19 23:49:37 +00001047};
1048
1049
Ted Kremeneka1fa3a12007-12-13 00:37:31 +00001050} // end anonymous namespace
1051
1052
Ted Kremenekfdfc1982007-12-19 22:24:34 +00001053ASTConsumer* clang::CreateASTSerializer(const std::string& InFile,
Ted Kremenekf06c9282007-12-19 23:49:37 +00001054 const std::string& OutputFile,
Ted Kremeneke7d07d12008-06-04 15:55:15 +00001055 Diagnostic &Diags) {
Ted Kremenek3910c7c2007-12-19 17:25:59 +00001056
Ted Kremenekf06c9282007-12-19 23:49:37 +00001057 if (OutputFile.size()) {
Ted Kremenek54117722007-12-20 00:34:58 +00001058 if (InFile == "-") {
1059 llvm::cerr <<
1060 "error: Cannot use --serialize with -o for source read from STDIN.\n";
1061 return NULL;
1062 }
1063
Ted Kremenekf06c9282007-12-19 23:49:37 +00001064 // The user specified an AST-emission directory. Determine if the path
1065 // is absolute.
1066 llvm::sys::Path EmitDir(OutputFile);
1067
1068 if (!EmitDir.isAbsolute()) {
1069 llvm::cerr <<
1070 "error: Output directory for --serialize must be an absolute path.\n";
1071
1072 return NULL;
1073 }
1074
1075 // Create the directory if it does not exist.
1076 EmitDir.createDirectoryOnDisk(true);
1077 if (!EmitDir.canWrite() || !EmitDir.isDirectory()) {
1078 llvm::cerr <<
1079 "error: Could not create output directory for --serialize.\n";
1080
1081 return NULL;
1082 }
1083
Ted Kremenek54117722007-12-20 00:34:58 +00001084 // FIXME: We should probably only allow using BuildSerializer when
1085 // the ASTs come from parsed source files, and not from .ast files.
Nico Weberdae86962008-08-09 18:32:11 +00001086 return new BuildSerializer(EmitDir, Diags);
Ted Kremenekf06c9282007-12-19 23:49:37 +00001087 }
1088
1089 // The user did not specify an output directory for serialized ASTs.
1090 // Serialize the translation to a single file whose name is the same
1091 // as the input file with the ".ast" extension appended.
Ted Kremenek63ea8632007-12-19 19:27:38 +00001092
Ted Kremenekf06c9282007-12-19 23:49:37 +00001093 llvm::sys::Path FName(InFile.c_str());
Ted Kremenek54117722007-12-20 00:34:58 +00001094 FName.appendSuffix("ast");
Nico Weberdae86962008-08-09 18:32:11 +00001095 return new SingleFileSerializer(FName, Diags);
Ted Kremeneka1fa3a12007-12-13 00:37:31 +00001096}