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

Unified Diff: test/cctest/wasm/wasm-run-utils.h

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 side-by-side diff with in-line comments
Download patch
Index: test/cctest/wasm/wasm-run-utils.h
diff --git a/test/cctest/wasm/wasm-run-utils.h b/test/cctest/wasm/wasm-run-utils.h
index 1c2b8e84631cfc7da846c17c9004623f43c7e751..e75af6ddf06d8ebf8e7db75e4b3cacb72c7c4ec0 100644
--- a/test/cctest/wasm/wasm-run-utils.h
+++ b/test/cctest/wasm/wasm-run-utils.h
@@ -11,8 +11,8 @@
#include <memory>
-#include "src/base/accounting-allocator.h"
#include "src/base/utils/random-number-generator.h"
+#include "src/zone/accounting-allocator.h"
#include "src/compiler/graph-visualizer.h"
#include "src/compiler/int64-lowering.h"
@@ -29,7 +29,7 @@
#include "src/wasm/wasm-module.h"
#include "src/wasm/wasm-opcodes.h"
-#include "src/zone.h"
+#include "src/zone/zone.h"
#include "test/cctest/cctest.h"
#include "test/cctest/compiler/call-tester.h"
@@ -259,7 +259,7 @@ class TestingModule : public ModuleEnv {
WasmModule module_;
WasmModuleInstance instance_;
Isolate* isolate_;
- v8::base::AccountingAllocator allocator_;
+ v8::internal::AccountingAllocator allocator_;
uint32_t global_offset;
V8_ALIGNED(8) byte global_data[kMaxGlobalsSize]; // preallocated global data.
WasmInterpreter* interpreter_;
@@ -749,7 +749,7 @@ class WasmRunner {
WasmInterpreter* interpreter() { return compiler_.interpreter_; }
protected:
- v8::base::AccountingAllocator allocator_;
+ v8::internal::AccountingAllocator allocator_;
Zone zone;
bool compiled_;
LocalType storage_[WASM_RUNNER_MAX_NUM_PARAMETERS];

Powered by Google App Engine
This is Rietveld 408576698