OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/runtime/runtime-utils.h" | 5 #include "src/runtime/runtime-utils.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
10 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h" | 10 #include "src/compiler-dispatcher/optimizing-compile-dispatcher.h" |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
762 Address mem_start = static_cast<Address>(buffer->backing_store()); | 762 Address mem_start = static_cast<Address>(buffer->backing_store()); |
763 int mem_size = static_cast<int>(buffer->byte_length()->Number()); | 763 int mem_size = static_cast<int>(buffer->byte_length()->Number()); |
764 | 764 |
765 ScriptData sc(mem_start, mem_size); | 765 ScriptData sc(mem_start, mem_size); |
766 MaybeHandle<FixedArray> maybe_compiled_module = | 766 MaybeHandle<FixedArray> maybe_compiled_module = |
767 WasmCompiledModuleSerializer::DeserializeWasmModule(isolate, &sc); | 767 WasmCompiledModuleSerializer::DeserializeWasmModule(isolate, &sc); |
768 Handle<FixedArray> compiled_module; | 768 Handle<FixedArray> compiled_module; |
769 if (!maybe_compiled_module.ToHandle(&compiled_module)) { | 769 if (!maybe_compiled_module.ToHandle(&compiled_module)) { |
770 return isolate->heap()->undefined_value(); | 770 return isolate->heap()->undefined_value(); |
771 } | 771 } |
772 return *wasm::CreateCompiledModuleObject(isolate, compiled_module); | 772 return *wasm::CreateCompiledModuleObject(isolate, compiled_module, |
| 773 wasm::ModuleOrigin::kWasmOrigin); |
773 } | 774 } |
774 | 775 |
775 } // namespace internal | 776 } // namespace internal |
776 } // namespace v8 | 777 } // namespace v8 |
OLD | NEW |