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

Unified Diff: src/factory.h

Issue 236983002: Handlify Heap::AllocateJSArrayStorage and friends. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Some more follow-up work. Created 6 years, 8 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 | « no previous file | src/factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/factory.h
diff --git a/src/factory.h b/src/factory.h
index 51096eefbdace7e85975325103c07e809d726fa9..107cbfd1ceb8488cef9cd5f65ecac41f2ccc5975 100644
--- a/src/factory.h
+++ b/src/factory.h
@@ -32,6 +32,11 @@ class Factory V8_FINAL {
int size,
PretenureFlag pretenure = NOT_TENURED);
+ // Allocate a new fixed double array with hole values.
+ Handle<FixedDoubleArray> NewFixedDoubleArrayWithHoles(
+ int size,
+ PretenureFlag pretenure = NOT_TENURED);
+
Handle<ConstantPoolArray> NewConstantPoolArray(
int number_of_int64_entries,
int number_of_code_ptr_entries,
« no previous file with comments | « no previous file | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698