Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: src/factory.cc

Issue 2419513002: [ic] Support data handlers that represent loads from prototypes. (Closed)
Patch Set: Rebasing Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/factory.h ('k') | src/ic/ic.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 2505 matching lines...) Expand 10 before | Expand all | Expand 10 after
2620 Handle<AccessorInfo> prototype = 2629 Handle<AccessorInfo> prototype =
2621 Accessors::FunctionPrototypeInfo(isolate(), attribs); 2630 Accessors::FunctionPrototypeInfo(isolate(), attribs);
2622 AccessorConstantDescriptor d(Handle<Name>(Name::cast(prototype->name())), 2631 AccessorConstantDescriptor d(Handle<Name>(Name::cast(prototype->name())),
2623 prototype, attribs); 2632 prototype, attribs);
2624 map->AppendDescriptor(&d); 2633 map->AppendDescriptor(&d);
2625 } 2634 }
2626 } 2635 }
2627 2636
2628 } // namespace internal 2637 } // namespace internal
2629 } // namespace v8 2638 } // namespace v8
OLDNEW
« no previous file with comments | « src/factory.h ('k') | src/ic/ic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698