Index: src/factory.h |
diff --git a/src/factory.h b/src/factory.h |
index 041c9869756ffe48d9373b8ed6a12bd82aceb27e..ccd0a5793291db96970e95f84d627134a32c5da9 100644 |
--- a/src/factory.h |
+++ b/src/factory.h |
@@ -53,13 +53,6 @@ class Factory V8_FINAL { |
Handle<OrderedHashSet> NewOrderedHashSet(); |
Handle<OrderedHashMap> NewOrderedHashMap(); |
- Handle<DeoptimizationInputData> NewDeoptimizationInputData( |
- int deopt_entry_count, |
- PretenureFlag pretenure); |
- Handle<DeoptimizationOutputData> NewDeoptimizationOutputData( |
- int deopt_entry_count, |
- PretenureFlag pretenure); |
- |
// Create a new boxed value. |
Handle<Box> NewBox(Handle<Object> value); |
@@ -307,16 +300,15 @@ class Factory V8_FINAL { |
Handle<JSObject> NewFunctionPrototype(Handle<JSFunction> function); |
+ Handle<FixedArray> CopyFixedArrayWithMap(Handle<FixedArray> array, |
+ Handle<Map> map); |
+ |
Handle<FixedArray> CopyFixedArray(Handle<FixedArray> array); |
// This method expects a COW array in new space, and creates a copy |
// of it in old space. |
Handle<FixedArray> CopyAndTenureFixedCOWArray(Handle<FixedArray> array); |
- Handle<FixedArray> CopySizeFixedArray(Handle<FixedArray> array, |
- int new_length, |
- PretenureFlag pretenure = NOT_TENURED); |
- |
Handle<FixedDoubleArray> CopyFixedDoubleArray( |
Handle<FixedDoubleArray> array); |