Index: src/x64/full-codegen-x64.cc |
diff --git a/src/x64/full-codegen-x64.cc b/src/x64/full-codegen-x64.cc |
index ed4c3adbce39d644eb34d06be4030fa62ccbedee..8a3f965a3f4b851d1002a93416b25ae52bd73271 100644 |
--- a/src/x64/full-codegen-x64.cc |
+++ b/src/x64/full-codegen-x64.cc |
@@ -1741,6 +1741,14 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) { |
Handle<FixedArrayBase> constant_elements_values( |
FixedArrayBase::cast(constant_elements->get(1))); |
+ AllocationSiteMode allocation_site_mode = FLAG_track_allocation_sites |
+ ? TRACK_ALLOCATION_SITE : DONT_TRACK_ALLOCATION_SITE; |
+ if (has_constant_fast_elements && !FLAG_allocation_site_pretenuring) { |
+ // If the only customer of allocation sites is transitioning, then |
+ // we can turn it off if we don't have anywhere else to transition to. |
+ allocation_site_mode = DONT_TRACK_ALLOCATION_SITE; |
+ } |
+ |
Heap* heap = isolate()->heap(); |
if (has_constant_fast_elements && |
constant_elements_values->map() == heap->fixed_cow_array_map()) { |
@@ -1753,7 +1761,7 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) { |
__ Move(rcx, constant_elements); |
FastCloneShallowArrayStub stub( |
FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS, |
- DONT_TRACK_ALLOCATION_SITE, |
+ allocation_site_mode, |
length); |
__ CallStub(&stub); |
} else if (expr->depth() > 1 || Serializer::enabled() || |
@@ -1769,14 +1777,11 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) { |
FLAG_smi_only_arrays); |
FastCloneShallowArrayStub::Mode mode = |
FastCloneShallowArrayStub::CLONE_ANY_ELEMENTS; |
- AllocationSiteMode allocation_site_mode = FLAG_track_allocation_sites |
- ? TRACK_ALLOCATION_SITE : DONT_TRACK_ALLOCATION_SITE; |
// If the elements are already FAST_*_ELEMENTS, the boilerplate cannot |
// change, so it's possible to specialize the stub in advance. |
if (has_constant_fast_elements) { |
mode = FastCloneShallowArrayStub::CLONE_ELEMENTS; |
- allocation_site_mode = DONT_TRACK_ALLOCATION_SITE; |
} |
__ movq(rbx, Operand(rbp, JavaScriptFrameConstants::kFunctionOffset)); |