| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 Node* context, Node* arg1, size_t result_size = 1); | 400 Node* context, Node* arg1, size_t result_size = 1); |
| 401 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 401 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 402 Node* context, Node* arg1, Node* arg2, | 402 Node* context, Node* arg1, Node* arg2, |
| 403 size_t result_size = 1); | 403 size_t result_size = 1); |
| 404 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 404 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 405 Node* context, Node* arg1, Node* arg2, Node* arg3, | 405 Node* context, Node* arg1, Node* arg2, Node* arg3, |
| 406 size_t result_size = 1); | 406 size_t result_size = 1); |
| 407 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 407 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 408 Node* context, Node* arg1, Node* arg2, Node* arg3, | 408 Node* context, Node* arg1, Node* arg2, Node* arg3, |
| 409 Node* arg4, size_t result_size = 1); | 409 Node* arg4, size_t result_size = 1); |
| 410 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 411 Node* context, Node* arg1, Node* arg2, Node* arg3, |
| 412 Node* arg4, Node* arg5, size_t result_size = 1); |
| 410 | 413 |
| 411 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 414 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 412 Node* context, const Arg& arg1, const Arg& arg2, | 415 Node* context, const Arg& arg1, const Arg& arg2, |
| 413 const Arg& arg3, const Arg& arg4, size_t result_size = 1); | 416 const Arg& arg3, const Arg& arg4, size_t result_size = 1); |
| 414 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 417 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 415 Node* context, const Arg& arg1, const Arg& arg2, | 418 Node* context, const Arg& arg1, const Arg& arg2, |
| 416 const Arg& arg3, const Arg& arg4, const Arg& arg5, | 419 const Arg& arg3, const Arg& arg4, const Arg& arg5, |
| 417 size_t result_size = 1); | 420 size_t result_size = 1); |
| 418 | 421 |
| 419 Node* TailCallBytecodeDispatch(const CallInterfaceDescriptor& descriptor, | 422 Node* TailCallBytecodeDispatch(const CallInterfaceDescriptor& descriptor, |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 // Map of variables to the list of value nodes that have been added from each | 506 // Map of variables to the list of value nodes that have been added from each |
| 504 // merge path in their order of merging. | 507 // merge path in their order of merging. |
| 505 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 508 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
| 506 }; | 509 }; |
| 507 | 510 |
| 508 } // namespace compiler | 511 } // namespace compiler |
| 509 } // namespace internal | 512 } // namespace internal |
| 510 } // namespace v8 | 513 } // namespace v8 |
| 511 | 514 |
| 512 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 515 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
| OLD | NEW |