Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index 08c8f957b946a400943e6edf103c10ef33550130..23b8c66eeaabbfbe28c2a4fd40ce4ca44478e5f4 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -1664,6 +1664,7 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) { |
__ IncrementCounter(isolate()->counters()->cow_arrays_created_stub(), 1); |
FastCloneShallowArrayStub stub( |
FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS, |
+ DONT_TRACK_ALLOCATION_SITE, |
length); |
__ CallStub(&stub); |
} else if (expr->depth() > 1) { |
@@ -1673,21 +1674,19 @@ void FullCodeGenerator::VisitArrayLiteral(ArrayLiteral* expr) { |
} else { |
ASSERT(IsFastSmiOrObjectElementsKind(constant_elements_kind) || |
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. |
- FastCloneShallowArrayStub::Mode mode = has_constant_fast_elements |
- ? FastCloneShallowArrayStub::CLONE_ELEMENTS |
- : FastCloneShallowArrayStub::CLONE_ANY_ELEMENTS; |
- |
- // Tracking allocation info allows us to pre-transition later if it makes |
- // sense. |
- if (mode == FastCloneShallowArrayStub::CLONE_ANY_ELEMENTS && |
- FLAG_track_allocation_sites) { |
- mode = FastCloneShallowArrayStub:: |
- CLONE_ANY_ELEMENTS_WITH_ALLOCATION_SITE_INFO; |
+ if (has_constant_fast_elements) { |
+ mode = FastCloneShallowArrayStub::CLONE_ELEMENTS; |
+ allocation_site_mode = DONT_TRACK_ALLOCATION_SITE; |
} |
- FastCloneShallowArrayStub stub(mode, length); |
+ FastCloneShallowArrayStub stub(mode, allocation_site_mode, length); |
__ CallStub(&stub); |
} |