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 #include <memory> | 8 #include <memory> |
9 | 9 |
10 // Clients of this interface shouldn't depend on lots of interpreter internals. | 10 // Clients of this interface shouldn't depend on lots of interpreter internals. |
11 // Do not include anything from src/interpreter other than | 11 // Do not include anything from src/interpreter other than |
12 // src/interpreter/bytecodes.h here! | 12 // src/interpreter/bytecodes.h here! |
13 #include "src/base/macros.h" | 13 #include "src/base/macros.h" |
14 #include "src/builtins/builtins.h" | 14 #include "src/builtins/builtins.h" |
15 #include "src/interpreter/bytecodes.h" | 15 #include "src/interpreter/bytecodes.h" |
16 #include "src/parsing/token.h" | 16 #include "src/parsing/token.h" |
17 #include "src/runtime/runtime.h" | 17 #include "src/runtime/runtime.h" |
18 | 18 |
19 namespace v8 { | 19 namespace v8 { |
20 namespace internal { | 20 namespace internal { |
21 | 21 |
22 class Isolate; | 22 class Isolate; |
23 class Callable; | 23 class Callable; |
24 class CompilationInfo; | 24 class CompilationInfo; |
25 class CompilationJob; | 25 class CompilationJob; |
26 enum class LazyCompilationMode; | |
27 | 26 |
28 namespace compiler { | 27 namespace compiler { |
29 class Node; | 28 class Node; |
30 } // namespace compiler | 29 } // namespace compiler |
31 | 30 |
32 namespace interpreter { | 31 namespace interpreter { |
33 | 32 |
34 class InterpreterAssembler; | 33 class InterpreterAssembler; |
35 | 34 |
36 class Interpreter { | 35 class Interpreter { |
37 public: | 36 public: |
38 explicit Interpreter(Isolate* isolate); | 37 explicit Interpreter(Isolate* isolate); |
39 virtual ~Interpreter() {} | 38 virtual ~Interpreter() {} |
40 | 39 |
41 // Initializes the interpreter dispatch table. | 40 // Initializes the interpreter dispatch table. |
42 void Initialize(); | 41 void Initialize(); |
43 | 42 |
44 // Returns the interrupt budget which should be used for the profiler counter. | 43 // Returns the interrupt budget which should be used for the profiler counter. |
45 static int InterruptBudget(); | 44 static int InterruptBudget(); |
46 | 45 |
47 // Creates a compilation job which will generate bytecode for |info|. | 46 // Creates a compilation job which will generate bytecode for |info|. |
48 static CompilationJob* NewCompilationJob(CompilationInfo* info, | 47 static CompilationJob* NewCompilationJob(CompilationInfo* info); |
49 LazyCompilationMode mode); | |
50 | 48 |
51 // Return bytecode handler for |bytecode|. | 49 // Return bytecode handler for |bytecode|. |
52 Code* GetBytecodeHandler(Bytecode bytecode, OperandScale operand_scale); | 50 Code* GetBytecodeHandler(Bytecode bytecode, OperandScale operand_scale); |
53 | 51 |
54 // GC support. | 52 // GC support. |
55 void IterateDispatchTable(ObjectVisitor* v); | 53 void IterateDispatchTable(ObjectVisitor* v); |
56 | 54 |
57 // Disassembler support (only useful with ENABLE_DISASSEMBLER defined). | 55 // Disassembler support (only useful with ENABLE_DISASSEMBLER defined). |
58 void TraceCodegen(Handle<Code> code); | 56 void TraceCodegen(Handle<Code> code); |
59 const char* LookupNameOfBytecodeHandler(Code* code); | 57 const char* LookupNameOfBytecodeHandler(Code* code); |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 std::unique_ptr<uintptr_t[]> bytecode_dispatch_counters_table_; | 184 std::unique_ptr<uintptr_t[]> bytecode_dispatch_counters_table_; |
187 | 185 |
188 DISALLOW_COPY_AND_ASSIGN(Interpreter); | 186 DISALLOW_COPY_AND_ASSIGN(Interpreter); |
189 }; | 187 }; |
190 | 188 |
191 } // namespace interpreter | 189 } // namespace interpreter |
192 } // namespace internal | 190 } // namespace internal |
193 } // namespace v8 | 191 } // namespace v8 |
194 | 192 |
195 #endif // V8_INTERPRETER_INTERPRETER_H_ | 193 #endif // V8_INTERPRETER_INTERPRETER_H_ |
OLD | NEW |