blob: 9ac72576409f961bbc173b5acdd8bc13674bb34f [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);
77};
78
79
80// Prints the AST structure
81class AstPrinter: public PrettyPrinter {
82 public:
83 AstPrinter();
84 virtual ~AstPrinter();
85
86 const char* PrintProgram(FunctionLiteral* program);
87
88 // Individual nodes
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +000089#define DECLARE_VISIT(type) virtual void Visit##type(type* node);
90 AST_NODE_LIST(DECLARE_VISIT)
91#undef DECLARE_VISIT
kasperl@chromium.orga5551262010-12-07 12:49:48 +000092
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000093 private:
94 friend class IndentedScope;
95 void PrintIndented(const char* txt);
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +000096 void PrintIndentedVisit(const char* s, AstNode* node);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000097
98 void PrintStatements(ZoneList<Statement*>* statements);
99 void PrintDeclarations(ZoneList<Declaration*>* declarations);
100 void PrintParameters(Scope* scope);
101 void PrintArguments(ZoneList<Expression*>* arguments);
102 void PrintCaseClause(CaseClause* clause);
103 void PrintLiteralIndented(const char* info, Handle<Object> value, bool quote);
104 void PrintLiteralWithModeIndented(const char* info,
105 Variable* var,
karlklose@chromium.org44bc7082011-04-11 12:33:05 +0000106 Handle<Object> value);
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000107 void PrintLabelsIndented(const char* info, ZoneStringList* labels);
108
109 void inc_indent() { indent_++; }
110 void dec_indent() { indent_--; }
111
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000112 int indent_;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000113};
114
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000115#endif // DEBUG
116
117} } // namespace v8::internal
118
119#endif // V8_PRETTYPRINTER_H_