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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 329 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
330 size_t result_size = 1); | 330 size_t result_size = 1); |
331 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 331 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
332 Node* arg2, size_t result_size = 1); | 332 Node* arg2, size_t result_size = 1); |
333 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 333 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
334 Node* arg2, Node* arg3, size_t result_size = 1); | 334 Node* arg2, Node* arg3, size_t result_size = 1); |
335 Node* CallStubN(Callable const& callable, Node** args, | 335 Node* CallStubN(Callable const& callable, Node** args, |
336 size_t result_size = 1); | 336 size_t result_size = 1); |
337 | 337 |
338 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 338 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 339 Node* context, size_t result_size = 1); |
| 340 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
339 Node* context, Node* arg1, size_t result_size = 1); | 341 Node* context, Node* arg1, size_t result_size = 1); |
340 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 342 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
341 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); | 343 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); |
342 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 344 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
343 Node* context, Node* arg1, Node* arg2, Node* arg3, | 345 Node* context, Node* arg1, Node* arg2, Node* arg3, |
344 size_t result_size = 1); | 346 size_t result_size = 1); |
345 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 347 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
346 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, | 348 Node* context, Node* arg1, Node* arg2, Node* arg3, Node* arg4, |
347 size_t result_size = 1); | 349 size_t result_size = 1); |
348 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 350 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 // Map of variables to the list of value nodes that have been added from each | 456 // Map of variables to the list of value nodes that have been added from each |
455 // merge path in their order of merging. | 457 // merge path in their order of merging. |
456 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 458 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
457 }; | 459 }; |
458 | 460 |
459 } // namespace compiler | 461 } // namespace compiler |
460 } // namespace internal | 462 } // namespace internal |
461 } // namespace v8 | 463 } // namespace v8 |
462 | 464 |
463 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 465 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
OLD | NEW |