blob: d417fbb7e8a2757059a45c74f1a206b0ae030771 [file] [log] [blame]
Douglas Gregor996677c2009-05-30 00:08:05 +00001//===--- DeclPrinter.cpp - Printing implementation for Decl ASTs ----------===//
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 Decl::dump method, which pretty print the
11// AST back out to C/Objective-C/C++/Objective-C++ code.
12//
13//===----------------------------------------------------------------------===//
14#include "clang/AST/ASTContext.h"
15#include "clang/AST/DeclVisitor.h"
16#include "clang/AST/Decl.h"
17#include "clang/AST/DeclCXX.h"
18#include "clang/AST/DeclObjC.h"
19#include "clang/AST/Expr.h"
20#include "clang/AST/PrettyPrinter.h"
21#include "llvm/Support/Compiler.h"
22#include "llvm/Support/Streams.h"
23#include "llvm/Support/Format.h"
24#include "llvm/Support/raw_ostream.h"
25using namespace clang;
26
27namespace {
28 class VISIBILITY_HIDDEN DeclPrinter : public DeclVisitor<DeclPrinter> {
29 llvm::raw_ostream &Out;
30 ASTContext &Context;
31 PrintingPolicy Policy;
32 unsigned Indentation;
33
34 llvm::raw_ostream& Indent();
Eli Friedmand73364a2009-05-30 04:20:30 +000035 void ProcessDeclGroup(llvm::SmallVectorImpl<Decl*>& Decls);
Douglas Gregor996677c2009-05-30 00:08:05 +000036
37 public:
38 DeclPrinter(llvm::raw_ostream &Out, ASTContext &Context,
39 const PrintingPolicy &Policy,
40 unsigned Indentation = 0)
41 : Out(Out), Context(Context), Policy(Policy), Indentation(Indentation) { }
42
43 void VisitDeclContext(DeclContext *DC, bool Indent = true);
44
45 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
46 void VisitTypedefDecl(TypedefDecl *D);
47 void VisitEnumDecl(EnumDecl *D);
48 void VisitRecordDecl(RecordDecl *D);
49 void VisitEnumConstantDecl(EnumConstantDecl *D);
50 void VisitFunctionDecl(FunctionDecl *D);
51 void VisitFieldDecl(FieldDecl *D);
52 void VisitVarDecl(VarDecl *D);
53 void VisitParmVarDecl(ParmVarDecl *D);
Douglas Gregor1d27d692009-05-30 06:31:56 +000054 void VisitOriginalParmVarDecl(OriginalParmVarDecl *D);
Douglas Gregor996677c2009-05-30 00:08:05 +000055 void VisitFileScopeAsmDecl(FileScopeAsmDecl *D);
Douglas Gregor1d27d692009-05-30 06:31:56 +000056 void VisitOverloadedFunctionDecl(OverloadedFunctionDecl *D);
Douglas Gregor6185ec02009-05-30 06:58:37 +000057 void VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor1d27d692009-05-30 06:31:56 +000058 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
Douglas Gregor8d8ddca2009-05-30 06:48:27 +000059 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Douglas Gregor6185ec02009-05-30 06:58:37 +000060 void VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregor996677c2009-05-30 00:08:05 +000061 void VisitLinkageSpecDecl(LinkageSpecDecl *D);
62 void VisitTemplateDecl(TemplateDecl *D);
Douglas Gregor996677c2009-05-30 00:08:05 +000063 void VisitObjCMethodDecl(ObjCMethodDecl *D);
Douglas Gregor1d27d692009-05-30 06:31:56 +000064 void VisitObjCClassDecl(ObjCClassDecl *D);
Douglas Gregor996677c2009-05-30 00:08:05 +000065 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
66 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
67 void VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
68 void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
69 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
70 void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
71 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
72 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
73 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
74 };
75}
76
Argiris Kirtzidis9a6fb962009-06-30 02:35:04 +000077void Decl::print(llvm::raw_ostream &Out, unsigned Indentation) {
78 print(Out, getASTContext().PrintingPolicy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +000079}
80
Argiris Kirtzidis9a6fb962009-06-30 02:35:04 +000081void Decl::print(llvm::raw_ostream &Out, const PrintingPolicy &Policy,
82 unsigned Indentation) {
83 DeclPrinter Printer(Out, getASTContext(), Policy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +000084 Printer.Visit(this);
85}
86
Eli Friedmand73364a2009-05-30 04:20:30 +000087static QualType GetBaseType(QualType T) {
88 // FIXME: This should be on the Type class!
89 QualType BaseType = T;
90 while (!BaseType->isSpecifierType()) {
91 if (isa<TypedefType>(BaseType))
92 break;
93 else if (const PointerType* PTy = BaseType->getAsPointerType())
94 BaseType = PTy->getPointeeType();
95 else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
96 BaseType = ATy->getElementType();
97 else if (const FunctionType* FTy = BaseType->getAsFunctionType())
98 BaseType = FTy->getResultType();
Douglas Gregor6b9f4262009-07-01 23:58:14 +000099 else if (const VectorType *VTy = BaseType->getAsVectorType())
100 BaseType = VTy->getElementType();
Eli Friedmand73364a2009-05-30 04:20:30 +0000101 else
102 assert(0 && "Unknown declarator!");
103 }
104 return BaseType;
105}
106
107static QualType getDeclType(Decl* D) {
108 if (TypedefDecl* TDD = dyn_cast<TypedefDecl>(D))
109 return TDD->getUnderlyingType();
110 if (ValueDecl* VD = dyn_cast<ValueDecl>(D))
111 return VD->getType();
112 return QualType();
113}
114
115void Decl::printGroup(Decl** Begin, unsigned NumDecls,
Argiris Kirtzidis9a6fb962009-06-30 02:35:04 +0000116 llvm::raw_ostream &Out, const PrintingPolicy &Policy,
Eli Friedmand73364a2009-05-30 04:20:30 +0000117 unsigned Indentation) {
118 if (NumDecls == 1) {
Argiris Kirtzidis9a6fb962009-06-30 02:35:04 +0000119 (*Begin)->print(Out, Policy, Indentation);
Eli Friedmand73364a2009-05-30 04:20:30 +0000120 return;
121 }
122
123 Decl** End = Begin + NumDecls;
124 TagDecl* TD = dyn_cast<TagDecl>(*Begin);
125 if (TD)
126 ++Begin;
127
128 PrintingPolicy SubPolicy(Policy);
129 if (TD && TD->isDefinition()) {
Argiris Kirtzidis9a6fb962009-06-30 02:35:04 +0000130 TD->print(Out, Policy, Indentation);
Eli Friedmand73364a2009-05-30 04:20:30 +0000131 Out << " ";
132 SubPolicy.SuppressTag = true;
133 }
134
135 bool isFirst = true;
136 for ( ; Begin != End; ++Begin) {
137 if (isFirst) {
138 SubPolicy.SuppressSpecifiers = false;
139 isFirst = false;
140 } else {
141 if (!isFirst) Out << ", ";
142 SubPolicy.SuppressSpecifiers = true;
143 }
144
Argiris Kirtzidis9a6fb962009-06-30 02:35:04 +0000145 (*Begin)->print(Out, SubPolicy, Indentation);
Eli Friedmand73364a2009-05-30 04:20:30 +0000146 }
147}
148
Argiris Kirtzidis9a6fb962009-06-30 02:35:04 +0000149void Decl::dump() {
150 print(llvm::errs());
Douglas Gregor996677c2009-05-30 00:08:05 +0000151}
152
153llvm::raw_ostream& DeclPrinter::Indent() {
154 for (unsigned i = 0; i < Indentation; ++i)
155 Out << " ";
156 return Out;
157}
158
Eli Friedmand73364a2009-05-30 04:20:30 +0000159void DeclPrinter::ProcessDeclGroup(llvm::SmallVectorImpl<Decl*>& Decls) {
160 this->Indent();
Argiris Kirtzidis9a6fb962009-06-30 02:35:04 +0000161 Decl::printGroup(Decls.data(), Decls.size(), Out, Policy, Indentation);
Eli Friedmand73364a2009-05-30 04:20:30 +0000162 Out << ";\n";
163 Decls.clear();
164
165}
166
Douglas Gregor996677c2009-05-30 00:08:05 +0000167//----------------------------------------------------------------------------
168// Common C declarations
169//----------------------------------------------------------------------------
170
171void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
172 if (Indent)
173 Indentation += Policy.Indentation;
174
Eli Friedmand73364a2009-05-30 04:20:30 +0000175 llvm::SmallVector<Decl*, 2> Decls;
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000176 for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end();
Douglas Gregor996677c2009-05-30 00:08:05 +0000177 D != DEnd; ++D) {
Eli Friedman4bdae722009-05-30 05:03:24 +0000178 if (!Policy.Dump) {
179 // Skip over implicit declarations in pretty-printing mode.
180 if (D->isImplicit()) continue;
Eli Friedman68ff4682009-05-30 06:35:22 +0000181 // FIXME: Ugly hack so we don't pretty-print the builtin declaration
182 // of __builtin_va_list. There should be some other way to check that.
183 if (isa<NamedDecl>(*D) && cast<NamedDecl>(*D)->getNameAsString() ==
184 "__builtin_va_list")
185 continue;
Eli Friedman4bdae722009-05-30 05:03:24 +0000186 }
187
Eli Friedmand73364a2009-05-30 04:20:30 +0000188 // The next bits of code handles stuff like "struct {int x;} a,b"; we're
189 // forced to merge the declarations because there's no other way to
190 // refer to the struct in question. This limited merging is safe without
191 // a bunch of other checks because it only merges declarations directly
192 // referring to the tag, not typedefs.
193 //
194 // Check whether the current declaration should be grouped with a previous
195 // unnamed struct.
196 QualType CurDeclType = getDeclType(*D);
197 if (!Decls.empty() && !CurDeclType.isNull()) {
198 QualType BaseType = GetBaseType(CurDeclType);
199 if (!BaseType.isNull() && isa<TagType>(BaseType) &&
200 cast<TagType>(BaseType)->getDecl() == Decls[0]) {
201 Decls.push_back(*D);
202 continue;
203 }
204 }
205
206 // If we have a merged group waiting to be handled, handle it now.
207 if (!Decls.empty())
208 ProcessDeclGroup(Decls);
209
210 // If the current declaration is an unnamed tag type, save it
211 // so we can merge it with the subsequent declaration(s) using it.
212 if (isa<TagDecl>(*D) && !cast<TagDecl>(*D)->getIdentifier()) {
213 Decls.push_back(*D);
214 continue;
215 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000216 this->Indent();
217 Visit(*D);
218
219 // FIXME: Need to be able to tell the DeclPrinter when
220 const char *Terminator = 0;
221 if (isa<FunctionDecl>(*D) &&
222 cast<FunctionDecl>(*D)->isThisDeclarationADefinition())
223 Terminator = 0;
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000224 else if (isa<ObjCMethodDecl>(*D) && cast<ObjCMethodDecl>(*D)->getBody())
225 Terminator = 0;
226 else if (isa<NamespaceDecl>(*D) || isa<LinkageSpecDecl>(*D) ||
227 isa<ObjCImplementationDecl>(*D) ||
228 isa<ObjCInterfaceDecl>(*D) ||
229 isa<ObjCProtocolDecl>(*D) ||
230 isa<ObjCCategoryImplDecl>(*D) ||
231 isa<ObjCCategoryDecl>(*D))
Douglas Gregor996677c2009-05-30 00:08:05 +0000232 Terminator = 0;
233 else if (isa<EnumConstantDecl>(*D)) {
234 DeclContext::decl_iterator Next = D;
235 ++Next;
236 if (Next != DEnd)
237 Terminator = ",";
238 } else
239 Terminator = ";";
240
241 if (Terminator)
242 Out << Terminator;
243 Out << "\n";
244 }
245
Eli Friedmand73364a2009-05-30 04:20:30 +0000246 if (!Decls.empty())
247 ProcessDeclGroup(Decls);
248
Douglas Gregor996677c2009-05-30 00:08:05 +0000249 if (Indent)
250 Indentation -= Policy.Indentation;
251}
252
253void DeclPrinter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
254 VisitDeclContext(D, false);
255}
256
257void DeclPrinter::VisitTypedefDecl(TypedefDecl *D) {
258 std::string S = D->getNameAsString();
259 D->getUnderlyingType().getAsStringInternal(S, Policy);
Eli Friedmand73364a2009-05-30 04:20:30 +0000260 if (!Policy.SuppressSpecifiers)
261 Out << "typedef ";
262 Out << S;
Douglas Gregor996677c2009-05-30 00:08:05 +0000263}
264
265void DeclPrinter::VisitEnumDecl(EnumDecl *D) {
266 Out << "enum " << D->getNameAsString() << " {\n";
267 VisitDeclContext(D);
268 Indent() << "}";
269}
270
271void DeclPrinter::VisitRecordDecl(RecordDecl *D) {
Douglas Gregor996677c2009-05-30 00:08:05 +0000272 Out << D->getKindName();
Eli Friedmand73364a2009-05-30 04:20:30 +0000273 if (D->getIdentifier()) {
274 Out << " ";
275 Out << D->getNameAsString();
276 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000277
278 if (D->isDefinition()) {
279 Out << " {\n";
280 VisitDeclContext(D);
281 Indent() << "}";
282 }
283}
284
285void DeclPrinter::VisitEnumConstantDecl(EnumConstantDecl *D) {
286 Out << D->getNameAsString();
287 if (Expr *Init = D->getInitExpr()) {
288 Out << " = ";
Eli Friedman4bdae722009-05-30 05:03:24 +0000289 Init->printPretty(Out, Context, 0, Policy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +0000290 }
291}
292
293void DeclPrinter::VisitFunctionDecl(FunctionDecl *D) {
Eli Friedmand73364a2009-05-30 04:20:30 +0000294 if (!Policy.SuppressSpecifiers) {
295 switch (D->getStorageClass()) {
296 case FunctionDecl::None: break;
297 case FunctionDecl::Extern: Out << "extern "; break;
298 case FunctionDecl::Static: Out << "static "; break;
299 case FunctionDecl::PrivateExtern: Out << "__private_extern__ "; break;
300 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000301
Eli Friedmand73364a2009-05-30 04:20:30 +0000302 if (D->isInline()) Out << "inline ";
303 if (D->isVirtualAsWritten()) Out << "virtual ";
304 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000305
Douglas Gregor25133312009-05-30 05:39:39 +0000306 PrintingPolicy SubPolicy(Policy);
307 SubPolicy.SuppressSpecifiers = false;
Douglas Gregor996677c2009-05-30 00:08:05 +0000308 std::string Proto = D->getNameAsString();
309 if (isa<FunctionType>(D->getType().getTypePtr())) {
310 const FunctionType *AFT = D->getType()->getAsFunctionType();
311
312 const FunctionProtoType *FT = 0;
313 if (D->hasWrittenPrototype())
314 FT = dyn_cast<FunctionProtoType>(AFT);
315
316 Proto += "(";
317 if (FT) {
318 llvm::raw_string_ostream POut(Proto);
Douglas Gregor25133312009-05-30 05:39:39 +0000319 DeclPrinter ParamPrinter(POut, Context, SubPolicy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +0000320 for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
321 if (i) POut << ", ";
322 ParamPrinter.VisitParmVarDecl(D->getParamDecl(i));
323 }
324
325 if (FT->isVariadic()) {
326 if (D->getNumParams()) POut << ", ";
327 POut << "...";
328 }
Eli Friedmand73364a2009-05-30 04:20:30 +0000329 } else if (D->isThisDeclarationADefinition() && !D->hasPrototype()) {
330 for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
331 if (i)
332 Proto += ", ";
333 Proto += D->getParamDecl(i)->getNameAsString();
334 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000335 }
336
337 Proto += ")";
Fariborz Jahaniandf0e6782009-07-13 20:18:13 +0000338 if (CXXConstructorDecl *CDecl = dyn_cast<CXXConstructorDecl>(D)) {
339 if (CDecl->getNumBaseOrMemberInitializers() > 0) {
340 Proto += " : ";
341 Out << Proto;
342 Proto.clear();
343 for (CXXConstructorDecl::init_const_iterator B = CDecl->init_begin(),
344 E = CDecl->init_end();
345 B != E; ++B) {
346 CXXBaseOrMemberInitializer * BMInitializer = (*B);
347 if (B != CDecl->init_begin())
348 Out << ", ";
349 bool hasArguments = (BMInitializer->begin() != BMInitializer->end());
350 if (BMInitializer->isMemberInitializer()) {
351 FieldDecl *FD = BMInitializer->getMember();
352 Out << FD->getNameAsString();
353 }
354 else {
355 const RecordType *RT =
356 BMInitializer->getBaseClass()->getAsRecordType();
357 const CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(RT->getDecl());
358 Out << BaseDecl->getNameAsString();
Fariborz Jahaniandf0e6782009-07-13 20:18:13 +0000359 }
360 if (hasArguments) {
361 Out << "(";
362 for (CXXBaseOrMemberInitializer::arg_const_iterator BE =
363 BMInitializer->begin(), EE = BMInitializer->end();
364 BE != EE; BE++) {
365 if (BE != BMInitializer->begin())
366 Out<< ", ";
367 Expr *Exp = (*BE);
368 Exp->printPretty(Out, Context, 0, Policy, Indentation);
369 }
370 Out << ")";
Fariborz Jahanianc0562732009-07-13 23:31:10 +0000371 } else
372 Out << "()";
Fariborz Jahaniandf0e6782009-07-13 20:18:13 +0000373 }
374 }
375 }
376 else
377 AFT->getResultType().getAsStringInternal(Proto, Policy);
Douglas Gregor996677c2009-05-30 00:08:05 +0000378 } else {
379 D->getType().getAsStringInternal(Proto, Policy);
380 }
381
382 Out << Proto;
383
384 if (D->isPure())
385 Out << " = 0";
386 else if (D->isDeleted())
387 Out << " = delete";
388 else if (D->isThisDeclarationADefinition()) {
389 if (!D->hasPrototype() && D->getNumParams()) {
390 // This is a K&R function definition, so we need to print the
391 // parameters.
392 Out << '\n';
Douglas Gregor25133312009-05-30 05:39:39 +0000393 DeclPrinter ParamPrinter(Out, Context, SubPolicy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +0000394 Indentation += Policy.Indentation;
395 for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
396 Indent();
Douglas Gregor25133312009-05-30 05:39:39 +0000397 ParamPrinter.VisitParmVarDecl(D->getParamDecl(i));
Douglas Gregor996677c2009-05-30 00:08:05 +0000398 Out << ";\n";
399 }
400 Indentation -= Policy.Indentation;
401 } else
402 Out << ' ';
403
Argiris Kirtzidisccb9efe2009-06-30 02:35:26 +0000404 D->getBody()->printPretty(Out, Context, 0, SubPolicy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +0000405 Out << '\n';
406 }
407}
408
409void DeclPrinter::VisitFieldDecl(FieldDecl *D) {
Eli Friedmand73364a2009-05-30 04:20:30 +0000410 if (!Policy.SuppressSpecifiers && D->isMutable())
Douglas Gregor996677c2009-05-30 00:08:05 +0000411 Out << "mutable ";
412
413 std::string Name = D->getNameAsString();
414 D->getType().getAsStringInternal(Name, Policy);
415 Out << Name;
416
417 if (D->isBitField()) {
418 Out << " : ";
Eli Friedman4bdae722009-05-30 05:03:24 +0000419 D->getBitWidth()->printPretty(Out, Context, 0, Policy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +0000420 }
421}
422
423void DeclPrinter::VisitVarDecl(VarDecl *D) {
Eli Friedmand73364a2009-05-30 04:20:30 +0000424 if (!Policy.SuppressSpecifiers && D->getStorageClass() != VarDecl::None)
Douglas Gregor996677c2009-05-30 00:08:05 +0000425 Out << VarDecl::getStorageClassSpecifierString(D->getStorageClass()) << " ";
426
Eli Friedmand73364a2009-05-30 04:20:30 +0000427 if (!Policy.SuppressSpecifiers && D->isThreadSpecified())
Douglas Gregor996677c2009-05-30 00:08:05 +0000428 Out << "__thread ";
429
430 std::string Name = D->getNameAsString();
431 QualType T = D->getType();
432 if (OriginalParmVarDecl *Parm = dyn_cast<OriginalParmVarDecl>(D))
433 T = Parm->getOriginalType();
434 T.getAsStringInternal(Name, Policy);
435 Out << Name;
436 if (D->getInit()) {
437 if (D->hasCXXDirectInitializer())
438 Out << "(";
439 else
440 Out << " = ";
Eli Friedman4bdae722009-05-30 05:03:24 +0000441 D->getInit()->printPretty(Out, Context, 0, Policy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +0000442 if (D->hasCXXDirectInitializer())
443 Out << ")";
444 }
445}
446
447void DeclPrinter::VisitParmVarDecl(ParmVarDecl *D) {
448 VisitVarDecl(D);
449}
450
Douglas Gregor1d27d692009-05-30 06:31:56 +0000451void DeclPrinter::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) {
452 VisitVarDecl(D);
453}
454
Douglas Gregor996677c2009-05-30 00:08:05 +0000455void DeclPrinter::VisitFileScopeAsmDecl(FileScopeAsmDecl *D) {
456 Out << "__asm (";
Eli Friedman4bdae722009-05-30 05:03:24 +0000457 D->getAsmString()->printPretty(Out, Context, 0, Policy, Indentation);
Douglas Gregor996677c2009-05-30 00:08:05 +0000458 Out << ")";
459}
460
461//----------------------------------------------------------------------------
462// C++ declarations
463//----------------------------------------------------------------------------
Douglas Gregor1d27d692009-05-30 06:31:56 +0000464void DeclPrinter::VisitOverloadedFunctionDecl(OverloadedFunctionDecl *D) {
465 assert(false &&
466 "OverloadedFunctionDecls aren't really decls and are never printed");
467}
468
Douglas Gregor6185ec02009-05-30 06:58:37 +0000469void DeclPrinter::VisitNamespaceDecl(NamespaceDecl *D) {
470 Out << "namespace " << D->getNameAsString() << " {\n";
471 VisitDeclContext(D);
472 Indent() << "}";
473}
474
Douglas Gregor1d27d692009-05-30 06:31:56 +0000475void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
476 Out << "using namespace ";
477 if (D->getQualifier())
478 D->getQualifier()->print(Out, Policy);
479 Out << D->getNominatedNamespace()->getNameAsString();
480}
481
Douglas Gregor8d8ddca2009-05-30 06:48:27 +0000482void DeclPrinter::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
483 Out << "namespace " << D->getNameAsString() << " = ";
484 if (D->getQualifier())
485 D->getQualifier()->print(Out, Policy);
486 Out << D->getAliasedNamespace()->getNameAsString();
487}
488
Douglas Gregor6185ec02009-05-30 06:58:37 +0000489void DeclPrinter::VisitCXXRecordDecl(CXXRecordDecl *D) {
490 Out << D->getKindName();
491 if (D->getIdentifier()) {
492 Out << " ";
493 Out << D->getNameAsString();
494 }
495
496 if (D->isDefinition()) {
497 // Print the base classes
498 if (D->getNumBases()) {
499 Out << " : ";
500 for(CXXRecordDecl::base_class_iterator Base = D->bases_begin(),
501 BaseEnd = D->bases_end();
502 Base != BaseEnd; ++Base) {
503 if (Base != D->bases_begin())
504 Out << ", ";
505
506 if (Base->isVirtual())
507 Out << "virtual ";
508
509 switch(Base->getAccessSpecifierAsWritten()) {
510 case AS_none: break;
511 case AS_public: Out << "public "; break;
512 case AS_protected: Out << "protected "; break;
513 case AS_private: Out << " private "; break;
514 }
515
516 Out << Base->getType().getAsString(Policy);
517 }
518 }
519
520 // Print the class definition
Douglas Gregor0af57572009-05-31 07:13:39 +0000521 // FIXME: Doesn't print access specifiers, e.g., "public:"
Douglas Gregor6185ec02009-05-30 06:58:37 +0000522 Out << " {\n";
523 VisitDeclContext(D);
524 Indent() << "}";
525 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000526}
527
528void DeclPrinter::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
529 const char *l;
530 if (D->getLanguage() == LinkageSpecDecl::lang_c)
531 l = "C";
532 else {
533 assert(D->getLanguage() == LinkageSpecDecl::lang_cxx &&
534 "unknown language in linkage specification");
535 l = "C++";
536 }
537
538 Out << "extern \"" << l << "\" ";
539 if (D->hasBraces()) {
540 Out << "{\n";
541 VisitDeclContext(D);
542 Indent() << "}";
543 } else
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000544 Visit(*D->decls_begin());
Douglas Gregor996677c2009-05-30 00:08:05 +0000545}
546
547void DeclPrinter::VisitTemplateDecl(TemplateDecl *D) {
Anders Carlsson56b309a2009-06-04 05:37:43 +0000548 Out << "template <";
549
550 TemplateParameterList *Params = D->getTemplateParameters();
551 for (unsigned i = 0, e = Params->size(); i != e; ++i) {
552 if (i != 0)
553 Out << ", ";
554
555 const Decl *Param = Params->getParam(i);
556 if (const TemplateTypeParmDecl *TTP =
557 dyn_cast<TemplateTypeParmDecl>(Param)) {
558
559 QualType ParamType =
560 Context.getTypeDeclType(const_cast<TemplateTypeParmDecl*>(TTP));
561
562 if (TTP->wasDeclaredWithTypename())
563 Out << "typename ";
564 else
565 Out << "class ";
566
Anders Carlssoneebbf9a2009-06-12 22:23:22 +0000567 if (TTP->isParameterPack())
568 Out << "... ";
569
Anders Carlsson56b309a2009-06-04 05:37:43 +0000570 Out << ParamType.getAsString(Policy);
571
572 if (TTP->hasDefaultArgument()) {
573 Out << " = ";
574 Out << TTP->getDefaultArgument().getAsString(Policy);
575 };
576 } else if (const NonTypeTemplateParmDecl *NTTP =
577 dyn_cast<NonTypeTemplateParmDecl>(Param)) {
578 Out << NTTP->getType().getAsString(Policy);
579
580 if (IdentifierInfo *Name = NTTP->getIdentifier()) {
581 Out << ' ';
582 Out << Name->getName();
583 }
584
585 if (NTTP->hasDefaultArgument()) {
586 Out << " = ";
587 NTTP->getDefaultArgument()->printPretty(Out, Context, 0, Policy,
588 Indentation);
589 }
590 }
591 }
592
593 Out << "> ";
594
Douglas Gregor996677c2009-05-30 00:08:05 +0000595 Visit(D->getTemplatedDecl());
596}
597
598//----------------------------------------------------------------------------
599// Objective-C declarations
600//----------------------------------------------------------------------------
601
602void DeclPrinter::VisitObjCClassDecl(ObjCClassDecl *D) {
603 Out << "@class ";
604 for (ObjCClassDecl::iterator I = D->begin(), E = D->end();
605 I != E; ++I) {
606 if (I != D->begin()) Out << ", ";
607 Out << (*I)->getNameAsString();
608 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000609}
610
611void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
612 if (OMD->isInstanceMethod())
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000613 Out << "- ";
Douglas Gregor996677c2009-05-30 00:08:05 +0000614 else
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000615 Out << "+ ";
Douglas Gregor996677c2009-05-30 00:08:05 +0000616 if (!OMD->getResultType().isNull())
Douglas Gregor6185ec02009-05-30 06:58:37 +0000617 Out << '(' << OMD->getResultType().getAsString(Policy) << ")";
Douglas Gregor996677c2009-05-30 00:08:05 +0000618
619 std::string name = OMD->getSelector().getAsString();
620 std::string::size_type pos, lastPos = 0;
621 for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
622 E = OMD->param_end(); PI != E; ++PI) {
623 // FIXME: selector is missing here!
624 pos = name.find_first_of(":", lastPos);
625 Out << " " << name.substr(lastPos, pos - lastPos);
Douglas Gregor6185ec02009-05-30 06:58:37 +0000626 Out << ":(" << (*PI)->getType().getAsString(Policy) << ")"
Douglas Gregor996677c2009-05-30 00:08:05 +0000627 << (*PI)->getNameAsString();
628 lastPos = pos + 1;
629 }
630
631 if (OMD->param_begin() == OMD->param_end())
632 Out << " " << name;
633
634 if (OMD->isVariadic())
635 Out << ", ...";
636
637 if (OMD->getBody()) {
638 Out << ' ';
Eli Friedman4bdae722009-05-30 05:03:24 +0000639 OMD->getBody()->printPretty(Out, Context, 0, Policy);
Douglas Gregor996677c2009-05-30 00:08:05 +0000640 Out << '\n';
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000641 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000642}
643
644void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) {
645 std::string I = OID->getNameAsString();
646 ObjCInterfaceDecl *SID = OID->getSuperClass();
647
648 if (SID)
649 Out << "@implementation " << I << " : " << SID->getNameAsString();
650 else
651 Out << "@implementation " << I;
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000652 Out << "\n";
653 VisitDeclContext(OID, false);
654 Out << "@end";
Douglas Gregor996677c2009-05-30 00:08:05 +0000655}
656
657void DeclPrinter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *OID) {
658 std::string I = OID->getNameAsString();
659 ObjCInterfaceDecl *SID = OID->getSuperClass();
660
661 if (SID)
662 Out << "@interface " << I << " : " << SID->getNameAsString();
663 else
664 Out << "@interface " << I;
665
666 // Protocols?
667 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
668 if (!Protocols.empty()) {
669 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
670 E = Protocols.end(); I != E; ++I)
671 Out << (I == Protocols.begin() ? '<' : ',') << (*I)->getNameAsString();
672 }
673
674 if (!Protocols.empty())
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000675 Out << "> ";
Douglas Gregor996677c2009-05-30 00:08:05 +0000676
677 if (OID->ivar_size() > 0) {
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000678 Out << "{\n";
679 Indentation += Policy.Indentation;
Douglas Gregor996677c2009-05-30 00:08:05 +0000680 for (ObjCInterfaceDecl::ivar_iterator I = OID->ivar_begin(),
681 E = OID->ivar_end(); I != E; ++I) {
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000682 Indent() << (*I)->getType().getAsString(Policy)
Douglas Gregor996677c2009-05-30 00:08:05 +0000683 << ' ' << (*I)->getNameAsString() << ";\n";
684 }
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000685 Indentation -= Policy.Indentation;
Douglas Gregor996677c2009-05-30 00:08:05 +0000686 Out << "}\n";
687 }
688
689 VisitDeclContext(OID, false);
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000690 Out << "@end";
Douglas Gregor996677c2009-05-30 00:08:05 +0000691 // FIXME: implement the rest...
692}
693
694void DeclPrinter::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D) {
695 Out << "@protocol ";
696 for (ObjCForwardProtocolDecl::protocol_iterator I = D->protocol_begin(),
697 E = D->protocol_end();
698 I != E; ++I) {
699 if (I != D->protocol_begin()) Out << ", ";
700 Out << (*I)->getNameAsString();
701 }
Douglas Gregor996677c2009-05-30 00:08:05 +0000702}
703
704void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
705 Out << "@protocol " << PID->getNameAsString() << '\n';
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000706 VisitDeclContext(PID, false);
707 Out << "@end";
Douglas Gregor996677c2009-05-30 00:08:05 +0000708}
709
710void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
711 Out << "@implementation "
712 << PID->getClassInterface()->getNameAsString()
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000713 << '(' << PID->getNameAsString() << ")\n";
Douglas Gregor996677c2009-05-30 00:08:05 +0000714
715 VisitDeclContext(PID, false);
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000716 Out << "@end";
Douglas Gregor996677c2009-05-30 00:08:05 +0000717 // FIXME: implement the rest...
718}
719
720void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) {
721 Out << "@interface "
722 << PID->getClassInterface()->getNameAsString()
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000723 << '(' << PID->getNameAsString() << ")\n";
Douglas Gregor996677c2009-05-30 00:08:05 +0000724 VisitDeclContext(PID, false);
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000725 Out << "@end";
Douglas Gregor996677c2009-05-30 00:08:05 +0000726
727 // FIXME: implement the rest...
728}
729
730void DeclPrinter::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *AID) {
731 Out << "@compatibility_alias " << AID->getNameAsString()
732 << ' ' << AID->getClassInterface()->getNameAsString() << ";\n";
733}
734
735/// PrintObjCPropertyDecl - print a property declaration.
736///
737void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) {
738 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required)
739 Out << "@required\n";
740 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional)
741 Out << "@optional\n";
742
743 Out << "@property";
744 if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) {
745 bool first = true;
746 Out << " (";
747 if (PDecl->getPropertyAttributes() &
748 ObjCPropertyDecl::OBJC_PR_readonly) {
749 Out << (first ? ' ' : ',') << "readonly";
750 first = false;
751 }
752
753 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
754 Out << (first ? ' ' : ',') << "getter = "
755 << PDecl->getGetterName().getAsString();
756 first = false;
757 }
758 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
759 Out << (first ? ' ' : ',') << "setter = "
760 << PDecl->getSetterName().getAsString();
761 first = false;
762 }
763
764 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) {
765 Out << (first ? ' ' : ',') << "assign";
766 first = false;
767 }
768
769 if (PDecl->getPropertyAttributes() &
770 ObjCPropertyDecl::OBJC_PR_readwrite) {
771 Out << (first ? ' ' : ',') << "readwrite";
772 first = false;
773 }
774
775 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) {
776 Out << (first ? ' ' : ',') << "retain";
777 first = false;
778 }
779
780 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) {
781 Out << (first ? ' ' : ',') << "copy";
782 first = false;
783 }
784
785 if (PDecl->getPropertyAttributes() &
786 ObjCPropertyDecl::OBJC_PR_nonatomic) {
787 Out << (first ? ' ' : ',') << "nonatomic";
788 first = false;
789 }
790 Out << " )";
791 }
792 Out << ' ' << PDecl->getType().getAsString(Policy)
793 << ' ' << PDecl->getNameAsString();
Douglas Gregor996677c2009-05-30 00:08:05 +0000794}
795
796void DeclPrinter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) {
797 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000798 Out << "@synthesize ";
Douglas Gregor996677c2009-05-30 00:08:05 +0000799 else
Douglas Gregor1fa5d0d2009-05-30 00:56:08 +0000800 Out << "@dynamic ";
Douglas Gregor996677c2009-05-30 00:08:05 +0000801 Out << PID->getPropertyDecl()->getNameAsString();
802 if (PID->getPropertyIvarDecl())
803 Out << "=" << PID->getPropertyIvarDecl()->getNameAsString();
Douglas Gregor996677c2009-05-30 00:08:05 +0000804}