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

Unified Diff: src/runtime.h

Issue 8914006: Create missing boilerplate for array literals instead of deoptimizing (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years 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/runtime.h
diff --git a/src/runtime.h b/src/runtime.h
index b13662df0effe0c5f799a3a691ace2590fd91515..2dbbf805cc8bedd301e268b895bcb6f7b78c874a 100644
--- a/src/runtime.h
+++ b/src/runtime.h
@@ -679,6 +679,11 @@ class Runtime : public AllStatic {
// Helper functions used stubs.
static void PerformGC(Object* result);
+
+ static Handle<Object> CreateArrayLiteralBoilerplate(
ricow1 2011/12/14 12:53:09 This is not really used from a stub, add comment
Jakob Kummerow 2011/12/14 13:00:20 Done.
+ Isolate* isolate,
+ Handle<FixedArray> literals,
+ Handle<FixedArray> elements);
};

Powered by Google App Engine
This is Rietveld 408576698