OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 Handle<FixedDoubleArray> Factory::NewFixedDoubleArray(int size, | 72 Handle<FixedDoubleArray> Factory::NewFixedDoubleArray(int size, |
73 PretenureFlag pretenure) { | 73 PretenureFlag pretenure) { |
74 ASSERT(0 <= size); | 74 ASSERT(0 <= size); |
75 CALL_HEAP_FUNCTION( | 75 CALL_HEAP_FUNCTION( |
76 isolate(), | 76 isolate(), |
77 isolate()->heap()->AllocateUninitializedFixedDoubleArray(size, pretenure), | 77 isolate()->heap()->AllocateUninitializedFixedDoubleArray(size, pretenure), |
78 FixedDoubleArray); | 78 FixedDoubleArray); |
79 } | 79 } |
80 | 80 |
81 | 81 |
| 82 Handle<ConstantPoolArray> Factory::NewConstantPoolArray( |
| 83 int number_of_int64_entries, |
| 84 int number_of_ptr_entries, |
| 85 int number_of_int32_entries) { |
| 86 ASSERT(number_of_int64_entries > 0 || number_of_ptr_entries > 0 || |
| 87 number_of_int32_entries > 0); |
| 88 CALL_HEAP_FUNCTION( |
| 89 isolate(), |
| 90 isolate()->heap()->AllocateConstantPoolArray(number_of_int64_entries, |
| 91 number_of_ptr_entries, |
| 92 number_of_int32_entries), |
| 93 ConstantPoolArray); |
| 94 } |
| 95 |
| 96 |
82 Handle<NameDictionary> Factory::NewNameDictionary(int at_least_space_for) { | 97 Handle<NameDictionary> Factory::NewNameDictionary(int at_least_space_for) { |
83 ASSERT(0 <= at_least_space_for); | 98 ASSERT(0 <= at_least_space_for); |
84 CALL_HEAP_FUNCTION(isolate(), | 99 CALL_HEAP_FUNCTION(isolate(), |
85 NameDictionary::Allocate(isolate()->heap(), | 100 NameDictionary::Allocate(isolate()->heap(), |
86 at_least_space_for), | 101 at_least_space_for), |
87 NameDictionary); | 102 NameDictionary); |
88 } | 103 } |
89 | 104 |
90 | 105 |
91 Handle<SeededNumberDictionary> Factory::NewSeededNumberDictionary( | 106 Handle<SeededNumberDictionary> Factory::NewSeededNumberDictionary( |
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 FixedArray); | 632 FixedArray); |
618 } | 633 } |
619 | 634 |
620 | 635 |
621 Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray( | 636 Handle<FixedDoubleArray> Factory::CopyFixedDoubleArray( |
622 Handle<FixedDoubleArray> array) { | 637 Handle<FixedDoubleArray> array) { |
623 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedDoubleArray); | 638 CALL_HEAP_FUNCTION(isolate(), array->Copy(), FixedDoubleArray); |
624 } | 639 } |
625 | 640 |
626 | 641 |
| 642 Handle<ConstantPoolArray> Factory::CopyConstantPoolArray( |
| 643 Handle<ConstantPoolArray> array) { |
| 644 CALL_HEAP_FUNCTION(isolate(), array->Copy(), ConstantPoolArray); |
| 645 } |
| 646 |
| 647 |
627 Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo( | 648 Handle<JSFunction> Factory::BaseNewFunctionFromSharedFunctionInfo( |
628 Handle<SharedFunctionInfo> function_info, | 649 Handle<SharedFunctionInfo> function_info, |
629 Handle<Map> function_map, | 650 Handle<Map> function_map, |
630 PretenureFlag pretenure) { | 651 PretenureFlag pretenure) { |
631 CALL_HEAP_FUNCTION( | 652 CALL_HEAP_FUNCTION( |
632 isolate(), | 653 isolate(), |
633 isolate()->heap()->AllocateFunction(*function_map, | 654 isolate()->heap()->AllocateFunction(*function_map, |
634 *function_info, | 655 *function_info, |
635 isolate()->heap()->the_hole_value(), | 656 isolate()->heap()->the_hole_value(), |
636 pretenure), | 657 pretenure), |
(...skipping 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1646 return Handle<Object>::null(); | 1667 return Handle<Object>::null(); |
1647 } | 1668 } |
1648 | 1669 |
1649 | 1670 |
1650 Handle<Object> Factory::ToBoolean(bool value) { | 1671 Handle<Object> Factory::ToBoolean(bool value) { |
1651 return value ? true_value() : false_value(); | 1672 return value ? true_value() : false_value(); |
1652 } | 1673 } |
1653 | 1674 |
1654 | 1675 |
1655 } } // namespace v8::internal | 1676 } } // namespace v8::internal |
OLD | NEW |