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

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

Issue 1902353002: S390: Change calling convention of CallApiGetterStub to accept the AccessorInfo (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/s390/code-stubs-s390.cc ('k') | no next file » | 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 24 matching lines...) Expand all
35 35
36 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r4; } 36 const Register StoreGlobalViaContextDescriptor::SlotRegister() { return r4; }
37 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r2; } 37 const Register StoreGlobalViaContextDescriptor::ValueRegister() { return r2; }
38 38
39 const Register InstanceOfDescriptor::LeftRegister() { return r3; } 39 const Register InstanceOfDescriptor::LeftRegister() { return r3; }
40 const Register InstanceOfDescriptor::RightRegister() { return r2; } 40 const Register InstanceOfDescriptor::RightRegister() { return r2; }
41 41
42 const Register StringCompareDescriptor::LeftRegister() { return r3; } 42 const Register StringCompareDescriptor::LeftRegister() { return r3; }
43 const Register StringCompareDescriptor::RightRegister() { return r2; } 43 const Register StringCompareDescriptor::RightRegister() { return r2; }
44 44
45 const Register ApiGetterDescriptor::function_address() { return r4; } 45 const Register ApiGetterDescriptor::HolderRegister() { return r2; }
46 const Register ApiGetterDescriptor::CallbackRegister() { return r5; }
46 47
47 const Register MathPowTaggedDescriptor::exponent() { return r4; } 48 const Register MathPowTaggedDescriptor::exponent() { return r4; }
48 49
49 const Register MathPowIntegerDescriptor::exponent() { 50 const Register MathPowIntegerDescriptor::exponent() {
50 return MathPowTaggedDescriptor::exponent(); 51 return MathPowTaggedDescriptor::exponent();
51 } 52 }
52 53
53 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; } 54 const Register GrowArrayElementsDescriptor::ObjectRegister() { return r2; }
54 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; } 55 const Register GrowArrayElementsDescriptor::KeyRegister() { return r5; }
55 56
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 r3, // the JSGeneratorObject to resume 375 r3, // the JSGeneratorObject to resume
375 r4 // the resume mode (tagged) 376 r4 // the resume mode (tagged)
376 }; 377 };
377 data->InitializePlatformSpecific(arraysize(registers), registers); 378 data->InitializePlatformSpecific(arraysize(registers), registers);
378 } 379 }
379 380
380 } // namespace internal 381 } // namespace internal
381 } // namespace v8 382 } // namespace v8
382 383
383 #endif // V8_TARGET_ARCH_S390 384 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/s390/code-stubs-s390.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698