| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_INTERPRETER_BYTECODE_GENERATOR_H_ | 5 #ifndef V8_INTERPRETER_BYTECODE_GENERATOR_H_ |
| 6 #define V8_INTERPRETER_BYTECODE_GENERATOR_H_ | 6 #define V8_INTERPRETER_BYTECODE_GENERATOR_H_ |
| 7 | 7 |
| 8 #include "src/ast.h" | 8 #include "src/ast.h" |
| 9 #include "src/interpreter/bytecode-array-builder.h" | 9 #include "src/interpreter/bytecode-array-builder.h" |
| 10 #include "src/interpreter/bytecodes.h" | 10 #include "src/interpreter/bytecodes.h" |
| 11 | 11 |
| 12 namespace v8 { | 12 namespace v8 { |
| 13 namespace internal { | 13 namespace internal { |
| 14 namespace interpreter { | 14 namespace interpreter { |
| 15 | 15 |
| 16 class BytecodeGenerator : public AstVisitor { | 16 class BytecodeGenerator : public AstVisitor { |
| 17 public: | 17 public: |
| 18 BytecodeGenerator(Isolate* isolate, Zone* zone); | 18 BytecodeGenerator(Isolate* isolate, Zone* zone); |
| 19 virtual ~BytecodeGenerator(); | 19 virtual ~BytecodeGenerator(); |
| 20 | 20 |
| 21 Handle<BytecodeArray> MakeBytecode(CompilationInfo* info); | 21 Handle<BytecodeArray> MakeBytecode(CompilationInfo* info); |
| 22 | 22 |
| 23 #define DECLARE_VISIT(type) void Visit##type(type* node) override; | 23 #define DECLARE_VISIT(type) void Visit##type(type* node) override; |
| 24 AST_NODE_LIST(DECLARE_VISIT) | 24 AST_NODE_LIST(DECLARE_VISIT) |
| 25 #undef DECLARE_VISIT | 25 #undef DECLARE_VISIT |
| 26 | 26 |
| 27 private: | 27 private: |
| 28 class ControlScope; |
| 29 class ControlScopeForIteration; |
| 30 |
| 28 DEFINE_AST_VISITOR_SUBCLASS_MEMBERS(); | 31 DEFINE_AST_VISITOR_SUBCLASS_MEMBERS(); |
| 29 | 32 |
| 30 void VisitArithmeticExpression(BinaryOperation* binop); | 33 void VisitArithmeticExpression(BinaryOperation* binop); |
| 31 void VisitPropertyLoad(Register obj, Property* expr); | 34 void VisitPropertyLoad(Register obj, Property* expr); |
| 32 void VisitVariableLoad(Variable* variable); | 35 void VisitVariableLoad(Variable* variable); |
| 33 | 36 |
| 34 inline BytecodeArrayBuilder& builder() { return builder_; } | 37 inline BytecodeArrayBuilder* builder() { return &builder_; } |
| 35 inline Scope* scope() const { return scope_; } | 38 inline Scope* scope() const { return scope_; } |
| 36 inline void set_scope(Scope* scope) { scope_ = scope; } | 39 inline void set_scope(Scope* scope) { scope_ = scope; } |
| 40 inline ControlScope* control_scope() const { return control_scope_; } |
| 41 inline void set_control_scope(ControlScope* scope) { control_scope_ = scope; } |
| 37 inline CompilationInfo* info() const { return info_; } | 42 inline CompilationInfo* info() const { return info_; } |
| 38 inline void set_info(CompilationInfo* info) { info_ = info; } | 43 inline void set_info(CompilationInfo* info) { info_ = info; } |
| 39 | 44 |
| 40 LanguageMode language_mode() const; | 45 LanguageMode language_mode() const; |
| 41 int feedback_index(FeedbackVectorICSlot slot) const; | 46 int feedback_index(FeedbackVectorICSlot slot) const; |
| 42 | 47 |
| 43 BytecodeArrayBuilder builder_; | 48 BytecodeArrayBuilder builder_; |
| 44 CompilationInfo* info_; | 49 CompilationInfo* info_; |
| 45 Scope* scope_; | 50 Scope* scope_; |
| 51 ControlScope* control_scope_; |
| 46 }; | 52 }; |
| 47 | 53 |
| 48 } // namespace interpreter | 54 } // namespace interpreter |
| 49 } // namespace internal | 55 } // namespace internal |
| 50 } // namespace v8 | 56 } // namespace v8 |
| 51 | 57 |
| 52 #endif // V8_INTERPRETER_BYTECODE_GENERATOR_H_ | 58 #endif // V8_INTERPRETER_BYTECODE_GENERATOR_H_ |
| OLD | NEW |