| 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_INTERPRETER_H_ | 5 #ifndef V8_INTERPRETER_INTERPRETER_H_ |
| 6 #define V8_INTERPRETER_INTERPRETER_H_ | 6 #define V8_INTERPRETER_INTERPRETER_H_ |
| 7 | 7 |
| 8 // Clients of this interface shouldn't depend on lots of interpreter internals. | 8 // Clients of this interface shouldn't depend on lots of interpreter internals. |
| 9 // Do not include anything from src/interpreter other than | 9 // Do not include anything from src/interpreter other than |
| 10 // src/interpreter/bytecodes.h here! | 10 // src/interpreter/bytecodes.h here! |
| 11 #include "src/base/macros.h" | 11 #include "src/base/macros.h" |
| 12 #include "src/builtins.h" | 12 #include "src/builtins.h" |
| 13 #include "src/interpreter/bytecodes.h" | 13 #include "src/interpreter/bytecodes.h" |
| 14 | 14 |
| 15 namespace v8 { | 15 namespace v8 { |
| 16 namespace internal { | 16 namespace internal { |
| 17 | 17 |
| 18 class Isolate; | 18 class Isolate; |
| 19 class Callable; |
| 19 class CompilationInfo; | 20 class CompilationInfo; |
| 20 | 21 |
| 21 namespace compiler { | 22 namespace compiler { |
| 22 class InterpreterAssembler; | 23 class InterpreterAssembler; |
| 23 } | 24 } |
| 24 | 25 |
| 25 namespace interpreter { | 26 namespace interpreter { |
| 26 | 27 |
| 27 class Interpreter { | 28 class Interpreter { |
| 28 public: | 29 public: |
| (...skipping 15 matching lines...) Expand all Loading... |
| 44 // Bytecode handler generator functions. | 45 // Bytecode handler generator functions. |
| 45 #define DECLARE_BYTECODE_HANDLER_GENERATOR(Name, ...) \ | 46 #define DECLARE_BYTECODE_HANDLER_GENERATOR(Name, ...) \ |
| 46 void Do##Name(compiler::InterpreterAssembler* assembler); | 47 void Do##Name(compiler::InterpreterAssembler* assembler); |
| 47 BYTECODE_LIST(DECLARE_BYTECODE_HANDLER_GENERATOR) | 48 BYTECODE_LIST(DECLARE_BYTECODE_HANDLER_GENERATOR) |
| 48 #undef DECLARE_BYTECODE_HANDLER_GENERATOR | 49 #undef DECLARE_BYTECODE_HANDLER_GENERATOR |
| 49 | 50 |
| 50 // Generates code to perform the binary operations via |binop_builtin|. | 51 // Generates code to perform the binary operations via |binop_builtin|. |
| 51 void DoBinaryOp(int builtin_context_index, | 52 void DoBinaryOp(int builtin_context_index, |
| 52 compiler::InterpreterAssembler* assembler); | 53 compiler::InterpreterAssembler* assembler); |
| 53 | 54 |
| 55 // Generates code to perform a property load via |ic|. |
| 56 void DoPropertyLoadIC(Callable ic, compiler::InterpreterAssembler* assembler); |
| 57 |
| 54 bool IsInterpreterTableInitialized(Handle<FixedArray> handler_table); | 58 bool IsInterpreterTableInitialized(Handle<FixedArray> handler_table); |
| 55 | 59 |
| 56 Isolate* isolate_; | 60 Isolate* isolate_; |
| 57 | 61 |
| 58 DISALLOW_COPY_AND_ASSIGN(Interpreter); | 62 DISALLOW_COPY_AND_ASSIGN(Interpreter); |
| 59 }; | 63 }; |
| 60 | 64 |
| 61 } // namespace interpreter | 65 } // namespace interpreter |
| 62 } // namespace internal | 66 } // namespace internal |
| 63 } // namespace v8 | 67 } // namespace v8 |
| 64 | 68 |
| 65 #endif // V8_INTERPRETER_INTERPRETER_H_ | 69 #endif // V8_INTERPRETER_INTERPRETER_H_ |
| OLD | NEW |