Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index ad2f679f4d86e2ea5275f821e90a81a21c05bc3c..184d8382df889f7f3833237c938d761cd842df9e 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -3794,7 +3794,7 @@ void Map::UpdateFieldType(int descriptor, Handle<Name> name, |
PropertyDetails details = instance_descriptors()->GetDetails(descriptor); |
if (details.type() != DATA) return; |
- Zone zone(GetIsolate()->allocator()); |
+ Zone zone(GetIsolate()->allocator(), ZONE_NAME); |
ZoneQueue<Map*> backlog(&zone); |
backlog.push(this); |
@@ -20003,7 +20003,7 @@ bool Module::Instantiate(Handle<Module> module, v8::Local<v8::Context> context, |
} |
} |
- Zone zone(isolate->allocator()); |
+ Zone zone(isolate->allocator(), ZONE_NAME); |
// Resolve imports. |
Handle<FixedArray> regular_imports(module_info->regular_imports(), isolate); |
@@ -20166,7 +20166,7 @@ Handle<JSModuleNamespace> Module::GetModuleNamespace(Handle<Module> module) { |
module->set_module_namespace(*ns); |
// Collect the export names. |
- Zone zone(isolate->allocator()); |
+ Zone zone(isolate->allocator(), ZONE_NAME); |
UnorderedModuleSet visited(&zone); |
FetchStarExports(module, &zone, &visited); |
Handle<ObjectHashTable> exports(module->exports(), isolate); |