Version 3.22.12

Added histograms to track fraction of heap spaces and percentage of generated crankshaft code.

Moved v8_optimized_debug default value to standalone.gypi.

Track JS allocations as they arrive with no affection on performance when tracking is switched off (Chromium issue 277984).

Performance and stability improvements on all platforms.

git-svn-id: http://v8.googlecode.com/svn/trunk@17205 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/heap-inl.h b/src/heap-inl.h
index e260746..1f0f93f 100644
--- a/src/heap-inl.h
+++ b/src/heap-inl.h
@@ -206,6 +206,11 @@
 }
 
 
+MaybeObject* Heap::CopyConstantPoolArray(ConstantPoolArray* src) {
+  return CopyConstantPoolArrayWithMap(src, src->map());
+}
+
+
 MaybeObject* Heap::AllocateRaw(int size_in_bytes,
                                AllocationSpace space,
                                AllocationSpace retry_space) {