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 18 matching lines...) Expand all Loading... |
29 if (i_isolate->has_pending_exception()) { | 29 if (i_isolate->has_pending_exception()) { |
30 i_isolate->clear_pending_exception(); | 30 i_isolate->clear_pending_exception(); |
31 } | 31 } |
32 | 32 |
33 v8::Isolate::Scope isolate_scope(isolate); | 33 v8::Isolate::Scope isolate_scope(isolate); |
34 v8::HandleScope handle_scope(isolate); | 34 v8::HandleScope handle_scope(isolate); |
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, ZONE_NAME); |
40 | 40 |
41 TestSignatures sigs; | 41 TestSignatures sigs; |
42 | 42 |
43 WasmModuleBuilder builder(&zone); | 43 WasmModuleBuilder builder(&zone); |
44 | 44 |
45 v8::internal::wasm::WasmFunctionBuilder* f = | 45 v8::internal::wasm::WasmFunctionBuilder* f = |
46 builder.AddFunction(sigs.i_iii()); | 46 builder.AddFunction(sigs.i_iii()); |
47 f->EmitCode(data, static_cast<uint32_t>(size)); | 47 f->EmitCode(data, static_cast<uint32_t>(size)); |
48 f->ExportAs(v8::internal::CStrVector("main")); | 48 f->ExportAs(v8::internal::CStrVector("main")); |
49 | 49 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 i_isolate->clear_pending_exception(); | 94 i_isolate->clear_pending_exception(); |
95 } else { | 95 } else { |
96 if (result_interpreted != result_compiled) { | 96 if (result_interpreted != result_compiled) { |
97 V8_Fatal(__FILE__, __LINE__, "WasmCodeFuzzerHash=%x", | 97 V8_Fatal(__FILE__, __LINE__, "WasmCodeFuzzerHash=%x", |
98 v8::internal::StringHasher::HashSequentialString( | 98 v8::internal::StringHasher::HashSequentialString( |
99 data, static_cast<int>(size), WASM_CODE_FUZZER_HASH_SEED)); | 99 data, static_cast<int>(size), WASM_CODE_FUZZER_HASH_SEED)); |
100 } | 100 } |
101 } | 101 } |
102 return 0; | 102 return 0; |
103 } | 103 } |
OLD | NEW |