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! |
(...skipping 18 matching lines...) Expand all Loading... |
29 public: | 29 public: |
30 explicit Interpreter(Isolate* isolate); | 30 explicit Interpreter(Isolate* isolate); |
31 virtual ~Interpreter() {} | 31 virtual ~Interpreter() {} |
32 | 32 |
33 // Initializes the interpreter dispatch table. | 33 // Initializes the interpreter dispatch table. |
34 void Initialize(); | 34 void Initialize(); |
35 | 35 |
36 // Generate bytecode for |info|. | 36 // Generate bytecode for |info|. |
37 static bool MakeBytecode(CompilationInfo* info); | 37 static bool MakeBytecode(CompilationInfo* info); |
38 | 38 |
| 39 // Return bytecode handler for |bytecode|. |
| 40 Code* GetBytecodeHandler(Bytecode bytecode); |
| 41 |
39 // GC support. | 42 // GC support. |
40 void IterateDispatchTable(ObjectVisitor* v); | 43 void IterateDispatchTable(ObjectVisitor* v); |
41 | 44 |
42 void TraceCodegen(Handle<Code> code, const char* name); | 45 void TraceCodegen(Handle<Code> code, const char* name); |
43 | 46 |
44 Address dispatch_table_address() { | 47 Address dispatch_table_address() { |
45 return reinterpret_cast<Address>(&dispatch_table_[0]); | 48 return reinterpret_cast<Address>(&dispatch_table_[0]); |
46 } | 49 } |
47 | 50 |
48 private: | 51 private: |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 | 117 |
115 // Generates code to perform a lookup slot store depending on |language_mode|. | 118 // Generates code to perform a lookup slot store depending on |language_mode|. |
116 void DoStoreLookupSlot(LanguageMode language_mode, | 119 void DoStoreLookupSlot(LanguageMode language_mode, |
117 InterpreterAssembler* assembler); | 120 InterpreterAssembler* assembler); |
118 | 121 |
119 bool IsDispatchTableInitialized(); | 122 bool IsDispatchTableInitialized(); |
120 | 123 |
121 static const int kDispatchTableSize = static_cast<int>(Bytecode::kLast) + 1; | 124 static const int kDispatchTableSize = static_cast<int>(Bytecode::kLast) + 1; |
122 | 125 |
123 Isolate* isolate_; | 126 Isolate* isolate_; |
124 Object* dispatch_table_[kDispatchTableSize]; | 127 Code* dispatch_table_[kDispatchTableSize]; |
125 | 128 |
126 DISALLOW_COPY_AND_ASSIGN(Interpreter); | 129 DISALLOW_COPY_AND_ASSIGN(Interpreter); |
127 }; | 130 }; |
128 | 131 |
129 } // namespace interpreter | 132 } // namespace interpreter |
130 } // namespace internal | 133 } // namespace internal |
131 } // namespace v8 | 134 } // namespace v8 |
132 | 135 |
133 #endif // V8_INTERPRETER_INTERPRETER_H_ | 136 #endif // V8_INTERPRETER_INTERPRETER_H_ |
OLD | NEW |