PrettyPrinter.h revision 9fe529f15723018a2fecdcc35611210f92ed2b82
142a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//===--- PrettyPrinter.h - Classes for aiding with AST printing -*- C++ -*-===//
242a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//
342a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//                     The LLVM Compiler Infrastructure
442a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//
50bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// This file is distributed under the University of Illinois Open Source
60bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// License. See LICENSE.TXT for details.
742a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//
842a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//===----------------------------------------------------------------------===//
942a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//
1042a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//  This file defines the PrinterHelper interface.
1142a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//
1242a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek//===----------------------------------------------------------------------===//
1342a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek
1442a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek#ifndef LLVM_CLANG_AST_PRETTY_PRINTER_H
1542a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek#define LLVM_CLANG_AST_PRETTY_PRINTER_H
1642a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek
17d47d3b0cfeb7e8564ff77f48130fe63282b6d127Chris Lattner#include "clang/Basic/LLVM.h"
1830a2e16f6c27f888dd11eba6bbbae1e980078fcbChandler Carruth#include "clang/Basic/LangOptions.h"
197107d360db751aa974285ae2136aed76b6691b86Chandler Carruth
2042a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremeneknamespace clang {
2142a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek
222fa67efeaf66a9332c30a026dc1c21bef6c33a6cBenjamin Kramerclass LangOptions;
232fa67efeaf66a9332c30a026dc1c21bef6c33a6cBenjamin Kramerclass SourceManager;
2442a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenekclass Stmt;
25d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregorclass TagDecl;
26d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor
2742a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenekclass PrinterHelper {
2842a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenekpublic:
2942a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek  virtual ~PrinterHelper();
30d47d3b0cfeb7e8564ff77f48130fe63282b6d127Chris Lattner  virtual bool handledStmt(Stmt* E, raw_ostream& OS) = 0;
3142a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek};
3242a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek
33d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor/// \brief Describes how types, statements, expressions, and
34d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor/// declarations should be printed.
35d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregorstruct PrintingPolicy {
36d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// \brief Create a default printing policy for C.
371eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  PrintingPolicy(const LangOptions &LO)
38d1420c6fa788669e49f21e184927c7833881e399Richard Smith    : LangOpts(LO), Indentation(2), SuppressSpecifiers(false),
390daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara      SuppressTagKeyword(false), SuppressTag(false), SuppressScope(false),
4025270b6e6a8416b7532cfe552b41794418ea19b1Douglas Gregor      SuppressUnwrittenScope(false), SuppressInitializers(false),
41d1420c6fa788669e49f21e184927c7833881e399Richard Smith      ConstantArraySizeAsWritten(false), AnonymousTagLocations(true),
429fe529f15723018a2fecdcc35611210f92ed2b82Fariborz Jahanian      SuppressStrongLifetime(false), SuppressLifetimeQualifiers(false),
439fe529f15723018a2fecdcc35611210f92ed2b82Fariborz Jahanian      Bool(LO.Bool), TerseOutput(false), PolishForDeclaration(false),
4415f92bad58c8650b1306729744b1a1230197497aHans Wennborg      MSWChar(LO.MicrosoftExt && !LO.WChar) { }
45d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor
46e4f2142d00fa5fdb580c4e2413da91882d955381Chris Lattner  /// \brief What language we're printing.
478987b2385d9ba63ada66e1344ace79b04d5cb5c3Douglas Gregor  LangOptions LangOpts;
48d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor
49d1420c6fa788669e49f21e184927c7833881e399Richard Smith  /// \brief The number of spaces to use to indent each line.
50d1420c6fa788669e49f21e184927c7833881e399Richard Smith  unsigned Indentation : 8;
51d1420c6fa788669e49f21e184927c7833881e399Richard Smith
5242f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// \brief Whether we should suppress printing of the actual specifiers for
5342f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// the given type or declaration.
54d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  ///
55d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// This flag is only used when we are printing declarators beyond
56d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// the first declarator within a declaration group. For example, given:
57d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  ///
58d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// \code
59d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// const int *x, *y;
60d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// \endcode
61d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  ///
6242f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// SuppressSpecifiers will be false when printing the
63d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// declaration for "x", so that we will print "int *x"; it will be
64d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// \c true when we print "y", so that we suppress printing the
65d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor  /// "const int" type specifier and instead only print the "*y".
6642f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  bool SuppressSpecifiers : 1;
6742f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman
680daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  /// \brief Whether type printing should skip printing the tag keyword.
690daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  ///
700daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  /// This is used when printing the inner type of elaborated types,
710daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  /// (as the tag keyword is part of the elaborated type):
720daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  ///
730daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  /// \code
740daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  /// struct Geometry::Point;
750daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  /// \endcode
760daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara  bool SuppressTagKeyword : 1;
770daaf32723ac78549c507c2a68a5300502703673Abramo Bagnara
7842f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// \brief Whether type printing should skip printing the actual tag type.
7942f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  ///
8042f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// This is used when the caller needs to print a tag definition in front
8142f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// of the type, as in constructs like the following:
8242f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  ///
8342f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// \code
8442f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// typedef struct { int x, y; } Point;
8542f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  /// \endcode
8642f42c0dd5cf71fbfc6fa282d03079a902f6e342Eli Friedman  bool SuppressTag : 1;
87d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor
882191b20bfb31fc0e22a158f6b4204cd0b7dbd0fdJohn McCall  /// \brief Suppresses printing of scope specifiers.
892191b20bfb31fc0e22a158f6b4204cd0b7dbd0fdJohn McCall  bool SuppressScope : 1;
902191b20bfb31fc0e22a158f6b4204cd0b7dbd0fdJohn McCall
9125270b6e6a8416b7532cfe552b41794418ea19b1Douglas Gregor  /// \brief Suppress printing parts of scope specifiers that don't need
9225270b6e6a8416b7532cfe552b41794418ea19b1Douglas Gregor  /// to be written, e.g., for inline or anonymous namespaces.
9325270b6e6a8416b7532cfe552b41794418ea19b1Douglas Gregor  bool SuppressUnwrittenScope : 1;
9425270b6e6a8416b7532cfe552b41794418ea19b1Douglas Gregor
95ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  /// \brief Suppress printing of variable initializers.
96ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  ///
97ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  /// This flag is used when printing the loop variable in a for-range
98ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  /// statement. For example, given:
99ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  ///
100ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  /// \code
101ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  /// for (auto x : coll)
102ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  /// \endcode
103ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  ///
104ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  /// SuppressInitializers will be true when printing "auto x", so that the
105ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  /// internal initializer constructed for x will not be printed.
106ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith  bool SuppressInitializers : 1;
107ad762fcdc16b9e4705b12b09d92b8c026212b906Richard Smith
1087e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// \brief Whether we should print the sizes of constant array expressions
1097e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// as written in the sources.
1107e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  ///
1117e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// This flag is determines whether arrays types declared as
1127e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  ///
1137e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// \code
1147e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// int a[4+10*10];
1157e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// char a[] = "A string";
1167e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// \endcode
1177e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  ///
1187e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// will be printed as written or as follows:
1197e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  ///
1207e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// \code
1217e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// int a[104];
1227e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// char a[9] = "A string";
1237e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  /// \endcode
1247e7eb3da052a6d80ddf2377cab0384c798f73f75Douglas Gregor  bool ConstantArraySizeAsWritten : 1;
12584139d6ef8967cfdb70d37378a7a65cc4827d44dDouglas Gregor
12684139d6ef8967cfdb70d37378a7a65cc4827d44dDouglas Gregor  /// \brief When printing an anonymous tag name, also print the location of
12784139d6ef8967cfdb70d37378a7a65cc4827d44dDouglas Gregor  /// that entity (e.g., "enum <anonymous at t.h:10:5>"). Otherwise, just
12884139d6ef8967cfdb70d37378a7a65cc4827d44dDouglas Gregor  /// prints "<anonymous>" for the name.
12984139d6ef8967cfdb70d37378a7a65cc4827d44dDouglas Gregor  bool AnonymousTagLocations : 1;
130f85e193739c953358c865005855253af4f68a497John McCall
131f85e193739c953358c865005855253af4f68a497John McCall  /// \brief When true, suppress printing of the __strong lifetime qualifier in
132f85e193739c953358c865005855253af4f68a497John McCall  /// ARC.
133f85e193739c953358c865005855253af4f68a497John McCall  unsigned SuppressStrongLifetime : 1;
13430c42404202d2e2512e51efc6066bd614cfdb5a4Douglas Gregor
1359fe529f15723018a2fecdcc35611210f92ed2b82Fariborz Jahanian  /// \brief When true, suppress printing of lifetime qualifier in
1369fe529f15723018a2fecdcc35611210f92ed2b82Fariborz Jahanian  /// ARC.
1379fe529f15723018a2fecdcc35611210f92ed2b82Fariborz Jahanian  unsigned SuppressLifetimeQualifiers : 1;
1389fe529f15723018a2fecdcc35611210f92ed2b82Fariborz Jahanian
13930c42404202d2e2512e51efc6066bd614cfdb5a4Douglas Gregor  /// \brief Whether we can use 'bool' rather than '_Bool', even if the language
14030c42404202d2e2512e51efc6066bd614cfdb5a4Douglas Gregor  /// doesn't actually have 'bool' (because, e.g., it is defined as a macro).
14130c42404202d2e2512e51efc6066bd614cfdb5a4Douglas Gregor  unsigned Bool : 1;
142d1420c6fa788669e49f21e184927c7833881e399Richard Smith
143d1fc82efd53ffda30f4f16041399d78f3bf0705fDmitri Gribenko  /// \brief Provide a 'terse' output.
144eb8f2efb17c74620510a38cb437e792ea9c76021Dmitri Gribenko  ///
145eb8f2efb17c74620510a38cb437e792ea9c76021Dmitri Gribenko  /// For example, in this mode we don't print function bodies, class members,
146eb8f2efb17c74620510a38cb437e792ea9c76021Dmitri Gribenko  /// declarations inside namespaces etc.  Effectively, this should print
147eb8f2efb17c74620510a38cb437e792ea9c76021Dmitri Gribenko  /// only the requested declaration.
148d1fc82efd53ffda30f4f16041399d78f3bf0705fDmitri Gribenko  unsigned TerseOutput : 1;
1491bfb00dabf83d8c8b95b7276b4c0ae3fd64832c8Fariborz Jahanian
15040902d817e5a73850045d8a0c9795bc5047ee000Fariborz Jahanian  /// \brief When true, do certain refinement needed for producing proper
15140902d817e5a73850045d8a0c9795bc5047ee000Fariborz Jahanian  /// declaration tag; such as, do not print attributes attached to the declaration.
1521bfb00dabf83d8c8b95b7276b4c0ae3fd64832c8Fariborz Jahanian  ///
15340902d817e5a73850045d8a0c9795bc5047ee000Fariborz Jahanian  unsigned PolishForDeclaration : 1;
15415f92bad58c8650b1306729744b1a1230197497aHans Wennborg
15515f92bad58c8650b1306729744b1a1230197497aHans Wennborg  /// \brief When true, print the built-in wchar_t type as __wchar_t. For use in
15615f92bad58c8650b1306729744b1a1230197497aHans Wennborg  /// Microsoft mode when wchar_t is not available.
15715f92bad58c8650b1306729744b1a1230197497aHans Wennborg  unsigned MSWChar : 1;
158d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor};
159d249e1d1f1498b81314459ceda19d6ff25c278adDouglas Gregor
16042a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek} // end namespace clang
16142a509f6a4f71bb805cc4abbb26722a34dffdddeTed Kremenek
1628467583c2704e7a9691ea56939a029015f0ade0aGabor Greif#endif
163