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

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

Issue 1598113003: [runtime] Remove the now unused %StoreArrayLiteralElement. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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/mips64/interface-descriptors-mips64.cc ('k') | src/runtime/runtime.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 #if V8_TARGET_ARCH_PPC 5 #if V8_TARGET_ARCH_PPC
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 } 158 }
159 159
160 160
161 void CreateWeakCellDescriptor::InitializePlatformSpecific( 161 void CreateWeakCellDescriptor::InitializePlatformSpecific(
162 CallInterfaceDescriptorData* data) { 162 CallInterfaceDescriptorData* data) {
163 Register registers[] = {r5, r6, r4}; 163 Register registers[] = {r5, r6, r4};
164 data->InitializePlatformSpecific(arraysize(registers), registers); 164 data->InitializePlatformSpecific(arraysize(registers), registers);
165 } 165 }
166 166
167 167
168 void StoreArrayLiteralElementDescriptor::InitializePlatformSpecific(
169 CallInterfaceDescriptorData* data) {
170 Register registers[] = {r6, r3};
171 data->InitializePlatformSpecific(arraysize(registers), registers);
172 }
173
174
175 void CallFunctionDescriptor::InitializePlatformSpecific( 168 void CallFunctionDescriptor::InitializePlatformSpecific(
176 CallInterfaceDescriptorData* data) { 169 CallInterfaceDescriptorData* data) {
177 Register registers[] = {r4}; 170 Register registers[] = {r4};
178 data->InitializePlatformSpecific(arraysize(registers), registers); 171 data->InitializePlatformSpecific(arraysize(registers), registers);
179 } 172 }
180 173
181 174
182 void CallFunctionWithFeedbackDescriptor::InitializePlatformSpecific( 175 void CallFunctionWithFeedbackDescriptor::InitializePlatformSpecific(
183 CallInterfaceDescriptorData* data) { 176 CallInterfaceDescriptorData* data) {
184 Register registers[] = {r4, r6}; 177 Register registers[] = {r4, r6};
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 r3, // argument count (argc) 429 r3, // argument count (argc)
437 r5, // address of first argument (argv) 430 r5, // address of first argument (argv)
438 r4 // the runtime function to call 431 r4 // the runtime function to call
439 }; 432 };
440 data->InitializePlatformSpecific(arraysize(registers), registers); 433 data->InitializePlatformSpecific(arraysize(registers), registers);
441 } 434 }
442 } // namespace internal 435 } // namespace internal
443 } // namespace v8 436 } // namespace v8
444 437
445 #endif // V8_TARGET_ARCH_PPC 438 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « src/mips64/interface-descriptors-mips64.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698