Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Side by Side Diff: src/runtime/runtime-test.cc

Issue 2305903002: [wasm] reuse the first compiled module (Closed)
Patch Set: GC before cloning Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/runtime/runtime.h ('k') | src/runtime/runtime-wasm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 wasm::ModuleOrigin::kWasmOrigin);
774 } 774 }
775 775
776 RUNTIME_FUNCTION(Runtime_ValidateWasmInstancesChain) {
777 HandleScope shs(isolate);
778 DCHECK(args.length() == 2);
779 CONVERT_ARG_HANDLE_CHECKED(JSObject, module_obj, 0);
780 CONVERT_ARG_HANDLE_CHECKED(Smi, instance_count, 1);
781 wasm::testing::ValidateInstancesChain(isolate, module_obj,
782 instance_count->value());
783 return isolate->heap()->ToBoolean(true);
784 }
785
786 RUNTIME_FUNCTION(Runtime_ValidateWasmModuleState) {
787 HandleScope shs(isolate);
788 DCHECK(args.length() == 1);
789 CONVERT_ARG_HANDLE_CHECKED(JSObject, module_obj, 0);
790 wasm::testing::ValidateModuleState(isolate, module_obj);
791 return isolate->heap()->ToBoolean(true);
792 }
793
794 RUNTIME_FUNCTION(Runtime_ValidateWasmOrphanedInstance) {
795 HandleScope shs(isolate);
796 DCHECK(args.length() == 1);
797 CONVERT_ARG_HANDLE_CHECKED(JSObject, instance_obj, 0);
798 wasm::testing::ValidateOrphanedInstance(isolate, instance_obj);
799 return isolate->heap()->ToBoolean(true);
800 }
801
776 } // namespace internal 802 } // namespace internal
777 } // namespace v8 803 } // namespace v8
OLDNEW
« no previous file with comments | « src/runtime/runtime.h ('k') | src/runtime/runtime-wasm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698