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

Unified Diff: src/factory.cc

Issue 371913002: Revert "Only create arguments-maps in the bootstrapper, remove now obsolete ValueType flag." (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/factory.h ('k') | src/heap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/factory.cc
diff --git a/src/factory.cc b/src/factory.cc
index 8c08ba1587f6d5fc4600fa716bfed0997d5b356d..a09c7841e37655e6572f5be9a42b6a15a3e96676 100644
--- a/src/factory.cc
+++ b/src/factory.cc
@@ -4,7 +4,6 @@
#include "src/factory.h"
-#include "src/allocation-site-scopes.h"
#include "src/conversions.h"
#include "src/isolate-inl.h"
#include "src/macro-assembler.h"
@@ -2087,24 +2086,11 @@ Handle<DebugInfo> Factory::NewDebugInfo(Handle<SharedFunctionInfo> shared) {
}
-Handle<JSObject> Factory::NewArgumentsObject(Handle<JSFunction> callee,
+Handle<JSObject> Factory::NewArgumentsObject(Handle<Object> callee,
int length) {
- bool strict_mode_callee = callee->shared()->strict_mode() == STRICT;
- Handle<Map> map = strict_mode_callee ? isolate()->strict_arguments_map()
- : isolate()->sloppy_arguments_map();
-
- AllocationSiteUsageContext context(isolate(), Handle<AllocationSite>(),
- false);
- ASSERT(!isolate()->has_pending_exception());
- Handle<JSObject> result = NewJSObjectFromMap(map);
- Handle<Smi> value(Smi::FromInt(length), isolate());
- JSReceiver::SetProperty(result, length_string(), value, NONE, STRICT)
- .Assert();
- if (!strict_mode_callee) {
- JSReceiver::SetProperty(result, callee_string(), callee, NONE, STRICT)
- .Assert();
- }
- return result;
+ CALL_HEAP_FUNCTION(
+ isolate(),
+ isolate()->heap()->AllocateArgumentsObject(*callee, length), JSObject);
}
« no previous file with comments | « src/factory.h ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698