| 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_WASM_COMPILER_H_ | 5 #ifndef V8_COMPILER_WASM_COMPILER_H_ |
| 6 #define V8_COMPILER_WASM_COMPILER_H_ | 6 #define V8_COMPILER_WASM_COMPILER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 Node* BuildI32AsmjsDivU(Node* left, Node* right); | 330 Node* BuildI32AsmjsDivU(Node* left, Node* right); |
| 331 Node* BuildI32AsmjsRemU(Node* left, Node* right); | 331 Node* BuildI32AsmjsRemU(Node* left, Node* right); |
| 332 Node* BuildAsmjsLoadMem(MachineType type, Node* index); | 332 Node* BuildAsmjsLoadMem(MachineType type, Node* index); |
| 333 Node* BuildAsmjsStoreMem(MachineType type, Node* index, Node* val); | 333 Node* BuildAsmjsStoreMem(MachineType type, Node* index, Node* val); |
| 334 | 334 |
| 335 Node** Realloc(Node** buffer, size_t old_count, size_t new_count) { | 335 Node** Realloc(Node** buffer, size_t old_count, size_t new_count) { |
| 336 Node** buf = Buffer(new_count); | 336 Node** buf = Buffer(new_count); |
| 337 if (buf != buffer) memcpy(buf, buffer, old_count * sizeof(Node*)); | 337 if (buf != buffer) memcpy(buf, buffer, old_count * sizeof(Node*)); |
| 338 return buf; | 338 return buf; |
| 339 } | 339 } |
| 340 |
| 341 int AddParameterNodes(Node** args, int pos, int param_count, |
| 342 wasm::FunctionSig* sig); |
| 340 }; | 343 }; |
| 341 } // namespace compiler | 344 } // namespace compiler |
| 342 } // namespace internal | 345 } // namespace internal |
| 343 } // namespace v8 | 346 } // namespace v8 |
| 344 | 347 |
| 345 #endif // V8_COMPILER_WASM_COMPILER_H_ | 348 #endif // V8_COMPILER_WASM_COMPILER_H_ |
| OLD | NEW |