| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 342 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 343 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, | 343 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
| 344 size_t result_size = 1); | 344 size_t result_size = 1); |
| 345 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 345 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 346 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, | 346 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
| 347 Node* arg5, size_t result_size = 1); | 347 Node* arg5, size_t result_size = 1); |
| 348 Node* CallStubN(const CallInterfaceDescriptor& descriptor, Node* target, | 348 Node* CallStubN(const CallInterfaceDescriptor& descriptor, Node* target, |
| 349 Node** args, size_t result_size = 1); | 349 Node** args, size_t result_size = 1); |
| 350 | 350 |
| 351 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, | 351 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
| 352 size_t result_size = 1); |
| 353 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
| 352 Node* arg2, size_t result_size = 1); | 354 Node* arg2, size_t result_size = 1); |
| 353 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, | 355 Node* TailCallStub(Callable const& callable, Node* context, Node* arg1, |
| 354 Node* arg2, Node* arg3, size_t result_size = 1); | 356 Node* arg2, Node* arg3, size_t result_size = 1); |
| 355 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 357 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 358 Node* context, Node* arg1, size_t result_size = 1); |
| 359 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 356 Node* context, Node* arg1, Node* arg2, | 360 Node* context, Node* arg1, Node* arg2, |
| 357 size_t result_size = 1); | 361 size_t result_size = 1); |
| 358 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 362 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 359 Node* context, Node* arg1, Node* arg2, Node* arg3, | 363 Node* context, Node* arg1, Node* arg2, Node* arg3, |
| 360 size_t result_size = 1); | 364 size_t result_size = 1); |
| 361 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 365 Node* TailCallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 362 Node* context, Node* arg1, Node* arg2, Node* arg3, | 366 Node* context, Node* arg1, Node* arg2, Node* arg3, |
| 363 Node* arg4, size_t result_size = 1); | 367 Node* arg4, size_t result_size = 1); |
| 364 | 368 |
| 365 Node* TailCallBytecodeDispatch(const CallInterfaceDescriptor& descriptor, | 369 Node* TailCallBytecodeDispatch(const CallInterfaceDescriptor& descriptor, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 // Map of variables to the list of value nodes that have been added from each | 451 // Map of variables to the list of value nodes that have been added from each |
| 448 // merge path in their order of merging. | 452 // merge path in their order of merging. |
| 449 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 453 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
| 450 }; | 454 }; |
| 451 | 455 |
| 452 } // namespace compiler | 456 } // namespace compiler |
| 453 } // namespace internal | 457 } // namespace internal |
| 454 } // namespace v8 | 458 } // namespace v8 |
| 455 | 459 |
| 456 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 460 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
| OLD | NEW |