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

Unified Diff: src/factory.cc

Issue 11818021: Allocation Info Tracking, continued. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: A partial delta against Toon's previous review Created 7 years, 10 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 cd044ad8b102a43131bbf4f04c2090629b9eeba4..6a4235e87245ec3bc53f9bfc80b7085e4c3ef184 100644
--- a/src/factory.cc
+++ b/src/factory.cc
@@ -933,18 +933,6 @@ Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor,
}
-Handle<JSObject> Factory::NewJSObjectWithAllocationSiteInfo(
- Handle<JSFunction> constructor,
- Handle<Object> payload) {
- CALL_HEAP_FUNCTION(
- isolate(),
- isolate()->heap()->AllocateJSObject(*constructor,
- NOT_TENURED,
- TRACK_ALLOCATION_SITE,
- &payload), JSObject);
-}
-
-
Handle<JSModule> Factory::NewJSModule(Handle<Context> context,
Handle<ScopeInfo> scope_info) {
CALL_HEAP_FUNCTION(
@@ -982,8 +970,6 @@ Handle<JSArray> Factory::NewJSArray(int capacity,
elements_kind,
0,
capacity,
- DONT_TRACK_ALLOCATION_SITE,
- NULL,
INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE,
pretenure),
JSArray);
« 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