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

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

Issue 1901083002: [Interpreter] Introduce IncStub and DecStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 8 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/ppc/interface-descriptors-ppc.cc ('k') | src/x64/interface-descriptors-x64.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_S390 5 #if V8_TARGET_ARCH_S390
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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 Register registers[] = {r3, r2}; 269 Register registers[] = {r3, r2};
270 data->InitializePlatformSpecific(arraysize(registers), registers); 270 data->InitializePlatformSpecific(arraysize(registers), registers);
271 } 271 }
272 272
273 void BinaryOpWithAllocationSiteDescriptor::InitializePlatformSpecific( 273 void BinaryOpWithAllocationSiteDescriptor::InitializePlatformSpecific(
274 CallInterfaceDescriptorData* data) { 274 CallInterfaceDescriptorData* data) {
275 Register registers[] = {r4, r3, r2}; 275 Register registers[] = {r4, r3, r2};
276 data->InitializePlatformSpecific(arraysize(registers), registers); 276 data->InitializePlatformSpecific(arraysize(registers), registers);
277 } 277 }
278 278
279 void CountOpDescriptor::InitializePlatformSpecific(
280 CallInterfaceDescriptorData* data) {
281 Register registers[] = {r4};
282 data->InitializePlatformSpecific(arraysize(registers), registers);
283 }
284
279 void StringAddDescriptor::InitializePlatformSpecific( 285 void StringAddDescriptor::InitializePlatformSpecific(
280 CallInterfaceDescriptorData* data) { 286 CallInterfaceDescriptorData* data) {
281 Register registers[] = {r3, r2}; 287 Register registers[] = {r3, r2};
282 data->InitializePlatformSpecific(arraysize(registers), registers); 288 data->InitializePlatformSpecific(arraysize(registers), registers);
283 } 289 }
284 290
285 void KeyedDescriptor::InitializePlatformSpecific( 291 void KeyedDescriptor::InitializePlatformSpecific(
286 CallInterfaceDescriptorData* data) { 292 CallInterfaceDescriptorData* data) {
287 Register registers[] = { 293 Register registers[] = {
288 r4, // key 294 r4, // key
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 r3, // the JSGeneratorObject to resume 380 r3, // the JSGeneratorObject to resume
375 r4 // the resume mode (tagged) 381 r4 // the resume mode (tagged)
376 }; 382 };
377 data->InitializePlatformSpecific(arraysize(registers), registers); 383 data->InitializePlatformSpecific(arraysize(registers), registers);
378 } 384 }
379 385
380 } // namespace internal 386 } // namespace internal
381 } // namespace v8 387 } // namespace v8
382 388
383 #endif // V8_TARGET_ARCH_S390 389 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/ppc/interface-descriptors-ppc.cc ('k') | src/x64/interface-descriptors-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698