| 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/ast.h" | 8 #include "src/ast/ast.h" |
| 9 #include "src/interpreter/bytecode-array-builder.h" | 9 #include "src/interpreter/bytecode-array-builder.h" |
| 10 #include "src/interpreter/bytecode-label.h" | 10 #include "src/interpreter/bytecode-label.h" |
| 11 #include "src/interpreter/bytecode-register.h" | 11 #include "src/interpreter/bytecode-register.h" |
| 12 #include "src/interpreter/bytecodes.h" | 12 #include "src/interpreter/bytecodes.h" |
| 13 | 13 |
| 14 namespace v8 { | 14 namespace v8 { |
| 15 namespace internal { | 15 namespace internal { |
| 16 | 16 |
| 17 class CompilationInfo; | 17 class CompilationInfo; |
| 18 enum class LazyCompilationMode; | |
| 19 | 18 |
| 20 namespace interpreter { | 19 namespace interpreter { |
| 21 | 20 |
| 22 class LoopBuilder; | 21 class LoopBuilder; |
| 23 | 22 |
| 24 class BytecodeGenerator final : public AstVisitor<BytecodeGenerator> { | 23 class BytecodeGenerator final : public AstVisitor<BytecodeGenerator> { |
| 25 public: | 24 public: |
| 26 BytecodeGenerator(CompilationInfo* info, LazyCompilationMode mode); | 25 explicit BytecodeGenerator(CompilationInfo* info); |
| 27 | 26 |
| 28 void GenerateBytecode(uintptr_t stack_limit); | 27 void GenerateBytecode(uintptr_t stack_limit); |
| 29 Handle<BytecodeArray> FinalizeBytecode(Isolate* isolate); | 28 Handle<BytecodeArray> FinalizeBytecode(Isolate* isolate); |
| 30 | 29 |
| 31 #define DECLARE_VISIT(type) void Visit##type(type* node); | 30 #define DECLARE_VISIT(type) void Visit##type(type* node); |
| 32 AST_NODE_LIST(DECLARE_VISIT) | 31 AST_NODE_LIST(DECLARE_VISIT) |
| 33 #undef DECLARE_VISIT | 32 #undef DECLARE_VISIT |
| 34 | 33 |
| 35 // Visiting function for declarations list and statements are overridden. | 34 // Visiting function for declarations list and statements are overridden. |
| 36 void VisitDeclarations(Declaration::List* declarations); | 35 void VisitDeclarations(Declaration::List* declarations); |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 Handle<Name> home_object_symbol() const { return home_object_symbol_; } | 198 Handle<Name> home_object_symbol() const { return home_object_symbol_; } |
| 200 Handle<Name> iterator_symbol() const { return iterator_symbol_; } | 199 Handle<Name> iterator_symbol() const { return iterator_symbol_; } |
| 201 Handle<Name> prototype_string() const { return prototype_string_; } | 200 Handle<Name> prototype_string() const { return prototype_string_; } |
| 202 Handle<FixedArray> empty_fixed_array() const { return empty_fixed_array_; } | 201 Handle<FixedArray> empty_fixed_array() const { return empty_fixed_array_; } |
| 203 const AstRawString* undefined_string() const { return undefined_string_; } | 202 const AstRawString* undefined_string() const { return undefined_string_; } |
| 204 | 203 |
| 205 Zone* zone_; | 204 Zone* zone_; |
| 206 BytecodeArrayBuilder* builder_; | 205 BytecodeArrayBuilder* builder_; |
| 207 CompilationInfo* info_; | 206 CompilationInfo* info_; |
| 208 DeclarationScope* scope_; | 207 DeclarationScope* scope_; |
| 209 LazyCompilationMode compilation_mode_; | |
| 210 | 208 |
| 211 GlobalDeclarationsBuilder* globals_builder_; | 209 GlobalDeclarationsBuilder* globals_builder_; |
| 212 ZoneVector<GlobalDeclarationsBuilder*> global_declarations_; | 210 ZoneVector<GlobalDeclarationsBuilder*> global_declarations_; |
| 213 ZoneVector<std::pair<FunctionLiteral*, size_t>> function_literals_; | 211 ZoneVector<std::pair<FunctionLiteral*, size_t>> function_literals_; |
| 214 ZoneVector<std::pair<NativeFunctionLiteral*, size_t>> | 212 ZoneVector<std::pair<NativeFunctionLiteral*, size_t>> |
| 215 native_function_literals_; | 213 native_function_literals_; |
| 216 | 214 |
| 217 ControlScope* execution_control_; | 215 ControlScope* execution_control_; |
| 218 ContextScope* execution_context_; | 216 ContextScope* execution_context_; |
| 219 ExpressionResultScope* execution_result_; | 217 ExpressionResultScope* execution_result_; |
| 220 | 218 |
| 221 ZoneVector<BytecodeLabel> generator_resume_points_; | 219 ZoneVector<BytecodeLabel> generator_resume_points_; |
| 222 Register generator_state_; | 220 Register generator_state_; |
| 223 int loop_depth_; | 221 int loop_depth_; |
| 224 | 222 |
| 225 Handle<Name> home_object_symbol_; | 223 Handle<Name> home_object_symbol_; |
| 226 Handle<Name> iterator_symbol_; | 224 Handle<Name> iterator_symbol_; |
| 227 Handle<Name> prototype_string_; | 225 Handle<Name> prototype_string_; |
| 228 Handle<FixedArray> empty_fixed_array_; | 226 Handle<FixedArray> empty_fixed_array_; |
| 229 const AstRawString* undefined_string_; | 227 const AstRawString* undefined_string_; |
| 230 }; | 228 }; |
| 231 | 229 |
| 232 } // namespace interpreter | 230 } // namespace interpreter |
| 233 } // namespace internal | 231 } // namespace internal |
| 234 } // namespace v8 | 232 } // namespace v8 |
| 235 | 233 |
| 236 #endif // V8_INTERPRETER_BYTECODE_GENERATOR_H_ | 234 #endif // V8_INTERPRETER_BYTECODE_GENERATOR_H_ |
| OLD | NEW |