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

Side by Side Diff: src/interface-descriptors.cc

Issue 587203002: ExtendStorageStub added, it is aimed for extending objects backing store when it runs out of space. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/interface-descriptors.h ('k') | src/mips/interface-descriptors-mips.cc » ('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 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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/interface-descriptors.h" 7 #include "src/interface-descriptors.h"
8 8
9 namespace v8 { 9 namespace v8 {
10 namespace internal { 10 namespace internal {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 } 67 }
68 68
69 69
70 void StoreDescriptor::Initialize(CallInterfaceDescriptorData* data) { 70 void StoreDescriptor::Initialize(CallInterfaceDescriptorData* data) {
71 Register registers[] = {ContextRegister(), ReceiverRegister(), NameRegister(), 71 Register registers[] = {ContextRegister(), ReceiverRegister(), NameRegister(),
72 ValueRegister()}; 72 ValueRegister()};
73 data->Initialize(arraysize(registers), registers, NULL); 73 data->Initialize(arraysize(registers), registers, NULL);
74 } 74 }
75 75
76 76
77 void ExtendStorageDescriptor::Initialize(CallInterfaceDescriptorData* data) {
78 Register registers[] = {ContextRegister(), ReceiverRegister(), NameRegister(),
79 ValueRegister(), MapRegister()};
80 data->Initialize(arraysize(registers), registers, NULL);
81 }
82
83
77 void ElementTransitionAndStoreDescriptor::Initialize( 84 void ElementTransitionAndStoreDescriptor::Initialize(
78 CallInterfaceDescriptorData* data) { 85 CallInterfaceDescriptorData* data) {
79 Register registers[] = {ContextRegister(), ValueRegister(), MapRegister(), 86 Register registers[] = {ContextRegister(), ValueRegister(), MapRegister(),
80 NameRegister(), ReceiverRegister()}; 87 NameRegister(), ReceiverRegister()};
81 data->Initialize(arraysize(registers), registers, NULL); 88 data->Initialize(arraysize(registers), registers, NULL);
82 } 89 }
83 90
84 91
85 void InstanceofDescriptor::Initialize(CallInterfaceDescriptorData* data) { 92 void InstanceofDescriptor::Initialize(CallInterfaceDescriptorData* data) {
86 Register registers[] = {ContextRegister(), left(), right()}; 93 Register registers[] = {ContextRegister(), left(), right()};
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 } 141 }
135 142
136 143
137 void ContextOnlyDescriptor::Initialize(CallInterfaceDescriptorData* data) { 144 void ContextOnlyDescriptor::Initialize(CallInterfaceDescriptorData* data) {
138 Register registers[] = {ContextRegister()}; 145 Register registers[] = {ContextRegister()};
139 data->Initialize(arraysize(registers), registers, NULL); 146 data->Initialize(arraysize(registers), registers, NULL);
140 } 147 }
141 148
142 } 149 }
143 } // namespace v8::internal 150 } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/interface-descriptors.h ('k') | src/mips/interface-descriptors-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698