blob: 56fc8e19c4f4e31c13dd77b78f551e1e1b862256 [file] [log] [blame]
Douglas Gregor4fe0c8e2009-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"
Douglas Gregor9db7dbb2010-01-31 09:12:51 +000020#include "clang/AST/ExprCXX.h"
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000021#include "clang/AST/PrettyPrinter.h"
Douglas Gregor15de72c2011-12-02 23:23:56 +000022#include "clang/Basic/Module.h"
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000023#include "llvm/Support/raw_ostream.h"
24using namespace clang;
25
26namespace {
Benjamin Kramer770b4a82009-11-28 19:03:38 +000027 class DeclPrinter : public DeclVisitor<DeclPrinter> {
Chris Lattner5f9e2722011-07-23 10:55:15 +000028 raw_ostream &Out;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000029 PrintingPolicy Policy;
30 unsigned Indentation;
Richard Trieu5cb3d692011-07-28 00:19:05 +000031 bool PrintInstantiation;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000032
Chris Lattner5f9e2722011-07-23 10:55:15 +000033 raw_ostream& Indent() { return Indent(Indentation); }
34 raw_ostream& Indent(unsigned Indentation);
35 void ProcessDeclGroup(SmallVectorImpl<Decl*>& Decls);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000036
Anders Carlsson0d592922009-08-28 22:39:52 +000037 void Print(AccessSpecifier AS);
Mike Stump1eb44332009-09-09 15:08:12 +000038
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000039 public:
Richard Smithd1420c62012-08-16 03:56:14 +000040 DeclPrinter(raw_ostream &Out, const PrintingPolicy &Policy,
41 unsigned Indentation = 0, bool PrintInstantiation = false)
42 : Out(Out), Policy(Policy), Indentation(Indentation),
Richard Trieu5cb3d692011-07-28 00:19:05 +000043 PrintInstantiation(PrintInstantiation) { }
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000044
45 void VisitDeclContext(DeclContext *DC, bool Indent = true);
46
47 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
48 void VisitTypedefDecl(TypedefDecl *D);
Richard Smith162e1c12011-04-15 14:24:37 +000049 void VisitTypeAliasDecl(TypeAliasDecl *D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000050 void VisitEnumDecl(EnumDecl *D);
51 void VisitRecordDecl(RecordDecl *D);
52 void VisitEnumConstantDecl(EnumConstantDecl *D);
53 void VisitFunctionDecl(FunctionDecl *D);
54 void VisitFieldDecl(FieldDecl *D);
55 void VisitVarDecl(VarDecl *D);
Chris Lattner57ad3782011-02-17 20:34:02 +000056 void VisitLabelDecl(LabelDecl *D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000057 void VisitParmVarDecl(ParmVarDecl *D);
58 void VisitFileScopeAsmDecl(FileScopeAsmDecl *D);
Douglas Gregor15de72c2011-12-02 23:23:56 +000059 void VisitImportDecl(ImportDecl *D);
Peter Collingbourne28ac87e2011-03-16 18:37:27 +000060 void VisitStaticAssertDecl(StaticAssertDecl *D);
Douglas Gregor59e63572009-05-30 06:58:37 +000061 void VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor8419fa32009-05-30 06:31:56 +000062 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
Douglas Gregor6c9c9402009-05-30 06:48:27 +000063 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Douglas Gregor59e63572009-05-30 06:58:37 +000064 void VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000065 void VisitLinkageSpecDecl(LinkageSpecDecl *D);
Richard Smith98a57862011-04-15 13:38:57 +000066 void VisitTemplateDecl(const TemplateDecl *D);
Richard Trieu5cb3d692011-07-28 00:19:05 +000067 void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
68 void VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000069 void VisitObjCMethodDecl(ObjCMethodDecl *D);
70 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
71 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000072 void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
73 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
74 void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
75 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
76 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
77 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
John McCall7ba107a2009-11-18 02:36:19 +000078 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
79 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
Anders Carlssonf53eaa52009-08-28 19:16:39 +000080 void VisitUsingDecl(UsingDecl *D);
John McCall9488ea12009-11-17 05:59:44 +000081 void VisitUsingShadowDecl(UsingShadowDecl *D);
Richard Trieu5cb3d692011-07-28 00:19:05 +000082
83 void PrintTemplateParameters(const TemplateParameterList *Params,
84 const TemplateArgumentList *Args);
Douglas Gregor1bea8802011-11-19 19:22:57 +000085 void prettyPrintAttributes(Decl *D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000086 };
87}
88
Richard Trieu5cb3d692011-07-28 00:19:05 +000089void Decl::print(raw_ostream &Out, unsigned Indentation,
90 bool PrintInstantiation) const {
Douglas Gregor30c42402011-09-27 22:38:19 +000091 print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000092}
93
Chris Lattner5f9e2722011-07-23 10:55:15 +000094void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy,
Richard Trieu5cb3d692011-07-28 00:19:05 +000095 unsigned Indentation, bool PrintInstantiation) const {
Richard Smithd1420c62012-08-16 03:56:14 +000096 DeclPrinter Printer(Out, Policy, Indentation, PrintInstantiation);
Anders Carlssonf88df862009-09-26 21:58:53 +000097 Printer.Visit(const_cast<Decl*>(this));
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +000098}
99
Eli Friedman42f42c02009-05-30 04:20:30 +0000100static QualType GetBaseType(QualType T) {
101 // FIXME: This should be on the Type class!
102 QualType BaseType = T;
103 while (!BaseType->isSpecifierType()) {
104 if (isa<TypedefType>(BaseType))
105 break;
Ted Kremenek6217b802009-07-29 21:53:49 +0000106 else if (const PointerType* PTy = BaseType->getAs<PointerType>())
Eli Friedman42f42c02009-05-30 04:20:30 +0000107 BaseType = PTy->getPointeeType();
108 else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
109 BaseType = ATy->getElementType();
John McCall183700f2009-09-21 23:43:11 +0000110 else if (const FunctionType* FTy = BaseType->getAs<FunctionType>())
Eli Friedman42f42c02009-05-30 04:20:30 +0000111 BaseType = FTy->getResultType();
John McCall183700f2009-09-21 23:43:11 +0000112 else if (const VectorType *VTy = BaseType->getAs<VectorType>())
Douglas Gregor5068ab62009-07-01 23:58:14 +0000113 BaseType = VTy->getElementType();
Eli Friedman15631b42012-08-08 03:47:15 +0000114 else if (const ReferenceType *RTy = BaseType->getAs<ReferenceType>())
115 BaseType = RTy->getPointeeType();
Eli Friedman42f42c02009-05-30 04:20:30 +0000116 else
David Blaikieb219cfc2011-09-23 05:06:16 +0000117 llvm_unreachable("Unknown declarator!");
Eli Friedman42f42c02009-05-30 04:20:30 +0000118 }
119 return BaseType;
120}
121
122static QualType getDeclType(Decl* D) {
Richard Smith162e1c12011-04-15 14:24:37 +0000123 if (TypedefNameDecl* TDD = dyn_cast<TypedefNameDecl>(D))
Eli Friedman42f42c02009-05-30 04:20:30 +0000124 return TDD->getUnderlyingType();
125 if (ValueDecl* VD = dyn_cast<ValueDecl>(D))
126 return VD->getType();
127 return QualType();
128}
129
130void Decl::printGroup(Decl** Begin, unsigned NumDecls,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000131 raw_ostream &Out, const PrintingPolicy &Policy,
Eli Friedman42f42c02009-05-30 04:20:30 +0000132 unsigned Indentation) {
133 if (NumDecls == 1) {
Argyrios Kyrtzidisf1d60ea2009-06-30 02:35:04 +0000134 (*Begin)->print(Out, Policy, Indentation);
Eli Friedman42f42c02009-05-30 04:20:30 +0000135 return;
136 }
137
138 Decl** End = Begin + NumDecls;
139 TagDecl* TD = dyn_cast<TagDecl>(*Begin);
140 if (TD)
141 ++Begin;
142
143 PrintingPolicy SubPolicy(Policy);
John McCall5e1cdac2011-10-07 06:10:15 +0000144 if (TD && TD->isCompleteDefinition()) {
Argyrios Kyrtzidisf1d60ea2009-06-30 02:35:04 +0000145 TD->print(Out, Policy, Indentation);
Eli Friedman42f42c02009-05-30 04:20:30 +0000146 Out << " ";
147 SubPolicy.SuppressTag = true;
148 }
149
150 bool isFirst = true;
151 for ( ; Begin != End; ++Begin) {
152 if (isFirst) {
153 SubPolicy.SuppressSpecifiers = false;
154 isFirst = false;
155 } else {
156 if (!isFirst) Out << ", ";
157 SubPolicy.SuppressSpecifiers = true;
158 }
159
Argyrios Kyrtzidisf1d60ea2009-06-30 02:35:04 +0000160 (*Begin)->print(Out, SubPolicy, Indentation);
Eli Friedman42f42c02009-05-30 04:20:30 +0000161 }
162}
163
Anders Carlsson84834432009-12-14 00:51:04 +0000164void DeclContext::dumpDeclContext() const {
Anders Carlsson2b7d8dd2009-12-09 17:27:46 +0000165 // Get the translation unit
166 const DeclContext *DC = this;
167 while (!DC->isTranslationUnit())
168 DC = DC->getParent();
169
170 ASTContext &Ctx = cast<TranslationUnitDecl>(DC)->getASTContext();
Richard Smithd1420c62012-08-16 03:56:14 +0000171 DeclPrinter Printer(llvm::errs(), Ctx.getPrintingPolicy(), 0);
Anders Carlsson2b7d8dd2009-12-09 17:27:46 +0000172 Printer.VisitDeclContext(const_cast<DeclContext *>(this), /*Indent=*/false);
173}
174
Benjamin Kramer42c72c22012-08-14 14:50:32 +0000175void Decl::dump() const {
176 dump(llvm::errs());
177}
178
Alexander Kornienkoe34a0522012-07-26 16:01:23 +0000179void Decl::dump(raw_ostream &Out) const {
180 PrintingPolicy Policy = getASTContext().getPrintingPolicy();
Richard Smithd1420c62012-08-16 03:56:14 +0000181 Policy.DumpSourceManager = &getASTContext().getSourceManager();
Alexander Kornienkoe34a0522012-07-26 16:01:23 +0000182 print(Out, Policy, /*Indentation*/ 0, /*PrintInstantiation*/ true);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000183}
184
Chris Lattner5f9e2722011-07-23 10:55:15 +0000185raw_ostream& DeclPrinter::Indent(unsigned Indentation) {
Daniel Dunbar512ce602009-11-21 09:12:06 +0000186 for (unsigned i = 0; i != Indentation; ++i)
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000187 Out << " ";
188 return Out;
189}
190
Douglas Gregor1bea8802011-11-19 19:22:57 +0000191void DeclPrinter::prettyPrintAttributes(Decl *D) {
192 if (D->hasAttrs()) {
193 AttrVec &Attrs = D->getAttrs();
194 for (AttrVec::const_iterator i=Attrs.begin(), e=Attrs.end(); i!=e; ++i) {
Richard Smith0dae7292012-08-16 02:43:29 +0000195 Attr *A = *i;
196 A->printPretty(Out, Policy);
Douglas Gregor1bea8802011-11-19 19:22:57 +0000197 }
198 }
199}
200
Chris Lattner5f9e2722011-07-23 10:55:15 +0000201void DeclPrinter::ProcessDeclGroup(SmallVectorImpl<Decl*>& Decls) {
Eli Friedman42f42c02009-05-30 04:20:30 +0000202 this->Indent();
Argyrios Kyrtzidisf1d60ea2009-06-30 02:35:04 +0000203 Decl::printGroup(Decls.data(), Decls.size(), Out, Policy, Indentation);
Eli Friedman42f42c02009-05-30 04:20:30 +0000204 Out << ";\n";
205 Decls.clear();
206
207}
208
Anders Carlsson0d592922009-08-28 22:39:52 +0000209void DeclPrinter::Print(AccessSpecifier AS) {
210 switch(AS) {
David Blaikieeb2d1f12011-09-23 20:26:49 +0000211 case AS_none: llvm_unreachable("No access specifier!");
Anders Carlsson0d592922009-08-28 22:39:52 +0000212 case AS_public: Out << "public"; break;
213 case AS_protected: Out << "protected"; break;
Abramo Bagnara6206d532010-06-05 05:09:32 +0000214 case AS_private: Out << "private"; break;
Anders Carlsson0d592922009-08-28 22:39:52 +0000215 }
216}
217
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000218//----------------------------------------------------------------------------
219// Common C declarations
220//----------------------------------------------------------------------------
221
222void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
Dmitri Gribenkod1fc82e2012-08-21 17:36:32 +0000223 if (Policy.TerseOutput)
Dmitri Gribenko49795ae2012-08-20 23:39:06 +0000224 return;
225
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000226 if (Indent)
227 Indentation += Policy.Indentation;
228
Chris Lattner5f9e2722011-07-23 10:55:15 +0000229 SmallVector<Decl*, 2> Decls;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000230 for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end();
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000231 D != DEnd; ++D) {
Ted Kremenek2d6c9062010-07-30 00:47:46 +0000232
233 // Don't print ObjCIvarDecls, as they are printed when visiting the
234 // containing ObjCInterfaceDecl.
235 if (isa<ObjCIvarDecl>(*D))
236 continue;
237
Richard Smithd1420c62012-08-16 03:56:14 +0000238 if (!Policy.DumpSourceManager) {
Eli Friedman48d14a22009-05-30 05:03:24 +0000239 // Skip over implicit declarations in pretty-printing mode.
240 if (D->isImplicit()) continue;
Eli Friedman3d4a7c92009-05-30 06:35:22 +0000241 // FIXME: Ugly hack so we don't pretty-print the builtin declaration
Argyrios Kyrtzidis2574f6f2010-06-17 10:52:11 +0000242 // of __builtin_va_list or __[u]int128_t. There should be some other way
243 // to check that.
244 if (NamedDecl *ND = dyn_cast<NamedDecl>(*D)) {
245 if (IdentifierInfo *II = ND->getIdentifier()) {
246 if (II->isStr("__builtin_va_list") ||
247 II->isStr("__int128_t") || II->isStr("__uint128_t"))
248 continue;
249 }
250 }
Eli Friedman48d14a22009-05-30 05:03:24 +0000251 }
252
Eli Friedman42f42c02009-05-30 04:20:30 +0000253 // The next bits of code handles stuff like "struct {int x;} a,b"; we're
254 // forced to merge the declarations because there's no other way to
255 // refer to the struct in question. This limited merging is safe without
256 // a bunch of other checks because it only merges declarations directly
257 // referring to the tag, not typedefs.
258 //
259 // Check whether the current declaration should be grouped with a previous
260 // unnamed struct.
261 QualType CurDeclType = getDeclType(*D);
262 if (!Decls.empty() && !CurDeclType.isNull()) {
263 QualType BaseType = GetBaseType(CurDeclType);
264 if (!BaseType.isNull() && isa<TagType>(BaseType) &&
265 cast<TagType>(BaseType)->getDecl() == Decls[0]) {
266 Decls.push_back(*D);
267 continue;
268 }
269 }
270
271 // If we have a merged group waiting to be handled, handle it now.
272 if (!Decls.empty())
273 ProcessDeclGroup(Decls);
274
275 // If the current declaration is an unnamed tag type, save it
276 // so we can merge it with the subsequent declaration(s) using it.
277 if (isa<TagDecl>(*D) && !cast<TagDecl>(*D)->getIdentifier()) {
278 Decls.push_back(*D);
279 continue;
280 }
Abramo Bagnara6206d532010-06-05 05:09:32 +0000281
282 if (isa<AccessSpecDecl>(*D)) {
283 Indentation -= Policy.Indentation;
284 this->Indent();
285 Print(D->getAccess());
286 Out << ":\n";
287 Indentation += Policy.Indentation;
288 continue;
289 }
290
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000291 this->Indent();
292 Visit(*D);
Mike Stump1eb44332009-09-09 15:08:12 +0000293
294 // FIXME: Need to be able to tell the DeclPrinter when
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000295 const char *Terminator = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000296 if (isa<FunctionDecl>(*D) &&
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000297 cast<FunctionDecl>(*D)->isThisDeclarationADefinition())
298 Terminator = 0;
Douglas Gregor64f65002009-05-30 00:56:08 +0000299 else if (isa<ObjCMethodDecl>(*D) && cast<ObjCMethodDecl>(*D)->getBody())
300 Terminator = 0;
301 else if (isa<NamespaceDecl>(*D) || isa<LinkageSpecDecl>(*D) ||
Mike Stump1eb44332009-09-09 15:08:12 +0000302 isa<ObjCImplementationDecl>(*D) ||
Douglas Gregor64f65002009-05-30 00:56:08 +0000303 isa<ObjCInterfaceDecl>(*D) ||
304 isa<ObjCProtocolDecl>(*D) ||
305 isa<ObjCCategoryImplDecl>(*D) ||
306 isa<ObjCCategoryDecl>(*D))
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000307 Terminator = 0;
308 else if (isa<EnumConstantDecl>(*D)) {
309 DeclContext::decl_iterator Next = D;
310 ++Next;
311 if (Next != DEnd)
312 Terminator = ",";
313 } else
314 Terminator = ";";
315
316 if (Terminator)
317 Out << Terminator;
318 Out << "\n";
319 }
320
Eli Friedman42f42c02009-05-30 04:20:30 +0000321 if (!Decls.empty())
322 ProcessDeclGroup(Decls);
323
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000324 if (Indent)
325 Indentation -= Policy.Indentation;
326}
327
328void DeclPrinter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
329 VisitDeclContext(D, false);
330}
331
332void DeclPrinter::VisitTypedefDecl(TypedefDecl *D) {
Douglas Gregor8d267c52011-09-09 02:06:17 +0000333 if (!Policy.SuppressSpecifiers) {
Eli Friedman42f42c02009-05-30 04:20:30 +0000334 Out << "typedef ";
Douglas Gregor8d267c52011-09-09 02:06:17 +0000335
336 if (D->isModulePrivate())
337 Out << "__module_private__ ";
338 }
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000339 D->getUnderlyingType().print(Out, Policy, D->getName());
Douglas Gregor1bea8802011-11-19 19:22:57 +0000340 prettyPrintAttributes(D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000341}
342
Richard Smith162e1c12011-04-15 14:24:37 +0000343void DeclPrinter::VisitTypeAliasDecl(TypeAliasDecl *D) {
Benjamin Kramera59d20b2012-02-07 11:57:57 +0000344 Out << "using " << *D << " = " << D->getUnderlyingType().getAsString(Policy);
Richard Smith162e1c12011-04-15 14:24:37 +0000345}
346
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000347void DeclPrinter::VisitEnumDecl(EnumDecl *D) {
Douglas Gregor8d267c52011-09-09 02:06:17 +0000348 if (!Policy.SuppressSpecifiers && D->isModulePrivate())
349 Out << "__module_private__ ";
Douglas Gregor9fa8c462010-12-01 16:01:08 +0000350 Out << "enum ";
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000351 if (D->isScoped()) {
352 if (D->isScopedUsingClassTag())
353 Out << "class ";
354 else
355 Out << "struct ";
356 }
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000357 Out << *D;
Douglas Gregor9fa8c462010-12-01 16:01:08 +0000358
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000359 if (D->isFixed())
360 Out << " : " << D->getIntegerType().stream(Policy);
Douglas Gregor9fa8c462010-12-01 16:01:08 +0000361
John McCall5e1cdac2011-10-07 06:10:15 +0000362 if (D->isCompleteDefinition()) {
Douglas Gregor9fa8c462010-12-01 16:01:08 +0000363 Out << " {\n";
364 VisitDeclContext(D);
365 Indent() << "}";
366 }
Douglas Gregor1bea8802011-11-19 19:22:57 +0000367 prettyPrintAttributes(D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000368}
369
370void DeclPrinter::VisitRecordDecl(RecordDecl *D) {
Douglas Gregor8d267c52011-09-09 02:06:17 +0000371 if (!Policy.SuppressSpecifiers && D->isModulePrivate())
372 Out << "__module_private__ ";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000373 Out << D->getKindName();
Benjamin Kramer900fc632010-04-17 09:33:03 +0000374 if (D->getIdentifier())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000375 Out << ' ' << *D;
Mike Stump1eb44332009-09-09 15:08:12 +0000376
John McCall5e1cdac2011-10-07 06:10:15 +0000377 if (D->isCompleteDefinition()) {
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000378 Out << " {\n";
379 VisitDeclContext(D);
380 Indent() << "}";
381 }
382}
383
384void DeclPrinter::VisitEnumConstantDecl(EnumConstantDecl *D) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000385 Out << *D;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000386 if (Expr *Init = D->getInitExpr()) {
387 Out << " = ";
Richard Smithd1420c62012-08-16 03:56:14 +0000388 Init->printPretty(Out, 0, Policy, Indentation);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000389 }
390}
391
Mike Stump1eb44332009-09-09 15:08:12 +0000392void DeclPrinter::VisitFunctionDecl(FunctionDecl *D) {
Eli Friedman42f42c02009-05-30 04:20:30 +0000393 if (!Policy.SuppressSpecifiers) {
Peter Collingbourne13330c42011-11-08 02:52:52 +0000394 switch (D->getStorageClassAsWritten()) {
John McCalld931b082010-08-26 03:08:43 +0000395 case SC_None: break;
396 case SC_Extern: Out << "extern "; break;
397 case SC_Static: Out << "static "; break;
398 case SC_PrivateExtern: Out << "__private_extern__ "; break;
Peter Collingbourne8c25fc52011-09-19 21:14:35 +0000399 case SC_Auto: case SC_Register: case SC_OpenCLWorkGroupLocal:
400 llvm_unreachable("invalid for functions");
Eli Friedman42f42c02009-05-30 04:20:30 +0000401 }
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000402
Douglas Gregor8d267c52011-09-09 02:06:17 +0000403 if (D->isInlineSpecified()) Out << "inline ";
Eli Friedman42f42c02009-05-30 04:20:30 +0000404 if (D->isVirtualAsWritten()) Out << "virtual ";
Douglas Gregor8d267c52011-09-09 02:06:17 +0000405 if (D->isModulePrivate()) Out << "__module_private__ ";
Eli Friedman42f42c02009-05-30 04:20:30 +0000406 }
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000407
Douglas Gregor6620a622009-05-30 05:39:39 +0000408 PrintingPolicy SubPolicy(Policy);
409 SubPolicy.SuppressSpecifiers = false;
Abramo Bagnara25777432010-08-11 22:01:17 +0000410 std::string Proto = D->getNameInfo().getAsString();
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000411
Abramo Bagnara723df242010-12-14 22:11:44 +0000412 QualType Ty = D->getType();
John McCallf4c73712011-01-19 06:33:43 +0000413 while (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
Abramo Bagnara723df242010-12-14 22:11:44 +0000414 Proto = '(' + Proto + ')';
415 Ty = PT->getInnerType();
416 }
417
418 if (isa<FunctionType>(Ty)) {
419 const FunctionType *AFT = Ty->getAs<FunctionType>();
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000420 const FunctionProtoType *FT = 0;
421 if (D->hasWrittenPrototype())
422 FT = dyn_cast<FunctionProtoType>(AFT);
423
424 Proto += "(";
425 if (FT) {
426 llvm::raw_string_ostream POut(Proto);
Richard Smithd1420c62012-08-16 03:56:14 +0000427 DeclPrinter ParamPrinter(POut, SubPolicy, Indentation);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000428 for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
429 if (i) POut << ", ";
430 ParamPrinter.VisitParmVarDecl(D->getParamDecl(i));
431 }
Mike Stump1eb44332009-09-09 15:08:12 +0000432
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000433 if (FT->isVariadic()) {
434 if (D->getNumParams()) POut << ", ";
435 POut << "...";
436 }
Sean Hunt10620eb2011-05-06 20:44:56 +0000437 } else if (D->doesThisDeclarationHaveABody() && !D->hasPrototype()) {
Eli Friedman42f42c02009-05-30 04:20:30 +0000438 for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
439 if (i)
440 Proto += ", ";
441 Proto += D->getParamDecl(i)->getNameAsString();
442 }
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000443 }
444
445 Proto += ")";
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +0000446
David Blaikie4ef832f2012-08-10 00:55:35 +0000447 if (FT) {
448 if (FT->isConst())
Douglas Gregorb95cfe42010-11-19 18:44:34 +0000449 Proto += " const";
David Blaikie4ef832f2012-08-10 00:55:35 +0000450 if (FT->isVolatile())
Douglas Gregorb95cfe42010-11-19 18:44:34 +0000451 Proto += " volatile";
David Blaikie4ef832f2012-08-10 00:55:35 +0000452 if (FT->isRestrict())
Douglas Gregorb95cfe42010-11-19 18:44:34 +0000453 Proto += " restrict";
454 }
Sebastian Redl60618fa2011-03-12 11:50:43 +0000455
456 if (FT && FT->hasDynamicExceptionSpec()) {
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +0000457 Proto += " throw(";
Sebastian Redl60618fa2011-03-12 11:50:43 +0000458 if (FT->getExceptionSpecType() == EST_MSAny)
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +0000459 Proto += "...";
460 else
461 for (unsigned I = 0, N = FT->getNumExceptions(); I != N; ++I) {
462 if (I)
463 Proto += ", ";
Sebastian Redl60618fa2011-03-12 11:50:43 +0000464
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +0000465 Proto += FT->getExceptionType(I).getAsString(SubPolicy);
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +0000466 }
467 Proto += ")";
Sebastian Redl60618fa2011-03-12 11:50:43 +0000468 } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) {
469 Proto += " noexcept";
470 if (FT->getExceptionSpecType() == EST_ComputedNoexcept) {
471 Proto += "(";
472 llvm::raw_string_ostream EOut(Proto);
Richard Smithd1420c62012-08-16 03:56:14 +0000473 FT->getNoexceptExpr()->printPretty(EOut, 0, SubPolicy,
Sebastian Redl60618fa2011-03-12 11:50:43 +0000474 Indentation);
475 EOut.flush();
476 Proto += EOut.str();
477 Proto += ")";
478 }
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +0000479 }
480
Fariborz Jahanian66192ad2009-07-13 20:18:13 +0000481 if (CXXConstructorDecl *CDecl = dyn_cast<CXXConstructorDecl>(D)) {
Richard Smith7a614d82011-06-11 17:19:42 +0000482 bool HasInitializerList = false;
483 for (CXXConstructorDecl::init_const_iterator B = CDecl->init_begin(),
484 E = CDecl->init_end();
485 B != E; ++B) {
486 CXXCtorInitializer * BMInitializer = (*B);
487 if (BMInitializer->isInClassMemberInitializer())
488 continue;
489
490 if (!HasInitializerList) {
491 Proto += " : ";
492 Out << Proto;
493 Proto.clear();
494 HasInitializerList = true;
495 } else
496 Out << ", ";
497
498 if (BMInitializer->isAnyMemberInitializer()) {
499 FieldDecl *FD = BMInitializer->getAnyMember();
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000500 Out << *FD;
Richard Smith7a614d82011-06-11 17:19:42 +0000501 } else {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000502 Out << QualType(BMInitializer->getBaseClass(), 0).getAsString(Policy);
Richard Smith7a614d82011-06-11 17:19:42 +0000503 }
504
505 Out << "(";
506 if (!BMInitializer->getInit()) {
507 // Nothing to print
508 } else {
509 Expr *Init = BMInitializer->getInit();
510 if (ExprWithCleanups *Tmp = dyn_cast<ExprWithCleanups>(Init))
511 Init = Tmp->getSubExpr();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +0000512
Richard Smith7a614d82011-06-11 17:19:42 +0000513 Init = Init->IgnoreParens();
514
515 Expr *SimpleInit = 0;
516 Expr **Args = 0;
517 unsigned NumArgs = 0;
518 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
519 Args = ParenList->getExprs();
520 NumArgs = ParenList->getNumExprs();
521 } else if (CXXConstructExpr *Construct
522 = dyn_cast<CXXConstructExpr>(Init)) {
523 Args = Construct->getArgs();
524 NumArgs = Construct->getNumArgs();
525 } else
526 SimpleInit = Init;
527
528 if (SimpleInit)
Richard Smithd1420c62012-08-16 03:56:14 +0000529 SimpleInit->printPretty(Out, 0, Policy, Indentation);
Richard Smith7a614d82011-06-11 17:19:42 +0000530 else {
531 for (unsigned I = 0; I != NumArgs; ++I) {
532 if (isa<CXXDefaultArgExpr>(Args[I]))
533 break;
534
535 if (I)
536 Out << ", ";
Richard Smithd1420c62012-08-16 03:56:14 +0000537 Args[I]->printPretty(Out, 0, Policy, Indentation);
Fariborz Jahanian66192ad2009-07-13 20:18:13 +0000538 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +0000539 }
Fariborz Jahanian66192ad2009-07-13 20:18:13 +0000540 }
Richard Smith7a614d82011-06-11 17:19:42 +0000541 Out << ")";
Fariborz Jahanian66192ad2009-07-13 20:18:13 +0000542 }
543 }
544 else
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000545 AFT->getResultType().print(Out, Policy, Proto);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000546 } else {
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000547 Ty.print(Out, Policy, Proto);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000548 }
549
Douglas Gregor1bea8802011-11-19 19:22:57 +0000550 prettyPrintAttributes(D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000551
552 if (D->isPure())
553 Out << " = 0";
Sean Hunt10620eb2011-05-06 20:44:56 +0000554 else if (D->isDeletedAsWritten())
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000555 Out << " = delete";
Dmitri Gribenko2e0b8d92012-08-21 17:47:24 +0000556 else if (D->doesThisDeclarationHaveABody() && !Policy.TerseOutput) {
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000557 if (!D->hasPrototype() && D->getNumParams()) {
558 // This is a K&R function definition, so we need to print the
559 // parameters.
560 Out << '\n';
Richard Smithd1420c62012-08-16 03:56:14 +0000561 DeclPrinter ParamPrinter(Out, SubPolicy, Indentation);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000562 Indentation += Policy.Indentation;
563 for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
564 Indent();
Douglas Gregor6620a622009-05-30 05:39:39 +0000565 ParamPrinter.VisitParmVarDecl(D->getParamDecl(i));
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000566 Out << ";\n";
567 }
568 Indentation -= Policy.Indentation;
569 } else
570 Out << ' ';
571
Richard Smithd1420c62012-08-16 03:56:14 +0000572 D->getBody()->printPretty(Out, 0, SubPolicy, Indentation);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000573 Out << '\n';
574 }
575}
576
577void DeclPrinter::VisitFieldDecl(FieldDecl *D) {
Eli Friedman42f42c02009-05-30 04:20:30 +0000578 if (!Policy.SuppressSpecifiers && D->isMutable())
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000579 Out << "mutable ";
Douglas Gregor8d267c52011-09-09 02:06:17 +0000580 if (!Policy.SuppressSpecifiers && D->isModulePrivate())
581 Out << "__module_private__ ";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000582
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000583 Out << D->getType().stream(Policy, D->getName());
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000584
585 if (D->isBitField()) {
586 Out << " : ";
Richard Smithd1420c62012-08-16 03:56:14 +0000587 D->getBitWidth()->printPretty(Out, 0, Policy, Indentation);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000588 }
Richard Smith7a614d82011-06-11 17:19:42 +0000589
590 Expr *Init = D->getInClassInitializer();
591 if (!Policy.SuppressInitializers && Init) {
Richard Smithca523302012-06-10 03:12:00 +0000592 if (D->getInClassInitStyle() == ICIS_ListInit)
593 Out << " ";
594 else
595 Out << " = ";
Richard Smithd1420c62012-08-16 03:56:14 +0000596 Init->printPretty(Out, 0, Policy, Indentation);
Richard Smith7a614d82011-06-11 17:19:42 +0000597 }
Douglas Gregor1bea8802011-11-19 19:22:57 +0000598 prettyPrintAttributes(D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000599}
600
Chris Lattner57ad3782011-02-17 20:34:02 +0000601void DeclPrinter::VisitLabelDecl(LabelDecl *D) {
Benjamin Kramera59d20b2012-02-07 11:57:57 +0000602 Out << *D << ":";
Chris Lattner57ad3782011-02-17 20:34:02 +0000603}
604
605
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000606void DeclPrinter::VisitVarDecl(VarDecl *D) {
Peter Collingbourne13330c42011-11-08 02:52:52 +0000607 StorageClass SCAsWritten = D->getStorageClassAsWritten();
608 if (!Policy.SuppressSpecifiers && SCAsWritten != SC_None)
609 Out << VarDecl::getStorageClassSpecifierString(SCAsWritten) << " ";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000610
Eli Friedman42f42c02009-05-30 04:20:30 +0000611 if (!Policy.SuppressSpecifiers && D->isThreadSpecified())
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000612 Out << "__thread ";
Douglas Gregor8d267c52011-09-09 02:06:17 +0000613 if (!Policy.SuppressSpecifiers && D->isModulePrivate())
614 Out << "__module_private__ ";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000615
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000616 QualType T = D->getType();
John McCall58e46772009-10-23 21:48:59 +0000617 if (ParmVarDecl *Parm = dyn_cast<ParmVarDecl>(D))
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000618 T = Parm->getOriginalType();
Argyrios Kyrtzidis7ad5c992012-05-05 04:20:37 +0000619 T.print(Out, Policy, D->getName());
Richard Smithad762fc2011-04-14 22:09:26 +0000620 Expr *Init = D->getInit();
621 if (!Policy.SuppressInitializers && Init) {
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000622 bool ImplicitInit = false;
623 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init))
624 ImplicitInit = D->getInitStyle() == VarDecl::CallInit &&
625 Construct->getNumArgs() == 0 && !Construct->isListInitialization();
626 if (!ImplicitInit) {
627 if (D->getInitStyle() == VarDecl::CallInit)
628 Out << "(";
629 else if (D->getInitStyle() == VarDecl::CInit) {
630 Out << " = ";
631 }
Richard Smithd1420c62012-08-16 03:56:14 +0000632 Init->printPretty(Out, 0, Policy, Indentation);
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +0000633 if (D->getInitStyle() == VarDecl::CallInit)
634 Out << ")";
Ted Kremenekc57d6552010-09-17 23:04:38 +0000635 }
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000636 }
Douglas Gregor1bea8802011-11-19 19:22:57 +0000637 prettyPrintAttributes(D);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000638}
639
640void DeclPrinter::VisitParmVarDecl(ParmVarDecl *D) {
641 VisitVarDecl(D);
642}
643
644void DeclPrinter::VisitFileScopeAsmDecl(FileScopeAsmDecl *D) {
645 Out << "__asm (";
Richard Smithd1420c62012-08-16 03:56:14 +0000646 D->getAsmString()->printPretty(Out, 0, Policy, Indentation);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000647 Out << ")";
648}
649
Douglas Gregor15de72c2011-12-02 23:23:56 +0000650void DeclPrinter::VisitImportDecl(ImportDecl *D) {
Ted Kremenek32ad2ee2012-03-01 22:07:04 +0000651 Out << "@__experimental_modules_import " << D->getImportedModule()->getFullModuleName()
Douglas Gregor15de72c2011-12-02 23:23:56 +0000652 << ";\n";
653}
654
Peter Collingbourne28ac87e2011-03-16 18:37:27 +0000655void DeclPrinter::VisitStaticAssertDecl(StaticAssertDecl *D) {
656 Out << "static_assert(";
Richard Smithd1420c62012-08-16 03:56:14 +0000657 D->getAssertExpr()->printPretty(Out, 0, Policy, Indentation);
Peter Collingbourne28ac87e2011-03-16 18:37:27 +0000658 Out << ", ";
Richard Smithd1420c62012-08-16 03:56:14 +0000659 D->getMessage()->printPretty(Out, 0, Policy, Indentation);
Peter Collingbourne28ac87e2011-03-16 18:37:27 +0000660 Out << ")";
661}
662
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000663//----------------------------------------------------------------------------
664// C++ declarations
665//----------------------------------------------------------------------------
Douglas Gregor59e63572009-05-30 06:58:37 +0000666void DeclPrinter::VisitNamespaceDecl(NamespaceDecl *D) {
Douglas Gregorc30636a2012-05-01 01:43:38 +0000667 if (D->isInline())
668 Out << "inline ";
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000669 Out << "namespace " << *D << " {\n";
Douglas Gregor59e63572009-05-30 06:58:37 +0000670 VisitDeclContext(D);
671 Indent() << "}";
672}
673
Douglas Gregor8419fa32009-05-30 06:31:56 +0000674void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
675 Out << "using namespace ";
676 if (D->getQualifier())
677 D->getQualifier()->print(Out, Policy);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000678 Out << *D->getNominatedNamespaceAsWritten();
Douglas Gregor8419fa32009-05-30 06:31:56 +0000679}
680
Douglas Gregor6c9c9402009-05-30 06:48:27 +0000681void DeclPrinter::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000682 Out << "namespace " << *D << " = ";
Douglas Gregor6c9c9402009-05-30 06:48:27 +0000683 if (D->getQualifier())
684 D->getQualifier()->print(Out, Policy);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000685 Out << *D->getAliasedNamespace();
Douglas Gregor6c9c9402009-05-30 06:48:27 +0000686}
687
Douglas Gregor59e63572009-05-30 06:58:37 +0000688void DeclPrinter::VisitCXXRecordDecl(CXXRecordDecl *D) {
Douglas Gregor8d267c52011-09-09 02:06:17 +0000689 if (!Policy.SuppressSpecifiers && D->isModulePrivate())
690 Out << "__module_private__ ";
Douglas Gregor59e63572009-05-30 06:58:37 +0000691 Out << D->getKindName();
Benjamin Kramer900fc632010-04-17 09:33:03 +0000692 if (D->getIdentifier())
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000693 Out << ' ' << *D;
Mike Stump1eb44332009-09-09 15:08:12 +0000694
John McCall5e1cdac2011-10-07 06:10:15 +0000695 if (D->isCompleteDefinition()) {
Douglas Gregor59e63572009-05-30 06:58:37 +0000696 // Print the base classes
697 if (D->getNumBases()) {
698 Out << " : ";
Mike Stump1eb44332009-09-09 15:08:12 +0000699 for (CXXRecordDecl::base_class_iterator Base = D->bases_begin(),
700 BaseEnd = D->bases_end(); Base != BaseEnd; ++Base) {
Douglas Gregor59e63572009-05-30 06:58:37 +0000701 if (Base != D->bases_begin())
702 Out << ", ";
703
704 if (Base->isVirtual())
705 Out << "virtual ";
706
Anders Carlsson018e9fe2009-08-29 20:36:12 +0000707 AccessSpecifier AS = Base->getAccessSpecifierAsWritten();
708 if (AS != AS_none)
709 Print(AS);
Anders Carlsson0d592922009-08-28 22:39:52 +0000710 Out << " " << Base->getType().getAsString(Policy);
Douglas Gregor34a99e72011-04-27 17:07:55 +0000711
712 if (Base->isPackExpansion())
713 Out << "...";
Douglas Gregor59e63572009-05-30 06:58:37 +0000714 }
715 }
716
717 // Print the class definition
Douglas Gregorf757ae72009-05-31 07:13:39 +0000718 // FIXME: Doesn't print access specifiers, e.g., "public:"
Douglas Gregor59e63572009-05-30 06:58:37 +0000719 Out << " {\n";
720 VisitDeclContext(D);
721 Indent() << "}";
Mike Stump1eb44332009-09-09 15:08:12 +0000722 }
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000723}
724
725void DeclPrinter::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
726 const char *l;
727 if (D->getLanguage() == LinkageSpecDecl::lang_c)
728 l = "C";
729 else {
730 assert(D->getLanguage() == LinkageSpecDecl::lang_cxx &&
731 "unknown language in linkage specification");
732 l = "C++";
733 }
734
735 Out << "extern \"" << l << "\" ";
736 if (D->hasBraces()) {
737 Out << "{\n";
738 VisitDeclContext(D);
739 Indent() << "}";
740 } else
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000741 Visit(*D->decls_begin());
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000742}
743
Richard Trieu5cb3d692011-07-28 00:19:05 +0000744void DeclPrinter::PrintTemplateParameters(
745 const TemplateParameterList *Params, const TemplateArgumentList *Args = 0) {
746 assert(Params);
747 assert(!Args || Params->size() == Args->size());
748
Anders Carlsson0487f662009-06-04 05:37:43 +0000749 Out << "template <";
Mike Stump1eb44332009-09-09 15:08:12 +0000750
Anders Carlsson0487f662009-06-04 05:37:43 +0000751 for (unsigned i = 0, e = Params->size(); i != e; ++i) {
752 if (i != 0)
753 Out << ", ";
Mike Stump1eb44332009-09-09 15:08:12 +0000754
Anders Carlsson0487f662009-06-04 05:37:43 +0000755 const Decl *Param = Params->getParam(i);
Mike Stump1eb44332009-09-09 15:08:12 +0000756 if (const TemplateTypeParmDecl *TTP =
Anders Carlsson0487f662009-06-04 05:37:43 +0000757 dyn_cast<TemplateTypeParmDecl>(Param)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000758
Anders Carlsson0487f662009-06-04 05:37:43 +0000759 if (TTP->wasDeclaredWithTypename())
760 Out << "typename ";
761 else
762 Out << "class ";
763
Anders Carlsson6d845ae2009-06-12 22:23:22 +0000764 if (TTP->isParameterPack())
765 Out << "... ";
Mike Stump1eb44332009-09-09 15:08:12 +0000766
Benjamin Kramera59d20b2012-02-07 11:57:57 +0000767 Out << *TTP;
Anders Carlsson0487f662009-06-04 05:37:43 +0000768
Richard Trieu5cb3d692011-07-28 00:19:05 +0000769 if (Args) {
770 Out << " = ";
771 Args->get(i).print(Policy, Out);
772 } else if (TTP->hasDefaultArgument()) {
Anders Carlsson0487f662009-06-04 05:37:43 +0000773 Out << " = ";
774 Out << TTP->getDefaultArgument().getAsString(Policy);
775 };
Mike Stump1eb44332009-09-09 15:08:12 +0000776 } else if (const NonTypeTemplateParmDecl *NTTP =
Anders Carlsson0487f662009-06-04 05:37:43 +0000777 dyn_cast<NonTypeTemplateParmDecl>(Param)) {
778 Out << NTTP->getType().getAsString(Policy);
779
Douglas Gregor56bc9832010-12-24 00:15:10 +0000780 if (NTTP->isParameterPack() && !isa<PackExpansionType>(NTTP->getType()))
781 Out << "...";
782
Anders Carlsson0487f662009-06-04 05:37:43 +0000783 if (IdentifierInfo *Name = NTTP->getIdentifier()) {
784 Out << ' ';
785 Out << Name->getName();
786 }
Mike Stump1eb44332009-09-09 15:08:12 +0000787
Richard Trieu5cb3d692011-07-28 00:19:05 +0000788 if (Args) {
789 Out << " = ";
790 Args->get(i).print(Policy, Out);
791 } else if (NTTP->hasDefaultArgument()) {
Anders Carlsson0487f662009-06-04 05:37:43 +0000792 Out << " = ";
Richard Smithd1420c62012-08-16 03:56:14 +0000793 NTTP->getDefaultArgument()->printPretty(Out, 0, Policy, Indentation);
Anders Carlsson0487f662009-06-04 05:37:43 +0000794 }
Richard Smith98a57862011-04-15 13:38:57 +0000795 } else if (const TemplateTemplateParmDecl *TTPD =
796 dyn_cast<TemplateTemplateParmDecl>(Param)) {
797 VisitTemplateDecl(TTPD);
798 // FIXME: print the default argument, if present.
Anders Carlsson0487f662009-06-04 05:37:43 +0000799 }
800 }
Mike Stump1eb44332009-09-09 15:08:12 +0000801
Anders Carlsson0487f662009-06-04 05:37:43 +0000802 Out << "> ";
Richard Trieu5cb3d692011-07-28 00:19:05 +0000803}
804
805void DeclPrinter::VisitTemplateDecl(const TemplateDecl *D) {
806 PrintTemplateParameters(D->getTemplateParameters());
Anders Carlsson0487f662009-06-04 05:37:43 +0000807
Richard Smith98a57862011-04-15 13:38:57 +0000808 if (const TemplateTemplateParmDecl *TTP =
809 dyn_cast<TemplateTemplateParmDecl>(D)) {
Douglas Gregor61c4d282011-01-05 15:48:55 +0000810 Out << "class ";
811 if (TTP->isParameterPack())
812 Out << "...";
813 Out << D->getName();
Craig Silverstein0193a722010-07-09 20:25:10 +0000814 } else {
815 Visit(D->getTemplatedDecl());
816 }
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000817}
818
Richard Trieu5cb3d692011-07-28 00:19:05 +0000819void DeclPrinter::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
820 if (PrintInstantiation) {
821 TemplateParameterList *Params = D->getTemplateParameters();
822 for (FunctionTemplateDecl::spec_iterator I = D->spec_begin(), E = D->spec_end();
823 I != E; ++I) {
824 PrintTemplateParameters(Params, (*I)->getTemplateSpecializationArgs());
825 Visit(*I);
826 }
827 }
828
829 return VisitRedeclarableTemplateDecl(D);
830}
831
832void DeclPrinter::VisitClassTemplateDecl(ClassTemplateDecl *D) {
833 if (PrintInstantiation) {
834 TemplateParameterList *Params = D->getTemplateParameters();
835 for (ClassTemplateDecl::spec_iterator I = D->spec_begin(), E = D->spec_end();
836 I != E; ++I) {
837 PrintTemplateParameters(Params, &(*I)->getTemplateArgs());
838 Visit(*I);
839 Out << '\n';
840 }
841 }
842
843 return VisitRedeclarableTemplateDecl(D);
844}
845
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000846//----------------------------------------------------------------------------
847// Objective-C declarations
848//----------------------------------------------------------------------------
849
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000850void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
851 if (OMD->isInstanceMethod())
Douglas Gregor64f65002009-05-30 00:56:08 +0000852 Out << "- ";
Mike Stump1eb44332009-09-09 15:08:12 +0000853 else
Douglas Gregor64f65002009-05-30 00:56:08 +0000854 Out << "+ ";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000855 if (!OMD->getResultType().isNull())
Douglas Gregor59e63572009-05-30 06:58:37 +0000856 Out << '(' << OMD->getResultType().getAsString(Policy) << ")";
Mike Stump1eb44332009-09-09 15:08:12 +0000857
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000858 std::string name = OMD->getSelector().getAsString();
859 std::string::size_type pos, lastPos = 0;
860 for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
861 E = OMD->param_end(); PI != E; ++PI) {
Mike Stump1eb44332009-09-09 15:08:12 +0000862 // FIXME: selector is missing here!
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000863 pos = name.find_first_of(':', lastPos);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000864 Out << " " << name.substr(lastPos, pos - lastPos);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000865 Out << ":(" << (*PI)->getType().getAsString(Policy) << ')' << **PI;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000866 lastPos = pos + 1;
867 }
Mike Stump1eb44332009-09-09 15:08:12 +0000868
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000869 if (OMD->param_begin() == OMD->param_end())
870 Out << " " << name;
Mike Stump1eb44332009-09-09 15:08:12 +0000871
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000872 if (OMD->isVariadic())
873 Out << ", ...";
Mike Stump1eb44332009-09-09 15:08:12 +0000874
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000875 if (OMD->getBody()) {
876 Out << ' ';
Richard Smithd1420c62012-08-16 03:56:14 +0000877 OMD->getBody()->printPretty(Out, 0, Policy);
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000878 Out << '\n';
Douglas Gregor64f65002009-05-30 00:56:08 +0000879 }
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000880}
881
882void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) {
883 std::string I = OID->getNameAsString();
884 ObjCInterfaceDecl *SID = OID->getSuperClass();
885
886 if (SID)
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000887 Out << "@implementation " << I << " : " << *SID;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000888 else
889 Out << "@implementation " << I;
Douglas Gregor64f65002009-05-30 00:56:08 +0000890 Out << "\n";
891 VisitDeclContext(OID, false);
892 Out << "@end";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000893}
894
895void DeclPrinter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *OID) {
896 std::string I = OID->getNameAsString();
897 ObjCInterfaceDecl *SID = OID->getSuperClass();
898
Douglas Gregor7723fec2011-12-15 20:29:51 +0000899 if (!OID->isThisDeclarationADefinition()) {
900 Out << "@class " << I << ";";
901 return;
902 }
903
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000904 if (SID)
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000905 Out << "@interface " << I << " : " << *SID;
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000906 else
907 Out << "@interface " << I;
Mike Stump1eb44332009-09-09 15:08:12 +0000908
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000909 // Protocols?
910 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
911 if (!Protocols.empty()) {
912 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
913 E = Protocols.end(); I != E; ++I)
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000914 Out << (I == Protocols.begin() ? '<' : ',') << **I;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000915 }
Mike Stump1eb44332009-09-09 15:08:12 +0000916
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000917 if (!Protocols.empty())
Douglas Gregor64f65002009-05-30 00:56:08 +0000918 Out << "> ";
Mike Stump1eb44332009-09-09 15:08:12 +0000919
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000920 if (OID->ivar_size() > 0) {
Douglas Gregor64f65002009-05-30 00:56:08 +0000921 Out << "{\n";
922 Indentation += Policy.Indentation;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000923 for (ObjCInterfaceDecl::ivar_iterator I = OID->ivar_begin(),
924 E = OID->ivar_end(); I != E; ++I) {
David Blaikie581deb32012-06-06 20:45:41 +0000925 Indent() << I->getType().getAsString(Policy) << ' ' << **I << ";\n";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000926 }
Douglas Gregor64f65002009-05-30 00:56:08 +0000927 Indentation -= Policy.Indentation;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000928 Out << "}\n";
929 }
Mike Stump1eb44332009-09-09 15:08:12 +0000930
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000931 VisitDeclContext(OID, false);
Douglas Gregor64f65002009-05-30 00:56:08 +0000932 Out << "@end";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000933 // FIXME: implement the rest...
934}
935
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000936void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
Douglas Gregorbd9482d2012-01-01 21:23:57 +0000937 if (!PID->isThisDeclarationADefinition()) {
938 Out << "@protocol " << PID->getIdentifier() << ";\n";
939 return;
940 }
941
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000942 Out << "@protocol " << *PID << '\n';
Douglas Gregor64f65002009-05-30 00:56:08 +0000943 VisitDeclContext(PID, false);
944 Out << "@end";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000945}
946
947void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000948 Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000949
950 VisitDeclContext(PID, false);
Douglas Gregor64f65002009-05-30 00:56:08 +0000951 Out << "@end";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000952 // FIXME: implement the rest...
953}
954
955void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000956 Out << "@interface " << *PID->getClassInterface() << '(' << *PID << ")\n";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000957 VisitDeclContext(PID, false);
Douglas Gregor64f65002009-05-30 00:56:08 +0000958 Out << "@end";
Mike Stump1eb44332009-09-09 15:08:12 +0000959
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000960 // FIXME: implement the rest...
961}
962
963void DeclPrinter::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *AID) {
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000964 Out << "@compatibility_alias " << *AID
965 << ' ' << *AID->getClassInterface() << ";\n";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000966}
967
968/// PrintObjCPropertyDecl - print a property declaration.
969///
970void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) {
971 if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required)
972 Out << "@required\n";
973 else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional)
974 Out << "@optional\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000975
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000976 Out << "@property";
977 if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) {
978 bool first = true;
979 Out << " (";
Mike Stump1eb44332009-09-09 15:08:12 +0000980 if (PDecl->getPropertyAttributes() &
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +0000981 ObjCPropertyDecl::OBJC_PR_readonly) {
982 Out << (first ? ' ' : ',') << "readonly";
983 first = false;
Ted Kremenek07c682a2011-08-17 21:09:35 +0000984 }
Mike Stump1eb44332009-09-09 15:08:12 +0000985
Ted Kremenek07c682a2011-08-17 21:09:35 +0000986 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
987 Out << (first ? ' ' : ',') << "getter = "
988 << PDecl->getGetterName().getAsString();
989 first = false;
990 }
991 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
992 Out << (first ? ' ' : ',') << "setter = "
993 << PDecl->getSetterName().getAsString();
994 first = false;
995 }
Mike Stump1eb44332009-09-09 15:08:12 +0000996
Ted Kremenek07c682a2011-08-17 21:09:35 +0000997 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) {
998 Out << (first ? ' ' : ',') << "assign";
999 first = false;
1000 }
Mike Stump1eb44332009-09-09 15:08:12 +00001001
Ted Kremenek07c682a2011-08-17 21:09:35 +00001002 if (PDecl->getPropertyAttributes() &
1003 ObjCPropertyDecl::OBJC_PR_readwrite) {
1004 Out << (first ? ' ' : ',') << "readwrite";
1005 first = false;
1006 }
Mike Stump1eb44332009-09-09 15:08:12 +00001007
Ted Kremenek07c682a2011-08-17 21:09:35 +00001008 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) {
1009 Out << (first ? ' ' : ',') << "retain";
1010 first = false;
1011 }
Mike Stump1eb44332009-09-09 15:08:12 +00001012
Ted Kremenek07c682a2011-08-17 21:09:35 +00001013 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_strong) {
1014 Out << (first ? ' ' : ',') << "strong";
1015 first = false;
1016 }
John McCallf85e1932011-06-15 23:02:42 +00001017
Ted Kremenek07c682a2011-08-17 21:09:35 +00001018 if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) {
1019 Out << (first ? ' ' : ',') << "copy";
1020 first = false;
1021 }
Mike Stump1eb44332009-09-09 15:08:12 +00001022
Ted Kremenek07c682a2011-08-17 21:09:35 +00001023 if (PDecl->getPropertyAttributes() &
1024 ObjCPropertyDecl::OBJC_PR_nonatomic) {
1025 Out << (first ? ' ' : ',') << "nonatomic";
1026 first = false;
1027 }
1028 if (PDecl->getPropertyAttributes() &
1029 ObjCPropertyDecl::OBJC_PR_atomic) {
1030 Out << (first ? ' ' : ',') << "atomic";
1031 first = false;
1032 }
1033
1034 (void) first; // Silence dead store warning due to idiomatic code.
1035 Out << " )";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +00001036 }
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001037 Out << ' ' << PDecl->getType().getAsString(Policy) << ' ' << *PDecl;
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +00001038}
1039
1040void DeclPrinter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) {
1041 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
Douglas Gregor64f65002009-05-30 00:56:08 +00001042 Out << "@synthesize ";
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +00001043 else
Douglas Gregor64f65002009-05-30 00:56:08 +00001044 Out << "@dynamic ";
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001045 Out << *PID->getPropertyDecl();
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +00001046 if (PID->getPropertyIvarDecl())
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001047 Out << '=' << *PID->getPropertyIvarDecl();
Douglas Gregor4fe0c8e2009-05-30 00:08:05 +00001048}
Anders Carlssonf53eaa52009-08-28 19:16:39 +00001049
1050void DeclPrinter::VisitUsingDecl(UsingDecl *D) {
1051 Out << "using ";
Douglas Gregordc355712011-02-25 00:36:19 +00001052 D->getQualifier()->print(Out, Policy);
Benjamin Kramerb8989f22011-10-14 18:45:37 +00001053 Out << *D;
Anders Carlssonf53eaa52009-08-28 19:16:39 +00001054}
1055
John McCall7ba107a2009-11-18 02:36:19 +00001056void
1057DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
1058 Out << "using typename ";
Douglas Gregordc355712011-02-25 00:36:19 +00001059 D->getQualifier()->print(Out, Policy);
Benjamin Kramer900fc632010-04-17 09:33:03 +00001060 Out << D->getDeclName();
John McCall7ba107a2009-11-18 02:36:19 +00001061}
1062
1063void DeclPrinter::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Anders Carlssonf53eaa52009-08-28 19:16:39 +00001064 Out << "using ";
Douglas Gregordc355712011-02-25 00:36:19 +00001065 D->getQualifier()->print(Out, Policy);
Benjamin Kramer900fc632010-04-17 09:33:03 +00001066 Out << D->getDeclName();
Anders Carlssonf53eaa52009-08-28 19:16:39 +00001067}
John McCall9488ea12009-11-17 05:59:44 +00001068
1069void DeclPrinter::VisitUsingShadowDecl(UsingShadowDecl *D) {
1070 // ignore
1071}