]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/AST/DeclPrinter.cpp
Vendor import of clang trunk r161861:
[FreeBSD/FreeBSD.git] / lib / AST / DeclPrinter.cpp
1 //===--- 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/ExprCXX.h"
21 #include "clang/AST/PrettyPrinter.h"
22 #include "clang/Basic/Module.h"
23 #include "llvm/Support/raw_ostream.h"
24 using namespace clang;
25
26 namespace {
27   class DeclPrinter : public DeclVisitor<DeclPrinter> {
28     raw_ostream &Out;
29     ASTContext &Context;
30     PrintingPolicy Policy;
31     unsigned Indentation;
32     bool PrintInstantiation;
33
34     raw_ostream& Indent() { return Indent(Indentation); }
35     raw_ostream& Indent(unsigned Indentation);
36     void ProcessDeclGroup(SmallVectorImpl<Decl*>& Decls);
37
38     void Print(AccessSpecifier AS);
39
40   public:
41     DeclPrinter(raw_ostream &Out, ASTContext &Context,
42                 const PrintingPolicy &Policy,
43                 unsigned Indentation = 0,
44                 bool PrintInstantiation = false)
45       : Out(Out), Context(Context), Policy(Policy), Indentation(Indentation),
46         PrintInstantiation(PrintInstantiation) { }
47
48     void VisitDeclContext(DeclContext *DC, bool Indent = true);
49
50     void VisitTranslationUnitDecl(TranslationUnitDecl *D);
51     void VisitTypedefDecl(TypedefDecl *D);
52     void VisitTypeAliasDecl(TypeAliasDecl *D);
53     void VisitEnumDecl(EnumDecl *D);
54     void VisitRecordDecl(RecordDecl *D);
55     void VisitEnumConstantDecl(EnumConstantDecl *D);
56     void VisitFunctionDecl(FunctionDecl *D);
57     void VisitFieldDecl(FieldDecl *D);
58     void VisitVarDecl(VarDecl *D);
59     void VisitLabelDecl(LabelDecl *D);
60     void VisitParmVarDecl(ParmVarDecl *D);
61     void VisitFileScopeAsmDecl(FileScopeAsmDecl *D);
62     void VisitImportDecl(ImportDecl *D);
63     void VisitStaticAssertDecl(StaticAssertDecl *D);
64     void VisitNamespaceDecl(NamespaceDecl *D);
65     void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
66     void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
67     void VisitCXXRecordDecl(CXXRecordDecl *D);
68     void VisitLinkageSpecDecl(LinkageSpecDecl *D);
69     void VisitTemplateDecl(const TemplateDecl *D);
70     void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
71     void VisitClassTemplateDecl(ClassTemplateDecl *D);
72     void VisitObjCMethodDecl(ObjCMethodDecl *D);
73     void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
74     void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
75     void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
76     void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
77     void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
78     void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
79     void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
80     void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
81     void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
82     void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
83     void VisitUsingDecl(UsingDecl *D);
84     void VisitUsingShadowDecl(UsingShadowDecl *D);
85
86     void PrintTemplateParameters(const TemplateParameterList *Params,
87                                  const TemplateArgumentList *Args);
88     void prettyPrintAttributes(Decl *D);
89   };
90 }
91
92 void Decl::print(raw_ostream &Out, unsigned Indentation,
93                  bool PrintInstantiation) const {
94   print(Out, getASTContext().getPrintingPolicy(), Indentation, PrintInstantiation);
95 }
96
97 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy,
98                  unsigned Indentation, bool PrintInstantiation) const {
99   DeclPrinter Printer(Out, getASTContext(), Policy, Indentation, PrintInstantiation);
100   Printer.Visit(const_cast<Decl*>(this));
101 }
102
103 static QualType GetBaseType(QualType T) {
104   // FIXME: This should be on the Type class!
105   QualType BaseType = T;
106   while (!BaseType->isSpecifierType()) {
107     if (isa<TypedefType>(BaseType))
108       break;
109     else if (const PointerType* PTy = BaseType->getAs<PointerType>())
110       BaseType = PTy->getPointeeType();
111     else if (const ArrayType* ATy = dyn_cast<ArrayType>(BaseType))
112       BaseType = ATy->getElementType();
113     else if (const FunctionType* FTy = BaseType->getAs<FunctionType>())
114       BaseType = FTy->getResultType();
115     else if (const VectorType *VTy = BaseType->getAs<VectorType>())
116       BaseType = VTy->getElementType();
117     else if (const ReferenceType *RTy = BaseType->getAs<ReferenceType>())
118       BaseType = RTy->getPointeeType();
119     else
120       llvm_unreachable("Unknown declarator!");
121   }
122   return BaseType;
123 }
124
125 static QualType getDeclType(Decl* D) {
126   if (TypedefNameDecl* TDD = dyn_cast<TypedefNameDecl>(D))
127     return TDD->getUnderlyingType();
128   if (ValueDecl* VD = dyn_cast<ValueDecl>(D))
129     return VD->getType();
130   return QualType();
131 }
132
133 void Decl::printGroup(Decl** Begin, unsigned NumDecls,
134                       raw_ostream &Out, const PrintingPolicy &Policy,
135                       unsigned Indentation) {
136   if (NumDecls == 1) {
137     (*Begin)->print(Out, Policy, Indentation);
138     return;
139   }
140
141   Decl** End = Begin + NumDecls;
142   TagDecl* TD = dyn_cast<TagDecl>(*Begin);
143   if (TD)
144     ++Begin;
145
146   PrintingPolicy SubPolicy(Policy);
147   if (TD && TD->isCompleteDefinition()) {
148     TD->print(Out, Policy, Indentation);
149     Out << " ";
150     SubPolicy.SuppressTag = true;
151   }
152
153   bool isFirst = true;
154   for ( ; Begin != End; ++Begin) {
155     if (isFirst) {
156       SubPolicy.SuppressSpecifiers = false;
157       isFirst = false;
158     } else {
159       if (!isFirst) Out << ", ";
160       SubPolicy.SuppressSpecifiers = true;
161     }
162
163     (*Begin)->print(Out, SubPolicy, Indentation);
164   }
165 }
166
167 void DeclContext::dumpDeclContext() const {
168   // Get the translation unit
169   const DeclContext *DC = this;
170   while (!DC->isTranslationUnit())
171     DC = DC->getParent();
172   
173   ASTContext &Ctx = cast<TranslationUnitDecl>(DC)->getASTContext();
174   DeclPrinter Printer(llvm::errs(), Ctx, Ctx.getPrintingPolicy(), 0);
175   Printer.VisitDeclContext(const_cast<DeclContext *>(this), /*Indent=*/false);
176 }
177
178 void Decl::dump(raw_ostream &Out) const {
179   PrintingPolicy Policy = getASTContext().getPrintingPolicy();
180   Policy.Dump = true;
181   print(Out, Policy, /*Indentation*/ 0, /*PrintInstantiation*/ true);
182 }
183
184 raw_ostream& DeclPrinter::Indent(unsigned Indentation) {
185   for (unsigned i = 0; i != Indentation; ++i)
186     Out << "  ";
187   return Out;
188 }
189
190 void DeclPrinter::prettyPrintAttributes(Decl *D) {
191   if (D->hasAttrs()) {
192     AttrVec &Attrs = D->getAttrs();
193     for (AttrVec::const_iterator i=Attrs.begin(), e=Attrs.end(); i!=e; ++i) {
194         Attr *A = *i;
195         A->printPretty(Out, Context);
196     }
197   }
198 }
199
200 void DeclPrinter::ProcessDeclGroup(SmallVectorImpl<Decl*>& Decls) {
201   this->Indent();
202   Decl::printGroup(Decls.data(), Decls.size(), Out, Policy, Indentation);
203   Out << ";\n";
204   Decls.clear();
205
206 }
207
208 void DeclPrinter::Print(AccessSpecifier AS) {
209   switch(AS) {
210   case AS_none:      llvm_unreachable("No access specifier!");
211   case AS_public:    Out << "public"; break;
212   case AS_protected: Out << "protected"; break;
213   case AS_private:   Out << "private"; break;
214   }
215 }
216
217 //----------------------------------------------------------------------------
218 // Common C declarations
219 //----------------------------------------------------------------------------
220
221 void DeclPrinter::VisitDeclContext(DeclContext *DC, bool Indent) {
222   if (Indent)
223     Indentation += Policy.Indentation;
224
225   SmallVector<Decl*, 2> Decls;
226   for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end();
227        D != DEnd; ++D) {
228
229     // Don't print ObjCIvarDecls, as they are printed when visiting the
230     // containing ObjCInterfaceDecl.
231     if (isa<ObjCIvarDecl>(*D))
232       continue;
233
234     if (!Policy.Dump) {
235       // Skip over implicit declarations in pretty-printing mode.
236       if (D->isImplicit()) continue;
237       // FIXME: Ugly hack so we don't pretty-print the builtin declaration
238       // of __builtin_va_list or __[u]int128_t.  There should be some other way
239       // to check that.
240       if (NamedDecl *ND = dyn_cast<NamedDecl>(*D)) {
241         if (IdentifierInfo *II = ND->getIdentifier()) {
242           if (II->isStr("__builtin_va_list") ||
243               II->isStr("__int128_t") || II->isStr("__uint128_t"))
244             continue;
245         }
246       }
247     }
248
249     // The next bits of code handles stuff like "struct {int x;} a,b"; we're
250     // forced to merge the declarations because there's no other way to
251     // refer to the struct in question.  This limited merging is safe without
252     // a bunch of other checks because it only merges declarations directly
253     // referring to the tag, not typedefs.
254     //
255     // Check whether the current declaration should be grouped with a previous
256     // unnamed struct.
257     QualType CurDeclType = getDeclType(*D);
258     if (!Decls.empty() && !CurDeclType.isNull()) {
259       QualType BaseType = GetBaseType(CurDeclType);
260       if (!BaseType.isNull() && isa<TagType>(BaseType) &&
261           cast<TagType>(BaseType)->getDecl() == Decls[0]) {
262         Decls.push_back(*D);
263         continue;
264       }
265     }
266
267     // If we have a merged group waiting to be handled, handle it now.
268     if (!Decls.empty())
269       ProcessDeclGroup(Decls);
270
271     // If the current declaration is an unnamed tag type, save it
272     // so we can merge it with the subsequent declaration(s) using it.
273     if (isa<TagDecl>(*D) && !cast<TagDecl>(*D)->getIdentifier()) {
274       Decls.push_back(*D);
275       continue;
276     }
277
278     if (isa<AccessSpecDecl>(*D)) {
279       Indentation -= Policy.Indentation;
280       this->Indent();
281       Print(D->getAccess());
282       Out << ":\n";
283       Indentation += Policy.Indentation;
284       continue;
285     }
286
287     this->Indent();
288     Visit(*D);
289
290     // FIXME: Need to be able to tell the DeclPrinter when
291     const char *Terminator = 0;
292     if (isa<FunctionDecl>(*D) &&
293         cast<FunctionDecl>(*D)->isThisDeclarationADefinition())
294       Terminator = 0;
295     else if (isa<ObjCMethodDecl>(*D) && cast<ObjCMethodDecl>(*D)->getBody())
296       Terminator = 0;
297     else if (isa<NamespaceDecl>(*D) || isa<LinkageSpecDecl>(*D) ||
298              isa<ObjCImplementationDecl>(*D) ||
299              isa<ObjCInterfaceDecl>(*D) ||
300              isa<ObjCProtocolDecl>(*D) ||
301              isa<ObjCCategoryImplDecl>(*D) ||
302              isa<ObjCCategoryDecl>(*D))
303       Terminator = 0;
304     else if (isa<EnumConstantDecl>(*D)) {
305       DeclContext::decl_iterator Next = D;
306       ++Next;
307       if (Next != DEnd)
308         Terminator = ",";
309     } else
310       Terminator = ";";
311
312     if (Terminator)
313       Out << Terminator;
314     Out << "\n";
315   }
316
317   if (!Decls.empty())
318     ProcessDeclGroup(Decls);
319
320   if (Indent)
321     Indentation -= Policy.Indentation;
322 }
323
324 void DeclPrinter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
325   VisitDeclContext(D, false);
326 }
327
328 void DeclPrinter::VisitTypedefDecl(TypedefDecl *D) {
329   if (!Policy.SuppressSpecifiers) {
330     Out << "typedef ";
331     
332     if (D->isModulePrivate())
333       Out << "__module_private__ ";
334   }
335   D->getUnderlyingType().print(Out, Policy, D->getName());
336   prettyPrintAttributes(D);
337 }
338
339 void DeclPrinter::VisitTypeAliasDecl(TypeAliasDecl *D) {
340   Out << "using " << *D << " = " << D->getUnderlyingType().getAsString(Policy);
341 }
342
343 void DeclPrinter::VisitEnumDecl(EnumDecl *D) {
344   if (!Policy.SuppressSpecifiers && D->isModulePrivate())
345     Out << "__module_private__ ";
346   Out << "enum ";
347   if (D->isScoped()) {
348     if (D->isScopedUsingClassTag())
349       Out << "class ";
350     else
351       Out << "struct ";
352   }
353   Out << *D;
354
355   if (D->isFixed())
356     Out << " : " << D->getIntegerType().stream(Policy);
357
358   if (D->isCompleteDefinition()) {
359     Out << " {\n";
360     VisitDeclContext(D);
361     Indent() << "}";
362   }
363   prettyPrintAttributes(D);
364 }
365
366 void DeclPrinter::VisitRecordDecl(RecordDecl *D) {
367   if (!Policy.SuppressSpecifiers && D->isModulePrivate())
368     Out << "__module_private__ ";
369   Out << D->getKindName();
370   if (D->getIdentifier())
371     Out << ' ' << *D;
372
373   if (D->isCompleteDefinition()) {
374     Out << " {\n";
375     VisitDeclContext(D);
376     Indent() << "}";
377   }
378 }
379
380 void DeclPrinter::VisitEnumConstantDecl(EnumConstantDecl *D) {
381   Out << *D;
382   if (Expr *Init = D->getInitExpr()) {
383     Out << " = ";
384     Init->printPretty(Out, Context, 0, Policy, Indentation);
385   }
386 }
387
388 void DeclPrinter::VisitFunctionDecl(FunctionDecl *D) {
389   if (!Policy.SuppressSpecifiers) {
390     switch (D->getStorageClassAsWritten()) {
391     case SC_None: break;
392     case SC_Extern: Out << "extern "; break;
393     case SC_Static: Out << "static "; break;
394     case SC_PrivateExtern: Out << "__private_extern__ "; break;
395     case SC_Auto: case SC_Register: case SC_OpenCLWorkGroupLocal:
396       llvm_unreachable("invalid for functions");
397     }
398
399     if (D->isInlineSpecified())  Out << "inline ";
400     if (D->isVirtualAsWritten()) Out << "virtual ";
401     if (D->isModulePrivate())    Out << "__module_private__ ";
402   }
403
404   PrintingPolicy SubPolicy(Policy);
405   SubPolicy.SuppressSpecifiers = false;
406   std::string Proto = D->getNameInfo().getAsString();
407
408   QualType Ty = D->getType();
409   while (const ParenType *PT = dyn_cast<ParenType>(Ty)) {
410     Proto = '(' + Proto + ')';
411     Ty = PT->getInnerType();
412   }
413
414   if (isa<FunctionType>(Ty)) {
415     const FunctionType *AFT = Ty->getAs<FunctionType>();
416     const FunctionProtoType *FT = 0;
417     if (D->hasWrittenPrototype())
418       FT = dyn_cast<FunctionProtoType>(AFT);
419
420     Proto += "(";
421     if (FT) {
422       llvm::raw_string_ostream POut(Proto);
423       DeclPrinter ParamPrinter(POut, Context, SubPolicy, Indentation);
424       for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
425         if (i) POut << ", ";
426         ParamPrinter.VisitParmVarDecl(D->getParamDecl(i));
427       }
428
429       if (FT->isVariadic()) {
430         if (D->getNumParams()) POut << ", ";
431         POut << "...";
432       }
433     } else if (D->doesThisDeclarationHaveABody() && !D->hasPrototype()) {
434       for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
435         if (i)
436           Proto += ", ";
437         Proto += D->getParamDecl(i)->getNameAsString();
438       }
439     }
440
441     Proto += ")";
442     
443     if (FT) {
444       if (FT->isConst())
445         Proto += " const";
446       if (FT->isVolatile())
447         Proto += " volatile";
448       if (FT->isRestrict())
449         Proto += " restrict";
450     }
451
452     if (FT && FT->hasDynamicExceptionSpec()) {
453       Proto += " throw(";
454       if (FT->getExceptionSpecType() == EST_MSAny)
455         Proto += "...";
456       else 
457         for (unsigned I = 0, N = FT->getNumExceptions(); I != N; ++I) {
458           if (I)
459             Proto += ", ";
460
461           Proto += FT->getExceptionType(I).getAsString(SubPolicy);;
462         }
463       Proto += ")";
464     } else if (FT && isNoexceptExceptionSpec(FT->getExceptionSpecType())) {
465       Proto += " noexcept";
466       if (FT->getExceptionSpecType() == EST_ComputedNoexcept) {
467         Proto += "(";
468         llvm::raw_string_ostream EOut(Proto);
469         FT->getNoexceptExpr()->printPretty(EOut, Context, 0, SubPolicy,
470                                            Indentation);
471         EOut.flush();
472         Proto += EOut.str();
473         Proto += ")";
474       }
475     }
476
477     if (CXXConstructorDecl *CDecl = dyn_cast<CXXConstructorDecl>(D)) {
478       bool HasInitializerList = false;
479       for (CXXConstructorDecl::init_const_iterator B = CDecl->init_begin(),
480            E = CDecl->init_end();
481            B != E; ++B) {
482         CXXCtorInitializer * BMInitializer = (*B);
483         if (BMInitializer->isInClassMemberInitializer())
484           continue;
485
486         if (!HasInitializerList) {
487           Proto += " : ";
488           Out << Proto;
489           Proto.clear();
490           HasInitializerList = true;
491         } else
492           Out << ", ";
493
494         if (BMInitializer->isAnyMemberInitializer()) {
495           FieldDecl *FD = BMInitializer->getAnyMember();
496           Out << *FD;
497         } else {
498           Out << QualType(BMInitializer->getBaseClass(), 0).getAsString(Policy);
499         }
500         
501         Out << "(";
502         if (!BMInitializer->getInit()) {
503           // Nothing to print
504         } else {
505           Expr *Init = BMInitializer->getInit();
506           if (ExprWithCleanups *Tmp = dyn_cast<ExprWithCleanups>(Init))
507             Init = Tmp->getSubExpr();
508           
509           Init = Init->IgnoreParens();
510           
511           Expr *SimpleInit = 0;
512           Expr **Args = 0;
513           unsigned NumArgs = 0;
514           if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
515             Args = ParenList->getExprs();
516             NumArgs = ParenList->getNumExprs();
517           } else if (CXXConstructExpr *Construct
518                                         = dyn_cast<CXXConstructExpr>(Init)) {
519             Args = Construct->getArgs();
520             NumArgs = Construct->getNumArgs();
521           } else
522             SimpleInit = Init;
523           
524           if (SimpleInit)
525             SimpleInit->printPretty(Out, Context, 0, Policy, Indentation);
526           else {
527             for (unsigned I = 0; I != NumArgs; ++I) {
528               if (isa<CXXDefaultArgExpr>(Args[I]))
529                 break;
530               
531               if (I)
532                 Out << ", ";
533               Args[I]->printPretty(Out, Context, 0, Policy, Indentation);
534             }
535           }
536         }
537         Out << ")";
538       }
539     }
540     else
541       AFT->getResultType().print(Out, Policy, Proto);
542   } else {
543     Ty.print(Out, Policy, Proto);
544   }
545
546   prettyPrintAttributes(D);
547
548   if (D->isPure())
549     Out << " = 0";
550   else if (D->isDeletedAsWritten())
551     Out << " = delete";
552   else if (D->doesThisDeclarationHaveABody()) {
553     if (!D->hasPrototype() && D->getNumParams()) {
554       // This is a K&R function definition, so we need to print the
555       // parameters.
556       Out << '\n';
557       DeclPrinter ParamPrinter(Out, Context, SubPolicy, Indentation);
558       Indentation += Policy.Indentation;
559       for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
560         Indent();
561         ParamPrinter.VisitParmVarDecl(D->getParamDecl(i));
562         Out << ";\n";
563       }
564       Indentation -= Policy.Indentation;
565     } else
566       Out << ' ';
567
568     D->getBody()->printPretty(Out, Context, 0, SubPolicy, Indentation);
569     Out << '\n';
570   }
571 }
572
573 void DeclPrinter::VisitFieldDecl(FieldDecl *D) {
574   if (!Policy.SuppressSpecifiers && D->isMutable())
575     Out << "mutable ";
576   if (!Policy.SuppressSpecifiers && D->isModulePrivate())
577     Out << "__module_private__ ";
578
579   Out << D->getType().stream(Policy, D->getName());
580
581   if (D->isBitField()) {
582     Out << " : ";
583     D->getBitWidth()->printPretty(Out, Context, 0, Policy, Indentation);
584   }
585
586   Expr *Init = D->getInClassInitializer();
587   if (!Policy.SuppressInitializers && Init) {
588     if (D->getInClassInitStyle() == ICIS_ListInit)
589       Out << " ";
590     else
591       Out << " = ";
592     Init->printPretty(Out, Context, 0, Policy, Indentation);
593   }
594   prettyPrintAttributes(D);
595 }
596
597 void DeclPrinter::VisitLabelDecl(LabelDecl *D) {
598   Out << *D << ":";
599 }
600
601
602 void DeclPrinter::VisitVarDecl(VarDecl *D) {
603   StorageClass SCAsWritten = D->getStorageClassAsWritten();
604   if (!Policy.SuppressSpecifiers && SCAsWritten != SC_None)
605     Out << VarDecl::getStorageClassSpecifierString(SCAsWritten) << " ";
606
607   if (!Policy.SuppressSpecifiers && D->isThreadSpecified())
608     Out << "__thread ";
609   if (!Policy.SuppressSpecifiers && D->isModulePrivate())
610     Out << "__module_private__ ";
611
612   QualType T = D->getType();
613   if (ParmVarDecl *Parm = dyn_cast<ParmVarDecl>(D))
614     T = Parm->getOriginalType();
615   T.print(Out, Policy, D->getName());
616   Expr *Init = D->getInit();
617   if (!Policy.SuppressInitializers && Init) {
618     bool ImplicitInit = false;
619     if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init))
620       ImplicitInit = D->getInitStyle() == VarDecl::CallInit &&
621           Construct->getNumArgs() == 0 && !Construct->isListInitialization();
622     if (!ImplicitInit) {
623       if (D->getInitStyle() == VarDecl::CallInit)
624         Out << "(";
625       else if (D->getInitStyle() == VarDecl::CInit) {
626         Out << " = ";
627       }
628       Init->printPretty(Out, Context, 0, Policy, Indentation);
629       if (D->getInitStyle() == VarDecl::CallInit)
630         Out << ")";
631     }
632   }
633   prettyPrintAttributes(D);
634 }
635
636 void DeclPrinter::VisitParmVarDecl(ParmVarDecl *D) {
637   VisitVarDecl(D);
638 }
639
640 void DeclPrinter::VisitFileScopeAsmDecl(FileScopeAsmDecl *D) {
641   Out << "__asm (";
642   D->getAsmString()->printPretty(Out, Context, 0, Policy, Indentation);
643   Out << ")";
644 }
645
646 void DeclPrinter::VisitImportDecl(ImportDecl *D) {
647   Out << "@__experimental_modules_import " << D->getImportedModule()->getFullModuleName()
648       << ";\n";
649 }
650
651 void DeclPrinter::VisitStaticAssertDecl(StaticAssertDecl *D) {
652   Out << "static_assert(";
653   D->getAssertExpr()->printPretty(Out, Context, 0, Policy, Indentation);
654   Out << ", ";
655   D->getMessage()->printPretty(Out, Context, 0, Policy, Indentation);
656   Out << ")";
657 }
658
659 //----------------------------------------------------------------------------
660 // C++ declarations
661 //----------------------------------------------------------------------------
662 void DeclPrinter::VisitNamespaceDecl(NamespaceDecl *D) {
663   if (D->isInline())
664     Out << "inline ";
665   Out << "namespace " << *D << " {\n";
666   VisitDeclContext(D);
667   Indent() << "}";
668 }
669
670 void DeclPrinter::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
671   Out << "using namespace ";
672   if (D->getQualifier())
673     D->getQualifier()->print(Out, Policy);
674   Out << *D->getNominatedNamespaceAsWritten();
675 }
676
677 void DeclPrinter::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
678   Out << "namespace " << *D << " = ";
679   if (D->getQualifier())
680     D->getQualifier()->print(Out, Policy);
681   Out << *D->getAliasedNamespace();
682 }
683
684 void DeclPrinter::VisitCXXRecordDecl(CXXRecordDecl *D) {
685   if (!Policy.SuppressSpecifiers && D->isModulePrivate())
686     Out << "__module_private__ ";
687   Out << D->getKindName();
688   if (D->getIdentifier())
689     Out << ' ' << *D;
690
691   if (D->isCompleteDefinition()) {
692     // Print the base classes
693     if (D->getNumBases()) {
694       Out << " : ";
695       for (CXXRecordDecl::base_class_iterator Base = D->bases_begin(),
696              BaseEnd = D->bases_end(); Base != BaseEnd; ++Base) {
697         if (Base != D->bases_begin())
698           Out << ", ";
699
700         if (Base->isVirtual())
701           Out << "virtual ";
702
703         AccessSpecifier AS = Base->getAccessSpecifierAsWritten();
704         if (AS != AS_none)
705           Print(AS);
706         Out << " " << Base->getType().getAsString(Policy);
707
708         if (Base->isPackExpansion())
709           Out << "...";
710       }
711     }
712
713     // Print the class definition
714     // FIXME: Doesn't print access specifiers, e.g., "public:"
715     Out << " {\n";
716     VisitDeclContext(D);
717     Indent() << "}";
718   }
719 }
720
721 void DeclPrinter::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
722   const char *l;
723   if (D->getLanguage() == LinkageSpecDecl::lang_c)
724     l = "C";
725   else {
726     assert(D->getLanguage() == LinkageSpecDecl::lang_cxx &&
727            "unknown language in linkage specification");
728     l = "C++";
729   }
730
731   Out << "extern \"" << l << "\" ";
732   if (D->hasBraces()) {
733     Out << "{\n";
734     VisitDeclContext(D);
735     Indent() << "}";
736   } else
737     Visit(*D->decls_begin());
738 }
739
740 void DeclPrinter::PrintTemplateParameters(
741     const TemplateParameterList *Params, const TemplateArgumentList *Args = 0) {
742   assert(Params);
743   assert(!Args || Params->size() == Args->size());
744
745   Out << "template <";
746
747   for (unsigned i = 0, e = Params->size(); i != e; ++i) {
748     if (i != 0)
749       Out << ", ";
750
751     const Decl *Param = Params->getParam(i);
752     if (const TemplateTypeParmDecl *TTP =
753           dyn_cast<TemplateTypeParmDecl>(Param)) {
754
755       if (TTP->wasDeclaredWithTypename())
756         Out << "typename ";
757       else
758         Out << "class ";
759
760       if (TTP->isParameterPack())
761         Out << "... ";
762
763       Out << *TTP;
764
765       if (Args) {
766         Out << " = ";
767         Args->get(i).print(Policy, Out);
768       } else if (TTP->hasDefaultArgument()) {
769         Out << " = ";
770         Out << TTP->getDefaultArgument().getAsString(Policy);
771       };
772     } else if (const NonTypeTemplateParmDecl *NTTP =
773                  dyn_cast<NonTypeTemplateParmDecl>(Param)) {
774       Out << NTTP->getType().getAsString(Policy);
775
776       if (NTTP->isParameterPack() && !isa<PackExpansionType>(NTTP->getType()))
777         Out << "...";
778         
779       if (IdentifierInfo *Name = NTTP->getIdentifier()) {
780         Out << ' ';
781         Out << Name->getName();
782       }
783
784       if (Args) {
785         Out << " = ";
786         Args->get(i).print(Policy, Out);
787       } else if (NTTP->hasDefaultArgument()) {
788         Out << " = ";
789         NTTP->getDefaultArgument()->printPretty(Out, Context, 0, Policy,
790                                                 Indentation);
791       }
792     } else if (const TemplateTemplateParmDecl *TTPD =
793                  dyn_cast<TemplateTemplateParmDecl>(Param)) {
794       VisitTemplateDecl(TTPD);
795       // FIXME: print the default argument, if present.
796     }
797   }
798
799   Out << "> ";
800 }
801
802 void DeclPrinter::VisitTemplateDecl(const TemplateDecl *D) {
803   PrintTemplateParameters(D->getTemplateParameters());
804
805   if (const TemplateTemplateParmDecl *TTP =
806         dyn_cast<TemplateTemplateParmDecl>(D)) {
807     Out << "class ";
808     if (TTP->isParameterPack())
809       Out << "...";
810     Out << D->getName();
811   } else {
812     Visit(D->getTemplatedDecl());
813   }
814 }
815
816 void DeclPrinter::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
817   if (PrintInstantiation) {
818     TemplateParameterList *Params = D->getTemplateParameters();
819     for (FunctionTemplateDecl::spec_iterator I = D->spec_begin(), E = D->spec_end();
820          I != E; ++I) {
821       PrintTemplateParameters(Params, (*I)->getTemplateSpecializationArgs());
822       Visit(*I);
823     }
824   }
825
826   return VisitRedeclarableTemplateDecl(D);
827 }
828
829 void DeclPrinter::VisitClassTemplateDecl(ClassTemplateDecl *D) {
830   if (PrintInstantiation) {
831     TemplateParameterList *Params = D->getTemplateParameters();
832     for (ClassTemplateDecl::spec_iterator I = D->spec_begin(), E = D->spec_end();
833          I != E; ++I) {
834       PrintTemplateParameters(Params, &(*I)->getTemplateArgs());
835       Visit(*I);
836       Out << '\n';
837     }
838   }
839
840   return VisitRedeclarableTemplateDecl(D);
841 }
842
843 //----------------------------------------------------------------------------
844 // Objective-C declarations
845 //----------------------------------------------------------------------------
846
847 void DeclPrinter::VisitObjCMethodDecl(ObjCMethodDecl *OMD) {
848   if (OMD->isInstanceMethod())
849     Out << "- ";
850   else
851     Out << "+ ";
852   if (!OMD->getResultType().isNull())
853     Out << '(' << OMD->getResultType().getAsString(Policy) << ")";
854
855   std::string name = OMD->getSelector().getAsString();
856   std::string::size_type pos, lastPos = 0;
857   for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
858        E = OMD->param_end(); PI != E; ++PI) {
859     // FIXME: selector is missing here!
860     pos = name.find_first_of(':', lastPos);
861     Out << " " << name.substr(lastPos, pos - lastPos);
862     Out << ":(" << (*PI)->getType().getAsString(Policy) << ')' << **PI;
863     lastPos = pos + 1;
864   }
865
866   if (OMD->param_begin() == OMD->param_end())
867     Out << " " << name;
868
869   if (OMD->isVariadic())
870       Out << ", ...";
871
872   if (OMD->getBody()) {
873     Out << ' ';
874     OMD->getBody()->printPretty(Out, Context, 0, Policy);
875     Out << '\n';
876   }
877 }
878
879 void DeclPrinter::VisitObjCImplementationDecl(ObjCImplementationDecl *OID) {
880   std::string I = OID->getNameAsString();
881   ObjCInterfaceDecl *SID = OID->getSuperClass();
882
883   if (SID)
884     Out << "@implementation " << I << " : " << *SID;
885   else
886     Out << "@implementation " << I;
887   Out << "\n";
888   VisitDeclContext(OID, false);
889   Out << "@end";
890 }
891
892 void DeclPrinter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *OID) {
893   std::string I = OID->getNameAsString();
894   ObjCInterfaceDecl *SID = OID->getSuperClass();
895
896   if (!OID->isThisDeclarationADefinition()) {
897     Out << "@class " << I << ";";
898     return;
899   }
900   
901   if (SID)
902     Out << "@interface " << I << " : " << *SID;
903   else
904     Out << "@interface " << I;
905
906   // Protocols?
907   const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
908   if (!Protocols.empty()) {
909     for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
910          E = Protocols.end(); I != E; ++I)
911       Out << (I == Protocols.begin() ? '<' : ',') << **I;
912   }
913
914   if (!Protocols.empty())
915     Out << "> ";
916
917   if (OID->ivar_size() > 0) {
918     Out << "{\n";
919     Indentation += Policy.Indentation;
920     for (ObjCInterfaceDecl::ivar_iterator I = OID->ivar_begin(),
921          E = OID->ivar_end(); I != E; ++I) {
922       Indent() << I->getType().getAsString(Policy) << ' ' << **I << ";\n";
923     }
924     Indentation -= Policy.Indentation;
925     Out << "}\n";
926   }
927
928   VisitDeclContext(OID, false);
929   Out << "@end";
930   // FIXME: implement the rest...
931 }
932
933 void DeclPrinter::VisitObjCProtocolDecl(ObjCProtocolDecl *PID) {
934   if (!PID->isThisDeclarationADefinition()) {
935     Out << "@protocol " << PID->getIdentifier() << ";\n";
936     return;
937   }
938   
939   Out << "@protocol " << *PID << '\n';
940   VisitDeclContext(PID, false);
941   Out << "@end";
942 }
943
944 void DeclPrinter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *PID) {
945   Out << "@implementation " << *PID->getClassInterface() << '(' << *PID <<")\n";
946
947   VisitDeclContext(PID, false);
948   Out << "@end";
949   // FIXME: implement the rest...
950 }
951
952 void DeclPrinter::VisitObjCCategoryDecl(ObjCCategoryDecl *PID) {
953   Out << "@interface " << *PID->getClassInterface() << '(' << *PID << ")\n";
954   VisitDeclContext(PID, false);
955   Out << "@end";
956
957   // FIXME: implement the rest...
958 }
959
960 void DeclPrinter::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *AID) {
961   Out << "@compatibility_alias " << *AID
962       << ' ' << *AID->getClassInterface() << ";\n";
963 }
964
965 /// PrintObjCPropertyDecl - print a property declaration.
966 ///
967 void DeclPrinter::VisitObjCPropertyDecl(ObjCPropertyDecl *PDecl) {
968   if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Required)
969     Out << "@required\n";
970   else if (PDecl->getPropertyImplementation() == ObjCPropertyDecl::Optional)
971     Out << "@optional\n";
972
973   Out << "@property";
974   if (PDecl->getPropertyAttributes() != ObjCPropertyDecl::OBJC_PR_noattr) {
975     bool first = true;
976     Out << " (";
977     if (PDecl->getPropertyAttributes() &
978         ObjCPropertyDecl::OBJC_PR_readonly) {
979       Out << (first ? ' ' : ',') << "readonly";
980       first = false;
981     }
982
983     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_getter) {
984       Out << (first ? ' ' : ',') << "getter = "
985           << PDecl->getGetterName().getAsString();
986       first = false;
987     }
988     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_setter) {
989       Out << (first ? ' ' : ',') << "setter = "
990           << PDecl->getSetterName().getAsString();
991       first = false;
992     }
993
994     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_assign) {
995       Out << (first ? ' ' : ',') << "assign";
996       first = false;
997     }
998
999     if (PDecl->getPropertyAttributes() &
1000         ObjCPropertyDecl::OBJC_PR_readwrite) {
1001       Out << (first ? ' ' : ',') << "readwrite";
1002       first = false;
1003     }
1004
1005     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_retain) {
1006       Out << (first ? ' ' : ',') << "retain";
1007       first = false;
1008     }
1009
1010     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_strong) {
1011       Out << (first ? ' ' : ',') << "strong";
1012       first = false;
1013     }
1014
1015     if (PDecl->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_copy) {
1016       Out << (first ? ' ' : ',') << "copy";
1017       first = false;
1018     }
1019
1020     if (PDecl->getPropertyAttributes() &
1021         ObjCPropertyDecl::OBJC_PR_nonatomic) {
1022       Out << (first ? ' ' : ',') << "nonatomic";
1023       first = false;
1024     }
1025     if (PDecl->getPropertyAttributes() &
1026         ObjCPropertyDecl::OBJC_PR_atomic) {
1027       Out << (first ? ' ' : ',') << "atomic";
1028       first = false;
1029     }
1030     
1031     (void) first; // Silence dead store warning due to idiomatic code.
1032     Out << " )";
1033   }
1034   Out << ' ' << PDecl->getType().getAsString(Policy) << ' ' << *PDecl;
1035 }
1036
1037 void DeclPrinter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PID) {
1038   if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
1039     Out << "@synthesize ";
1040   else
1041     Out << "@dynamic ";
1042   Out << *PID->getPropertyDecl();
1043   if (PID->getPropertyIvarDecl())
1044     Out << '=' << *PID->getPropertyIvarDecl();
1045 }
1046
1047 void DeclPrinter::VisitUsingDecl(UsingDecl *D) {
1048   Out << "using ";
1049   D->getQualifier()->print(Out, Policy);
1050   Out << *D;
1051 }
1052
1053 void
1054 DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
1055   Out << "using typename ";
1056   D->getQualifier()->print(Out, Policy);
1057   Out << D->getDeclName();
1058 }
1059
1060 void DeclPrinter::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1061   Out << "using ";
1062   D->getQualifier()->print(Out, Policy);
1063   Out << D->getDeclName();
1064 }
1065
1066 void DeclPrinter::VisitUsingShadowDecl(UsingShadowDecl *D) {
1067   // ignore
1068 }