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 22 matching lines...) Expand all Loading... |
33 v8::Context::Scope context_scope(support->GetContext()); | 33 v8::Context::Scope context_scope(support->GetContext()); |
34 v8::TryCatch try_catch(isolate); | 34 v8::TryCatch try_catch(isolate); |
35 | 35 |
36 v8::base::AccountingAllocator allocator; | 36 v8::base::AccountingAllocator allocator; |
37 v8::internal::Zone zone(&allocator); | 37 v8::internal::Zone zone(&allocator); |
38 | 38 |
39 TestSignatures sigs; | 39 TestSignatures sigs; |
40 | 40 |
41 WasmModuleBuilder builder(&zone); | 41 WasmModuleBuilder builder(&zone); |
42 | 42 |
43 uint16_t f1_index = builder.AddFunction(); | 43 v8::internal::wasm::WasmFunctionBuilder* f = |
44 WasmFunctionBuilder* f = builder.FunctionAt(f1_index); | 44 builder.AddFunction(sigs.i_iii()); |
45 f->SetSignature(sigs.i_iii()); | |
46 f->EmitCode(data, static_cast<uint32_t>(size)); | 45 f->EmitCode(data, static_cast<uint32_t>(size)); |
47 f->SetExported(); | 46 f->SetExported(); |
48 f->SetName("main", 4); | 47 f->SetName("main", 4); |
49 | 48 |
50 ZoneBuffer buffer(&zone); | 49 ZoneBuffer buffer(&zone); |
51 builder.WriteTo(buffer); | 50 builder.WriteTo(buffer); |
52 | 51 |
53 v8::internal::WasmJs::SetupIsolateForWasm(i_isolate); | 52 v8::internal::WasmJs::SetupIsolateForWasm(i_isolate); |
54 | 53 |
55 v8::internal::HandleScope scope(i_isolate); | 54 v8::internal::HandleScope scope(i_isolate); |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 arguments, v8::internal::wasm::ModuleOrigin::kWasmOrigin); | 89 arguments, v8::internal::wasm::ModuleOrigin::kWasmOrigin); |
91 } | 90 } |
92 if (result_interpreted == 0xdeadbeef) { | 91 if (result_interpreted == 0xdeadbeef) { |
93 CHECK(i_isolate->has_pending_exception()); | 92 CHECK(i_isolate->has_pending_exception()); |
94 i_isolate->clear_pending_exception(); | 93 i_isolate->clear_pending_exception(); |
95 } else { | 94 } else { |
96 CHECK_EQ(result_interpreted, result_compiled); | 95 CHECK_EQ(result_interpreted, result_compiled); |
97 } | 96 } |
98 return 0; | 97 return 0; |
99 } | 98 } |
OLD | NEW |