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

Side by Side Diff: test/common/wasm/wasm-module-runner.cc

Issue 2344143003: Moved zones and zone related stuff in its own directory. (Closed)
Patch Set: Renamed defines to match new file locations Created 4 years, 3 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
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 "test/common/wasm/wasm-module-runner.h" 5 #include "test/common/wasm/wasm-module-runner.h"
6 6
7 #include "src/handles.h" 7 #include "src/handles.h"
8 #include "src/isolate.h" 8 #include "src/isolate.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/property-descriptor.h" 10 #include "src/property-descriptor.h"
11 #include "src/wasm/module-decoder.h" 11 #include "src/wasm/module-decoder.h"
12 #include "src/wasm/wasm-interpreter.h" 12 #include "src/wasm/wasm-interpreter.h"
13 #include "src/wasm/wasm-module.h" 13 #include "src/wasm/wasm-module.h"
14 #include "src/wasm/wasm-result.h" 14 #include "src/wasm/wasm-result.h"
15 #include "src/zone.h" 15 #include "src/zone/zone.h"
16 16
17 namespace v8 { 17 namespace v8 {
18 namespace internal { 18 namespace internal {
19 namespace wasm { 19 namespace wasm {
20 namespace testing { 20 namespace testing {
21 21
22 uint32_t GetMinModuleMemSize(const WasmModule* module) { 22 uint32_t GetMinModuleMemSize(const WasmModule* module) {
23 return WasmModule::kPageSize * module->min_mem_pages; 23 return WasmModule::kPageSize * module->min_mem_pages;
24 } 24 }
25 25
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 return static_cast<int32_t>(HeapNumber::cast(*result)->value()); 195 return static_cast<int32_t>(HeapNumber::cast(*result)->value());
196 } 196 }
197 thrower.Error("WASM.compileRun() failed: Return value should be number"); 197 thrower.Error("WASM.compileRun() failed: Return value should be number");
198 return -1; 198 return -1;
199 } 199 }
200 200
201 } // namespace testing 201 } // namespace testing
202 } // namespace wasm 202 } // namespace wasm
203 } // namespace internal 203 } // namespace internal
204 } // namespace v8 204 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698