blob: 6657ecd1458236793ab74fec3a09a11363f8b78c [file] [log] [blame]
yangguo@chromium.org78d1ad42012-02-09 13:53:47 +00001// Copyright 2012 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#ifndef V8_PRETTYPRINTER_H_
29#define V8_PRETTYPRINTER_H_
30
lrn@chromium.org1c092762011-05-09 09:42:16 +000031#include "allocation.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000032#include "ast.h"
33
kasperl@chromium.org71affb52009-05-26 05:44:31 +000034namespace v8 {
35namespace internal {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000036
37#ifdef DEBUG
38
ager@chromium.orga74f0da2008-12-03 16:05:52 +000039class PrettyPrinter: public AstVisitor {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040 public:
41 PrettyPrinter();
42 virtual ~PrettyPrinter();
43
44 // The following routines print a node into a string.
45 // The result string is alive as long as the PrettyPrinter is alive.
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000046 const char* Print(AstNode* node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000047 const char* PrintExpression(FunctionLiteral* program);
48 const char* PrintProgram(FunctionLiteral* program);
49
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000050 void Print(const char* format, ...);
51
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000052 // Print a node to stdout.
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000053 static void PrintOut(AstNode* node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000054
55 // Individual nodes
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000056#define DECLARE_VISIT(type) virtual void Visit##type(type* node);
57 AST_NODE_LIST(DECLARE_VISIT)
58#undef DECLARE_VISIT
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000059
60 private:
61 char* output_; // output string buffer
62 int size_; // output_ size
63 int pos_; // current printing position
64
65 protected:
66 void Init();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000067 const char* Output() const { return output_; }
68
69 virtual void PrintStatements(ZoneList<Statement*>* statements);
70 void PrintLabels(ZoneStringList* labels);
71 virtual void PrintArguments(ZoneList<Expression*>* arguments);
72 void PrintLiteral(Handle<Object> value, bool quote);
73 void PrintParameters(Scope* scope);
74 void PrintDeclarations(ZoneList<Declaration*>* declarations);
75 void PrintFunctionLiteral(FunctionLiteral* function);
76 void PrintCaseClause(CaseClause* clause);
yangguo@chromium.orga6bbcc82012-12-21 12:35:02 +000077
78 DEFINE_AST_VISITOR_SUBCLASS_MEMBERS();
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000079};
80
81
82// Prints the AST structure
83class AstPrinter: public PrettyPrinter {
84 public:
85 AstPrinter();
86 virtual ~AstPrinter();
87
88 const char* PrintProgram(FunctionLiteral* program);
89
90 // Individual nodes
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000091#define DECLARE_VISIT(type) virtual void Visit##type(type* node);
92 AST_NODE_LIST(DECLARE_VISIT)
93#undef DECLARE_VISIT
kasperl@chromium.orga5551262010-12-07 12:49:48 +000094
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000095 private:
96 friend class IndentedScope;
97 void PrintIndented(const char* txt);
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000098 void PrintIndentedVisit(const char* s, AstNode* node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000099
100 void PrintStatements(ZoneList<Statement*>* statements);
101 void PrintDeclarations(ZoneList<Declaration*>* declarations);
102 void PrintParameters(Scope* scope);
103 void PrintArguments(ZoneList<Expression*>* arguments);
104 void PrintCaseClause(CaseClause* clause);
105 void PrintLiteralIndented(const char* info, Handle<Object> value, bool quote);
106 void PrintLiteralWithModeIndented(const char* info,
107 Variable* var,
karlklose@chromium.org44bc7082011-04-11 12:33:05 +0000108 Handle<Object> value);
ulan@chromium.org57ff8812013-05-10 08:16:55 +0000109 void PrintLabelsIndented(ZoneStringList* labels);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000110
111 void inc_indent() { indent_++; }
112 void dec_indent() { indent_--; }
113
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000114 int indent_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000115};
116
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000117#endif // DEBUG
118
119} } // namespace v8::internal
120
121#endif // V8_PRETTYPRINTER_H_