OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 "test/common/wasm/wasm-module-runner.h" | 5 #include "test/common/wasm/wasm-module-runner.h" |
6 | 6 |
7 #include "src/handles.h" | 7 #include "src/handles.h" |
8 #include "src/isolate.h" | 8 #include "src/isolate.h" |
9 #include "src/objects.h" | 9 #include "src/objects.h" |
10 #include "src/property-descriptor.h" | 10 #include "src/property-descriptor.h" |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 } | 198 } |
199 if (result->IsHeapNumber()) { | 199 if (result->IsHeapNumber()) { |
200 return static_cast<int32_t>(HeapNumber::cast(*result)->value()); | 200 return static_cast<int32_t>(HeapNumber::cast(*result)->value()); |
201 } | 201 } |
202 thrower->RuntimeError( | 202 thrower->RuntimeError( |
203 "WASM.compileRun() failed: Return value should be number"); | 203 "WASM.compileRun() failed: Return value should be number"); |
204 return -1; | 204 return -1; |
205 } | 205 } |
206 | 206 |
207 void SetupIsolateForWasmModule(Isolate* isolate) { | 207 void SetupIsolateForWasmModule(Isolate* isolate) { |
208 WasmJs::InstallWasmMapsIfNeeded(isolate, isolate->native_context()); | 208 WasmJs::Install(isolate); |
209 WasmJs::InstallWasmModuleSymbolIfNeeded(isolate, isolate->global_object(), | |
210 isolate->native_context()); | |
211 } | 209 } |
212 } // namespace testing | 210 } // namespace testing |
213 } // namespace wasm | 211 } // namespace wasm |
214 } // namespace internal | 212 } // namespace internal |
215 } // namespace v8 | 213 } // namespace v8 |
OLD | NEW |