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