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

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

Issue 2113673002: [stubs]: Convert FastNewContext stub to turbofan (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rename based on feedback Created 4 years, 5 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 57
58 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } 58 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; }
59 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } 59 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; }
60 60
61 void FastNewClosureDescriptor::InitializePlatformSpecific( 61 void FastNewClosureDescriptor::InitializePlatformSpecific(
62 CallInterfaceDescriptorData* data) { 62 CallInterfaceDescriptorData* data) {
63 Register registers[] = {r4}; 63 Register registers[] = {r4};
64 data->InitializePlatformSpecific(arraysize(registers), registers); 64 data->InitializePlatformSpecific(arraysize(registers), registers);
65 } 65 }
66 66
67 void FastNewContextDescriptor::InitializePlatformSpecific( 67 void FastNewFunctionContextDescriptor::InitializePlatformSpecific(
68 CallInterfaceDescriptorData* data) { 68 CallInterfaceDescriptorData* data) {
69 Register registers[] = {r3}; 69 Register registers[] = {r3};
70 data->InitializePlatformSpecific(arraysize(registers), registers); 70 data->InitializePlatformSpecific(arraysize(registers), registers);
71 } 71 }
72 72
73 void FastNewObjectDescriptor::InitializePlatformSpecific( 73 void FastNewObjectDescriptor::InitializePlatformSpecific(
74 CallInterfaceDescriptorData* data) { 74 CallInterfaceDescriptorData* data) {
75 Register registers[] = {r3, r5}; 75 Register registers[] = {r3, r5};
76 data->InitializePlatformSpecific(arraysize(registers), registers); 76 data->InitializePlatformSpecific(arraysize(registers), registers);
77 } 77 }
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 r3, // the JSGeneratorObject to resume 372 r3, // the JSGeneratorObject to resume
373 r4 // the resume mode (tagged) 373 r4 // the resume mode (tagged)
374 }; 374 };
375 data->InitializePlatformSpecific(arraysize(registers), registers); 375 data->InitializePlatformSpecific(arraysize(registers), registers);
376 } 376 }
377 377
378 } // namespace internal 378 } // namespace internal
379 } // namespace v8 379 } // namespace v8
380 380
381 #endif // V8_TARGET_ARCH_S390 381 #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