OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/factory.h" | 5 #include "src/factory.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/allocation-site-scopes.h" | 8 #include "src/allocation-site-scopes.h" |
9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 Handle<PrototypeInfo> Factory::NewPrototypeInfo() { | 95 Handle<PrototypeInfo> Factory::NewPrototypeInfo() { |
96 Handle<PrototypeInfo> result = | 96 Handle<PrototypeInfo> result = |
97 Handle<PrototypeInfo>::cast(NewStruct(PROTOTYPE_INFO_TYPE)); | 97 Handle<PrototypeInfo>::cast(NewStruct(PROTOTYPE_INFO_TYPE)); |
98 result->set_prototype_users(WeakFixedArray::Empty()); | 98 result->set_prototype_users(WeakFixedArray::Empty()); |
99 result->set_registry_slot(PrototypeInfo::UNREGISTERED); | 99 result->set_registry_slot(PrototypeInfo::UNREGISTERED); |
100 result->set_validity_cell(Smi::kZero); | 100 result->set_validity_cell(Smi::kZero); |
101 result->set_bit_field(0); | 101 result->set_bit_field(0); |
102 return result; | 102 return result; |
103 } | 103 } |
104 | 104 |
| 105 Handle<Tuple3> Factory::NewTuple3(Handle<Object> value1, Handle<Object> value2, |
| 106 Handle<Object> value3) { |
| 107 Handle<Tuple3> result = Handle<Tuple3>::cast(NewStruct(TUPLE3_TYPE)); |
| 108 result->set_value1(*value1); |
| 109 result->set_value2(*value2); |
| 110 result->set_value3(*value3); |
| 111 return result; |
| 112 } |
| 113 |
105 Handle<ContextExtension> Factory::NewContextExtension( | 114 Handle<ContextExtension> Factory::NewContextExtension( |
106 Handle<ScopeInfo> scope_info, Handle<Object> extension) { | 115 Handle<ScopeInfo> scope_info, Handle<Object> extension) { |
107 Handle<ContextExtension> result = | 116 Handle<ContextExtension> result = |
108 Handle<ContextExtension>::cast(NewStruct(CONTEXT_EXTENSION_TYPE)); | 117 Handle<ContextExtension>::cast(NewStruct(CONTEXT_EXTENSION_TYPE)); |
109 result->set_scope_info(*scope_info); | 118 result->set_scope_info(*scope_info); |
110 result->set_extension(*extension); | 119 result->set_extension(*extension); |
111 return result; | 120 return result; |
112 } | 121 } |
113 | 122 |
114 Handle<Oddball> Factory::NewOddball(Handle<Map> map, const char* to_string, | 123 Handle<Oddball> Factory::NewOddball(Handle<Map> map, const char* to_string, |
(...skipping 2489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2604 Handle<AccessorInfo> prototype = | 2613 Handle<AccessorInfo> prototype = |
2605 Accessors::FunctionPrototypeInfo(isolate(), attribs); | 2614 Accessors::FunctionPrototypeInfo(isolate(), attribs); |
2606 AccessorConstantDescriptor d(Handle<Name>(Name::cast(prototype->name())), | 2615 AccessorConstantDescriptor d(Handle<Name>(Name::cast(prototype->name())), |
2607 prototype, attribs); | 2616 prototype, attribs); |
2608 map->AppendDescriptor(&d); | 2617 map->AppendDescriptor(&d); |
2609 } | 2618 } |
2610 } | 2619 } |
2611 | 2620 |
2612 } // namespace internal | 2621 } // namespace internal |
2613 } // namespace v8 | 2622 } // namespace v8 |
OLD | NEW |