OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
(...skipping 1819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1830 ElementsKind elements_kind, | 1830 ElementsKind elements_kind, |
1831 HValue* from, | 1831 HValue* from, |
1832 HValue* to, | 1832 HValue* to, |
1833 HValue* value); | 1833 HValue* value); |
1834 | 1834 |
1835 void BuildFillElementsWithHole(HValue* elements, | 1835 void BuildFillElementsWithHole(HValue* elements, |
1836 ElementsKind elements_kind, | 1836 ElementsKind elements_kind, |
1837 HValue* from, | 1837 HValue* from, |
1838 HValue* to); | 1838 HValue* to); |
1839 | 1839 |
| 1840 void BuildCopyProperties(HValue* from_properties, HValue* to_properties, |
| 1841 HValue* length, HValue* capacity); |
| 1842 |
1840 void BuildCopyElements(HValue* from_elements, | 1843 void BuildCopyElements(HValue* from_elements, |
1841 ElementsKind from_elements_kind, | 1844 ElementsKind from_elements_kind, |
1842 HValue* to_elements, | 1845 HValue* to_elements, |
1843 ElementsKind to_elements_kind, | 1846 ElementsKind to_elements_kind, |
1844 HValue* length, | 1847 HValue* length, |
1845 HValue* capacity); | 1848 HValue* capacity); |
1846 | 1849 |
1847 HValue* BuildCloneShallowArrayCow(HValue* boilerplate, | 1850 HValue* BuildCloneShallowArrayCow(HValue* boilerplate, |
1848 HValue* allocation_site, | 1851 HValue* allocation_site, |
1849 AllocationSiteMode mode, | 1852 AllocationSiteMode mode, |
(...skipping 1055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2905 } | 2908 } |
2906 | 2909 |
2907 private: | 2910 private: |
2908 HGraphBuilder* builder_; | 2911 HGraphBuilder* builder_; |
2909 }; | 2912 }; |
2910 | 2913 |
2911 | 2914 |
2912 } } // namespace v8::internal | 2915 } } // namespace v8::internal |
2913 | 2916 |
2914 #endif // V8_HYDROGEN_H_ | 2917 #endif // V8_HYDROGEN_H_ |
OLD | NEW |