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_ASSEMBLER_H_ | 5 #ifndef V8_COMPILER_CODE_ASSEMBLER_H_ |
6 #define V8_COMPILER_CODE_ASSEMBLER_H_ | 6 #define V8_COMPILER_CODE_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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 | 312 |
313 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context); | 313 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context); |
314 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, | 314 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, |
315 Node* arg1); | 315 Node* arg1); |
316 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, | 316 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, |
317 Node* arg1, Node* arg2); | 317 Node* arg1, Node* arg2); |
318 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, | 318 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, |
319 Node* arg1, Node* arg2, Node* arg3); | 319 Node* arg1, Node* arg2, Node* arg3); |
320 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, | 320 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, |
321 Node* arg1, Node* arg2, Node* arg3, Node* arg4); | 321 Node* arg1, Node* arg2, Node* arg3, Node* arg4); |
| 322 Node* TailCallRuntime(Runtime::FunctionId function_id, Node* context, |
| 323 Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
| 324 Node* arg5); |
322 | 325 |
323 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 326 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
324 size_t result_size = 1); | 327 size_t result_size = 1); |
325 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 328 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
326 Node* arg2, size_t result_size = 1); | 329 Node* arg2, size_t result_size = 1); |
327 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 330 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
328 Node* arg2, Node* arg3, size_t result_size = 1); | 331 Node* arg2, Node* arg3, size_t result_size = 1); |
329 Node* CallStubN(Callable const& callable, Node** args, | 332 Node* CallStubN(Callable const& callable, Node** args, |
330 size_t result_size = 1); | 333 size_t result_size = 1); |
331 | 334 |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 // Map of variables to the list of value nodes that have been added from each | 447 // Map of variables to the list of value nodes that have been added from each |
445 // merge path in their order of merging. | 448 // merge path in their order of merging. |
446 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 449 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
447 }; | 450 }; |
448 | 451 |
449 } // namespace compiler | 452 } // namespace compiler |
450 } // namespace internal | 453 } // namespace internal |
451 } // namespace v8 | 454 } // namespace v8 |
452 | 455 |
453 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 456 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
OLD | NEW |