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

Unified Diff: src/runtime.cc

Issue 197043004: Don't fast RemoveArrayHoles in case of arguments arrays. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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/array.js ('k') | test/mjsunit/regress/regress-sort-arguments.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime.cc
diff --git a/src/runtime.cc b/src/runtime.cc
index 140c3234e6bed870ad706b7a96ff8d5e99ed7d77..61ebc0ad55122767412e82aac5d6367e8986dc14 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -10508,11 +10508,17 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_GlobalPrint) {
// and are followed by non-existing element. Does not change the length
// property.
// Returns the number of non-undefined elements collected.
+// Returns -1 if hole removal is not supported by this method.
RUNTIME_FUNCTION(MaybeObject*, Runtime_RemoveArrayHoles) {
HandleScope scope(isolate);
ASSERT(args.length() == 2);
CONVERT_ARG_HANDLE_CHECKED(JSObject, object, 0);
CONVERT_NUMBER_CHECKED(uint32_t, limit, Uint32, args[1]);
+ if (object->HasFastArgumentsElements() ||
Michael Starzinger 2014/03/12 13:31:57 nit: Instead of putting this logic here, can we mo
+ object->HasDictionaryArgumentsElements() ||
Michael Starzinger 2014/03/12 13:31:57 nit: Better use object->HasNonStrictArgumentsEleme
+ object->map()->is_observed()) {
+ return Smi::FromInt(-1);
+ }
return *JSObject::PrepareElementsForSort(object, limit);
}
« no previous file with comments | « src/array.js ('k') | test/mjsunit/regress/regress-sort-arguments.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698