| 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_COMPILER_CODE_STUB_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
| 6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 // Clients of this interface shouldn't depend on lots of compiler internals. | 10 // Clients of this interface shouldn't depend on lots of compiler internals. |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 Node* arg1); | 227 Node* arg1); |
| 228 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, | 228 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, |
| 229 Node* arg1, Node* arg2); | 229 Node* arg1, Node* arg2); |
| 230 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, | 230 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, |
| 231 Node* arg1, Node* arg2, Node* arg3); | 231 Node* arg1, Node* arg2, Node* arg3); |
| 232 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, | 232 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, |
| 233 Node* arg1, Node* arg2, Node* arg3, Node* arg4); | 233 Node* arg1, Node* arg2, Node* arg3, Node* arg4); |
| 234 | 234 |
| 235 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 235 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
| 236 size_t result_size = 1); | 236 size_t result_size = 1); |
| 237 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
| 238 Node* arg2, size_t result_size = 1); |
| 239 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
| 240 Node* arg2, Node* arg3, size_t result_size = 1); |
| 237 | 241 |
| 238 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 242 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 239 Node* context, Node* arg1, size_t result_size = 1); | 243 Node* context, Node* arg1, size_t result_size = 1); |
| 240 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 244 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 241 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); | 245 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); |
| 242 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 246 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 243 Node* context, Node* arg1, Node* arg2, Node* arg3, | 247 Node* context, Node* arg1, Node* arg2, Node* arg3, |
| 244 size_t result_size = 1); | 248 size_t result_size = 1); |
| 245 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 249 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 246 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, | 250 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 // Map of variables to the list of value nodes that have been added from each | 470 // Map of variables to the list of value nodes that have been added from each |
| 467 // merge path in their order of merging. | 471 // merge path in their order of merging. |
| 468 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 472 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
| 469 }; | 473 }; |
| 470 | 474 |
| 471 } // namespace compiler | 475 } // namespace compiler |
| 472 } // namespace internal | 476 } // namespace internal |
| 473 } // namespace v8 | 477 } // namespace v8 |
| 474 | 478 |
| 475 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ | 479 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ |
| OLD | NEW |