Index: src/compiler/wasm-compiler.cc |
diff --git a/src/compiler/wasm-compiler.cc b/src/compiler/wasm-compiler.cc |
index 484a0d9a5063c6b1baf876ea818fb9c9d998fd05..f3c1c5819bf606f97230ba1dc6983d66b31b94ee 100644 |
--- a/src/compiler/wasm-compiler.cc |
+++ b/src/compiler/wasm-compiler.cc |
@@ -3093,7 +3093,7 @@ Handle<Code> CompileJSToWasmWrapper(Isolate* isolate, wasm::ModuleEnv* module, |
//---------------------------------------------------------------------------- |
// Create the Graph |
//---------------------------------------------------------------------------- |
- Zone zone(isolate->allocator()); |
+ Zone zone(isolate->allocator(), ZONE_NAME); |
Graph graph(&zone); |
CommonOperatorBuilder common(&zone); |
MachineOperatorBuilder machine(&zone); |
@@ -3167,7 +3167,7 @@ Handle<Code> CompileWasmToJSWrapper(Isolate* isolate, Handle<JSReceiver> target, |
//---------------------------------------------------------------------------- |
// Create the Graph |
//---------------------------------------------------------------------------- |
- Zone zone(isolate->allocator()); |
+ Zone zone(isolate->allocator(), ZONE_NAME); |
Graph graph(&zone); |
CommonOperatorBuilder common(&zone); |
MachineOperatorBuilder machine(&zone); |
@@ -3296,7 +3296,7 @@ WasmCompilationUnit::WasmCompilationUnit(wasm::ErrorThrower* thrower, |
isolate_(isolate), |
module_env_(module_env), |
function_(function), |
- graph_zone_(new Zone(isolate->allocator())), |
+ graph_zone_(new Zone(isolate->allocator(), ZONE_NAME)), |
jsgraph_(new (graph_zone()) JSGraph( |
isolate, new (graph_zone()) Graph(graph_zone()), |
new (graph_zone()) CommonOperatorBuilder(graph_zone()), nullptr, |
@@ -3304,7 +3304,7 @@ WasmCompilationUnit::WasmCompilationUnit(wasm::ErrorThrower* thrower, |
graph_zone(), MachineType::PointerRepresentation(), |
InstructionSelector::SupportedMachineOperatorFlags(), |
InstructionSelector::AlignmentRequirements()))), |
- compilation_zone_(isolate->allocator()), |
+ compilation_zone_(isolate->allocator(), ZONE_NAME), |
info_(function->name_length != 0 |
? module_env->module->GetNameOrNull(function->name_offset, |
function->name_length) |