| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 int const index; | 341 int const index; |
| 342 Node* const value; | 342 Node* const value; |
| 343 }; | 343 }; |
| 344 | 344 |
| 345 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 345 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
| 346 size_t result_size = 1); | 346 size_t result_size = 1); |
| 347 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 347 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
| 348 Node* arg2, size_t result_size = 1); | 348 Node* arg2, size_t result_size = 1); |
| 349 Node* CallStub(Callable const& callable, Node* context, Node* arg1, | 349 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
| 350 Node* arg2, Node* arg3, size_t result_size = 1); | 350 Node* arg2, Node* arg3, size_t result_size = 1); |
| 351 Node* CallStub(Callable const& callable, Node* context, Node* arg1, |
| 352 Node* arg2, Node* arg3, Node* arg4, size_t result_size = 1); |
| 351 Node* CallStubN(Callable const& callable, Node** args, | 353 Node* CallStubN(Callable const& callable, Node** args, |
| 352 size_t result_size = 1); | 354 size_t result_size = 1); |
| 353 | 355 |
| 354 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 356 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 355 Node* context, size_t result_size = 1); | 357 Node* context, size_t result_size = 1); |
| 356 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 358 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 357 Node* context, Node* arg1, size_t result_size = 1); | 359 Node* context, Node* arg1, size_t result_size = 1); |
| 358 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 360 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| 359 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); | 361 Node* context, Node* arg1, Node* arg2, size_t result_size = 1); |
| 360 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, | 362 Node* CallStub(const CallInterfaceDescriptor& descriptor, Node* target, |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 // Map of variables to the list of value nodes that have been added from each | 510 // Map of variables to the list of value nodes that have been added from each |
| 509 // merge path in their order of merging. | 511 // merge path in their order of merging. |
| 510 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; | 512 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; |
| 511 }; | 513 }; |
| 512 | 514 |
| 513 } // namespace compiler | 515 } // namespace compiler |
| 514 } // namespace internal | 516 } // namespace internal |
| 515 } // namespace v8 | 517 } // namespace v8 |
| 516 | 518 |
| 517 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ | 519 #endif // V8_COMPILER_CODE_ASSEMBLER_H_ |
| OLD | NEW |