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/objects.h" | 10 #include "src/objects.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 v8::Context::Scope context_scope(support->GetContext()); | 35 v8::Context::Scope context_scope(support->GetContext()); |
36 v8::TryCatch try_catch(isolate); | 36 v8::TryCatch try_catch(isolate); |
37 | 37 |
38 v8::internal::AccountingAllocator allocator; | 38 v8::internal::AccountingAllocator allocator; |
39 v8::internal::Zone zone(&allocator); | 39 v8::internal::Zone zone(&allocator); |
40 | 40 |
41 TestSignatures sigs; | 41 TestSignatures sigs; |
42 | 42 |
43 WasmModuleBuilder builder(&zone); | 43 WasmModuleBuilder builder(&zone); |
44 | 44 |
45 uint16_t f1_index = builder.AddFunction(); | 45 v8::internal::wasm::WasmFunctionBuilder* f = |
46 WasmFunctionBuilder* f = builder.FunctionAt(f1_index); | 46 builder.AddFunction(sigs.i_iii()); |
47 f->SetSignature(sigs.i_iii()); | |
48 f->EmitCode(data, static_cast<uint32_t>(size)); | 47 f->EmitCode(data, static_cast<uint32_t>(size)); |
49 f->SetExported(); | 48 f->SetExported(); |
50 f->SetName("main", 4); | 49 f->SetName("main", 4); |
51 | 50 |
52 ZoneBuffer buffer(&zone); | 51 ZoneBuffer buffer(&zone); |
53 builder.WriteTo(buffer); | 52 builder.WriteTo(buffer); |
54 | 53 |
55 v8::internal::wasm::testing::SetupIsolateForWasmModule(i_isolate); | 54 v8::internal::wasm::testing::SetupIsolateForWasmModule(i_isolate); |
56 | 55 |
57 v8::internal::HandleScope scope(i_isolate); | 56 v8::internal::HandleScope scope(i_isolate); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 __FILE__, __LINE__, | 99 __FILE__, __LINE__, |
101 "Interpreter result (%d) != compiled module result (%d). Hash: %u", | 100 "Interpreter result (%d) != compiled module result (%d). Hash: %u", |
102 result_interpreted, result_compiled, | 101 result_interpreted, result_compiled, |
103 v8::internal::StringHasher::HashSequentialString( | 102 v8::internal::StringHasher::HashSequentialString( |
104 data, static_cast<int>(size), WASM_CODE_FUZZER_HASH_SEED)); | 103 data, static_cast<int>(size), WASM_CODE_FUZZER_HASH_SEED)); |
105 } | 104 } |
106 CHECK_EQ(result_interpreted, result_compiled); | 105 CHECK_EQ(result_interpreted, result_compiled); |
107 } | 106 } |
108 return 0; | 107 return 0; |
109 } | 108 } |
OLD | NEW |