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 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 | 395 |
396 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, | 396 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
397 size_t result_size = 1); | 397 size_t result_size = 1); |
398 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, | 398 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
399 Node* arg2, size_t result_size = 1); | 399 Node* arg2, size_t result_size = 1); |
400 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, | 400 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
401 Node* arg2, Node* arg3, size_t result_size = 1); | 401 Node* arg2, Node* arg3, size_t result_size = 1); |
402 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, | 402 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
403 Node* arg2, Node* arg3, Node* arg4, | 403 Node* arg2, Node* arg3, Node* arg4, |
404 size_t result_size = 1); | 404 size_t result_size = 1); |
| 405 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
| 406 Node* arg2, Node* arg3, Node* arg4, Node* arg5, |
| 407 size_t result_size = 1); |
| 408 |
405 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 409 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
406 Node* context, Node* arg1, size_t result_size = 1); | 410 Node* context, Node* arg1, size_t result_size = 1); |
407 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 411 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
408 Node* context, Node* arg1, Node* arg2, | 412 Node* context, Node* arg1, Node* arg2, |
409 size_t result_size = 1); | 413 size_t result_size = 1); |
410 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 414 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
411 Node* context, Node* arg1, Node* arg2, Node* arg3, | 415 Node* context, Node* arg1, Node* arg2, Node* arg3, |
412 size_t result_size = 1); | 416 size_t result_size = 1); |
413 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 417 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
414 Node* context, Node* arg1, Node* arg2, Node* arg3, | 418 Node* context, Node* arg1, Node* arg2, Node* arg3, |
415 Node* arg4, size_t result_size = 1); | 419 Node* arg4, size_t result_size = 1); |
416 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 420 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
417 Node* context, Node* arg1, Node* arg2, Node* arg3, | 421 Node* context, Node* arg1, Node* arg2, Node* arg3, |
418 Node* arg4, Node* arg5, size_t result_size = 1); | 422 Node* arg4, Node* arg5, size_t result_size = 1); |
| 423 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 424 Node* context, Node* arg1, Node* arg2, Node* arg3, |
| 425 Node* arg4, Node* arg5, Node* arg6, |
| 426 size_t result_size = 1); |
419 | 427 |
420 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 428 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
421 Node* context, const Arg& arg1, const Arg& arg2, | 429 Node* context, const Arg& arg1, const Arg& arg2, |
422 const Arg& arg3, const Arg& arg4, size_t result_size = 1); | 430 const Arg& arg3, const Arg& arg4, size_t result_size = 1); |
423 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 431 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
424 Node* context, const Arg& arg1, const Arg& arg2, | 432 Node* context, const Arg& arg1, const Arg& arg2, |
425 const Arg& arg3, const Arg& arg4, const Arg& arg5, | 433 const Arg& arg3, const Arg& arg4, const Arg& arg5, |
426 size_t result_size = 1); | 434 size_t result_size = 1); |
427 | 435 |
428 Node* TailCallBytecodeDispatch(const CallInterfaceDescriptor& descriptor, | 436 Node* TailCallBytecodeDispatch(const CallInterfaceDescriptor& descriptor, |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 // Map of variables to the list of value nodes that have been added from each | 520 // Map of variables to the list of value nodes that have been added from each |
513 // merge path in their order of merging. | 521 // merge path in their order of merging. |
514 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 522 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
515 }; | 523 }; |
516 | 524 |
517 } // namespace compiler | 525 } // namespace compiler |
518 } // namespace internal | 526 } // namespace internal |
519 } // namespace v8 | 527 } // namespace v8 |
520 | 528 |
521 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 529 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
OLD | NEW |