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 <stddef.h> | 5 #include <stddef.h> |
6 #include <stdint.h> | 6 #include <stdint.h> |
7 | 7 |
8 #include "include/v8.h" | 8 #include "include/v8.h" |
9 #include "src/isolate.h" | 9 #include "src/isolate.h" |
10 #include "src/wasm/encoder.h" | 10 #include "src/wasm/encoder.h" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 uint16_t f1_index = builder.AddFunction(); | 43 uint16_t f1_index = builder.AddFunction(); |
44 WasmFunctionBuilder* f = builder.FunctionAt(f1_index); | 44 WasmFunctionBuilder* f = builder.FunctionAt(f1_index); |
45 f->SetSignature(sigs.i_iii()); | 45 f->SetSignature(sigs.i_iii()); |
46 f->EmitCode(data, static_cast<uint32_t>(size)); | 46 f->EmitCode(data, static_cast<uint32_t>(size)); |
47 f->SetExported(); | 47 f->SetExported(); |
48 f->SetName("main", 4); | 48 f->SetName("main", 4); |
49 | 49 |
50 ZoneBuffer buffer(&zone); | 50 ZoneBuffer buffer(&zone); |
51 builder.WriteTo(buffer); | 51 builder.WriteTo(buffer); |
52 | 52 |
53 v8::internal::WasmJs::InstallWasmFunctionMap(i_isolate, | 53 v8::internal::WasmJs::SetupIsolateForWasm(i_isolate); |
54 i_isolate->native_context()); | |
55 | 54 |
56 v8::internal::HandleScope scope(i_isolate); | 55 v8::internal::HandleScope scope(i_isolate); |
57 | 56 |
58 ErrorThrower interpreter_thrower(i_isolate, "Interpreter"); | 57 ErrorThrower interpreter_thrower(i_isolate, "Interpreter"); |
59 std::unique_ptr<const WasmModule> module(testing::DecodeWasmModuleForTesting( | 58 std::unique_ptr<const WasmModule> module(testing::DecodeWasmModuleForTesting( |
60 i_isolate, &zone, interpreter_thrower, buffer.begin(), buffer.end(), | 59 i_isolate, &zone, interpreter_thrower, buffer.begin(), buffer.end(), |
61 kWasmOrigin)); | 60 v8::internal::wasm::ModuleOrigin::kWasmOrigin)); |
62 | 61 |
63 if (module == nullptr) { | 62 if (module == nullptr) { |
64 return 0; | 63 return 0; |
65 } | 64 } |
66 int32_t result_interpreted; | 65 int32_t result_interpreted; |
67 { | 66 { |
68 WasmVal args[] = {WasmVal(1), WasmVal(2), WasmVal(3)}; | 67 WasmVal args[] = {WasmVal(1), WasmVal(2), WasmVal(3)}; |
69 result_interpreted = testing::InterpretWasmModule( | 68 result_interpreted = testing::InterpretWasmModule( |
70 i_isolate, interpreter_thrower, module.get(), 0, args); | 69 i_isolate, interpreter_thrower, module.get(), 0, args); |
71 } | 70 } |
72 | 71 |
73 ErrorThrower compiler_thrower(i_isolate, "Compiler"); | 72 ErrorThrower compiler_thrower(i_isolate, "Compiler"); |
74 v8::internal::Handle<v8::internal::JSObject> instance = | 73 v8::internal::Handle<v8::internal::JSObject> instance = |
75 testing::InstantiateModuleForTesting(i_isolate, compiler_thrower, | 74 testing::InstantiateModuleForTesting(i_isolate, compiler_thrower, |
76 module.get()); | 75 module.get()); |
77 | 76 |
78 if (!interpreter_thrower.error()) { | 77 if (!interpreter_thrower.error()) { |
79 CHECK(!instance.is_null()); | 78 CHECK(!instance.is_null()); |
80 } else { | 79 } else { |
81 return 0; | 80 return 0; |
82 } | 81 } |
83 int32_t result_compiled; | 82 int32_t result_compiled; |
84 { | 83 { |
85 v8::internal::Handle<v8::internal::Object> arguments[] = { | 84 v8::internal::Handle<v8::internal::Object> arguments[] = { |
86 v8::internal::handle(v8::internal::Smi::FromInt(1), i_isolate)}; | 85 v8::internal::handle(v8::internal::Smi::FromInt(1), i_isolate)}; |
87 result_compiled = testing::CallWasmFunctionForTesting( | 86 result_compiled = testing::CallWasmFunctionForTesting( |
88 i_isolate, instance, compiler_thrower, "main", arraysize(arguments), | 87 i_isolate, instance, compiler_thrower, "main", arraysize(arguments), |
89 arguments, false); | 88 arguments, v8::internal::wasm::ModuleOrigin::kWasmOrigin); |
90 } | 89 } |
91 if (result_interpreted == 0xdeadbeef) { | 90 if (result_interpreted == 0xdeadbeef) { |
92 CHECK(i_isolate->has_pending_exception()); | 91 CHECK(i_isolate->has_pending_exception()); |
93 i_isolate->clear_pending_exception(); | 92 i_isolate->clear_pending_exception(); |
94 } else { | 93 } else { |
95 CHECK_EQ(result_interpreted, result_compiled); | 94 CHECK_EQ(result_interpreted, result_compiled); |
96 } | 95 } |
97 return 0; | 96 return 0; |
98 } | 97 } |
OLD | NEW |