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

Unified Diff: src/objects.cc

Issue 417953004: Revert 22595: "Keep new arrays allocated with 'new Array(N)' in fast mode" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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
« no previous file with comments | « src/elements.cc ('k') | src/runtime.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index d9a730e069869bcaf36ffe40147340efa6102d3a..99113f6fcfe08f43907cbb5d284931592af230c1 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -11720,17 +11720,6 @@ static void EndPerformSplice(Handle<JSArray> object) {
MaybeHandle<Object> JSArray::SetElementsLength(
Handle<JSArray> array,
Handle<Object> new_length_handle) {
- if (array->HasFastElements()) {
- // If the new array won't fit in a some non-trivial fraction of the max old
- // space size, then force it to go dictionary mode.
- int max_fast_array_size = static_cast<int>(
- (array->GetHeap()->MaxOldGenerationSize() / kDoubleSize) / 4);
- if (new_length_handle->IsNumber() &&
- NumberToInt32(*new_length_handle) >= max_fast_array_size) {
- NormalizeElements(array);
- }
- }
-
// We should never end in here with a pixel or external array.
ASSERT(array->AllowsSetElementsLength());
if (!array->map()->is_observed()) {
« no previous file with comments | « src/elements.cc ('k') | src/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698