| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 ZoneBuffer buffer(&zone); | 50 ZoneBuffer buffer(&zone); |
| 51 builder.WriteTo(buffer); | 51 builder.WriteTo(buffer); |
| 52 | 52 |
| 53 v8::internal::wasm::testing::SetupIsolateForWasmModule(i_isolate); | 53 v8::internal::wasm::testing::SetupIsolateForWasmModule(i_isolate); |
| 54 | 54 |
| 55 v8::internal::HandleScope scope(i_isolate); | 55 v8::internal::HandleScope scope(i_isolate); |
| 56 | 56 |
| 57 ErrorThrower interpreter_thrower(i_isolate, "Interpreter"); | 57 ErrorThrower interpreter_thrower(i_isolate, "Interpreter"); |
| 58 std::unique_ptr<const WasmModule> module(testing::DecodeWasmModuleForTesting( | 58 std::unique_ptr<const WasmModule> module(testing::DecodeWasmModuleForTesting( |
| 59 i_isolate, &zone, &interpreter_thrower, buffer.begin(), buffer.end(), | 59 i_isolate, &interpreter_thrower, buffer.begin(), buffer.end(), |
| 60 v8::internal::wasm::ModuleOrigin::kWasmOrigin)); | 60 v8::internal::wasm::ModuleOrigin::kWasmOrigin)); |
| 61 | 61 |
| 62 if (module == nullptr) { | 62 if (module == nullptr) { |
| 63 return 0; | 63 return 0; |
| 64 } | 64 } |
| 65 int32_t result_interpreted; | 65 int32_t result_interpreted; |
| 66 { | 66 { |
| 67 WasmVal args[] = {WasmVal(1), WasmVal(2), WasmVal(3)}; | 67 WasmVal args[] = {WasmVal(1), WasmVal(2), WasmVal(3)}; |
| 68 result_interpreted = testing::InterpretWasmModule( | 68 result_interpreted = testing::InterpretWasmModule( |
| 69 i_isolate, &interpreter_thrower, module.get(), 0, args); | 69 i_isolate, &interpreter_thrower, module.get(), 0, args); |
| (...skipping 24 matching lines...) Expand all 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 |