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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 BYTECODE_LIST(DECLARE_BYTECODE_HANDLER_GENERATOR) | 66 BYTECODE_LIST(DECLARE_BYTECODE_HANDLER_GENERATOR) |
67 #undef DECLARE_BYTECODE_HANDLER_GENERATOR | 67 #undef DECLARE_BYTECODE_HANDLER_GENERATOR |
68 | 68 |
69 // Generates code to perform the binary operations via |callable|. | 69 // Generates code to perform the binary operations via |callable|. |
70 void DoBinaryOp(Callable callable, InterpreterAssembler* assembler); | 70 void DoBinaryOp(Callable callable, InterpreterAssembler* assembler); |
71 | 71 |
72 // Generates code to perform the binary operations via |function_id|. | 72 // Generates code to perform the binary operations via |function_id|. |
73 void DoBinaryOp(Runtime::FunctionId function_id, | 73 void DoBinaryOp(Runtime::FunctionId function_id, |
74 InterpreterAssembler* assembler); | 74 InterpreterAssembler* assembler); |
75 | 75 |
| 76 // Generates code to perform the binary operations via |Generator|. |
| 77 template <class Generator> |
| 78 void DoBinaryOp(InterpreterAssembler* assembler); |
| 79 |
76 // Generates code to perform the count operations via |callable|. | 80 // Generates code to perform the count operations via |callable|. |
77 void DoCountOp(Callable callable, InterpreterAssembler* assembler); | 81 void DoCountOp(Callable callable, InterpreterAssembler* assembler); |
78 | 82 |
79 // Generates code to perform the comparison operation associated with | 83 // Generates code to perform the comparison operation associated with |
80 // |compare_op|. | 84 // |compare_op|. |
81 void DoCompareOp(Token::Value compare_op, InterpreterAssembler* assembler); | 85 void DoCompareOp(Token::Value compare_op, InterpreterAssembler* assembler); |
82 | 86 |
83 // Generates code to load a constant from the constant pool. | 87 // Generates code to load a constant from the constant pool. |
84 void DoLoadConstant(InterpreterAssembler* assembler); | 88 void DoLoadConstant(InterpreterAssembler* assembler); |
85 | 89 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 v8::base::SmartArrayPointer<uintptr_t> bytecode_dispatch_counters_table_; | 152 v8::base::SmartArrayPointer<uintptr_t> bytecode_dispatch_counters_table_; |
149 | 153 |
150 DISALLOW_COPY_AND_ASSIGN(Interpreter); | 154 DISALLOW_COPY_AND_ASSIGN(Interpreter); |
151 }; | 155 }; |
152 | 156 |
153 } // namespace interpreter | 157 } // namespace interpreter |
154 } // namespace internal | 158 } // namespace internal |
155 } // namespace v8 | 159 } // namespace v8 |
156 | 160 |
157 #endif // V8_INTERPRETER_INTERPRETER_H_ | 161 #endif // V8_INTERPRETER_INTERPRETER_H_ |
OLD | NEW |