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

Unified Diff: src/ast.cc

Issue 279423005: Customized support for feedback on calls to Array. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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
Index: src/ast.cc
diff --git a/src/ast.cc b/src/ast.cc
index 303c442f8434301165ec8afd2106637cc410e8ac..1d63c633f905bd784f4db367f56aace67bbf9b99 100644
--- a/src/ast.cc
+++ b/src/ast.cc
@@ -594,6 +594,11 @@ Call::CallType Call::GetCallType(Isolate* isolate) const {
}
+void Call::set_extra_info(Zone* zone, Handle<AllocationSite> site) {
+ extra_info_ = new(zone) AllocationSiteInfo(site);
+}
+
+
bool Call::ComputeGlobalTarget(Handle<GlobalObject> global,
LookupResult* lookup) {
target_ = Handle<JSFunction>::null();

Powered by Google App Engine
This is Rietveld 408576698