Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: test/fuzzer/wasm-asmjs.cc

Issue 2091533002: [wasm] Consolidate CompileAndRunWasmModule (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« src/wasm/wasm-module.cc ('K') | « test/fuzzer/wasm.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <limits.h> 5 #include <limits.h>
6 #include <stddef.h> 6 #include <stddef.h>
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "include/v8.h" 9 #include "include/v8.h"
10 #include "src/factory.h" 10 #include "src/factory.h"
(...skipping 15 matching lines...) Expand all
26 if (i_isolate->has_pending_exception()) { 26 if (i_isolate->has_pending_exception()) {
27 i_isolate->clear_pending_exception(); 27 i_isolate->clear_pending_exception();
28 } 28 }
29 29
30 v8::Isolate::Scope isolate_scope(isolate); 30 v8::Isolate::Scope isolate_scope(isolate);
31 v8::HandleScope handle_scope(isolate); 31 v8::HandleScope handle_scope(isolate);
32 v8::Context::Scope context_scope(support->GetContext()); 32 v8::Context::Scope context_scope(support->GetContext());
33 v8::TryCatch try_catch(isolate); 33 v8::TryCatch try_catch(isolate);
34 v8::internal::WasmJs::InstallWasmFunctionMap(i_isolate, 34 v8::internal::WasmJs::InstallWasmFunctionMap(i_isolate,
35 i_isolate->native_context()); 35 i_isolate->native_context());
36 v8::internal::wasm::CompileAndRunWasmModule(i_isolate, data, data + size, 36 v8::internal::wasm::testing::CompileAndRunWasmModule(i_isolate, data,
37 true); 37 data + size, true);
38 return 0; 38 return 0;
39 } 39 }
OLDNEW
« src/wasm/wasm-module.cc ('K') | « test/fuzzer/wasm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698